From 6c9a0b879ff7f673a8d2ece1d4aaaa953083a506 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 08:49:19 +0100 Subject: [PATCH 1/9] align with spec: deseq2 (needs fix, missing dep) --- runs/deseq2-run/README.md | 10 -------- runs/deseq2/run.cwl | 24 +++++++++++++++++++ runs/{deseq2-run/job.yml => deseq2/run.yml} | 0 workflows/deseq2/README.md | 5 ---- workflows/deseq2/{deseq2.cwl => workflow.cwl} | 0 5 files changed, 24 insertions(+), 15 deletions(-) delete mode 100644 runs/deseq2-run/README.md create mode 100644 runs/deseq2/run.cwl rename runs/{deseq2-run/job.yml => deseq2/run.yml} (100%) rename workflows/deseq2/{deseq2.cwl => workflow.cwl} (100%) diff --git a/runs/deseq2-run/README.md b/runs/deseq2-run/README.md deleted file mode 100644 index f416fa7..0000000 --- a/runs/deseq2-run/README.md +++ /dev/null @@ -1,10 +0,0 @@ - - - -```bash -cd runs/deseq2-run -``` - -```bash -cwltool ../../workflows/deseq2/deseq2.cwl job.yml -``` diff --git a/runs/deseq2/run.cwl b/runs/deseq2/run.cwl new file mode 100644 index 0000000..849cd98 --- /dev/null +++ b/runs/deseq2/run.cwl @@ -0,0 +1,24 @@ +#!/usr/bin/env cwl-runner +cwlVersion: v1.2 +class: Workflow + +inputs: + inKallistoResults: Directory + inMetadataFile: File + inMetadataSample: string + inMetadataFactorList: string[] + +steps: + deseq2: + run: ../../workflows/deseq2/workflow.cwl + in: + inKallistoResults: inKallistoResults + inMetadataFile: inMetadataFile + inMetadataSample: inMetadataSample + inMetadataFactorList: inMetadataFactorList + out: [output] + +outputs: + output: + type: File[] + outputSource: deseq2/output diff --git a/runs/deseq2-run/job.yml b/runs/deseq2/run.yml similarity index 100% rename from runs/deseq2-run/job.yml rename to runs/deseq2/run.yml diff --git a/workflows/deseq2/README.md b/workflows/deseq2/README.md index 39cf2dc..4a64681 100644 --- a/workflows/deseq2/README.md +++ b/workflows/deseq2/README.md @@ -35,11 +35,6 @@ RScript deseq2.R "../../runs/kallisto/kallisto_results" "../../runs/merged_isa_m ``` -## Run CWL-wrapped script - -see [runs/deseq2-run](../../runs/deseq2-run) - - ## Multi-package containers - R and combinations of library dependencies are available as multi-package containers from [BioContainers](https://github.com/BioContainers/multi-package-containers) diff --git a/workflows/deseq2/deseq2.cwl b/workflows/deseq2/workflow.cwl similarity index 100% rename from workflows/deseq2/deseq2.cwl rename to workflows/deseq2/workflow.cwl -- GitLab From 7aa6183e1743fb9eb01b4d0e7c2acc800b953f70 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 08:50:19 +0100 Subject: [PATCH 2/9] outcomment tests --- workflows/deseq2/deseq2.R | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/workflows/deseq2/deseq2.R b/workflows/deseq2/deseq2.R index 88ec8ee..be32d9c 100644 --- a/workflows/deseq2/deseq2.R +++ b/workflows/deseq2/deseq2.R @@ -8,12 +8,12 @@ library("rhdf5") library("ggplot2") library("readxl") -## In-and-out +# ## Tests -inKallistoResults <- "../../runs/kallisto/kallisto_results" -inMetadataFile <- "../../runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx" -inMetadataSample <- "Input [Source Name]" -inMetadataFactorList <- list("Factor [Photosynthesis mode]") +# inKallistoResults <- "../../runs/kallisto/kallisto_results" +# inMetadataFile <- "../../runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx" +# inMetadataSample <- "Input [Source Name]" +# inMetadataFactorList <- list("Factor [Photosynthesis mode]") ### Read arguments from CLI -- GitLab From be46d9dfc912d6a1ee48c8f7d5b4870ff97e5cad Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 08:55:43 +0100 Subject: [PATCH 3/9] align with spec: isaSampleToRawData --- runs/isaSampleToRawDataSeq-run/README.md | 10 -------- .../rnaseq-samples.xlsx | Bin 7104 -> 0 bytes .../rnaseq-samples.csv | 14 +++++----- .../isaSampleToRawDataSeq/rnaseq-samples.xlsx | Bin 0 -> 7193 bytes runs/isaSampleToRawDataSeq/run.cwl | 24 ++++++++++++++++++ .../job.yml => isaSampleToRawDataSeq/run.yml} | 0 workflows/isaSampleToRawDataSeq/README.md | 7 ----- ...isaSampleToRawDataSeq.cwl => workflow.cwl} | 4 +++ 8 files changed, 35 insertions(+), 24 deletions(-) delete mode 100644 runs/isaSampleToRawDataSeq-run/README.md delete mode 100644 runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx rename runs/{isaSampleToRawDataSeq-run => isaSampleToRawDataSeq}/rnaseq-samples.csv (96%) create mode 100644 runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx create mode 100644 runs/isaSampleToRawDataSeq/run.cwl rename runs/{isaSampleToRawDataSeq-run/job.yml => isaSampleToRawDataSeq/run.yml} (100%) delete mode 100644 workflows/isaSampleToRawDataSeq/README.md rename workflows/isaSampleToRawDataSeq/{isaSampleToRawDataSeq.cwl => workflow.cwl} (88%) diff --git a/runs/isaSampleToRawDataSeq-run/README.md b/runs/isaSampleToRawDataSeq-run/README.md deleted file mode 100644 index 6c83a17..0000000 --- a/runs/isaSampleToRawDataSeq-run/README.md +++ /dev/null @@ -1,10 +0,0 @@ - - - -```bash -cd runs/isaSampleToRawDataSeq-run -``` - -```bash -cwltool ../../workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.cwl job.yml -``` diff --git a/runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx b/runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx deleted file mode 100644 index 759961513f5d109aacc26dcc233d07e5c0e1325f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7104 zcma)>2{=@3`2S_!nGmKhjk0BLvM*ump=2x-#xj`97}-Thq9OZI_ANWvcd}&PNxYbB zktIY#WcwY}`}TkPzrX+WpSfn9>s;r#?=$!3`99w{*L|*QlaMkK5m8bSIeFTe=)yQL zZ-|J9cux@#F#w|nM#LTGWN(SX*$aDMF(F~vp>ISP;YF6)oQV(xmFOpQ%JD)Uh}+Rj zGz5+sj?OO~-lT+a1foi-=+oqUQniJ(cABq~*`ub^+_KrXO|iYJ6mD2~gnQ6mmxmDZ z$4w*euBN=buGv+qUgV)m65xHA`L)(~`?LA;>7T0AuT6ES-YCd4l4yFl9=E9;m?|gX z$d)9VTc*M|uv^u04PuEZlPc7D-E3*{ocynzJ~uL4>@F9Zc>CS=QJnGtU(*AZ47yut zs!068u|kd3o3gcsB-j5{Zk>qu;S^BkqCXK4+wXFn?NBHeXOSO+*h$@ONj^6T?PmfS zg974YhrQNGkBMk4;@vJpT-Oqdj;%y5(sQqp!AdTwN2)AkH(p{teSgZi+%|-F?<wil z=P%OvliyYq!Z!}XQf!82Uh;Rt2F$QuCF;)lcD3(a=yNc`3g)e_dYx4~+BnQUtgH7h zp90?`bGvHz+2?-6z1xVbL*49i)A1(y4hzmv<3*;6ZGyS0*=;)6iL5+vuojzP-9`e3 zi;ZSH_T8xjBZf$UTt)uPy3}G^BPe?7!lkw8oo{9mrS}f++cjQ)J;9fs?zuL{pg!(> zgUsi(j?GpsRX|to!TP@Lq5t=}-K}bT=rddtl-(#xqep;)!e{(Kl%SC9>QZbdXPo7k z`aagSG1A4NY0~K=HTC^Tvns+G!%?5A6q5VNTnYcm9(};G@fiO1_sr~9C>Jzul(f~~ zJG1q@Z@EDyO?GU;B1+2O%v{h`RDSFptSb*vGn=v;Q5No3W*4XAZvU)r#ujz4|7r(p zFz%JL4TitjT+&U)sH*uw4MP@BU9Q9U-G^UtZ0b6A?tL%~VYD05?}NRrdG#2Uf6Xv! z<N;ElZ_DY%M%Yp`d2Q$0Af{yLd_^w~NzL`0eFElfqd>kpxePA%$W2U}*L8dcUCPpU zC|<qO@nFT$YU^&xggH7WY@rKA`hFv#LttsM?$aAD7E0fT_Hj?Udl#}a1omgza(7J? zSyt~H%wA@#!%(dsEIwxVn(ZW9df&ac3>3gQ+}y8DsZ)Se-WiioZiuPq$1_shnmB7e zS(6l2m*KXtnl%YlwnJ?`pPraAm7Mo7=}BhgR?_n-u!-*Pm8*K#VRTBKHjk}c{pF!Y zan)r;p2&48<0qFHUCKJZc^zQ01L+SvkB-Pt8@Miaq244eI=U6H*)l?Xch7!7?G@B5 z@-lCzV0zl!n-*dR<gz2`R$B8`%C=q~&KaT2gv+#S_LOf~HhyQLNFgmRKeM<*B|HDB z%2^{KwM#zk^j2<O*dy1g``uWD*~KR~CvPQL?*xXlMroQz=wacdrMveYV5u7*DK=HZ zABQ*A-Sjgm-6+V&xVDy+Yu!Cv<sWXVDLlYERUA?~dY~6X`e425eIi54Obaw_lo#&B z&e^!g+cx>VAwz6w3vG8hMfP-ggHPg4QBX!T!zwG*sBxCzencIWLe14LPx~|oWRnr8 zbWYo`x#&?*^YA(j1x>%kT=j|3rBG6AB)?t!`$d`tU$|qEy|a&n{w&X;o6mXu+bZ4# z?Gr8U8zy3V_YL@-HEzfYt!!*>Y>yAAD0nF=c;i~T4VqImYoB>pJ9tNYrkNeCzfTa^ zt1o|{j3};rW+AS*ux+ljWnocTGRTr@A;Zbx6OP}_TE6e1EV`7em)DIMrg6At!^ufd zaoxVi+qX(dI4aGP&eGj`oR(HO#L>Xt(WEfxp^hh|+g^@?@%KHuC!RFg7PIH-`hrrj zdMrdWrTUalQD_D79S2o>UVhGK2y30#a#Zv#jY$Dn=4XvTixf_o$U0=Cfu>`Uu1;~r zXKx*a*75-^A4?x=0oBJmUbQ*kSaTndnG`aYcpUA!yr=67Uo(LZzdpU5aGkuHp8j%Y zGNH6huv+*GLZ-i`Em$Xk{%rfu5Z_+3ZQ}Pwd0Y($adYP3z5@ZDC91w}8mrk!1I@x- zuRkM;``Wy9taNpp`lzO_&yMr+%Fa6pVk6z%-4hlBCa<+8Jo}d9eapdpv!FYBPv>rT zzubCowx-EM<0#3|$n-e%+S8+i1(KV{t=b2<dt0kt-xdZZeLi#hgB~pN$Sj1t2U1h` z;vmG-2|a2oCixv7YBpBa{>;gtec4rJLG9q0x?{SPz^83L0@RrJi*E4&CX#u*rn%8$ z(IveLt)WUd<j{53axHVYGoR&Pwxc3iBwP8q+W6+3c&)9+?2F@1p1G;LG%coCF+y9I zW_nsU=<oaQ_rcch$R$dWn+kVJhm=<IbWQ2U30Yw3#Ire;Hyby4eZq8BB|B4uw%i30 zViVrPA~9L0TE3d|K1<ymi$-cy1JA$kV!9M~X_|c}U7sM^yw9KaSl5bqg6wu%k@zgm zzv(~Oy9#kMT_mS(_Ay}@TkkrRPon3-OQhDB*K|N$K)X6{c!a!PKpot_gE6GES?nkB z4nz2+td-n`k*XwQ?r3;g=~)(>OVl<VMVc0(`qt$fE1U_KX}z_$)$O*u?3qC`bKN&X zdqZ5!s?SGlr>(*7nm%D}yxXd(AD2rE^gCKG+!!6pzvCRg;_kJ|E<pOsMe+28iXoZX zZcXexg#;6OJ?xJ5QKuJm>`U3pqFRPzYSkksBW+UMv9IsZclR&l8`UD`mmkZ|?$QW* zJcQA@Nm4Ys&xX9#7~980FK9l$wtie_bhU`^sxi$r=+kDwUP<u%W!fmgMcnX_8+-1m zIB{LMXMORvdxo^hCevER7mYtE(tp}<NjBAcyS6}~-`#O@<AJSsmF<qq0t%<OF*b%Q zo+FWU@4?}UNe*5~=$l|k4R24-e0f(ddLS)A+`+QQ5IpL9^xQ6BO%61+HRMv8BSO@i zV_biQD?W2~g9&NtA4kz~zz_$YnJ%ElBp`gzK5n{(^b5UtO}Zv5Qg-J!1760CJPs=r z5Y;v$JKEioK8PL-OPgj%WE8x4OHIsUL4e?xaHXE@VB7h7$?J9=E+#kT>Q~Mp?K1@h z)aN#>aL%|WQ~8o^uvM{|AzAWnO5aLGfdXdgpzjmnX{WKPUug3feR|L5o=I)553<tL zcZBD9%rOJCa_c7AOJCw#`RFDh?FP@N`|Z+cWom)pPb-EYd1e%J>0+v2xIZ!72d9H} z7(Q!W-EYZGk}jQFYDkR5a|p7Ys0)*(%hgC%GWaG3hQFkOY1}e?2*ay^>=<Jzh9IU# ztjT*cFv`tEG-C|EU3g)z`$LoljIuK0s^7s1WpmI)aQSmBWl<Ch-R4x&`CXBG;{6!A za35milLG2qy;P;6b%v~tyrv~Mcs}LSE@wWmB4N_X6=_Eg&bR}p@6uZcc)@-Ua;#4L z5Ku4uYjn7e4Kf<g?)3~M%m6k`srKV(&)QTCKV-mJaCsdMcwYW6qFb1|xW^C-Zxg4x zE1#nnMLsm93!Yc>6vz*0x@!v4koQ5BuVg5}cDi92S2U4?0_tl7B|ihD<{xV%2j&P> zHl$JL&TA4hVcC5dPmX?ZgEqNF7knXWTFbBgn<Z^OaPB<8E?fX=%$-lH=Q0FA7>v-# zkXzZ?4fd#m-wDpK*bP>~{VJuwtqHIg0W>4WsIFhmeGVADof*x@LJh<Bd^tM|iI3!> zOMf{D!-vkmI}GMk{py`%hUQ@z&_MDVlUsI-Av}W+w8h>K1gx5>WH74c=dx$+u^=)C z=}gI1GRR6*suiEwi#b088H*&Q+brTHz4Y8}@Rk5ob2I|h=|%E%rm=u})hJ!*i0Tmt zke;G1`Cg-9EI|1s69AHY#;bt(VD+MxC1vyAIhaOGL36DkfTi~@U|qsU55f_?9QTJI z$GuH_CM;}e8h&HR1Z6*$o{O6<N)hDEv|Mz4%?thUcH!T?steQwHwoVcO6!5;Y^NSw z1H-Lk(c#DQxdjr$`L08d?E~MT!jpx#Gz=NJ;EOF25XDl^>64Mkq7XBwv$K5kWZ;Y- zN}H~{Caw{fMqRMwMz8Bzh}fYac>Xo3m7}2{8U47Lp8=>DY{KG^{){{~J<nlKjE$gV z%{4wsLU&8}1bHaj&#jZd!ZQ_ll*=|Ea1X#9dV*aFz<v+FE_H%^?gTqMfL-brcK?5{ zQ&9le9Rch!C)j5J>`egnfM3{W0PGzA_NHIhXHT%x|HSV26FU_>_0d_m`s=X^$MTm~ zg(;iyEKfAba#b9y0~z;tiKYMzGmt6IA0N&56;Rg~eV!{gO?%xJZ@~YkW9`cd$F+W6 ze6%*lDn=C!Z}Fys&mU_vahtFhXGlUf2WWev5Wdnuc>G$65MHC|4ph&U83gKe+#*r& zvR8&r4Rhrlh!Zygu?B+N>7y<CmqDPAH8}hzDtmK+vVPPb|89#ytxgvXw<-$88$^*- z_T@E|bKo^tm{+3_zJ3$=uHJkHTVe?K50A=GgHNEC{cH=FK!M9uQ0V$=Hovk`0mn`W zIIvKoKqXA3KrF&FAF!UgaM+URsCq+`U(ZJwGhYzh1vMCw9n`3rYuJTfDt1$YkE|f! zu&hpe&UGaGPUv(jXej!C4aBi#19u_imC1sNsLdx02l8Z}XVDDCe@gDa+rfN6nlwFO zpdmhD?(|X#wTzzQH<x{UK}tt*-09+E+;3yP^cT?vf|{Q*vqkuDoHs6M#gFQ1QfAc) zaBofxpEnlICsuzBoFbkH0dx*r7cd(I;CJs^tIekndz{ZF4)f|7I2D`d2jYJrGd3O+ zj1SlY2X`JvJW?+eDAvFM)7WEq^NF3A*+GP-x7i{bYT(KJeB#j9*@`1pm4Aq%0OFT_ z5N8L7TmM76?H6%1fOzk3;=z9t=M1G+S?<6CqW)<#pkGF#1{h5@{<qPvMf`0vVo<<n zUY!^X+t4VhnnBSV3)@g(E8fjSt(5>95nu;#jP~OJ#Rmh5X9uxR2cIbZG89leH=y|7 zUy5(T|6?>DK=Ev#5FSw|pm;GTSQQC37;VS@G#XK8XNoP{APWiqX*6O`K=Ir^70)*G z!)T09@F_1DQf(W=Oy_CtO+BLe2!t;eH9+yOnF83VDZTiEn?xekh?#qDedM0>PjvrM zxY~)r)qX3S`yYh|pC~-|m%`aWy&JdKBTg))F}O+OHc(VgaL)F|(KUdoEPDiCG4&F} zMXqAdpB4iGEao!wAB*As+hVW)bx?04!dEemJ;IH>Z6<ET8gBXhRdA=*uRqz+5Ku1k z@s(164LB>ezA9oe&q}m10JL`J%mSG&`~k~_QlIBl?FQQ-!uceIT_f)jFRCIYtlmJ& za3h4>juoYn6kRhcvwD=-mi@glr|E_5;?C|bui`F#v{8_ZJDk{Lt&Pz(bH;L2N_Tej ziJV&<i&0o&wwXwb>n6CEIglptB#E%YQl>t(?eny79Wng7C(t19>ZUR&5s@S-5fRWB zIcb5oSXg3E&Oe7A{eT!_Q|AdO=EF;1MJ$*80k$RDO&{zQJE<eCxr4gA54noe!FE;5 z6CXcBMHPqdj(s|NX0&F}Sl#H`r{Nb5BBD|X^zQ`a&OLD9c+;v?STm-ZbPHFgzu2>= zw;!0*lL%^%SeJqiKGsRfw&|36RU_bhzZy%C%cy@7J2=tEp<mMXu4ad)O!4&7SfsMf z&Q0Fo+QeYByD=q?^TJB4-yBp$Ae1UR3o5x0hQWo1_E_P~i1pepIjMJ~=-6-BOE1>g zj9ffeYIWh+s%8Atw{`K@pU++=nG1abjHWyEnN}&kdGHs1S+JoC>Vs3}UXa|`bOT33 zYGCv7?UFo5SZSeQu-yCJE}XkLE7M=jrhkPgKI)onn_n3T%C(8<#F`3*IGx4Y;idS| znV@~P(#E)Hooh%*dML9DI}&#)0=m=gpv+Y3Pa_e~+c@bX-|p&1)VBTp)MrBoZ_4D^ zO)~r5@Aa?db#1M67%tda=3l<hv?av+gp-!j_|noTDp}@v?*#N4e;eg{4<HzGErgNd z#ri0+<1=?&z9=64jI$9MYW=37;nHbu2thxcC=lMQjX)dH3Y<&1bb-&m`V7sdH?L;A zMrkHUKDcYVE8sIxtuSd(h<WIkcDkDuYt0jGVJ*Vs*GeL;I%mNLt6`>&$&%2zso{hv zVt!1@d$UjHeze*`sDz0=hT<D)h7MN)@gEo3z*gPi(%5)@#3W+OujA%hUef4b`z*Ul zQ1>O9Ptkd=abzn_bH(Vb(XpJ;6xBQ(NhXQ)Z0ncX0pH@@>2o~kkNptD>_qnf^g(X> z6xQF7PkJ`alpWobDHD+CUr@sOMv|Y(VPuep-*Yf4?ScNMQ_EUfn4*N*tY&fUxH~Gj zV+zL<VKd`r=uNt)t=|_RO>hzg%GA(=EfFV+^Y%VR+mBpo){=-f%i>N+YJBZ??R1L> zS%VrsRNbjuIkj9m*|K(J@5XRFKjs=q<#+mui80|F3r8;k5H>En*b`((k={FjuJlJ} zW9DSuKWg161frZKHHmsm>=kl|s={rXElAiHu0$9@ZiEpJ@AZJI!mCRad*XKqbch{8 zh-u8>rNdIoEHVcX!A|#3*O}1GZwZ8i{Wh9s%->p6bTWl>jm)Xu)tjwC5LBPV2gW^S z*-F{(!m#&h@9WfNp|(^?xUMi=ij9owbh<aQoY>k}F2%;X9DcqRq*8gU_=Ue`#IV8g zomg5M`m<?-bit?8*!U1ePVc}6Wxh)KRVsu?0k?{D	anPA}b=zn$a%EZx5&wz~2* zExCpILNP+D+*3b4@AM96S;QcQEn~|gTXwk1UQ0sGcHSeKT6HXOLqSkPf1jy=Vt&5A z?pBpi=``&=_Z+Bt;K946i9)Sv$<wM;em*5vifFjCQBIPJF>gC+Zg$9r9%@e0$#+h^ zEcECy@REN|%P}n#Qp<_~R_kxiA^OpFT}{10$p^GtPd+q&=a@U8FwP>vC*SLJjdF@W z3lidna&kuF9OR*5!lF<J%E1a}jdrk=hq}7h2uVQ|73B0$7z-C*hO-^o(HR1SI5^8g z?Oa?OWkf`rt?W=(3uj@RBgz3dV}o<TTDSm*PPQVB7FPBawkQ#CQBesI;EKO<K>wW+ zV&LhB`v1v@v#~*2q2M?xS1iiG<v$XO{CfrzVqoE9i*k{Niu}=UhC(#0<)Qi#5>nDv z#Kf$mE=!|e;?|N-h=_um$iM1U_#5c2K6ZtYb{zmx5C97PY2rVb{-53KAACawWa;0C z(vr{Q!>4l3!aZ~OX=pBeAim)^k%v8fkw2_V%<)3u)mCB++H21b2`Td(Yi16@Dg(On zD)u2n$se0K`MfYXLdf9zrB8GapL1V`VV`8V`ergQk;24kuUKBEqZ79tjnE9Nd>AfP z(V)hQ;I)5)P97NY0dHVSTSkTy(?@C%<rR0&b+&SeCcj!&R$=z#$SC5cZqh#Hr0`}* zzQ{iInGb31Sdr@8UX!(lDG_*Nf%x#(zzEa7OICJ#M_B-r$_kXs{j=ngVt@6re^&py zqy4M)68guYjN~&$XonXh6jrqUZT=%0#1-c<K@(X*<SBj4>YFT>biWJqq3*{%=1v3q zFAH9vt&KL7Znva$Iw7qy*2-_3TNuObTsQg{s0O;pO*=vMT=&|HXzLO^UWpzS7;d7@ zbMf_d6dwJRIw_nrjk3zKLFE|RG-18g2b8|%CA4h!Q7$4-5gGhJ?sT!ChiU|g@SNAS zW{_ZDQ+%i&u9le1@M7UqzS+Nv{jlfAyayC%ModJ+1dO*;a1Jhj*vwBf>TG(_vwx*8 ztJ^Bd_&Vt0nYMm?$dgFSsq(AMWaPGy#w#hSU8noinj@--%_uUjYEYu{dA+7^f<6sC zu>Cf$TWf5&yU=uC{AHK!ZxbOxDd?QSy$1W_X=0w|xxy9RP-;nio-1ko7rd{&;PneT z!^btpN0LJl%qOz)T}xn{k^|wgIb-Vll%zLc>@c$EuQ9>JRkx2x>9^?5v%Pw>Y0PPQ z%$>2>lFG7U)+eD2rv|0zF+okZsi|ouOqs3r>}}vtN37pp$8>hT(Tt);KlA7fV{;8# zrGm;o>U-!UwmH(F!XItzn<TYfns98cN@+%$#nNw@9_v76y(cuudR_YzF*C{k{!9nJ z_2ZS{douj7<Ngf(^9jk%P$HrX-}T?Y|JU=9KePOKPxU(s3FyD?uzqLwZ-@My!JXw_ ze)&7_zn$QBVCR`1m;PUT;m<sOZm-{Y>VO-?Uljjeo9)kpe@ggw!W`gH)PD&2x;7d4 R$s`KkJqB#@x9lfJ{{w7|&E5b2 diff --git a/runs/isaSampleToRawDataSeq-run/rnaseq-samples.csv b/runs/isaSampleToRawDataSeq/rnaseq-samples.csv similarity index 96% rename from runs/isaSampleToRawDataSeq-run/rnaseq-samples.csv rename to runs/isaSampleToRawDataSeq/rnaseq-samples.csv index d9aed97..9404289 100644 --- a/runs/isaSampleToRawDataSeq-run/rnaseq-samples.csv +++ b/runs/isaSampleToRawDataSeq/rnaseq-samples.csv @@ -1,7 +1,7 @@ -Input [Sample Name],Characteristic [organism],Term Source REF (OBI:0100026),Term Accession Number (OBI:0100026),Characteristic [organism part],Term Source REF (EFO:0000635),Term Accession Number (EFO:0000635),Characteristic [plant age],Term Source REF (DPBO:0000033),Term Accession Number (DPBO:0000033),Parameter [growth day length],Term Source REF (DPBO:0000041),Term Accession Number (DPBO:0000041),Parameter [light intensity exposure],Unit,Term Source REF (PECO:0007224),Term Accession Number (PECO:0007224),Parameter [humidity day],Unit ,Term Source REF (DPBO:0000005),Term Accession Number (DPBO:0000005),Parameter [temperature day],Unit ,Term Source REF (DPBO:0000007),Term Accession Number (DPBO:0000007),Parameter [temperature night],Unit ,Term Source REF (DPBO:0000008),Term Accession Number (DPBO:0000008),Factor [watering exposure],Term Source REF (PECO:0007383),Term Accession Number (PECO:0007383),Factor [Timepoint],Term Source REF (NCIT:C68568),Term Accession Number (NCIT:C68568),Factor [timepoint-ZT],Term Source REF (),Term Accession Number (),Factor [Photosynthesis mode],Term Source REF () ,Term Accession Number () ,Parameter [biosource amount],Unit ,Term Source REF (DPBO:0000013),Term Accession Number (DPBO:0000013),Parameter [extraction method],Term Source REF (DPBO:0000054),Term Accession Number (DPBO:0000054),Parameter [extraction buffer],Term Source REF (DPBO:0000050),Term Accession Number (DPBO:0000050),Parameter [extraction buffer volume],Unit ,Term Source REF (DPBO:0000051),Term Accession Number (DPBO:0000051),Parameter [RNA quality check],Term Source REF (DPBO:0000062),Term Accession Number (DPBO:0000062),Parameter [library strategy],Term Source REF (DPBO:0000035),Term Accession Number (DPBO:0000035),Parameter [library selection],Term Source REF (DPBO:0000036),Term Accession Number (DPBO:0000036),Parameter [library layout],Term Source REF (DPBO:0000015),Term Accession Number (DPBO:0000015),Parameter [library preparation kit],Term Source REF (GENEPIO:0000085),Term Accession Number (GENEPIO:0000085),Parameter [library preparation kit version],Term Source REF (GENEPIO:0000149),Term Accession Number (GENEPIO:0000149),Parameter [adapter sequence],Term Source REF (GENEPIO:0000083),Term Accession Number (GENEPIO:0000083),Parameter [next generation sequencing instrument model],Term Source REF (DPBO:0000040),Term Accession Number (DPBO:0000040),Parameter [base-calling software],Term Source REF (DPBO:0000017),Term Accession Number (DPBO:0000017),Parameter [base-calling software version],Term Source REF (DPBO:0000018),Term Accession Number (DPBO:0000018),Parameter [Raw data file format],Term Source REF (DPBO:0000021),Term Accession Number (DPBO:0000021),Output [Data] -CAM_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,80,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CAGATC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_097_CAMMD_CAGATC_L001_R1_001.fastq.gz -CAM_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.7 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CTTGTA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz -CAM_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,93,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 6.5 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,AGTCAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz -reC3_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,82,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.8 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTCCGC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz -reC3_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,96,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz -reC3_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz \ No newline at end of file +Input [Sample Name],Characteristic [organism],Term Source REF (OBI:0100026),Term Accession Number (OBI:0100026),Characteristic [organism part],Term Source REF (EFO:0000635),Term Accession Number (EFO:0000635),Characteristic [plant age],Term Source REF (DPBO:0000033),Term Accession Number (DPBO:0000033),Parameter [growth day length],Term Source REF (DPBO:0000041),Term Accession Number (DPBO:0000041),Parameter [light intensity exposure],Unit,Term Source REF (PECO:0007224),Term Accession Number (PECO:0007224),Parameter [humidity day],Unit ,Term Source REF (DPBO:0000005),Term Accession Number (DPBO:0000005),Parameter [temperature day],Unit ,Term Source REF (DPBO:0000007),Term Accession Number (DPBO:0000007),Parameter [temperature night],Unit ,Term Source REF (DPBO:0000008),Term Accession Number (DPBO:0000008),Factor [watering exposure],Term Source REF (PECO:0007383),Term Accession Number (PECO:0007383),Factor [Timepoint],Term Source REF (NCIT:C68568),Term Accession Number (NCIT:C68568),Factor [timepoint-ZT],Term Source REF (),Term Accession Number (),Factor [Photosynthesis mode],Term Source REF () ,Term Accession Number () ,Parameter [biosource amount],Unit ,Term Source REF (DPBO:0000013),Term Accession Number (DPBO:0000013),Parameter [extraction method],Term Source REF (DPBO:0000054),Term Accession Number (DPBO:0000054),Parameter [extraction buffer],Term Source REF (DPBO:0000050),Term Accession Number (DPBO:0000050),Parameter [extraction buffer volume],Unit ,Term Source REF (DPBO:0000051),Term Accession Number (DPBO:0000051),Parameter [RNA quality check],Term Source REF (DPBO:0000062),Term Accession Number (DPBO:0000062),Parameter [library strategy],Term Source REF (DPBO:0000035),Term Accession Number (DPBO:0000035),Parameter [library selection],Term Source REF (DPBO:0000036),Term Accession Number (DPBO:0000036),Parameter [library layout],Term Source REF (DPBO:0000015),Term Accession Number (DPBO:0000015),Parameter [library preparation kit],Term Source REF (GENEPIO:0000085),Term Accession Number (GENEPIO:0000085),Parameter [library preparation kit version],Term Source REF (GENEPIO:0000149),Term Accession Number (GENEPIO:0000149),Parameter [adapter sequence],Term Source REF (GENEPIO:0000083),Term Accession Number (GENEPIO:0000083),Parameter [next generation sequencing instrument model],Term Source REF (DPBO:0000040),Term Accession Number (DPBO:0000040),Parameter [base-calling software],Term Source REF (DPBO:0000017),Term Accession Number (DPBO:0000017),Parameter [base-calling software version],Term Source REF (DPBO:0000018),Term Accession Number (DPBO:0000018),Parameter [Raw data file format],Term Source REF (DPBO:0000021),Term Accession Number (DPBO:0000021),Output [Data],Data Format,Data Selector Format +CAM_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,80,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CAGATC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_097_CAMMD_CAGATC_L001_R1_001.fastq.gz,, +CAM_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.7 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CTTGTA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz,, +CAM_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,93,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 6.5 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,AGTCAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz,, +reC3_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,82,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.8 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTCCGC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz,, +reC3_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,96,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz,, +reC3_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz,, \ No newline at end of file diff --git a/runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx b/runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..7932354fc2ad69ab4f57f3cabfac0a7d9309c5b5 GIT binary patch literal 7193 zcmbW62{@GP`}bwvqAc0NU}(Y+Swlrxhq4dZXDnGpW=v!mLLMq*n@A``c8#qpF_mSk zN%joc*ND)_^1nUx{QB4X{NCd|UJi2|j=9crd_VVje(&3PT{5Jh<)WfuWTaZq^s)I! z9#VZxMMWifh>D6GSOdJE*HM0+&M1_pY=F1d-FuxrujP(JIy4Qd51xH%k`&2uet~;~ z?oK)QSe5dc+WnSN!$QAhZ&&Q;?OfF^;%x>nmdn;!hMV!uts6Wj8KWWDP2Z)5FGEdh z9AZ9a?dX=w9=r9Z#l}F1hQ8B~Uml<KlnW!PG%9|N$-kS%na#c=dARMdUF6Cut2Ug0 zj!;?D`qXaTs~famVzstk(}Ma+{%ZHR+vk&gN6oy-beBHV={?S|)y8dA$Ca6PogH?* z6wTKaA;1^8#7_YyuJnxZT>4FJlyN67=m-@R|6f#8yuak4-H}KP8v6Glf1tZ59cMPu zeC$?3?5$Mw-k=rQeJWO`hgk9WO9t{uDODb`Y+_4I?#_mB;?eI+a8{?pzt+vVci)tx zMANQ+{-Rnqy0xTve|7g>=1lo`_K7ydZhP;qO0@#vq-KhEXKtwyzHj4p{as<)x4qsy zZ~HnZ>P|kjy2!~bt@_~?`2|g(d1i5_jx#5e*P}>F110Ou8Rnb4&ci2oqV&O?Wt5`c z6)Zz~V1lcFf8$JFM2^9NN$if2)Y1rwb{a%7_+GvHp#Gv#i39sGPl1&H(n7H`WapEV zt#sjdX*DTWUV$i=nzkP@mfvs*Cx|=F({t?$%v5}`jmrc6baEV;hDdli{YXftw@1vZ zBchr@;7uFf*+?6&?VWRP7+J*D?h+ebGBS8Y`kqljYK#$mRU1x4sdssL3lTvlAXO>K zUC#Cms-x8>FbuZpUL4VF&R4F5`f-=1NWi(p&Gu4{tFox7+_vPyR96kMhFV%quwsm8 z(uWLYn(-Vvrz<^cYM8(zJ2{1+iW;XvN>ld3<>P5@W3Hb*|Jcd!bUEgR8J&k^YLQW4 zZDX*_)HGpSxaY)SO#D-B$unq6+@_jO0(p6>dMF2HVY$MJA)D@Y`ehg|5SDupCqus@ zeV6Zj?{8|J>AO|g@SaP!Guwml#V4_Q7VoC7_eE_%j!^IRpJGo=g&M`1ZxU~teW?wF z48HvK#!VJG#6hNX(+SU+OkY84e0FpbW7WuwNWXXFq4h}Q(sTdF;FF%|M@2a*DwO+c z(CWg~`pe@(6{Gy;-H~hfvEfNO<*6Wedj^l#Ig_Agu1Q^;pz6>Tt3w*B1-#9=*}DN{ z)e1+z2`etvkqSpJ<<a~F(fsy1suS&DdvwTE6zRH5N4oIg!;7My%G2uF+G~qy<dHV? z>%k!DtS48^oaA@t)%$c^45nPpy9G@NT6x%)5DaE0rZ&zE+q?{!v=tS{X6KmHr;4l5 zdhw4*8V@<v^9$~U`JesX2GjgB8;SA@KBpd>#{Q&1l_deRTXJ&lYG8;r^DB`|*XrKs z-qjVXX-*ZEfsRgieaN)tdZ52X=*C6O5LC2Q&&9nElUUl2m7b4}*x!u5IhEQcsT0I^ zykS<dX>|Klj{MxZhr4a2I!DDT+@sCX*qj$EOFZ6InQIL7t)sNUc8|Zkam`u2`C0EB z{mUC29g3bQ(AH5l;its04`SY)7~PvnBrZk6&ubE6XF)HzDql9p<@+Y0Ya5Q_7mI3| zyDU37Id~h*gg}y-9KIcY;Q#H$x9z1l%}fnZ;aAGe$O6ZA;-gI(a>}ptwxU+A+1D>W z2(}+Kd;+l^X_8A7zr788N-0wuvYumpCnt0-PD@WGxEG_LCd!NH*0n%Z&C{7Brhae1 zI@pDf^cB=!S2Yw}jmuYf<>>y*8xxIclP@z-CLaZz(+&v+!wlA)A9c9;Uqgo4je=hv zmc_dC==wB{6}rgq`s?1zU4Rt$Pd51&ZA(e)oj>MzE?=DkGuRRxH>H#!ZozRSPl2=O znYu$FyZrKcOXi?(ssV7FGGq(sX9mVt##zELYz!lmVWcH0_w>%NYS>ma56l&jM>(z| z^J?Ex$6?!2C-eQ{>J(wbrCKXFZt1AJZCAviGtkg=SGtCl=F6M}h3+Pp1UBchKil4` zJ#`x?KhjaU_I<NASiL!Pm?F4D7+7SZAGy*opg7YZKJaMuFn30}A3<BT<vlnsD5%z> z<b5Zi?q%>8$!!`d*<BEfH!(BA9t(6kW7zh7uk!e6>0XzmyVln+Md1|cw1H*A&P=zw z2iT*ZG1Y?{xU3T!TUWE-^d$fK+FY!E9(;29<D8h<4Uf{((6%VPyn*=?fiDU|#F)7J zX9Mg$v5rk-b>c#~zG>Yo{r*IHZwxq3l-qmjy2|K@zRuoj@o6<C!|cQ?O~FC+gpILe z+-YdawG7w`cQ?ghy4teP<YWC74|!Z44nseB=LXJB?71t<`CabvNGi57-o&?gF}Va$ zjaP`-?eSz#R-VV~(o@Qjd&Wpk1(`cc&90WY?Fj;F(It1ThaxfGz4&mi@k?mJ5y3$_ zT}I0e9*&z^n)wMwjD~zho9)0CUR9)}3elD<ery!|1}&uiuA%DaKOXa$wviFeoiY}d z9KQQ<OxWn2MR?CpMkh0I=_6m*%5%tSxd!(3El2nD4;l7(o9|lMh%Y0Nhx?~(`ggi$ ztkkPJH+MUZ@7p^(!ZEWg!{)^W(}j1BUO{+-bQrsy>um1AU(mo68h+UQqCSW68RAT> zKdr>j5?bAo@#K7&-j>)QErf+*bmnco+4Yx|n;%>o&ZpPqg{jsk&}0K|MB3V6D|N;r zVcqFZs~QM5p0ZrbkR9ZVYZ$*dtNX_BI{HX3kMVMPlYM%&q6q<k-MU^+ePh&Tw_e-K z{DE7iN!SNNw-kgb?%Gy$yB_kv(ZQ#klTr2C<<6@e+thC%M9BWNOVxSnOE(gHl(oK_ zYCgKTqLvt?Q9d9K4LWJv+DsoIBs}=iHbgQ?XdG1;-*#23Z1_F7-fbr8Q+MD|l@b-4 zV@1Y#b=Fz0*_g(Rd#>fkkVA|Yo7Rdc@1&c)3oEIg>;S3E;4&nr_gyU<M~aw@zL%p3 zesXS>blA3n#&eUaa)M1o$AXhA!r=tSYD;(br@V?#*4>ivNXOLor(%f;nS{gD@He-K z4qAD_Bc5Js@=m(pBWhdDtX)97sMe;^meNokXJL^%y(hwAJZ68W&bV#i&CFMnWvQA@ zbAbScwHbTF4(ssQewcHNM4Z0L=dkA-)IS~AZF9a<Lm_##X?bgoO~TNY13o;_%F!^C zZ?2D@E5j0W`W8hD6?66Q&n}4=UWpq^k?u*_Y2^@F1{-2%CDn34P{P#Da@R-1EM(~7 z-4(;7^;z2QN%u%m!?OrVgq-&M*9y3B>2rH$;8~~W;O~>abd|EkNE7i~tqC|GQS0YA z_<mD;#@r&1Az46$b{}cs*uVi_GoiY3-y)pCgdpwj62Dq=^QP<JcND0`Tr9@jYJ-Z{ zSUb<*liK-<7Gn@Gw<!F;w)ik%0;EhEMVQLu<CQ3+7ULpujG%2>6MSCkWXMV-NThta zCB0k{BOPdh%OSKgE)kNYFF!ZJ+psTmiyJCdB}!9FG7he;4G-M3TbOrQjl^+x7eUB* zC|>4mNte4UVp#ClF|UYOQ1SR(HeJy|I$_{%#TPN}T!!H*+NJ2buSmi<dQlRF<RE!^ zH>Ab*eQ$(5_tBzwi*U)B)&xkw0=-bg^V5j=X&U%d{Bs7lX}#NbjT&vz`zjrLl`7$_ zfMzm;#39sgjDL1R2oci^2;gQ$#I%1ANR)V(APmpS9!12&jq9|SPhG&*q1Ae(6mvi^ z(w9fqTRHB6?@M?%QQ{@|FNheL_g}<gC=LNL(EAdtnUaR)xgv%&r^u9K(Rhi$1ZwzN zsTl1^eCvA~2oo{M0znF*i5_n#VqUTW8SXKK9VI~Iw8Et+4O%J33#qd?NeMXm@gP9w zl0=X*Bk`ReLjPqEu_i+g@19b64!<MJ^i8yoTKy~7a4$9dG7x+|Ui!I4b(Hix-f(LE zCJ26$Pm`ZMqBH$;yu`}<J##EyxLs9(1O!hqT|Bp&3JAp}NbHl$;NG;Biy*@V3Qe}1 zBs}YRrV-vek+!O{ps_*-0LirkbV$Ul=xi0Bav-1-;1c7^6D5`pI%Gf}|MsgbDPhb0 z4iOILRzV2BO)t>?-3_vYoY;bzb1jZu4Dlfd+bx7g<sFUIgawU}l^!7jJXV}gq5YZ* zOitKS73_ob0Qln$@Vf)}djS0I2l%rO@Y?|R-GAbb`VW34836w~0RQ6y{7(S<X94`T ze&T-&;MWE4pZ$sd$pL<wANb$>z|UmEyeIIn;Zn*>L%hP0EF<wR?h5_#d~IJuj1onX ziriYz$WAvrwZAtWQN&zV`gyX5gY{B)n)!*amgO&tLPlNTX-S4cOG_~?4*KB5K_BP> zeV~W>2=qaUWFa-0>l)`sw5@OAK_7HUO@LEA%`l{H_D81G<!PBxkhGygv1!k&n_<P# zTW%9z{*jop9Z8ev%A*0rEXw(_?02x~FJhWQPx+X_I0lspse7^GV2ev-W|nkpS4-!= zJXtlFGCxX`hI4<*=2!N3aG5pZrSV7c+_BiSx_>Nc#5WNFvKA|(Ho<%XTbTD1tI@j@ zUh92)9WG2UW|OsA9E?!TCs*wHjXtUK5c!gOs6Fl5vT>yWStq)39b90~fXb4;K-P(( zMoswbG}p!CPPL@Xxhtcx#8i6ZxdXp|R~{KFsvgeQn}C^bogwRFGu7$aSclfdTs#`U znOyk={P(?+rH*NBHjp#<L_p%-cT2rGrmCFAw4FspVypzY0&j3$ZaQxbyrLm=Q=%LK z@K^p1fAT;4O=e(wC&G9DpMLRRM=*?}8j$FhACayRuiPW&5TQ)b;#k$Qq&qg>nYN=q zvku(7;y@_p@4hUk_c9M!d-*PqX%*`F_Y+7#+hWNM7snqI*Tuvl$scY6;J~P?=jnAM z+?u()K=?pSK;n(PM)v_yn){OEI=D|f+`Aki=gojJrK3{^tmScZ_M1!FU%(bRa)y?4 zd(UQI!$__Ow~|EVnE7fzLp^UqIRWC^szlC-W$XuPh|{i4pWDK}FpfCLPp;UAQttZ= zy43`%RvI-SlX*3{E{4r>7G_@0M%HnOt&3r%Bfp*gb~lg{M!Kim)8j+d(e=%8fvioy z$g1h?e*C8KZ_}QA4g^?p1|(LL?F4Y%1+9W1o|CYe9q5^Lo&e6N?sYK4Y!z(Bx3bfA zKY-IqKU|qIaP%g(VV#Fea-?IM$ux`{q(*D#YBAo*fdZ_*4zNsN=DGvxXMl4DWOk(O zm{CE2d)u}5xDSzC!)-rHzV4vpfo=bkJo!H*A9zsm0Y6KA4Ji3a01Dtep?u*ERcl}f zKG1CO({5@V;5}<#z<UC{Y3&y$U_ZPExDvoe{>OU&a6i1K>i?TJ8lJ*KtFqzWsJ~IN zT)o((;Y+~bm7C2sR<a9`7JjD{-1ILeZ?-<~@CxG&-rl)!X(=z!N}#DHXJ7|BUG%Yf z1>4}*{^f3}<h1K6xzyd^h3i!KlbdL7o;cOkmd=%DOM`X_b6l?dj~d$2FqeI3)4}Ob zKE+J(Ow)Jp8{s|n-{%TCl+>42v{Y0nJXBP`aOGf(f^l;8LZW{xf6o+>t?kgmDqOoK z`L(=-O?SNCBw<aN)l-MSsp8)WsUb&1%5tlwZ2Xw^Ly?JPXM?>q4znzNL>FZj25ro@ z8^$L(6q#O$&7Tax2)%x5Q1WunINb(SVmjMCYXaqjJx~=3_9kEZ>oHxLnn~yVKpV8h z3<fvCW-6MKJN&p3r=H`SmXBVBxsGv0r#PO6+2<PP`m6HY{Qz;Hvk*p-A}J`b!kbsu zt-W;%ig@h`@5tLtiH-SBUOxBIm;Y2nzaJ6ZS%Ci56F+Y><1hN5X<c<+;Bx=NGg|Mn z6yNi2@4t$6&-;clbLA_ZYkNCwu+AN*q?12haF#P-vfA0=+;OB`F>fI7ubuF92Nbwu zwx&cFN0s=doHS6#ZPp2iAE~kCpH@23bL5)odjqjed4!h3N0^bLG8>3Xjn5HvC?2%g z>~o&8CW=MrR!74qPUEeA1Xa_<$3vejMRYSq1=i?1JGSeJr;ObYuq|;n=RyVX#&sF4 z$m6WXtxwJ!Vp8Xt3QqHQ9p!rdTD|1b)1-ouaf1L|mOYsl7okphqup*YJ#V+P^)RiT zmLeX}!$q>+YT`XCSs{X%5OJxf7spr@UKfuC^|K7qOkCIdP$UJvPzisdnH=hy%hAT_ zjR4<wLO?kq-qM`9FzF<vsLI2foU3GDrswBX%5{@g*G$IfM$*NZI3>8L7sD2E{4naJ zNYs$bs(1AjVLe~{{TQC2ByjE7;X#M$^0YjXv~e~su2eK=$nouioDG5bLR^N(3hmmh z@b`xZz7yXPK81iQ&4ZpO<h}q!UD0-kR51xTYbz>fU>x9Tb<xHzpUufb)N?6n6(m6{ z<{uW9U>{bjFfq^&vD1&KpUW-rDC^Jz4_ty&b?+0!0;;04EeX_oTPLmi(+(Hjzu7vo zbNh;Q>u@Fx2=EEY3){Ks+IX0w9xX($L%7s3;vM4amv5Y{@!IkYf`#@gqL>AG!-_-C z7AsZV4&nVs#sXng?G!>*UxrjU_Mx{^AIHcGHf53L^@~8%mFrxMe*F*GA&oLq`o4oy z&DyXWZoLoLjhH<`vy6Djk_iF4ht*E5=hm}A?q6&uO7RFEVPRQ|a1nZuy@L)_Z)gZa z#!rL>Jj<_WnqN2>{;>MCP!5D>H*-P&DyXfbeK%Le*s4^2pu#IuYO~zcna<3Q11`&U zCOz?6^)ZG?aiLR@s?M!=rp+3;Qoo0gbe2S7hm#n_Hfj3O6Il7t*AdX?C?z?)1+2TR zX;X=%Vz<C)1D~&P6B%Mn8Z9KvTOoF8AJEp}v{jH>N+wq=EM9AZcJCH&L|~4uVBFLK zVWeBLcLYD1KVeMcBu7tQxQctd6(%?uXtlU$u$kt>Ub-2l<V6PEwmg1gKs{*dxrP@^ z8*|EoR`!nYhNhdcvzQ6Ac7(X%)w%dOSUH(Adeh24c*a<0OKy`VMER@8^?NlF5@yT0 zXa!8bq{>3ZbIOkJKSo6L_dGX@=KgUhV3vFE!vYwQgCEih4V683U8!w2qXo=1MX*Re zv<J#Z10*ji2NFU0xS$XoK5iNye~hb)3P?-yj49H~2?OjvyL<SeMSu_=v<Ao>gYi{^ zLeVbnNN*>!EXo(@1H9vk^7D4W0KfXVL4BQEJe}N-&{J}9N>Jbvf8_xEo>Rm;&=>jt zk`d+V>fwUaLAm&QBYiOck{J5?4v>hslb;(BqXB~cF~|mq=p!^hrp`*LuCB@|iYliS zoD}8dPlH6DnrEQD>DBxP=#K%p)V0gmwE#$I04V<tXaB+Ue~-!k=6knWo$a+8EB$z( z4mqF3yzWC%R228Ma4G-cSf!W*uC^gw6%H#A=R@N3;P$;`leI}Kw8~}dxdP>#jhN%Z zYmSJdVjD9S-mHuwN84iz3kV~DCmwc=^KWSn!S47(@S1Dav!?nZOtXqtkVeI&J^KC$ zr$60Ur`tB6c?HAPscq|4*i^@2Ee~s?exqr=y^;6s$OT8;dCypC-zD;7Sm~+G1XeEx zCKYM7B<SpwFa9NH`_6DD`1nBgH0SS<&-;F0ECQtR0FuRiNInqzb4dO}{jX8^Pwmgy zZps~@AGh-Gc|gP9!Wz{S)wfDrDfsm0aIOq}W+zd1joT|LLYyt``aaIVulsv;(E|^J z)!I4RH&0sq91%Io6_*8P22q=rtfqlyOfxaoVLH6A(YV~(Ikvyfu_?yfhwFkR>NgVq z^7zV}exK(FV|Cyw?S1dYVZ?H0k5<-lkj%XM^qKe=Eyp_(XE@3%11`kV$W8`r=*LRO zG(L=rK-Ez5T1u3V3+;awJ3;Z~q5vZ8si~+qfz?(U<%0o=&EcR%(RK%i0mY{3#&6}0 z)W=RAYw9u;iA?Z1RB@I_NAH$ky_mT~;^?|ajDJCG&+zoD9-~L0WDpr8jeCVt{NBWm zeVbBoU1luip#r9DYxu5ArpL1q$}7)|F={YAU$!zB#H?%zKK&$0JoxMb$%uQ$q=YA> zXr9sBk%BI68$ebVg)A^@<96t1nvPq8y9uQOgVM80*y;2v8#Yni;;=RA<97REIcsko zb8p&rDjDi9AAMrN34)6;GqViaak)@DU3C)oc(&`4TiagiC$f3m4(PbY>wj;F38WF$ z8R{p$*4LtaA_)<muChW%+jqFYXwRC<-DQ`R;zNg^$Q+!V9HQo;`R|8C0It8ka>5Um zKRWKu;6IOEeuPp{<%F;N3jRM1V*bqX=Y!U-EV@Vk{juv;hJSa+Um4zU|K^v!0{`6! zeg%pGPkn&;|KbaO=J~U|e&yi;j--B4{J%BZp9%jg;a>?4@%?K-UoxblKiI?od=COm Ke)7QBsQw4ViyT1! literal 0 HcmV?d00001 diff --git a/runs/isaSampleToRawDataSeq/run.cwl b/runs/isaSampleToRawDataSeq/run.cwl new file mode 100644 index 0000000..8f00f6a --- /dev/null +++ b/runs/isaSampleToRawDataSeq/run.cwl @@ -0,0 +1,24 @@ +cwlVersion: v1.2 +class: Workflow + +inputs: + arcPath: Directory + assayName: string + startingNodeNum: int + outName: string + +steps: + isaSampleToRawDataSeq: + run: ../../workflows/isaSampleToRawDataSeq/workflow.cwl + in: + arcPath: arcPath + assayName: assayName + startingNodeNum: startingNodeNum + outName: outName + out: [output] + +outputs: + output: + type: File[] + outputSource: isaSampleToRawDataSeq/output + diff --git a/runs/isaSampleToRawDataSeq-run/job.yml b/runs/isaSampleToRawDataSeq/run.yml similarity index 100% rename from runs/isaSampleToRawDataSeq-run/job.yml rename to runs/isaSampleToRawDataSeq/run.yml diff --git a/workflows/isaSampleToRawDataSeq/README.md b/workflows/isaSampleToRawDataSeq/README.md deleted file mode 100644 index 8ecbd0b..0000000 --- a/workflows/isaSampleToRawDataSeq/README.md +++ /dev/null @@ -1,7 +0,0 @@ - - -```bash - -dotnet fsi isaSampleToRawDataSeq.fsx ../../ Talinum_RNASeq_minimal 1 rnaseq-samples - -``` diff --git a/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.cwl b/workflows/isaSampleToRawDataSeq/workflow.cwl similarity index 88% rename from workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.cwl rename to workflows/isaSampleToRawDataSeq/workflow.cwl index e743f32..c2ef89d 100644 --- a/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.cwl +++ b/workflows/isaSampleToRawDataSeq/workflow.cwl @@ -1,5 +1,9 @@ cwlVersion: v1.2 class: CommandLineTool + +doc: | + Run script with `dotnet fsi isaSampleToRawDataSeq.fsx ../../ Talinum_RNASeq_minimal 1 rnaseq-samples` + hints: DockerRequirement: dockerPull: mcr.microsoft.com/dotnet/sdk:8.0 -- GitLab From 7efff5719fb31283668259210a89b5223358a25e Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 09:47:31 +0100 Subject: [PATCH 4/9] remove cwl aux-tools --- runs/.gitkeep | 0 workflows/_aux-tools/collectFilesInDir.cwl | 19 ------------------- workflows/kallisto/kallisto-workflow.cwl | 2 +- .../yield-dirInDestination.cwl | 0 workflows/merge_isa_metadata/placeholder.cwl | 1 - 5 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 runs/.gitkeep delete mode 100644 workflows/_aux-tools/collectFilesInDir.cwl rename workflows/{_aux-tools => kallisto}/yield-dirInDestination.cwl (100%) delete mode 100644 workflows/merge_isa_metadata/placeholder.cwl diff --git a/runs/.gitkeep b/runs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/workflows/_aux-tools/collectFilesInDir.cwl b/workflows/_aux-tools/collectFilesInDir.cwl deleted file mode 100644 index f8d411f..0000000 --- a/workflows/_aux-tools/collectFilesInDir.cwl +++ /dev/null @@ -1,19 +0,0 @@ -cwlVersion: v1.2 -class: ExpressionTool -doc: | - Takes Files (e.g. from a workflow step) and yields them in a desired directory. -requirements: - - class: InlineJavascriptRequirement -inputs: - files: File[] - destination: string -expression: | - ${ - return {"outDir": { - "class": "Directory", - "basename": inputs.destination, - "listing": inputs.files - } }; - } -outputs: - outDir: Directory \ No newline at end of file diff --git a/workflows/kallisto/kallisto-workflow.cwl b/workflows/kallisto/kallisto-workflow.cwl index e7f0350..1d020e1 100644 --- a/workflows/kallisto/kallisto-workflow.cwl +++ b/workflows/kallisto/kallisto-workflow.cwl @@ -57,7 +57,7 @@ steps: BootstrapSamples: BootstrapSamples out: [outFolder] collectResults: - run: ../_aux-tools/yield-dirInDestination.cwl + run: ./yield-dirInDestination.cwl scatter: inDir in: inDir: quant/outFolder diff --git a/workflows/_aux-tools/yield-dirInDestination.cwl b/workflows/kallisto/yield-dirInDestination.cwl similarity index 100% rename from workflows/_aux-tools/yield-dirInDestination.cwl rename to workflows/kallisto/yield-dirInDestination.cwl diff --git a/workflows/merge_isa_metadata/placeholder.cwl b/workflows/merge_isa_metadata/placeholder.cwl deleted file mode 100644 index 30d74d2..0000000 --- a/workflows/merge_isa_metadata/placeholder.cwl +++ /dev/null @@ -1 +0,0 @@ -test \ No newline at end of file -- GitLab From 693ee201fade909f419f951672c18848aa50bc5b Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 10:55:50 +0100 Subject: [PATCH 5/9] align with spec: kallisto --- runs/kallisto/README.md | 8 ---- runs/kallisto/run.cwl | 40 +++++++++++++++++++ runs/kallisto/{workflow.yml => run.yml} | 34 ++++++++-------- workflows/.gitkeep | 0 workflows/kallisto/kallisto-index.cwl | 2 +- workflows/kallisto/kallisto-quant.cwl | 2 +- .../{kallisto-workflow.cwl => workflow.cwl} | 0 7 files changed, 59 insertions(+), 27 deletions(-) delete mode 100644 runs/kallisto/README.md create mode 100644 runs/kallisto/run.cwl rename runs/kallisto/{workflow.yml => run.yml} (56%) delete mode 100644 workflows/.gitkeep rename workflows/kallisto/{kallisto-workflow.cwl => workflow.cwl} (100%) diff --git a/runs/kallisto/README.md b/runs/kallisto/README.md deleted file mode 100644 index e3c73f3..0000000 --- a/runs/kallisto/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Kallisto Workflow - -## Executing the multi-step workflow - -```bash -cd runs/kallisto/ -cwltool --cachedir cache2 ../../workflows/kallisto/kallisto-workflow.cwl workflow.yml > $(date +"%Y-%m-%d_%H-%M").log 2>&1 & -``` diff --git a/runs/kallisto/run.cwl b/runs/kallisto/run.cwl new file mode 100644 index 0000000..7ab4d83 --- /dev/null +++ b/runs/kallisto/run.cwl @@ -0,0 +1,40 @@ +#!/usr/bin/env cwl-runner +cwlVersion: v1.2 +class: Workflow + +requirements: + SubworkflowFeatureRequirement: {} + +inputs: + IndexInput: File[] + InputReadsMultipleSamples: + type: + type: array + items: + type: array + items: File + numUnderscoresFileName: int + isSingle: boolean + FragmentLength: double? + StandardDeviation: double? + BootstrapSamples: int? + resultsFolder: string + +steps: + kallisto: + run: ../../workflows/kallisto/workflow.cwl + in: + IndexInput: IndexInput + InputReadsMultipleSamples: InputReadsMultipleSamples + numUnderscoresFileName: numUnderscoresFileName + isSingle: isSingle + FragmentLength: FragmentLength + StandardDeviation: StandardDeviation + BootstrapSamples: BootstrapSamples + resultsFolder: resultsFolder + out: [finalOut] + +outputs: + finalOut: + type: Directory[] + outputSource: kallisto/finalOut diff --git a/runs/kallisto/workflow.yml b/runs/kallisto/run.yml similarity index 56% rename from runs/kallisto/workflow.yml rename to runs/kallisto/run.yml index 0f8f15d..1d147f9 100644 --- a/runs/kallisto/workflow.yml +++ b/runs/kallisto/run.yml @@ -17,22 +17,22 @@ InputReadsMultipleSamples: - class: File path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz format: edam:format_1930 # FASTQ - - - - class: File - path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz - format: edam:format_1930 # FASTQ - - - - class: File - path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz - format: edam:format_1930 # FASTQ - - - - class: File - path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz - format: edam:format_1930 # FASTQ - - - - class: File - path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz - format: edam:format_1930 # FASTQ + # - + # - class: File + # path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz + # format: edam:format_1930 # FASTQ + # - + # - class: File + # path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz + # format: edam:format_1930 # FASTQ + # - + # - class: File + # path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz + # format: edam:format_1930 # FASTQ + # - + # - class: File + # path: ../../assays/Talinum_RNASeq_minimal/dataset/DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz + # format: edam:format_1930 # FASTQ numUnderscoresFileName: 2 @@ -42,7 +42,7 @@ FragmentLength: 200 StandardDeviation: 20 BootstrapSamples: 30 -resultsFolder: kallisto_results +resultsFolder: test $namespaces: edam: https://edamontology.org/ \ No newline at end of file diff --git a/workflows/.gitkeep b/workflows/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/workflows/kallisto/kallisto-index.cwl b/workflows/kallisto/kallisto-index.cwl index 3d29b9e..d35f520 100644 --- a/workflows/kallisto/kallisto-index.cwl +++ b/workflows/kallisto/kallisto-index.cwl @@ -4,7 +4,7 @@ class: CommandLineTool hints: DockerRequirement: - dockerPull: quay.io/biocontainers/kallisto:0.50.1--h6de1650_2 + dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 SoftwareRequirement: packages: kallisto: diff --git a/workflows/kallisto/kallisto-quant.cwl b/workflows/kallisto/kallisto-quant.cwl index 6d3e357..026f7e1 100755 --- a/workflows/kallisto/kallisto-quant.cwl +++ b/workflows/kallisto/kallisto-quant.cwl @@ -4,7 +4,7 @@ class: CommandLineTool hints: DockerRequirement: - dockerPull: quay.io/biocontainers/kallisto:0.50.1--h6de1650_2 + dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 SoftwareRequirement: packages: kallisto: diff --git a/workflows/kallisto/kallisto-workflow.cwl b/workflows/kallisto/workflow.cwl similarity index 100% rename from workflows/kallisto/kallisto-workflow.cwl rename to workflows/kallisto/workflow.cwl -- GitLab From effde36dee924acd39d5b6e7a40a7f13335908a9 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 13:58:02 +0100 Subject: [PATCH 6/9] try fix kallisto_vollect (fails due to docker deps) --- runs/kallisto_collect/README.md | 6 - runs/kallisto_collect/out/isa.dataset.xlsx | Bin 13276 -> 0 bytes .../out/kallisto_mappingStats.csv | 7 - .../out/kallisto_sleuthObject.RData | 3 - .../out/kallisto_tpmMatrix.csv | 31435 ---------------- runs/kallisto_collect/run.cwl | 27 + runs/kallisto_collect/run.yml | 2 +- workflows/deseq2/deseq2.R | 4 +- workflows/kallisto_collect/Dockerfile | 29 + workflows/kallisto_collect/kallisto_collect.R | 28 +- .../kallisto_collect/kallisto_collect.cwl | 46 - workflows/kallisto_collect/workflow.cwl | 52 + 12 files changed, 120 insertions(+), 31519 deletions(-) delete mode 100644 runs/kallisto_collect/README.md delete mode 100644 runs/kallisto_collect/out/isa.dataset.xlsx delete mode 100644 runs/kallisto_collect/out/kallisto_mappingStats.csv delete mode 100644 runs/kallisto_collect/out/kallisto_sleuthObject.RData delete mode 100644 runs/kallisto_collect/out/kallisto_tpmMatrix.csv create mode 100644 runs/kallisto_collect/run.cwl create mode 100644 workflows/kallisto_collect/Dockerfile delete mode 100644 workflows/kallisto_collect/kallisto_collect.cwl create mode 100644 workflows/kallisto_collect/workflow.cwl diff --git a/runs/kallisto_collect/README.md b/runs/kallisto_collect/README.md deleted file mode 100644 index a680462..0000000 --- a/runs/kallisto_collect/README.md +++ /dev/null @@ -1,6 +0,0 @@ - - -```bash -cd runs/kallisto_collect/ -cwltool ../../workflows/kallisto_collect/kallisto_collect.cwl run.yml > $(date +"%Y-%m-%d_%H-%M").log 2>&1 & -``` diff --git a/runs/kallisto_collect/out/isa.dataset.xlsx b/runs/kallisto_collect/out/isa.dataset.xlsx deleted file mode 100644 index f590d99f95e7568392f316133577e385bd72228b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13276 zcmeHt1y>zevo-{G5AF^D4({%5!QI{6Ex5ZAEI@!@!QCOayIXMg1h{81^L{hK%w69P zxNjfn)vLRnb9U`|cGa#b1!*vFbPz}oXb=z(VvzNf45~O#5Rfwn5D+vF=r>xzcDBwY zw$6I*J?u@Kbm-k}tcmi$-%#a(ya7J{-{b$V2FjDZ*>(evL(Y;P5#uW{7_SvnFam^A zjUvH)K+uqSNvi3_tJ-`hO;Ji0NE*qcjvqSwOpgz4)l|~o5#>6tp=H<7p;k3b_scO~ za6ekMMSx3ce33FEMza!_Jmcka7Pmr5v#;%wK^J+Jl^TI7K`$B$+D#6JOD1`SS3XeT zQ&x@}Ke>$@$tJIw$=4LVZYBgMUL_=qW4x?!VB^vz+>N&5B*X0bSU8GWzo##MhO%h- z*1MCd!&j-!B}yn@@eZVfMwt*Etp_=bgAx6bidi6hG<UgNDJH7F3PA9Y;|A@6=dQEr zawDOwH~=Rh0QUL|&6rMwRFks-o2zX~4yJ`>hI)RjQva#<$IXFJs_il-Gg22{#rr^{ zEoMk2KD!2F6MB&NIr5FRVFFQxcsL9Jq;UDO>r+U?I)*xe{;HM?D#^_eS}zqznibs< zXOG-!HS=EH_l-qY1B>6|cz7YZJa#}aay@$7rgLL#J>CWiK;B+$EVM15c{HzjcN@mC z?2}q!54fBmfq=ZcfPpCdjmQ=eL<aakB5wkD3I`;zo}-Di69fHk-~T1>|6$htW$5Jz ziqbs*^x$=f7vaGl87>iF<*Sj<UTB~BH|U#Aq%v3HwCjG{6-^(&Izd0C?d<Gue>ZKy zv1ZU^>`l=ozOtr=;F2wJktP0E7P|NaJ-!Qj|C<4^8`f@VYpXh+0a6xypUqK$1U>y* z$Km6%qzKQ*w}xT_I$WQr)i-M4qc3y0%@yeOu5dA8c#SzP(5;jQtJu_(-gAG{eU5CX z8PxX|w1DNfB94c!Req}|XdVY=A;DjC(x_$}u30)Q5J~87T?Qsv$~kR}G3!z`kmkV` z{dvtk2&@1X*DNd>%58-48cp=QUWSvx!<p72Q48gh;p9cQpmz-+`Z`9mIeIgKqFc=F zBfrM23O37kGsrc<u$djBlrx}${>i53M0EXHFc6SMpqB*F4aD7=!OhOm%Fxcv>Nl5I zsH$UE#)0gkXYm5Il^ys1n_Hwt>|d|srBb(eTkY71UIzKK-U3x;^`+fNV#@WariquL zp^=w22eVVZ{e#Ui({?npqz60uWUvuVA+3jKOKQ`@_tGko={Q(74AWLpCnxd3hm*s* zb$WK~)(TEPR*>98r>}~o^43}@2o}|?8@vblpZ4<mU_-Y0Qrd_b6A*|?P3n(0@>UI( z($R!S#=16KWTg`>9L*(*DUb!RR0Z_dYEz+V>v^Cm`nFv5za%v93Y1e9Sh5FZh-p#G zGvH&ok9MBW!A5=Y*Ms)k5!fck0hgwXwX~pa+^K5@G4~?z+2VJ!{=gTk?}Za|73ZxL z$6o5>ZcN_IPy-vQzR8W{=!=aIP%HL@47rsdA41%=!ox*FS&V@40H^V+V_VfMA|0|v zX%|DKFe8&0>k{FCg*b!{pDIXYK9<*bNllz{9j1VUl^{(sAP(tV0owqpC7>SM;9VL? zeow?Zk79vPuMS@oC(_%R&0PEKoS&=;g1J=!dK<L0jWXw&YX-AeLHf$z<Vo6UYBOip zr%AJ?^u|FD2b?DqCpXB1YX+trhzMT3?8)QJWJtkeCm0r>LMRq~6Rdo6`7e3a+K2Xw z$d%uU51v0(gUyRLDx77bLaykUvBz~m{e*lF@zuwfZQrOQHi72lCb(2$i0~PgeR_8n zWS-8csNLwWV=_5%$5VXHD-I|3LGs&0Zbq8|%lXQ+AO@v$gS(fypd8c0VRmmU%VpMz zTYU29<;bO3WOoD@e_c%@^xHvUhgN7`OShZ&dx>vi?b1?6(I;ppH0_{|4j`?rA44-8 zF2YqyL1o3_i}*&L1ox%Eq7*j*f5HdP-#u1kW_Io5l!cFt5{^CB<c>RUt3zlTIjQ5q zED>VGm@xwIy$W!TC<{LE$y6_NbybcZGVT=-qdws|=tS=t64s}rB`YvD<02UCG@cLn zFQMfYMFD~Xylo%2IE>3|3vs;S01!(S$e&^`TT=9LyDt@w)h%!yRpT&p0m6$+ND&{! zMGuQ-^mw>PyjEnZaB|C?MWeSx8v1;1IW*+ae#CiCc{_fzP`hn;89oPH%Ztjg(B{dp zX#DBh(#$)3OQFZhkMSLc!FJlZx}o8Pm5Yt+-00Rc50}1RqE5R66fTdaN@*OaoP;3) zx^LJTyTdHjVZkSXM{GV&hGFo66cm*iheE$KtCl?3Ut%rs(O{lhr{JNU%$o7Q-nh^s zy1NERk6g_UNaKGJJb*7L^$JMrW}v&o0f7bu68v|M`B$3%$9sYT!(X6l{l9&bE6Gat z0+8F_o<jj{nXVWpi_Q!r$0|oi(BEpQmnn#ueXrMXX_|G^=cF0H>_R-wMh9H)SP{3t z&~CbDOCnIgJ<+VsxFPIDuSUV34Ntxh1d2nTp&lO|m7TyLW;mfW@g)qt%R%SZyQd<@ z4lO7m5xH)f3SqGv1Gq3*I!)jY$!e?(*Y5Z~eo#LC5?I^NK$Jmky8F^3ynGA!G0=l> z@(LS9k_W*9WO9FonD)L)^cMQE^{1(<$Cy=D!6W=GUYRsODJ!pch%-^>pg5r)b%N7w zetL__*`~A5k0I)g<;!=&*Jq|X-v(yafiwM2lYvAc`%DW30zyO#0)hp6;t!wTWNu>O z?8NZv#Q2+YC{MPLUj`r#tjjOCh5gJSlS{l7L<ob*Bd&(&BG7G#nbst8Fm0)YIB7XM z=CFW*PG)-VSdsW+b#>kC;M!Oxc?~QvB9cpZ0V#gKlEzVYocVhD$L=Jwhg2dL<);#j z5H^{-#O?8qMYP0cvw@5!pn0m;n&zuAfdZ2dWnq`1J(i8i&>AQRdb>Od(Z*yAaw^y& z25FEOo2-^FXiZ4M=n%!nLK7x^ma9T!wBaE?X9L+w3sjs5wMBQHYB=-rEkPK!$>(w5 zM0G_e)vh!pm}v7(Sz};s=1}=iej+skTwg>BBb2F=sA`dRaz`Ib9=7%Ike3p5=Q=PU z2Lg<dR`537V&JEs%6Y2R1|uMT_{2LhNKPr8W42H2>?f{Y-SlBu+U*R9D`yW+ZsGl| zq^j{gx_tW<7Q}$^vH(A)*5~ZH;%~<>$x)V&f`Chc;F41+>P7bH0P^GDiRB_IGocmS zJ6d<Z2LXi7=?(2x8^>S1o3_m4H<<?WnURBx37`tG`suT8#OI|?XufaoZl7=!V>!l9 z;;C6OwMb+<!1WCQ*(I>Sj)6%pU9azC{+XeL+e<bHVTUhIjQt&2x?t$5`-^b{?j;Ul zk4HBuPmu1!ste`mC;ScEgWYnXVWp3emzd)>ZwkA8nc$%~q!iq)RLk1|q|htDI^1}P z-cDWU!4?orPlAR*N{Vj?D|Gutt)Pmc%fIMwx*l$G$RKDQL}LrMoAxKQJBNy-!uFmq zIgF%04yog)i{lnPQ%P<)v+#U?^3)(uABYrN9$L@VJ+{~9URfaAvghHT;w~99g__&k zy2m(Ko1k?8uhJ2!CX7bS;+cLy=$~Nhbj{elW7<gVSAA1|6u1M{9fgl*t)_Y%&(?YV zXx=i@D*lMV(J1S%ep7W%nC;)v&mP&}X)w;&t+T!D3|MkKI$gLMwbLbaEqMVhj4v<0 zh)|xkYP%$W9IOZN01C^t@PI-z8|~1V7Ak=LnO(9}VEXo?<#wy?E=yPx-0fuNDynTg z=3?yUxlso{pH1xY?$4)_yL}&&zRCS_ryrhGFP>4wxBQXjZ=+p15C<AkXP18r-!3ru zZ7sUq-9Md8KUXbxEG_IvCx{I{RD8RrldK6lp1nna!hKSg+uM%a^={=x;Y4$g@HQfW z38$neB31-2!i8g?Sx6+w7!zL{L$^phTjWXgfxl<e-lZ?E*~7adR%E`|2(O+!!lyjG zKb?-rB#WfN=W&TjfCx;12+V*8%z+5ZhX^d<HuhdB9LFjF=!>W>;9CXwFJ;7+v(LNE z^b>0spV28SI#bmieOGB_Lweu6HUtq!^V|Ckk|s2`3R6Po7%g{iS+77aC}~YMS_Q-# zd388&wxfRH@~L)#3bjQtm=>mh-C^u-#ZLkXpQyl}-iN&_Q8EsArv86o`BDM;YOsZ8 z5xFon-?i;3B;V}ivO9_mW(iE-kt&;i6e6nfrwtIun<Bm&<u3CH=XINR4uAy{d-o;- zEjX{oGT<7Q0g$@dt({25!XB(Th)wMDM$joA*;$$xd10P5pmVw1d9YL4Et)+Pv_}Jt zg%Y+0u@XD|#)}zX=C@mM)<hv`ZVSnt%`CJB9=In$EC4H3WG-hM@I{ZySihpBKeNXl zMPrk-?Je~2xhB!m8vMxWI`GH9N4hL`qvALNayb>Dn?E6IoV)!Jat-s-GR*Dv-z=YT ziYh#>sf3tf7t}x9e7l!Hme+(n$7A+k1O|LGT*%!PSz{t=@QuVloZz_2{C!RjP{vpe zy*~$SFg+)dvO!_q6x40OC6L%7BCp5CX+R+|=5D0dxf9bvVdKCT67mV(GZ>w5i&`RI zlaZ@FlAFiLKDN(!?`oipO}eobd(><NK+J(Q^+60!7@wZR62VibxI-KrgKc?SamZ@e z8#b#SozKNqFqoKg)Sn5jZ^+2jS&7+Y&#nsyQmi`%6JyNvbOBY)Ny`(%>AmO4Rwrfp zDpqY+6@K`_Z*lIl5F=hm(4G}i-Xk}Beouro=ic>GbhaDqgP}x0nTZ~+?@sz=YRULE zzd4nXVsF@CdHhF~o}Ly@SoaHCIe2+PL%hB)i#un)iECnDFQM}lTNlY8X$Z*;V5@$% z@nb)5tN$M+TFYzMzF~xKmD&MwP7MA;M<S6-g-ZC8j|r`FR-qE6Jiya?kSQu;S@!H< zdYpbi5=^ijc#Zyb(Wsc<xQ7%g&$n@W=%AlX-?e-wlp6<7OGRp#<>fdwm#Cq$Y|(U< zcH{S1lfHk1?vODZ9d#(BVt*4G9?oDUw|7$5P!Xn3Kcri)3HpZ$2@;xBSC&E&pDz<r z@m!F#CKP$#<6z)P8MO2>g6uQuF;98sgC`^f0aDA9;J{7l&zRK9+tK{TZN+R2zAOKd zVY`2Iuw9tQ?Q%c|+fVdcF7lUybv8G#F=6=i{mZu=Ym7$XvZHrkKJvpmx&36_jwN5) z7`IMbB{R-W!mF!4R#atXN@&GJdqd87qeNBsDOJdhH)%=$4595h7KW_$fN+v>bb<8C zE?K6vl%^{}r1*1Naq(S_ujiHX#Z+6Gr+6A%cS4F@yTT=JR@6co*>sAZ6$cfIx4cAB z6p9Iq?E~DqpVG@8eH~G3zCjNxfIWy<=cN!zaxT-n?Sl@9Z|pSX2w10x8j$EF{rGkO z4?k!v?Jeymr7u{d3HQ2zh6-LjOvI$e2+2}@UY}d#HyPuF5TdBo)k>?$^QyOdYJ|dq z_mxiZiI*-7au~S@w!Eh9s8CUT%^%30zGF5pyq#2~5ZQ&)5Vp;IVQP}m_g0^Dx;*Hz zoFak_()9YI2UemzaC7ve*-<}L3~J62m|Rr9z;%>t8)tx^@Hm^-qIRY-{B~_ZPv>hB zeras*eC~U{st`i><_%G}N<nHq?ViwV(_*uu`CN28t)6-56J3RdYbym2Nyo+z`rtZC zx27cw<L><!v^Dr3!L|hIam6@<vSTG>8Fdo&UCpRdCO#1VH%erZTi^QN<tLzP8Y8JV zH+q-Jr=d~pLQpC68{bnSNU7Xc@&!B>kw(-5m<p41^uyJ0m2TY)d%wxl|D?^GWhY|D z;q`hxKe!6*;Pt!Sf9TPxX{w`<wuK^BRz97L)q8n*!d%nqcs@V8U_Y3lyy))j`1vrL z+VOJ1byKyqg2B-4b9s4?h`H`_^Ibj`e`y&HKkb}2y!yOi)98#M(jWlw#|0>Vb}vAv zH$ebp-?ij)c<_y`7SUn1OVvsDGM;)rL@Q5+)nYT@MH5*}dZk!3#EMarE0!DAMrp?I z`MG_L%xdCQQ+P}GM7-50y;M2K-FN0(wJoK^=qi&vgb38|B95*p<&J9MDEzV(;jrC# zUZyRXs_^Sm<jSD1X>wsleR3uGT4BSm;cgS64@;M$Yc`cVC04V%-o~T`!2bd84g0*? zKWt8~c&x-J!pMr>9%;P8<mlHWPEo-?CgK@Eef4Pc?t}CmSLh9nU<WMxHsTKgonE#C zX~+GkrbsO2cwX0qXaydpC7Fc5USA4CV$pcFAW2N`*hOv;UST|i8pf3dnELJ~Q<6rA z9m|X)%CJY1G5qS*sPr~MOy|I=NRuU=`h~jDaAt0<tIx?xEm+FVQT<q64SY`O69&w~ z-<u}YNc5BOkEP0K2gg)yvh+bs5=yP+s2x+GX-)1fl5DEX>>L8!-%^F6tQS7uh^$KK zaO`Hi_sot#l-*!`vrD)WIZZteu@6XS>5x2%hSo4k^?ZBktz%E?Yxi|PUvG`~q#YdF z+Y+1Tw&8XZS<xzx#~=h679MjoFbv~aTO_+o)A}?ib0L!r2@G9KwGAzCC%SJuyoU0p z+Yo^ps1qbatk%VkB(6*<lkXw{Ut#VD-&uK@=d5(vCzLzQd8jz)&fdTLC^end<*PIq zvr50x?7z9a5wuKi^$r-KIJ?}>k#DWuWhPEK9fs&@5pweZZ=H;S0+cK(Hd8iPf{u~g zXRxNdTS+3N+jgMfr({}+oq*RAHd*b=ijcW^@6Jq-Yg8EOLW}Wn;>!=YEBDywX*si| z^5%@sa1aR(?$p}R!l_b4`<lFGYhPxLeD~kGX{16@Ely(@$e7|Px?m~lAqt`Entjk+ zOjn<DR-aTjOwH32bJ&Fi*kE9|@7`{Rw(W)rE(wO1;w61I!YHmyZ;h&e9ZMJUOl1C? z4ys_tz)TeDti0Il;9==vQQ9V2NJkpw{52Xd1qj64e8)YS@<XG)IX!fSNxsRj3D=SN zFd7NPN|c1MF@S<Xd7_uw_My%ax`Bq2#p(fVAFF5H9kPjZMhi1vxzQC{GROAb%^(FE zvnEs|iAy_CZU~YwKFuqsmrjq)FBySl5-;C|R?Q!oPjfp%fR-@R0oj>*(4DD^)FNaR zOEE`|Fkn-;!v49mZymp!Y!R=!jW9a44UFqMJ4&ItIs+|KOt^n!kmKPfV?bsVM*QxB z+m`;2`Fv}{6lYQlDOaR|Ykrz>PB&|K#mJ;QEg_ctVn$cq5j{^@DcEhB{3<))?2r?r z#hzJFAI;&6bK*fL_YOkYrSMD*%_rL@IXcG*EBYox)L9Ry*3B88NU$yd-Nz9oS&de? zo`|ns6_;z7-$BF6&#>LwxQKD^UQ|%>4`z>Ox(K{GlFGh+99n6eHHC5u;PJHg<0w|z zR}ivGC8c_t!W~Rv(~n$9)QE;&Z{?(<d-0{VhFX<cpi9Cr=s<oSq?CtJUl#0&r8@jn zrG4l^gS4R^uc(bUee?*bZ7?C~YEd~bPk*|-OE(&f5*aC@H-cHW`MA}tz3A<5hC-D6 zqi!fy!^YJz*tCw93cO9OVB&a=D_Hl7))|85YSknj&v_du0^-uFt-=vIY@K6+7PKX~ ziEn{M2~@HacS!^8Q|=QHt&#pNwU2Q-$em?N{R=Re@z4D&(LB--6tE0<2=u)Ozq?;2 zXAf%=r(c^|bsM`a4&-Owsi#n?^=S?mNtidPaOB0wx2m*tl&flqSe7=raYml@#ZPDK z+sLR9vIVw5;4uSNBQ3n{j|U1nb8u*^l|$(#t0>EcCYmO#D`UqUIjCmVT6KjcVppZc z%s&P#e@y?pTQ92P**m^SXS4tn(HK8Aqjp1^|1xc+I`LSsRE<iNDTV&NyKJHPMh=iM zJNSO5LSAC$ZBnXh5P*7$m<R%c|CXEbO9Xzh_ox$nEbMT7g!83|mTF*ylfunLw7DgI ztHk}BV6D*1adK8*aeir8bSs#4!;-c8P{nNY>cS_BQ1HPs;Y*>^d(3*mUha6Y3VjB= z9<%Y{%+jQ~WYr%^W5-?!=sJK0Mb(!im;|EkVwEe4r^*{4r!?Yv?vF((x-in#^UU0m zVV?HQg%DOLK5w)3EO(hPSVh_l`mr(l*t)%{)-bGF!B_TCT_v5`-{MiS*KRyicis5O zqJ~|B)s!)Bkdh%d&0<pJ)>Jssd|u?Oti|nhI#JRow8busxI&){6#m?b(qVAg5?q>4 z5VC*C!(Y4y{S}#FPr1b4n@D<Rqzeu|zMDcDxix#Vqva}YSwkQJFF)QG$mS-tWwp*N zGrwfY-7rRXIRlKedxFU3-TVF(!u%Y;B_>UBNDCMqF$*cGduN?+`1;fOjq3W$&krnS zxG<{F?LPf_8YdG)Qc??Rd(%<VHY!tikqx^X2q0`G9?xORKh`suT|pK?qg75L3*+=^ z(h;B_Qhd0<8L~nUbg$mrQ&1q?%geOe+@!y2UfvxDu95wwc(yJ|u0b=)_{nkr9NwJH z{+wRF!Om|xI)`-2jkBA}dhHt8e3=GutnFN4c(oC-!ExoAox9t0fI2(g(mn(ny%1zx z8|<R24U~kt%@Nh<B?F%2af45_DTyLJ43~WscL9>~cYPaKgVRht^=fumH4P+>HQJZR zEq=`4V6*NKU3~q1&0`OGd|ger48fMX1iYV~$cen6vRfT{-Xy&Nf?;}=Gv4tfdC%|7 zd|JNmZ@!e2GV>V^1AhL%y<Z2wT&kLsv)6t|{Z4b@3TiLuy6-Af_aI@-I7{H+imGpH zEqvGH&4p&>%Kn^a;;rX@S*)`DAWe?ZJ965u=g@QeKCw`f33+Td3SYfwjM_bz;ACs? zP}6@NokuuBc_$-Kd;iXg#rowMT}Z~9f*@=DYNIu0$|ZchxlSj049e)soDmb7dc>6{ z@Ro84I6v1JQD_cj$bh~D9(X)#9lhi5Cpkn{V$WLWp>H2drw}-09G85}8Y@R9#j-~q ziW&y+2n*9DMp81ECyhTZ&g*O!MQY<6kzfu`a7qTU_|(caO|zC(vUX-od9grOMY0|g z-BAq&_}Op~%q)p?Y0q4UoMW}3^_@?iaTn3R1ai!o@em8<&J+2I%ZKOTjH0*UiA*nV z$NpSU^CP3*4oWX;fck!O%fiF88Yf=KN=)H}6ET(pDQhM#4D;qDc4yXOr~W%S_h2RK z3Rq`l9VVXK%j_1PuR3`<Geu-IGpzc4@8(t)jQDV0k1#6Q$9I0W^rpU>nqsS@T^$H^ zET5ekTTzO89-J5WT%DL(?xye>hTbW(RC*nY?>OzFP{M?Lk0Rl6?N>zRlH7klnl!J5 zO{^;Rx*t2j-SX6RLisQhiuMgI<*Md{ZYd_8A5Ipcbq&yML%Qjj>U{O@E2cYz!{Pui zPf`V}5~2UGVwxK`niwlPJ6hP9{aQGaRF{>2*+8E&nHRxrvoI&p4|1rGLeossZ^#4G zVht;80?5fVIg>ihmhwI&ACIsgg?~+TicxJzp#08n(&ehJV9tu*nQhxC(8q;BlL?7b z)_1|7Z{8&3o`)e5q}I9NeS6UZKFKts!hzsu#s0Ayc^i*xAZE><M7}h7C*?WgU2imK zjy|Hk3CeBDsv=dB0%)Ym=XV#k;SKK%wYt6SI8PwI!bB|gj#V`79?QX*bjb*DXMRY2 zVptbK@3d_Mpa0Q)0Y?Q`5psMu^kgV!HPq2$uz?V(`9v=ZfBbyaJzBPk=>V^e5xtt^ zcmn68(A^x~a6}n)a_F+n=(}x2wQ}B+f|?X+*z~PajKpDE_A|hHPn3A#5E_okhTzmM zpDai&in~%^iKjT&_u`W4&emKk*qDS^kObq|({68`)(*7i!koqVi*#x8khWEw{PE)u ztDWmg+3;Rk)F-u`2m1xwkM0O>s^j?jS1*jv`gNkcdmUq<m=D<xwrp_0ZM49nL!Q<? z!<`qTdq{gCUT6y7P7*zy2*g+l(VaAhwWYLVG3aPDJYGZkYN1WkAe3zR6`-*370wWO zX2Vb=Osxm+9vZqVlU4GcFYP@e1Q}4L%VFC}+vX+@!Elpt1dM>_Crvfbip}=uT(pU* z#H#4$x6PHPq0P?XXEzDVJA0ZS7=0b+kX@YBg(w&hWp1zBm?$N)$2h1{%N;sJIQ*tR zaYg257gk<VhKdYG!)MJ_b?-%=1xpV=hu0x^E;??sNDwmZqHf<@;W&!cIWm&Iwo7_R zH6b1&mAa!O9!n16)QO_YQrYW3`F?D5lpa8m$kY90I7rDVQ#^DvuC~-Ymsh_r4~_nY z(oZ8u*;Q**DbIaUionWfzlN)m?*(nLzcaBI6-jU=^!Z1&<Mo=*h-Hc+*W8-b+bP_E zV@#k~|1(q=)uie?2i~y<1`-6n8@`)~p@}=NbI8fU&en;+*}%!l-oW<v*ui+BOA1&y zfZS-=;Qr9G%o0KJ=|ETHyaFjsw%BHYLYZmX_3lL0AXz0gG2rEe;^Y+F%%yiEAOS*o zHW%P=D2zkr-P*Cn8)WG4*^QaJ)?O?`$IWZHf=Ze+1}Rc{u(X%Vwq6`AF)4ZOm@+D+ z49lCMNRUQeaT)*~>)FSf13o=B{75OjK3_D~FL2i)aI=HdM;sj2!vRxbv{8lR6!$ea zUssqRF<4x=GhG!9X&rlB1v?au^~Gr_@N*WULX2EvK96n{!wx?w1$E=2q*+$B^&#~; z?dFUL%xNt<0XLhbqeHFdu@#?x4XXwWw=1=Qcb<SBl7G|HUp4nD$zdF?V;2ZO4>?Oc z=8szg`$QCo65Sks+^uu(U}i{zR|`{HSe%(*^5WB1ZEc!bd@|j7=F~qet;~Ivt4Ng| z-&xQLs!^geXe3sjxgr}D6f&GJFC`>a;cv|4;f?jtz&Qj=8-6gx<(MD!L{Utxzm{}; zU<({Uyb>i?wS;CHqx3>WCH&3L4yrX-z5>vjAb*bhkwI|+2$rIU2@~PBjfz}It7L{? zZt)ZrBbWAoOsJ2>Q+<;P0ri`kVu(YHI3kQrJz<)FfNoh*oEDSLgb#v4!(?O~qn|Oo z%B^C>EVK+8w8m63Q|E6yTZYUczh{?ARogY9W8^L}G_eWYR<h5}p*EF(R+{G$Khq&q zBA9<eDEAHAyb~=`flCSX<%3>)IHgQ#?Mq~8Q+$#y3I0^4L%nJrlruH3c9=-Bh7;FM zQ&?S@x7TkADWBg*pD^p)Q1k8I?U>t!NxBO-CqlrvA^l@+fMxzaN;<z61ph4T{3-{2 zi0z8#2B3@HfjtYmdnL{V!wW03lQgP)2Qz$Jf?Q6GyF-8S`if`Lxw~sWzRQ;RgXc4@ zDPsJ)ndUdaJ4Tr1Rp(wybRB}#9EU6DFmya|2GjKI8DMg9QsDz}>KJg<!HQ&0SUtYI zi`6kOpX2!U7A3<y0N)-WaVN@4Ep0CKplTW9>dxNn_^1VO@hWLNAIJC*^4J!1j7eOM ze~{#i)91^V;2ab^x%4*_JaW6uvGPF#FR~dKzPg3^HzxamM&)(_M~(;70QDal_#2ad zSHj=;{7Vno<6XdRFnGufZqzg6hxX=01ECTNI|*&dTM%NG<uHnvE%TrTy+*~D`rYy8 zmQ4cH8)*$5aj<3!K}BbtM-JTkrYt_h+`<KprDRfU_qfi9Gq+XtFZDCz8s4ZX$yAUj zN>eC`D?(jTJ>iDgGFd@%btB9aN4BmMKdqM;Mk*n%ah0>h!5(-l6;j1ZQ`e6-bWArt zv&4X1vUuFRuUjj<7guY>j2QP%uJI@`+^8$dd?eLh-=t7}`Pc5LzV;XKPr%`;gM)xj z{;mdlpbK|4aa1;OcK*$mGrYQHq&Kv%h1It=us5<dr81N-kuat*7=)^k0F8P#V(o@y znHIFp4q#%kXBydJ+mtZSH{LLtFfe{I#T7LoFcshRflT>=*7So^kU0fW$i<`!1h_{C zFH>%QpF#myXRSXMG!wud0PYOZ1Da|B4Fehif@TUCjrf-AQyQOp`{XiIVQ6wd<R<@3 z8^Cf483t6_0yp)F+aI;7omiL112iN8^okrfj(;xQ(-JnsCBVt12WFK~fQ4^kJ0k^0 zJ9{SvBRfZvKiWP2Tki&{&Ra>=ZW#dIhP3YoaCS2$w@JkghpiQ5(DDbBt<GbYHAJhM zgCe7-czH7BbV$rwklpd}CLwHU^kA2*4n?l}D&0+iLER};T)X=2+w@~zRw7A$l@!ZZ zcY-tWH-wJ+nz;59`p)qU9`G6D$U<Wyx~Bwd6dzfOBrO1m9BL26c^?ERAlN{-EzZsm z%vn=qeg*`VTwy}D>bii0Q-X$5>QTqM#y<fa2cXZW#Aa|E6p1YJvzCaIQl_B#%A!cP zrFcmSabwUo)|0H>hTFodDSC##phJzH;Hu<PeVZC8v>ug4K|kbupfArf?dfxCU@tK* zBupGAcys4jpKjTf1}+%!JVC(PCHuZ6=6ji4GsRLhWRnSkX%eW5uOf!*BwI8#x1vGK zC-+i?b&Fd+Y?qCz{WhK(K)hB7Azw1EjnYDfbrE@kXcD+@Hg-`SSX)~3_>uX(6qT2^ zC(qtw$Q})QjM9Jn@p<gft0CkA=k=XmpN7V$lxtl@0$y3=9%Y0$Xb#eQB5Un^$c7!P z-Q~KpnC~bMr--&vcan$K-4A;IYTh`lkU_;j^VS2JH}YT2+rZxbzt#;@*&jz%VwWw@ zx<k&uZV^MyqO)wNLIhMN$#Ff^t3e!Em}#f06*QR0=ECl-3v6Z_=CWN$AJ97ZloDEb zS=kN%BHKDS6>1t8xzp_|r)kBpeRpLH7N{`VFmv1^(*#DIWqiJIKQ^@BjR6$an}#`a zA}3;DC05o%73!|#@A+5+vO)^ZRZLh;TYYUN;v2_ma04iX)C@gl$3hNv8V~mUWTh*i z+V9_A(}B@yxWCa#gH)mD<BWH+v5JP=I+zWb>=M^gygVtKl&VH2S0+^GfE0e(sFv9k z4C<pJETO4F`NV;_!`odo!kdPid~80QM?sii?t8^mIlY5Tf|%y9Bna3Da|o@c#x`0O zgFQ?|VyG4?q=I0V>0{Ksr8m0L_%Z;ANRJB@1oI(Sy0<&7@BZtOaIPP6Woj>JPcQf8 zaTI|oOrGBWN6cvP)9wohVhomgTEQ1PO?%$dz5P%JhKp*tpNP=w_1+pup*U|+ycw_P zMj$-K;Sf_~+b`=w;~B0vqnB}3P=?tf@4C;8bBbQ_=h(}RmHR6V6ce|8GS3hKr|I{# z8}tnwaBunV?fU<j%>SJKrFmaL`tJaLZxjBH;BV(|K*s!~Y529^>yF4jMKOUTyI1{@ zuZ92KZS|)p2*^F`FX8{C_v$sy>lU0pk!XP#%m1w*=QYafI^&-xQNUe15ao5%@ioBf zOzEEhaCpA}{>+=c7JZ#E_*0aZ_;=CQ353@OulHVmBCwJDu7khDZ-0y2USqx9oBWAo z2#g+n)92r?{(ALmr}7%_bv*qi-ZRDTc>ka1`ZeI|@bphW5UPLqga2Ew`Wp6ixc4V4 z6fg(|j{8-x_xk!*@b?<@?~&D?kRTuzK+u20S+B+a?z#RdKJo4^;(z!t1!)M#-=0AN OzOaEo>lcRKuKou%2^+-# diff --git a/runs/kallisto_collect/out/kallisto_mappingStats.csv b/runs/kallisto_collect/out/kallisto_mappingStats.csv deleted file mode 100644 index 21b8d2b..0000000 --- a/runs/kallisto_collect/out/kallisto_mappingStats.csv +++ /dev/null @@ -1,7 +0,0 @@ -"ID","n_targets","n_bootstraps","n_processed","n_pseudoaligned","n_unique","p_pseudoaligned","p_unique","kallisto_version","index_version","start_time","call" -"DB_097",31434,100,11071656,7663654,7522185,69.2,67.9,"0.44.0",10,"Fri Aug 6 15:48:13 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_097 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_097_CAMMD_CAGATC_L001_R1_001.fastq.gz" -"DB_099",31434,100,14332278,10066506,9848811,70.2,68.7,"0.44.0",10,"Fri Aug 6 15:49:19 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_099 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz" -"DB_103",31434,100,13083957,9007720,8828236,68.8,67.5,"0.44.0",10,"Fri Aug 6 15:50:41 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_103 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz" -"DB_161",31434,100,12785081,9058396,8740183,70.9,68.4,"0.44.0",10,"Fri Aug 6 15:51:58 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_161 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz" -"DB_163",31434,100,14312514,10054493,9707941,70.2,67.8,"0.44.0",10,"Fri Aug 6 15:53:12 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_163 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz" -"DB_165",31434,100,13679479,9552504,9264346,69.8,67.7,"0.44.0",10,"Fri Aug 6 15:54:35 2021","kallisto quant --single -b 100 -t 30 -l 200 -s 20 -i /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_index -o /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005//runs/01_kallisto_results/DB_165 /Users/dominikbrilhaus/sciebo/CEPLAS_DM/CEPLAS_ARCs/ARC0005/assays/Talinum_RNASeq_minimal/dataset/DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz" diff --git a/runs/kallisto_collect/out/kallisto_sleuthObject.RData b/runs/kallisto_collect/out/kallisto_sleuthObject.RData deleted file mode 100644 index 01ae821..0000000 --- a/runs/kallisto_collect/out/kallisto_sleuthObject.RData +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b06f8ec26e9941ac83ba9e3324d172fba6c2c5b09f51b1d99e66549c7f7f00fa -size 9478478 diff --git a/runs/kallisto_collect/out/kallisto_tpmMatrix.csv b/runs/kallisto_collect/out/kallisto_tpmMatrix.csv deleted file mode 100644 index b36c478..0000000 --- a/runs/kallisto_collect/out/kallisto_tpmMatrix.csv +++ /dev/null @@ -1,31435 +0,0 @@ -"target_id","CAM_01","CAM_02","CAM_03","reC3_01","reC3_02","reC3_03" -"Tfru00001_t",2.38259718580395,2.52445339258139,2.99559686081831,4.485419618992,5.15554766862727,4.81121852299496 -"Tfru00002_t",25.1245986606198,25.2087869222372,26.5380313245026,30.658236957757,29.3913436146477,20.8234431654784 -"Tfru00003_t",0,0,0,0.309365430148544,0.725542630523583,1.05024822889448 -"Tfru00004_t",0.103844717888069,0.0833541471161738,0.0894261013194486,0.107415134520747,0.449405712721379,0.0759765881661035 -"Tfru00005_t",0.103461055137251,0.996554261334748,0.623669965236499,113.224757627604,148.648845382204,129.135350356906 -"Tfru00006_t",5.25064854821547,8.28385729734509,7.17220460021974,9.17681755934687,14.8875327806903,12.3195055255455 -"Tfru00007_t",3.06013893760537,4.10665056164903,3.74698927321371,6.23178959717579,6.24916931819361,7.38140445268395 -"Tfru00008_t",14.2043439781122,26.3981885595812,13.4442914669108,26.9366560835528,22.7611500493748,19.0527641655261 -"Tfru00009_t",6.98648923869327,9.55423377037359,10.3244912930937,13.6504343999739,14.7070095797832,16.21819340388 -"Tfru00010_t",244.725880160303,254.236879163414,239.055409283695,234.24905727355,255.175913290995,153.47176428698 -"Tfru00011_t",249.648439921802,235.855086169051,261.859652611709,239.044084421155,277.23708760388,237.068812271962 -"Tfru00012_t",0,0,0,0,0,0 -"Tfru00013_t",0,0,0,0,0,0 -"Tfru00014_t",0.0481534782380506,0.0385649628570616,0.040081234898993,0,0.0409396548817672,0.0683249248759905 -"Tfru00015_t",9.12352121874593,7.38645814357469,6.05895371227259,8.36401371837615,8.18030748581089,6.6074939313356 -"Tfru00016_t",0,0,0,0,0,0 -"Tfru00017_t",73.8872427283506,59.7748520926179,84.9711456238005,79.6773332599202,64.3547735725843,54.9950535288643 -"Tfru00018_t",1.17497030449515,1.88625188858599,2.02365639069639,1.82305266770431,1.01697684361232,3.00877915233859 -"Tfru00019_t",100.042891419037,88.5386478055069,90.5702092996186,107.46269236286,116.564177910843,73.6642320031186 -"Tfru00020_t",4.02402645039706,3.40000865631855,5.41073001773245,4.81959974168133,4.94942973931415,4.2870587946129 -"Tfru00021_t",83.6566488692519,95.2586986660982,83.0071898994768,27.350267688798,24.8757888457407,26.3329256308797 -"Tfru00022_t",0,0,0,0,0,0 -"Tfru00023_t",0,0,0,0.0722351154009016,0,0 -"Tfru00024_t",0,0,0,0,0,0 -"Tfru00025_t",10.3672379845616,10.3302390664317,10.2823272906906,11.7590775902453,8.66377719537418,6.800389597812 -"Tfru00026_t",1.8199540035594,2.42604099287411,1.93108487495278,3.59697341954331,3.99433883682836,2.59175687469059 -"Tfru00027_t",55.063462876232,42.4428339387146,49.6338143237525,83.0396302423057,82.6243070202033,67.3009460579787 -"Tfru00028_t",21.6026683126579,10.7893608027175,14.2624411478655,16.3866391217165,13.9195073409354,13.6979276184499 -"Tfru00029_t",3.29320676944074,2.53549978863862,2.9517052114713,38.5135675842526,37.1713172155247,30.1424653388556 -"Tfru00030_t",21.6360831128322,23.8598828656384,22.7863826973994,22.4807913845528,21.2574115640561,19.0384814079383 -"Tfru00031_t",86.4958908771116,87.5837535575628,99.1007884405973,14.1403444097653,15.9195990519397,11.2746559444835 -"Tfru00032_t",21.9121553586945,23.561903819911,19.2257316055188,25.4025163550232,23.2598419325332,12.7043922869481 -"Tfru00033_t",4.71864451029055,3.49050081035052,2.6293046552041,2.20118216743122,1.76178917951874,1.15077755181544 -"Tfru00034_t",0.172293635708465,0.110637415942551,0.0890226201404027,0.926730902177769,1.37195932676074,1.18492937319104 -"Tfru00035_t",16.8182467453908,22.2939451138924,11.523788250828,15.2219341449141,43.285382782368,59.3057964157302 -"Tfru00036_t",3.22627015393128,3.13485723171429,2.70519604931284,2.54680795451365,2.05759236070029,3.23009915206836 -"Tfru00037_t",31.8300185283124,29.8215252000578,28.399063659266,19.4847718146893,21.5883339032028,21.3409741881647 -"Tfru00038_t",3.0807064823057,3.53260503581409,3.41094469927948,8.80116346097062,7.83007054650118,9.69559441964398 -"Tfru00039_t",244.104882716102,240.53698169767,241.602928149067,96.477604753599,106.200930024934,110.901226580709 -"Tfru00040_t",17.8020185223536,16.7823691475994,17.1568289444861,23.8991409984868,23.0140300773039,22.0586959521175 -"Tfru00041_t",0,0,0,0.414791617314008,0.347082789108922,0.146694653523574 -"Tfru00042_t",6.27821591939822,5.35436518117112,5.57545218805539,6.12878347404016,5.73967290508917,7.34939528984245 -"Tfru00043_t",13.5654149460977,7.45016061094164,12.2967222607536,5.16961960445603,2.88383518542908,1.74121982510985 -"Tfru00044_t",6.97559085105881,7.30326769137017,7.44351229267822,2.19599966350539,1.18127183910627,1.10947761419454 -"Tfru00045_t",12.0424430866921,12.0252581472268,14.2592665430693,23.8007925499645,20.2258645458806,19.8764997220112 -"Tfru00046_t",4.5875973663589,4.83311810701937,5.67901524659038,8.00774328783852,4.96340234254738,4.82490230719006 -"Tfru00047_t",5.27537687732794,5.66356753282366,5.22433741680056,9.41290459039661,7.30562957044336,5.9824705011545 -"Tfru00048_t",12.7695772661346,17.2629772801229,21.993097648717,35.4547282728544,47.1185711067383,42.2879611501977 -"Tfru00049_t",13.5348030138495,11.7694683940428,12.3448298359328,12.7205756663587,10.3292078546594,12.2184765960621 -"Tfru00050_t",4.4215987774446,3.43822147290546,3.3317106037634,40.0192043941442,24.0386228749706,12.8389187466282 -"Tfru00051_t",20.3170495752907,21.1104889593231,18.462111493173,23.4652664340739,26.8631264618122,19.4244180163478 -"Tfru00052_t",29.9398683174839,16.8583762542462,31.5550463262212,16.6402041371396,13.5371518677722,14.058497726246 -"Tfru00053_t",6.07474136968426,6.42583848256019,6.93448286459148,5.30940245357288,4.68727135460016,3.61761843148524 -"Tfru00054_t",0,0.242566564809297,0.520472776744129,0.937757307488683,0,0 -"Tfru00055_t",7.79317038696173,7.38140407421538,7.11377169995176,7.09378316957426,8.49902076447885,9.35089963963446 -"Tfru00056_t",3.74060801683087,2.75640604448988,3.11561842487489,3.04463102460559,4.45836709688963,6.77461608305331 -"Tfru00057_t",0,0,0,0,0,0 -"Tfru00058_t",0.0876020612840953,0.12305384127187,0.0565790270861057,0.52103060688935,0.265378993862478,0.096139301084011 -"Tfru00059_t",0.311534153664206,1.00024976539409,0.268278303958346,32.0097100871827,20.1333759299178,18.7662172770276 -"Tfru00060_t",0,0,0,0,0,0 -"Tfru00061_t",0,0,0,4.5207491008414,2.52186743300529,3.90818299474078 -"Tfru00062_t",0,0,0,0,0,0 -"Tfru00063_t",2.38768446042566,2.70571503292415,2.83369892970126,13.4488776689946,11.0277743353553,8.96946538187647 -"Tfru00064_t",46.7357591265854,40.7162954308794,45.0565585197451,38.0845679188778,29.4012559116134,27.7718655660567 -"Tfru00065_t",17.3575158618693,14.9774830357972,15.620097765696,11.4009846756871,13.7465222213351,14.6043014050278 -"Tfru00066_t",7.41468102679172,6.49764137410621,8.37687237517656,7.03634362973965,7.30082323519965,8.11239251149762 -"Tfru00067_t",14.4623420887289,12.4701371462261,13.4478462769232,11.4347887757398,8.47670174902154,10.4633908934715 -"Tfru00068_t",24.2691501744134,28.4597144250997,23.7438642980361,23.9985290384902,23.3714300467181,21.9288033286706 -"Tfru00069_t",11.0000750073012,10.9936522941682,11.701617730291,14.72483618126,17.921769074605,21.698191851417 -"Tfru00070_t",0,0,0.116686638657151,0,0,0.0991371932683511 -"Tfru00071_t",0,0,0,0,0,0 -"Tfru00072_t",0,0.162099771675444,0,0,0,0 -"Tfru00073_t",0.341043478097892,0.319373839728614,0.146845160962315,0.0587948875692048,0.295184753660294,0.166346575984784 -"Tfru00074_t",11.3506667145246,10.6604438078321,11.5035007926159,10.5428744349279,10.425882089759,11.8636604444295 -"Tfru00075_t",27.6710736546904,31.6957483521969,33.403541259741,22.4338261512575,19.8075101140109,30.4954243411583 -"Tfru00076_t",0,0,0,0.33465536775591,0.37337018905427,0.394512579116673 -"Tfru00077_t",5.36906675457173,5.53698177159997,4.72255619127591,3.57131380962733,3.16884075742318,3.0203044326114 -"Tfru00078_t",0,0,0,0,0,0 -"Tfru00079_t",0,0,0,0,0,0 -"Tfru00080_t",1.05613045084105,3.39094196656837,1.48825472847293,1.58900742998463,3.90577220909828,4.00400961154689 -"Tfru00081_t",40.798256453774,50.1225016094214,40.3813817340599,60.2929801966982,23.0505969035463,12.7388725028762 -"Tfru00082_t",0.341679214118749,0.23997688618144,0.294237787361195,0.220891824675355,0.184834378033348,0.218736867709529 -"Tfru00083_t",5.91159805272109,6.77498467137023,5.45845315938809,4.55216773762945,2.92788348897063,2.73925598913489 -"Tfru00084_t",0,0,0,0.109859473865088,0,0 -"Tfru00085_t",1.90881677296856,1.92929646506359,2.16840020610837,2.24942511269538,1.88223847690472,1.98184428856232 -"Tfru00086_t",10.1025136623892,9.38947538211177,9.61556984377285,3.29995609470701,7.82364147728748,7.39136795380491 -"Tfru00087_t",16.1243838587757,17.4445506719877,21.5326609416284,19.3377121173373,19.7207227288904,18.3796771386248 -"Tfru00088_t",36.5744384361183,51.4202716356426,30.3508412633826,51.3597388319571,77.9899148163501,83.2778581024933 -"Tfru00089_t",4.0389604217042,5.83559178031597,3.87566335539824,2.26796433065715,3.59573955420259,4.72808152510598 -"Tfru00090_t",0,0,0,0.678897217337604,0,0.480195779848974 -"Tfru00091_t",0.229850552042264,0.0922482968768599,0.395872590793072,1.18876667342387,1.59154789205623,0.588584704219759 -"Tfru00092_t",0,0,0,0,0,0.0932701970051255 -"Tfru00093_t",0.114925276021132,0.27674489063058,0.197936295396536,1.54539667545103,0.795773946028115,0.420417645871256 -"Tfru00094_t",44.8712140325108,63.7670777719247,40.4920052056533,188.342590086215,94.6520297576413,37.7440026225944 -"Tfru00095_t",15.4004604174229,15.7645784128275,12.7405946760362,13.0661495353075,12.5058825964565,12.0271486786939 -"Tfru00096_t",0.446863706231104,0,0,0,0,0 -"Tfru00097_t",10.9543967531848,9.81555762324629,10.457818576644,11.0973077857558,9.256940399404,9.41913557409004 -"Tfru00098_t",3.34132180340984,5.36402880816923,6.57688326976672,4.4436908775316,9.91552422522533,3.84156623914861 -"Tfru00099_t",0,0,0,0,0,0 -"Tfru00100_t",10.3035857471167,9.10479276991024,9.41778551055353,10.7045913052438,10.2479974240988,9.15859148569479 -"Tfru00101_t",0,0,0,0,0,0 -"Tfru00102_t",0,0.0446283951138217,0,1.15021633126783,0.57747593105217,0.366105584670681 -"Tfru00103_t",0,0,0,0,0,0 -"Tfru00104_t",0.248551410566413,0.598522233878562,0.428081159570615,0,0,0.363698578854306 -"Tfru00105_t",0,0,0,0,0,0 -"Tfru00106_t",1.54276150999319,2.25153606066726,1.8116623364132,1.01551236526042,1.33531266694743,2.15486854149237 -"Tfru00107_t",0.109531130080114,0,0.188645934726034,2.60583234423409,2.8440877829851,0.881506725019759 -"Tfru00108_t",16.5360794383904,18.6821056115656,16.110761022827,12.3813656112754,9.51611260735785,12.2930119652755 -"Tfru00109_t",2.16521589617133,2.08557232011293,2.23749637012682,2.23966092338363,1.4992545220272,0.950490615871821 -"Tfru00110_t",0,0,0,0,0,0 -"Tfru00111_t",0,0,0.528070919467971,0,0,0.448650071723389 -"Tfru00112_t",3.21653562772524,2.91499301226158,3.42517798940095,11.3766292042308,14.5188202941065,17.4602269576783 -"Tfru00113_t",35.5277527935327,34.1894172632842,29.2425440709488,32.2825144124726,33.128971126337,30.7325299131889 -"Tfru00114_t",0,0,0,0,0,0 -"Tfru00115_t",83.5423523883196,83.3996552299197,96.3266078897867,205.5072936194,201.127708657635,131.148289211714 -"Tfru00116_t",0,0,0,0,0,0 -"Tfru00117_t",0,0,0,0,0,0 -"Tfru00118_t",20.1088667803997,19.3691982495594,14.6230702487366,12.0179252101564,14.6974791707241,21.2512174931625 -"Tfru00119_t",19.6171987975543,18.948992834588,18.2295933374405,16.1645606591651,15.8282114940932,14.1904821498893 -"Tfru00120_t",14.8831332949417,14.4933522473555,15.4190060110448,10.6279161515384,10.8547645295332,11.1654155440003 -"Tfru00121_t",176.114019147743,194.317376227708,188.668203649129,260.578622602848,260.36884010318,195.654043897805 -"Tfru00122_t",0,0,0,0.738517086350861,1.44191759271454,0.34824396502197 -"Tfru00123_t",0,0,0,0.234228689561414,1.37195932676074,0.497022047113566 -"Tfru00124_t",0,0,0,0,0,0 -"Tfru00125_t",209.320192030414,235.786474605125,197.093680463862,119.992865247508,142.577052549486,141.404061094038 -"Tfru00126_t",6.90055142516799,8.19201050581991,6.50867529146433,10.8578280228664,10.9813104700105,10.294143751623 -"Tfru00127_t",1.3772192913352,1.93456776688071,2.66848952338895,6.41057044627509,5.21513227692862,4.40835470066234 -"Tfru00128_t",0,0,0,0,0,0 -"Tfru00129_t",0,0,0,0,0,0 -"Tfru00130_t",0,0,0,0,0,0 -"Tfru00131_t",233.422936987231,422.534602010162,268.228548945021,2295.50758505663,2997.47931111537,3691.75292197659 -"Tfru00132_t",0.0698921603755802,0.392707599932523,0.0601877836667503,0.216885633512358,0.241976187415371,0.613627885121907 -"Tfru00133_t",3.36940013789228,6.85153259530859,3.48187937811179,16.0321396365846,19.0533602759232,10.6824301837287 -"Tfru00134_t",0,0,0,0,0,0 -"Tfru00135_t",0,0,0,0,0,0.331348031409044 -"Tfru00136_t",0,0,0,0,0,0 -"Tfru00137_t",0.184435514317118,0.0740214105565144,0.158827038347824,5.72330475262028,7.18358505888992,5.53253008316462 -"Tfru00138_t",132.57887584244,119.5412134392,113.451236403476,135.162264191586,107.00503226389,121.358569827649 -"Tfru00139_t",13.0794598566325,12.5175967396798,15.5954836816025,14.569866030922,17.4164896570824,12.1457902650926 -"Tfru00140_t",31.2652254461921,38.9849950879442,32.8844163488336,32.5870664352317,38.0095095300304,43.5668534848899 -"Tfru00141_t",0.523103217754965,2.51930902927713,1.44150866186668,0.757524167859268,0.452763663252298,10.3334783020685 -"Tfru00142_t",7.17538567439007,7.30277026134079,7.27300618225939,9.76591011544882,9.80611713324286,11.0019191679417 -"Tfru00143_t",10.7196281815993,10.9685970247765,9.05427427721248,9.06893763546061,8.74463272478765,9.74721087340437 -"Tfru00144_t",5.22767536545711,6.13423191052314,5.9113144848562,5.62337286723035,4.38609792110093,3.74119348595701 -"Tfru00145_t",1.22561557624128,1.07321228143742,1.4872129940255,0.518627052019603,1.15724951169739,0.896705116830444 -"Tfru00146_t",25.4996202435688,20.4680521110377,28.9382863869736,19.0155117080882,19.8466022139412,13.8838723372524 -"Tfru00147_t",8.27438886794156,5.55733408180174,10.4701337681512,1.2226973000824,2.55777341823233,5.06546221684721 -"Tfru00148_t",0,0,0,0,0,0 -"Tfru00149_t",0,0,0,0,0,0 -"Tfru00150_t",0,0,0,0,0,0 -"Tfru00151_t",0.123002015770787,0,0,0,0,0.179985533898617 -"Tfru00152_t",5.46197496037275,6.68071876329259,4.70359144060716,7.8020633776819,6.97872809247025,6.08941769177736 -"Tfru00153_t",26.6104558464058,29.2524275604037,30.5365604339498,35.6622175472617,38.6707862614616,48.2907639016311 -"Tfru00154_t",0,0,0,0,0,0 -"Tfru00155_t",14.7156748753825,16.4639691313214,13.4102136976227,11.4162248339384,11.6464285740799,10.9508834843636 -"Tfru00156_t",2.45423572590745,3.03071932660605,2.27604499672826,3.28067545235591,3.16999680848402,2.37572815508696 -"Tfru00157_t",0,0,0,0,0,0 -"Tfru00158_t",21.1314444639837,37.6469261137767,16.4220336858592,89.0313307923714,60.2231225949268,75.0401650641053 -"Tfru00159_t",0,0,0,0,0,0 -"Tfru00160_t",2.10239022018502,2.80676211107289,1.90834151013184,5.96566293437226,6.72303144093452,8.1353557402029 -"Tfru00161_t",0,0,0,0,0,0 -"Tfru00162_t",5.99471030228419,6.91278141882656,3.92630016305671,2.18338803586142,1.90006025354402,4.01530541579352 -"Tfru00163_t",10.1025136623892,7.04210653658383,11.218164817735,3.5749524359326,4.60214204546323,4.08470334289219 -"Tfru00164_t",5.60236663278492,4.39608376007854,5.34371765668546,1.79306824882854,1.4568862348467,1.19474548107493 -"Tfru00165_t",0,0.186452087604566,0,0.961093203619738,0.268069472141268,0.28324912362386 -"Tfru00166_t",8.54478166781832,7.88433566263223,8.25236303811033,8.34294983512904,9.40026884723516,7.77077277272646 -"Tfru00167_t",1.09659562599898,0.969729607545132,1.02436411989287,1.34577855484733,1.25479642850197,1.59102035391287 -"Tfru00168_t",25.0609233951497,27.39188920295,27.9587111073017,15.3819533149848,23.126899709141,25.7043585874767 -"Tfru00169_t",0,0,0,0,0,0 -"Tfru00170_t",0.724227383116962,0.581323316829279,0,0,0.626843483041352,0.529871203319186 -"Tfru00171_t",16.9873923618736,27.7667373599348,15.2271773497632,15.0954793045559,16.307148909623,16.1006820317258 -"Tfru00172_t",22.6914625918755,29.0589743269068,22.076630851918,16.1255586483621,14.0929925070557,14.1939931970192 -"Tfru00173_t",17.1586180673779,17.1713965029987,18.518200506253,24.4311888926017,28.2079568476238,29.6320281788969 -"Tfru00174_t",0,0,0,0,0,0 -"Tfru00175_t",6.45457876755418,7.20478024791312,7.55591511304532,7.09378316957426,7.07061391330593,6.05058211976347 -"Tfru00176_t",0.905772256295929,0.727045876193904,0.975009649156791,0.468457379122828,0.391988379074496,0.828370078522611 -"Tfru00177_t",0.750092649745067,2.10729703178077,1.61485973141594,0,1.29846150568427,1.37198794255307 -"Tfru00178_t",2.86207696415753,3.3108634727778,2.2472116182269,2.96048165343455,2.69580384747275,3.20258828754673 -"Tfru00179_t",1.86295450073959,2.13622507973552,2.06265504870192,1.92700709648678,2.30350087597632,2.53129602241682 -"Tfru00180_t",31.4485241692765,32.7093978641261,29.2434352768186,19.7011438553949,18.6576823734175,17.0676264544247 -"Tfru00181_t",50.0921685796107,57.6020781173121,37.2546630822954,82.5945085722883,69.3160011258742,49.114603879956 -"Tfru00182_t",0,0,0,0,0,0 -"Tfru00183_t",0.227259810923663,1.03369665039562,0.717586001480408,0.156715678678602,0.065567037257276,0.110847718352349 -"Tfru00184_t",8.08916620885167,9.42660946003091,8.89634094263108,5.94783269815521,6.20007837284971,7.05921220743781 -"Tfru00185_t",22.7681115258193,22.0848130082525,24.0828039030799,22.8496623648072,22.2493605681474,18.9727387090164 -"Tfru00186_t",3.86419109510917,4.710006312941,2.83467030196078,2.66470049214842,5.07882047197799,3.97899876218459 -"Tfru00187_t",8.84177444617422,9.87519947947473,11.3629576414895,9.90093038778846,8.33155087779903,8.80333170992535 -"Tfru00188_t",6.17374165081298,5.79417341016487,5.35742724235944,4.61757564712536,4.31597153952713,5.45506749165704 -"Tfru00189_t",0.734918550214959,1.10607170612878,0.90976023359813,2.04300179583009,2.74316853907272,2.55404294521854 -"Tfru00190_t",24.2757257553858,17.2962561569538,32.4146389724217,36.9602225369295,37.5373417097816,31.7303393259547 -"Tfru00191_t",3.88457352519023,3.70011217417486,4.37107285129995,3.48238276743126,3.58637949782092,2.80420124978542 -"Tfru00192_t",4.95061148831744,2.89000735787077,3.48809701985842,2.17247109568212,1.55815380682112,1.64638553106369 -"Tfru00193_t",0.155718956017511,0,0.0670488563182891,1.6107292646392,0.741290349862381,0.569648376518793 -"Tfru00194_t",18.7892806274276,24.897738395202,16.6192205747782,58.6353078137099,22.2717157730105,17.2885043181093 -"Tfru00195_t",0.263906942737531,0.211833000053355,0.265141367419915,0.227483884364619,0.418770831152623,0.289625936354659 -"Tfru00196_t",12.7638270127219,11.6439497903323,12.9798380734935,12.7070126830668,12.3483453535128,13.6890034718326 -"Tfru00197_t",74.3168717593574,70.4261161863774,83.9039072758405,54.5046002703679,63.0330070570044,62.1924569840863 -"Tfru00198_t",9.46390726194815,7.53806078612739,9.02754168051168,8.96097263036991,20.4783357048992,22.6898747712625 -"Tfru00199_t",8.95192538803052,8.29100470997173,16.0109371302315,9.97199846569155,10.7282721057698,10.580051274914 -"Tfru00200_t",2.09757022668787,1.33830899841647,1.15790198411386,7.45483039235348,6.51724596963167,8.46029952795852 -"Tfru00201_t",0.860174506192295,0.230148481286637,0.246913706373495,1.77949850840856,0,0 -"Tfru00202_t",5.58044527130717,4.90591699400566,5.68827590525689,7.30374376496834,6.7686633210907,6.94363531703318 -"Tfru00203_t",4.98366641864519,4.85749824274889,5.21134394680668,10.6782477584375,14.7892564715225,11.199142256501 -"Tfru00204_t",0,0,0,0,0,0 -"Tfru00205_t",0,0,0,0,0,0 -"Tfru00206_t",0,0,0,0,0,0.516513106962742 -"Tfru00207_t",0,0,0,0,0,0 -"Tfru00208_t",47.3940118957343,45.2514309982397,53.3073696602145,32.7299921652108,25.9521450938737,16.1750157437836 -"Tfru00209_t",0,0,0,0,0,0 -"Tfru00210_t",1.96576004760776,2.98966278400424,1.425531349112,4.60178606474537,3.67151184365897,2.34657248105629 -"Tfru00211_t",1.4455226772415,1.94519726010532,1.7573858129741,1.36329157826206,0.662373075774161,1.15091458176922 -"Tfru00212_t",485.108700015614,659.885013380492,528.161537912076,827.128629356044,605.90647626223,383.139345050138 -"Tfru00213_t",0,0.196027630863327,0.210307313858819,0,0,0 -"Tfru00214_t",0,0,0,0,0,0 -"Tfru00215_t",0,0,0,0,0,0 -"Tfru00216_t",6.30586363175514,8.16386259285528,8.23304757982904,4.83940292500617,5.63400246534191,7.44129053588108 -"Tfru00217_t",29.8381683015831,33.2516938532028,26.4436065260276,20.3762806215702,23.8200524491045,30.5205814310289 -"Tfru00218_t",7.03477895456411,6.48668318156461,6.10808120970722,6.43472407579201,5.88755694480507,5.69987406002395 -"Tfru00219_t",14.5028439900183,8.3049685126181,14.0883762673424,20.1239427810554,17.9871088576894,14.2987139175047 -"Tfru00220_t",6.46233667472673,4.40911378957207,9.18234087278969,2.33958425688843,3.91536084790949,5.20088967761658 -"Tfru00221_t",116.939067164276,102.166843028245,105.791976615695,55.239717307294,59.7422791258551,68.5690617158586 -"Tfru00222_t",84.0103767714475,84.7627856358745,94.1706805609615,135.445683954259,120.648110405256,157.268141902129 -"Tfru00223_t",6.26851384834502,6.01820600736805,7.72675532644137,5.72121137121845,7.28734211529606,5.84525075159408 -"Tfru00224_t",0.22107993887223,0.399277332337409,0.761533852288778,0.914724671866154,0.813246943033831,1.53662649565944 -"Tfru00225_t",0.684402254757209,3.02146050992599,2.50484148970749,9.38011959846453,5.92373477134982,6.50953790421923 -"Tfru00226_t",0,0,0,0,0.296791201299262,0 -"Tfru00227_t",0.292515239454901,0.046959265332162,0.352660175328717,0.302572576000295,0.911454873070852,1.3696949264931 -"Tfru00228_t",0,0,0,0.109859473865088,0.0919264782785323,0.310822047162466 -"Tfru00229_t",3.39656196887529,4.52724940952307,4.29351430073792,15.0848141361904,20.2012868673668,21.3623000954436 -"Tfru00230_t",8.4458261491478,6.5225096246436,9.69752171383729,8.67002935367425,8.75002848613436,9.36253767347718 -"Tfru00231_t",0,0.610257963954612,1.63678090424059,0,0.658043839984788,0.278122442653293 -"Tfru00232_t",0,0,0,0,0,0 -"Tfru00233_t",0,0,0,0,0.231572752606112,0 -"Tfru00234_t",1.19654959419603,1.36484605356715,1.95235815204469,2.80108716984501,2.18032516696609,2.76454541947726 -"Tfru00235_t",0,0,0.466746554628603,0,0,0 -"Tfru00236_t",40.469145699759,24.1445471167967,42.79144098673,81.7493222195034,79.8600139791007,66.1919926868851 -"Tfru00237_t",6.91810867422697,5.53120878032896,8.4051320259012,9.46714484818818,9.92315512138564,9.25749557122817 -"Tfru00238_t",0,0,0,0,0,0 -"Tfru00239_t",0,0,0,0,0,0 -"Tfru00240_t",0,0,0,0,0,0 -"Tfru00241_t",0.931855715041652,0.74798256418157,2.3456802105482,3.92972587273557,2.85395634696474,2.15022820211731 -"Tfru00242_t",0,0.0326396442482984,0.0700345749926756,0,0.0351954715964758,0 -"Tfru00243_t",13.1722092282096,12.4328372375544,12.2669957615874,15.3115940349403,15.3374962734759,14.9110844829057 -"Tfru00244_t",3.28054102842664,2.80495903720904,3.13211503763933,2.28681167966539,2.16042831166483,2.9219383279093 -"Tfru00245_t",4.61303019230757,3.56037513289253,3.59054767737,8.16683959939634,8.98365341630763,9.15160869643005 -"Tfru00246_t",8.20738038711177,8.66050503511218,8.5766600707825,10.4927253798039,13.6488116118908,11.2674698035182 -"Tfru00247_t",31.8546222335744,33.1205820319178,28.0002083410304,22.1942037279902,22.2855790052216,15.8191018413664 -"Tfru00248_t",0,0,0,0,0,0 -"Tfru00249_t",32.3803273140329,30.3911244158489,38.0940264654015,43.2516248487851,55.3905157022704,59.7861962802854 -"Tfru00250_t",6.69109195524802,7.63848552404781,5.37791162943756,12.5349659680065,13.8349349809191,13.489676846851 -"Tfru00251_t",3.27990823242563,3.94907837721471,3.01707954788766,3.85531693998601,4.51638784585833,3.87224423041066 -"Tfru00252_t",11.1873114796149,14.909920707273,14.1783061443715,29.2573996805431,37.4531107669734,33.8212263868762 -"Tfru00253_t",0,0,0,0,0,0.574439781729902 -"Tfru00254_t",20.4188437924689,15.5922533776706,20.4929615306924,19.7333861795844,15.5661807470322,15.8115322439233 -"Tfru00255_t",0.536807519306373,0.301619511258078,0.231136472739405,1.94342462233544,2.04435089457255,1.88519033333299 -"Tfru00256_t",1.6327105026253,1.81689214047529,1.98119893550393,1.95752695900685,1.4452840080938,2.03616585113884 -"Tfru00257_t",0,0.116666963697205,0,0,0,0.106340933955671 -"Tfru00258_t",7.48254533920997,5.68831168616411,6.13677138272295,4.44322552085786,3.94066545551682,4.35932681614979 -"Tfru00259_t",16.3121144086808,11.5586591103082,13.9957572853073,11.0632240718947,8.79185884360899,8.65581923586258 -"Tfru00260_t",16.2428166956084,16.43386721398,14.0922335299806,15.0155165744975,12.3118954923927,15.2461812651825 -"Tfru00261_t",0.0193171710212572,0.0310110393271946,0.0166350232162414,0.519514817086549,0.317673727764558,0.254396660582846 -"Tfru00262_t",11.6005420040751,11.7145064394762,11.3594052911004,15.0960129588601,13.1986153940824,16.6325273249552 -"Tfru00263_t",77.7663622816777,129.171612650778,97.7644810370728,18.201784855715,13.2653634905042,21.1805273726031 -"Tfru00264_t",13.1008548291352,11.6923961806985,9.70395099672232,10.1397778511663,10.1498059680969,13.5397405506306 -"Tfru00265_t",2.12945354040464,2.64661344302147,3.43094973516857,55.1377782583588,58.6823911219795,48.2473077950307 -"Tfru00266_t",1.13527536177632,1.82252716262121,0.244411202592682,0,0.982619517815122,1.03826114571584 -"Tfru00267_t",38.8149209133903,41.2923519645143,40.0648743490536,36.0245207005515,33.3655298296084,27.4258653022761 -"Tfru00268_t",3.26253890374553,6.87428934639164,1.75596397979209,10.5459761926316,8.118536016123,11.0398408426018 -"Tfru00269_t",91.9573043038817,89.3038309684391,94.8315466059607,115.082252636134,102.192429852773,60.8421031389482 -"Tfru00270_t",14.4979386724224,16.1570262405872,14.8815918053196,7.56515358434758,9.24328529470157,8.42895273427984 -"Tfru00271_t",0,0,0,0,0,0 -"Tfru00272_t",5.20098635214464,5.33437872877264,4.72766501592861,7.6213947294781,5.50199337920213,4.17518463137046 -"Tfru00273_t",0,0.0862321036022821,0,1.00011457090225,0.836860100850219,0.628798565998749 -"Tfru00274_t",164.027864913073,200.441606642691,210.022639319908,162.728823516873,148.330712839461,197.599650506473 -"Tfru00275_t",3.36265684208595,3.32893887342019,4.24711341236437,6.60871794283552,5.86949643930394,4.01839617277186 -"Tfru00276_t",9.94973566294177,8.61148776735951,8.04669137433868,6.44358059275437,6.73969720767118,6.64658216454136 -"Tfru00277_t",20.63966431575,21.1268005951034,20.9808011746277,16.7791156000091,16.6078201899091,15.2392710313333 -"Tfru00278_t",0,0,0,0,0,0 -"Tfru00279_t",9.04808065415714,9.6906633696919,8.53924073879855,11.2636572775504,12.5667007087389,13.2013246840623 -"Tfru00280_t",23.3069540572824,24.5212745516308,22.2253296702462,22.2014287521119,23.5921093634672,20.1351058051927 -"Tfru00281_t",0.514349245539474,0.756906688966154,0.664399432353985,5.76369882527908,5.93582402598523,7.08729771467416 -"Tfru00282_t",0,0,0,0,0,0.140011525800405 -"Tfru00283_t",0,0,0,0,0,0 -"Tfru00284_t",6.8950201237905,5.89861112999541,5.70327998447373,10.8858162893791,7.93099165890953,8.42987321592869 -"Tfru00285_t",12.4960702087601,21.92783002806,15.605804796581,8.95287508845173,5.2908334887122,11.2402298716621 -"Tfru00286_t",0,0,0,0,0.0572099483228317,0.0483596064723664 -"Tfru00287_t",0,0,0,2.09079924997978,1.47614571172527,0.716322125796131 -"Tfru00288_t",0.0702427899426818,0.225530117113661,0.362938374418565,2.3250526776531,2.49269867646411,3.44327676284892 -"Tfru00289_t",0.491768059149936,0.263155141529696,1.05871779464537,6.27367262753079,8.22907896675611,7.49573900321679 -"Tfru00290_t",4.18249086072442,5.38310383397388,4.53325087177912,27.2631136642683,26.2768484618131,25.8522569226825 -"Tfru00291_t",10.902109962331,11.8394703460852,13.8064343444541,66.3349952857161,79.9297219960067,53.0194790850472 -"Tfru00292_t",0,0,0,0,0,0 -"Tfru00293_t",0.576153462641731,0.838221879765346,0.961301840973189,2.19761328153013,2.21289453347649,1.89690711851659 -"Tfru00294_t",908.417468825994,1236.16262091662,842.637207557533,239.200501692999,238.04216403155,216.906961124138 -"Tfru00295_t",0,0,0,0,0,0 -"Tfru00296_t",44.4243058121625,42.9313838815141,46.5791170707649,35.1660023360133,47.0798303798477,58.1768261702091 -"Tfru00297_t",0,0,0,0,0,0.260445168755838 -"Tfru00298_t",0,0.0536890963511024,0.115200184661519,0.0691869775694941,0.115786376303056,0.0978742990865887 -"Tfru00299_t",0,0,0,0.428073122301895,0,0 -"Tfru00300_t",1.37883385087956,1.38345408885959,2.16273828507569,1.98655035713019,2.98356922759808,2.73818554912351 -"Tfru00301_t",0.152468923360159,0.489535426620578,0.262597880099579,0.630844601287003,1.05573639663621,1.89638115616773 -"Tfru00302_t",0,0,0,0,0,0 -"Tfru00303_t",337.894535949263,554.570750936595,413.904080405513,924.962350394558,1152.29389515976,1123.69045465119 -"Tfru00304_t",0.448453968530858,0.743928347162463,0.489170321487987,11.4421965181834,12.7055151460123,22.4205289402267 -"Tfru00305_t",2.75820662450717,1.93721423441406,2.87007628324977,1.54539667545103,1.49207614880272,1.51350352513652 -"Tfru00306_t",0,0,0,0,0,0 -"Tfru00307_t",11.4213503163599,14.9739051925933,13.551161299036,11.9453093478594,10.8741247545522,10.2132274635975 -"Tfru00308_t",1.83964328695782,3.93772292068231,1.58421275840391,1.90289439037003,1.06151597544519,4.48650071723389 -"Tfru00309_t",0,0,0,0,0,0 -"Tfru00310_t",5.71650052792269,10.0390950107163,8.49403142937483,11.9617841705574,16.0082242671871,27.8305775924697 -"Tfru00311_t",5.89134140355728,10.4901481385135,7.1088807093451,14.0874203977654,11.7319476670212,29.9861821587934 -"Tfru00312_t",36.0525814754474,41.0190438271764,36.656452341788,22.8283727433976,22.261323995849,16.7631981344666 -"Tfru00313_t",2.36939137430201,2.48069301104787,2.48397308042692,5.5943461691385,5.39446668455954,5.72819686916579 -"Tfru00314_t",1.28400139170335,0.7361736355566,0.473880235594545,3.03576746994881,1.74640237445744,3.22087649745211 -"Tfru00315_t",15.4147480314583,13.3011042005979,12.610721131938,43.8480404633088,54.702158111029,55.8260635120311 -"Tfru00316_t",2.78605841333882,2.75238795987692,5.16755114053099,3.54689158478713,3.33890101461669,3.44956968413344 -"Tfru00317_t",0,0,0,0,0,0 -"Tfru00318_t",0,0,0,0,0,0 -"Tfru00319_t",0,0,0,0,0,0 -"Tfru00320_t",87.1584511398118,94.7834644360702,87.0168530776556,128.656260332093,161.669429028092,127.807582151836 -"Tfru00321_t",0.410993631474077,0.353055000088925,0,0,0,0 -"Tfru00322_t",1.06549746149153,1.3815644930309,1.90569203036167,0.508676158988983,0.283761343681245,0.899488680386015 -"Tfru00323_t",30.3566907661533,23.9744200125026,30.771480999723,30.8948701389829,24.1596095537272,28.2492938180702 -"Tfru00324_t",3.64813598433979,3.10683750472571,3.26901935227351,5.98912305247679,4.49807066450888,5.77401730648181 -"Tfru00325_t",5.74578742685547,4.26263606843115,5.697693692772,10.5359219977122,11.8301280393535,9.7452374647003 -"Tfru00326_t",8.48238522527825,8.89941799592468,7.3268619068155,10.2868866429851,9.94538429537427,9.98566045334594 -"Tfru00327_t",0,0,0,0,0,0 -"Tfru00328_t",0,0,0,0,0,0 -"Tfru00329_t",1.74451515282729,1.40028858137875,1.82631693403131,2.37061178193325,2.45734897329824,2.10222517321487 -"Tfru00330_t",0,0,0,0,0,0 -"Tfru00331_t",0,0,0,0,0,0 -"Tfru00332_t",3.82227306637865,5.1773591529628,4.66304140832749,3.29474289392548,2.27446148104695,3.96172897459117 -"Tfru00333_t",11.7472137010922,6.5719093872485,12.2619857571922,8.83717055870692,7.08651872593788,7.5529098939193 -"Tfru00334_t",0.124000556120218,0.199065697467113,0,12.6981336367545,7.78118629236625,3.6742950892521 -"Tfru00335_t",0,0,0,0,0,0 -"Tfru00336_t",0,0,0,0,0,0 -"Tfru00337_t",0,0,0,0,0,0 -"Tfru00338_t",1.87917948041396,1.41965273719968,4.09324445605218,52.4821508378056,21.8619913509683,9.50282174947287 -"Tfru00339_t",0,0,0,0.822386534643072,0,0 -"Tfru00340_t",0,0,0.0676128186611532,0.0814656110374464,0,0.0574439811461474 -"Tfru00341_t",1.66083117175843,2.55514104677207,1.78778540281962,5.15380292880107,4.91147877603143,5.87310291586476 -"Tfru00342_t",3.43926654780763,3.97261786919829,3.75634271623221,4.12151281257715,4.53780855705935,4.23473702248633 -"Tfru00343_t",0.662990572040735,0.684218201976168,0.489373501470804,0.293908152741662,0.163954553141644,0.554363561004534 -"Tfru00344_t",16.8020749780403,11.6476051511995,8.54994805923757,33.1795578092454,28.4245021424688,36.3202618113574 -"Tfru00345_t",6.92493344319957,7.75265892819996,5.96342127280366,20.1695798037298,15.2998761363925,19.9994771669342 -"Tfru00346_t",0,0,0,0,0,0 -"Tfru00347_t",1.25538518785785,2.3378023257532,2.24864150048211,2.49321249474576,1.78198901198511,2.2043655646041 -"Tfru00348_t",2.31129027002786,1.70635287397555,1.81729669296186,2.9104875923014,3.39215302441919,5.07307311964122 -"Tfru00349_t",6.53358412912627,6.85185494958038,7.37253720526293,7.50913727947334,7.28005115940262,8.57140881964981 -"Tfru00350_t",0,0,0.172388520970851,0,0,0 -"Tfru00351_t",2.77131308859629,3.3684974230916,3.95480822442146,5.40558312214966,4.66026523435033,3.99725648258253 -"Tfru00352_t",9.88357373781735,9.61919115683457,9.14960525470488,4.98390427832956,5.45353832387393,3.52520196063049 -"Tfru00353_t",23.8815146480012,21.8678109645695,23.261111067726,25.8617994278993,22.2088282554571,22.1941453374915 -"Tfru00354_t",11.5375390276149,15.5721318808296,11.1867231200915,18.2107444846598,17.7531257745642,14.9442007105842 -"Tfru00355_t",0,0,0.315003117419886,0,0.105535332827749,0.0892090853793581 -"Tfru00356_t",0.711349506955524,0.570986494640005,0.980128243419934,0.515065120060112,0.492557793858215,0.57249420668091 -"Tfru00357_t",0,0,0,0,0,0 -"Tfru00358_t",0,0,0,0,0,0 -"Tfru00359_t",0,0,0,0,0,0 -"Tfru00360_t",0,0,0,0,0,0 -"Tfru00361_t",0,0,0,0,0,0 -"Tfru00362_t",0,0,0,0,0,0 -"Tfru00363_t",0,0,0,0,0,0 -"Tfru00364_t",0,0,0,0,0,0 -"Tfru00365_t",0,0,0,0,0,0 -"Tfru00366_t",0,0,0,0,0,0 -"Tfru00367_t",0,0,0,0,0,0.0217806732198362 -"Tfru00368_t",17.7461464446087,16.9782793570502,18.8839813371609,17.4292133423146,20.6867266908447,22.2515757123942 -"Tfru00369_t",0,0,0,0,0,0 -"Tfru00370_t",0,0,0,0,0,0 -"Tfru00371_t",2.66096216018159,2.44103185581845,1.9641370850887,1.96603719066255,4.27728495990112,2.50310198387964 -"Tfru00372_t",3.10544194291343,4.26379165963424,3.72988613450778,5.32551280264488,6.29526473183891,4.42452765287155 -"Tfru00373_t",0,0,0,0,0,0 -"Tfru00374_t",0,0,0,0,0,0 -"Tfru00375_t",186.034363742465,210.553761869921,183.198022691728,213.207220244173,195.168373412262,125.845919454766 -"Tfru00376_t",0,0,0,0,0,0 -"Tfru00377_t",0,0,0,0,0,0 -"Tfru00378_t",0,0,0,0,0,0 -"Tfru00379_t",0.368790064843931,0.177612392494253,0.127033741821657,0.0762939805331735,0.0638400740283749,0 -"Tfru00380_t",0,0,0,0,0,0 -"Tfru00381_t",6.6780444026856,4.6409845159659,5.27780171544941,0.418645496759114,1.22607652154082,1.4382739395023 -"Tfru00382_t",13.9138892519838,11.3376281960802,13.706653840756,13.9561505770294,14.1413373517434,15.5783464051798 -"Tfru00383_t",54.3138759624277,55.3342705722014,52.4515259110552,43.6824514802196,55.9091821014086,61.4650598263777 -"Tfru00384_t",43.8394760881571,42.8453055893941,36.3308180622485,25.9937589614367,26.8310910257553,46.4343028382679 -"Tfru00385_t",0,0,0,0,0,0 -"Tfru00386_t",0,0,0,0,0,0 -"Tfru00387_t",0,0,0,0,0,0 -"Tfru00388_t",4.76476763778359,3.82458685170957,3.6712751386459,3.63159347337906,4.77523753732245,4.03651139158301 -"Tfru00389_t",3.46542804182221,4.46746970737523,4.34074295804603,5.5398012939894,5.99889215626132,5.68551803393994 -"Tfru00390_t",1.58238723370877,0.230936661017071,8.17605694152506,3.2735865825347,3.48628020704269,1.68397424181857 -"Tfru00391_t",67.6610519506568,64.1022091104569,60.2158953261875,45.5308313466312,31.6762405638186,19.1388210237823 -"Tfru00392_t",0,0,0,0,0,0 -"Tfru00393_t",88.439746372754,112.231158613505,147.488630091781,1922.15966328683,1698.10468067104,645.653185557574 -"Tfru00394_t",0,0,0.108301970011129,0,0,0 -"Tfru00395_t",0,0,0,0,0,0.058095519684667 -"Tfru00396_t",0,0,0,0,0,0 -"Tfru00397_t",0.188364073478582,0,0.16221012548752,0,0,0 -"Tfru00398_t",0,0,0,0,0,0 -"Tfru00399_t",0.117497030449577,0,0,0.0607684222568424,0.0508488421806427,0.0429825593191452 -"Tfru00400_t",158.675101581478,181.812344866368,136.297251972139,102.282849672306,97.5026548813824,93.9621369116157 -"Tfru00401_t",0,0,0,0.168735619082106,0,0 -"Tfru00402_t",2.61276291394454,2.66184888224939,3.46151751040354,5.09335328652745,6.43639291812872,8.38159906723332 -"Tfru00403_t",0.0620002780601088,0.398131394934226,0.106783344601378,0.320659940322084,0.214653414961827,0.453616677685444 -"Tfru00404_t",10.0849833247914,11.4935934457314,11.7462847369444,11.7893398627826,10.745428786265,9.01128885857178 -"Tfru00405_t",1.17497030449515,0.471562972146498,0.505914097674097,0.607684222568105,0.50848842180616,0 -"Tfru00406_t",1.90377960144477,2.82115767648047,1.0088885434157,4.44340398419584,3.63357966959642,4.1071945845633 -"Tfru00407_t",18.1023026665627,20.9633177704568,17.519342826003,6.31886189271116,5.14187291377039,6.51964277010944 -"Tfru00408_t",9.34437453495972,9.71499648549778,9.96286342771865,6.62787791903018,6.08516281901187,6.05535017357323 -"Tfru00409_t",0.0586050762270299,0.117602903761745,0.0252339434835835,0.121240103002839,0.076087036259141,0.128632842329357 -"Tfru00410_t",0,0,0.418183329291526,0,0,0 -"Tfru00411_t",1.34147027433514,1.16973481866817,1.14910468776864,0.632618982197307,1.05870587359564,1.02371519411308 -"Tfru00412_t",1.55778343465363,1.04345849155876,1.12987676679332,0.679738147697146,1.55951849017393,1.08620700657526 -"Tfru00413_t",0,0,0,0,0,0 -"Tfru00414_t",19.7531480794055,20.4401842402758,27.4626797156831,23.1402020389936,28.4263753992295,29.2524930618455 -"Tfru00415_t",19.5619830388388,13.5110452290348,18.1517229593381,14.1171406939632,15.4877863349488,15.0888955530458 -"Tfru00416_t",39.1193357471877,34.4888918777265,48.0463915187001,33.1674976428581,35.5243208871141,36.1283176066251 -"Tfru00417_t",7.94139912190709,8.17083145866069,7.31539322157094,5.89946318735791,5.31138077948191,6.74337379361291 -"Tfru00418_t",0,0,0,0,0,0 -"Tfru00419_t",3.31161236235996,2.93797428497236,3.00189692810929,1.98316863506251,2.86631336524494,2.04033393614532 -"Tfru00420_t",1.75173678758883,2.87075738126172,1.5085118881133,1.96296258862676,1.95840936044126,1.54864182012594 -"Tfru00421_t",34.8155856087315,28.5376902109496,28.3032769678237,17.5432148666995,18.6457444051364,21.9941489809095 -"Tfru00422_t",0,0,0,0,0,0 -"Tfru00423_t",0,0,0,0,0,0 -"Tfru00424_t",73.3679873915712,82.059198043701,81.5104323855733,82.2286564430928,73.8303716782932,93.3183537863047 -"Tfru00425_t",31.9091232610404,38.2519716992708,34.4579374839376,15.6168815257413,14.0697681123098,11.1138586676141 -"Tfru00426_t",0.858918165628236,0.361133668542761,0.563549880953721,0.549992682451169,0.67262076049078,0.598491332291896 -"Tfru00427_t",0,0,0,0,0,0 -"Tfru00428_t",0.196285927036092,0,0.169032046652883,0,0,0.143609952865368 -"Tfru00429_t",0,0,0.0580158107196743,0,0.0583110219072326,0 -"Tfru00430_t",0,0,0,0,0,0 -"Tfru00431_t",0,0,0,0,0,0 -"Tfru00432_t",33.3579235052014,32.6579570703331,33.6738259248279,27.955594559929,28.7201925220995,30.6681910508444 -"Tfru00433_t",0.646233667472673,0.207487707744568,0.779107710418519,1.20321476068548,1.34240943356897,1.98579424054451 -"Tfru00434_t",5.46005402945892,5.97638153769435,5.44997269474022,15.5314034019224,13.3183407614056,10.8040503978419 -"Tfru00435_t",1.85169014445931,2.74645324697829,2.2878856031867,1.83207912237687,1.7072249025384,1.59037529018898 -"Tfru00436_t",0,0,0,0,0,0 -"Tfru00437_t",13.8202986012747,10.7893608027175,10.9231841573365,7.19669298175259,8.52083358772415,6.30233289487366 -"Tfru00438_t",6.24077084587895,5.32461961692554,5.37425318615223,5.32678627097121,5.28827958678684,4.62983567523364 -"Tfru00439_t",7.32171601524765,7.92493450839535,7.12662412556372,7.41678925801458,8.99632505027616,8.92925508086628 -"Tfru00440_t",4.58880209255805,2.69167351958552,4.40761714927644,3.83377252179197,3.51348407420449,4.00297658533132 -"Tfru00441_t",4.11479396431579,4.4726304348,5.68430625458409,5.05432050832166,4.52606581981374,4.45308086497226 -"Tfru00442_t",393.668459747196,299.271009868766,427.975731318092,181.984851453173,195.305780193832,194.859478920649 -"Tfru00443_t",0,0,0,0,0,0 -"Tfru00444_t",0,0,0,0,0,0 -"Tfru00445_t",11.2245868498361,12.15269795231,9.59114618729315,7.69534039071242,8.73620501390472,12.7641061576269 -"Tfru00446_t",0.23585170345718,0.113588161174034,0.284345879714788,2.53719252050466,3.59282330152278,2.38129653454243 -"Tfru00447_t",0.446863706231104,0,0,10.6312415320614,11.9900487971696,5.88495253656808 -"Tfru00448_t",17.3393510196883,37.2452498640322,11.9875168899527,15.4093880042569,19.4467258060621,19.8332024439765 -"Tfru00449_t",0.387740200483604,0.414975415489136,0.33390330446508,0.133690528965053,0,0.0945616305021195 -"Tfru00450_t",4.36499698586587,3.55447692107599,4.68503883524045,3.86071670618207,5.63970328673709,4.44325733684658 -"Tfru00451_t",0,0,0,0.0774844795606639,0.0324181205164151,0.0548061166530341 -"Tfru00452_t",0,0,0,0,0,0 -"Tfru00453_t",0,0,0,0,0,0 -"Tfru00454_t",0,0,0,0,0,0 -"Tfru00455_t",0,0,0,0,0,0 -"Tfru00456_t",40.8132136869234,35.20932157527,39.2522726815362,36.3969050763542,35.3252274327362,30.2790419576026 -"Tfru00457_t",4.71864451029055,2.74784106346743,4.46185032398271,22.0118216743122,18.7380749742834,8.80006363152985 -"Tfru00458_t",0.173575158618693,0,0.149474619767425,0.448857664397131,0.226248994620122,0.0634969626305555 -"Tfru00459_t",0,0,0,0,0,0 -"Tfru00460_t",0,0,0,0,0,0 -"Tfru00461_t",28.3211642924815,32.8970583632291,27.3201812324345,18.1684778828521,31.9375231932973,42.0393115830331 -"Tfru00462_t",5.68685627375952,6.43211894008161,9.12669032204551,11.7647665489247,13.8715641468793,8.03773859268016 -"Tfru00463_t",86.3548524022785,84.6839365329574,87.295561592598,15.5898258029016,14.1079352431556,9.84257768648307 -"Tfru00464_t",18.1010593312598,14.484036875917,16.6577530882999,12.7354271962004,9.36114365509788,10.5781884474304 -"Tfru00465_t",2.45207952505494,1.96823682156173,1.83618568445264,1.43361036770901,2.3069113045152,3.19805514325062 -"Tfru00466_t",8.8691306855487,8.50334520742035,11.6686638657151,10.9579187230887,14.9265956078661,15.501452038324 -"Tfru00467_t",6.34670838432406,5.6306306376011,4.7463392185394,5.18283362786986,9.10730058062445,11.4865121743131 -"Tfru00468_t",0,0,0,0,0,0 -"Tfru00469_t",84.3931119731397,89.0921023003441,87.507004962887,94.8167339254427,114.950815391602,123.000125415656 -"Tfru00470_t",2.29575752065441,3.25362342737799,2.37857392377985,1.92943632750589,1.80076984221285,1.62717067004074 -"Tfru00471_t",11.5779006643003,14.903371276863,14.5299379127871,14.0936780324924,12.465230454569,11.5182423035985 -"Tfru00472_t",13.6233043413158,16.6305603589185,19.0640738022292,25.8347914081117,37.8308514358822,45.4758381823538 -"Tfru00473_t",31.8871503072689,21.1652606986674,29.0439005707384,21.5661364241937,34.4992692019687,40.378506455105 -"Tfru00474_t",339.314638648314,429.560184556246,345.051482974547,401.483944046188,401.342647211501,500.501201443361 -"Tfru00475_t",0,0,0,0,0,0.0668098476373671 -"Tfru00476_t",4.73122536838089,3.57280148848788,4.93205325602365,4.63632216047758,5.76538076477224,7.03694089898137 -"Tfru00477_t",1.68865078937583,1.94075414164917,1.8177315569707,2.06429414299625,1.72732750322183,0.842371765551088 -"Tfru00478_t",1.73849836289057,1.92901688119189,1.58517697798394,1.21647803288347,0.796621544570751,1.57123098764934 -"Tfru00479_t",24.3386705931266,24.2518099961183,26.3798065215918,14.8448574370286,11.8405161077782,12.2807312340415 -"Tfru00480_t",0.83087185817915,0.592822022127337,0.636006294219199,2.10085116945084,2.23734905594828,4.86316956868043 -"Tfru00481_t",4.67331633959581,4.12410505634128,3.67141564441109,4.72091962236712,3.59547961495917,3.71909600771186 -"Tfru00482_t",8.26262816973297,10.4028722167989,9.49921283047185,10.1519368225585,10.3825059785518,14.1464765751174 -"Tfru00483_t",65.2020834635904,52.3364516543177,61.5478479118223,71.3348717976239,74.3417662051116,58.7128929677449 -"Tfru00484_t",0.074942352160078,0.120309553999972,0.0645367671431168,0,0.0648651599628181,0.0548305618433343 -"Tfru00485_t",0,0.0320806398748737,0,0,0.06918538945606,0.0584824546397504 -"Tfru00486_t",0,0,0,0.0756958569924082,0,0 -"Tfru00487_t",0,0.552733647331449,0,0,0,1.51143589641629 -"Tfru00488_t",0,0.168163354157069,0,0,0,0 -"Tfru00489_t",0.503056148332021,0,0.866415760089029,3.6424665077305,0.43541224142706,0.736108500914703 -"Tfru00490_t",0.0956838004230609,0.0768035364658139,0.247194929273692,0,0.0828175903397711,0.0700057629002024 -"Tfru00491_t",2.68787454612528,1.46893952385535,1.62519307483003,1.36056733017532,0.989977458384194,2.05023004186011 -"Tfru00492_t",3.68135358886118,2.57611142761514,2.60119428197515,2.83153536066433,1.63401897344537,2.00279408423028 -"Tfru00493_t",12.8204421127643,13.7209613185924,10.68131538477,6.90015633368017,8.84113739850529,9.76120056796073 -"Tfru00494_t",7.09065654173574,6.05422862585257,5.68708565734896,4.70986700098233,3.27919281369333,4.78089832327638 -"Tfru00495_t",48.123783747965,34.7652276274143,45.5860894393814,16.2135322361873,24.277617415609,22.2320429159239 -"Tfru00496_t",177.117418543625,158.919725199263,182.477092503846,30.7190180408554,44.4619685003734,71.0567411368634 -"Tfru00497_t",33.4647143985849,15.1095820370007,33.3210559020131,4.32691338559094,5.43090953414831,3.57058438825431 -"Tfru00498_t",16.3417445226651,16.0731916067881,15.8565952805335,21.4271121765907,16.7341449938049,18.5237166600042 -"Tfru00499_t",0.289026525589842,0.386660005831334,0.331861082419422,0.199309274833222,0.500324616869168,0.704874539293322 -"Tfru00500_t",11.3830854022381,9.10481007624362,12.9090161125097,11.6915429195106,10.9278916795184,9.8825024625426 -"Tfru00501_t",16.7297305734314,18.1467989819657,16.2758392219523,10.3829619642934,12.8364590615762,11.5784558338171 -"Tfru00502_t",46.0410443028763,39.4441947101655,44.4862204257856,29.3893092113799,14.8110443845923,15.2127204182119 -"Tfru00503_t",0,0,0,0,0,0 -"Tfru00504_t",0.300037059898027,0.842918812712307,0.645943892566374,19.552239861139,36.7464606108648,32.598433515061 -"Tfru00505_t",3.29145132873208,2.54762775483944,3.20561707878089,5.95808304226252,4.34112503392949,4.55827635839275 -"Tfru00506_t",122.471141720674,148.910612515065,154.952314450895,121.533571528644,153.129873223318,136.282493510909 -"Tfru00507_t",3.95475882582469,3.89998751275096,3.98947458596475,28.7520048170975,32.1270986665337,26.9090477114808 -"Tfru00508_t",28.83406999359,24.0017560229945,27.5894679536824,24.6704344763901,27.4217463742813,30.2116395756772 -"Tfru00509_t",2.17826484971518,1.41766303469484,2.12930628635755,1.52240441183049,1.32484930082431,0.990677208133628 -"Tfru00510_t",23.0024325446955,21.7429650422562,23.0016211780399,15.0927701784209,11.4404699887833,8.79148791958815 -"Tfru00511_t",13.3111929616879,20.3078866105714,11.1593077095622,17.780980636223,23.5003820042416,24.9601029935028 -"Tfru00512_t",6.72764294469777,10.8344759707978,7.40691060589034,13.961953113659,17.6901395199154,23.7698127965161 -"Tfru00513_t",16.5252131445381,19.7925323685279,19.595183624547,26.0428048957156,29.5048966646938,25.8900200504516 -"Tfru00514_t",2.59582624855596,2.08361953704166,3.04827454918963,11.4726001682089,7.35308538050417,5.69760386031029 -"Tfru00515_t",10.8431997925938,9.33091522909438,12.7025617570727,41.2264282343397,25.2807435478807,21.6557129388284 -"Tfru00516_t",0,0,0,0.631991591471161,0,4.24667686073155 -"Tfru00517_t",0,0,0,0.309248554545497,0,1.74989494167623 -"Tfru00518_t",0,0,0.257458063941046,0.618497109090994,0.517536258493374,3.718526751062 -"Tfru00519_t",0,0,0,0,0.146305521767242,0.123672152568164 -"Tfru00520_t",3.3559404835465,8.30572465255802,2.79364282697148,5.38055424496503,8.32675181275025,14.1590617176609 -"Tfru00521_t",0,0,0.0661295392755337,0.0794322155642456,0,0.393286488834227 -"Tfru00522_t",0.0774289186833617,0.43505487107732,0.133356158465316,1.92218640723948,2.81472945748332,10.6501670482572 -"Tfru00523_t",0,0,0,0,0,0 -"Tfru00524_t",7.26820085433167,5.91451386485485,7.03600936914781,8.65877501142991,10.5860250678221,13.092497826979 -"Tfru00525_t",11.6066967907919,4.8800562841238,6.18746254984621,9.71894963857771,10.0459916492413,19.41001889254 -"Tfru00526_t",52.9695939357517,56.5026865636951,60.7910962539224,70.1198060441856,69.680489668568,78.6811373701188 -"Tfru00527_t",32.6203620129503,28.9891338979025,31.602481474218,15.0633589068868,16.5818936195859,16.9999664696992 -"Tfru00528_t",0,0.109469975676923,0.176166516154466,0.493743430836845,0.94433564049765,1.69627600170198 -"Tfru00529_t",68.9723747331849,67.6656341220344,67.3649437837896,39.7850128365881,43.302909008844,33.4302218677028 -"Tfru00530_t",12.2399224435221,12.2809363441528,16.768874561988,13.2362477352818,23.5958832556135,17.9103485586796 -"Tfru00531_t",88.5704389761607,99.8128498059334,83.8243681877366,195.74917012451,113.397164312702,56.8455563738733 -"Tfru00532_t",0,0,0,0,0,0 -"Tfru00533_t",3.95564554305022,4.53588598768955,4.70409363913808,1.94840457011849,3.91285260905753,3.58316492261395 -"Tfru00534_t",16.9014959185161,13.7660113792069,12.8424347871184,10.5409840145523,8.39005895980605,8.18321802422189 -"Tfru00535_t",0.976864846179621,0.120632388223586,0.582389484532115,1.01045167241029,0.390235300456095,0.714709997981136 -"Tfru00536_t",20.8439458927415,14.8894432925358,22.2375849777876,22.9239251002831,19.6466807716551,16.8930698999864 -"Tfru00537_t",0,0,0,0.0244303749865855,0.020442463963542,0.0172800280647674 -"Tfru00538_t",6.42376104363825,6.76635226577475,6.14491539998124,8.71796241107614,8.43298706136275,8.59602314797551 -"Tfru00539_t",5.2136199970997,6.03953112634488,3.97952457366703,12.8693633312622,16.2554927002166,18.0754089898445 -"Tfru00540_t",0.0610244867589206,0.0979663511142633,0.0700684900410982,0.0210408822826355,0.0176062577041935,0.163708391789384 -"Tfru00541_t",0.206034032548001,0.124034650552393,0.177426648601922,0.799192309876928,0.401241323644924,0.226113034309176 -"Tfru00542_t",3.92571833753644,7.56263568524799,9.46579412263552,10.5578029092058,4.07741161989711,4.59551825383921 -"Tfru00543_t",5.66723890830768,5.68622886306501,5.79542147841843,3.29742642349604,3.23296509809314,3.88721152600702 -"Tfru00544_t",5.25064854772777,1.58047277368878,1.13040181188616,1.35779443467521,1.13615381736821,3.36137045894282 -"Tfru00545_t",11.4041235436354,8.84874047734188,9.82068542544352,7.8641487626502,10.857723359749,9.73428549286525 -"Tfru00546_t",10.5012970964309,9.97740635455384,10.7042130768142,13.5225241670009,15.3960435673992,14.268674602552 -"Tfru00547_t",0,0,0,0,0,0 -"Tfru00548_t",0,0,0,0,0,0 -"Tfru00549_t",4.49326164255716,4.1531170026668,4.22114388140619,8.1687730015924,6.24608387175188,6.97334552325193 -"Tfru00550_t",3.85899755495854,4.42948608976977,2.85793825135476,6.66610331610314,6.31277748101162,6.01380695591109 -"Tfru00551_t",144.639746571955,221.326859076859,158.716225241414,171.129009149317,209.907143675147,151.244158728246 -"Tfru00552_t",0,0,0,0,0,0.0676927971656142 -"Tfru00553_t",0,0.229756405509317,0,0.148038916230468,0.247747340096487,0.209420987483399 -"Tfru00554_t",3.15142578214709,3.46154221212557,3.71369914146748,10.637173380635,9.97751664387596,9.58685039740146 -"Tfru00555_t",94.3460382669883,97.6403116807443,104.52472527787,52.0844805273946,75.0076564419253,64.1796050553029 -"Tfru00556_t",61.5521572384862,51.4097018446318,56.5872431824483,26.6719223628299,33.1171964222047,31.0368123875769 -"Tfru00557_t",12.0014823959211,12.5321494343332,11.3717538776427,12.8669152171533,12.4399716289265,12.2236202346856 -"Tfru00558_t",0.110394713234491,0.265835105191792,0,2.74056800506548,1.52880618803299,1.53460727556002 -"Tfru00559_t",0.729026620768319,0.638373351375682,0.799021792003845,1.16541522961805,0.860450981993362,1.05706713806803 -"Tfru00560_t",1.00812452125737,0.944069070237784,1.44691431934868,0.173797687654569,0.872566131819829,1.22930119652755 -"Tfru00561_t",3.05122433794603,3.91865404457053,2.97791082674667,2.31449705108991,3.16912638675483,3.86947107865816 -"Tfru00562_t",8.41365816439133,8.34054869263655,7.49903014785118,5.61339552014007,5.09761552557069,6.18651828998594 -"Tfru00563_t",0,0,0,0,0,0 -"Tfru00564_t",13.9315613415977,14.2240149534687,13.7440380676173,13.02492921147,14.0127362854893,13.7771341387598 -"Tfru00565_t",4.25095388466158,3.75915765532075,2.41979667472549,4.02447475700975,1.93321541498104,4.00629892521844 -"Tfru00566_t",4.55363127636054,5.06916650235328,4.2276580617136,3.28942850268958,1.94579789763181,4.14886787865123 -"Tfru00567_t",4.12754842079816,3.73946915976593,3.49460776892324,3.50167264016727,3.25217355256999,2.99142964148499 -"Tfru00568_t",0,0,0.592997671490055,1.42457120938451,0,0 -"Tfru00569_t",10.5509318565086,9.15201519811877,9.9163945586692,8.56666522537715,8.93579990947607,9.794567264703 -"Tfru00570_t",32.3666040819174,31.5199102770608,34.8407130721353,25.3557532980462,30.2802694470054,32.3866887470432 -"Tfru00571_t",1.81901215527784,1.68471448243632,1.42185117990626,3.2131151448463,2.47062362440658,2.96883200360585 -"Tfru00572_t",155.236565773327,58.3446412973041,165.766053542772,42.3159587332864,30.4291631114705,16.7692717569791 -"Tfru00573_t",16.5790389557812,13.4270253352403,18.310508643085,8.68988438272846,7.85052124498666,5.43938582534316 -"Tfru00574_t",16.8020753542895,20.533123437756,16.8264755115268,4.10084431544489,4.4118512283025,6.21556784761123 -"Tfru00575_t",22.8150007983372,19.4256416736745,23.7786046136617,21.0630446332632,20.485372384095,20.670356413693 -"Tfru00576_t",11.4065813288819,15.8410604458003,16.0595016048399,17.7917891456725,16.2979306230715,13.909119141745 -"Tfru00577_t",6.73880027578455,5.55334747198697,6.57688326976672,6.5987357344783,6.5325806660308,7.75708776418457 -"Tfru00578_t",0,0,0,0,0,0 -"Tfru00579_t",17.8745482492441,18.9295151351727,16.0878599680498,3.16104236296917,4.49158955981381,7.12944070738355 -"Tfru00580_t",8.42443889630114,6.94997126915997,6.8516834063865,5.08321927680495,3.64581949228341,7.70453396152367 -"Tfru00581_t",10.1971215943274,12.4635719617599,15.6665895267409,4.55469802129216,5.91740250314596,4.91720478611022 -"Tfru00582_t",76.0385891945948,57.2200361914194,66.5369358532604,55.0253627884448,38.0818856192656,32.7514552359531 -"Tfru00583_t",12.7543026553016,9.86981300703138,11.5095457220918,9.08487912739794,6.74255647315322,7.09642054359088 -"Tfru00584_t",2.07646657313567,2.56955683380889,1.86266004035618,4.47470874496831,4.64290252084015,6.83648451209968 -"Tfru00585_t",0,0,0,0,0,0 -"Tfru00586_t",0,0.159795035585272,0.514306037683179,0.205921430870343,0,0.29130360107288 -"Tfru00587_t",0.133561807267802,0.107207480154189,0,0,0.115602296213544,0 -"Tfru00588_t",0,0,0,0,0,0 -"Tfru00589_t",5.56568746110839,6.3218910953423,4.7929036828425,5.75704840355761,7.18049212643401,8.29778307656099 -"Tfru00590_t",12.9673009000783,13.0552333261774,12.980233999434,10.2891441075182,10.5761231346895,10.4806846735611 -"Tfru00591_t",3.7251457602164,2.90084568239841,3.30367597733484,0.920173065014265,1.44368982763042,1.30170874549576 -"Tfru00592_t",6.7208301417158,4.81667892978461,8.06137977922835,1.24141205467549,3.11630761364225,2.6342168497019 -"Tfru00593_t",0.270129828847098,0,0.46524576184845,0,0,0 -"Tfru00594_t",0,0,0.0954428970546621,0,0,0 -"Tfru00595_t",0.525064854821547,0.210729703178077,1.35648217438939,1.90091220872185,1.36338458096848,0.768313247829721 -"Tfru00596_t",2.55370591900737,3.83682452551822,2.87578450065404,3.25108690858119,3.28714183200507,1.67675533431272 -"Tfru00597_t",0,0,0,0.157711150321751,0.131967049579526,0 -"Tfru00598_t",0,0.227815895327651,0,0,0,0 -"Tfru00599_t",14.6105003080778,9.214516213501,12.1325113734206,16.1923311479412,12.6458859684033,12.21665785369 -"Tfru00600_t",0.6109845583378,0,0.526150661581338,0.315995795735581,0.264413979339342,0.223509308459555 -"Tfru00601_t",13.6085923495865,15.0742284433216,12.9691024304471,12.7626811668582,11.0719784545173,12.0806057110159 -"Tfru00602_t",1.37471525626005,1.53257965947692,1.84152731553468,2.92296111055412,3.50348522624628,3.68790358958266 -"Tfru00603_t",0,0.406225933837257,0.653726349103319,0.267606787384697,0.219017603368431,0.555407167105823 -"Tfru00604_t",10.4229823384236,12.6637836540371,9.61339683363867,13.0790124268862,17.5499176795401,15.1266554013391 -"Tfru00605_t",0,0,0,0,0,0 -"Tfru00606_t",13.9726499100878,11.7607286386154,15.9219273478024,11.5453839162011,14.3057945039733,10.7748474400854 -"Tfru00607_t",3.91622793358592,4.51277477104182,3.63831606067854,4.25075135761185,6.85879676194016,4.29900411273972 -"Tfru00608_t",7.47549962796778,6.28617419649857,3.67859572715766,3.68215439946122,5.23786166699756,3.90667753133757 -"Tfru00609_t",0,0,0,0,0,0 -"Tfru00610_t",0.208462473378281,0.1673287965682,0.359035811252774,1.18596436985128,0.902156877398499,0.686334414934739 -"Tfru00611_t",3.95564554305022,3.77990498974129,4.54188351365056,4.09164959724883,5.05410128669931,3.4453508871288 -"Tfru00612_t",11.6782452505922,12.1860721490294,14.2680082750717,11.4757812873564,13.3929930455983,11.7483172561278 -"Tfru00613_t",0,0,0,0,0,0 -"Tfru00614_t",0,0,0,0.240052054771505,0.200866973255025,0.33958596589159 -"Tfru00615_t",0,0,0,0,0,0 -"Tfru00616_t",0,0,0,0,0,0 -"Tfru00617_t",0,0.53946804000384,0,0,0,0 -"Tfru00618_t",8.69378767011811,8.40248531362638,7.1047007233066,4.22106316373294,2.91776777623667,4.41354178267548 -"Tfru00619_t",0,0,0,0,0,0 -"Tfru00620_t",0,0,0,0,0.181331282589324,0 -"Tfru00621_t",0,0,0,0,0,0 -"Tfru00622_t",39.8983450811106,38.1559487635289,38.554143305529,24.5169151863812,17.4376460512583,14.740053532031 -"Tfru00623_t",15.5162022404408,13.8995591973785,13.8047437611328,13.4781880221911,9.27472504060192,10.0351118083882 -"Tfru00624_t",0,0,0,0,0,0 -"Tfru00625_t",20.2185418282356,20.1389975269152,23.7321530536539,17.117484725311,18.3084103645013,16.0131371112406 -"Tfru00626_t",1.32822730073435,2.39882033657257,2.00166012558118,1.54563160957621,2.1555487446142,1.94355920399613 -"Tfru00627_t",12.7724555691066,12.1293670694362,11.463775121178,15.6306271552289,15.8818246690975,12.5035988940169 -"Tfru00628_t",9.97245479661067,11.6431951108463,11.7106374767429,22.5061753797284,10.7239842339967,8.40169882518832 -"Tfru00629_t",27.5115537482406,25.9750138522136,26.4148097196026,19.7348691753306,21.4400921139335,20.1284574839204 -"Tfru00630_t",2.02272175212153,2.59775942280518,2.32249489462067,1.81329850682937,0.93372512768307,1.4798971065741 -"Tfru00631_t",24.3901093852589,20.5662302691097,23.1251702065991,19.8771548930446,21.9634192515744,17.8446947883032 -"Tfru00632_t",3.86889893026403,3.99277332337409,5.23554523448535,3.34854567379574,5.05716586424399,4.91027263650574 -"Tfru00633_t",0,0,0,0,0,0 -"Tfru00634_t",50.4221070414642,40.6640606813196,38.5661472643031,45.3385272142355,39.3809383689951,37.8201833147182 -"Tfru00635_t",15.7914242051593,13.9430179546397,13.8707951666885,10.1273088670896,9.84097141150183,6.93214960447869 -"Tfru00636_t",25.0315110184908,23.2962996905924,22.6481926096984,24.7345288158479,26.3797561314683,26.2018017021859 -"Tfru00637_t",62.4845862819663,70.5532045373433,78.524709502019,17.3179190545478,19.6663778227482,15.5303176073766 -"Tfru00638_t",0,0,0,0,0,0 -"Tfru00639_t",0,0,0,0.0366352629963257,0.0306550777058681,0.0259127570937511 -"Tfru00640_t",1.46437185732724,2.09531921613973,1.891570444014,2.66722483895796,2.28694546359245,2.32910419955959 -"Tfru00641_t",0,0,0,0,0,0 -"Tfru00642_t",0,0,0,0.257097171086641,0.430259433836207,0.181849289427153 -"Tfru00643_t",0,0,0,0,0,0 -"Tfru00644_t",12.3053173932862,12.9257713052448,12.8861718314507,10.9212832658161,12.4915284091145,9.89220673516748 -"Tfru00645_t",289.893064352477,281.955328916245,262.637575127966,89.3378651055164,127.701137976839,150.236970610104 -"Tfru00646_t",0,0,0,0,0,0 -"Tfru00647_t",0,0,0,0,0,0 -"Tfru00648_t",0.461595476766195,1.11154129148876,1.590015735548,0.954932349750381,1.19857985140086,1.01316032680842 -"Tfru00649_t",11.7803701306943,10.974337049847,15.2540608897558,15.2984658529099,16.5969163592478,15.9796573141248 -"Tfru00650_t",5.42002430783532,8.25104065836296,8.85208982916321,635.743821859901,248.715318441414,31.0401970647113 -"Tfru00651_t",0,0,0,0,0,0 -"Tfru00652_t",4.65984657210881,7.26700212544366,5.78995032702918,23.4117328853223,32.7846096807635,43.8340363262599 -"Tfru00653_t",13.2966063954809,11.4491418589988,12.6995357525567,8.0021956905701,16.2167566465316,17.3340312603885 -"Tfru00654_t",8.03405019892236,6.40896948508531,6.61959030398598,3.89864942790651,3.51979647821851,5.1523249677365 -"Tfru00655_t",9.12407780509573,9.25828859864338,7.70896973423476,6.58864184756052,4.02310204220208,10.9579102559321 -"Tfru00656_t",0,0,0,0,0,0 -"Tfru00657_t",8.77977298226193,9.63829298142351,8.15371798813292,8.36935586041471,9.20098337429549,10.8004690166227 -"Tfru00658_t",0,0,0,0.194840457011849,0.326071050754794,0.137814035485152 -"Tfru00659_t",0,0,0,2.19072715182352,2.44416283033973,1.03302621392548 -"Tfru00660_t",7.08521249879677,7.06833124876826,7.40889862317094,5.44426491448048,4.73078023275811,5.48001738211078 -"Tfru00661_t",0,0,0,0,0,0 -"Tfru00662_t",0,0,0,0,0,0 -"Tfru00663_t",24.0839191418989,19.6728437907898,25.4978998940872,15.3868104584568,15.8180200962279,10.8833579793755 -"Tfru00664_t",10.9668677092525,11.0538234306971,12.6371761506123,8.85159954285053,10.2423240068729,9.32942781108093 -"Tfru00665_t",26.1473218769923,25.6519385079019,24.4453463895724,19.7838866350302,18.2832360713929,22.230158525102 -"Tfru00666_t",5.85103455684717,4.62641510511537,5.71546196832118,5.32955487090415,4.38399477179055,4.98365349943603 -"Tfru00667_t",6.56758645770273,4.28323566068795,6.00917184745786,4.81198809467048,4.85548471832424,5.10540399209326 -"Tfru00668_t",7.46911180105038,7.04036593978306,8.26133787556341,8.43471648894525,7.59165748184734,6.26682910138435 -"Tfru00669_t",2.19669990282484,3.18244857860769,3.69110795752214,36.6327396491296,31.3021970120315,26.0285712530069 -"Tfru00670_t",1.0112706967584,0.751599476337322,0.645079946209843,1.12352495362963,1.10221609755811,0.986510099754613 -"Tfru00671_t",5.66423271216773,6.02056449830371,4.80261019173365,14.4406600807586,12.568171796085,8.54463021340396 -"Tfru00672_t",29.5276773018347,26.8640714833152,28.2345179861323,17.9131374652654,19.0731739873761,16.7276074802533 -"Tfru00673_t",26.4104477874311,22.6124328200667,18.519636871903,11.3176637918769,12.0826896996009,14.6301564556797 -"Tfru00674_t",22.5699519681659,19.1229342583084,8.63829444376453,13.6184755250009,8.13960943851587,16.5130011471783 -"Tfru00675_t",16.9274639761244,14.5938182497617,15.6569086793232,27.8854498845257,30.9305158663603,27.9803630549409 -"Tfru00676_t",9.79299846529336,9.83817265277121,9.22885233015652,17.6473458505556,21.0038523910687,18.9712538027163 -"Tfru00677_t",7.77409456691006,8.85693797238007,7.3425502772918,6.74438787913254,13.0233751017885,6.78867824948052 -"Tfru00678_t",7.12937894960824,7.97513315428075,7.01032817981153,8.81279276852089,6.91470803628914,8.9339825146375 -"Tfru00679_t",20.6174972612579,21.257247350206,20.4588378723138,14.8916918547462,13.2813016068016,7.62894959763221 -"Tfru00680_t",0.491864032619716,0.0789619496686002,0.254141859370377,0.508775432244055,0.255435050298545,0.719731379699973 -"Tfru00681_t",8.12509118409984,4.79909980960292,5.80878011417352,4.12293784582007,5.70564836804328,8.07570129105692 -"Tfru00682_t",1.08167867087701,2.31531347697801,4.3469528907471,6.7132154029662,9.05022096665774,4.22077664043796 -"Tfru00683_t",1.68020753542895,0.337167525084923,1.80864289918585,2.17247109568212,3.27212299432436,3.07325299131889 -"Tfru00684_t",1.49662191398066,0.640698384959473,0.945134056581678,1.13525805475075,0.518150909631727,0.948985484255238 -"Tfru00685_t",0.557590996270669,0.149189170391559,0,4.6140979023337,5.79136813154754,6.39127834477821 -"Tfru00686_t",0.292889169453042,0.235096473040039,0.294259158496245,0.403945816745077,1.0562731597664,0.785724181394718 -"Tfru00687_t",17.6906466470644,21.3971698611586,15.164775077789,16.377089798219,11.9558340177236,19.0896291576154 -"Tfru00688_t",39.5507950743709,47.2822572740126,52.1758752887002,138.399828065492,145.670472757901,194.143394309694 -"Tfru00689_t",0.3676602922164,0.221335355635617,0.15830572421758,1.14090385768864,0.875111911927253,0.739732667494699 -"Tfru00690_t",40.2972579210125,41.2468934635415,45.0189016273484,43.8846842427713,48.5473103197734,44.2244184136754 -"Tfru00691_t",2.94501320785517,3.73248182750837,3.07002115728963,3.68758931370396,5.63465214274797,6.23722931817486 -"Tfru00692_t",52.7941922519199,58.888848559353,57.7279171931921,84.9644517557869,76.2001245253618,45.6778013093286 -"Tfru00693_t",0,0.403793443215477,0.433207880044515,0,0,0.368054250457352 -"Tfru00694_t",10.0629489417705,8.93402153582554,11.1604099042321,4.10048990836552,2.37540689243148,2.67724398517798 -"Tfru00695_t",15.7168633603599,13.9672961393754,18.2072737289978,8.51569961781854,5.99200944271226,3.83301041233536 -"Tfru00696_t",0,0,0,0,0,0 -"Tfru00697_t",2.31580041627681,2.37625587081768,2.05191974810943,10.1687617442873,9.55041136593064,4.93793767420151 -"Tfru00698_t",0,0,0,0,0,0 -"Tfru00699_t",0,0,0,0,0,0 -"Tfru00700_t",0,0,0,0,0,0 -"Tfru00701_t",3.84128733755983,4.39659600872804,4.22680304974847,4.56200534910385,3.63261372970434,4.99631307648794 -"Tfru00702_t",22.5459158108677,21.9751358202314,25.656148474074,21.3776708456898,17.6557577258538,17.2809113888857 -"Tfru00703_t",11.9043044008124,15.5615780808426,15.2306770457756,10.2026982631225,11.1867452797414,12.6911661989687 -"Tfru00704_t",4.20753139089052,5.5162633486348,4.58954458558011,1.45073195037203,1.5780967882106,2.3600941168726 -"Tfru00705_t",2.83818840444079,2.27815895327651,1.95528962074146,0.587154350184356,0.491309758907561,1.45356560400218 -"Tfru00706_t",2.3673906630187,2.82470889256219,6.17115018153282,19.1931947524086,16.890877773867,13.2479908079702 -"Tfru00707_t",61.7137838842386,56.8231146541225,60.0023710630376,25.6989945726188,31.6356915091075,43.8120616013612 -"Tfru00708_t",4.29048052704262,4.27708392611846,5.72091328902278,3.57902981166741,3.95314145387896,4.6073479771008 -"Tfru00709_t",0.03220022106993,0.0516929896642273,0,0.0999220128332134,0,0.0942354309335036 -"Tfru00710_t",24.5176727188638,21.3022160200098,27.6972092511305,16.5435037411776,20.5363367844625,18.0023187776002 -"Tfru00711_t",0.419004372924925,0.168163354157069,0,0,0,0.153279450938598 -"Tfru00712_t",3.23116795912858,3.24199505400669,5.56505442298261,2.50669712466524,0.699171498140063,0 -"Tfru00713_t",3.49245871544172,3.03373969039965,3.02813788360273,1.58357801963161,1.32508144543634,2.43270026078203 -"Tfru00714_t",3.31452169356242,2.55817545587954,3.07386957069522,2.63729419809665,1.65509509070529,3.35772709218452 -"Tfru00715_t",0,0,0,0,0,0 -"Tfru00716_t",1.32594281428023,0.84598893384319,1.14183849564141,5.34545700596814,3.38409230943209,3.65656163273068 -"Tfru00717_t",84.010355006821,87.4632363232585,112.458163012776,58.5061371225266,94.3119914645385,71.8106453515316 -"Tfru00718_t",0,0.403793443215477,0.433207880044515,0,0,0.368054250457352 -"Tfru00719_t",0.289690954384302,0.232529327644774,0,4.79441896978122,6.51917224922861,6.35845446479769 -"Tfru00720_t",20.2917371586419,20.0225637973508,21.2585103842767,27.0054868509408,29.9804773497069,30.2597217606783 -"Tfru00721_t",1.16036432004762,0.558841201798215,2.2483129962255,0.180039041078628,0.0502167433137562,0.0848964914728974 -"Tfru00722_t",114.664225331888,104.047462909146,106.671640978134,205.180831751596,131.573120541118,104.023681574156 -"Tfru00723_t",0.255350689274916,0,0.219895793214085,0.264130224399041,0,0.18682389004978 -"Tfru00724_t",0,0,0,0.236138162574143,0,0 -"Tfru00725_t",0,0,0,0,0,0 -"Tfru00726_t",5.72798023441687,3.98470711464,6.24803910627838,6.51741328704635,7.93241938018026,6.56558593599944 -"Tfru00727_t",0.860965627141361,0.717660479092859,1.25471482166618,1.16458836820169,0.859840492530379,1.16291796281676 -"Tfru00728_t",56.0168340866273,60.8747546635746,47.4089967313262,42.9570771894084,23.9203829219966,20.222786367738 -"Tfru00729_t",25.3755683503199,23.9280179092526,34.7938340723143,27.7770497864341,31.7723249367435,24.3336747113226 -"Tfru00730_t",0,0,0,0,0,0 -"Tfru00731_t",0,0,0,0,0,0 -"Tfru00732_t",0,0,0,0,0,0 -"Tfru00733_t",0,0,0,0,0,0 -"Tfru00734_t",0,0,0,0,0,0 -"Tfru00735_t",553.699616486915,665.62224198461,513.333263230567,514.609573136006,780.474977710087,745.191465566636 -"Tfru00736_t",35.2272492222313,32.7155036862365,34.6845293010238,34.4175385033288,33.0919534786769,28.2365426894701 -"Tfru00737_t",34.7505609672938,33.4291895873111,37.9467934498694,34.8336516834318,37.3646833277503,29.8806687428872 -"Tfru00738_t",12.3182370632621,10.4808673486809,10.395718716728,10.4482480848055,10.1439925253457,12.0252127938493 -"Tfru00739_t",8.65425476088928,7.02378743595452,7.64584636511987,9.3496657608906,9.6544898217379,10.0135751796502 -"Tfru00740_t",3.12839261833163,4.81294217343878,5.05129126227234,11.2584227456606,13.2565969083049,19.502877788199 -"Tfru00741_t",0,0,0,0,0,0 -"Tfru00742_t",0,0,0,0,0,0 -"Tfru00743_t",0.032349009153426,0,0,0,0,0.0236677165292174 -"Tfru00744_t",0.0873288739827936,0.070097198562354,0,0,0.226758350265028,0.0638929935825132 -"Tfru00745_t",0,0.0416513310790516,0,0.107348787927467,0,0.0759296600696451 -"Tfru00746_t",0,0,0,0.530230233522415,0.492975215717417,0.458383497010274 -"Tfru00747_t",0,0,0,0.506534711428473,0.565133505064656,0.796179531429763 -"Tfru00748_t",0,0,0.0965897409445045,0.116019818193971,0,0.082062830208782 -"Tfru00749_t",207.313278099404,158.290585651415,234.167933875021,202.027057664998,214.370658445299,155.286481870555 -"Tfru00750_t",0.0645736946744408,0.0518320561237391,0.111215551064464,0.0667938845713179,0,0.047244473348484 -"Tfru00751_t",0,0,0,0,0,0 -"Tfru00752_t",0,0,0,0,0,0 -"Tfru00753_t",4.68403179840804,3.51721518973481,5.07460957325525,1.6410752881052,2.22326502412127,0.994938018772301 -"Tfru00754_t",0.322868473372204,0.466488505113652,0.166823326596696,9.55152549369847,17.6055810609304,18.9450338127421 -"Tfru00755_t",9.01951897852963,7.23979348341859,7.98909746879638,11.9952391786129,17.1747423696643,16.0261659056506 -"Tfru00756_t",0.293173086833279,0.261471520034837,0.224414783923796,0.572811300916572,0.479308008302219,0.238329041591228 -"Tfru00757_t",27.8627380247012,32.7340531891493,29.15641417381,20.261840972794,23.2391984856537,27.3658507568697 -"Tfru00758_t",5.78173604475029,6.11753382323009,6.71404454755122,5.52745513395658,6.0658055739995,5.44789372809396 -"Tfru00759_t",9.59648559726064,11.6644117686037,10.1529562225837,8.33820498864937,5.93291810691245,3.93183803066907 -"Tfru00760_t",18.1518265600357,15.9710932934964,20.8419791152718,17.6927008900427,16.2145830128108,14.3021191839771 -"Tfru00761_t",8.10849586552577,7.37633722555206,6.70881923240776,6.84139270101257,7.26587997730364,9.74786527905081 -"Tfru00762_t",143.153682018546,145.199897879649,142.910614311054,96.3641332780104,119.653427512114,122.324925217542 -"Tfru00763_t",0,0,0,0,0,0 -"Tfru00764_t",0.631327892121885,0,0,0.327476718217476,0,0.230447532034308 -"Tfru00765_t",32.1651820384383,34.8547990667134,39.3619008790069,38.7433132428952,40.5146155244639,37.1577187867271 -"Tfru00766_t",5.80847461657562,5.91322472324317,5.24597940404664,6.88742944330924,8.82866237929,8.70668638350038 -"Tfru00767_t",9.34000640628747,9.61057049621129,11.8508357912355,12.2819773357309,10.4921218294913,7.70585019703848 -"Tfru00768_t",1.1251389746176,1.3199552836429,1.09313581818925,0.566991082664288,0.524378684987878,0.844300272340353 -"Tfru00769_t",0.303585461394849,0.310140956057091,0.308966592502182,0.256928250474889,0.143325580128093,0.161537607953686 -"Tfru00770_t",0,0,0,0.462227892698323,0,0.326941807587116 -"Tfru00771_t",0,0.035085070248171,0.0376408511797263,0.0904254358244377,0.0378323851812274,0.0639594795279685 -"Tfru00772_t",0,0.197318229749772,0.317537890127727,1.33494931995097,0.212769112855359,0.359707738559635 -"Tfru00773_t",16.193713687622,13.8207701896805,15.3783293760917,22.6075921023444,15.9664471334112,10.9523385546217 -"Tfru00774_t",0.93424713261661,1.0383259968398,0.618868400063592,4.01414676362136,4.4163241630459,4.04859675503087 -"Tfru00775_t",0.0602656935232765,0,0.0518979311100674,0.374026587491899,0.312972070236667,0 -"Tfru00776_t",0.510701378549832,0.409930121683797,0.219895793214085,0.264130224399041,0,0.18682389004978 -"Tfru00777_t",15.8169825795954,14.5335630135698,14.6364165252034,11.9118150911059,11.468492373905,11.2169927511391 -"Tfru00778_t",51.80905588372,46.7044199833005,48.3219962439027,35.2871965446659,34.9081643501608,27.1752541547363 -"Tfru00779_t",0,0,0,0.599302371222653,0.40117983072176,0.254338178591908 -"Tfru00780_t",20.4257862748026,42.8131946230613,17.9403350581601,25.0588749970441,19.2650572991992,19.8098213818455 -"Tfru00781_t",12.2793748971291,14.5406544826783,12.0925183708229,12.7015676216436,12.6275851204027,9.82907251926879 -"Tfru00782_t",5.82498727166043,5.88481275103392,6.09727791476879,7.68740519213277,5.82406164892693,5.62113218974046 -"Tfru00783_t",234.673104213854,201.725548476787,280.433978985209,453.68863307586,368.031937673301,230.649637197344 -"Tfru00784_t",0,0,0,0.534351076570543,0.16767220058029,0.047244473348484 -"Tfru00785_t",167.337325273379,157.925854524355,212.238150085208,96.9214655604261,99.5804404987601,92.5423825209411 -"Tfru00786_t",159.735374873939,148.059826253331,189.489083883039,375.626244989484,250.21525376125,132.029506988507 -"Tfru00787_t",23.8336648834357,21.0333346369591,28.688818400879,11.1688169182403,11.1692111962308,10.9827849846506 -"Tfru00788_t",3.13773696375286,3.0060719103957,2.70206890962705,3.97850128365881,6.6581351424003,6.73894029421731 -"Tfru00789_t",7.46256375089573,6.7161229761196,7.10799093623509,8.53784064521101,4.99112524930588,5.04625659409023 -"Tfru00790_t",12.4376062514929,14.0675548824127,11.8791081400093,22.5726471852839,22.8025918252602,20.0195753404891 -"Tfru00791_t",10.2634628416337,11.1459125234955,10.7919894245845,8.95103508935227,9.02589095414674,9.87831318638213 -"Tfru00792_t",33.5953622301123,29.0778646128301,36.3037372218849,60.8105775215952,48.9621467204055,37.0282500501118 -"Tfru00793_t",0.244216211544905,0.0980138154316636,0.315460970788229,0.757838754307715,0.792665454051443,0.89338749747642 -"Tfru00794_t",1.1855216734906,1.2543756545815,1.48496658817055,1.28202271201254,1.02610941308725,1.57703809689231 -"Tfru00795_t",0,0.166914616378675,0,0.430192296174677,0.359969526328312,0.152141237194004 -"Tfru00796_t",0,0,2.7825272114913,0,0,0 -"Tfru00797_t",0.0897534536427856,0.0239465571793269,0,0.0617179288546056,0.0774650330095728,0.0218270809042534 -"Tfru00798_t",4.83655954599027,4.73310879062431,5.30611323735911,9.18331630351431,7.85630652335151,6.7378890503679 -"Tfru00799_t",9.70885093031503,11.6362829237752,10.2696557230816,15.3620647399158,15.1183401907217,17.3853678453501 -"Tfru00800_t",0.0480402720352703,0.0361573753442277,0,0.232972771654919,0.281758174128288,0.415050591870919 -"Tfru00801_t",0.415265035877438,0.186145410770615,0.448192354986684,0.205055138351888,0.547285351645273,0.0997223223863871 -"Tfru00802_t",6.64155009974662,5.60723045344,6.84702543749257,4.6629696118993,4.59833621704601,4.90948007969112 -"Tfru00803_t",4.98974626302714,6.21508516772619,2.99239774878339,3.54349327062522,3.33769615915456,4.43730896639269 -"Tfru00804_t",10.9016543856863,11.1936744060872,9.45650845702664,3.39528989616433,4.01191705568751,5.50172688003097 -"Tfru00805_t",115.426999663817,115.837125481046,112.626848680603,52.1754138492076,47.2337852981878,47.4183356278288 -"Tfru00806_t",2.6471227937352,2.29707489945019,2.35480307420857,2.46062299958034,2.58531232726406,1.83204351196357 -"Tfru00807_t",1.82631253850973,1.55951676727531,2.0412066022264,1.80871784099344,1.0762456143322,0.909751116764147 -"Tfru00808_t",0,0,0,0.229083068085988,0.15974043127926,0.108022952243195 -"Tfru00809_t",1.23027748410069,2.11611417417316,1.36215783202281,6.18108930989054,7.68211116752115,9.06545338443437 -"Tfru00810_t",16.8994383737266,13.2857402268562,13.4150996495904,14.5310980572115,14.5066527158236,14.4503948598438 -"Tfru00811_t",141.260267991677,138.564408481376,158.669455385495,160.864961549725,163.273906302231,173.000873349439 -"Tfru00812_t",92.7094378369473,80.4934935245885,77.9641272745884,88.2319037517684,70.7617948064179,102.657846804938 -"Tfru00813_t",6.25785931125482,10.8018073296818,7.82115848296583,52.2424163285983,28.0885384116908,22.1225594365209 -"Tfru00814_t",0.0601362754269488,0,0.051786482439108,0.808650658378454,0.520499959329413,0.263987372196325 -"Tfru00815_t",0,0,0,0,0.10328671067943,0.0873083236170138 -"Tfru00816_t",10.8704526413316,9.53248500240096,9.84810793273969,7.53946588179882,8.5385740897353,5.88446346879308 -"Tfru00817_t",6.98513245065967,5.98567067004695,5.69011249182064,4.00320516507716,3.59484174157982,5.45588733290319 -"Tfru00818_t",13.8635958080236,14.2729212412631,12.3928535872465,10.2096399474209,8.21699047902081,6.83557616006353 -"Tfru00819_t",7.6097922345727,7.42705613671369,7.14893333286017,19.3207928632975,15.8301369771739,18.8855587835036 -"Tfru00820_t",4.07896041559118,4.05468342063541,3.67544151860275,2.51475753841017,1.94059455897765,3.18195325789286 -"Tfru00821_t",39.6910461207339,39.7396114707772,39.9773488901847,32.7865420784079,35.3250896437911,38.3771825961023 -"Tfru00822_t",19.6041319039053,24.3452666249468,20.9038018647503,13.8018933384814,9.77217211364092,9.38684481160319 -"Tfru00823_t",15.0920723112932,14.3237707264296,11.7415367857709,12.0264783862742,9.75497988541828,11.4921179706219 -"Tfru00824_t",31.2200724488487,28.021355125301,29.8181667163072,28.7705631590334,28.7416208960923,20.1422662268873 -"Tfru00825_t",10.9302456918979,10.6608188718228,10.9448889512003,5.78449187352575,5.77530533541868,5.76525523333649 -"Tfru00826_t",22.0355086613633,22.4962594605842,20.2805203777561,22.0096251988778,23.2445895771676,27.205846152659 -"Tfru00827_t",4.36543528258099,4.12699280127042,3.3416035088884,5.82001494455255,5.12187586999707,4.18757335999571 -"Tfru00828_t",2.58652637843126,2.57443184178143,1.8710098957095,2.67545701438684,2.32827580329593,1.1354382972853 -"Tfru00829_t",42.2243458903449,43.3919945326683,36.7390418478099,9.52109071498945,14.6692277233478,15.7136761643087 -"Tfru00830_t",1.60529382365823,3.75823674457717,1.90080304691506,22.4165807325161,20.725761358247,18.0088710319323 -"Tfru00831_t",11.0502149260296,11.394865227162,11.6748741411046,8.45698689214403,8.12692272556008,8.86751195746449 -"Tfru00832_t",10.619821894359,11.6448377738134,12.7788990393944,11.1320753661364,9.80734130478457,8.32483880266967 -"Tfru00833_t",13.4235610999261,11.5012261698627,14.806843124394,20.4376095895409,16.8403696895209,11.1453699146574 -"Tfru00834_t",1.33862688262196,1.22269542063763,0.954009441328799,2.24409102191339,1.95768042395474,1.89123261004239 -"Tfru00835_t",11.7042320579416,10.8561679903505,12.9908715978674,12.9137600734045,14.6328169680828,13.7011898064991 -"Tfru00836_t",14.0877351711334,13.171900857126,17.3167464010724,9.55460260754542,12.238079449152,9.51424758983242 -"Tfru00837_t",10.5012970964307,7.98554664674803,8.09129718056812,8.57554379874504,8.13246943033817,6.06563090391874 -"Tfru00838_t",37.971399488247,34.2779788626669,34.922323840874,16.8568179767396,17.177598305672,18.3765575793332 -"Tfru00839_t",4.69056499714593,4.53164564992907,1.71067090975126,9.06922556109876,5.34433105725465,3.13449127103821 -"Tfru00840_t",0.335147779673328,0.358688856473322,0.192408819062324,0.577784865872903,0.386775767650633,0.490412711380673 -"Tfru00841_t",0,0,0,0,0,0 -"Tfru00842_t",189.623421855553,197.676503278361,198.227261750769,72.746746403984,133.377965863888,198.971179380817 -"Tfru00843_t",184.512723479572,166.434036711383,189.604040840825,65.3199362997039,146.403713392589,162.944286116907 -"Tfru00844_t",0,0,0,0.11155178925197,0,0 -"Tfru00845_t",0,0,0,0,0,0 -"Tfru00846_t",0.129114308562675,0.103637558940038,0.0741247089830265,0.133553550964064,0.447011338022453,0.566788461513729 -"Tfru00847_t",9.95417069308747,10.2566927798943,11.9765597021718,7.88661775911491,8.24904956552359,10.691821331143 -"Tfru00848_t",17.7837376738881,15.9175430756314,15.3855317258253,0.220742194311477,0.246278896929108,0.312269567280496 -"Tfru00849_t",0,0,0,0,0,0 -"Tfru00850_t",44.5176482517857,48.3378489233899,41.7171091139315,31.023699385068,33.2309064221103,29.1240984410967 -"Tfru00851_t",0.785143667507288,0,0,0.812138685323525,0,0 -"Tfru00852_t",11.4855115276527,11.4225283648719,12.5656359633892,4.63261248262394,6.00217459549323,6.65915523484402 -"Tfru00853_t",1295.01791593028,1581.03322751339,1142.88098221501,3285.84521751079,2426.72924316216,1087.85016220376 -"Tfru00854_t",0.12735276923413,0,0.0365567033690924,0.614746747641225,0.551140810901862,0.12423458277186 -"Tfru00855_t",16.3124659856019,15.7766816164702,14.4326561414438,7.57230048480961,6.43809885250457,7.88764286928579 -"Tfru00856_t",2.64997057784513,3.24126498016298,3.42304176188384,1.86002031474098,1.2560408706882,0.761677421806408 -"Tfru00857_t",6.07969831898622,4.8800562841238,8.09129718056812,2.85851459958168,1.9135222189031,5.66125551032416 -"Tfru00858_t",0.503056148332021,0,0,0,0,0 -"Tfru00859_t",3.81437248794128,3.62870879015164,3.77138541758484,2.77647651241885,1.83414966049572,3.37644386938622 -"Tfru00860_t",8.6749845579212,9.49533049893311,8.97172663430134,20.1790793472449,25.651030060909,23.5049191233282 -"Tfru00861_t",15.9774336191096,12.4110745430033,18.6412274271916,17.3264565913298,15.8364507564437,14.89490713584 -"Tfru00862_t",5.23755466156156,4.37224720808379,5.95363747362922,7.36798177089196,3.98928821696514,4.29182462628074 -"Tfru00863_t",2.43187932759453,2.61370174484435,0.560819503623519,2.51549284763192,1.33946555323219,0.647000629751344 -"Tfru00864_t",2.97469613826311,4.11883609870635,3.45824903709775,2.23080537414392,2.51033336832202,3.60919058880176 -"Tfru00865_t",3.13884924201012,3.55693213276402,2.0670204562124,3.24676998915129,3.03640229021552,2.43158478434022 -"Tfru00866_t",4.05486978036944,5.59295922332272,3.81295035611996,11.618652628225,9.82292432261342,9.51387056397192 -"Tfru00867_t",0,0,0,0,0,0 -"Tfru00868_t",1.41325867465986,4.41153771139151,0.811353823933838,15.0245664561193,11.6885805820102,7.92726939816834 -"Tfru00869_t",18.9664104846725,18.2413345774758,15.8424855982923,15.2588478313673,19.078140848264,23.7109281635315 -"Tfru00870_t",0,0,0,0,0,0.0833989956938639 -"Tfru00871_t",0,0,0,0,0,0 -"Tfru00872_t",18.7055963973699,19.247817518335,17.2792367219913,14.405006970879,12.7668250446092,14.0172892688895 -"Tfru00873_t",0,0,0,0,0,0 -"Tfru00874_t",0,0,0,0,0,0 -"Tfru00875_t",0.138402597646536,0.11109308899009,0.119185693521308,0,0.119792165269059,0.0506301975505582 -"Tfru00876_t",22.3244357854079,22.6350226630319,33.8962445441645,13.3690528964983,18.8140716068279,12.4649422025456 -"Tfru00877_t",0,0,0,0,0,0 -"Tfru00878_t",0,0,0,0,0.679568603316185,0 -"Tfru00879_t",14.460278103844,11.6583439747567,13.7748887980643,13.8985203379511,15.1741000329165,13.5288669381745 -"Tfru00880_t",4.60330831624289,14.3180729830559,10.9014092553649,4.16638292322525,7.47060044366162,10.1038454509096 -"Tfru00881_t",33.5602810601343,28.6988546155835,29.4132153690798,20.0635525285674,16.2731468075313,18.0658213887302 -"Tfru00882_t",0,0,0,0,0,0 -"Tfru00883_t",4.74677465166026,5.32210622555573,4.34723136306553,2.72776639816589,2.67378261618931,3.80366737939019 -"Tfru00884_t",31.7425571323935,29.6937309023654,34.9396923706357,57.6445455502016,54.5353832387393,37.3679625080819 -"Tfru00885_t",7.81491876943697,7.55597413509553,7.80048945949076,29.7623947146303,33.3592055329286,23.0006672077566 -"Tfru00886_t",0,0,0,0,0,0 -"Tfru00887_t",0,0,0,0,0,0 -"Tfru00888_t",7.72116516890895,10.091716082249,8.73797382770552,8.05731451509593,6.88992506147553,5.32413897642068 -"Tfru00889_t",13.8606541020902,13.1639713824088,11.5716699343377,5.80055254766509,4.8536948978223,3.71577187867271 -"Tfru00890_t",7.85270242182748,7.33563511465989,8.10318655880202,2.59085996906489,2.63668250952809,3.21936252112373 -"Tfru00891_t",7.74264914445315,8.79383639092965,5.3522222471205,2.3427274511431,1.77795606797144,2.35070134759187 -"Tfru00892_t",0,0.263412128972596,0,0.848621521750827,0.852115363105302,1.08044050476055 -"Tfru00893_t",0,0,0,0,0.0814264774001333,0.206489562686599 -"Tfru00894_t",2.83181045297014,4.92491890573483,2.2354013360724,1.95278300735471,3.26803794689074,6.90618649734581 -"Tfru00895_t",33.1685046770005,63.9763954492311,38.9225920319783,147.63074057399,176.23573463833,165.488425661002 -"Tfru00896_t",0,0,0,0,0,0 -"Tfru00897_t",0.726733363074805,0.787502004956135,0.876159189917019,1.57861221485552,1.50962998584745,1.24950597397913 -"Tfru00898_t",1.96899320539791,1.58047277368878,3.95640634160156,3.39448608668802,0.568076908684103,1.9207831193959 -"Tfru00899_t",11.7273368589584,17.2006783101699,14.1386297702853,124.94465743187,123.189063661112,80.8873947207534 -"Tfru00900_t",5.67637680888159,4.10068611589771,4.39940164666828,16.440321805162,22.6002489097478,17.0274827897398 -"Tfru00901_t",1.63126945187277,1.63673555866468,1.40477118383367,5.90574666787372,10.5893948036387,8.95122230481229 -"Tfru00902_t",0,0,0,0,0,0 -"Tfru00903_t",0,0,0,0,0,0 -"Tfru00904_t",0,0,0,0,0,0 -"Tfru00905_t",2.10025941928619,3.58240495402731,1.35648217438939,1.35779443480132,2.27230763494747,1.53662649565944 -"Tfru00906_t",121.408544495511,117.899870061953,97.0832833627495,106.521163401187,113.996543028074,88.8269251684422 -"Tfru00907_t",106.84246523198,116.775094053803,94.7804501873002,110.818734636886,99.0631119458633,96.8021151272569 -"Tfru00908_t",4.73068141043102,6.41600338996552,8.56910422138538,5.23080419154529,5.93006109003767,7.16097784384983 -"Tfru00909_t",3.4194167720222,3.92868784217069,3.98392210834233,4.78533138394464,4.0622259395709,5.10164901990685 -"Tfru00910_t",0,0,0,0,0,0 -"Tfru00911_t",0,0,0,0,0,0 -"Tfru00912_t",342.177096400558,423.921865809021,324.133193730497,32.9532132491108,36.1526697874789,36.9480977608001 -"Tfru00913_t",5.1225839494785,1.6447196345606,3.97019172992015,2.11948399578743,2.66026259701167,1.8739347508042 -"Tfru00914_t",3.11643363596251,2.6561428825018,2.90778601155281,0.977961264937287,0.413524646839045,1.58109478653062 -"Tfru00915_t",53.3142775664955,62.5056719580511,60.937353064877,70.8559803514783,62.9254421985453,39.7158848108902 -"Tfru00916_t",0,0,0,0,0,0 -"Tfru00917_t",0,0,0,0,0,0 -"Tfru00918_t",0,0,0,0,0,0 -"Tfru00919_t",0,0,0,0,0,0 -"Tfru00920_t",0,0,0,0,0,0 -"Tfru00921_t",0,0,0,0,0,0 -"Tfru00922_t",0,0,0,0,0,0 -"Tfru00923_t",0,0,0,0,0,0 -"Tfru00924_t",0,0,0,0,0,0 -"Tfru00925_t",11.3996199643803,10.6070891322654,10.2185145970837,8.00017416767644,6.32489330591177,6.028960217393 -"Tfru00926_t",0,0,0,0,0,0 -"Tfru00927_t",0,0,0,0,0,0.231071653482623 -"Tfru00928_t",0,0,0,0,0,0 -"Tfru00929_t",0,0,0,0,0,0 -"Tfru00930_t",1.21371775486388,1.86374008840912,1.6814016901979,1.47378692420646,0.822141455860391,1.11965247171165 -"Tfru00931_t",12.9454192135778,15.5865565368311,11.0318507494482,15.343295057787,14.1225925562064,13.4177337662719 -"Tfru00932_t",21.7424411486133,36.2618704189105,17.3712934098655,12.431969749554,8.25937268317355,7.3793421933897 -"Tfru00933_t",83.4066060964986,90.9036879746414,87.2753760387421,117.411579544873,120.492961734874,96.9936313687295 -"Tfru00934_t",3.92854279866481,2.42566564809297,2.60236388372064,3.43844346079184,4.18496945716944,5.96962811263381 -"Tfru00935_t",8.62743126349169,10.0192534766678,11.2760256496947,0,0.158879485036385,0.0447669772952496 -"Tfru00936_t",0,0.490425491032615,0.263075330790669,0,0,0 -"Tfru00937_t",8.88846989732038,11.7375725456185,8.39506601669882,0,0,0 -"Tfru00938_t",12.941264714472,10.7339597202902,12.7231875321418,13.1631111317325,11.1077631243645,8.04805661398014 -"Tfru00939_t",25.6334557186822,23.1286409189658,29.1638632296337,39.6754186739273,43.5635281105297,40.9310754745811 -"Tfru00940_t",187.584813886931,146.50621774923,200.387722857742,229.74625833789,198.419147783687,125.624478439665 -"Tfru00941_t",11.6510741507328,8.8598765715352,6.33685103361566,6.34298130123344,6.89985384039374,13.0108520799783 -"Tfru00942_t",0.200502092533287,0,0.690651226419417,0.414791617314008,0.173541394554461,0.293389307047149 -"Tfru00943_t",0,0,0,0,0,0 -"Tfru00944_t",0,0,0,0,0,0 -"Tfru00945_t",0,0,0,0,0,0 -"Tfru00946_t",0,0,0,0,0,0 -"Tfru00947_t",0,0,0,0,0,0 -"Tfru00948_t",0.484209664388746,0.194332867484105,0.625467285021042,1.25214472373609,1.0477499181314,1.9484601097699 -"Tfru00949_t",28.7142887539035,26.1145243181093,24.2927822059551,30.6728171749944,25.7815007393696,27.7647511525839 -"Tfru00950_t",2.36824504251855,2.50124276769231,1.93208143533206,1.54716042422465,1.83402871426027,2.37105572030537 -"Tfru00951_t",15.7945805173052,17.1426836614071,15.8157405300449,15.3063547528384,13.3074056122845,15.2798837044961 -"Tfru00952_t",10.3574437115483,10.8078357355989,12.9825873859368,16.6655316929039,24.3043534433834,25.8069052558695 -"Tfru00953_t",83.6084132462252,121.638427710063,67.8457432039093,38.6679065834329,54.9702746521264,76.1696195934538 -"Tfru00954_t",9.23117974010371,11.6209518527294,7.89225992372006,8.17467384620306,7.64501288089837,7.67705885578473 -"Tfru00955_t",0,0,0,0,0,0 -"Tfru00956_t",0,0,0,0,0,0 -"Tfru00957_t",80.9503961605669,67.2102152652727,73.5434927218616,90.0640335031129,102.569859866238,99.9316038899055 -"Tfru00958_t",0,0,0,0,0,0 -"Tfru00959_t",3.46355195118198,4.35553101575576,3.91057924148291,4.45839235394222,4.46342425041445,4.39237257577413 -"Tfru00960_t",5.60981343262108,5.71098088091726,5.77351804951834,4.52892997145457,2.48695558743437,2.30243709447343 -"Tfru00961_t",0.127384953406289,0.460122475476013,0.109697825576094,3.03058894318051,3.74870463506118,2.65618529954779 -"Tfru00962_t",10.0520785597578,8.0268028290521,8.83577560172627,7.91948545729128,6.17594337979523,6.47802862398277 -"Tfru00963_t",0,0,0,0,0,0 -"Tfru00964_t",0,0,0,0,0,0 -"Tfru00965_t",0,0,0,0,0,0 -"Tfru00966_t",2.55544872308585,5.38442435496835,3.85110275111816,6.27786324227532,4.42365592811067,5.84268629528305 -"Tfru00967_t",0,0,0,0,0,0 -"Tfru00968_t",0,0,0,0,0,0 -"Tfru00969_t",0,0,0,0,0,0 -"Tfru00970_t",0,0,0,0,0,0 -"Tfru00971_t",0,0,0,0,0,0 -"Tfru00972_t",0,0.0512412652104746,0.109947896607042,0.264130224399041,0.110507362185895,0.560471670149341 -"Tfru00973_t",13.6967758021899,19.8901564269139,11.7950078304093,23.9012376923832,20.9499128309781,17.4029883142513 -"Tfru00974_t",0.596346951350115,10.5308756725726,2.11837500170836,0,0.0645198263694047,0.0545386511325445 -"Tfru00975_t",3.08294960629165,4.94924807464107,3.18586639122645,4.62397517613074,3.60233724145801,4.62397697776419 -"Tfru00976_t",59.4763723717109,57.2886408872708,78.7479909702451,116.890479084349,117.757817558473,116.402855558862 -"Tfru00977_t",2.27168770438566,3.14036853609392,2.57213111351417,3.52469021032051,2.33033852597517,2.58541062865084 -"Tfru00978_t",28.9015290350752,28.9983731487033,28.4742613865993,39.2691568315718,32.1170478548844,25.0877795209705 -"Tfru00979_t",2.2107993887223,2.41340965323945,2.81767525346848,2.92711894997169,3.44433999402564,4.33490421933401 -"Tfru00980_t",68.1461844832525,64.0698384959474,62.4647690122618,82.5642221636909,63.387127944948,35.477457334465 -"Tfru00981_t",77.7648684983069,67.8771464973595,77.9144322622956,37.7323927144789,40.0404524305481,34.007970601305 -"Tfru00982_t",0,0.433191681051293,0.464747640047755,0.186078894705106,0.31140832684505,0.394850491390007 -"Tfru00983_t",2.66417685321715,4.98979424015742,2.60016315316359,3.67436971785559,2.76712303959776,5.58773271148888 -"Tfru00984_t",2.84282488491479,1.80976734584673,3.37669619451267,1.41958437990897,1.442398312032,1.86475093989011 -"Tfru00985_t",12.3770480316838,11.9516597094628,10.9390088391634,9.09658348565871,7.87347358860779,11.2342673734171 -"Tfru00986_t",0,0,0.0802058935337405,0,0,0 -"Tfru00987_t",8.01379394298698,6.43251744400173,8.56847468244255,5.95273770135689,6.37759069885385,6.29603685801564 -"Tfru00988_t",0,0,0,0,0,0 -"Tfru00989_t",5.30464534529707,6.93474959039331,5.52041559521143,19.9105948218007,15.9426075778133,12.2626713351679 -"Tfru00990_t",1.2793458391591,0.68460411184756,0.367237136890528,5.29333058846404,6.27479874828134,4.68008069743993 -"Tfru00991_t",0.207946477157048,0.125185962284006,0.0447683885937091,5.10853351707428,5.17456194096949,5.89547294126766 -"Tfru00992_t",114.863745231758,108.609716045055,131.886880436207,201.674529147835,165.214863086092,120.890349968252 -"Tfru00993_t",0,0,0,0,0,0 -"Tfru00994_t",8.40103767714474,11.1987785117492,8.52645938187614,8.8450608895629,10.2578458949057,11.0856625758288 -"Tfru00995_t",0.351067182496646,0.197256387429541,0.241857805156486,0.871530401945186,0.790037589751899,1.05309964600146 -"Tfru00996_t",0.176863951097784,0.780809005459821,0.456920311373267,1.55503194217246,1.14811333134188,1.03520100760215 -"Tfru00997_t",0.649804019226665,0.521585121678334,1.03922022936645,0.480104109543009,0.24104036790603,0.475420352248225 -"Tfru00998_t",6.19900357234249,5.64421407631148,5.25860931040819,4.68947505235347,3.52357835903749,4.94157419308984 -"Tfru00999_t",0,0,0,0,0,0 -"Tfru01000_t",0,0,0,0,0,0 -"Tfru01001_t",0.179893740409952,0,0.154915880015918,0.744315578820425,0.155704163422525,0.131616830463336 -"Tfru01002_t",3.36490160633301,1.35047072797699,4.82948704722523,10.2097440010695,6.60152391674993,3.11838754793372 -"Tfru01003_t",0,0,0,0,0,0 -"Tfru01004_t",14.2366578085842,12.672068056883,11.5316158001782,9.47722290062668,7.19818257513561,10.6223173861022 -"Tfru01005_t",0,0,0,0,0,0 -"Tfru01006_t",0,0,0,0,0,0 -"Tfru01007_t",0,0,0,0,0,0 -"Tfru01008_t",0,0,0,0,0,0.289929527482914 -"Tfru01009_t",0,0,0,0,0.328032380383394,0.924286613930492 -"Tfru01010_t",0,0,0,0,0,0.545547868281459 -"Tfru01011_t",0,0,0,0,0,0.228070722917914 -"Tfru01012_t",104.706043700531,100.235189085789,101.948555904004,115.380888908248,115.977822670555,92.3892163130133 -"Tfru01013_t",2.36279184669696,2.52875643813692,5.65200905995577,8.68988438272846,9.99815359376887,9.98807222178638 -"Tfru01014_t",11.700609578196,5.63511183985944,13.5018467125852,14.2814255872139,15.1909145511809,14.8954323256124 -"Tfru01015_t",8.17903529068334,13.411670677926,12.3762490458892,14.8658661902031,10.9222464344624,16.7554266007928 -"Tfru01016_t",26.9060260740987,30.6184563320362,31.8712208180857,23.0164505272267,31.2473006665209,33.9719046878223 -"Tfru01017_t",10.3556704803017,7.37716310663468,10.0882701002354,7.23041227530566,5.48995126594397,6.58215971946572 -"Tfru01018_t",4.76588344309657,5.25066223714007,3.54083593166529,4.44643694778097,4.93386485363455,4.8543039462434 -"Tfru01019_t",1.05638461856883,1.78513580455287,0.670311067865039,5.63606002321237,8.08466303473038,6.75261411725923 -"Tfru01020_t",0.418378370375734,1.20896722142004,0.216172458070022,7.18386856341098,7.16999062501353,20.2026591062795 -"Tfru01021_t",0.45823841875335,0.429122304653538,0.328844163488336,1.34298213187622,1.18986290702704,0.447018616919111 -"Tfru01022_t",1.87616226040453,0.5019863897046,0.718071622505547,2.0484839115613,2.25539219349625,0.762593794371932 -"Tfru01023_t",0.180861952145204,0,0,0,0.391355459194397,0.0661626047646692 -"Tfru01024_t",0,0.283334054693213,0,0,0,0 -"Tfru01025_t",17.544576189618,15.0439679759916,17.4805400662581,5.57440908371747,5.18274015098496,6.87812857643713 -"Tfru01026_t",8.40103767714474,15.7924918201067,9.14823247072067,19.3420007228472,32.1348279729345,43.0255418784644 -"Tfru01027_t",0,0,0,0,0,0 -"Tfru01028_t",0,0,0,0,0,0 -"Tfru01029_t",0,0,0,0,0,0 -"Tfru01030_t",0.138745461224521,0,0,0,0.180133388071806,0 -"Tfru01031_t",0,0,0,0,0,0 -"Tfru01032_t",2.22351975344452,0.775989701000973,1.91478880005866,2.89996141656071,3.34701239670053,3.25361651555049 -"Tfru01033_t",8.59641064638067,7.21381681577045,8.07580085217867,5.25434869653349,4.05844712474339,5.71767998384909 -"Tfru01034_t",98.7218713212862,59.975421512802,117.15338521178,20.1028661757129,15.6820641202642,14.2757558306426 -"Tfru01035_t",173.73019662445,109.988629542266,208.959713595258,37.9655142934739,35.6509625055836,19.692689070587 -"Tfru01036_t",37.2119582999908,32.0205723209485,41.8983778363544,31.7740557797924,26.4089545008864,25.0385274384753 -"Tfru01037_t",4.73428642579428,3.20402289030976,4.14569016772327e-07,2.11245673189245,1.92832161933565,3.66752842428844 -"Tfru01038_t",0,0,0,0,0,0 -"Tfru01039_t",0,0,0,0,0,0 -"Tfru01040_t",0,0,0,0,0,0 -"Tfru01041_t",0,0,0,0,0,0 -"Tfru01042_t",0,0,0,0,0,0 -"Tfru01043_t",0,0,4.64904784099072,1.37749446978842e-06,1.35077891286004e-06,7.48969670066365e-09 -"Tfru01044_t",5.37997486713703,5.31495606045199,3.920211210058,0,0,0 -"Tfru01045_t",1589.60810949896,1476.09959143796,1618.20344097746,9.7974186668017,30.653875545958,52.1247811272713 -"Tfru01046_t",0.419004372924925,0.168163354157069,0.180413256776643,0.43341069240541,0.181331282589324,0.153279450938598 -"Tfru01047_t",0.214312185641448,0.344048494984615,0.184555397876107,0.221680724049196,1.29846150568427,4.86075728218803 -"Tfru01048_t",0,0,0,0,0,0.279386635574444 -"Tfru01049_t",0,0,0,0,0,0 -"Tfru01050_t",4.58848860696627,5.68932768793387,5.84676745385123,4.36037715474386,5.39219005380075,6.41398270834758 -"Tfru01051_t",19.22271332906,21.1444041154952,27.2829183097526,19.5154183171444,40.6704552966869,36.2018784570615 -"Tfru01052_t",7.77792020608877,6.45602204791751,8.02995584909445,7.63393315052947,5.39329408147448,5.78760952599769 -"Tfru01053_t",0.203908681484096,0.261877689386348,0.105357838787525,0.590574666787371,0.705959653575913,0.596748153654152 -"Tfru01054_t",7.61276550435353,6.5873346803224,6.27678126966811,5.41721584270348,6.35545168849061,5.96479693687856 -"Tfru01055_t",1.52900584619419,1.09093638045678,1.60930814083271,13.7948619624709,17.645422281493,16.2829582148746 -"Tfru01056_t",3.8495320892577,3.27170644287257,2.73002701763902,4.21611641210545,8.42775015010167,8.44937480093063 -"Tfru01057_t",1.53583869783268,0.862951618133258,1.32259078551067,2.06523760467038,3.19036976899389,3.14629191067381 -"Tfru01058_t",0,0,0,0,0,0 -"Tfru01059_t",0.270129828847098,0,0,0,0.935226293483204,0 -"Tfru01060_t",10.1742670830473,12.7166990429954,16.5218590098638,7.81788906404637,8.68037241862286,7.12484257502994 -"Tfru01061_t",51.3045297903945,46.2589782157176,48.1578410506111,42.6641913971307,43.9677838762125,45.3582519803089 -"Tfru01062_t",119.123361297873,108.327215930832,121.832752277752,36.9946297446533,29.1822745490371,19.0119198354317 -"Tfru01063_t",4.53526455578508,3.98707099072145,3.53359538144279,3.35085516043514,1.30847534763042,2.52812585404124 -"Tfru01064_t",4.25949648217167,2.97191344263622,4.03488197478278,3.21973095303902,3.60166077551736,2.51709488368551 -"Tfru01065_t",11.5596422708987,11.6371672256646,12.1186565173244,10.237507602294,10.6912440219526,11.1728939859269 -"Tfru01066_t",10.9079532482289,7.98756779244464,7.58064449772656,4.65176043266786,2.48452771019313,3.78031119661093 -"Tfru01067_t",4.63337346489841,4.5020917718161,3.99003948731856,0.504492562132276,0.949817995449741,3.03310890289817 -"Tfru01068_t",0,0.0421986889968614,0.0452726633087822,0.108759504164311,0.0910060629766196,0.0769274841381448 -"Tfru01069_t",0,0,0,0,0,0 -"Tfru01070_t",0,0,0,0,0,0 -"Tfru01071_t",3.41652757675426,4.32242773876712,3.09802554237059,4.89142428222529,4.01463455029771,5.09651548993544 -"Tfru01072_t",2.14039176487764,3.22134578106614,1.38240221593823,3.04422701305774,1.15786376303056,5.28521215067579 -"Tfru01073_t",5.80525801974464,3.39497409266161,2.92810893846475,6.00485594068107,7.32163091852768,6.67438951717823 -"Tfru01074_t",0,0.285131099437567,0,0.551155457678338,0.768645288777157,0 -"Tfru01075_t",24.3334020824787,30.6718475462716,24.2214731873347,28.0411467416238,27.7882202405911,27.2125044605769 -"Tfru01076_t",1.00611229666404,1.21138032964643,0.866415760089029,9.36634244844985,6.96659586283297,2.57637975320146 -"Tfru01077_t",6.82528670343797,6.2883946748442,8.76530574949835,5.00335978235514,4.85443891775426,4.88507186892793 -"Tfru01078_t",97.9357609254932,71.5515816592432,107.295718337743,133.238576249904,98.2469499568128,54.22599062109 -"Tfru01079_t",0.103376181425079,0.0276593539856376,0.23739365370774,0.285147969900852,0.149126013778341,0.176478842815687 -"Tfru01080_t",12.404960050629,14.8913804750757,11.5409777614496,10.9411200863621,11.2162423009141,16.166485742073 -"Tfru01081_t",34.0214808739663,35.0275549818246,43.5949346758403,48.516957082836,62.5056372325939,59.9383898738867 -"Tfru01082_t",391.931255649221,411.936892572375,430.13917317876,215.247345379718,300.89536414568,267.977373803705 -"Tfru01083_t",3.15038912892928,2.52875643813692,1.67945412067257,0.620706027337747,0.649230752842134,1.31710842485095 -"Tfru01084_t",523.94531355327,493.098519095413,519.45458106681,222.527742935115,306.591955521271,327.96655056612 -"Tfru01085_t",1.75104527614575,1.72496886353253,2.12479127900564,4.48696067132829,5.02900107554457,7.89058797392153 -"Tfru01086_t",0,0,0,0,0,0 -"Tfru01087_t",0.0829322574249234,0.133136238927906,0.142834582364134,0,0.143561390559366,0.121352536675968 -"Tfru01088_t",0.0843760061313499,0.0225756628781334,0,0.058184696235209,0.0730303089906117,0.0823100901591934 -"Tfru01089_t",0,0.177456592149959,0.761533852288778,5.94571036713,6.88867998805128,3.39675330619456 -"Tfru01090_t",0,0,0,0,0,0 -"Tfru01091_t",0.265016961424124,1.06361995294928,1.36931954512493,7.67560765666868,9.863392131507,97.7236282413072 -"Tfru01092_t",0,0,0,0,0,0 -"Tfru01093_t",0.315235935352523,1.265168949662,0.542932202382243,26.0859568712299,24.0105752345669,16.4906258070769 -"Tfru01094_t",4.63465067384382,5.25058366577778,3.68801485029516,6.18972211618927,4.2145594123048,9.6361074937303 -"Tfru01095_t",8.30015185351091,7.87705790045562,8.21392408363878,13.1391810808722,15.5985484809494,13.2525647551415 -"Tfru01096_t",4.16025827462439,5.38606270103711,4.0448882729396,2.6375048445981,2.90390752069964,2.84742289930504 -"Tfru01097_t",3.93084461498611,2.97177035167342,1.84997206227932,0.567348273083469,0.949473484025929,1.43797474022538 -"Tfru01098_t",0,0,0,0,0,0.106802884146616 -"Tfru01099_t",8.80967943402418,9.20128685007496,10.6027833887837,17.0174615201884,17.4822589959576,18.3269161326913 -"Tfru01100_t",0.0566107660184956,0.408963305359071,0.195001929831358,6.55840330771959,7.83976758148992,11.6800181071688 -"Tfru01101_t",17.2717456301984,14.4717531055386,16.7654183982241,12.8506856516453,8.32558850871749,7.53764484795976 -"Tfru01102_t",9.77999063916759,8.21774067941671,7.69118044502588,4.92150014465641,4.76876997883895,4.89129901408566 -"Tfru01103_t",11.2157627525424,14.6293483284601,13.5590173700197,17.6251827018113,22.1221837014655,19.567823924187 -"Tfru01104_t",0,0,0,2.99651184434699,1.88053044912406,137.236641659669 -"Tfru01105_t",0,0,0,0,0,0 -"Tfru01106_t",0.319431090385732,0,0,0,0,0.233707451811322 -"Tfru01107_t",0.605844063255631,0.648399086701775,1.04344782645337,1.04445725753948,0.524378684987878,1.18202038127649 -"Tfru01108_t",9.05786533916615,11.4798526825888,8.71250425585112,11.8348992854309,10.8658140626996,11.3939013801734 -"Tfru01109_t",0,0,0,0,0,0 -"Tfru01110_t",4.9587456433387,5.83158656975982,6.85223665305826,12.5248848344062,11.9276656088389,11.3058586365609 -"Tfru01111_t",2.44690417780915,3.02796078352965,2.89734056665694,4.85114904861055,4.50049279154645,5.96748153654153 -"Tfru01112_t",25.9320793163643,29.9757757010067,27.2711447103414,33.5605065421163,34.3399663068022,34.4484119083824 -"Tfru01113_t",0.741268030336301,0.476001211884597,1.19157649828715,4.54941005919314,3.76401076471299,3.36250033167831 -"Tfru01114_t",7.94160592917589,2.58143886393144,7.23457159674339,1.49357387828145,0.340846145242121,0.384156623914861 -"Tfru01115_t",33.0967846690885,36.037146992925,25.2498741824541,61.3906157937137,50.7567143626469,41.9982466369842 -"Tfru01116_t",0.606573117483375,0.608605640947514,0.261175869918534,0,0.131252426567363,0.443791045677817 -"Tfru01117_t",0,0.315109836527965,0.507096139958649,1.2182080910367,0.849460798111204,0.861659717192211 -"Tfru01118_t",0.631656968206372,0.570396189053441,0.951917315360972,39.6925170113349,26.9943313023835,13.922067122328 -"Tfru01119_t",0,0,0,0,0,0 -"Tfru01120_t",0,0,0,0,0,0.257175982537145 -"Tfru01121_t",1.03893429696033,1.46657089802397,1.51170152767772,3.14985148201245,3.75197235075335,4.40346697263601 -"Tfru01122_t",17.7431484196406,16.6813337965003,18.0653246406428,15.8182259475571,17.7330145420405,13.7704684791885 -"Tfru01123_t",0.629585961753236,0.379017358409281,0.711597206237055,0.936146795329062,1.02174020119418,0.892466910827966 -"Tfru01124_t",52.229575011052,51.7035799116028,53.7823628845122,183.932948344364,161.135648920413,116.883354132311 -"Tfru01125_t",0,0,0,0,0,0 -"Tfru01126_t",0,0,0,0,0,0 -"Tfru01127_t",0.126903892403999,0.101863300629886,0,0.131267135690762,0.109839643985376,0.185695044792682 -"Tfru01128_t",1.35651499241201,1.76468526492109,1.85295263613695,11.4671636899034,13.1581288437938,12.9706334488848 -"Tfru01129_t",9.17866800051313,9.94145205439735,5.80878011417352,4.91581050847778,5.04220088338709,5.14084961563495 -"Tfru01130_t",11.3845837680933,10.2725806708117,9.26295615657799,7.39046241895598,5.30063538021391,4.94018237856868 -"Tfru01131_t",0,0,0,0,0,0 -"Tfru01132_t",18.109078404342,20.5397273950515,20.1374673311414,18.8131517564224,19.4221608535341,16.5327761669826 -"Tfru01133_t",22.3218526220617,19.1033359061935,16.6322437462819,17.2487654833052,15.4379895600451,13.8991341315929 -"Tfru01134_t",0,0,0,0,0,0 -"Tfru01135_t",10.0925217732142,9.68508058633201,8.49698006328922,4.78235247908546,5.46573863332331,6.31151285465489 -"Tfru01136_t",32.7961301116259,28.0416555516174,25.9912473206905,22.7387356549472,23.8608371737624,21.4736489068109 -"Tfru01137_t",0.321058764731646,0.257707662485291,0.460800738646076,1.54978829755667,1.48206561667911,1.25279102830834 -"Tfru01138_t",81.5526263871764,107.42731251376,82.6395877872682,185.006714052504,177.626771293553,119.088553413607 -"Tfru01139_t",3.59723290368374,2.82727451899935,3.09776482286961,4.18602815938748,4.02163991769472,4.49610607115341 -"Tfru01140_t",0.135719510131579,0.163409139782677,0.116875146958698,0.140385854325177,0.176204792370725,0.297892050854819 -"Tfru01141_t",0.392775787502871,0.245212745516308,0.300657520903621,3.92737631842793,2.15308526033464,0.798247530212697 -"Tfru01142_t",0,0,0,0.377821060118629,0,0 -"Tfru01143_t",0.545521927087321,0,0,0,0,0 -"Tfru01144_t",0.7064642755833,1.46491846918467,0.608373224673586,9.92607676513482,16.7644392296615,25.1545865021756 -"Tfru01145_t",0.563828032023105,0.452573859174368,0.971083435804427,1.16642743392322,0,0 -"Tfru01146_t",1.1700609578196,1.50269649062918,0.604560300563515,0.484116121600472,0.607636582047234,0.171211865811637 -"Tfru01147_t",33.1760723556035,30.2806503420217,26.7264428414724,15.2211350652887,15.9785199298217,16.8343794428933 -"Tfru01148_t",49.8018348630739,46.0876473137664,50.0694811227852,33.6342287619274,33.689004130214,35.110257195787 -"Tfru01149_t",5.44735872437339,5.87856924139419,5.42071647018237,3.63121969883466,2.77653728304821,4.69401753717294 -"Tfru01150_t",0.526161023620756,0.140779759951951,0.453104692906684,0.952440355100719,0.68311544766688,1.12279597803926 -"Tfru01151_t",8.53786239501355,17.1768732649127,8.57779824499868,16.5872060204524,24.3011088829301,33.7156875399414 -"Tfru01152_t",27.5817200846017,51.789101328487,24.4000478192194,22.7650223125379,27.8152356277907,23.6924019030062 -"Tfru01153_t",20.465537586063,19.987766970266,20.6767294397489,10.6046777022328,16.8784332255627,13.4795176445681 -"Tfru01154_t",6.00074119796053,4.81667892978461,3.75821901129527,3.66780834335942,4.24951038223943,8.5811609497865 -"Tfru01155_t",2.89690954384302,3.25541058702684,1.9957438887568,1.49825592805663,3.7610609130165,4.23896964319846 -"Tfru01156_t",1.38099249487311,2.21699194576388,3.36952649711336,3.80926438694946,1.99216011831011,2.35756393854599 -"Tfru01157_t",6.46233667472672,5.81806748067538,7.14432746040148,6.68452644825266,8.8435756603361,7.47548024915405 -"Tfru01158_t",0,0,0,0,0.0920428409092646,0.0778038731979465 -"Tfru01159_t",0,0,0,0,0,0 -"Tfru01160_t",0,0,0,1.62988946961343,2.22520155367018,0.606762683379839 -"Tfru01161_t",0,0,0.164422081744168,3.94994744669476,2.9746572675676,1.67631981344666 -"Tfru01162_t",0,0,0,0.180288057732956,0.377146495426966,0.0956406532568118 -"Tfru01163_t",0,0.0436745498814667,0.0468560336576644,0.112563269206327,0.282566752532328,0.0398089765714882 -"Tfru01164_t",204.978624067085,194.517187228985,219.677655166917,310.071124708416,288.32502254189,280.970266771954 -"Tfru01165_t",339.589806749194,360.046873330554,342.955080756199,365.083907165227,362.952663767134,424.512866860213 -"Tfru01166_t",0,0,0,0.443361448098391,0.741978003248154,0.470395866018197 -"Tfru01167_t",0,0.0595176566787154,0,1.38056415612632,1.47609745747691,1.62749496451133 -"Tfru01168_t",0,0,0,0,0,0 -"Tfru01169_t",0,0,0,0,0,0 -"Tfru01170_t",0,0,0,0,0,0 -"Tfru01171_t",0,0,0,0,0,0 -"Tfru01172_t",12.0745730317062,12.6283817251661,12.0943355865168,12.3044952435102,11.5580471175891,12.8208178992292 -"Tfru01173_t",0,0.741027527659172,1.590015735548,2.38733087437595,2.39715970280173,1.35088043574457 -"Tfru01174_t",0,0,0,0,0,0 -"Tfru01175_t",0.715997529302109,1.34100720204231,1.23316561308126,0.493743430836845,0.723006974756013,0.436541618085069 -"Tfru01176_t",0,0,0,0,0,0 -"Tfru01177_t",4.57800332310947,4.96403430813366,4.21901402869356,7.14464681562761,7.50773918391822,10.0483032794556 -"Tfru01178_t",6.59245083596283,10.0610650231846,6.6855359618847,6.01158754406615,4.54226905653929,4.3472964358357 -"Tfru01179_t",10.9063657940535,9.87309301990691,12.0926269327565,9.0106640219084,8.47473672892893,8.03048272306469 -"Tfru01180_t",0.941089959525047,0.377697356837914,0.93510188669669,2.8829000321848,2.06769225549722,0.95335723987488 -"Tfru01181_t",0.157617967676262,0,0,0.163037230445187,0,0 -"Tfru01182_t",9.16349655042432,9.12401712344712,9.54770689495276,7.12700759116364,7.0534245321267,7.21613108702686 -"Tfru01183_t",23.7281216827204,20.590383210583,22.6425523249046,25.8706481614293,15.5418903881124,11.2607743189481 -"Tfru01184_t",35.1250282190966,53.4817453582981,37.42019791419,56.5591612841378,41.9985135286843,21.8571872227421 -"Tfru01185_t",11.0454057542771,11.792128467996,9.93347913542486,17.0533352847586,18.084272162069,24.2436667320363 -"Tfru01186_t",3.28289167653366,2.72000692505484,3.40450428082042,2.62887258637164,2.93299540107505,3.04742733592965 -"Tfru01187_t",8.73120946358275,7.71509970063317,8.34029214646399,10.852868705067,11.240480737417,13.3666374644262 -"Tfru01188_t",0,0,0,0,0,0 -"Tfru01189_t",0,0,0,0,0,0 -"Tfru01190_t",2.96373106656395,3.93438360343329,4.22098478507416,5.65962619227905,7.00499721384078,6.25492467703979 -"Tfru01191_t",7.23388917207109,8.73415151811884,8.00933034950607,3.64698476265015,3.73566059811914,2.93537912340154 -"Tfru01192_t",0,0,0,0.139484500525337,0,0.0986598071049401 -"Tfru01193_t",0,0,0,0,0,0 -"Tfru01194_t",0,0,0,0,0,0 -"Tfru01195_t",0.390745938471849,1.88186525628794,1.00947510652233,0.404180668964115,1.69101963530975,4.00237598869436 -"Tfru01196_t",1.73504742732844,2.22581548922003,2.24120971464667,5.04760018543143,4.21024287589013,6.06376673559138 -"Tfru01197_t",9.01669364079009,8.40486848451741,11.2714041034086,13.6390568499835,24.7973929556414,31.9561563205807 -"Tfru01198_t",2.62727909486284,3.96667676570498,2.0470120675819,2.58820085859373,3.68171363637058,4.02749461259958 -"Tfru01199_t",6.91224619005579,5.97512069770749,8.24191700894816,7.69989755431635,14.266640340936,10.5035228817228 -"Tfru01200_t",6.39402444772116,3.84926984240715,14.530323502973,3.30693274607003,4.45814267490751,10.0059399717359 -"Tfru01201_t",1.81690825149371,0.625027337953513,0.819570417756718,0.536965049396197,0.0748855245296798,1.20271486786939 -"Tfru01202_t",0,0.756906688966154,0.516755114053099,4.52228677060359,3.04210981331743,2.32061960568977 -"Tfru01203_t",17.2346307938207,17.4686955876662,17.6353595640647,15.6599686382235,14.9171603388346,18.345564920021 -"Tfru01204_t",0,0,0,0,0,0 -"Tfru01205_t",0,0,0,0,0,0 -"Tfru01206_t",0,0,0,0,0,0 -"Tfru01207_t",0,0,0,0,0,0 -"Tfru01208_t",13.8503594136711,13.3044482871348,15.4467880038575,24.1907592275954,32.033396280773,27.5762160302127 -"Tfru01209_t",2.74319597621053,2.75238795987692,3.24817500261948,3.54689158478713,0.296791201299262,2.00702236167764 -"Tfru01210_t",18.7802630636619,16.6071336871188,15.9300738214432,15.8645430236101,12.0557603284843,12.0456860911605 -"Tfru01211_t",43.3422235598051,37.2494096015571,43.4649991157129,53.70671249803,52.5584153229229,44.9575338119991 -"Tfru01212_t",24.811354797785,26.3794281284059,28.1136201945987,26.5649315326932,32.2126097886854,20.06372419203 -"Tfru01213_t",17.9411991071227,15.0868180715966,18.760838208504,21.6510678688319,22.8001037269306,14.7932855853316 -"Tfru01214_t",0,0,0,0,0,0 -"Tfru01215_t",6.72256499719894,6.23159390709357,5.34095889692465,5.38351123349208,4.5798084702297,4.12517180042803 -"Tfru01216_t",5.57649398050849,6.70097280805071,4.12023912618928,2.86704747898347,2.91312337803164,3.88683214141666 -"Tfru01217_t",7.57532703078877,7.60071066467365,8.28485656254653,16.0633570645567,19.3422759908964,15.851223724386 -"Tfru01218_t",0,0,0,0,0,0 -"Tfru01219_t",13.9773471279029,16.7571677090769,18.2307569312054,22.6021666720346,31.038825713627,26.4240994549694 -"Tfru01220_t",0,0,0,0,0,0.41251718004278 -"Tfru01221_t",0,0,0,0,0,0 -"Tfru01222_t",32.9167329914877,19.9488575030576,29.4847213777583,9.23001094939687,36.6715768749351,63.0609268399658 -"Tfru01223_t",13.7396954687233,4.60896210042856,22.3100295782404,1.83838074817689,2.01161164102754,1.65040437288077 -"Tfru01224_t",122.383187447541,66.3121052661478,129.853341631126,22.254581955768,19.5892063961769,18.4667751806523 -"Tfru01225_t",12.9710815122881,11.3801606312326,12.339035936995,15.2892041204199,15.1432781704219,18.6491833225455 -"Tfru01226_t",8.82599289038553,7.34684101352361,9.28952773122692,8.45319492483314,10.1855968694922,15.0673103854545 -"Tfru01227_t",22.4757220420606,19.0543571290477,19.717469682507,14.3670433181382,13.8433170545898,9.05347073594942 -"Tfru01228_t",6.37881697618421,5.74407885296682,4.61125579818862,2.92257824004232,1.81544331533474,3.57470461025783 -"Tfru01229_t",3.05586450648298,3.03492346870522,1.78411136787753,0.857201911983079,0.851765130732467,1.85683596269575 -"Tfru01230_t",10.4445333283421,11.6641738407757,8.21221640711412,97.2327603905294,109.660338188168,120.936658252981 -"Tfru01231_t",3.6685754048667,2.65022508800376,4.10696204181939,2.27682560246161,4.28662401003191,3.08667331005827 -"Tfru01232_t",1.25388622045366,2.51617556030374,1.61968020820585,7.13348717976239,4.34112503387513,8.25650057358913 -"Tfru01233_t",28.5992771987906,25.6206326052373,25.947703599262,28.7901944594955,35.1413411751147,20.9242756855754 -"Tfru01234_t",17.7440430729785,16.2649262426886,14.4314140065416,20.5067675785378,17.1593296240101,19.9541067754473 -"Tfru01235_t",0,0,0,0,0,0 -"Tfru01236_t",10.0173309537278,11.9377528998612,11.8018249164139,7.31043675211246,7.44691894993758,5.71036034963421 -"Tfru01237_t",75.8556235864665,69.3225217699034,76.9645304070486,57.177740889614,65.6556275082672,66.5904850105968 -"Tfru01238_t",8.52598749386518,10.0884771285253,10.4436072918868,11.0999398064598,13.6139656029049,14.8419567034823 -"Tfru01239_t",5.5709798920058,4.29284912574968,5.18125817273399,3.45751368013069,3.66462345370839,4.72808152510598 -"Tfru01240_t",2.24226984265429,1.7998266463608,1.99529999554311,1.70086705000023,0.711612355428389,1.03900012162026 -"Tfru01241_t",0.683706016451251,0.823196398986587,0.73596862632181,0.530410033533782,0.147942714788035,0.250112145783836 -"Tfru01242_t",5.42002430783532,5.47569061873178,5.9550422487098,2.80318851055757,3.96326848898513,2.46133721217975 -"Tfru01243_t",0,0,0,0,0,0.0977186960673732 -"Tfru01244_t",0,0,0,0,0,0 -"Tfru01245_t",3.26253890374553,3.02796078352965,3.68752435756338,0.738218333484214,0.882449566969891,1.1934963073083 -"Tfru01246_t",34.0386870064972,20.9276394058541,24.9467985115025,22.4738388326024,20.6858349403646,19.6052345228099 -"Tfru01247_t",11.6869274137699,10.9443491005388,13.4918925947331,22.4255080844606,22.7230763494747,23.1113581806844 -"Tfru01248_t",0.237989735896452,0.192001186107976,0.2054781418689,0.492881100789287,1.02994113765324,0 -"Tfru01249_t",0,0,0.356382837278,14.5544861582644,3.94015905173158,4.23896964319847 -"Tfru01250_t",0,0.321878305570332,0.345325613209708,12.6511443280772,9.54477670049534,2.93389307047149 -"Tfru01251_t",0,0,0,0,0,0 -"Tfru01252_t",0,0,0,0,0,0 -"Tfru01253_t",7.1085703421994,8.50699601752729,7.01196939376667,1.47059581861559,1.5661443391638,5.86282109113141 -"Tfru01254_t",25.9705813999825,31.1866209988828,37.7661160025756,14.6012739220397,13.3447104173098,21.7584306400065 -"Tfru01255_t",60.5613265517248,63.7283673786887,58.5125790681663,56.1500221653224,72.7138443183191,59.9790913470587 -"Tfru01256_t",19.2864289086202,14.4968916427564,19.8458092439848,23.1617540940428,16.4808616013311,18.1764379253101 -"Tfru01257_t",0,0.227815895327651,0,0,0,0 -"Tfru01258_t",0.0615911853163104,0.0494380535315136,0,0.318544148926996,0.159927810084279,0 -"Tfru01259_t",0,0,0,0,0.175214082694745,0.074054288947443 -"Tfru01260_t",3.45543966155054,1.38680730112051,1.4878296342917,1.56373240820307,1.30847534763042,2.21211012228609 -"Tfru01261_t",5.62668969092586,4.82945526646839,4.98935972189199,4.37951732816554,4.91831042471389,3.62757979081407 -"Tfru01262_t",0.501929062114697,0.65469422346587,0.594326270083475,3.53695816922107,3.25827532419652,4.31494818796079 -"Tfru01263_t",0.321058764731646,0.601317879132347,1.10592177275058,1.99258495400143,3.70516404169779,1.33109046757761 -"Tfru01264_t",28.344370597671,23.3378565189216,29.1899236599038,11.4857602276063,12.5194271087193,12.6136992339349 -"Tfru01265_t",117.01445336023,126.919489799825,131.643365305027,95.899081223682,90.1132284944883,113.710360678799 -"Tfru01266_t",1.5107998181186,0.841677258875993,1.24578705824736,1.2073901302848,1.31930885079149,1.32280346914079 -"Tfru01267_t",21.1498086381389,11.5015090332707,29.3270600942752,34.5666545831664,31.5149956099257,15.5457773976761 -"Tfru01268_t",0.0680797218569266,0,0.0293134991764319,1.09151708210933,1.09011841157934,0.747144163205564 -"Tfru01269_t",0.963790173286204,1.2893595605542,0.691641644048125,2.07693221384524,1.94645089953435,2.17419427684128 -"Tfru01270_t",6.52114808986075,5.84808769419245,7.08740151072827,5.58236684115319,5.488571760644,5.65952370992343 -"Tfru01271_t",0,0.190624749164621,0.153383143393853,0,0.154163627530005,0.0868764096485904 -"Tfru01272_t",0,0,0,0,0,0 -"Tfru01273_t",1.28587311384869,1.37619397993846,0.922776989380535,0,0,0 -"Tfru01274_t",0,0,0,0,0,0 -"Tfru01275_t",1439.08159825321,2200.50440049415,1668.64698247002,7.72898370579214,11.5363310697333,37.8246522008478 -"Tfru01276_t",25.5190633394464,40.6421799764854,25.6035465381372,45.4186821160928,36.0413847440849,31.1177978870283 -"Tfru01277_t",5.74549699354353,5.28669680700296,9.05075679325695,9.49436909205529,11.2800459075958,14.3025451972972 -"Tfru01278_t",27.9271552210261,32.6142973855988,31.0475484056426,41.9103415733771,48.5419396675427,46.8105837097345 -"Tfru01279_t",4.40469940528196,4.2514844107263,3.72759951122687,5.5150513227769,4.79736064154329,5.02638430537079 -"Tfru01280_t",2.58905518211687,2.86646142473898,3.075269541655,6.0949242216799,5.48637932688698,5.02955324827958 -"Tfru01281_t",125.322083273445,149.816890863206,110.651407558681,87.6161691890665,127.592217388749,173.812751726007 -"Tfru01282_t",0.189782477646342,0.152334725188971,0.16343158727583,2.87917856054256,1.75214082694745,0.647975028290126 -"Tfru01283_t",154.911442002735,117.082349370149,143.737422493539,80.9782632588323,91.2518793533191,74.4335120095255 -"Tfru01284_t",3.26927173756812,2.9422637802222,5.71599406818169,1.22970062019742,3.85863560651457,2.5368833654755 -"Tfru01285_t",0,0,0,0,0,0 -"Tfru01286_t",12.3770176990529,12.7481854334586,11.8846938877401,30.4769087216944,31.5693743911346,29.089721925652 -"Tfru01287_t",23.6356445537092,30.7796840145212,21.2268036549534,10.2294106918522,9.41556547971171,13.367474753294 -"Tfru01288_t",4.0858274069563,1.77456592149959,3.04613540915511,1.82944934373231,3.63569221591595,2.91150283388105 -"Tfru01289_t",4.55448676143356,5.95777769568241,5.59244814774684,5.37267829451909,5.50355128875628,4.9307782543366 -"Tfru01290_t",13.5657917108511,13.0952664096308,13.4383599052964,10.2719477663914,11.3195694321394,12.2930119652755 -"Tfru01291_t",0.295984885865346,0.554356471073273,0.169925345783756,0.714376872332346,1.1101350277606,0.974490085327186 -"Tfru01292_t",14.7163004827225,22.5785977143076,15.0678663601138,14.2034661979769,19.2817056140646,26.0272736092386 -"Tfru01293_t",22.6445706350109,17.5468747010357,21.9485252643323,26.8707043339912,33.175161176736,30.4097845582079 -"Tfru01294_t",19.202371833444,13.0050331103984,16.0194085356213,16.7590627380933,24.4110763068265,28.9763853466761 -"Tfru01295_t",0,0,0,0,2.92807426785161,0 -"Tfru01296_t",0.112223319224482,0.108095386081194,0.173954433263934,0.789356315823585,0.699358374421449,0.558325416536693 -"Tfru01297_t",0,0.058893890844528,0,0.683047680738482,0.762066490672339,0.536812749575351 -"Tfru01298_t",0,0.299172604334448,0.0641931818699502,0,0.0645198263694047,0.163615953397634 -"Tfru01299_t",2.9738186467769,2.38702672626494,3.681308555865,1.53803263411123,2.41307005481147,1.90378503887011 -"Tfru01300_t",73.0525015403891,76.3464552453165,72.8489905132943,64.2295802201669,64.3675595791729,48.6375690800032 -"Tfru01301_t",0.297206521597102,0.954247712504499,0.767820098710973,0.512375258415593,0.685979663380368,1.66709478302675 -"Tfru01302_t",5.63882879107964,5.57572755490631,6.82639537825009,34.2354394455742,38.8325880649389,27.8625660302451 -"Tfru01303_t",0,0,0,0,0,0 -"Tfru01304_t",1.27610698893338,1.70717734220214,2.74730566964939,26.1796516846756,18.9608252273085,16.8056366107564 -"Tfru01305_t",6.96860268150255,3.57366501242084,6.16772232902086,3.20364401206579,3.01578156158927,2.40761755080281 -"Tfru01306_t",0,0,0,0,1.03876920454581,0 -"Tfru01307_t",0.395342949512694,0.158667070628199,0.170225214041021,0,0.34218279679209,0 -"Tfru01308_t",12.6338327307226,15.248410574642,14.3738469704781,14.1174850564634,12.770817882471,9.2433734316287 -"Tfru01309_t",0.0672083014171579,0.107893608027175,0,4.58825895408063,2.67586947091414,1.08178505294425 -"Tfru01310_t",1.08680953132532,1.04683319560649,1.68463504193248,1.79868240780925,0.846603620782499,0.71563459047529 -"Tfru01311_t",0.103844717888069,0.0833541471161738,0,35.4469943918466,44.7608089870493,32.6699329114245 -"Tfru01312_t",0.195372969235924,0.0784110523453309,0.672983404348222,66.7908555463199,81.4225954401642,51.6735328540361 -"Tfru01313_t",3.01769153252152,2.98454897124563,3.06274358810176,3.34440707481532,4.24436166322452,4.33685476645385 -"Tfru01314_t",0.0441230970438274,0.106250270509955,0.113990098688184,0.136920447206856,0.305520354278651,0.161410346182715 -"Tfru01315_t",135.930952973544,113.1609461873,150.280371365828,100.325274633217,119.837408661951,101.034840830484 -"Tfru01316_t",0,0,0,0,0,0 -"Tfru01317_t",0,0,0,0,0,0 -"Tfru01318_t",37.3846176632941,32.0309148830677,36.172857983717,40.6206358658962,48.7182756932738,37.3617685590857 -"Tfru01319_t",21.797923846729,20.9015492408886,20.8006616736661,12.187776132859,14.2776131901328,13.7930008025532 -"Tfru01320_t",0.106342249077782,0,0.0457884278274898,0.0549992682451169,0.138064261363897,0.0778038731979465 -"Tfru01321_t",0,0,0,0,0,0 -"Tfru01322_t",0.721119113918004,0.578828369244503,0,0.3729564112759,0.93622975517149,0 -"Tfru01323_t",8.84754952218984,11.6150230098153,10.8945812431273,17.5337234100328,17.9637548463564,20.1455363407321 -"Tfru01324_t",4.74337133590356,5.58420493239772,4.26630947361279,2.39871338042693,3.37567407751293,3.00770054357432 -"Tfru01325_t",5.56360111069188,8.26172081333917,5.74932842125303,12.0852696713442,9.39019843845842,8.14106752667255 -"Tfru01326_t",2.21079938872226,2.66184888224934,0.951917315360955,2.85851459958168,1.43514166417732,2.83062775516208 -"Tfru01327_t",6.94423488479861,5.67627835456417,5.52285293785769,9.51142552507944,9.22708540136404,7.81519845618503 -"Tfru01328_t",3.07891433193787,5.6488800014228,3.0301870562276,3.18477438110467,1.14210226677988,2.8962593635466 -"Tfru01329_t",8.40755516176627,9.57356975803583,8.41881877045391,16.2471849203845,17.3181925568068,18.2630860461619 -"Tfru01330_t",4.05932492803212,2.2666724375457,3.79966995627279,1.82560596275808,2.13864247995056,2.84082209281578 -"Tfru01331_t",0,0,0,0,0,0 -"Tfru01332_t",6.44767730986912,6.50115076723292,5.2515604785434,11.8602958872022,14.2128761862272,14.5238799211668 -"Tfru01333_t",5.56535618990661,3.61630784002757,3.42329886281233,9.32038072595482,6.42267394609758,11.0520770034812 -"Tfru01334_t",0,0,0,0,0,0 -"Tfru01335_t",0.0983728065239431,0.1579238993372,0.169427906246918,0.101755086448811,0.170290033532363,0.215919413909992 -"Tfru01336_t",0,0,0,0,0,0 -"Tfru01337_t",3.43979495442147,2.97344589051271,4.32934993190943,1.50533430251989,2.06117983894448,1.64552128669043 -"Tfru01338_t",0,0,0,0,0,0 -"Tfru01339_t",12.631227183598,11.2615994755913,11.2424220575023,9.7333720129451,8.43803440626306,10.3268743300625 -"Tfru01340_t",6.41687299962815,3.38861834256204,7.85260032611343,8.82088766488015,11.1080445591804,10.0073765747469 -"Tfru01341_t",0,0,0,0.602070511505436,0.335860712786693,0.425854917965665 -"Tfru01342_t",0,0,0,0,0,0 -"Tfru01343_t",0,0.059570234113944,0,1.61208102506447,1.09199236167087,1.08595512060738 -"Tfru01344_t",18.2631253850973,19.5903660820094,22.4471885511603,17.6888950873722,19.9747517000916,13.7263868782227 -"Tfru01345_t",6.47720971655579,5.12153202660642,6.16062483497136,28.9996141656071,35.4783314050256,23.5533543408329 -"Tfru01346_t",3.76553466208961,3.33519653870712,4.91995595450864,4.163623120009,6.06885253970515,11.2100109111477 -"Tfru01347_t",0,0,0,0,0,0 -"Tfru01348_t",15.3731363131698,16.3026056085018,16.1766818312275,13.7842408746577,10.9782966099325,13.0682998675289 -"Tfru01349_t",29.0914311455181,38.8995641271963,29.2682415104737,15.1926188110202,24.5654879453781,22.1149624037474 -"Tfru01350_t",51.3107423543718,51.0426530634272,45.6970003631165,28.5504521155222,30.5326974348048,39.4058213895048 -"Tfru01351_t",10.3917455618929,7.13528890641715,8.30196740609897,9.58347905099711,9.9697074177129,8.8854110330233 -"Tfru01352_t",0,0,0.106862209700789,0,0,0 -"Tfru01353_t",15.422041156,15.0079110333032,12.8699797519659,13.9130245794631,12.4400672338684,12.4232936969287 -"Tfru01354_t",0,0,0,0,0,0 -"Tfru01355_t",9.80264375838793,4.7624481537072,9.62634910518568,6.31506439277094,5.28422000675604,4.59257867689414 -"Tfru01356_t",0.385368700786456,0.309328004665067,0.0829652706048554,3.58756694699799,3.83582206266362,3.9472974200426 -"Tfru01357_t",4.39658265989187,5.15050816254196,4.70707628642427,3.31862628477608,3.18830151890791,4.43383034108241 -"Tfru01358_t",1.0436071648627,0,0.449352273089652,2.69872185799021,1.80655513834333,0.763541115855624 -"Tfru01359_t",1.01217321411382,1.4217907684304,1.30745269820664,3.66440907705417,3.94231686063176,3.98041803092506 -"Tfru01360_t",12.3126820521851,16.7253338260841,17.617446052949,15.2832239425664,19.8385009301389,18.6404747387775 -"Tfru01361_t",0.0930605115164192,0.149395746368285,0.240417776684909,7.74894148778334,5.75911367350851,3.65964770497679 -"Tfru01362_t",129.003381904273,88.0303496456034,82.6375751427174,0.727186977634181,0.912726079309444,0.514351965074291 -"Tfru01363_t",6.35324928994066,5.96474622364955,6.15500351917399,5.69155155384646,5.64624719554807,6.39137016425535 -"Tfru01364_t",1.96173350101291,1.62989627038185,1.45224911200502,1.7087851305652,1.37027318256562,1.91370116624527 -"Tfru01365_t",0,0,0,0,0,0 -"Tfru01366_t",0.117950686937799,0.0710075517904366,0.025393371697941,0.488024394958425,0.408361358053038,0.388336636319691 -"Tfru01367_t",0.289690954384302,0.465058655289549,0.498935972189199,0.300980236911057,0.5014747884022,0.211948482159923 -"Tfru01368_t",0,0,0,0,0,0 -"Tfru01369_t",20.4710148857472,22.4889902587661,19.7506091904673,21.778618428178,21.6878513326599,24.1894751574777 -"Tfru01370_t",0,0,0,0,0,0 -"Tfru01371_t",0.66780903633901,0.214414960308377,0.69010221908522,0.828923788495561,0.231204592427088,0.390874784269493 -"Tfru01372_t",5.80708448245723,6.04343012690376,5.01655858649018,9.49331023930868,9.11697786372295,13.2285246508144 -"Tfru01373_t",28.9084297426217,37.024193377659,29.8683993619197,16.1587309715838,16.9881118042979,15.087346612392 -"Tfru01374_t",26.2078480850409,23.7571930499319,28.4587614684574,33.1192279428196,32.3230849743536,28.2969547759765 -"Tfru01375_t",0,0,0.41105520436042,0.493743430836845,2.89202789902406,2.44463306127639 -"Tfru01376_t",0.0904309760726022,0.0725871959278628,0,0.467700989382587,1.09579528574431,0.727788652411361 -"Tfru01377_t",388.547947085212,475.276474917381,421.552872540932,480.450282227504,569.824770984152,523.634967609708 -"Tfru01378_t",873.044006630939,830.518426531373,853.415573463863,643.421226636065,446.449743231017,287.895614566712 -"Tfru01379_t",54.5084049955211,48.2634450623234,53.4729204976685,61.9045275425138,63.4726199567936,61.8761973503 -"Tfru01380_t",2202.62112973219,2642.78642109923,2040.21272109698,3075.51319723305,2506.75191510552,1464.97348409455 -"Tfru01381_t",0,0,0,0,0,0 -"Tfru01382_t",0.177611790214477,0.855393298312701,0.764753868577525,0.367436971785559,0.461187173266294,0.259894544720413 -"Tfru01383_t",0,0,0,0,0,0 -"Tfru01384_t",2.59062835859089,2.8008881882448,2.23092516199135,1.25781838138927,1.37282273728733,1.54726393521404 -"Tfru01385_t",0.618481301384889,0.248221490860066,0.976445246186224,0.533121741271685,0.713755527050984,0.301669005282835 -"Tfru01386_t",18.230527979525,17.2622171133192,19.1653282318613,23.5920769056696,20.1508539914553,23.4138861057737 -"Tfru01387_t",4.02361837551111,2.72852332438666,2.21039759768378,1.43515844471155,1.68124495533686,2.7915592819577 -"Tfru01388_t",4.22235862456148,4.96693927768084,4.3883883169154,3.76511455057559,3.9066363498577,4.04795887938016 -"Tfru01389_t",19.598821830357,18.1151703708866,20.7831202040122,22.6182723329372,23.2721686828553,16.7093318165538 -"Tfru01390_t",0,0,0,0,0,0 -"Tfru01391_t",4.00783448817914,5.69163528583723,5.04428845277521,13.8719255283922,7.07125458508424,6.0901160194943 -"Tfru01392_t",2.23601763270012,2.88451304730447,1.85678168357482,6.11265631484702,3.59422044158991,3.62246550307549 -"Tfru01393_t",0,0,0,0,0,0 -"Tfru01394_t",0,0,0,0,0,0 -"Tfru01395_t",0,0,0,0,0,0 -"Tfru01396_t",0,0,0,0,0,0 -"Tfru01397_t",14.5315246307369,14.2157118684454,14.8602011176351,16.440321805162,16.9010557064201,16.2799347648244 -"Tfru01398_t",7.86304019043105,6.64369507556499,7.84042242011599,10.7018280575474,5.73114043888229,7.26680510262594 -"Tfru01399_t",0.232064042418692,0.270561634007199,0.361141350324622,1.44875441188876,1.56442759246866,1.99525666027774 -"Tfru01400_t",21.0102949320166,18.6603404619447,16.8113455382821,12.7974544353721,14.1627915299339,18.9067108017005 -"Tfru01401_t",0.743454654646386,1.19351335181814,0,0,0,0 -"Tfru01402_t",39.9489903528351,46.2131712703568,36.9317291302091,25.5227373478604,24.4074442466957,26.2193611846648 -"Tfru01403_t",0,0,0,0,0,0 -"Tfru01404_t",0,0,0,0,0,0.0412517180042803 -"Tfru01405_t",0.542002430783532,0.186452087604566,0.200034237697974,0,0,0.339898948348632 -"Tfru01406_t",0,0,0,0,0,0 -"Tfru01407_t",19.6912756199196,16.6340580441078,18.1419656213115,12.0964613720683,8.55894789826683,8.17856476707175 -"Tfru01408_t",13.4602261125524,14.716151647353,12.1908526906449,11.7625506838037,6.02600919765075,6.79171931783179 -"Tfru01409_t",0,0,0,0,0,0 -"Tfru01410_t",6.92869086774824,6.95190773370975,4.51886521809927,3.42536376517495,1.89611601315204,3.39194690369944 -"Tfru01411_t",0,0,0,0,0,0 -"Tfru01412_t",2.10025941928619,1.68583762542461,1.97306498093002,2.56746584035159,2.31362231921924,4.74957280476555 -"Tfru01413_t",0,0,0.166695198081645,0,0,0 -"Tfru01414_t",0,0,0,0,0,0 -"Tfru01415_t",643.9148290188,574.771463350651,748.139815710288,526.504759659431,342.18279679209,147.516143583307 -"Tfru01416_t",18.6108396940306,25.0175903844151,16.6060451241975,19.3280346590936,37.7801468700163,34.5057408811782 -"Tfru01417_t",6.66440163155084,9.29309449568172,8.46197720059157,6.28972523359038,5.05249642049698,8.36380374012667 -"Tfru01418_t",260.26330291255,302.264756156534,388.267460568942,234.495875051517,430.071330465636,436.12394208465 -"Tfru01419_t",6.12951246830303,5.74693880892756,7.85112920063507,7.40584873819286,5.79570800820446,6.29347945493874 -"Tfru01420_t",5.31290920293739,5.33071185905017,6.43390754651092,7.55642120237258,7.04145923240639,6.19509496273767 -"Tfru01421_t",1.88210620058233,2.19742582540072,1.84179521302021,1.90257142799045,1.51795703515839,1.53349691012857 -"Tfru01422_t",0,0,0,0,0,0 -"Tfru01423_t",0,0,0,0,0,0 -"Tfru01424_t",0,0,0,0,0,0.169792982945795 -"Tfru01425_t",17.6828831171037,22.8706168723212,16.4343723325545,56.5291128630231,71.6164948012038,39.4469962984219 -"Tfru01426_t",17.2783987801198,17.9547798238664,15.0804021610827,11.448041126774,10.6706252918489,11.0015282179509 -"Tfru01427_t",16.7689786858306,18.2863017544417,14.3456377033257,13.5797274004555,14.2276596236763,16.1027963694844 -"Tfru01428_t",7.4369841732101,8.18045798566699,9.40597290760921,12.5362266504935,9.53624187781234,5.78026636025778 -"Tfru01429_t",382.367955396217,326.965784537724,476.868811603797,1213.09997188543,1372.98258840687,886.733450082205 -"Tfru01430_t",6.98209565660823,8.4969832058935,6.9048458135138,10.8565311591192,11.9305288801103,11.2713407295556 -"Tfru01431_t",0.0578982610416592,0.0929476292446376,0.049859211555778,1.31755655699536,1.25282295517435,1.22845398688143 -"Tfru01432_t",0.371492506254032,0.0425985502318285,0.0914033050757219,0.164685111485694,0.367473628898643,0.232969272873194 -"Tfru01433_t",0,0,0,0,0.0452481918595638,0 -"Tfru01434_t",5.29727952999358,7.66562046374247,6.23226860465461,5.01636309837789,3.90691614676581,4.94013136259963 -"Tfru01435_t",0.29843828337992,0.598876598729881,0.128500383601126,1.38914670416618,1.54985103342776,1.4192642588684 -"Tfru01436_t",0.495149568397529,0.397446984383013,0.710665186320569,1.3657971524917,2.42855668646645,2.29437354951115 -"Tfru01437_t",0.264599611878575,0.318583488269218,0.256343088073585,0.752667151259946,1.34549239486653,0.774362958442554 -"Tfru01438_t",6.01445195469616,7.49831815116508,5.34465685364896,3.97100581084317,5.53799271274326,6.78783981327096 -"Tfru01439_t",5.16419440087931,3.92313475949526,4.36774355456516,5.43713951498927,7.58267311771714,7.35421681786517 -"Tfru01440_t",4.80842852902953,4.88691124497407,4.61312182338588,5.01157641223731,5.3328760686123,4.38749502133882 -"Tfru01441_t",15.8186507986165,22.9775690870034,17.8566558467713,161.890495805277,91.948041794535,28.7245969243054 -"Tfru01442_t",32.6222112398218,44.8389020372677,29.5020192386679,325.81423653165,180.93470871935,65.0571737123348 -"Tfru01443_t",12.8857175356071,12.4659393065558,13.180197416706,14.5510455169599,14.6596564901635,9.30415507083815 -"Tfru01444_t",6.85140135070301,12.7553555604288,6.64147264432036,2.67152722270047,4.90554543223502,4.93400138657515 -"Tfru01445_t",0,0,0,0,0,0 -"Tfru01446_t",15.5236565773327,15.6624731332355,15.8514926862284,20.3824519274523,20.0087866802697,20.078117368914 -"Tfru01447_t",0,0,0,0,0,0 -"Tfru01448_t",6.75652499072339,7.57219934940343,4.83036646823534,17.2742769975331,18.7577443613266,16.1357440818867 -"Tfru01449_t",0.459910821741501,0.246107682543739,0.13201772986758,0.317149065063083,0.132689496931239,0.112162517931346 -"Tfru01450_t",8.98041958591335,12.6728483566402,7.48403958283799,27.9424730582562,34.3510230055507,40.5351472130853 -"Tfru01451_t",9.90515359314009,8.59850806330109,7.70845183233794,9.0314082230977,7.9381926111702,8.05219124363027 -"Tfru01452_t",11.6184563620087,10.4019768377263,10.0052585912409,9.24455785396646,9.2826184236152,6.53883615174231 -"Tfru01453_t",5.83630560357412,5.17918467710534,6.72918469631477,11.872709654519,12.9936356307919,11.9324295996403 -"Tfru01454_t",9.0039829649781,9.06641861711611,9.6113109619791,11.1430096390968,10.0198981644382,13.6335805713522 -"Tfru01455_t",0,0,0,0,0,0 -"Tfru01456_t",12.8321339221304,11.9094973061023,13.9856873349932,10.5771862415072,14.5774771425747,6.894648715608 -"Tfru01457_t",0.908220289421054,0,0,0.469723480147485,0.393047807126049,0.332243566629069 -"Tfru01458_t",3.33816066641513,2.9027667722543,4.55155166682531,4.31616773976579,5.77858365443595,3.66348038700265 -"Tfru01459_t",13.6999114885022,16.052586948748,13.8317957426022,19.9533427719632,21.0577112412002,26.4409207687979 -"Tfru01460_t",1.97798404213596,1.7897591228823,1.57946554552189,0.929996188220084,1.02720756100365,0.920923413494529 -"Tfru01461_t",0,0,0,0,0,0 -"Tfru01462_t",0,0,0,0,0,0 -"Tfru01463_t",8.14121176960418,6.67383142436136,7.90582050778144,12.9004469186897,10.4947816541904,6.59006827004462 -"Tfru01464_t",4.63693638024223,6.34925858926154,4.69777376411909,9.87486861673689,7.79076903410561,7.7829134195738 -"Tfru01465_t",14.5402558160786,36.3103446048749,15.999531466075,172.962101601901,132.143413148472,86.2874777325252 -"Tfru01466_t",0,0,0,0.860384369448921,0,0 -"Tfru01467_t",386.21024798464,545.173587909937,478.683226674982,1492.17290310491,2038.42597012148,1212.24333966653 -"Tfru01468_t",18.5951822102809,18.3243220154849,17.3358064447655,23.7426188915457,18.8969773277845,17.2794560480281 -"Tfru01469_t",10.4273442999772,9.08215340457627,11.2721758153484,37.2532895632814,39.5573554478179,47.6137787387433 -"Tfru01470_t",4.44760818201781,3.17334141256398,7.66013463184595,11.7160699756257,20.1032393115353,18.8010771233626 -"Tfru01471_t",9.24913769592769,8.17665326780473,8.08866147513114,7.40439852729526,7.31441037521552,6.23517685356259 -"Tfru01472_t",0.958293271157195,0,0.275078767937011,0,0.276478495506917,0.233707451811322 -"Tfru01473_t",3.15983428576172,3.47368014396568,5.08727029697409,14.4239291062459,17.5393164954245,19.6004687917312 -"Tfru01474_t",9.48737875608587,8.42918812712307,8.79374650983464,7.56619243668599,7.20870008328163,5.77559613885791 -"Tfru01475_t",8.25404778508165,6.98839823190823,7.98431858590791,18.5961186655966,21.4324790117253,14.0633380491039 -"Tfru01476_t",42.6229117443373,51.0709633584516,35.3217319135118,199.100586298396,128.211616673036,57.5782986902979 -"Tfru01477_t",1.59010176854475,2.76541187766814,3.87973871118731,1.0965153795241,0.688143637081884,1.55116870224297 -"Tfru01478_t",0,0,0,0,0,0 -"Tfru01479_t",4.93178325176513,9.14583974926714,9.22627551811404,38.6998899635681,35.9153401086434,34.2163794580038 -"Tfru01480_t",13.2295005510915,13.6286147657694,11.9176179423857,11.6979212844422,11.0812099469136,12.0655287975582 -"Tfru01481_t",0.763730680820012,2.45212740025254,1.31537662449809,10.2698631314331,15.8648384050989,21.2333838281781 -"Tfru01482_t",10.1275425499449,10.6840685331158,8.67982470562209,12.6706695362401,11.6459027352532,11.2556567649911 -"Tfru01483_t",0.260094045732035,0,0,0,0,0 -"Tfru01484_t",3.69921185297901,4.44368982346968,4.76739154720108,28.368131525761,28.3965999979831,28.8379949686467 -"Tfru01485_t",1.15082707906072,0.923746644068121,1.98207441006634,10.1183585278328,5.47844032535185,8.84086476954594 -"Tfru01486_t",6.13892222032683,4.65843986147422,5.24212126752054,5.86974075591115,4.30880317882578,5.39730031020695 -"Tfru01487_t",0.253043303528456,0.203112966918628,0.435817566068879,3.92615258255804,5.47544008421077,3.14730728026633 -"Tfru01488_t",48.504104324647,47.9668516818928,45.8644538963354,32.300136290519,43.6283065909914,48.36024518415 -"Tfru01489_t",11.0305401861715,10.4191025656216,13.0011200445455,13.3690528965053,8.82402752669256,8.15186469845858 -"Tfru01490_t",1.05622330563715,1.43475542589329,1.04950264943086,2.01699444086541,2.74259180697722,1.96165084552269 -"Tfru01491_t",0,0,0,0,0,0 -"Tfru01492_t",19.1447818087695,16.4282352784362,22.1919374133233,16.0277416757144,20.7435200049192,15.2719933924435 -"Tfru01493_t",0,0,0,0,0,0 -"Tfru01494_t",5.06765007334468,4.61006535638903,4.55797406229141,2.09675494489427,1.85196118237006,0.906321257493505 -"Tfru01495_t",2.95734051216308,2.37380004623023,3.86724166188369,51.7767557093469,56.502543955304,40.8698572509161 -"Tfru01496_t",13.4246112477104,12.9338835023242,15.0861474641157,10.6976863898209,12.734473610914,11.5007430193342 -"Tfru01497_t",8.76310613418596,8.97147818152262,9.08275384725435,10.9098486004274,8.94730001918104,11.3255419417748 -"Tfru01498_t",10.6453083018126,8.54478313709459,11.7070686837043,5.05281264163037,5.0656380847101,3.27049413228669 -"Tfru01499_t",0,0,0,0.929851441731645,0.565866492749565,0.298954571139969 -"Tfru01500_t",0,0,0,0,0,0.0884389350019823 -"Tfru01501_t",51.4879047337455,61.1532172106817,54.6163581058868,68.7731622392759,85.7586455737085,110.030371045417 -"Tfru01502_t",0,0.245212745516308,0,0,0,0 -"Tfru01503_t",149.781658585933,94.9392768002266,167.537447503528,9.71894963857771,22.0055055173856,27.4975267644316 -"Tfru01504_t",33.8174136777177,33.7473207337946,38.4357112936684,42.3858367897363,39.4882980477544,37.168807710058 -"Tfru01505_t",0.248184274066314,0.498031794807862,0.534311048503943,0.513434823204045,0.322217921646909,0.453951697388314 -"Tfru01506_t",3.51027689201709,3.38657618606793,3.95300014928526,3.42148923064439,3.68097403941671,3.67950739820421 -"Tfru01507_t",0,0,0.0539088792603829,0.388519420986369,0.16254957746271,0.0687016316986338 -"Tfru01508_t",1.13316322156836,1.0663903118965,1.31231763847903,6.42647263652942,4.43047144451153,4.43120198748304 -"Tfru01509_t",0.891356782720928,1.07321228143742,1.343289155894,3.91851550414811,2.89312377924346,2.93467129144509 -"Tfru01510_t",194.742440491144,191.157507627666,197.112610145561,205.078574804189,183.956436246733,179.960539786462 -"Tfru01511_t",3.08146169625,3.90541534847401,3.49158860846689,23.1506572358403,41.4103939650659,34.766916079399 -"Tfru01512_t",0,0,0,0,0,0.152141237194004 -"Tfru01513_t",0.538228040597017,0.713780833048862,0.624712310582298,4.88957282816476,3.05843746297108,3.16741951751529 -"Tfru01514_t",10.452179710573,11.2914849373622,9.23778318948057,10.3644551805227,11.0873307987708,11.6720366181054 -"Tfru01515_t",14.8253605831339,13.0333664951473,11.5509966486878,7.30242383941173,8.55456990618907,14.9788801019195 -"Tfru01516_t",0.218067168777281,0.262557449774113,0.0938945048247033,4.96242586424468,3.91644975887118,3.43023695332153 -"Tfru01517_t",5.09009644085214,4.8875926626127,5.81715269953319,4.13335384002939,3.62333992073164,3.89812383949847 -"Tfru01518_t",0,0,0,0,0,0 -"Tfru01519_t",0,0,0.138859339668779,0,0,0 -"Tfru01520_t",6.76860855504553,7.35057163692249,7.063136250849,6.50711721550283,7.03015366869056,6.87476498531997 -"Tfru01521_t",13.1876754234249,13.3298788987063,10.515365692941,6.31532295256429,12.8940247192368,13.0434574631557 -"Tfru01522_t",1.50810602440824,2.13622507973552,1.52789262866809,5.87278353215018,4.76056847701772,4.41354178267548 -"Tfru01523_t",0.0791803739598939,0,0,0.245708323734075,0.0685333122698577,0 -"Tfru01524_t",0.697760604414015,0.672094734388551,1.4421072950319,0,0.120787116807839,0 -"Tfru01525_t",32.5740871717316,34.4683998574077,35.0208561371018,40.6819428108626,43.4777843017975,41.6944514108868 -"Tfru01526_t",0,0.233205531625115,0,3.07487232103353,3.3268758143601,4.28668086691389 -"Tfru01527_t",0,0.0721213957400905,0.0773750972913731,0.929399399222295,0.233306452358243,0.197214095699608 -"Tfru01528_t",6.64425231838525,6.23714724687927,8.43710092381602,11.0662066536086,12.866256635413,16.1489969517025 -"Tfru01529_t",2.78872619988207,6.15575564470399,1.20075877124372,149.45879986062,186.310368740921,177.636573315652 -"Tfru01530_t",246.855135536955,276.285616526935,268.810622362408,289.525531803702,285.169223570659,201.145136540824 -"Tfru01531_t",368.35319045923,343.29784372265,293.93609074865,311.742006177438,298.482703600216,251.877797610059 -"Tfru01532_t",1.44223822783601,0,0,2.2377384676554,3.12076585057163,1.84658978019161 -"Tfru01533_t",99.3070638714509,102.124730141329,84.9957616785025,76.0992765308302,90.0516829202304,96.6387067790447 -"Tfru01534_t",65.9651884434516,73.1870797290543,59.8708281902332,63.6705132577002,60.8696441399771,64.1789109165638 -"Tfru01535_t",7.8759728223232,12.8058819623601,10.7822942066849,16.5024246691238,15.0321889696525,11.5246987174458 -"Tfru01536_t",0,0,0,0,0,0 -"Tfru01537_t",98.7250252487275,65.0987400774963,137.471594699829,24.7776744110384,31.3957942881541,22.7833826647673 -"Tfru01538_t",0,0,0,0,0,0 -"Tfru01539_t",1.58026636529921,3.77106535427977,1.47118893680598,2.95995045064976,4.251190694767,12.0617758479826 -"Tfru01540_t",24.0786839236776,19.5098288512411,23.8000778081238,20.6771471567401,17.858965819506,13.4619283801801 -"Tfru01541_t",0,0,0,0,0,0 -"Tfru01542_t",0,0,0,0,0,0 -"Tfru01543_t",0.112163386877767,0.180062763730266,0.0965897409445045,0.116019818193971,0.582487404419111,0.082062830208782 -"Tfru01544_t",66.0394613925117,177.90717758394,54.9827441352498,178.936054072183,170.213625134709,133.940382543394 -"Tfru01545_t",7.07889487730877,20.1428659658402,5.90248150782006,112.00381520494,134.502782022606,96.8698111842377 -"Tfru01546_t",4.97475959197062,4.89300661924742,4.6460551538719,12.3934130896294,13.9484438642313,13.7899091687203 -"Tfru01547_t",19.4979307282986,20.7332866171624,18.6803117348747,25.291454546747,20.8374001628616,17.6138678905441 -"Tfru01548_t",0,0.256401159760398,0,1.98248312913957,2.76478495506917,2.1033670663019 -"Tfru01549_t",0.598102353794533,0.886311128372196,0.35657800860181,2.90297342467928,3.54410303632552,3.60173132608018 -"Tfru01550_t",26.5417399140562,22.5272368408388,27.030267504316,17.666248470382,16.4205439641918,16.8184614250198 -"Tfru01551_t",20.0001976518389,12.1073793098677,14.8801983978472,3.99932178977844,3.51174816310064,4.08602954527624 -"Tfru01552_t",11.531928376452,14.7566688697645,11.2740339869675,8.29803283231365,7.66677801499518,7.05136296416667 -"Tfru01553_t",1.2050668799183,1.3818341192005,0.889496507796319,13.8895693002627,4.02310204220208,5.03811965789981 -"Tfru01554_t",1.88153139465728,2.86951085178658,1.94434175052454,6.22791265951424,5.78127989540947,3.57915241990105 -"Tfru01555_t",1.05926127233564,1.49526467646357,0.975094432604544,8.23649911058611,6.57586070356972,8.28442110703352 -"Tfru01556_t",10.424645292761,17.7197531430704,16.3701985035071,22.8347326844404,19.1072875580134,17.4973527972122 -"Tfru01557_t",7.47736337756339,6.35499000160064,7.95424102259745,11.374194218231,9.89821964542564,10.6196176663375 -"Tfru01558_t",1.67701322452509,1.53840695856239,1.3066241477008,3.79975933085085,3.8015793132201,5.37527139166041 -"Tfru01559_t",0.137384099380944,0.330826680377684,0.177462917336306,1.84739978700687,2.61603364677517,2.11081971603259 -"Tfru01560_t",0,0,0,0,0,0 -"Tfru01561_t",50.9621770856207,50.823046060595,53.9933100786363,14.6961280002026,16.0398185996292,26.8909636740403 -"Tfru01562_t",1.78745482492441,3.2281997082599,1.53927055249859,6.47119049777652,8.89584265596457,5.55801072898097 -"Tfru01563_t",1.04849144176533,1.0520047584553,0.677182988774732,1.62681142890392,1.47469575060553,1.05478261792536 -"Tfru01564_t",0.0860762057084502,0.0690917059600252,0.11118706347454,1.24649980899794,1.04302645538572,0.850182692270593 -"Tfru01565_t",0,0.399014822585708,0,0,0,0.181849289427153 -"Tfru01566_t",2.0476066761843,1.92532987861864,1.56178077645575,1.45234836480141,1.06336401858266,0.59924153034073 -"Tfru01567_t",1.18241205871143,1.04400922616021,1.47644318300885,5.01457086125077,4.81006429691906,4.19571485092093 -"Tfru01568_t",5.68441573748582,5.4647136245078,5.46434990784709,3.41852257385069,5.26331524570051,4.49744340193008 -"Tfru01569_t",0,0,0,0,0,0 -"Tfru01570_t",0,0,0,0,0,0 -"Tfru01571_t",3.97083337844654,3.18731117318463,3.75473595382419,3.94628669836603,5.121642417231,4.55718701215034 -"Tfru01572_t",18.8594723364474,16.4333751722063,19.1937613791151,15.2307697464388,16.7599737204289,14.6837297784504 -"Tfru01573_t",79.7345214340737,40.4339533233204,91.5630947120552,7.83479638966308,6.37964412099648,6.46530197882887 -"Tfru01574_t",17.9701340687588,7.93335353140995,10.0587626478785,0.697049549416722,1.16653226179121,1.47910571774706 -"Tfru01575_t",0,0,0,0.155268928815875,0.259846971953493,0.073216271383416 -"Tfru01576_t",0,0,0,0.540117123235885,0.301300459882538,0 -"Tfru01577_t",0,0,0,0,0,0 -"Tfru01578_t",0,0,0,0,0,0 -"Tfru01579_t",0,0,0,0,0,0 -"Tfru01580_t",3.12804594361773,2.51082199531326,2.69372346687254,0.924455785396646,3.09420614120507,3.26941807587116 -"Tfru01581_t",0,0,0,0,0,0 -"Tfru01582_t",0,0,0,0,0,0 -"Tfru01583_t",3.88487291428659,2.92341784755714,3.97274162826949,3.39056182563105,2.9421786718395,2.75349256447646 -"Tfru01584_t",6.89446861042274,3.68937109515417,6.15708220999438,0.528260448798083,2.4311619680897,4.48377336119473 -"Tfru01585_t",0,0,0,0,0,0 -"Tfru01586_t",2.50543528116153,2.38813904067606,1.61817072061362,0.809868069219801,2.23630648882062,2.46318506293965 -"Tfru01587_t",2.90693345229922,2.56667320133851,3.00397436542978,2.10481628647402,1.7612349834887,3.19022801867012 -"Tfru01588_t",12.4630778726873,21.8603120659456,11.527614082723,40.107158689516,29.9644962850216,6.75440217872283 -"Tfru01589_t",0.237653116750912,0.286139342363442,0.409310981428197,0.737472507728017,0.411393744375214,0.434689249125726 -"Tfru01590_t",110.508699289174,111.022064837016,128.728303659168,46.7065921561077,62.0176069645635,69.5502798601162 -"Tfru01591_t",3.73259240001924,3.12634408320856,2.23605561264445,1.6786640790847,1.5919322001435,4.11614051638331 -"Tfru01592_t",5.62186642289081,4.66553172707304,4.89598607114203,4.17245866391877,4.0136942421454,4.7638326141427 -"Tfru01593_t",7.30183648574263,8.06681181511591,6.3556049541484,5.19768785508992,5.09676478866722,4.30829858596105 -"Tfru01594_t",8.55195452164435,10.4986295236024,6.06491032062321,6.76458065721378,4.3541224142706,4.78470525594557 -"Tfru01595_t",1.69649387664474,1.57962168456587,1.98687749829786,6.45774929895815,7.75301086431189,7.49694994651295 -"Tfru01596_t",0,0,0,0,0,0 -"Tfru01597_t",0,0,0,0,0,0 -"Tfru01598_t",0,0,0,0,0,0 -"Tfru01599_t",0.151097799948646,0.0606416412023243,0.130118194186032,7.50205845990947,8.63149950541197,4.91941575948527 -"Tfru01600_t",0,0,0,0,0,0 -"Tfru01601_t",45.9407394311394,50.9817315295384,54.0915093411426,307.894372911237,214.161832755717,108.732717151115 -"Tfru01602_t",5.11139577860601,5.9964271231952,6.3203745618975,15.8614114318133,11.3438134661964,14.8628459798573 -"Tfru01603_t",33.8797828401599,46.9683811430672,36.8404363607233,82.9191975276072,134.145362826482,131.24869917813 -"Tfru01604_t",7.56269267516868,6.35277262895528,7.4718534285975,7.64079157169425,7.40838888379245,7.07727485788717 -"Tfru01605_t",3.79161877464055,4.77405345252988,4.417570267038,7.38255664373391,6.1131108055224,6.30968755739807 -"Tfru01606_t",0.505325574565097,0.811230135542672,0.326371650980905,1.82944934373231,2.51491491627269,1.57128724368184 -"Tfru01607_t",3.44304822616559,1.65820094199435,1.18599534298011,0.712285604692254,1.19203023397442,0 -"Tfru01608_t",3.8884218237698,3.20329682784701,6.5208075293424,6.56239746320542,4.33980313227483,4.79142975504041 -"Tfru01609_t",182.049670829001,159.090696302206,163.936797153389,87.405050684531,88.5273405584195,80.7997000047722 -"Tfru01610_t",1.2219691166756,1.71648921861415,0.789225992372006,1.89597477441348,1.05765591735737,1.78807446767644 -"Tfru01611_t",2.03838002565037,3.62294394372014,1.75535532676616,7.98204284722025,6.49005716186037,4.20774672988201 -"Tfru01612_t",7.22517574256968,13.7596190675466,8.05196838760647,12.0163662627948,9.93224517670125,13.9928888306256 -"Tfru01613_t",188.582733871571,206.898254029385,195.66227727556,241.554478470949,267.337787764729,213.086037824663 -"Tfru01614_t",1.18463516011442,1.03012404843807,0.935138514267653,1.22536560038474,0.769006579159661,2.23903273163068 -"Tfru01615_t",1.71909861893938,2.64666893223321,1.86870853052412,2.44867590791409,3.78082719535037,5.21659179338261 -"Tfru01616_t",12.5539188771209,13.0008558705194,13.5135426757048,10.6667026445766,11.7389928786079,12.7522572421638 -"Tfru01617_t",1.30857284690728,1.15540273393587,0.694712927267371,0.676782272798167,0,0.382959874307649 -"Tfru01618_t",111.608499285416,118.740684101651,112.684485223033,79.2425580275239,94.4959650832781,111.248276941889 -"Tfru01619_t",1.30606296819607,1.36127687323044,1.5378367142443,0.976973779640987,0.999789323196595,0.729273592308407 -"Tfru01620_t",3.48418197322121,4.18496995653157,3.55683995292563,2.96067486061316,3.19409848024371,2.74193396475011 -"Tfru01621_t",0.0548728783614941,0,0.0945077935564127,0.0283797661094986,0.0237471731934419,0.0802940036921982 -"Tfru01622_t",1.70379859286867,1.78840808937401,2.48300429217402,1.22010857167794,2.60907709722518,0.767114631218442 -"Tfru01623_t",0,0,0,0,0,0.0363913912530359 -"Tfru01624_t",1.8333458345502,1.12533448680462,1.48591971178298,0.44620715700788,0,0.0789025158233347 -"Tfru01625_t",0,0,0,0,0,0 -"Tfru01626_t",0.0489856424323309,0.157279311992967,0.168736363772441,0.30401927869604,0.211993715213758,0.143358740119831 -"Tfru01627_t",8.3682211237184,9.35113057852716,9.32581494892703,18.3302248698179,23.4331724853958,22.3291037650513 -"Tfru01628_t",0.270129828847098,0,0,0,0,0.197636848316327 -"Tfru01629_t",0,0.389789046340952,0,0,0,0 -"Tfru01630_t",0,0,0,0,0,0 -"Tfru01631_t",0,0,0,0,0,0 -"Tfru01632_t",0,0,0,0,0,0 -"Tfru01633_t",8.68058183803047,6.90868659105709,7.53865166385695,10.1965368413802,8.97780389569438,8.82685622725564 -"Tfru01634_t",29.0639788625888,30.9904234929643,31.6929032078421,15.3874104218222,15.9270856541661,14.8472406540687 -"Tfru01635_t",16.708989064238,22.7144437951948,18.5172968293377,18.1982066297582,15.2678930729324,13.4167499011595 -"Tfru01636_t",0.709447235226861,2.13547341714589,1.37461951521514,5.32033737718069,8.6990524518749,8.43468449411939 -"Tfru01637_t",0,0,0,0,0,0 -"Tfru01638_t",0,0,0,0,0,0 -"Tfru01639_t",0,0,0,0,0,0 -"Tfru01640_t",0,0,0,0,0,0 -"Tfru01641_t",0,0,0,0,0,0 -"Tfru01642_t",0,0.200099421415385,0.214675715036896,2.32074063633698,1.72614467224496,1.00313895859073 -"Tfru01643_t",0,0,0,0,0,0.134203187393838 -"Tfru01644_t",0,0,0.161126316185822,0,0,0 -"Tfru01645_t",0.181056846490188,0,0.155917491309125,0,0,0 -"Tfru01646_t",0.54980613070319,0.441318750111156,0.568160073042675,0.909935537458478,1.90350377796647,1.4481296817733 -"Tfru01647_t",0.305937278847223,0.884051777353039,0.6323005037212,0.316456095510869,0.317758970072771,1.16394140967649 -"Tfru01648_t",4.02581371508745,3.35338406503992,4.77507890200965,13.9069578276938,16.4362215909401,26.9534846435743 -"Tfru01649_t",10.7880483824589,13.5862338521305,13.4547014197737,16.0329970161042,15.0794024010684,16.2848387289074 -"Tfru01650_t",0,0,0,0,0,0 -"Tfru01651_t",0,0.113620059000816,0.060948370654957,0.439252791039349,0.796360552770133,0.414254826125545 -"Tfru01652_t",0,0,0,0,0,0 -"Tfru01653_t",4.26448613053033,7.53064523032316,2.93789709512422,5.29333058846404,3.69105808722432,8.11213987556254 -"Tfru01654_t",4.98454645862729,3.41752003176312,4.11360066069463,3.32986917014317,2.87619656141682,3.26699329114245 -"Tfru01655_t",3.6447018122103,4.97340384073205,4.86489630149772,5.08952013738977,4.73192045455438,4.93320436784376 -"Tfru01656_t",317.116092538376,310.120020325363,298.525454349137,198.148462573204,189.77514313847,171.224095230624 -"Tfru01657_t",3.64157883182685,3.39886618029156,3.68292203261634,3.39448608700331,3.35348626770473,3.05156673029143 -"Tfru01658_t",6.74535871884533,4.92215365085289,3.16842551680783,6.97727943135678,6.36909585267115,3.58920057378711 -"Tfru01659_t",10.7247289495465,11.8367322636196,12.6989820581134,11.0934694247597,16.6313580089772,9.48131242002635 -"Tfru01660_t",0.126331393641274,0,0.108790550326968,0,0.437376507177859,0.462143306965246 -"Tfru01661_t",0,0,0,0,0,0 -"Tfru01662_t",0,0,0,0,0,0.235799462249531 -"Tfru01663_t",0,0,0,0,0,0 -"Tfru01664_t",4.40653883610453,3.81265730000662,3.94254582928795,2.9597698851255,2.92242289835206,5.06626174318236 -"Tfru01665_t",13.1986377471351,14.8704451747465,12.0103682368451,9.96844592532442,9.48103563252753,7.70776667576949 -"Tfru01666_t",39.2754445632218,44.2046228860061,31.5107182783607,12.0687592274799,9.95647074995457,10.460148194752 -"Tfru01667_t",1.54755957210561,1.41965273719968,2.28460155686633,0.457362335933077,0,0.323500314875672 -"Tfru01668_t",5.05748087587309,5.41272281072786,6.77484965581321,0,0,0 -"Tfru01669_t",0,0,0,0.551388602965004,0.184552904361216,0.936016139487985 -"Tfru01670_t",0,0,0,0,0,0 -"Tfru01671_t",0.0567254400887559,0,0,0.058675789214912,0,0 -"Tfru01672_t",9.78960509428373,9.9292630497949,9.77072809506542,7.71116020310375,6.73604603631429,7.04255926825878 -"Tfru01673_t",5.15225479347889,4.82488451569566,4.3136287203751,4.5892064031445,4.95494680192975,4.08370925592629 -"Tfru01674_t",45.7754534467443,100.117748736938,41.6350741312054,292.8133164233,206.16332839988,158.108643861728 -"Tfru01675_t",3.22198888185949,4.69352520714807,3.80226064033388,7.52958732026188,2.58216776698576,1.30962485425521 -"Tfru01676_t",38.3094529268939,38.4197330086039,44.7891396064478,23.4962539103817,28.711045825259,22.0931277272924 -"Tfru01677_t",0,0,0,0.539744371598041,0.451638784585833,0.381770557927812 -"Tfru01678_t",3.39124456692081,7.05267850636353,4.91154401980744,19.9309274833222,14.2759290680003,7.33069520865055 -"Tfru01679_t",19.1337192858699,23.5017194391821,14.4844706756833,14.4524560178853,15.6365576235368,19.338053780121 -"Tfru01680_t",22.5613177098531,22.2886565932191,21.2000070509007,26.5949024720075,27.038200718212,21.444580934069 -"Tfru01681_t",5.89294345188938,5.71079298261888,6.31245768064864,6.02122014543204,4.85173640447296,5.6259721141338 -"Tfru01682_t",0,0,0,0,0,0 -"Tfru01683_t",0,0,0,0,0,0 -"Tfru01684_t",0,0,0,0,0,0 -"Tfru01685_t",90.2198394023805,110.239121245157,73.603902332085,6.80077908213532,53.428868216504,74.2925505727522 -"Tfru01686_t",0,0,0,0,0,0 -"Tfru01687_t",5.48461527108931,7.96623789837953,5.17290611580616,0.0900506153650618,0.150702268017242,0.127388725028762 -"Tfru01688_t",10.6834005142881,11.3038823438876,6.27274993937288,0,0.840622477668429,0.710578726316506 -"Tfru01689_t",48.4981039406148,38.7157662873539,47.2415243068102,19.7372768314337,14.4510163787196,20.359089216939 -"Tfru01690_t",0,0,0,0,0,0 -"Tfru01691_t",0,0,0,0,0,0 -"Tfru01692_t",0.487659179148244,0.604944372184031,0.801720335259162,0.871281283756416,1.22788549772359,0.356789265482931 -"Tfru01693_t",5.74221713640796,6.92771716827348,6.77304548825189,7.55955145142078,7.71116161784991,9.82829871291706 -"Tfru01694_t",94.4971808563059,84.6257105039881,103.862661537405,123.680285150219,131.928831399326,146.968435129408 -"Tfru01695_t",0,0,0,0,0,0 -"Tfru01696_t",20.571312715829,22.6389508319322,19.7472130565894,20.4705529046839,19.52370945858,18.6347963247348 -"Tfru01697_t",0.362634719876752,0,0.520472776744129,0.250068615330315,0.209248472858472,0 -"Tfru01698_t",1.45812402941097,0.540188291190798,1.15907689133405,55.1094136421365,36.5025440102643,22.1569641563711 -"Tfru01699_t",289.30249575788,312.829897739278,323.543251865771,324.7859783559,302.784181975996,209.910632274391 -"Tfru01700_t",1.18054840126987,1.17810149289073,1.09906138955464,2.60729535220489,4.66716281420278,5.20573807112884 -"Tfru01701_t",17.2662836356412,16.9946973560325,18.8176862287261,21.4904822672597,26.3122199453756,29.2828822757743 -"Tfru01702_t",0.520472450843515,0.319473602485714,0.316380682073326,0,0.0794976432051593,0.0447996062874473 -"Tfru01703_t",8.84720020918381,14.5895664143566,7.33499111800175,7.84030003149007,5.66088468138996,6.23182260158808 -"Tfru01704_t",0,0,0,0,0,0 -"Tfru01705_t",3.20218924913589,1.05837339712756,3.56862276072544,3.11744731218958,5.2171368120767,3.58316492261395 -"Tfru01706_t",0,0,0,0,0,0 -"Tfru01707_t",0,0,0,0,0,0 -"Tfru01708_t",0,0,0,0,0,0 -"Tfru01709_t",20.9704309552005,20.5501799362633,22.3795323513348,11.1784117633873,10.8012908099188,11.7658996604858 -"Tfru01710_t",222.849860935428,325.920457533142,240.06816263015,130.694852862791,167.152201950016,184.573468267607 -"Tfru01711_t",0,0,0,0,0,0 -"Tfru01712_t",7.82705373647026,3.76957481461405,4.04417045780686,20.5102861207256,23.9368555830491,9.5442639481953 -"Tfru01713_t",14.7781159903885,16.8261422652323,15.7002653198924,17.3631533077462,16.544832646042,16.8059341399082 -"Tfru01714_t",7.86391728874375,6.93152594840781,7.92199644998393,8.87098758957445,7.91093749559953,6.94765776914195 -"Tfru01715_t",7.71242803147714,8.40155144473906,7.11597206237055,5.12845635702008,6.19855722057802,7.05336752105974 -"Tfru01716_t",0,0,0,0,0.233806573370801,0.197636848316327 -"Tfru01717_t",6.08431698066193,8.45266775978916,4.83648240450812,2.66263866880259,2.83563738288709,2.91060171879783 -"Tfru01718_t",0.875937577711774,0.639180142341086,0.351930634200028,0.658948578785097,0.275692300732963,0.466085761716608 -"Tfru01719_t",18.0896601898583,15.6847494130169,14.016250422185,11.3489045905034,12.9888194653878,11.3111631952481 -"Tfru01720_t",12.2247657893335,11.1567725908499,11.0561559285779,12.7028210245865,11.6921929069988,14.2533593883095 -"Tfru01721_t",158.150375497651,138.73835945417,208.923609662963,22.7398843660184,13.2030478334999,16.8228801928003 -"Tfru01722_t",60.9573973935305,43.2357301296234,129.611454200231,18.3427638685561,16.4997113756608,43.868861960515 -"Tfru01723_t",2.52431326319483,2.17447725961694,2.91609701590976,3.72560085298362,4.87601081357727,2.74779673829904 -"Tfru01724_t",0,0,0,0,0.0402846782926975,0.034052664723755 -"Tfru01725_t",43.1616948711488,53.9818344058043,48.0300389643535,32.3669979346302,35.0537389752728,36.6874564885756 -"Tfru01726_t",1.44575997234584,1.28594125846343,1.04312427673974,0.485016802756937,0.676407854123898,0.829063597658118 -"Tfru01727_t",9.36260223055288,8.32763164366376,7.62680740620538,3.92615258255804,14.236144218948,15.1811292342258 -"Tfru01728_t",37.4163862931657,38.5334314382769,41.188422325997,16.0653324722711,16.9563796624652,21.047909142226 -"Tfru01729_t",0,0,0,0,0,0.0500122537236596 -"Tfru01730_t",19.8117254499676,19.9867347344155,20.5103833928292,33.9308629892619,39.1680243879605,36.3562660570971 -"Tfru01731_t",27.7275627767832,30.8931821013772,32.787221029576,19.6913636258872,26.8647208072607,24.2226836754198 -"Tfru01732_t",50.8502115387869,49.0577356894826,50.4209614174354,60.5636863668276,64.3676640043254,68.1140464797679 -"Tfru01733_t",7.74852989639564,8.63378007195615,9.17491179441364,7.2921629749338,7.65964427975616,7.86961627631413 -"Tfru01734_t",6.39889464237497,7.67016170809303,7.5186644556541,5.16022621684186,5.11509683500025,5.18104261908194 -"Tfru01735_t",110.111875758666,129.968138053629,154.296218937506,450.414231684034,538.539869781736,377.939246362889 -"Tfru01736_t",0.171339278033302,0.137484571300105,0.665038391584866,4.16691374827158,5.57038569710041,4.33354034786374 -"Tfru01737_t",2.44984921582501,2.58071015538874,2.65691994371601,22.9413257078522,26.8728782569026,23.7959604224538 -"Tfru01738_t",261.31862759536,165.226188853903,303.928261664008,291.183883590878,380.814056010208,314.840100628115 -"Tfru01739_t",11.3051836590103,16.5731015553427,13.9328171766452,17.0156479049397,15.2341656106067,14.759538942998 -"Tfru01740_t",0.0526710826153275,0.169112238287109,0.317504709574945,0.326892202485083,0.227943085637364,0.115608262996322 -"Tfru01741_t",30.6475623415152,26.3366908006249,31.3601601403898,6.7132154029662,8.42606779654341,5.53976934057482 -"Tfru01742_t",8.38176924210542,6.959880104964,7.13501327201756,3.28860303474816,3.83582206266362,3.87680996611327 -"Tfru01743_t",54.0746503420748,47.3631827204773,50.962378704145,13.5136204098043,12.4309970719268,19.1801371033908 -"Tfru01744_t",21.0025941928619,18.8585225894957,18.3929786357883,4.78680071929958,4.62164264735079,6.25068405014011 -"Tfru01745_t",1.1338823858723,0.744664472580198,1.50905174410598,3.73185218890179,4.28253316230591,1.88543128301772 -"Tfru01746_t",6.37678058459354,6.96356583140971,6.06605738473629,5.36886060715792,4.87753942470631,5.85898187224077 -"Tfru01747_t",50.0030802919838,43.1637063847107,34.3250184891927,6.59139837080023,10.2429718776579,28.5917190059234 -"Tfru01748_t",21.6223428739627,44.5503320030242,19.6875227058919,48.2217354680916,50.1844728819874,49.8270034166291 -"Tfru01749_t",0.99420564226565,0.399014822585708,1.92636521806777,0.514194342173282,0.215129716918104,0.363698578854306 -"Tfru01750_t",2.4002964791805,2.40833946488858,0.516755114052301,0,0.519384602272905,0 -"Tfru01751_t",0,0,0,0,0,0 -"Tfru01752_t",8.89360666147245,9.22543065378942,8.83701742273215,8.20868557326141,7.3424403057586,6.00635763775678 -"Tfru01753_t",0.464659163558891,0.0745945851957794,0.480170681199783,0.144190559447928,0.321742673974863,0.135984645633579 -"Tfru01754_t",9.80452856870565,9.62765089401261,10.3289795901372,4.6847125523003,5.03999987277448,6.08096267239637 -"Tfru01755_t",10.6702187655424,11.7059502676937,12.0010487278417,9.17330288391242,8.77244770596342,9.45457857248906 -"Tfru01756_t",9.21809620434835,9.41714783279585,13.1701677446949,9.53503523291901,7.79724515134095,11.4959588203948 -"Tfru01757_t",339.627315850425,294.815994494988,361.287447422734,548.946354908945,398.152635352747,256.354273910014 -"Tfru01758_t",29.3426073832477,44.0848580014185,34.2459745075868,70.3291490297092,94.1054474289141,144.956339638963 -"Tfru01759_t",0.123002015770787,0,0.105923449439874,0.254462207400541,0.106462436776455,0.269978300847926 -"Tfru01760_t",6.48103195922449,7.28307865178618,4.53468807896162,29.1618106575651,35.1298322116469,32.6588697823858 -"Tfru01761_t",20.6112415060383,19.5808469536896,20.2208522890343,15.6525867763432,23.1464877100239,26.0558405785732 -"Tfru01762_t",23.0099748075862,19.9126041918913,26.6265259908673,10.5369496794853,14.314565643264,20.8683084717231 -"Tfru01763_t",12.9680447365314,7.69375560596425,8.25420920433763,0,0,0 -"Tfru01764_t",6.39726594672444,5.77152717577716,6.10089738177227,6.83596946407211,7.64204657089948,8.045772463113 -"Tfru01765_t",0,0,0,0,0,0 -"Tfru01766_t",10.0571953974927,9.47666693797571,9.08440024835051,6.67147922681821,5.79534543200656,8.01805107038954 -"Tfru01767_t",42.7977391099827,28.9000735787077,41.925414913742,47.3141952914057,41.1587798028221,22.8630141672241 -"Tfru01768_t",4.98811612080469,5.74238441160259,5.65200905995577,10.25134798275,11.5887689382321,6.6747213405207 -"Tfru01769_t",0.0501255231333219,0.80469576392583,0.215828508256068,0.051848952164251,0.390468137747537,99.1289121185554 -"Tfru01770_t",19.6602851935103,22.4562320887892,24.4049459918974,91.9515877499667,90.2196761316193,88.6680007682777 -"Tfru01771_t",0,0,0,0,0,0 -"Tfru01772_t",4.72822221025232,5.96396828290919,5.59861319546976,6.63749962901873,11.3272822807432,12.169464106328 -"Tfru01773_t",2.58455598036976,1.97578391494241,1.69576832036177,1.29851773665148,1.21438298451339,1.00850962504458 -"Tfru01774_t",9.88123940297138,10.7027197381704,9.56863508308053,8.127525308362,6.93821282583866,8.3327690931367 -"Tfru01775_t",0.743454654646386,4.77405340727257,2.56091027545513,2.30704892929637,0,5.43938577377859 -"Tfru01776_t",1.2680811588143,2.03572845334293,1.25581242811395,2.95128148847382,4.55490496484565,4.03581902256216 -"Tfru01777_t",0,0,0,0,0,0 -"Tfru01778_t",1.57308775051306,3.06652586345628,1.99974783325051,6.16001612507278,11.8001958679751,19.4561714118271 -"Tfru01779_t",13.1452936626731,11.9423490392811,14.2530322354048,5.99515494398763,7.55065524215831,8.6121029770956 -"Tfru01780_t",4.07475480148937,4.40134853104869,3.68226698037837,3.79857221520466,3.83162772455813,3.68054250457352 -"Tfru01781_t",49.8025586848701,40.7831377647632,59.3494795660985,29.6600844200912,34.8329793141648,26.131851782472 -"Tfru01782_t",10.5951517874616,15.937610917619,9.62693737799021,10.1827840830383,10.6868410716099,14.3438818859968 -"Tfru01783_t",32.2231582137059,34.3633751593401,29.3347012689869,12.6181882817701,12.9490407690157,10.609037723457 -"Tfru01784_t",10.1725909270204,12.2202397889099,9.59444832846529,10.1644446651354,8.32555548619963,10.9867528684711 -"Tfru01785_t",6.48609526544263,7.18960163784027,3.19172276326914,3.51429147830931,4.54461526989494,7.23118350898561 -"Tfru01786_t",14.0799514142091,10.1715342763049,13.7416443737025,9.22389962412519,13.405345600584,6.52422422738088 -"Tfru01787_t",13.2068714575201,10.8953698062377,10.109445026017,9.29703787671823,6.98560949782978,8.18639443102411 -"Tfru01788_t",50.0682128118182,49.4022492748068,48.2102633647192,57.1798762819937,51.9297530253209,47.8118822454975 -"Tfru01789_t",0,0,0,0,0,0 -"Tfru01790_t",0,0,0,0,0,0 -"Tfru01791_t",2.0277291088541,1.47737719866398,1.5044040453681,1.03258930652548,0.783030629495452,0.753192340984205 -"Tfru01792_t",4.70295705647652,4.26381807799701,4.2830528583217,7.38447686168226,7.99471586745916,9.23337386840068 -"Tfru01793_t",4.10577029334142,6.21098072524858,5.71150389216583,1.30674953123736,2.93862340760124,3.58161062898066 -"Tfru01794_t",18.6223539750769,20.2067360404333,20.1500745587359,22.5676597876467,22.5711817937771,21.8657877061951 -"Tfru01795_t",11.2752483952369,10.9337490679207,11.1128407769992,17.3932519064697,15.9643273406395,15.4497124776931 -"Tfru01796_t",149.192605764641,163.203866588,154.737000290882,80.8656719659506,82.2791246914962,80.4061805767718 -"Tfru01797_t",0.265136446077607,0.136812791964126,0.293557909696531,1.56715678678602,1.6391759314319,0.872925782024751 -"Tfru01798_t",0,0,0.207294315092934,0.622484554636709,0.833396496485032,1.14476472456004 -"Tfru01799_t",1.03496216073576,0.973975858359165,1.1063915780916,1.95651602499834,1.60625314551937,1.25332322500685 -"Tfru01800_t",80.9274271651558,111.321690149463,75.7033692719128,197.433422834791,289.403454855695,330.478354587265 -"Tfru01801_t",3.45518588366705,4.35821712800723,4.93073034795672,13.8874768043604,28.3677982534453,33.5854909744602 -"Tfru01802_t",3.93427682902216,3.8385644761384,4.11818568890116,2.56100750883802,2.26038191865586,1.86107367257906 -"Tfru01803_t",4.67357591265854,5.85582675859839,4.90812184310949,7.89989489338951,7.69563074196592,8.75689454785571 -"Tfru01804_t",4.77758692182672,8.01446129914322,7.07277606582581,17.879506525486,13.6135184570399,21.8367880277738 -"Tfru01805_t",0,0,0,0,0,0 -"Tfru01806_t",14.2996385993953,12.5110673137895,13.3608683956878,9.91016601945203,13.0575499158854,13.9146433309076 -"Tfru01807_t",21.2938474251203,22.1834411727677,18.170033440203,26.9132012469711,21.623685598514,19.6991254913506 -"Tfru01808_t",11.0926322727348,10.0822910413744,12.0810321809695,14.1737920028969,13.8368092100879,10.5027675043131 -"Tfru01809_t",21.9725186138466,19.1939949892927,22.0056906916928,25.2361651256857,28.6722441184135,26.802259657861 -"Tfru01810_t",0.350205368662819,1.43674906474353,0.502633506026636,3.78346054644037,6.53380537181746,6.97496047126565 -"Tfru01811_t",18.9549875166776,23.9492253194026,16.3735081402618,14.8260562240144,11.2412767678738,11.5996039087384 -"Tfru01812_t",15.0723011907835,16.1986565332793,14.02487690639,11.9806353018953,12.1700473934333,13.6177856809795 -"Tfru01813_t",0,0,0,0,0,0 -"Tfru01814_t",0.122374911538889,0,0.0526917086434333,0.949368286532607,0.105919656690924,0.268601863771498 -"Tfru01815_t",0.319026747233345,0.0426794335550535,0.228942139137449,0.824989023676753,1.10451409091118,0.272313556192813 -"Tfru01816_t",0.114846721492068,0.184370485350607,0.0494502501486219,0.534579353688012,0.894633764681984,0.336104223247452 -"Tfru01817_t",0,0,0,0,0,0 -"Tfru01818_t",0,0,0,0,0,0 -"Tfru01819_t",0,0,0,0,0,0 -"Tfru01820_t",17.1373717582553,15.9986364452713,14.7899667676217,12.7554400473753,9.57694534924202,8.74957170920942 -"Tfru01821_t",27.908531944413,101.447422123857,23.543012653809,1272.96496174653,1151.83659152375,731.080006504387 -"Tfru01822_t",0,0,0,0,0.0557621505508582,0 -"Tfru01823_t",2.61753399436261,3.70183929618461,4.29351430073792,4.64148127267396,3.128637218444,4.74211144061074 -"Tfru01824_t",3.25819818767507,3.84434000564118,5.88231522352033,9.82687860102938,8.01890993416976,4.07852266137646 -"Tfru01825_t",0,0,0,0,0,0 -"Tfru01826_t",14.0144931168413,15.3062376930074,15.1022506440678,2.69330965371712,3.11536069549772,4.14623010679303 -"Tfru01827_t",0,0,0,0,0,1.21712958222935 -"Tfru01828_t",7.85843168017994,9.16134477959033,8.05631580929108,19.1603241400917,17.8140821269824,14.7844687332935 -"Tfru01829_t",0,0.779578092681903,0.418183329291526,0.502305455649044,0.840622477668429,0 -"Tfru01830_t",0.759129910585369,0.609338900755885,0.871635132137758,0.261743505503869,1.53312322357902,0.555407167105823 -"Tfru01831_t",1.33654046302831,0.459781130444861,1.47979873569751,0.789989489338951,0.661034948348355,0.419079953361666 -"Tfru01832_t",0,0,0,0,0,0 -"Tfru01833_t",24.702388931472,21.8823956677632,22.4223808428868,1.49627148311881,2.88929182721798,3.17501633540229 -"Tfru01834_t",0,0,0,0,0,0 -"Tfru01835_t",3.271983095309,3.0522533849793,2.28460155686633,7.134852440556,8.57257954068604,9.7697095092453 -"Tfru01836_t",0,0,0,0,0,0 -"Tfru01837_t",0.186828117356814,0.199951089746433,0.42903315621903,1.22392737784908,0.916334583700092,1.04795876649866 -"Tfru01838_t",0,0,0,0,0,0.285883999192454 -"Tfru01839_t",0.830142062958967,1.06614237181003,0.714878616278991,0.686947382033871,0.718516248204734,0.971779601998067 -"Tfru01840_t",191.702418806027,165.538060679549,208.592781231075,218.82086815721,173.411801238246,114.045887211729 -"Tfru01841_t",2202.31741103728,2892.14243642815,1982.39301128615,255.240703919324,460.319336686847,593.170373120217 -"Tfru01842_t",29.9158902649545,26.9734020067938,26.997303763457,22.6784787549255,21.8141532954957,22.0374726694574 -"Tfru01843_t",7.25437793848154,6.76213420783132,6.04560300563515,7.26174182400707,6.07636582047235,5.30756784016075 -"Tfru01844_t",0.185863665423556,0,0,0,0,0 -"Tfru01845_t",19.79739559725,18.5222863818649,17.4360371306363,15.2920689214043,12.962758780542,13.5909734428639 -"Tfru01846_t",32.6729320076246,30.5432215748215,28.9659388345483,31.056060765795,24.9443574871252,26.6358381569635 -"Tfru01847_t",5.72798023441687,7.5671120686673,5.85753666213598,4.69056259295002,4.44132855921551,4.62734115170173 -"Tfru01848_t",3.95860414106297,4.94277000124495,4.92405396636985,2.72980661237544,3.04560604474635,5.14890553519395 -"Tfru01849_t",8.0973857129106,5.84965344725649,7.14740808352961,8.16639737172072,7.79702667991614,7.77570033948152 -"Tfru01850_t",0,0,0.425563035102553,0,0,0 -"Tfru01851_t",5.58296807658353,5.31552945185667,4.49559109578991,4.1999441205362,4.03733370352002,4.43835731197376 -"Tfru01852_t",0,0,0,0,0,0 -"Tfru01853_t",0,0.313644209381324,0.336491702174111,0.404180668964115,0.338203927061949,0 -"Tfru01854_t",6.80044510884372,7.32249314103485,5.49913142101916,0.857836562954439,0.717806952796832,0.364057610027903 -"Tfru01855_t",0.250777244093873,0.20129404482682,0,0,0,0 -"Tfru01856_t",0,0.610257963954612,0,0,0,0 -"Tfru01857_t",0,0,0,0,0,0 -"Tfru01858_t",3.17458566601783,3.66689105622312,3.20054780316758,4.32491941628882,2.3456078812361,1.69949474174316 -"Tfru01859_t",4.83347373205588,3.32548791864582,4.75697858416004,4.52350145950249,4.18353624845123,3.70474333200085 -"Tfru01860_t",16.816448387099,14.1327705125417,17.5139757217997,20.2194059204631,16.6700686717789,14.6170116610205 -"Tfru01861_t",20.4132356823479,22.4061582358731,23.6692297776107,23.2210558441532,23.7432961039409,20.5798191382961 -"Tfru01862_t",4.4565324020971,3.4249522864157,4.40933257589326,3.53087853022827,4.39073439168179,2.9830672376233 -"Tfru01863_t",0.238214678936051,0.334618054195812,0.205139081193102,0,0.0171819102831567,0.0290477598423335 -"Tfru01864_t",0,0,0,0,0.405091054698156,0.684847463246548 -"Tfru01865_t",0,0,0.226080362398231,0,0.681692290484241,0.576234935872291 -"Tfru01866_t",22.5333955188722,16.9075260392439,18.6664602423262,12.5407952462116,12.8256197704324,13.1710842485095 -"Tfru01867_t",0,0,0,1.17430870036871,0.982619517815122,1.03826114571584 -"Tfru01868_t",0,0,0.605403480899029,0.363593488817091,0.304242026436482,0 -"Tfru01869_t",102.618538401605,82.1502634408868,97.2071916500537,147.274115972076,110.96558978219,77.8824373695796 -"Tfru01870_t",0.319431090385732,0.512802319520795,0.550157535874022,0.330413854856596,0.82943548652075,0.467414903622644 -"Tfru01871_t",3.60780759141185,8.27404969533553,2.66303248959879,5.86433915398853,9.59108989474761,6.59900949056202 -"Tfru01872_t",312.844612003189,337.670760192761,350.930711777934,311.927939405974,380.933721722543,344.479551709191 -"Tfru01873_t",2.94375983296177,1.81761469048476,1.75501736848222,10.7745197198251,10.5836862350114,6.95830865958993 -"Tfru01874_t",3.67000348352776,4.31667765679659,3.78625935642712,5.90100280315038,5.15790245164547,8.16166668109773 -"Tfru01875_t",0,0,0,0.388519420986369,0,0.0916021755981784 -"Tfru01876_t",3.66457477738048,5.14759580282325,5.60146764851451,5.78062101795459,5.55067513880298,5.42930190396575 -"Tfru01877_t",0,0,0.31592015706303,0,0,0 -"Tfru01878_t",14.6432429631507,15.3135848046539,13.8350373164814,13.8484213270573,7.74938380683281,10.1625497322497 -"Tfru01879_t",68.7617223880508,73.7826147687537,69.8620595049217,72.189250276643,33.0697225349799,18.5314439381363 -"Tfru01880_t",7.96650124556829,11.2240117766997,4.55758820749749,3.6880145921394,1.92874918616231,1.50809496921484 -"Tfru01881_t",0,0,0,0,0,0 -"Tfru01882_t",1.14857936992213,0.526824257945192,1.69560271798673,1.69724304350165,7.10096135921085,12.0048944973394 -"Tfru01883_t",0,0,0,0.122392737784908,0.409655460948276,0 -"Tfru01884_t",11.8519125754335,11.1604803916445,11.1079165094565,12.3893665675989,13.5930666098553,14.3091639775266 -"Tfru01885_t",19.8104602987762,18.7721819058133,19.8980913282717,13.9995633210901,15.6899238366323,13.8783795350878 -"Tfru01886_t",47.268737790323,50.6993919783717,39.1057924148291,90.7420359375822,88.7930727916574,58.142624160087 -"Tfru01887_t",2.89690954384302,1.83575784982717,3.6763703213941,501.983218098243,209.42475647042,35.2400997576814 -"Tfru01888_t",3.71816260830569,3.22648349363563,3.7211313236838,4.88546131564878,7.21919746222546,7.20523428586724 -"Tfru01889_t",5.79381908768603,6.97587982934323,4.98935972189199,10.6750734874035,14.4174001665633,8.61040708774688 -"Tfru01890_t",0.775821421372206,1.15651129976359,1.33620055876527,33.5901863342934,45.6619919465961,29.9216452189095 -"Tfru01891_t",22.135514211564,21.6850482938436,26.5667878137672,26.1417683712786,24.5899515018382,20.7859019744804 -"Tfru01892_t",7.67796699863273,9.63335785956922,8.02414773374378,12.1056951915561,11.6135687464928,11.7258099934971 -"Tfru01893_t",4.22473411315964,6.19703310917875,5.42374170493459,6.51478635706366,6.68228799055895,5.64854237824027 -"Tfru01894_t",2.46920451207945,1.3366860187919,2.52196275757972,5.93977059653347,11.5805370650501,13.5281949857099 -"Tfru01895_t",590.626837922023,605.001798564798,701.713170033147,514.440174649379,586.677851906838,459.253785214807 -"Tfru01896_t",15.2842631144516,15.5058722843856,14.6702304646534,29.3139498444536,25.2178777831694,20.5401242249866 -"Tfru01897_t",0.141670112599405,0.79601102043658,1.70799329434077,0.732705259926514,0.613101554117361,1.34746336887506 -"Tfru01898_t",1.62600729235059,1.30516461323195,0.466746554628603,1.12127540422302,0.469121576247217,3.17239018458722 -"Tfru01899_t",0,0,0,0,0.151803432814862,0.128319540347344 -"Tfru01900_t",0,0,0,0,0,0.121073656913416 -"Tfru01901_t",0.247453245276723,0.248282419061063,0.426189784786061,1.2798062419335,2.57015060918948,9.14281449552894 -"Tfru01902_t",0,0,0,0,0.0241494003049881,0.244962045139997 -"Tfru01903_t",0,0,0,0,0,0 -"Tfru01904_t",0,0,0,0,0,0 -"Tfru01905_t",0,0,0,0,0,0 -"Tfru01906_t",1.06849445814242,2.14414960308377,1.95528962074146,16.8547836994097,12.4850479910627,13.2897426651627 -"Tfru01907_t",7.20088943755264,11.8352682274708,9.74452500785845,7.44847232805297,9.20052724027711,6.02106708503292 -"Tfru01908_t",18.0223378101876,16.6135059846314,14.0649771824955,13.9329431164417,12.2679223375041,16.6196027686965 -"Tfru01909_t",11.6585828988947,11.8352682274708,9.74452500785845,4.61095906022327,9.79410964287563,15.8053010982114 -"Tfru01910_t",0,0,0,0,0,0 -"Tfru01911_t",531.847155970656,644.795885533137,494.491791285699,1004.88975208274,781.478740498149,512.588615995977 -"Tfru01912_t",0,0,0,0,0,0 -"Tfru01913_t",0,0,0,0,0,0 -"Tfru01914_t",0,0,0,0,0,0 -"Tfru01915_t",1.76146207637123,2.73656428881912,2.32426209567339,8.16972559485462,8.82795742653924,11.2661692343242 -"Tfru01916_t",3.9924041539515,4.43192904560566,4.02327035208176,2.98742233582172,2.35272297086573,2.05090695072848 -"Tfru01917_t",10.5420524538556,9.42149876045839,8.98472022363991,15.0639651654025,9.97110931143832,6.04313654179134 -"Tfru01918_t",0.329883678421914,0.176527500044462,0.37877338202845,0.227483884364619,0.380700755593293,0.321806595949622 -"Tfru01919_t",0,0,0,0,0,0 -"Tfru01920_t",0.212505168899108,0.113715860062369,0.487998084097362,0.293082103970606,0.429171087882153,0.932859255375041 -"Tfru01921_t",23.6803887660386,27.7448673295243,17.749879313857,18.7452364699794,10.5237128234645,13.4706333733895 -"Tfru01922_t",26.0353919545722,31.0616653084163,25.4833343289183,25.458933077257,19.1481842362381,15.2491638688642 -"Tfru01923_t",13.480175069344,14.2982216941457,14.3033077414124,9.58626214140532,11.2508527025479,8.27752954681877 -"Tfru01924_t",0,2.01851406664164e-08,0,0,0.185793846429271,0 -"Tfru01925_t",0,0,0,0,0,0 -"Tfru01926_t",6.65124785644834,6.40659365569403,5.90397438467487,6.56239746320542,5.22547724090234,8.45986816124322 -"Tfru01927_t",0,0,0,0,0,0 -"Tfru01928_t",34.0482584271946,44.1139889648556,36.8102651728573,93.0238724670932,70.391485854408,37.5695024269159 -"Tfru01929_t",31.791946687567,32.3313637652934,39.1161253977648,57.6361365798296,59.9076806073328,46.0358498799186 -"Tfru01930_t",328.157253754409,340.455256256497,392.052491588364,588.265647680022,679.619509813321,585.686453339727 -"Tfru01931_t",28.1760154488745,20.6574469594284,27.7664895790503,14.2281557674955,10.1133691921606,12.9855760196573 -"Tfru01932_t",0,0,0,0,0,0 -"Tfru01933_t",0.442625799638817,0.710574341590986,0.381168155782054,2.6097123804822,1.37918777421469,0.874371240944256 -"Tfru01934_t",0,0,0,0,0.0715687444077943,0 -"Tfru01935_t",0,0.103425621191694,0.110959687066616,0.133280435317921,0.0557621505508582,0.188543128301772 -"Tfru01936_t",24.5104270495978,21.2422669080987,18.6599943932916,18.9230040469563,26.4413979339342,18.9723017645902 -"Tfru01937_t",0.20490335797914,0,0.176452965774229,0.847793598314972,0.886754199003891,1.04940346045035 -"Tfru01938_t",3.32134047701071,3.2932641985039,3.36491702174111,2.22299367930263,1.77557061707523,2.93031099172266 -"Tfru01939_t",5.24468867472146,5.05177222601701,5.66612304398744,5.03046655526846,4.95213468683217,4.04650791138469 -"Tfru01940_t",16.6869926463805,15.241819627124,17.838669690597,22.0223097370477,21.41572127183,21.8916651436376 -"Tfru01941_t",0,0,0,0,0,0 -"Tfru01942_t",0,0,0,0,0,0 -"Tfru01943_t",0,0,0,0,0,0 -"Tfru01944_t",0,0,0,0,0,0 -"Tfru01945_t",2.68118223738662,1.07606656941997,2.69372346687254,8.32010206856981,6.9619638177114,1.30776723034846 -"Tfru01946_t",0,0,0,0,0.0512791567830177,0 -"Tfru01947_t",0,0,0,0,0,0 -"Tfru01948_t",262.899605630928,381.966007438864,251.692263592996,191.268609053411,200.217316086281,164.300832997433 -"Tfru01949_t",104.447538300716,96.0730264774623,118.214510478025,89.4897502892047,90.167135908254,74.3271935793249 -"Tfru01950_t",18.8299120349796,16.2770529351342,17.6186765179311,26.5940427230052,24.2901850632316,22.7844618321917 -"Tfru01951_t",18.7267712927066,16.4930244468786,19.4863073968011,32.8224735199032,31.2917162855924,33.3015030019074 -"Tfru01952_t",27.7661414753089,29.7164598379932,30.3484147490507,20.6200646369828,21.8757751974604,26.8258523818513 -"Tfru01953_t",0,0.353055000088925,0.7575467640569,0,0.380700755593294,0.643613191899243 -"Tfru01954_t",16.2700508769445,16.5356091094668,20.2440147773379,20.2209386225493,20.2934808517253,15.1173269381518 -"Tfru01955_t",0,0,0,0,0,0 -"Tfru01956_t",22.9378247487898,23.1766936406595,19.0986146731439,12.8702640377324,12.2080337832339,12.1262328317726 -"Tfru01957_t",2.58153045390752,1.3616950091226,1.46088803094906,0.839233785864909,1.14912133251075,0.323784336223236 -"Tfru01958_t",19.4858829843198,19.066266412391,19.7910251147142,24.4103851387538,18.6457165051259,18.8457741572921 -"Tfru01959_t",34.1371470566758,37.3838313311682,39.6699318673391,55.6572655328832,76.4483922138218,81.3344296191947 -"Tfru01960_t",0.623453630956938,1.37619397993846,0.805332645277557,2.74077986097187,3.23772219599194,1.93860114480227 -"Tfru01961_t",10.9104385417464,12.0616009564028,10.2496882126235,6.46355036731869,5.02214863355568,7.61963551566666 -"Tfru01962_t",14.5249099801173,11.6588643886237,12.6456096307864,8.25511499309227,7.78254571868013,6.77322381873953 -"Tfru01963_t",1.25622993303099,1.07137344419508,1.28464355456191,5.6849710915046,5.77633342715619,5.62951015232244 -"Tfru01964_t",0.164698938905559,0.259144565255666,0.189195893209564,0.984161099961289,1.13900079829283,1.42544672842145 -"Tfru01965_t",2.13178583898374,3.16799361386894,1.77566912535908,9.31044448680122,10.4293032832547,9.60826758801817 -"Tfru01966_t",0.0648728778157895,0.208288818585281,0.0558654177354702,0,0.0561496867322927,0.237316833306478 -"Tfru01967_t",0,0,0,0,0,0 -"Tfru01968_t",0,0,0,0,0,0 -"Tfru01969_t",7.34208334809289,8.38668801891909,9.42318149155652,5.91496331933618,9.53223505349393,9.76209773713058 -"Tfru01970_t",0,0,0,0,0,0 -"Tfru01971_t",0,0,0,0,0,0 -"Tfru01972_t",7.4712785666307,21.1895796397244,8.57854339534789,27.4778952813548,121.716652445882,241.24428619602 -"Tfru01973_t",1.93984884196948,2.9943829936494,3.08400920642702,1.23479707036994,1.54985103342776,0.98256756383197 -"Tfru01974_t",20.5252625066605,25.2875643813692,23.0190914441835,19.7497372334738,20.2441952931684,24.4463306127639 -"Tfru01975_t",0,0,0,0,0,0 -"Tfru01976_t",6.63842214270293,6.43098821687864,4.85425955231079,5.17959729896962,4.35886805177934,4.75223725496858 -"Tfru01977_t",0.0401963525222237,0.0645296698727125,0.0346151751040353,9.14724671866154,7.65408887561253,2.73504811667614 -"Tfru01978_t",0.785755667386882,0.735829361058289,0.902206902165972,8.53410313502561,6.91433281904515,5.22189518400247 -"Tfru01979_t",0,0,0,0,0,0 -"Tfru01980_t",24.2708902031759,36.7054337879713,18.9058404169657,7.93101726329124,7.40029275728132,7.46620884299401 -"Tfru01981_t",0.0626943110234682,0,0.0539893402742044,0.0648498834531975,0.0542640629241187,0.0458694476316252 -"Tfru01982_t",0.155095249694826,0,0.0670699038611856,0.24093706286582,0.135758376823578,0.0566200450460632 -"Tfru01983_t",0,0.0593604797684723,0,0.229486383346702,0.0640086657731682,0.0541065667485719 -"Tfru01984_t",15.0208426822366,11.8435428115274,10.4168673307539,12.6498316963769,10.1247125000191,10.2117583572305 -"Tfru01985_t",9.95244881612966,11.5130374419242,8.06642129253619,8.17515255518009,7.85410861974875,9.63737871842159 -"Tfru01986_t",0.3054922791689,0.245212745516308,0.131537665395334,0.394994744669476,0.793241938018026,0.838159906723332 -"Tfru01987_t",9.30727206214286,8.35546344962637,10.8624034178509,11.7807470494715,14.2035789193218,12.0958936976108 -"Tfru01988_t",60.4770889425765,62.4332863133565,55.1347371945428,25.5953340212188,25.5359638646208,18.6737308432352 -"Tfru01989_t",0,0,0,0,0,0 -"Tfru01990_t",0,0,0,0,0,0.399123765106349 -"Tfru01991_t",0,0,0,0,0,0 -"Tfru01992_t",3.50652007393868,3.2837185051749,3.27128454809266,1.51128424047452,2.02334175494453,4.59651751745086 -"Tfru01993_t",0,0,0,0,0,0.313597244012131 -"Tfru01994_t",6.22861744598435,5.97512069770749,5.75625949831301,5.578497207719,4.73363181819075,5.7241420995632 -"Tfru01995_t",10.2909475397998,12.2086854229518,10.8128419858877,10.3769805802998,10.1956237796102,9.09190407293106 -"Tfru01996_t",0.0660978574126258,0.0530554720826,0,0,0.0572099483228317,0.0483596064723664 -"Tfru01997_t",0,0,0,0,0,0 -"Tfru01998_t",7.7918561929673,8.07382606442817,6.46597461429004,7.91321680720636,7.84769989270223,12.0235192915005 -"Tfru01999_t",13.844821485077,12.8021420203636,10.4917979649542,12.9460373796746,13.8046059088173,15.6397581364415 -"Tfru02000_t",0.322496647875038,0.129430911740853,0.277718679337558,0.166792406578281,0.279131839993547,1.0617764653309 -"Tfru02001_t",0,0,0,0,0,0 -"Tfru02002_t",0,0,0,0,0,0 -"Tfru02003_t",0.762863807232213,1.071588047943,1.14964815385253,258.52652630115,212.529113643214,158.58124969961 -"Tfru02004_t",0.363232018159439,0.24990798647431,0.268112597779249,0.161023181891201,0.314389691308359,0.531507620487516 -"Tfru02005_t",12.4386691812014,9.35035674736096,11.2216621712118,6.73951080211608,5.38304605411763,6.3559638833387 -"Tfru02006_t",12.2370486826179,8.49885083891748,11.8084949616266,5.476063505645,6.30987905241612,5.65122967411944 -"Tfru02007_t",0.275443858267041,0.0552733647680201,0.118599534372842,0.356142802570839,0.0596015117363271,0.100762393157996 -"Tfru02008_t",0.446863706231104,0,1.92408819062324,0.462227892698323,0.386775767650633,0 -"Tfru02009_t",9.17234882864438,7.8644534387054,9.5144489981985,6.1454517346839,9.74329427590379,11.5151662950162 -"Tfru02010_t",1.34416602834316,0.924802354518646,1.40557391022443,0.297938893122119,0.415507681818966,0.702457826587174 -"Tfru02011_t",15.1250927853393,14.85866866785,15.3717289013338,12.6595436592916,12.3934536957135,15.2659860682021 -"Tfru02012_t",0,0,0,0,0,0 -"Tfru02013_t",10.6137306841872,8.08624471295747,10.0695322010347,7.07099799879404,8.56372898823886,8.02862665826347 -"Tfru02014_t",3.16861636230014,3.44491695459812,2.78335795180856,2.43130536110658,2.03874616097262,2.4422513839999 -"Tfru02015_t",0,0.41117990864015,0,0,0,0 -"Tfru02016_t",0,0,0,0,0,0 -"Tfru02017_t",0,0,0,0,0,0 -"Tfru02018_t",0,0,0,0,0,0 -"Tfru02019_t",23.4676153028833,24.0640222656588,23.7801823234819,18.7460028731619,22.6782117745982,27.3727396228622 -"Tfru02020_t",0,0,0,0,0,0 -"Tfru02021_t",12.4048935688932,12.5476509935566,12.1589438600729,9.80611202852912,11.6097734625888,11.6584387185686 -"Tfru02022_t",15.4970597927913,9.16571912852218,14.3989046342951,14.7643666696843,13.4132334179424,10.4430926889477 -"Tfru02023_t",0.519223589440343,0.333416588464695,0.268278303958346,0.644490807124484,0.449405712721379,0.151953176332207 -"Tfru02024_t",0.431929957693817,0,0,0.446780688058019,0.373850099322977,0.948047195265466 -"Tfru02025_t",40.7574989637052,38.0565226750056,44.4102299795674,26.6719154529165,33.1171878425097,31.6453691379631 -"Tfru02026_t",0,0,0,1.2182080910367,0.339784319244482,0.430829858596105 -"Tfru02027_t",32.935886347897,36.7819118274462,30.4180851226711,26.6621452651896,20.2441952931684,24.7955639072319 -"Tfru02028_t",51.578463878284,50.8103619197745,45.7628714956791,37.5888022136627,34.8350044873808,34.591963902287 -"Tfru02029_t",1.0245167898957,0.8223598172803,1.32339724330672,1.05974199789372,0.443377099501946,0.74957390032168 -"Tfru02030_t",101.826491878888,99.8219361776989,99.9983953313483,39.625290060388,25.4163227835197,22.0511698287424 -"Tfru02031_t",0.828002197140877,0.306748316984009,1.04212934297289,0.658823683300111,0.826920140087025,1.07179406823858 -"Tfru02032_t",11.7445237048245,15.3721214207484,12.2094785133956,32.2860943690793,31.3200689633062,27.8682890900453 -"Tfru02033_t",0.44215987774446,0.177456592149959,0.380766926144389,0,0,0 -"Tfru02034_t",0,0,0,0,0,0 -"Tfru02035_t",0,0,0,0,0,0 -"Tfru02036_t",1.29246733494535,1.55615780808426,2.782527537209,9.35833702755373,10.3477393837608,8.98335489770136 -"Tfru02037_t",0,0,0,0.284914242056671,0,0 -"Tfru02038_t",0,0,0,0,0,0 -"Tfru02039_t",10.5012970964309,8.0046966387068,9.95404185523146,11.4093805744456,11.9010068938256,13.4316632534261 -"Tfru02040_t",0.492840657955242,0.456454230710636,0.522351739837068,0.745071314403614,0.787514559404177,0.77663432993618 -"Tfru02041_t",0,0,0.125165598559574,0,0,0 -"Tfru02042_t",51.3548182470496,62.4886730462388,51.5950304011745,61.0716728520112,123.674877325317,156.155554328533 -"Tfru02043_t",6.29727137521261,6.88679590671312,7.01213673571479,6.10875842031222,5.86392816971887,8.52592153983878 -"Tfru02044_t",3.23586480297,2.10729703178077,2.78657190862936,1.57883073814107,1.84955272612003,1.20607312159317 -"Tfru02045_t",17.6625589977706,12.9050643024418,15.9901582461714,13.3510353050006,15.4835409734426,12.9225732249527 -"Tfru02046_t",15.4115587732448,11.9055015754124,17.7621206099355,10.3080007850296,15.3451285251073,11.3604386437719 -"Tfru02047_t",0,0.309328004665067,0.331861082419422,0.398618549666444,0,0 -"Tfru02048_t",0.073371508097334,0.176681672533584,0.126368062825212,0,0.254022163557446,0.21472509983014 -"Tfru02049_t",177.919786467998,110.030022844811,147.85853390804,88.0768260689475,85.831148872093,77.1037194693768 -"Tfru02050_t",10.3237103360629,9.94016998982044,10.9701226579705,14.0096219473525,13.4442733576148,13.5992311058925 -"Tfru02051_t",0,0.378550327754662,0.201441908108367,0.122308864991939,0.305628304890335,0.515730186460707 -"Tfru02052_t",0,0,0,0,0,0 -"Tfru02053_t",23.6041239871438,16.3999914014117,31.692232070326,54.7383955830479,45.253933321975,31.2896150475669 -"Tfru02054_t",22.863583551723,18.9923479319988,26.2138749312379,21.0372201037572,25.5418883523209,16.7278327375585 -"Tfru02055_t",73.3065971979209,59.1987140451562,72.4551234774035,45.2071111933246,52.5354088817798,54.8886469980734 -"Tfru02056_t",0.935895416195679,1.10474287380381,0.805948343018595,5.46676868113979,5.19384602273708,6.40428867129361 -"Tfru02057_t",0.0713161093136226,0.0572440619838579,0,1.40159425527878,0.987624371046778,0.991371932683511 -"Tfru02058_t",7.383724520928,8.75845328833882,8.0894379670617,6.53438571748136,6.39086522328976,6.9928510447002 -"Tfru02059_t",0,0,0,0,0,0 -"Tfru02060_t",7.0662930075656,6.30219640437332,5.40902521293458,8.93352553855878,8.15482323979422,8.61659672594853 -"Tfru02061_t",4.76999821761405,4.37575467085879,4.61067714740309,5.23608328970892,4.7183954598214,4.27335294273773 -"Tfru02062_t",8.18745197348853,5.7147038149987,9.50303896182395,10.6782477584375,12.0162708831121,7.03201955640762 -"Tfru02063_t",0.28453980278221,0.628085144104005,0.660263950670404,0.588645851497271,0.460518732269637,0.451660962223994 -"Tfru02064_t",45.3507343633477,39.6416938468999,54.7851881978418,64.1579327372114,54.3285486626126,47.5557732158573 -"Tfru02065_t",0,0,0,0,0,0 -"Tfru02066_t",3.18522755531554,4.15467092521706,4.62875433914862,2.26513573957377,2.06769225549722,2.1847770080466 -"Tfru02067_t",0.286724835397432,0,0.246913706373495,0,0,0 -"Tfru02068_t",8.54342814624889,5.8779810668558,7.00684900410982,3.78735881087439,3.69731411788063,3.72064526794054 -"Tfru02069_t",7.7949998323747,8.61984145693463,7.59282916896046,28.1721405965083,20.7887335923775,32.8073443041752 -"Tfru02070_t",6.24791131595433,5.40085280456398,5.87705472961992,9.39581320558169,7.40449902097299,10.1972925341244 -"Tfru02071_t",20.347021888576,18.3590640826588,22.2473531183091,27.827722242957,36.2308287875093,29.8087775689774 -"Tfru02072_t",62.7533769961687,64.5292356219058,63.5824394707057,40.9348524085459,47.5624876698561,40.6182293065295 -"Tfru02073_t",5.63828032023105,4.07316473256931,1.94216687160885,5.24892345265448,3.90409902380215,5.77524052059892 -"Tfru02074_t",60.9632816810036,54.9016141836345,61.461846610923,43.833929656631,56.6267100827631,45.1469019223623 -"Tfru02075_t",27.1109184003476,24.7838280391109,25.4362925662392,19.214684591292,18.9751267045813,20.8760810764888 -"Tfru02076_t",14.2635419050999,16.2909664326747,12.8241845058204,9.16435077011753,8.81050320087336,12.8262914671349 -"Tfru02077_t",10.9328572510769,10.1612130847493,11.3969278578814,5.9519756046075,7.47060044366162,10.1038454509096 -"Tfru02078_t",4.1945266576329,3.94404237617171,3.40571844069232,2.85117461915485,1.45220231163547,2.63045905105753 -"Tfru02079_t",9.08046234172027,8.11579937728369,7.34826168316212,7.06115557354708,6.18722630841963,5.9603910065441 -"Tfru02080_t",28.0034564204891,32.1111899946994,26.8712635286452,14.8969433244162,18.0053312692625,15.8052996853205 -"Tfru02081_t",20.8385114257301,17.253494447705,17.0973274063662,14.5962901741142,15.4800957630796,17.5271459661155 -"Tfru02082_t",9.80441468042064,13.4249769713448,6.95313517307145,9.14724671866154,10.1499874220079,7.3139201624065 -"Tfru02083_t",10.324611044333,9.1752976833644,11.5901329896621,8.70895508729919,9.68099463491885,8.04846065027184 -"Tfru02084_t",0,0,0,0,0,0 -"Tfru02085_t",0,0,0,0,0,0.516513106962742 -"Tfru02086_t",0,0,0,1.1188692338277,0.624153170114327,1.84658978019161 -"Tfru02087_t",0.0665692367444116,0,0.057326240861675,0.206574113694021,0.115235886399872,0.243522424034777 -"Tfru02088_t",0,0,0,0,0,0 -"Tfru02089_t",0.206076149071416,0.165413340188842,0.41408014045138,0.284215351847211,0.594553101539812,1.35695553173524 -"Tfru02090_t",0.18710551619476,0.150185979993284,0.161126316185822,0.193538627677694,0.161946201154385,0.273786458023954 -"Tfru02091_t",0,0,0,0.0828396985960769,0,0 -"Tfru02092_t",0,0.178868713572903,0,0,0,0 -"Tfru02093_t",373.550365447126,364.330880626976,354.799694364232,423.968443686921,307.036767980733,170.197616364308 -"Tfru02094_t",4.33237369000738,5.89665178399641,2.75757213328784,5.45553279633177,4.40195918518972,4.82349124198031 -"Tfru02095_t",0,0,0,0,0,0 -"Tfru02096_t",26.3290252974433,20.7166850464551,26.5516235921716,27.5926225760863,22.6387432826107,21.417721877645 -"Tfru02097_t",10.0422751894505,6.01547769999863,10.0031989071831,6.04648511911526,2.78920187840118,2.19322247373337 -"Tfru02098_t",0,0,0,0,0,0 -"Tfru02099_t",0,0,0,0.296920878680927,2.31889252951359,1.61013254670466 -"Tfru02100_t",2.40029647918421,2.89000735787077,1.27668910530766,10.2233933914453,7.88242514038921,19.3175902311473 -"Tfru02101_t",0,0,0,0.0739564628317316,0.0618841228241013,0.0523106892139385 -"Tfru02102_t",21.7154759800869,22.0083240917051,27.2004780660848,14.2940656948275,18.2259244244351,18.1345998965553 -"Tfru02103_t",16.7653628808278,14.0466004623872,18.3367146079148,17.3417940339956,12.0218810344198,10.2964047779074 -"Tfru02104_t",0,0,0,0,0,0 -"Tfru02105_t",0,0,0,0,0,0.174121982510985 -"Tfru02106_t",36.2226559585981,32.4031128003692,35.1393477556107,57.5563770804093,48.5388519215792,44.6220369388898 -"Tfru02107_t",8.59641064638067,10.9775473283463,12.113701278268,25.0592014757751,17.2484002801594,18.868343946702 -"Tfru02108_t",12.5847596086419,13.8351731302149,12.194848462059,13.3649406070878,14.0014969373324,20.1921513056202 -"Tfru02109_t",0,0,0.12138542947556,0,0,0 -"Tfru02110_t",0,0,0,0,0,0 -"Tfru02111_t",0,0,0,0,0,0 -"Tfru02112_t",0,0,0.0323839373175622,0,0,0.0275134556071521 -"Tfru02113_t",0,0,0,0,0,0 -"Tfru02114_t",0,0,0,0,0,0 -"Tfru02115_t",0,0,0,0,0,0 -"Tfru02116_t",0,0,0,0,0,0 -"Tfru02117_t",7.18304336707543,5.51500784525525,7.6648806879995,4.6033774146424,4.52772078933771,6.68346840119534 -"Tfru02118_t",18.1092060139425,18.5797339592988,19.6986714465622,14.6474550373381,14.3777779689383,15.6402178164365 -"Tfru02119_t",3.22472532971159,3.29435866982278,3.78678971913288,3.46555708184585,3.51607322974923,3.86071661920418 -"Tfru02120_t",0,0,0,0.607684222568105,0,0 -"Tfru02121_t",4.45051701666922,8.73239633313469,5.86714766511563,15.2314520246647,21.3052990546808,19.778161827716 -"Tfru02122_t",0,0,0,0,0,0 -"Tfru02123_t",0,0,0,0,0,0 -"Tfru02124_t",0,0,0,0,0,0 -"Tfru02125_t",0,0,0,0,0,0 -"Tfru02126_t",0,0,0,0.835565708221745,0,0 -"Tfru02127_t",0,0,0,0,0,0 -"Tfru02128_t",0,0,0,0,0,0 -"Tfru02129_t",5.87687268699346,5.87723208863627,5.55867313052531,4.78342259599732,4.16937180724306,3.45388524253728 -"Tfru02130_t",7.97265615253113,6.8770713331769,7.17308798543962,8.00060176880099,5.97365859838882,3.83068361524167 -"Tfru02131_t",0,0,0,0,0,0 -"Tfru02132_t",0,0.301491080552837,0,1.42457121028335,1.6254957746271,29.4959005426134 -"Tfru02133_t",0,0,0,21.3381502636393,6.46920323116718,68.6833764607922 -"Tfru02134_t",0,0,0,0,0,0 -"Tfru02135_t",3.90745938471848,3.23034754572381,3.0626789658961,5.4334467175116,4.98192611121194,5.06716549466865 -"Tfru02136_t",178.522050639326,223.756630283631,171.492231259167,242.131778482389,148.402345904206,50.7086743567616 -"Tfru02137_t",1.65020382943915,2.16750551840308,1.29188778513275,2.01729458884768,1.68799995738955,0.878072283233967 -"Tfru02138_t",50.9424625103458,46.0037416592704,52.125298255066,50.7610267617794,51.7576299983393,55.2234434997146 -"Tfru02139_t",2.70798066054891,1.971444299597,2.60314420272626,4.49476778416989,4.03360155888726,3.54783328832915 -"Tfru02140_t",10.5694873373168,16.1468214123461,11.6857122382462,44.2958392236483,48.5742645080979,71.9420586604194 -"Tfru02141_t",0,0,0,0,0,0 -"Tfru02142_t",0,0,0,0,0,0 -"Tfru02143_t",0,0,0,0,0,0 -"Tfru02144_t",11.1835712830686,10.4474444392511,12.063097573852,11.7654954386782,11.2655251760776,11.2262399137682 -"Tfru02145_t",1.02922360516322,0.206534471721239,1.88342598996382,0.133076330516516,0.111353513504317,0 -"Tfru02146_t",0,0,0,0,0,0 -"Tfru02147_t",3937.20360671303,2044.0842890011,4574.07332832697,1746.63117657717,1089.34915360557,223.527722370178 -"Tfru02148_t",0,0,0.620106136863719,10.1795788483391,3.32406145455173,0.526843369940381 -"Tfru02149_t",1.87391364142051,1.70574000827657,1.14883613133942,14.9389833618016,13.0208719700724,5.21012238791477 -"Tfru02150_t",876.923100043064,1070.64488357551,786.990987008746,2751.688561033,1869.03625998726,458.014760222155 -"Tfru02151_t",0.231665422186151,0.495886535520525,0.0665098870370553,9.34549753147755,3.54258409176349,0.226039390753272 -"Tfru02152_t",0.0476519437160791,0,0.0410355734358672,0,0,0 -"Tfru02153_t",0.34600649411634,0.44437235596036,0.834299854649155,0.644225366100133,1.25781773532512,0.556932173056141 -"Tfru02154_t",0,0,0,0,0,0 -"Tfru02155_t",0,0.0258464948321137,0.0278437078551381,0.0666146752221423,0.083611166329995,0.0235588577333759 -"Tfru02156_t",2.00821617780353,2.95525320791566,2.01760960865354,0.692421066352866,1.73817954545783,1.22440358219876 -"Tfru02157_t",46.912336561626,40.8067238303715,43.9483321297496,30.4552022759175,27.1827455395585,30.014480148862 -"Tfru02158_t",2.5946924877935,0.786801362586642,3.32681054894857,1.01391924849955,1.19775721595035,1.2655811906598 -"Tfru02159_t",0,0,0,0,0,0 -"Tfru02160_t",1.24344683473003,1.24761341382025,0.83656008287967,4.18014789918483,3.49779824657964,1.62049417673614 -"Tfru02161_t",0,0,0,0,0,0 -"Tfru02162_t",24.002964791805,20.2300515050641,27.3880210447719,11.1727084920622,18.0525889555925,19.7566263727337 -"Tfru02163_t",0,0,0,0,0,0 -"Tfru02164_t",0,0,0,0,0,0 -"Tfru02165_t",0.971218228571647,0,0.418183329291526,0.502305455649044,0,0 -"Tfru02166_t",0.441661762974189,0.430480505177896,0.407504971652838,0.489479030194994,0.327662835831704,0.761677421806408 -"Tfru02167_t",0.672083014007084,0.53946804000384,1.73629718279345,0.695190750448126,0,1.96688191396268 -"Tfru02168_t",1.14925276021132,0.830234671891739,1.18761777237922,128.98118406649,84.3520382789802,26.0658940440179 -"Tfru02169_t",158.272109139382,123.819882932211,181.728487890892,1568.03476899268,1020.72369174487,193.205870648785 -"Tfru02170_t",0.0743454661694225,0.119351336313247,0.128045514986609,2.69155710969466,3.53916941372349,1.90378503887011 -"Tfru02171_t",2.01624904202125,1.61840412001152,0.578765727597816,2.7807630017925,4.07197528082923,2.45860239245335 -"Tfru02172_t",11.6747944796997,8.98469336186184,12.5413060631225,10.0842497851147,10.4174562060629,6.51635304749563 -"Tfru02173_t",0,0,0,0,0,0 -"Tfru02174_t",6.37045511063109,4.95364610314342,6.17167245219815,4.3243500482772,3.79076913507824,2.9130360107288 -"Tfru02175_t",8.7314155633246,6.81911848486361,7.92551382789304,6.59064264982215,6.94458063714283,6.73353183491217 -"Tfru02176_t",10.517329611082,10.8614271439571,10.4928901021469,14.7263689539368,13.9877013497835,14.2167275781622 -"Tfru02177_t",26.0538510240565,19.2057450997741,23.3520981920198,24.7496707103026,25.3117812500477,29.9544911812094 -"Tfru02178_t",1.07361503861275,1.18493379422816,1.27125060006673,1.66579253343038,1.85850081324777,2.84742289930504 -"Tfru02179_t",0,0.21040095169106,0,0,0,0 -"Tfru02180_t",1.61514843803004,0.714054321821147,1.14910468776864,3.33562736067671,2.9355026495152,1.87120632165015 -"Tfru02181_t",14.4653628877989,12.3255942944952,12.7443446671109,14.6174214120068,13.8686007706463,13.8398147953433 -"Tfru02182_t",0,0.0974472615852378,0,0,0,0.0888223407895632 -"Tfru02183_t",55.9014717946641,52.5611343569718,62.1885175448948,153.18316902744,102.871119180839,41.4616379893909 -"Tfru02184_t",3.51507852600199,3.66793123523347,1.21080696179806,1.81796744408545,0.912726079309444,1.80023187776002 -"Tfru02185_t",0,0,0,2.0053579344758,1.95768042395474,1.89123261004239 -"Tfru02186_t",9.99100388714145,9.83045981066016,12.5818636465102,9.7788980265998,11.9949947788531,9.98217723523014 -"Tfru02187_t",1.93683865755498,2.13766154232516,2.50186914008417,4.75814995019714,1.67639986901024,1.59419463526628 -"Tfru02188_t",3.38813618509962,4.32662268669929,3.84606006059685,4.14183306967809,3.39908896446771,5.01410662195015 -"Tfru02189_t",0,0,0,0,0,0 -"Tfru02190_t",0.437716886788338,0.552116527865151,0.565411252443659,0.226383292441754,0.270613488345065,0.869249078303816 -"Tfru02191_t",2.56923230176609,1.97752214126054,2.72773960497237,4.51422565336543,4.2952040422635,4.99548454391172 -"Tfru02192_t",2.90693345229922,1.98333838285249,1.12649038703617,2.55584834786131,1.50962998584745,3.08388708471445 -"Tfru02193_t",8.80201852087342,8.12499158237241,8.00098139337162,5.86744230731375,4.90966585618452,6.58298661702765 -"Tfru02194_t",9.58861891946363,8.57923650216087,7.95424102259744,7.00650363843028,6.54805299620465,5.79251872709319 -"Tfru02195_t",3.61135816377674,4.0694234220776,2.67134911535854,2.20300182753105,1.80331936859981,3.01481968837014 -"Tfru02196_t",0,0,0,0,0,0 -"Tfru02197_t",1.02140275709966,0.614895182525696,0.43979158642817,0.528260448798083,0.442029448743581,0.560471670149341 -"Tfru02198_t",0,0,0,0,0,0 -"Tfru02199_t",0,0,0.0962044095311621,1.61779762444413,1.35371518677722,1.06256087465813 -"Tfru02200_t",0.851456521332238,1.59471126729355,1.46646721555609,2.34861740073742,2.94785855344537,1.03826114571584 -"Tfru02201_t",0,0,0,0,0,0 -"Tfru02202_t",1.06792851828111,1.71441114449961,1.53274821964902,2.57750807962285,1.23243803929354,1.04178067502335 -"Tfru02203_t",25.4892164817395,20.4597012125836,33.8210622634134,23.4061901330457,22.5120261047427,25.3091422814496 -"Tfru02204_t",12.1252090185594,12.3870355982465,14.1708103441365,9.77306584749218,11.3807047808428,10.8298324717516 -"Tfru02205_t",0,0,0,0,0,0 -"Tfru02206_t",0,0,0,0,0,0 -"Tfru02207_t",55.4447405041171,47.3811327597382,58.0036543327356,61.7123533328019,53.2809097639879,43.95870025224 -"Tfru02208_t",0,0,0,0,0,0 -"Tfru02209_t",74.9832419529951,94.7487471371759,81.7009713210493,135.040973146117,96.1960512284763,53.4344566395051 -"Tfru02210_t",4.17270083301891,7.59185155820356,3.11421956151206,16.40143741111,22.1512373420045,21.7773556338491 -"Tfru02211_t",0,0.117173770663744,0,0.150997122202058,0.0631744954981052,0.106802884146616 -"Tfru02212_t",0,0,0,0,0,0 -"Tfru02213_t",0,0.134062634228598,0,0,0,0.122196938024608 -"Tfru02214_t",0,0,0,0,0,0 -"Tfru02215_t",0,0,0,0,0,0 -"Tfru02216_t",22.2554750523462,20.286282137887,21.392799910832,28.9848613150661,32.7888598818334,34.2611526549854 -"Tfru02217_t",0,0,0,0,0,0 -"Tfru02218_t",0.0767218052707283,0.123166219209104,0.396414882013336,0,0,0.0561324747272856 -"Tfru02219_t",0,0,0,0,0,0 -"Tfru02220_t",14.1245421937667,12.8016844750294,12.5906223403122,38.5343289369859,41.1783587559711,37.3111953836417 -"Tfru02221_t",0,0,0,0,0,0 -"Tfru02222_t",10.75979056342,10.6337450219091,9.65537055411522,8.45592595703962,7.6349536534235,7.29254360821744 -"Tfru02223_t",5.04252544607782,6.26222809897252,5.44845992280221,13.0397472334261,9.59361592648264,7.58741961616667 -"Tfru02224_t",161.502706435083,178.466258266589,203.316407868745,114.616578046272,129.129757506518,125.579475186647 -"Tfru02225_t",2.11030850741674,2.66184888224939,2.50960019504256,3.32627153405874,4.34891413387076,3.38204874642748 -"Tfru02226_t",59.5615364726361,49.06152841793,66.074260713291,39.8174268929973,34.8936404623513,28.9247340359425 -"Tfru02227_t",9.25384279771883,11.7243999003612,9.21900052284795,11.2611892648749,10.0511577459447,6.83682630898154 -"Tfru02228_t",2.53984860006702,1.48980999456129,1.85070436195761,1.81881301033852,1.43736669001328,1.64383299535661 -"Tfru02229_t",3.00037059897563,5.29834682275489,3.6172857983661,2.48282410934715,2.59692301136452,3.51228913293044 -"Tfru02230_t",22.2142814215092,18.2967132666588,16.396005931135,14.9677735121669,15.8778294083141,12.5622029397161 -"Tfru02231_t",0,0.208772461352894,0,0.269036668195928,0,0.190294302868042 -"Tfru02232_t",16.8020749780403,20.8430829021466,22.3614026164675,7.1099052448383,14.5427685380073,10.0579186554528 -"Tfru02233_t",0.0765819296002256,0.430295838759245,0.13189738553771,0.0792149898152093,0.220397971785028,0.112060273156568 -"Tfru02234_t",31.2158257829069,31.9510372898431,26.1599222326133,30.3387484683787,25.0237169973268,32.6485230499213 -"Tfru02235_t",0.263355413076638,0.211390297858886,0.272146893921381,0.762748472465194,0.5014747884022,0.308288701323525 -"Tfru02236_t",42.226656865789,34.2500579084509,49.9681307121292,17.4103131745351,17.1241742331366,16.3114657887224 -"Tfru02237_t",2.44666889976986,1.19140468227888,2.55638572323088,0.921189157179696,0.642348448041688,0.977359608546642 -"Tfru02238_t",2.60998085525322,0.67886078876159,1.94216687160896,0.729017146202052,0,0.309387885032103 -"Tfru02239_t",0,0,0,0,0,0.230638123175901 -"Tfru02240_t",5.73115715079758,5.55400748475996,7.04197068900979,3.25328450268536,5.68644040426122,4.80675176678827 -"Tfru02241_t",138.908246740908,125.686706133142,155.793992306108,275.107973403706,208.422355744093,122.473695941173 -"Tfru02242_t",27.0033353908224,23.8644546975692,31.005306843186,16.0819288901144,19.8310484504507,18.359693194892 -"Tfru02243_t",77.7212450538067,66.1870446654692,73.5492491350992,77.2612641052198,72.0418124854326,70.7245836264697 -"Tfru02244_t",2.68310251269651,1.67442111780323,1.15605676858125,1.96159918346015,2.46209405141035,1.80371507391176 -"Tfru02245_t",0,0,0,0,0,0 -"Tfru02246_t",0,0,0,0,0,0 -"Tfru02247_t",1.76245545674273,1.88625188858599,1.01182819534819,4.86147378054484,2.03395368722464,0.429825593191227 -"Tfru02248_t",0,0,0,0,0,0 -"Tfru02249_t",3.88808355305872,2.78650847177622,4.18528935348791,3.01632350474872,2.76432796582039,1.42233196292444 -"Tfru02250_t",18.9479925870384,9.89513388836187,16.5136960360447,13.9321515918744,8.49645463502098,6.84800938283013 -"Tfru02251_t",1.88899072030474,2.47389190003139,1.79794087019658,2.87948831617038,3.09786792362069,2.47315033620928 -"Tfru02252_t",0,0,0,0,0,0 -"Tfru02253_t",0,0,0,0,0,0 -"Tfru02254_t",6.78635355535369,8.0300343717997,7.90966393237265,5.80939345920566,7.94991194845132,8.81741108929931 -"Tfru02255_t",6.53268870695548,5.24366290956334,7.70712526247157,20.812475815555,28.1582383130038,28.1037754105055 -"Tfru02256_t",0.0778594780087557,0,0,1.69126572787116,1.14563054069641,1.59501545425262 -"Tfru02257_t",14.4132979943815,12.2974118327314,14.5819799430461,12.0939002807019,11.3410914953587,15.0067662563502 -"Tfru02258_t",3.13992271986307,2.91241051568372,3.09452190392263,3.17570525614661,2.08357776493522,2.32280749343869 -"Tfru02259_t",106.823539429211,150.126747160657,98.695771998676,51.6898295179538,43.2522004996898,30.6000621118389 -"Tfru02260_t",3.56456757757347,3.18634691015646,4.04633705507345,5.19549500220988,6.03027059920486,6.5791915532574 -"Tfru02261_t",8.87578919206939,10.9351629757272,11.3762305206776,12.8106403676587,11.7914342137815,8.60812877175314 -"Tfru02262_t",0,0,0.516755114052301,0,0,0 -"Tfru02263_t",2.63002073971436,1.6888534351302,1.42361873996739,2.56499270688765,1.82109806879511,1.75928614887664 -"Tfru02264_t",0.623453630956938,0.500434174523077,0.268444215092519,1.61222344763051,1.07924073199731,0.684212168753741 -"Tfru02265_t",7.96822792016942,7.5702794582144,7.73177497278163,6.28748761184251,6.05257769126259,6.3969026708493 -"Tfru02266_t",0.873894349217553,0.56116647725646,0.903067189607358,0.361576326604513,0.15127706862341,0.383623813063384 -"Tfru02267_t",13.2832636303303,14.4442889624687,12.6043848821544,15.088045079797,12.4082097106439,13.4225607974071 -"Tfru02268_t",0,0,0,0,0,0 -"Tfru02269_t",0,0.271909294423325,0.291716596642879,0,0,0 -"Tfru02270_t",16.0418587546706,14.7381510198164,22.8022156921897,119.752471133152,105.669275293876,90.5007015848506 -"Tfru02271_t",0,0,0,0,0,0 -"Tfru02272_t",0,0.1061109441652,0.0569203115400739,0.0683704514770139,0.171629844968495,0.193438425889466 -"Tfru02273_t",0,0,0,0,0,0.230206216578194 -"Tfru02274_t",56.5371038169293,41.783238908975,59.5202275945498,27.9691631595563,17.0207966046323,20.4178253812236 -"Tfru02275_t",0,0,0,0,0,0 -"Tfru02276_t",0,0,0,0,0,0 -"Tfru02277_t",0.318824959284431,0.383871945068223,0.411835195260535,0,0,0.466527968321652 -"Tfru02278_t",30.9310932658511,24.5212745516308,30.5825072044152,26.2671505205201,22.9709644551053,25.8432637906361 -"Tfru02279_t",0,0.0442767596959846,0,0,0,0 -"Tfru02280_t",0,0,0,0,0,0 -"Tfru02281_t",1.85468534164275,2.04009786232905,2.0704007022569,1.84739978700687,1.9025699249274,1.45747075630822 -"Tfru02282_t",1.27772436154293,1.79480811832278,2.4757089114331,0,0,0.467414903622644 -"Tfru02283_t",0,0,0,0,0,0 -"Tfru02284_t",0,0,0,0,0,0 -"Tfru02285_t",0,0,0,0,0,0 -"Tfru02286_t",0.283978738382358,0.303925656414578,0.652130397452925,0,0,0.034628202719086 -"Tfru02287_t",0,0,0,0,0,0 -"Tfru02288_t",1.0245167898957,0.8223598172803,0.441132414435573,1.05974199789372,0.886754199003891,1.12436085048252 -"Tfru02289_t",3.33080788961686,3.2677028862856,3.82444313484232,2.67970002991627,1.92195183220227,2.70771188662457 -"Tfru02290_t",0.133983557512742,0.0649304242384277,0.129196022147911,0.181923608849863,0.0507423896150168,0.0857851497925718 -"Tfru02291_t",0,0,0,0,0,0 -"Tfru02292_t",18.5123028402702,20.1898907820208,19.9371788995256,17.4550465944356,15.0388134973459,10.7156195257681 -"Tfru02293_t",45.881203623033,39.3603291086262,42.9261597961276,22.5638628821919,18.3344993721083,19.9827394070734 -"Tfru02294_t",1.96583125273862,4.29291067726846,1.74267037774273,10.884782915737,8.98288716802358,10.6812991095391 -"Tfru02295_t",0,0,0,0,0,0.574439781729902 -"Tfru02296_t",0.87057385255386,0.873490997629334,0.374848269261316,3.60202461460247,1.50702268017242,4.29936946972072 -"Tfru02297_t",0,0,0,0,0,0 -"Tfru02298_t",2.90805150362703,3.11231561616852,2.99121710249967,2.17247109568212,2.02759758195313,2.60044483880829 -"Tfru02299_t",34.6529950697402,31.3644209381324,36.2614084316575,28.1862834935501,28.836334833703,25.3910130861719 -"Tfru02300_t",0,0,0.11251277755433,0,0,0 -"Tfru02301_t",0,0,0,0,0,0 -"Tfru02302_t",0,0,0,0,0,0 -"Tfru02303_t",8.5855199234334,6.43579904300613,5.98807446352071,3.44953180733309,6.57126802538863,5.8142624160087 -"Tfru02304_t",8.13976138575029,7.66289829738461,8.30764202496849,2.39075766510472,3.30517474174178,2.2056839650614 -"Tfru02305_t",12.219691166756,9.8085098206523,12.3316561308126,13.6273186910969,12.0638878073575,14.2487184142967 -"Tfru02306_t",34.3979495442147,33.1857800280436,27.9129140346792,27.3697145912708,28.9137727407489,38.2341710731011 -"Tfru02307_t",0,0,0,2.14324502713034,1.30428420301918,0.137814035485152 -"Tfru02308_t",0,0,0,1.34379655403018,1.874068152534,0.316830205290607 -"Tfru02309_t",0,0,0,0,0,0 -"Tfru02310_t",0,0,0,0,0,0 -"Tfru02311_t",0,0,0,0,0,0 -"Tfru02312_t",0,0,0,0,0,0 -"Tfru02313_t",0,0,0,0,0,0 -"Tfru02314_t",0,0,0,0,0,0 -"Tfru02315_t",0,0,0,0,0,0 -"Tfru02316_t",21.2929526379245,28.2785666200258,18.3364717889809,63.4721969890535,52.4410904876356,54.9503299830289 -"Tfru02317_t",14.6105003080778,23.1885965868682,14.4405480488356,53.238422107625,51.158356872177,48.4675076496536 -"Tfru02318_t",33.186943419872,50.6892938389523,33.8048830818483,135.35034365875,127.044053052774,91.850721456122 -"Tfru02319_t",0,0,0,0,0,0 -"Tfru02320_t",0.740179531025969,0.891191696259708,1.59351797285097,1.24414644246112,1.4414638741517,1.48924153764351 -"Tfru02321_t",4.7229801191915,5.42704039376882,4.62030294786902,6.47234577868803,5.5187514652888,6.41668580049409 -"Tfru02322_t",20.0082980366084,19.1053411883518,16.9667301831855,5.94937459560434,5.34894266289164,9.08769639093567 -"Tfru02323_t",35.4951591894123,32.3360856935166,32.8358784649239,10.9024379709508,9.12277013587767,7.48467518180983 -"Tfru02324_t",1.98137681064735,1.03376835521321,1.62095354172317,2.04950103366237,1.1147169529931,1.15971810993165 -"Tfru02325_t",0,0,0,0,0,0.558773258636267 -"Tfru02326_t",1.6040167402663,2.21291335079603,2.15828508256068,38.6793183145312,27.1158428991345,26.0016273370536 -"Tfru02327_t",0,0,0,0,0,0 -"Tfru02328_t",0,0,0,0,0,0 -"Tfru02329_t",12.4557971869338,14.2525073695204,13.2367556028743,47.6984190092982,60.3272588508452,47.504541506191 -"Tfru02330_t",0,0,0,0,0.251604997641242,0 -"Tfru02331_t",18.7078987472698,18.1659900921485,19.6099730520567,11.9585564899933,11.7045637643333,9.07365770581222 -"Tfru02332_t",2.52112456913347,3.78619873280262,2.69633113721801,17.7919704447925,21.1172829578855,17.4636931839708 -"Tfru02333_t",162.099317294687,172.297061276877,167.638090743922,171.500801914641,175.217942035773,155.42266229225 -"Tfru02334_t",0,0,0,0,0,0.0754172513207088 -"Tfru02335_t",0,0,0,0,0,0 -"Tfru02336_t",0,0,0,0,0,0 -"Tfru02337_t",17.2138024464075,18.8275172864078,19.4183270503296,145.198006962649,164.539550811454,116.666435407015 -"Tfru02338_t",40.1603643585526,47.5285838816248,56.7146146825528,484.958678395538,552.753481458149,406.671598626787 -"Tfru02339_t",0.0302195599897293,0,0.0780709165116193,0.187551461497737,0.183092413751163,0.176877870003965 -"Tfru02340_t",15.0205663250405,17.3841052434638,15.6423169659317,6.86518932523246,10.3552979954363,16.5482853378709 -"Tfru02341_t",4.77273368341149,6.54974178234609,6.2313658835725,34.3454807307594,34.4246972185078,30.8263983613049 -"Tfru02342_t",0,0,0,0,0,0 -"Tfru02343_t",0,0,0,0,0,0 -"Tfru02344_t",0,0,0,0.24375552265718,0.101982951358091,0 -"Tfru02345_t",30.4908429709258,30.341395049506,27.8374305706508,15.7221424762142,5.92934150975736,4.54219408254629 -"Tfru02346_t",0,0,0,0,0,0 -"Tfru02347_t",0.375046324872533,0.301042433111538,0.968915838849562,1.16382380125828,0,0.713964041281681 -"Tfru02348_t",0,0.41117990864015,0,0,0,0.37478695016084 -"Tfru02349_t",1.63444312784917,1.8367102533809,3.09650924374231,2.02876678195995,0.848799739124347,2.39163656911976 -"Tfru02350_t",0,0,0,0,0,0 -"Tfru02351_t",0,0,0,0,0,0 -"Tfru02352_t",8.13003646175298,5.23241669268668,6.05509043842516,4.20478276583635,3.58180662945512,2.81335278193969 -"Tfru02353_t",2.74139124201565,3.0522533849793,2.85575194608292,2.74417401559846,2.06660399641538,4.20550409338374 -"Tfru02354_t",8.77193142182598,16.0668477265415,13.0800243304821,21.3745579421001,29.8091092685471,37.6888068311706 -"Tfru02355_t",0,0,0,0,0,0 -"Tfru02356_t",52.5064854821547,53.0811036113426,49.1266517211291,39.9264958125362,42.9896039044116,49.0059260777876 -"Tfru02357_t",11.8866924917384,12.3212934628659,11.8587799590418,10.4897680873305,12.2548728386085,12.7511618175434 -"Tfru02358_t",21.4625050146034,22.0020268194103,22.5486282613827,23.0884519365924,22.9287450697181,19.1573580626739 -"Tfru02359_t",15.0538825428605,12.4732494829105,23.836449769617,27.1244946050484,32.7842766290687,21.3173617894952 -"Tfru02360_t",8.45033127625624,9.04389002742459,8.30793217731638,8.66803220070987,9.50826463843904,10.9740634895377 -"Tfru02361_t",8.12068083866695,7.44950112960934,7.74240688719373,11.1998509880965,13.8064261363897,17.2583136911809 -"Tfru02362_t",8.16191517172613,8.98552782195407,7.96479410810566,30.6139216384816,41.0540953554628,35.6193864071115 -"Tfru02363_t",0.686199110151846,1.88845288262267,1.26626107294225,2.12937656986345,3.73326621937694,1.29098141992392 -"Tfru02364_t",0,0,0,0,0,0.2259744846558 -"Tfru02365_t",0,0.166914616378675,0,0.215096148087338,0.179984763164156,0.608564948776017 -"Tfru02366_t",0,0,0,0,0,0 -"Tfru02367_t",0,0,0,0.189735466871801,0.317527704446808,0.939422311756865 -"Tfru02368_t",7.76504362764259,9.31959532365016,8.53373762291914,7.80253703378788,8.96121320824355,8.44062441277722 -"Tfru02369_t",0,0,0,0,0,0 -"Tfru02370_t",18.2286666579556,17.9398569950846,20.6117039831746,15.2482876904481,18.1098631132417,14.2645327521594 -"Tfru02371_t",5.43232158363302,4.97240819750879,6.81190519035396,10.5974199789371,12.0021149725643,12.8647799636604 -"Tfru02372_t",15.3204286373845,15.533572841345,14.5819799430461,14.3875710235936,14.7434189439663,16.7397343498353 -"Tfru02373_t",2.89690954384302,3.93511169860388,2.494679860946,5.99302371222653,5.5933726398707,5.38023070098266 -"Tfru02374_t",0,0.51871926936142,0,0.334226322412633,0.279668631993535,0 -"Tfru02375_t",0.237989735896452,0.191029759254914,0,0,0,0.174121982510985 -"Tfru02376_t",2.10633538674796,2.47104454257031,1.74411079960062,2.84914242056671,1.82310506487589,3.85267973839397 -"Tfru02377_t",2.81206282080159,3.38578267867705,2.42161392359611,6.18108930989054,12.1696810574593,12.8587991268573 -"Tfru02378_t",0,0,0,0.257097171086641,0,0.363698578854306 -"Tfru02379_t",25.3237020890009,20.9721427086316,33.9228716019547,38.2521226416755,16.3519171433541,8.82273586024561 -"Tfru02380_t",10.0490881305559,13.7125548479514,15.2306770457756,11.4340583983269,12.5248727055478,14.2634229740637 -"Tfru02381_t",6.56953183283831,7.19077660133722,5.48593106862058,2.05921430870343,2.58461531937153,5.68042022092116 -"Tfru02382_t",14.3025930701803,11.7033355814601,14.8278822809286,6.89445372513994,10.3361828287197,10.05791888068 -"Tfru02383_t",0.143853384882615,0.346404991525606,0.247759301258335,0.595197560460854,0.996080059155056,1.15773229125026 -"Tfru02384_t",0,0,0,4.63872831818246,1.81137690472681,1.74989494167623 -"Tfru02385_t",1145.63258144985,1708.69202209919,1209.76927322856,6127.60030333143,4536.53944286856,1822.01130307496 -"Tfru02386_t",0,0.793335353140996,1.27668910530766,4.0893573565781,2.13864247995056,2.16935505269569 -"Tfru02387_t",1.76245545674273,2.35781486073249,0.505914097674097,1.82305266770431,3.55941895264312,2.57895355914736 -"Tfru02388_t",9.99654730666798,11.7819690466046,8.23662205677259,10.4259642503919,8.56764636426721,12.5598538464963 -"Tfru02389_t",1.93572296708404,2.79678131406849,2.00034237697974,1.80204975678701,1.50789078079463,1.98274386536702 -"Tfru02390_t",0,0,0,0,0,0 -"Tfru02391_t",0,0,0,0,0,0 -"Tfru02392_t",0,0,0,0,0,0 -"Tfru02393_t",2.01624904202125,3.23680824002304,1.73629718279345,2.08557225134438,4.07197528082923,4.42548430641604 -"Tfru02394_t",0.114455554184533,0,0,0,0,0.0837398635236754 -"Tfru02395_t",0,0,0,0,0,0 -"Tfru02396_t",0,0,0,0,0,0 -"Tfru02397_t",0,0.557301694355244,0.239159391627881,0.682379817544652,1.20188172426974,5.28294729086222 -"Tfru02398_t",0,0,0,0.351500941323848,0.359484174157982,0.138123729946916 -"Tfru02399_t",2.34665856903485,2.63706444200499,12.1249803297375,21.3606096558689,10.1555648489272,26.783657354511 -"Tfru02400_t",64.6000370119794,24.9528312788481,102.642116877984,558.881914362121,137.946300322298,6.43497016232835 -"Tfru02401_t",5.75413539530462,7.66709714576674,6.34263811221338,6.42813365297722,8.16785648507146,8.58826863327469 -"Tfru02402_t",6.13374328448638,4.92343713292195,5.65937804178101,2.71912940267905,6.35179604866672,4.48767060010059 -"Tfru02403_t",0,0,0,0,0,0 -"Tfru02404_t",0.0697181549970518,0,0,0,0,0 -"Tfru02405_t",0.0950343628636283,0.305128981977306,0.409195226060147,2.06433905019568,8.96584731979273,35.6692032702848 -"Tfru02406_t",0,0,0,0,0,0 -"Tfru02407_t",0,0,0,0,0,0 -"Tfru02408_t",2.81811780647648,3.75086046478945,2.44352739101718,2.75744291383043,2.37325330504033,1.89466186228182 -"Tfru02409_t",5.58762132552217,6.89660811536516,7.15398673948074,3.54896094977242,3.98780709797082,4.37499258974217 -"Tfru02410_t",0.469331713806969,0.376723491714998,0.808332021982502,0,0,0 -"Tfru02411_t",3.86021078272673,4.07699546656497,4.37398524591499,1.78631238822713,2.02227136556389,1.85807315073693 -"Tfru02412_t",0,0,0,0,0.173541394554461,0 -"Tfru02413_t",2.38086088016248,4.09515212653753,2.19673226621763,9.14724671866154,8.83164101032215,8.83404706006643 -"Tfru02414_t",283.742557119375,311.180304772053,309.399465125547,188.395319522789,154.337290114377,127.060182961247 -"Tfru02415_t",0,0,0,0,0,0 -"Tfru02416_t",0.0334303130805601,0.134169329520463,0.0863657572233592,0.657014736457783,0.260415678020243,0.635929787300366 -"Tfru02417_t",0.0373545472527556,0.0899513183863734,0.0321679484070404,0.193194406018863,0.290984703808302,0.437279216194772 -"Tfru02418_t",0,0,0.108193991975225,0.216597317615365,0.253737243383965,0.612812161778442 -"Tfru02419_t",1.41285239072292,1.48301369377586,1.68463504193248,1.91110005829733,1.78727431054083,3.89623277036547 -"Tfru02420_t",9.78083388607288,12.267009748412,6.69310677869191,11.833418442177,14.5881205337168,17.5066802416086 -"Tfru02421_t",0.0361957676740403,0.0581072856673715,0,0.0374402601582441,0,0.2648214555208 -"Tfru02422_t",47.5353803358045,43.8053392062459,42.9655325122317,23.5268846680556,15.4550680247356,16.2604636189468 -"Tfru02423_t",17.8745482492441,15.1725386288215,14.9694061230488,14.7912925663463,12.1060815274648,10.8871621926509 -"Tfru02424_t",0.3054922791689,0,0,0,0,0 -"Tfru02425_t",5.84641048636397,4.69280065171148,7.22362670779219,12.2263123690431,11.0005815912737,9.71724470780101 -"Tfru02426_t",0.224326773755534,0,0.482948704722523,0.580099090969857,0.776649872558815,0.246188490626346 -"Tfru02427_t",49.6015023877662,53.3454151992331,43.9689900512233,26.5504312271638,31.3432095244943,34.5138238496588 -"Tfru02428_t",49.5592549619029,42.7201360121224,56.4769690045499,84.7678095099943,78.5586901150232,72.8536812655976 -"Tfru02429_t",0.334037283385477,0.268125268457195,0.287656922335721,0.172761120928995,0.144560326676579,0.244393876049216 -"Tfru02430_t",0,0,0,0,0,0 -"Tfru02431_t",0.0787351234971391,0,0,0,0,0.115210983742039 -"Tfru02432_t",0,0,0,0,0,0 -"Tfru02433_t",0,0,0,0,0,0 -"Tfru02434_t",0.343952412575015,0.345104938674435,0.518341874894613,0.177889137824533,0.372128169489862,0.0629120366697827 -"Tfru02435_t",0.121930880655221,0.0978715602568717,0,0,0.105535332827749,0 -"Tfru02436_t",0.0791803739598939,0,0.204559046090765,0.655222196624201,2.05599936809573,2.5489751483135 -"Tfru02437_t",3745.47493486481,4543.99903226928,4063.82034051164,7759.0435160724,6900.40325422895,3187.3252288877 -"Tfru02438_t",14.2245450166805,15.8818566876412,15.0125419512307,29.3166054923366,26.3824896635531,25.0789964027423 -"Tfru02439_t",36.0044471877632,35.2195563345851,37.1236873935746,27.9069429891051,33.8223253000638,30.2056865432485 -"Tfru02440_t",33.4725172139175,36.6412609801298,33.7640330816116,21.3478413207487,22.7459647308004,23.3890546625276 -"Tfru02441_t",0.810128994903061,0.455192415736637,1.53481750364855,0.167596612974512,0,0 -"Tfru02442_t",0.0700670365066284,0,0,0,0,0 -"Tfru02443_t",0,0,0,0,0,0 -"Tfru02444_t",49.6424953649462,66.5577452115692,59.8966154925184,54.4528469437206,42.7311877325187,33.7259581514865 -"Tfru02445_t",32.095117131183,36.6093425360305,31.9058184360399,39.7218575671636,61.1147190182119,69.8691296685902 -"Tfru02446_t",6.46610480106767,4.9936181557767,6.03232500486475,6.33373497283416,4.66386173470268,10.2859896035979 -"Tfru02447_t",0,0,0,0,0,0 -"Tfru02448_t",0,0,0,0,0,0 -"Tfru02449_t",0.0841787342399273,0.202705926904763,0.144981394724316,0,0,0.369529417793854 -"Tfru02450_t",3.42687569030626,1.00024976539409,3.3087657488196,1.28898161424897,0.808930282898481,0.911719057993242 -"Tfru02451_t",20.236076156626,21.0422068574897,21.2548545086804,20.6146892291004,19.5053560488922,21.9838535145439 -"Tfru02452_t",42.5481461674428,38.5900316607186,37.915616123943,32.0637332100674,38.5357741334452,49.1142663712536 -"Tfru02453_t",9.99526665012872,9.57356975803583,10.776088026181,7.82022178740498,6.79143758145387,6.81885458120404 -"Tfru02454_t",1.97174396445979,2.03487525617053,1.75861338059982,3.56918972970406,4.0227273470319,3.65802116317923 -"Tfru02455_t",34.0865069388457,34.9750810710102,38.4228443654792,29.8532870181772,27.9026330829148,26.5858440588734 -"Tfru02456_t",69.100685330781,62.8305353912519,67.407441839964,54.5712875911958,58.3199775249317,50.5565850449045 -"Tfru02457_t",29.656072363283,26.5790967256983,31.0612630006362,26.9588725029963,31.3374228897574,26.2898739917912 -"Tfru02458_t",4.35382244581954,3.00251372703362,3.85491771213334,3.36178008966868,3.07839632880475,2.332980372972 -"Tfru02459_t",1.25139588040885,1.07143602807523,1.7242275900878,29.1676357632793,36.32081796635,38.8200377850807 -"Tfru02460_t",6.32869898869102,9.46260410134939,7.37349246935442,10.7821312872849,13.6405586830525,20.5186167219518 -"Tfru02461_t",1.91513016956187,0.973584038999018,0.824609224552818,1.58478134639425,2.04438620043906,2.14847473557247 -"Tfru02462_t",5.30477894561975,4.9532342602682,5.22082486362925,5.03923707761316,4.87257719658839,5.78215124655357 -"Tfru02463_t",0.601506277599862,0.321878305570332,0.345325613209708,6.63666587702413,5.72686602029721,6.3078701015137 -"Tfru02464_t",10.517939405617,9.40435569175063,10.8346595228566,10.466421760497,7.7208043887914,8.86421623486588 -"Tfru02465_t",0,0,0,0,0,0 -"Tfru02466_t",25.3596541061636,27.6854328051098,30.2414079789336,19.9165673119677,22.4464475939159,18.9739967290122 -"Tfru02467_t",7.83277735894665,9.2459101942849,10.6468558233609,9.61129808327371,9.50464327012763,9.94452978909402 -"Tfru02468_t",5.8827093097237,6.6849894824076,3.30137806932429,5.05941340929903,3.66143669266123,7.35066018379969 -"Tfru02469_t",607.111361912917,1133.70181781852,473.602484775512,335.202482738695,463.131280956688,458.75279139972 -"Tfru02470_t",35.0713175756401,44.9287826488761,39.20168580532,11.9537883255236,8.43689341970927,12.8664897961915 -"Tfru02471_t",0,0,0.212157524831184,1.27417659570799,1.06618540056186,2.16299330767312 -"Tfru02472_t",10.8116309477077,10.7996461800319,13.0346428196807,5.21890101155284,7.07036427118069,4.27735878677366 -"Tfru02473_t",10.0310897636293,7.54852668091121,7.01861423555868,3.89099300714312,3.25584377540635,2.29347238155254 -"Tfru02474_t",6.51144257651036,6.40515815130933,5.00262929562043,3.43369291718754,2.54166933027559,5.46459878395607 -"Tfru02475_t",13.2893380461772,10.7918560295452,11.3772171271635,7.39564628317316,8.10547478293936,8.10247088368069 -"Tfru02476_t",2.78487436811428,3.35304721078929,3.5973007939608,1.44031232862903,2.4104036790603,4.92399650542805 -"Tfru02477_t",0,0,0,0,0,0.190294302868042 -"Tfru02478_t",7.01973498629345,5.63460554050276,10.1401003512306,9.60337627201798,9.01573271871341,10.4374629893849 -"Tfru02479_t",0.267123614535604,0.107207480154189,0.34505110954261,1.79600154174038,3.6992734788334,3.51787305842543 -"Tfru02480_t",0,0,0,0,0,0 -"Tfru02481_t",77.3825199414537,80.384310616273,87.6772584241086,140.419323800381,103.821412249735,74.6942945572206 -"Tfru02482_t",0.20194802108521,0,0.173907971075562,0.835565806031583,0.873964474979796,0.295505095319124 -"Tfru02483_t",18.9570184807316,15.2814596711585,20.4409785713193,15.7540816196042,20.8254693949284,14.817998993823 -"Tfru02484_t",29.5663571565961,29.4883219575258,27.8837395094443,17.9161109400968,20.7208197203877,22.6811317284467 -"Tfru02485_t",14.0737442350404,15.1118435196035,18.49839026941,35.5640382158689,45.733321628568,37.4390408494248 -"Tfru02486_t",0,0,0,0,0,0 -"Tfru02487_t",0,0,0,0,0,0 -"Tfru02488_t",0,0,0,0,0,0 -"Tfru02489_t",0,0,0,0,0,0 -"Tfru02490_t",0,0,0.098496549989699,0,0,0.0418414294257166 -"Tfru02491_t",1.1178453408688,0.276083950939548,2.22146517811977,0.622611982385867,1.04195887457161,1.13241666005609 -"Tfru02492_t",0.144100131683443,0.0578331946972424,0.434322480078934,0.149054620629991,0,0.158143378627044 -"Tfru02493_t",0,0,0,0,0,0 -"Tfru02494_t",1.46814250668549,3.66628765140887,2.80954236766734,8.2680453350232,10.8717786650691,8.47382378188897 -"Tfru02495_t",2.5361623176286,2.6718935950126,2.86652836852097,3.77108190193877,6.85979663380368,6.61039322661043 -"Tfru02496_t",0,1.44795869668372,0.221919374133233,0.533121741271685,2.45353462423776,19.2313990867808 -"Tfru02497_t",0.812479465874734,0.913026180113911,0.419801059772344,0.168082870072117,0.0703228668455697,0.475551720126713 -"Tfru02498_t",0,0,0,0.205240538089949,0.34347588246726,0.522612695736797 -"Tfru02499_t",0,0,0,0,0,0 -"Tfru02500_t",12.6316318295971,21.5658464732123,16.4029666274612,131.281546879883,109.157537174756,69.8266550772214 -"Tfru02501_t",0.0836756740751469,0.0671648456344468,0,0,0.0724241477274094,0 -"Tfru02502_t",0,0,0,0.261743505503869,0,0.185135722368608 -"Tfru02503_t",32.4467322050714,32.1509590483456,36.3408433923101,46.0725294285526,39.4523257485616,47.7162964441616 -"Tfru02504_t",6.79125800248228,6.29917771416143,6.54143898867217,6.03608735566768,5.39911179369555,6.36733853291218 -"Tfru02505_t",0.136159443713853,0.0273231381754395,0.146567495882159,0.140840913820559,0.294626597724145,0.224143248961669 -"Tfru02506_t",0,0,0,0,0,0 -"Tfru02507_t",7.36150407184749,8.37994698564758,9.60511364410965,8.35299560952656,8.64997404530189,8.09523889375553 -"Tfru02508_t",7.23534345400026,7.91986991112531,6.95551321060729,6.61096467394175,6.40160160505775,6.35236981937683 -"Tfru02509_t",7.04881585924816,7.04356816102065,8.7954551946709,6.99357133541503,8.21766048802921,7.47263569806989 -"Tfru02510_t",0.730525015403891,0,0,1.13346318035589,0.316147149210083,0 -"Tfru02511_t",7.39864113612179,8.19930117820153,10.1941690681384,5.97429551312582,6.44509074639646,8.9054490089354 -"Tfru02512_t",27.0881515208289,27.4916630435851,26.075134376955,13.203711252909,12.8790863832358,14.8775851523211 -"Tfru02513_t",4.80059295836842,7.29382809367384,3.46964148007081,3.90158074326584,5.26804382306189,8.02808944671056 -"Tfru02514_t",8.70288384668529,9.57859627488263,8.91168805310483,10.8769750685565,9.98225049861177,11.1084639576618 -"Tfru02515_t",0.387144593416808,0.621506958681886,0.500085594244935,1.01713302144608,1.50789078079463,3.96548773073405 -"Tfru02516_t",0.0736502426400766,0.0394117504482668,0.0845654190151185,0.0253941682721463,0.0424978634239153,0.053885207328794 -"Tfru02517_t",8.32178260471885,3.49890827918316,5.11880065807316,9.42770475484692,5.48783730704295,7.82809724203867 -"Tfru02518_t",0.37063401516815,0.495834595713122,0.319172276326914,0.127792417393066,0.213864247995056,0.361559175449281 -"Tfru02519_t",43.6969968937793,54.0088831896677,44.1233940883084,60.6991924087017,51.3766402893532,42.6506686712379 -"Tfru02520_t",7.25445362159653,9.9667243831701,5.56865472194349,2.69802361171388,1.99892521573645,1.47102665819921 -"Tfru02521_t",0.217643463138465,0.5240945985776,0.187424134630658,0.225126538412655,0.565133505064656,1.43312315657357 -"Tfru02522_t",15.131790304306,13.9380276117783,11.6778517900189,3.07909289151796,2.79118103190398,4.53728295962434 -"Tfru02523_t",1.40287811394236,2.94343637415538,2.14756837956584,0.708673168326596,0.000426470860009506,0.0122022893369596 -"Tfru02524_t",0,0.194332867484105,0,0,0,0 -"Tfru02525_t",0,0,0,0,0,0 -"Tfru02526_t",0.667227814463689,0.595710250639545,0.649279075748295,0.758062707746621,0.626300316763731,0.503107415037165 -"Tfru02527_t",1.74307044868385,5.36491949415823,2.98572337928295,5.91695007748849,7.33893503980255,5.42536218785575 -"Tfru02528_t",0.189425877725924,0.228072733992056,0.244686750735402,0.195938768494441,0.491863659424932,0.2078863353767 -"Tfru02529_t",3.88887603317417,4.91747183066153,5.04630865974491,7.7145454253772,5.07198660432156,4.71608892770558 -"Tfru02530_t",0.270876387563396,0.465915511402473,0.199942098482084,0.560379462727768,1.03829072955684,2.03845431022533 -"Tfru02531_t",83.5169720527427,115.737967596692,66.3546748839913,42.888015913975,20.55575395373,15.7753902569266 -"Tfru02532_t",0,0,0,0.0947642789828622,0.237886077377271,0.335142092837392 -"Tfru02533_t",32.5658202091566,31.6159129752767,33.364750520221,58.272820196744,53.1056166369746,38.4549020874937 -"Tfru02534_t",213.590957917075,210.263142949638,189.540436667447,306.550902947912,232.496480080529,135.631386627948 -"Tfru02535_t",3.25560061212604,4.65278437262748,2.66680805551032,7.88496125464965,13.5393453031275,9.93433386607806 -"Tfru02536_t",4.0980671595828,4.52297899504165,3.52905931548458,14.3065169715652,13.7446900845603,13.4923302057902 -"Tfru02537_t",0.456578134627432,0,0,1.88910530059314,0.592775904768905,0.167024619093418 -"Tfru02538_t",71.1154016603889,67.9293396126977,67.4251433740606,56.3884041746902,43.775338261488,30.7325299131889 -"Tfru02539_t",7.75134027638546,7.71922588058131,6.64738584693114,13.4074402995389,9.21450324248224,7.57723938135284 -"Tfru02540_t",0.240029647918421,0.68809698996923,0.472461818562834,4.71736580776688,4.86737570130789,2.86000686539064 -"Tfru02541_t",0.439844904562552,0.353055000088925,0.7575467640569,0,0,0 -"Tfru02542_t",17.2423044028735,10.1591961706811,14.0584469893048,8.34836054235922,5.71549868004255,2.68406374787676 -"Tfru02543_t",7.26423246648114,9.01132745313999,6.7430594332364,15.1743629591721,11.0234351296722,6.76426261985965 -"Tfru02544_t",0,0,0,1.34379655403018,1.1244408915204,0 -"Tfru02545_t",3.56311682819523,4.32184575038167,2.59108125048302,3.276110983121,4.18053204846132,4.98208778988547 -"Tfru02546_t",7.86719247358036,11.1637407971262,7.68219559185962,9.08223702208242,8.75484413197152,10.381222479037 -"Tfru02547_t",1.75187515542355,2.74847461206667,2.12579828909047,1.23552858522206,2.41230763141343,2.27216808836847 -"Tfru02548_t",117.391161633367,102.992975166266,135.715006320002,173.284252831365,109.554093359949,76.3546755007144 -"Tfru02549_t",0,0.105612380606084,0.0566528707654142,1.08878739329409,0.569411466862326,0.481323882743757 -"Tfru02550_t",2.3725651976532,3.87374756034667,1.7877471532389,48.357700640729,32.1798431691149,17.910871091897 -"Tfru02551_t",13.8275807398082,17.2346792956356,15.6641393947346,9.89250231069535,13.8773073420006,11.3874999231905 -"Tfru02552_t",5.10946593680378,5.09420844558526,4.63160793645544,4.22811275984227,4.1431063664087,4.36787557024835 -"Tfru02553_t",38.2597593158557,39.4385791566257,37.5948015861449,29.7438995650437,30.6053477044507,33.0013744034243 -"Tfru02554_t",9.64235195134027,9.07416558276046,9.0670752201929,3.43926822535427,3.06971374430898,6.89251990137481 -"Tfru02555_t",14.2449839695852,12.6994300622674,13.3731483303248,15.7613608331628,13.4917278895005,15.5477983160538 -"Tfru02556_t",16.1582693114129,15.7057750227387,18.4804984439726,16.3220968871684,16.6624511773759,12.1452372158808 -"Tfru02557_t",0,0.0642836082144753,0,0,0,0.0638506370480574 -"Tfru02558_t",0.207946477157048,0,0,17.6378841431617,10.9790705530135,2.58640103229807 -"Tfru02559_t",0,0,0,0,0,0 -"Tfru02560_t",0,0,0,0.144350238915755,0,0 -"Tfru02561_t",0,0,0,0,0,0 -"Tfru02562_t",0,0,0,0,0,0 -"Tfru02563_t",4.16229369241752,4.43192904560566,3.87696961200606,7.02922902546286,8.30805299086962,7.51999215267108 -"Tfru02564_t",3.10430953427981,4.20486058997363,3.59222377205503,3.3113878132799,4.03032855344032,3.6907426223691 -"Tfru02565_t",0,0,0,0,0,0 -"Tfru02566_t",12.9737543874894,12.1209591296352,11.1723763899075,8.7998829192187,9.20428409092646,9.64768027654536 -"Tfru02567_t",1.234538967986,1.48641083799378,1.48837622857322,1.27698521421432,0.80140166405201,0.632263657288235 -"Tfru02568_t",18.6254696836831,17.1950948212417,20.1816611120871,20.0758314301383,20.0422979678989,17.3100667819959 -"Tfru02569_t",0,0.177456592149959,0,0,0,0 -"Tfru02570_t",0,0.203112966918628,0,0,0,0 -"Tfru02571_t",0,0,0,0,0,0 -"Tfru02572_t",13.460663573182,11.6944061480916,13.9782014828689,9.33691630189486,8.49813072146236,9.84831307302942 -"Tfru02573_t",0.851456521332238,0.683447685982952,0.488822405185364,0.587154350184356,0.491309758907561,0.207652229143168 -"Tfru02574_t",1.38552914224833,1.76314474099115,1.48416392370842,1.04865861416675,1.81345870785832,2.47244810242871 -"Tfru02575_t",0,0,0,0,0,0.168397424181857 -"Tfru02576_t",12.7500156014879,11.5660377627884,15.4167066250769,7.58784083315167,17.3848068536522,26.387806349578 -"Tfru02577_t",0.189639676684983,0.304440203236951,0,1.56927934676812,1.1489772239915,0.693736566889139 -"Tfru02578_t",0.272760963543661,0.656819854061538,1.17444344102977,1.12855641334136,1.41650346074648,1.79605694297857 -"Tfru02579_t",24.7089343445434,29.436917050758,21.9500933895001,27.1727034877887,25.2134692373119,15.4138385323114 -"Tfru02580_t",3.85368700786456,4.94924807464107,3.58409969012975,6.53734421452967,4.2694367306169,5.07509668291192 -"Tfru02581_t",60.4368964666834,34.190365754431,50.1580833446456,5.81263169413275,3.52625666426631,7.97606796409182 -"Tfru02582_t",24.6965177946215,29.3115486631616,18.3590887254041,26.2006564303371,30.145186714881,31.8135736789794 -"Tfru02583_t",37.3567268943458,41.9254588536182,43.5238814371484,59.0982076732841,68.3246786653018,66.5356180816725 -"Tfru02584_t",0.189639676684983,0.304440203236951,0.489925841765918,1.56927934676812,3.28279206854714,4.71740865484615 -"Tfru02585_t",4.44190149240854,9.64192613487064,7.17571124583433,5.29842556750214,3.29881781236958,3.6317008016594 -"Tfru02586_t",0,0,0,0,0,0 -"Tfru02587_t",5.17098641987876,3.98458098568132,4.41747561628551,2.48266799215064,3.02262444068132,1.95184687262622 -"Tfru02588_t",0.100131557534502,0.562615655684019,0.517371031948276,0.103574307303081,0.43333637853587,0.366299522207257 -"Tfru02589_t",0.0831785908628192,0,0.0716294217499345,0,0,0 -"Tfru02590_t",5.8599154592861,5.80262233522944,6.55544623172967,6.1463654206391,6.42289824324135,3.1053077813196 -"Tfru02591_t",0,0,0,0,0,0 -"Tfru02592_t",14.0450784695299,17.3281142922902,15.902618680148,21.5229334556742,19.1352221890313,21.1226676183527 -"Tfru02593_t",0,0,0,0,0,0 -"Tfru02594_t",93.7191231436194,72.6818674357593,100.499119586836,47.7533740843333,43.9884459142661,33.9942370973716 -"Tfru02595_t",52.6882655916801,138.279091512858,51.7305585546099,105.701855973668,204.876823671855,204.242419170074 -"Tfru02596_t",1.23498103810269,1.0167132305614,1.13168006507671,0.605966306371943,0.64409172313626,0.417026414200829 -"Tfru02597_t",16.3711389953878,18.8642644917953,14.9205865823899,17.8071401285419,13.2469166407514,12.0102271844773 -"Tfru02598_t",5.02516057375222,4.03359922647607,5.4370246662642,1.33280435317921,0.947956559364589,0.895579859433418 -"Tfru02599_t",52.2064484221759,50.0934608696825,52.7090216333347,72.0018991710674,68.0393828977505,49.6110840026425 -"Tfru02600_t",131.540255905189,147.255628909741,138.952105824716,52.9738254646495,63.6056383494273,86.4873701941098 -"Tfru02601_t",5.07316745410564,4.81484957964037,6.01736110781163,4.6205234089707,3.67297428573355,2.68457344475254 -"Tfru02602_t",13.2279041397002,16.2141016478418,18.3649813840545,12.8954166642093,13.0199588168683,12.9832613002242 -"Tfru02603_t",1.92136526002218,1.54445211894744,1.51075594138798,1.87319838495999,1.53755595711982,2.07022768024175 -"Tfru02604_t",34.5925080823607,47.9607281671602,34.4319182946611,40.6612237159754,32.4684812865221,27.7743184776947 -"Tfru02605_t",2.1467728306162,2.29756405509317,3.45090297630008,9.91860738744135,6.56530451255692,7.12031357443558 -"Tfru02606_t",0,0,0.208489095007014,0,0,0 -"Tfru02607_t",32.8048056257795,24.5848011696402,32.0665655795362,26.4830673369068,35.1067783449256,34.7134275703377 -"Tfru02608_t",130.03642840387,92.7039020090929,130.693788315914,80.8814086131753,102.924891652203,86.5017440733747 -"Tfru02609_t",0,0.0855755139809449,0,0,0.0922764521806079,0 -"Tfru02610_t",7.87180343491064,9.60275958156107,7.73628090281718,9.75254361640251,5.50454194680763,4.42522400020507 -"Tfru02611_t",2.38707362238384,2.75677709695414,2.72686085119351,5.31622384678372,5.62905086488582,6.00571909582177 -"Tfru02612_t",0.150018529949013,0.240833946489231,0,0.155176506834437,0.129846150568427,0.109759035404246 -"Tfru02613_t",0,0.153257965947692,0,0.592492117004213,0.165258737087089,0.139693317787222 -"Tfru02614_t",0,0,0,0.0745912822551799,0,0 -"Tfru02615_t",16.1034089348921,15.8667070628199,15.6284355994558,16.4808152086229,15.044243652066,14.0260024958773 -"Tfru02616_t",1.09715044291069,0.912113640621526,0.843583441784444,0.77009236600672,0.508725589913613,0.344020857237189 -"Tfru02617_t",0,0,0,0,0,0 -"Tfru02618_t",0,0,0,0,0.0362592800424251,0 -"Tfru02619_t",0,0,0,0,0,0 -"Tfru02620_t",0,0,0,0,0,0 -"Tfru02621_t",0,0,0,0,0,0 -"Tfru02622_t",0,0,0,0,0,0 -"Tfru02623_t",0,0,0,0,0,0 -"Tfru02624_t",1.28587311384869,3.78453344483077,3.13744176389382,1.99512651644276,3.13004016171925,0.470395866018197 -"Tfru02625_t",0,0,0,0,0,0 -"Tfru02626_t",0,0,0,0,0,0 -"Tfru02627_t",0,0,0,0,0,0 -"Tfru02628_t",108.349826116006,224.988411636128,111.561145016776,518.144481236409,629.960095274104,1185.64370949052 -"Tfru02629_t",19.3542893321562,26.6319665383534,16.6669877292063,17.8197629114179,16.9358827273047,22.2519077346127 -"Tfru02630_t",0.130450895607838,0.209420823034114,0.449352273089652,0.404808278698531,0.790367873025207,1.04986903430148 -"Tfru02631_t",0,0,0,0,0,0 -"Tfru02632_t",0,0,0,0,0,0 -"Tfru02633_t",0,0,0.254738436505049,0,0,0.216426266994288 -"Tfru02634_t",22.6152821843663,23.4717757229719,18.1999082296323,17.5511259119344,14.5992540728743,18.0703970329118 -"Tfru02635_t",6.68123762247152,7.64709850708073,7.83123729544388,5.18321527983067,6.69310054476427,6.83448014269737 -"Tfru02636_t",3.47150317237386,4.17976270766434,2.39159391627881,3.94994744669476,2.70423387960691,2.79386635574444 -"Tfru02637_t",38.9852381710319,43.7583034977043,44.9592031955949,38.7678256057559,36.7830552043918,31.0301815346241 -"Tfru02638_t",0,0,0,0,0,0 -"Tfru02639_t",0,0,0,0,0,0 -"Tfru02640_t",24.4612552890611,23.6580554594194,25.5540953775184,22.6061431436134,26.0312091831691,26.551732287767 -"Tfru02641_t",0,0,0,0,0,0 -"Tfru02642_t",35.4238023379419,34.6327640206322,35.3516654504059,27.5540807371963,26.4118764624784,22.1201015452576 -"Tfru02643_t",0,0,0,0,0,0 -"Tfru02644_t",0,0,0,0,0,0 -"Tfru02645_t",11.372063758573,10.9203089272721,12.151619195097,9.20721272301846,9.06990545713972,8.45090120929644 -"Tfru02646_t",0,0,0.162028479210378,0,0,0 -"Tfru02647_t",0,0,0,0,0,0 -"Tfru02648_t",0,0,0,0,0,0 -"Tfru02649_t",0.413844220549002,1.9931085226695,0.356382837278,5.13687746762274,2.507373942011,3.33061900537022 -"Tfru02650_t",0,0,0,0,0,0 -"Tfru02651_t",0,0,0,0,0,0 -"Tfru02652_t",0.0834263920272566,0.0669647517547017,0,0.0862947803647315,0.361041928094931,0.122075590519122 -"Tfru02653_t",0,0,0,0.139484500525337,0.116715640960384,0 -"Tfru02654_t",0,0,0,0.0732087985065582,0,0 -"Tfru02655_t",0,0,0,0,0,0 -"Tfru02656_t",1.39090027767297,1.56302826198309,1.43733210531326,0.863233547953159,0,1.01763344083407 -"Tfru02657_t",0,0,0,0,0,0 -"Tfru02658_t",46.9613131275596,42.6513658424641,45.0586470822316,33.7846568844956,39.6620969009013,32.3375169686165 -"Tfru02659_t",0,0,0,0,0,0 -"Tfru02660_t",3.02034643519185,2.2807070937835,2.29271376834211,1.99022651641717,1.8202666753454,2.20979575940373 -"Tfru02661_t",10.9444711023354,11.0120769660764,11.4160212352281,7.81292357346229,8.93913315472913,7.66903498751135 -"Tfru02662_t",8.64812702059018,11.1066949439739,7.91547245290747,11.0412648627609,10.3082567533617,8.60510837569288 -"Tfru02663_t",0,0,0,0,0,0 -"Tfru02664_t",0,0,0,0,0,0 -"Tfru02665_t",0,0,0,0,0,0 -"Tfru02666_t",0,0,0,0,0,0 -"Tfru02667_t",0.260901791215675,0,0,0.539744371598041,1.24200665761104,1.04986903430148 -"Tfru02668_t",8.30239535608238,9.03952073123962,8.70696972993578,5.10169337537875,6.3322232332,6.43518728123524 -"Tfru02669_t",7.65179902282633,7.03765232625076,5.49113593680713,5.77127046291264,3.03549255218789,5.01517565945776 -"Tfru02670_t",0.11774404593055,0.614320648367764,0.202791074891195,0.304480882366099,0.356690196375777,0.301510454649365 -"Tfru02671_t",1.01065114913019,2.43369040662802,1.30548660392362,11.6300708280125,20.3380075837704,28.6528850318452 -"Tfru02672_t",16.5622598273772,16.9034923369961,16.7150226900672,23.4882691165631,28.0866142639002,41.342243629874 -"Tfru02673_t",0.13065377413911,0.0524366290956334,0,0,0,0.191182145649697 -"Tfru02674_t",193.835262847329,265.735267748872,193.636916322539,159.509737591323,160.519241231006,101.392497611168 -"Tfru02675_t",22.8853840822845,22.1654259020387,25.8413467736352,27.7786436140034,36.1800643029301,31.2237378270202 -"Tfru02676_t",38.5023030192899,45.2707062412552,37.1614644738115,33.0057276484851,48.7646454188026,49.4046416404031 -"Tfru02677_t",14.5476684546887,17.0903722577449,12.5277558613332,17.6388708227401,18.8455605687387,20.582336547365 -"Tfru02678_t",10.6245931039368,10.9712344626761,9.56196313021434,9.12423284734656,8.83006093365699,11.4022737618205 -"Tfru02679_t",20.5313413213422,25.3949100154927,27.2009362642868,22.4493071379159,24.6054124497405,22.3644850793369 -"Tfru02680_t",0,0,0,0,0,0 -"Tfru02681_t",0,0,0,0,0,0 -"Tfru02682_t",0,0.192667157191385,0,0,0,0.351228913293587 -"Tfru02683_t",29.4663261806611,32.2070471718878,39.9521118024109,26.588452215478,33.6437190125323,20.1825569576623 -"Tfru02684_t",0,0,0,0,0.645389150754311,0 -"Tfru02685_t",4.64290924805705,3.44550755561235,7.46843157536596,28.0903457627302,46.9341706288212,48.7746720832883 -"Tfru02686_t",20.107401653494,17.6874767257665,19.4503236371462,43.0220505505573,70.8065959427566,39.2973333316185 -"Tfru02687_t",3.64601996838108,2.68270725203194,3.46683810693851,9.5855867512918,8.41534545456134,5.83529048984598 -"Tfru02688_t",1.52173699336163,1.93750233028188,1.71713754326202,4.01656117627674,2.6342304625,3.03294174033969 -"Tfru02689_t",0,0,0,0,0,0 -"Tfru02690_t",5.05440735361489,6.39296674728022,7.84789443949374,5.22818932780382,5.30274160935782,4.37035065310616 -"Tfru02691_t",29.7363462334579,34.384410974007,39.2171084080892,47.9664410234764,59.934926133664,50.2066082740214 -"Tfru02692_t",0,0,0,0,0,0 -"Tfru02693_t",0,0,0,0,0,0 -"Tfru02694_t",0.791718542105617,0.84776003201582,0.637644791829622,0,0.502649023076091,1.60378095163121 -"Tfru02695_t",1.47965246449633,1.0391517968416,1.18386101752323,0.459202719208977,0.63592462751527,0.705641170212191 -"Tfru02696_t",10.7846938793236,9.84074792244217,9.63152135206364,7.92255780574214,8.15370275265749,9.74152505240283 -"Tfru02697_t",0,0,0,0,0,0 -"Tfru02698_t",28.4330421863096,35.3654144240562,27.0516099974106,27.7443096783181,24.6097670607542,18.2096869476038 -"Tfru02699_t",4.44998785466736,3.24719927850648,3.48374234193101,9.06649253414687,13.072151787563,14.6016514515311 -"Tfru02700_t",1.92217551159436,1.45213469753937,1.55791582164057,2.6900045868473,2.93595602900346,1.32360828697449 -"Tfru02701_t",0,0,0,0,0,0 -"Tfru02702_t",0.053509794121941,0.0644269156213228,0.0921601477292151,7.0017221300328,4.79355597894651,0.724269813240756 -"Tfru02703_t",0,0,0,0,0,0 -"Tfru02704_t",72.3582525959556,65.1241384068139,72.2218363168047,50.2941938589421,63.7491237859236,64.0962695792192 -"Tfru02705_t",28.2954657947628,27.1187868405751,29.8737263014638,18.8477158666061,25.4763834107979,24.1630110057814 -"Tfru02706_t",4943.68755616595,4081.30851471464,5257.21251566726,986.04916973249,886.754199003891,1066.1247243806 -"Tfru02707_t",2296.14500076813,1647.11337699995,2500.76218684459,408.467585217855,301.114508773633,343.687054821256 -"Tfru02708_t",7.16812088493579,7.53736276213736,5.86420052637049,4.4487462710214,3.78459428619237,5.92623870339649 -"Tfru02709_t",4.48194317763305,4.183219914205,3.94939392378051,2.80318851055757,2.7064706321955,4.19426586904563 -"Tfru02710_t",0,0,0,0,0,0 -"Tfru02711_t",0.263355413076638,0,0,0.408615253106354,0.569857714093409,0.867061972472413 -"Tfru02712_t",0.743454654646386,0,0,3.85415970910321,14.1762717751426,9.2791776681644 -"Tfru02713_t",55.429526941986,63.6099557634443,68.2436392888681,48.3766759450863,50.2250264879111,44.6730589459756 -"Tfru02714_t",0,0,0,0,0,0 -"Tfru02715_t",0,0,0,0,0,0 -"Tfru02716_t",3.38491541097543,3.9849423532677,3.4701513798654,9.33679058773588,10.7424520577716,12.3590527049202 -"Tfru02717_t",0,0,0,0,0,0 -"Tfru02718_t",15.1923109709132,14.664328797491,13.2149835738521,8.47970940147018,8.6120248980906,8.51683963690105 -"Tfru02719_t",0,0,0,0,0,0 -"Tfru02720_t",0.201584587334007,0.121356037823008,0.260392498982965,0.104257761040533,0,0 -"Tfru02721_t",5.64889569469119,7.50768349643623,5.44830566726237,0.467449401975711,0.743175385717085,0.760460664877185 -"Tfru02722_t",0,0,0,0,0,0 -"Tfru02723_t",0,0,0,0,0,0.0854868704122082 -"Tfru02724_t",0.0483930741771011,0.0388441849176179,0.0416737995204112,0.600683252262336,0.502630260264878,0.106218421358948 -"Tfru02725_t",12.9286355423871,11.3284980837853,11.0448088754697,15.1846538876616,12.3493162944049,9.60980395813998 -"Tfru02726_t",12.7268467165537,15.5615780808426,13.7990651335058,24.0097276508667,17.9216225399939,12.1579239217011 -"Tfru02727_t",3.91260981448745,4.38495551077053,5.05402848805887,5.19254954328238,5.62286318102994,7.39957222865883 -"Tfru02728_t",3.52139303832415,2.42276065929286,1.73283152017806,0,0,0 -"Tfru02729_t",24.6798991690504,31.1414423873971,31.6246843006879,59.7365730187562,72.0302829146216,75.7659785638898 -"Tfru02730_t",2.87706769765181,0.923746644068121,0.495518602516584,6.54717316506825,14.4431608577458,9.68285189045508 -"Tfru02731_t",0.385368700786456,0.309328004665067,0.995583247258265,1.99309274833222,0.333549744579445,1.12779926286932 -"Tfru02732_t",0,0,0,0,0,0 -"Tfru02733_t",0,0,0,0,0,0 -"Tfru02734_t",0,0,0,0,0,0 -"Tfru02735_t",0,0,0,0,0,0 -"Tfru02736_t",6.89637421249514,2.51617556030374,2.15957361094113,1.94549650357156,0,1.83477790524203 -"Tfru02737_t",4.65326937207119,2.72560574170447,3.24905910033386,2.34158561211246,1.85050202606501,2.48436619058712 -"Tfru02738_t",0,0,0,0.529870998946858,1.33013129850584,0.74957390032168 -"Tfru02739_t",0,0.0667658465514699,0.214888265249804,0.344153836939741,0.503957336859637,0.425995464143212 -"Tfru02740_t",0.158510144851788,0,0,0.16396008269299,0,0 -"Tfru02741_t",0,0,0,0,0,0 -"Tfru02742_t",0,0,0,0,0,0 -"Tfru02743_t",0,0,0,0,0,0 -"Tfru02744_t",0,0,0,0,0,0 -"Tfru02745_t",19.5708332351337,20.2069012091111,19.6564623079737,21.1387084543076,20.0417756286882,24.7488053543188 -"Tfru02746_t",0,0,0,0.387941267086092,0,0 -"Tfru02747_t",10.4529040222538,11.7697880300382,11.7103376652356,9.51081816082032,10.9740940157832,11.4361833663134 -"Tfru02748_t",3.6785608763829,4.86798083554563,2.9965681169943,0.617033210607938,0.344207547068966,0.436438294625167 -"Tfru02749_t",581.908832582662,647.031810366773,731.320824453408,566.731590177943,614.115837340586,500.071709565693 -"Tfru02750_t",0,0,0,0.254835319141597,0,0 -"Tfru02751_t",0,0,0,0,0,0 -"Tfru02752_t",4.41812813476215,2.64652688449704,3.40717657617428,3.47868213123353,3.76696524725986,3.95614984753765 -"Tfru02753_t",23.4904115549494,34.1242877926401,25.3588931876178,42.2940384139242,48.6321440646292,54.5310482424189 -"Tfru02754_t",2.27396508554294,2.63649794051368,2.71976375817421,4.83497326557824,6.01392697369556,8.87315149373272 -"Tfru02755_t",1.18324474325982,2.65934949362756,4.1777103586828,5.26288772475104,6.86172897088363,7.61820459819893 -"Tfru02756_t",0,0,0.0472230521980639,0,0,0 -"Tfru02757_t",14.5661282751157,13.8516089819538,19.6943335019022,8.39718258960509,10.7605247251847,14.0171561061811 -"Tfru02758_t",1.55612689120887,1.85717427904442,1.51638595495962,3.24043946029114,3.89886564709485,4.97353152872469 -"Tfru02759_t",56.1803138781197,64.0931456353383,66.074260713291,118.9142073426,211.387925123534,194.480777531139 -"Tfru02760_t",9.46299613195278,9.70569846927813,8.78289668190374,10.2233933914453,8.28155173087238,8.57741448140315 -"Tfru02761_t",0,0,0,0.35517238621506,0.0990651829949851,0.0837398635236754 -"Tfru02762_t",0,0,0.66678079232658,0,0,0.14162456181193 -"Tfru02763_t",0,0.151196199589652,1.94652150585024,0.194840457011849,0,0.275628070970304 -"Tfru02764_t",0.488432423089811,0.392055261726655,0.736075598505868,0.189459688576929,0.317066181620577,0.357354998990568 -"Tfru02765_t",0,0,0.140477118383367,8.94298781135162,2.54145475287329,0.596748153654153 -"Tfru02766_t",0,1.14943474460769,0,0.98748686167369,2.06573421358861,2.44463306127639 -"Tfru02767_t",0,0,0,0,0,0 -"Tfru02768_t",31.3177159215075,14.2815568842871,26.3800143034102,0.208190809361008,0.313571920874399,0 -"Tfru02769_t",351.339299517616,314.962562127889,376.878365578453,71.9981316080386,60.5764803198136,37.4013489990553 -"Tfru02770_t",0,0,0,0.302783427969633,0,0 -"Tfru02771_t",2.5385119548955,1.38404001175111,3.2996905800426,1.04040805038368,1.57532844019163,1.1914549795307 -"Tfru02772_t",14.9505797200808,14.3450178615978,12.6615660826917,11.9825158842573,12.897387825465,15.1761108233661 -"Tfru02773_t",0,0,0,0,0,0 -"Tfru02774_t",0,0,0,0,0,0.0833989956938639 -"Tfru02775_t",16.1515867904021,16.3211459337922,15.7571522531124,9.79528711037077,11.5285052092779,12.9016730791738 -"Tfru02776_t",3.22084511583824,3.01619511258078,4.62272945478811,26.2639956104189,32.1520640691864,20.030147291663 -"Tfru02777_t",20.7834911237858,21.9083518535062,25.9840798035046,97.6478811412409,166.775866476741,156.91452679968 -"Tfru02778_t",6.65428726902554,5.00743849136024,8.23738350124247,30.543653028402,23.038049685012,15.9748299053704 -"Tfru02779_t",4.8970872891899,3.99856964422321,5.67132245774859,6.20082202184644,6.7963693684459,6.23916687684839 -"Tfru02780_t",6.49405366454133,6.04005627759494,5.68113597781076,1.59936522381505,0.981413849695104,0.905007015848506 -"Tfru02781_t",4.56011660514991,3.57665302664527,4.19623104401679,1.45550172663566,1.57877453544737,2.53562436628667 -"Tfru02782_t",0.0583810818425625,0.0468613655434222,0,0.0603883556826161,0,0 -"Tfru02783_t",0,0,0,0,0,0 -"Tfru02784_t",210.667619307014,135.500932525316,173.680725877165,43.9089340137866,31.7001600964705,54.892415356107 -"Tfru02785_t",1.72576780549399,1.88392700951313,1.12947296908894,2.85616577903976,3.10691857399556,3.88891504242488 -"Tfru02786_t",0.56100418545207,0,0.362332467282641,0.290146390074406,0,0.410451150760452 -"Tfru02787_t",0,0,0,0,0,0.255041742018165 -"Tfru02788_t",0,0,0,0,0,0 -"Tfru02789_t",21.8590106550951,21.86678706376,23.6703944475973,10.4616083830906,9.84813716738399,11.5769141808906 -"Tfru02790_t",0.227055072355263,0.0911263581310603,0.0977644810370728,0,0.0982619517815122,0.0830608916572672 -"Tfru02791_t",14.7858263117748,15.7987068896935,13.0635692832624,16.2873261573425,12.7145350636604,12.7144866612278 -"Tfru02792_t",2.63753508468498,2.82279788443191,3.028425319567,2.02090334482057,0.591856872358411,1.78677499495284 -"Tfru02793_t",2.62532427386389,3.16094554737756,1.69560271782924,2.03669165201281,1.13615381736821,2.88117467909384 -"Tfru02794_t",0,0,0,0,0,0 -"Tfru02795_t",0.406829911726138,0.326554503714211,0.175171225102746,0.210408822826355,0.35212515408387,0.148825810717622 -"Tfru02796_t",0.938663427613938,0.753446983429996,0.404166010991251,0,0,0 -"Tfru02797_t",0,0,0,0,0,0 -"Tfru02798_t",0,0,0,0,0,0 -"Tfru02799_t",0,0,0,0,0,0 -"Tfru02800_t",1.49030065230647,1.09370104437076,1.32004347431709,0.880880322628329,1.0319248053284,1.21497077203686 -"Tfru02801_t",4.99071415882105,8.67955780307145,10.0281164469991,0.860384369448921,5.75951092913212,2.4342591644587 -"Tfru02802_t",8.63548524022785,7.80974081359496,8.4795908947876,6.50730877032224,7.981612678662,9.34840677359326 -"Tfru02803_t",29.3552109035677,37.2147441232062,38.6747271238011,43.6998508583895,55.425970669151,42.7775560463119 -"Tfru02804_t",0,0,0,0,0,0 -"Tfru02805_t",0,0,0,0,0,0 -"Tfru02806_t",0.275443858267041,0,0.237199068745685,0,0,0 -"Tfru02807_t",0,0.140877795996486,0,0.0605145152000589,0.151909145511809,0.128408899358728 -"Tfru02808_t",0,0,0,0,0,0 -"Tfru02809_t",51.4177222380431,47.3613245938688,53.1618304624526,25.9492486345212,28.8006578785889,37.9127530988312 -"Tfru02810_t",14.9968235765321,21.7143215883497,10.8616869760889,3.36496881668154,6.76752491277833,13.1114325988333 -"Tfru02811_t",4.50441135664951,5.55056871418262,4.24445093679341,2.96764878219273,5.34847891658389,7.05072052299079 -"Tfru02812_t",26.0002183722468,26.1983506471254,26.8291954755015,29.5991871521849,30.9267802383512,31.0486880373298 -"Tfru02813_t",3.26475029477835,4.11365710677493,2.28838685843668,2.47384869458605,1.41287632430534,3.52736674105285 -"Tfru02814_t",7.70030951159005,8.3442008957772,6.83007217657717,6.13309896856179,6.53158271603599,5.40847455850803 -"Tfru02815_t",2.91847462729594,4.07165352340037,2.47507092410331,1.61722414070629,1.804313754797,1.75396572705544 -"Tfru02816_t",30.8563582243654,34.1687197002951,31.2269712352731,24.0427900347876,19.4943282354743,16.2149112249747 -"Tfru02817_t",0,0,0,0,0,0 -"Tfru02818_t",36.0630235057915,31.1282353760704,38.682713551691,72.6155027065651,56.9966561467913,33.75585429267 -"Tfru02819_t",0,0,0,0,0,0 -"Tfru02820_t",79.2178384992508,56.7980193263863,91.7673846835235,23.0369418199849,88.9402558859976,91.8882018545345 -"Tfru02821_t",38.6889893026403,39.217906865141,38.2670760775111,30.8719576754827,31.3817643900114,30.570779755751 -"Tfru02822_t",0,0,0,0.230500912008713,0,0 -"Tfru02823_t",7.3679262754749,5.78552473930278,8.00009823853416,3.56210703963131,3.04996105815638,6.6797109820849 -"Tfru02824_t",0.31630412941057,0.304669450377942,0.544771957586099,0.130871752751935,0.49278960757897,0.277703583552911 -"Tfru02825_t",14.5148818505642,10.2385950025788,15.5297086631664,11.8291619869602,15.608730979325,15.7685232015315 -"Tfru02826_t",6.1013122794906,7.15774634258496,7.67915420883377,7.2820260190462,4.87467112748508,9.27126600733072 -"Tfru02827_t",2.56800278340669,3.53363345067168,1.73756086384667,3.41523840369241,2.69898548779787,2.1472509983014 -"Tfru02828_t",0.99617047555076,0.932874575333779,0.714878616278991,0.686947382033871,0.287406499281893,0.971779601998067 -"Tfru02829_t",1.44845477192151,3.41103332770739,1.12600336136084,0,0.565866492749565,0.717490970735927 -"Tfru02830_t",0,0.451060234227322,0,0,0,0 -"Tfru02831_t",0,0,0,0,0,0.10010596062928 -"Tfru02832_t",0,0,0,0,0,0 -"Tfru02833_t",14.921914168996,18.9245005198642,15.0345448813317,13.1197188726806,12.6571167729934,15.7210810213115 -"Tfru02834_t",51.9692098167559,55.201380851113,51.483230432639,35.5678988688421,42.2754908827437,33.7343119047096 -"Tfru02835_t",2.17855109942165,2.62302126484219,2.57958792752601,9.15465939833631,10.7244081571589,8.96572995846676 -"Tfru02836_t",28.7261288315272,40.8951578812681,29.288346302945,80.1711914019465,86.4356504235502,62.6547061455979 -"Tfru02837_t",25.424192970306,18.1893006953705,14.7547183880948,14.8642759178247,16.2649388606763,14.557514169405 -"Tfru02838_t",0.807791989782145,0.675894389974435,2.87968099737787,0.835565708221745,0.699171498140063,0.615672719201432 -"Tfru02839_t",7.12483158080309,5.21619843095035,6.87722556260788,5.42611606377267,5.55688279040276,5.55648723500339 -"Tfru02840_t",4.59166026888478,5.46020283538337,6.44374798090504,2.81453745189586,3.82704443780627,5.47462071328061 -"Tfru02841_t",5.26909036449118,4.99068840441807,5.22718670311615,3.74977449530681,3.28361564909619,4.31766601891263 -"Tfru02842_t",8.2122503136134,9.24369394614845,11.6240869475765,7.71349287905111,7.59818822652098,10.4283416109922 -"Tfru02843_t",0,0,0,0,0,0 -"Tfru02844_t",3.77189446728948,1.92667157191385,4.42932954902657,1.06406747543614,0.296791201299262,0 -"Tfru02845_t",0,0,0,0,0,0 -"Tfru02846_t",0,0,0,0,0,0 -"Tfru02847_t",11.8758124231889,9.88554000248989,11.7419748428819,4.54967768729239,2.28420453355976,4.5052923432947 -"Tfru02848_t",6.4257228692042,6.11295229615724,8.81265095354011,1.96937889693563,2.26587050283714,1.91534180762084 -"Tfru02849_t",0,0,0.055607775532232,0,0,0.047244473348484 -"Tfru02850_t",0,0,0,0,0,0 -"Tfru02851_t",0,0,0,0,0,0 -"Tfru02852_t",9.02798078737942,10.4960466231127,9.34786863033368,8.33784215826825,8.65124203190235,11.8998452712902 -"Tfru02853_t",0,0,0,0,0,0 -"Tfru02854_t",0,0,0.0907725419917614,0.381613492340648,0.478980781268726,0.674804609135263 -"Tfru02855_t",0,0,0,0,0,0 -"Tfru02856_t",0,0,0,0,0,0 -"Tfru02857_t",573.680421459207,475.258447709346,619.117919912542,274.198742275735,307.368082955126,298.754474056497 -"Tfru02858_t",0.542002430783529,0.435054871077318,0.933493109257207,0,0,0.396548773073403 -"Tfru02859_t",5.52699847180575,6.36756007126325,7.67133365908548,51.7895586277161,43.0542499253205,68.8389640625144 -"Tfru02860_t",60.5450890117235,62.5848569792589,65.2631984197371,52.2931095597819,29.9622865139091,18.7318849360255 -"Tfru02861_t",16.0608073239532,3.11667460162534,20.9741781586258,8.03266623613555,5.3466061998764,5.9399007395239 -"Tfru02862_t",1.64386937039907,2.22231942383471,2.23519204842741,21.1206252762504,18.946037706009,9.11531268279958 -"Tfru02863_t",0,0,0,0,0,0 -"Tfru02864_t",1.15434105487485,2.213466195214,1.15974048497413,7.29684948168039,8.60354646514462,5.02042855070413 -"Tfru02865_t",7.18594283531889,6.59149711870966,5.99286461789349,4.14023078054823,4.10548496326435,4.67228808661912 -"Tfru02866_t",5.13732519825398,2.91079877771157,4.68425499069716,0.937757307488683,0.78468177321927,2.43207071255451 -"Tfru02867_t",0,0,0,0,0,0 -"Tfru02868_t",0,0.156822104690662,0,0,0,0.142941999596227 -"Tfru02869_t",0.182410950770332,0.244029571834685,0.174537312346041,0.796660088163285,0.982382456411548,0.887332243483026 -"Tfru02870_t",0.240029647918421,0.0481667892978461,0.15502653421593,0.186211808201324,0.311630761364225,7.11238549419513 -"Tfru02871_t",0.930004170901632,1.24416060916946,0.667395903758615,2.88593946289875,3.75643476183198,4.30935843801172 -"Tfru02872_t",0,0,0,0,0,0 -"Tfru02873_t",17.2455318885669,14.435911631202,12.5172939650399,9.4289068082391,16.4192551686527,14.7804542690996 -"Tfru02874_t",4.07158530394737,5.33803189956744,3.62312955571963,11.2308683460142,9.28011906485817,7.89413934765271 -"Tfru02875_t",3.17877101297369,3.28054889271817,4.6926950897795,11.2733635235396,9.04009956389913,5.64814063269417 -"Tfru02876_t",209.377895543986,218.851515581069,215.109281698401,108.714963105102,123.39937114329,132.930045234606 -"Tfru02877_t",10.278594221629,20.6810749481127,15.3424846260463,26.0838291422845,26.333561890158,20.3546609212964 -"Tfru02878_t",211.512851252007,302.257259213298,221.198627139366,889.559624754084,737.595080087374,369.198312895167 -"Tfru02879_t",1.59027475611748,2.02476581643687,1.7000298791303,6.18275063784205,5.03111455466176,5.6570322686157 -"Tfru02880_t",0,0,0.0574172348947888,0.137934672741722,0.577094002526342,0.195127174051993 -"Tfru02881_t",0,0,0,0,0,0 -"Tfru02882_t",12.9668190234191,12.8270254108395,12.6605002943009,8.12315279255052,13.2781802668235,15.7671240424186 -"Tfru02883_t",0.61321442898594,0,0.528070919467971,0,0,0 -"Tfru02884_t",0,0.0665906779517575,0,0,0,0.0605816434155189 -"Tfru02885_t",0,0,0,0,0,0 -"Tfru02886_t",14.9177296826385,13.8648320896213,13.5225630323365,24.3641605597058,21.7461953061179,13.2121149797877 -"Tfru02887_t",0,0.53946804000384,0,0.695190750448126,2.90855377202088,0.983440956981342 -"Tfru02888_t",0,0,0,0,0,0 -"Tfru02889_t",0,0,0,0,0,0 -"Tfru02890_t",0,0,0,0,0,0 -"Tfru02891_t",147.545862721713,163.500835028618,128.513621077829,38.6459682347472,43.6648462112519,31.5047040316107 -"Tfru02892_t",0,0,0,0,0.0666488032248571,0 -"Tfru02893_t",0.412489574982557,0.110365801991791,0.118405427115276,0.568895867936397,0,0.100597479257574 -"Tfru02894_t",32.3821815919034,33.1037206447015,29.9905877101362,19.591739335606,8.99007529753763,12.2930119652755 -"Tfru02895_t",22.1210755404107,22.7438448873853,19.6917333402483,14.6545387519385,6.88415094137932,11.4565052339106 -"Tfru02896_t",45.0900531318867,46.6560915440539,50.21455823913,46.0645444915479,39.267885004592,46.0903099084599 -"Tfru02897_t",9.34359312384879,8.42096452895027,9.52846015180837,8.30837726348672,8.86754199003891,10.9737619007094 -"Tfru02898_t",2.75143155365003,1.61958199822452,3.00124149209879,5.69206400615402,6.98560949782978,4.56290837139048 -"Tfru02899_t",7.45484572033322,6.44415747602583,4.4444467147229,4.15216318628664,3.72255175691053,7.132464280194 -"Tfru02900_t",23.8223706745318,21.0835402744961,19.885697550654,23.3483434259232,28.4363286842582,33.5843195974924 -"Tfru02901_t",5.72075705631546,5.35726458520811,6.56858959603435,4.93120803559623,4.3554950884239,5.19313872429673 -"Tfru02902_t",11.2170279599866,14.7675608752279,13.3374783627113,13.447474715172,13.2428565630011,13.803884944248 -"Tfru02903_t",9.59535287547516,8.27555772383407,10.3727758009201,10.1364386481401,12.2809530501171,15.6463305390354 -"Tfru02904_t",3.11726815478469,5.12945028886154,4.02666322638779,5.9652267562329,6.20563420898456,7.07019241045532 -"Tfru02905_t",2.48656506300267,2.70874544465689,2.14131083201707,3.67436971785559,2.61339398184233,2.85883999192454 -"Tfru02906_t",0.313806103201778,0.0719674546606025,0.694889481010571,0.556449373493818,0,0.0983965738949483 -"Tfru02907_t",0.750092649745067,0,0.968915838849562,0.775882534172185,0.324615376421067,0.274397588510615 -"Tfru02908_t",80.4227450232006,115.908836025635,95.5169417221281,123.080924709108,84.8759463929134,52.7155851179965 -"Tfru02909_t",54.4643544323367,49.7179231904887,57.6313330588033,22.0929263967673,17.8703515697564,16.4080456316178 -"Tfru02910_t",249.623189578855,267.04458145241,261.395147240147,370.288703951933,279.508312395577,179.305715926631 -"Tfru02911_t",0.749137117707175,0.171805108323528,0.552960886375291,0.221398328222381,1.57469471772156,0.78299439269271 -"Tfru02912_t",3.87523965508828,3.85196168715567,3.38904405583581,7.60157190267356,7.03850548492333,9.13749216348158 -"Tfru02913_t",5.23021800911735,6.55967947636037,7.31902184884545,4.73378915790656,4.8098651883713,3.82661851059161 -"Tfru02914_t",11.4149975589333,10.1270818023123,9.14022156441954,11.2895994960358,9.88006943061784,10.549426239569 -"Tfru02915_t",7.02718377129589,8.30243341844453,7.00339167729858,4.16526413081909,5.05716586424399,3.40830688886869 -"Tfru02916_t",0.285143408643012,0.371928538489945,0.460409732503822,0.737368212365589,0.586153178637277,0.156465998709489 -"Tfru02917_t",0.450860698236748,2.05075059980096,0.841229255435278,21.0640310171683,19.1215297223487,11.3803822755458 -"Tfru02918_t",175.494986351743,154.545114700847,190.261509252433,210.598265645483,265.496100607101,241.048028215901 -"Tfru02919_t",0.126903892403999,0.101863300629886,0.218567117726386,0.787602814144574,0.659037863912257,0.0928475223963409 -"Tfru02920_t",4.99832905276346,6.01809312508558,2.64881339926531,21.0784380908288,14.9753912783723,8.86109558137711 -"Tfru02921_t",1.04577232495578,0.839421224277816,0.750474232027323,0.721152230931823,0.452575794512359,0.382562613027247 -"Tfru02922_t",4.89174345757795,3.92650788706493,2.93045938095935,1.53997951086327,1.84085681818529,2.1785084495425 -"Tfru02923_t",1.66028412591793,1.99901694714381,1.71570867906958,0.858684227542338,1.43703249640947,1.4576694029971 -"Tfru02924_t",203.137631293018,212.708258590553,200.288300475758,111.208166698583,147.765754370346,198.822669406225 -"Tfru02925_t",8.95416988404932,8.94570943347872,9.03142412500886,6.4296080667515,6.42289824324135,8.83510149394803 -"Tfru02926_t",13.1944726937263,9.78657229868762,11.0747915099253,19.3492455440475,24.7198158616949,22.4842365965278 -"Tfru02927_t",12.4767853970526,14.6884824359671,19.3399388620697,6.88307495559137,4.31963319684909,7.91134228449077 -"Tfru02928_t",20.9818611285056,24.164227365415,24.9246346225414,11.4950099435895,7.60875369964642,7.28115220055807 -"Tfru02929_t",0.112614446074326,0.180786876721138,0.19395634307623,0.698918314964756,0.877244770596342,0.57674989113223 -"Tfru02930_t",0.452886128147965,0,0.390003859662717,2.81074427473697,1.76394770583523,1.32539212563618 -"Tfru02931_t",3.42899497026316,2.47714916388923,3.46964148007081,8.60121209310878,9.42312064125155,9.84695346198092 -"Tfru02932_t",6.31936462440091,6.86270183801171,6.72238953679696,15.7648344996401,13.8349349809191,13.7344492089915 -"Tfru02933_t",4.86474342106377,6.00743919973137,5.47829475031793,4.06431118123158,7.12563285079296,31.3485494437428 -"Tfru02934_t",6.39402444772116,9.83702293059606,9.0240956492148,22.9648107365974,21.368339028005,20.7915635776331 -"Tfru02935_t",3.43776477837125,3.53551624769356,3.58490600222259,6.11181126662488,6.41592743985168,7.27048341936053 -"Tfru02936_t",0,0,0,0,0,0 -"Tfru02937_t",2.77392753490628,2.70370185209608,4.18035387075974,17.1133336310808,6.43105934419095,4.13149576663152 -"Tfru02938_t",0.914964499491012,2.60386801550733,2.36377091774784,8.08761516808392,7.77534176869154,4.68595010557533 -"Tfru02939_t",112.279271324873,94.5986610664808,102.689772190741,49.6270648397526,59.101536969629,47.0455315732701 -"Tfru02940_t",9.94042255964538,11.0819235853713,9.1546756441946,10.4250050934951,10.993711877215,10.2525942027565 -"Tfru02941_t",20.6660776035323,21.7998984173664,21.4105134908334,17.8548048580095,22.8215929858626,24.2152639089782 -"Tfru02942_t",10.134118876276,11.4354020745586,10.3712390023244,7.29221067082109,9.78840211977372,11.2829218212756 -"Tfru02943_t",2.77079079061502,2.13509778417893,3.24505849985851,6.76389417653007,6.33128459763728,3.48680418540137 -"Tfru02944_t",1.13018444087149,2.11674679425512,2.27094175682528,20.653088443256,26.0856840603835,17.0889404001588 -"Tfru02945_t",1.47018159350033,1.68583762542461,1.26605002943009,0.543117773920529,1.09070766477479,3.99522888871455 -"Tfru02946_t",21.6077286706604,24.1917106895085,20.9970349223824,41.9838054330697,31.604717295067,22.0073422217424 -"Tfru02947_t",0.64130058601947,0,0,0,0,0 -"Tfru02948_t",0,0,0,0.0889445689122667,0,0 -"Tfru02949_t",0,0,0,0.404180668964115,0,0 -"Tfru02950_t",0,0,0,0.171567312590888,0.143561390559366,0 -"Tfru02951_t",0,0.3795506848986,0.407199151786682,6.52148921780748,3.54701679601556,1.03787155429156 -"Tfru02952_t",0.406829911726138,0.489831755571317,0.175171225102746,20.4096558141564,5.98612761942578,7.88776796803394 -"Tfru02953_t",0,0.265486240224349,0,0.342121432390885,0,0 -"Tfru02954_t",6.31087565891282,8.10498858377218,7.04327282856027,9.24344672922439,11.0556506084944,11.6355131281905 -"Tfru02955_t",0,0.55122756144674,0.394254582928795,4.7356318162008,3.9626073197994,4.60569249380214 -"Tfru02956_t",0.86505734497332,0.587539449652935,0.888204829699188,4.19867681066484,2.59178058956385,3.01848214592904 -"Tfru02957_t",1.23544671722717,1.23958648928281,0.531953793878191,1.27792417393066,1.60398185996292,2.259744846558 -"Tfru02958_t",146.493094495211,122.012498140107,157.125851866771,59.1998373573377,37.2658452131385,38.2235840795286 -"Tfru02959_t",0.0755488999743232,0,0,3.82917567224546,0.52312118214618,0.055274334376239 -"Tfru02960_t",0,0,0,0,0,0 -"Tfru02961_t",0.0317980230020619,0.102094632879613,0.082148806927442,0.756500154438889,0.743101361315145,0.55835027851365 -"Tfru02962_t",0.18710551619476,0,0.322252632371643,0,0,0 -"Tfru02963_t",0,0,0,13.7872145691521,9.29524211140797,8.52597838026817 -"Tfru02964_t",76.5242837685894,142.211216311863,55.154640458495,174.658026998131,402.445826173107,341.404847815332 -"Tfru02965_t",2.75443858267041,1.93456776688071,1.77899301559264,2.49299961799587,1.53480029303287,1.30131561495798 -"Tfru02966_t",1.28064598736963,2.15869452036079,2.31594517578676,2.11948399578743,2.32772977238521,1.59284453818357 -"Tfru02967_t",19.9283899403323,20.7297676468055,16.6038142442064,15.3219751908952,14.1540050960839,15.6416785008711 -"Tfru02968_t",14.4781878738938,15.396453395755,10.7208250884781,9.72961807945448,6.06613849417371,12.077108352274 -"Tfru02969_t",4.31157454659061,3.19863437483364,3.31912693785272,2.22990812309517,3.05330294960282,3.9192339858188 -"Tfru02970_t",0,0,0,0,0,0 -"Tfru02971_t",0.0934486949626779,0,0,0,0,0 -"Tfru02972_t",0,0,0,0,0,0 -"Tfru02973_t",0,0,0,0,0,0 -"Tfru02974_t",0,0,0,0,0,0 -"Tfru02975_t",0,0,0,0,0,0 -"Tfru02976_t",0,0,0,0,0,0 -"Tfru02977_t",11.6716706659568,9.31714840311008,12.7571453347154,9.15422934974449,7.16037092905585,3.98819090476497 -"Tfru02978_t",1.87821607787624,1.22652832164277,1.754500121984,0.92200364803485,0.991928152883473,1.11797001578861 -"Tfru02979_t",0,0,0,0,0,0 -"Tfru02980_t",30.735503696871,33.6580125215437,31.8875716720571,33.7603522186141,35.8502054740144,42.6721713254556 -"Tfru02981_t",1.07430149324102,1.63840996844336,1.75776036238011,0.111123841211361,0.185968911300049,0.550198745248905 -"Tfru02982_t",2.47188523487251,3.13687020639275,2.93849929039146,0.561241187259104,1.30869927259636,2.02673513995548 -"Tfru02983_t",3.55181863038416,6.61268076208833,2.46391751386445,4.03112663673252,3.58659008968808,5.44992603275575 -"Tfru02984_t",11.1690096285739,9.35493711218284,8.36366658583051,7.53458183473567,11.3484034485238,5.68462981053205 -"Tfru02985_t",6.02579173047573,4.2993657847641,4.59882634707597,3.34733686848933,2.96650408509271,3.94216133231796 -"Tfru02986_t",0,0,0,0,0,0 -"Tfru02987_t",4.01110552224418,6.26040497505162,7.29214113199599,50.4796997299081,52.8477277008473,57.0630528892101 -"Tfru02988_t",5.72277770922666,6.24724569639639,8.0822189500403,43.4494219136423,58.6465883330312,59.4553031018095 -"Tfru02989_t",0.407817362968192,0,0.351192795958417,0,0,0.596748153654153 -"Tfru02990_t",3.63866600029199,3.26429705814702,3.87072620462704,7.19544566722739,9.91131381154158,8.84783663742762 -"Tfru02991_t",1.81240660547539,2.05381233554268,1.28532997911685,2.75694301482502,3.22967582632128,4.3680753176106 -"Tfru02992_t",24.1887462530793,24.4263779782885,24.6378599269899,35.7818768700584,31.7419568076873,37.1073890592683 -"Tfru02993_t",0.0780765583377764,0,0,0.323044029097712,0.0675779222289211,0.228494646194713 -"Tfru02994_t",0,0,0,0,0,0 -"Tfru02995_t",0,0,0,0,0,0 -"Tfru02996_t",0.569966066930752,0.518102427865703,0.180480239305097,0.36745216210469,0.367751019571307,0.105059572753861 -"Tfru02997_t",0.223106844080133,1.04884815666012,0.541698692431734,0.50873721013528,0.997839518439047,0.453647904410288 -"Tfru02998_t",6.27581761959879,6.86928743806294,4.9745356480154,12.9094207723046,10.6786885119433,10.9050912595186 -"Tfru02999_t",0,0,0,0,0,0 -"Tfru03000_t",0,0,0,0,0,0.0873083236170138 -"Tfru03001_t",16.8547464369048,14.3322621948325,15.9659511100544,9.15298166958233,11.0324453448484,16.1466207318196 -"Tfru03002_t",0,0,0,0,0,0 -"Tfru03003_t",14.4131546878028,4.72993305332404,8.29747074128863,8.23685723481371,7.44369211979001,7.57389362789488 -"Tfru03004_t",0,0,0,0,0,0 -"Tfru03005_t",22.8146992080876,18.8851965959872,20.2608935806958,29.4989003091207,25.3007152790757,24.3425979510407 -"Tfru03006_t",0,0,0,0,0,0 -"Tfru03007_t",4.18591680321233,6.56363200628819,4.35918566663565,7.04857365922355,6.4035366954719,6.48125196315223 -"Tfru03008_t",7.09547101110198,9.11263581310603,4.64381284926096,11.4495098285949,13.0197086110504,8.92904585315622 -"Tfru03009_t",1.5334358211216,1.49461484392274,0.943229673630168,1.24626764289456,1.23243803929354,1.04178067502335 -"Tfru03010_t",1247.29692043322,1446.55189716281,980.542828915756,21.2813495087228,23.0013181006928,43.2764196736741 -"Tfru03011_t",1836.03951201963,1496.91756973459,1415.43564899343,0.663349952857161,1.11013502772232,0.938397859912339 -"Tfru03012_t",28.9550327707416,27.1698102738336,30.9049660443407,32.0597676256002,27.1794466626727,25.3617965303015 -"Tfru03013_t",46.0564502097275,41.5896997947392,57.3808026391449,104.433001401572,82.4951482494635,58.9690167877431 -"Tfru03014_t",4.63985512027324,5.09766572271992,5.09441700288454,2.33969962669251,1.83227843812126,2.52479879852915 -"Tfru03015_t",0,0.297063898753236,0,0,1.28130122146818,0.270771188662457 -"Tfru03016_t",2.35127378255942,1.7853045957598,2.24370223499606,57.1218572510668,104.010498945493,93.499421566449 -"Tfru03017_t",0,0,0.0622061186306396,0.821915117884893,0.687749172400266,0.158551315115334 -"Tfru03018_t",0,0,0,0,0,0 -"Tfru03019_t",0,0.0778677887032155,0,0.100345085250906,0.0839651781966733,0.709758196609442 -"Tfru03020_t",17.230153707265,14.173921436691,17.7869085117385,29.3352784894655,24.7319699783327,20.9059502848953 -"Tfru03021_t",8.51811124400548,9.26765133823046,8.48263080060253,7.934060705038,6.28952041196416,7.02964163319457 -"Tfru03022_t",17.128329244664,16.9030144967552,18.8367045104969,23.0861006107791,23.5533811693055,20.9404352100457 -"Tfru03023_t",10.0490881305559,7.42091203536194,7.61533852288778,10.3945985439336,13.5686120976768,12.9400125950269 -"Tfru03024_t",6.36753466971851,6.43008972044596,6.27939588470392,6.16153171391505,3.73347366915575,9.16716051200254 -"Tfru03025_t",9.3151040689271,10.781519697483,10.1247949672032,10.2127794032897,12.712844044025,12.9413560348727 -"Tfru03026_t",2.30630781469917,7.39609137225428,3.19542404621308,8.79147481000481,13.4469273030841,74.9324830760473 -"Tfru03027_t",8.16833692690441,16.0464703185322,9.23183145989777,10.4339319909294,15.5499320174836,188.172032752121 -"Tfru03028_t",14.4947481049328,55.5614090632901,16.3032599363231,149.319140097588,174.615640229203,373.335310565146 -"Tfru03029_t",86.2566435300423,64.9092561660814,98.4598113032724,24.1643843797797,12.0541667051759,4.76600731274052 -"Tfru03030_t",6.26038865364152,5.47086729404622,6.78241087194693,13.3690528965053,13.2405617959439,14.1842445753179 -"Tfru03031_t",42.3720459262104,43.5814792249507,48.0198638735806,67.545826206361,87.1613548706488,71.7987052557032 -"Tfru03032_t",0.582669700180279,0.340143783187816,0.410536849752147,3.17788962293979,2.98007558681635,2.55781459554914 -"Tfru03033_t",0,0.395504428252109,0,0.509670638283194,1.06618540056186,0.540748326918279 -"Tfru03034_t",4.20051883856588,0.481667892977717,3.6172857983661,0,0,0 -"Tfru03035_t",8.29982035573336,7.99452637791721,8.1236394315239,8.79458178493001,9.42651764897726,10.6045741772738 -"Tfru03036_t",0.491109254053036,0.46811713384096,0.70046089628681,1.03186423981978,1.03611250581456,1.15654021960484 -"Tfru03037_t",0.370789809205632,0.510215674781724,0.50176726080818,0.493120803559623,1.10033560128604,2.67407889534682 -"Tfru03038_t",0.9164768375067,0.490425491032615,0.789225992372006,0.315995795735581,0,0.670527925378666 -"Tfru03039_t",2.57372830571486,1.48119837609562,2.80182830625322,1.1050720024279,0.966715849318693,1.17245489842223 -"Tfru03040_t",2.86399011720844,1.67190508306573,2.9147550854648,0.897715328794263,1.05164650873602,1.07944836471944 -"Tfru03041_t",6.37045511063109,6.55159645899613,7.20028452756451,7.00132864959165,6.37538445444978,8.7391080321864 -"Tfru03042_t",3.2568635130084,3.18398756292919,3.30805460686079,11.0135214592234,10.6613240923977,6.41533924629191 -"Tfru03043_t",17.1065905792606,20.7764210553396,16.042546824335,21.6783896114974,29.8452346082653,35.1884191116896 -"Tfru03044_t",0.401963525222237,0.645296698727126,0.692303502080708,5.40519124284546,46.6203595150945,69.4055221005988 -"Tfru03045_t",0.510701378549832,0.204965060841898,0,5.81086493677891,65.6413731384218,97.1484228258857 -"Tfru03046_t",2.02747815228122,3.17137771119482,3.13378720155964,3.38776433237558,4.85958860543221,4.98262551810364 -"Tfru03047_t",2.95281131312462,4.41501238912029,4.03859613601802,6.76744958820342,4.4099368022137,6.94711909822601 -"Tfru03048_t",6.33155665828076,7.10569382942406,5.95728854442233,11.8856757781911,12.5333702349091,11.4094249224121 -"Tfru03049_t",588.241672363455,641.500224789342,641.358600709283,381.165954815856,462.179143262716,310.293430793524 -"Tfru03050_t",1.78983492455813,0.763228751856683,0.915158857111348,2.02493976961049,5.13160286134608,4.33774723142213 -"Tfru03051_t",17.8429118806614,14.1516584485707,15.8227672090595,29.5521984697087,31.8065614843722,23.5447700725568 -"Tfru03052_t",5.51892986089801,3.99924984133576,6.43586433104453,7.21514123018513,7.09888808582129,7.34664492450317 -"Tfru03053_t",1.94618633447369,1.301805116158,1.1173083547094,1.17430870036871,1.26336795147659,0.830608916572672 -"Tfru03054_t",0.913156269254863,1.1276505855683,1.51224322674402,0.653921065589934,0.36478517216548,1.02784380980565 -"Tfru03055_t",704.083259633178,997.815886099329,752.917450438856,959.862055600876,993.827184909375,575.971473498151 -"Tfru03056_t",2.10610972407528,0.187837061328648,1.20912060112703,2.90469672960283,4.45600160167972,13.0121018016844 -"Tfru03057_t",186.431538239616,195.844115634434,180.094654642335,151.980531119208,154.555596753193,123.191673098825 -"Tfru03058_t",0,0,0,0.130576775097347,0.491678887201256,0.600334919416161 -"Tfru03059_t",0,0,0,0,0,0 -"Tfru03060_t",0,0,0,0,0,0 -"Tfru03061_t",0,0,0,0,0,0 -"Tfru03062_t",0,0,0,0,0,0 -"Tfru03063_t",0.515928618862523,0.69020987734887,0.148097678541318,0.889445689122668,0.520979437285807,0.629120366697827 -"Tfru03064_t",7.29039201813239,7.36053851371832,7.25909556825777,13.9627294827569,10.2538844869223,9.12599871320455 -"Tfru03065_t",157.495842864814,208.019257525892,152.616227676883,149.148898994276,154.350492533072,129.189170075165 -"Tfru03066_t",114.473062966193,121.30389712687,131.984818932089,155.580932857915,179.415746179195,197.802572132479 -"Tfru03067_t",6.22835551926248,8.02226180374472,6.73563562455419,7.49127964028316,7.96091226588493,8.79586200963681 -"Tfru03068_t",8.04467278617808,7.02373340790095,6.65422587016717,8.50375078192243,7.78749697655244,7.95096111991782 -"Tfru03069_t",8.45897586802161,11.2544194580071,8.78127311052991,10.3080007850296,8.72566131819829,8.8170568578528 -"Tfru03070_t",19.4415905704194,17.598777914061,18.2086345931548,20.2568250813603,14.8621202069537,16.3006999877387 -"Tfru03071_t",6.78545350846306,6.74335050169846,8.83452493063856,1.75468819266632,3.77552653191272,4.66898050604215 -"Tfru03072_t",0,0,0,0,0,0 -"Tfru03073_t",0,0,0,0,0,0 -"Tfru03074_t",5.71448675918856,6.49315551841989,6.45487395115797,12.3592878588276,11.1768629959254,10.7509556940131 -"Tfru03075_t",0,0,0,0,0,0 -"Tfru03076_t",0,0,0,0,0,0 -"Tfru03077_t",0,0,0,0,0,0 -"Tfru03078_t",0,0.203112966918628,0,0,0,0 -"Tfru03079_t",4.24224584690256,3.40516871360601,3.7729967764473,2.37389225687119,3.00967898668539,2.59496527412687 -"Tfru03080_t",0,0,0,0,0,0 -"Tfru03081_t",0,0,0,0.420308797229914,0.0879248419810388,0 -"Tfru03082_t",0.129745755631579,0.10414440929264,0.0558654177354702,0.603930188761051,0.393047807126049,0.284780199967773 -"Tfru03083_t",0.656777248723076,0.687629214993045,0.516403818938175,0.56120939249436,0.790905172734945,0.731229467682943 -"Tfru03084_t",0.10545235578006,0,0,0.109078046645127,0.425938837011074,0.617222358089148 -"Tfru03085_t",14.825360606726,14.4052998333497,9.63116342600513,10.2233933914453,6.07824704828054,6.47000629751344 -"Tfru03086_t",0,0,0,0,0,0 -"Tfru03087_t",0.13978432075116,0,0,0,0,0 -"Tfru03088_t",0,0.0833541471161738,0,0.214830269041495,0,0 -"Tfru03089_t",2.51245986606198,3.83173561218006,2.32588096194367,32.4205779961234,24.5732019677609,14.4758832488291 -"Tfru03090_t",79.2550724258938,76.0217344295251,82.5833172835802,71.7325361781831,74.42879347677,54.2168216393049 -"Tfru03091_t",101.413076267641,116.077105794589,116.376472523232,82.1994563059191,85.0438729149176,78.5355576516687 -"Tfru03092_t",0,0.111460338871049,0.239159391627881,1.86724788389207,1.92301075883158,1.32073682271555 -"Tfru03093_t",8.19613431916561,10.2794977160038,17.2041641629873,12.1870329757777,18.6218381790817,22.4872170096504 -"Tfru03094_t",0.200981762611118,0.241986262022672,0.346151751040354,1.97497372334738,2.08747878425796,1.54397877554298 -"Tfru03095_t",0.289192346889664,1.1606455252493,0.498077218364433,1.19654173944626,1.50183499452638,1.26950209624188 -"Tfru03096_t",385.088027628658,620.154372728454,343.328513348343,679.619281493157,575.826397202874,343.920103537189 -"Tfru03097_t",114.559604688337,90.1322524059942,115.895348429403,73.8746927868317,73.6071347890601,70.8282876131969 -"Tfru03098_t",0,0,0,0,0,0 -"Tfru03099_t",4.19438669428248,3.99678876451033,4.85825245912695,8.65182649492089,7.72783630127537,6.04780296685819 -"Tfru03100_t",0.141989369191179,0.0379907070518223,0.0407581498408078,0.538528046253595,0.368689914853449,0.277025621752688 -"Tfru03101_t",2.33768004929245,2.34551321798207,3.39710318455777,6.95190750618277,11.8871328102991,12.8274907463745 -"Tfru03102_t",1.41193910315561,1.13333621696933,1.8238415761086,2.92096953576469,3.05520353792467,4.13210485570194 -"Tfru03103_t",135.565909193568,139.007893746633,124.587589371045,58.7318652995134,73.2790510366892,109.361462839159 -"Tfru03104_t",15.2367221377101,14.6093536227536,15.3146388817501,10.9222361591074,10.1414567875054,10.5039517895133 -"Tfru03105_t",0,0,0.108790550326968,0.130674953123736,0,0 -"Tfru03106_t",0.488027084979363,1.39903537379636,0.840531139870601,27.4037847754093,28.4821033346445,26.5243411698891 -"Tfru03107_t",0.193572296708404,0,0,0.200227750754112,0.167543420088293,0.424873685435791 -"Tfru03108_t",1.97167210790132,2.13310066890461,1.91937613791151,2.48282410935099,6.23261522728449,5.81968538214075 -"Tfru03109_t",8.88350383362617,7.56091259534102,8.57333005995115,11.4069585333901,10.7380517589496,8.8527615793689 -"Tfru03110_t",381.776128085199,256.972071688556,370.856310356425,82.0260114631378,95.1396093884548,156.391238670386 -"Tfru03111_t",22.7547066011504,22.7944242310934,23.200792986306,14.2163872350162,18.1981560536638,22.2419609772591 -"Tfru03112_t",26.0209131592979,33.7167525084923,34.2521752589178,20.1866783227099,28.4742266467754,30.7325299131889 -"Tfru03113_t",0,0,0,0,0.0380700755593293,0.0321806595949621 -"Tfru03114_t",0,0,0,0,0,0 -"Tfru03115_t",9.89711287992395,8.12897046780088,12.0906539014068,12.6181882817701,16.1364969583119,13.4717939345485 -"Tfru03116_t",0.244216211544905,0,0,0.505225836205143,0.422754908827436,0.357354998990568 -"Tfru03117_t",24.1727970898976,31.1720919418136,34.8078444748975,50.4177254280944,68.2549765063467,44.3592177048858 -"Tfru03118_t",50.9512863352925,45.9860362139803,45.9686107804358,37.1373056130709,49.1254321981309,54.4863047967255 -"Tfru03119_t",0.129846022830676,0,0,0.268620846452194,0,0.28500027740206 -"Tfru03120_t",0,0,0,0,0,0 -"Tfru03121_t",0.53389772153817,0.605010886133693,0.676128186611532,1.13699421830092,1.00576158496367,0.942081290796817 -"Tfru03122_t",6.4695491040512,5.79506683739711,6.86315385851772,6.98294280754966,7.46615365768454,6.10534634436118 -"Tfru03123_t",8.28234169740487,5.44125927452591,9.49466539227233,9.14006677618221,9.65712908842981,14.1070514075611 -"Tfru03124_t",0.0859441194592813,0,0.0370054813132654,0.177798145938178,0.111581346780029,0.0628798565998749 -"Tfru03125_t",39.8429446458958,47.2080817551985,31.0336804939233,54.9902086539166,60.4867394054926,60.9166413104251 -"Tfru03126_t",10.8991303674179,11.4236888413333,11.1440327312237,9.96945277646832,11.1747509138232,14.1031338129144 -"Tfru03127_t",25.0277593038278,28.4065239350485,27.0438444887751,44.1914424017311,54.6388659393821,44.6700529667982 -"Tfru03128_t",7.83102434077538,4.87471120604708,8.80810238791839,7.7145454253772,8.0690695977843,6.0412709404493 -"Tfru03129_t",16.5821529020082,14.3340330036103,12.4237669305331,10.8282328957559,9.93628972098496,12.5826379016302 -"Tfru03130_t",11.0975100277196,11.9195483886949,12.6782992024685,11.1830457612705,12.9079458687705,13.0514377602566 -"Tfru03131_t",0.175387007873585,0,0,0,0,0.384958621042032 -"Tfru03132_t",4.85463340442886,4.79499031921898,4.80494999108285,4.77699085204398,4.17456592146447,4.85493249285272 -"Tfru03133_t",57.4325484837532,48.7973363577452,44.9858815652044,16.4317813782502,20.888704367808,26.150589089768 -"Tfru03134_t",0,0,0,0,0,0 -"Tfru03135_t",0.0503056148332021,0.0403793443215477,0,0,0,0 -"Tfru03136_t",0,0,0,0,0,0 -"Tfru03137_t",0,0,0,0,0,0 -"Tfru03138_t",5.81925536660758,6.05256825518301,7.19928100358854,16.2776370876475,19.366711706245,19.6088532324151 -"Tfru03139_t",13.4959021869581,10.4700753369953,11.7888484128332,11.2881664925527,11.7370540406203,14.6930312113785 -"Tfru03140_t",0,0,0,0,0,0 -"Tfru03141_t",0,0,0,0,0,0 -"Tfru03142_t",100.640417224498,67.203356535698,105.185238915109,52.4952059980525,63.5315499846064,80.764669055138 -"Tfru03143_t",0,0,0,0.11155178925197,0,0 -"Tfru03144_t",0,0,0,0,0,0.12075650260585 -"Tfru03145_t",0,0,0,0,0,0 -"Tfru03146_t",14.8554934534877,15.6248365283257,21.1743558929075,14.3065169715652,25.7158717711128,22.4872170096504 -"Tfru03147_t",4.3657077816623,4.40401402147441,4.115170641406,2.44097875919339,4.54461526989494,5.352294535443 -"Tfru03148_t",0,0,0,0,0,0 -"Tfru03149_t",0,0,0,0,0,0 -"Tfru03150_t",4.87709643180856,4.26017020881348,3.5822864480175,13.5516694414775,12.7052647727513,13.6433542016433 -"Tfru03151_t",0,0,0,0,0,0 -"Tfru03152_t",11.4351692520119,11.7488502388939,14.8367802256262,8.09950177141393,9.23769347056685,7.47397279195518 -"Tfru03153_t",6.30077825785856,5.56617078049679,4.36568975665549,3.05269645341539,2.39767633204802,2.88779806942895 -"Tfru03154_t",0,0,0,0,0,0 -"Tfru03155_t",0,0,0,0,0,0 -"Tfru03156_t",13.4243385562622,14.946601627476,15.6624745908878,18.3652195717457,28.8606495490236,18.6929821121458 -"Tfru03157_t",9.61762630358058,10.6230864067852,10.9721976271548,13.6895438905996,13.3047836472854,14.6746326787047 -"Tfru03158_t",0,0,0,0,0,0 -"Tfru03159_t",0.202661070107199,0.24362274208672,0.435817566068879,0.20934678410908,0.262821124042117,0.22258651701915 -"Tfru03160_t",0,0,0,0,0,0 -"Tfru03161_t",0,0,0,0,0,0 -"Tfru03162_t",0,0,0,0,0,0 -"Tfru03163_t",236.17333775333,276.90166201843,338.968626432632,226.563387571687,190.157585538622,104.306619546535 -"Tfru03164_t",106.191001087306,90.6407889951856,100.663730590905,21.5506347472312,12.4394276938791,14.504375095247 -"Tfru03165_t",0,0,0.278609945959309,0,0.186685094527135,0 -"Tfru03166_t",0.331794544906429,0.131706064486298,0,0.169724304350165,0,0 -"Tfru03167_t",17.1075676334584,16.9196794406252,19.7306498093002,17.3797687654569,20.888704367808,19.4453098359813 -"Tfru03168_t",0,0,0,1.08623554784106,1.4283076562527,0.768313247829721 -"Tfru03169_t",396.786440329949,286.094583136704,325.353638847957,84.5408544496887,99.3504401220768,139.216153062458 -"Tfru03170_t",208.484467125473,173.533010617103,163.607513632775,49.0300816089726,41.0266185832718,91.3517402924146 -"Tfru03171_t",12.0239360580276,11.9538346124589,10.2529241993136,10.9741290146711,6.83605365200287,7.76219183962674 -"Tfru03172_t",2.68946446277591,2.44283126851755,2.62077993816315,1.83021996266396,1.77649661771799,1.91592857083064 -"Tfru03173_t",14.5767491523353,20.2854383675323,15.8209830606401,20.7879164391759,22.9190453857535,20.1307536803023 -"Tfru03174_t",0,0.903127299334615,0.968915838849562,1.93970633543046,2.92153838778961,2.46957829659553 -"Tfru03175_t",35.3952348834017,36.2840179279207,34.8875280046001,16.3211026477641,20.3008194797338,20.5923550687357 -"Tfru03176_t",3.21741868486394,1.29127988330396,0.832051680727438,1.47912925663463,1.18863943571819,1.73192395206463 -"Tfru03177_t",49.7449619275905,45.3704275429307,36.6286815766711,14.8220800227457,14.5296790627064,17.3717630832427 -"Tfru03178_t",59.0343188123685,56.4983420412574,48.6378293159437,37.2843012367066,38.3221611947898,38.2080101623429 -"Tfru03179_t",0,0,0.6079471920362,0,0.611040707584934,0.516513106962742 -"Tfru03180_t",34.1737125849956,36.3982673755301,37.0689261736656,61.1804115602786,56.692149807503,59.2212245263274 -"Tfru03181_t",2.02434642822765,1.62490373534903,2.39699661337883,3.4026655715503,5.91347529094763,4.62839305921519 -"Tfru03182_t",0,0,0,0,0,0 -"Tfru03183_t",1.18882608638841,0.636165141669666,0.341253377204877,0.409900206732475,0.685979663380369,0.289929527482914 -"Tfru03184_t",35.5555728461835,37.7654176719136,38.5938760377453,19.8430430786713,16.8186549358317,19.2380797488072 -"Tfru03185_t",43.551391639186,37.4400748713933,38.8358904733158,24.7901609691333,23.4201032313604,18.1001403169701 -"Tfru03186_t",51.6986933978138,42.6090828404024,43.327928793683,21.9634440442588,19.1772776224138,17.5614456646794 -"Tfru03187_t",82.7078903043399,90.4340803655632,93.0960375952742,91.6142849590686,91.3150603006155,84.8122530880859 -"Tfru03188_t",0.225228892148653,0.0903934383605692,0.387912686152461,0.582431929137296,0.0974716411773714,0.411964207951593 -"Tfru03189_t",0.866086358468531,1.04278616005646,1.86458030843902,1.34379655403018,1.4992545220272,0.633660410581214 -"Tfru03190_t",10.3808056028267,10.7131782021688,9.45027887306286,9.4338550668632,8.34315954226079,8.35447415115813 -"Tfru03191_t",1461.38521287367,1972.54902204977,1445.89296806443,473.547581891744,597.964437394177,583.990380185678 -"Tfru03192_t",39.5526148284479,50.5595046883601,27.82527537209,10.5502766833867,6.19988292612174,4.95594087571349 -"Tfru03193_t",12.0859998775825,7.86950360359176,13.2463986982625,16.1733260644343,18.6539540253233,18.4580687707985 -"Tfru03194_t",0,0,0,0,0,0 -"Tfru03195_t",24.9996276897733,27.3934030761038,24.3822585994051,22.6718782857345,26.9720557471412,32.2851075489416 -"Tfru03196_t",12.3651636806459,9.04951798929231,10.9614721162779,11.2855641334136,10.0729134986416,14.1023730337577 -"Tfru03197_t",0,0.216827990408311,0,0,0.701419720112403,0.197636848316327 -"Tfru03198_t",0.781249628996721,0.91973782416222,0.89703305601282,3.82505760182096,5.31942568478713,6.40181652252415 -"Tfru03199_t",0,0,0,0,0,0 -"Tfru03200_t",18.4777943566763,16.5131022971244,14.3982791796273,6.15178814271516,4.85622290638818,5.44592471302278 -"Tfru03201_t",0.831785693136841,2.67063317017583,2.86517612771403,9.46422806393813,7.91932752755667,7.30277749337609 -"Tfru03202_t",16.0070922492911,15.4355465448085,14.6171651187398,13.8904801514202,9.94933675455261,11.0825747257279 -"Tfru03203_t",91.2830210945412,98.5062015804202,80.8167017917273,61.6082016663121,54.4430799029124,46.7566122213533 -"Tfru03204_t",19.9592687793936,18.2638477950969,16.8129568857363,16.8167093022132,15.045326750961,16.1428753237312 -"Tfru03205_t",12.5671551619961,16.3857106513706,9.46579412263552,19.4913284477646,21.0666267028017,22.4031514874662 -"Tfru03206_t",4.71668428907491,5.07179963581134,5.51789359073648,2.66956193960938,2.31082132367539,3.64623236258173 -"Tfru03207_t",7.53353922135262,7.87945846665853,6.29093182325512,4.01434876376043,1.38314377779411,2.8394185245881 -"Tfru03208_t",6.15395161152548,7.82966532416052,5.58535314763775,3.48651896206735,2.2101472437179,2.48475773766208 -"Tfru03209_t",4.13755602942889,4.04312235647873,4.49256052046163,10.420418103486,8.56372898823886,10.0028791152135 -"Tfru03210_t",10.5608507661649,8.4769907062939,10.5988525283103,4.02461564039409,6.66658118986479,8.42385035427672 -"Tfru03211_t",0,0,0,0,0,0 -"Tfru03212_t",4.77331686201406,3.83144914869231,5.26150661581338,31.4020822012233,46.602963858559,34.9233294468055 -"Tfru03213_t",1.08680953132532,0.785124896704866,0.561545013977495,4.04703541757082,5.83215827650166,6.04313654179134 -"Tfru03214_t",0,0,0,0,0,0 -"Tfru03215_t",3.34497671678045,2.06534471721239,3.32369292346557,3.72613725446243,3.67466594564246,7.62430297999479 -"Tfru03216_t",3.62457932688512,3.00800278320736,3.75615783085032,6.16393992778545,6.93905424756171,7.48368004467414 -"Tfru03217_t",190.15136430366,175.568562934246,211.671353111878,129.79264653487,199.079719546702,152.090653150947 -"Tfru03218_t",15.3802561217052,3.45672157532142,15.4816300239505,4.66665882229519,3.43157279939992,3.80093128299813 -"Tfru03219_t",7.42268392050655,7.38733324787161,6.75387488907694,3.414696173256,4.17338330095615,3.82052408065839 -"Tfru03220_t",21.0025941928619,20.3526578778535,17.8891224937655,16.6687782250519,18.1784610795798,24.139005313632 -"Tfru03221_t",1.30417143759039,1.04683319560649,1.02949919229207,0.224835300976157,1.4110060346375,1.35175422645333 -"Tfru03222_t",0.342899497026316,0,0.295288636601771,0,0,0 -"Tfru03223_t",0,0.53946804000384,0,1.39038150089625,0,0 -"Tfru03224_t",27.8079040430629,18.2710893481774,30.8176583380829,25.0016226653919,18.0769054310905,18.7142221259083 -"Tfru03225_t",6.9789184465309,7.29296527613156,6.69027780890063,8.71712539960222,8.2059510829451,6.06943380730689 -"Tfru03226_t",1.31266213705387,1.68583762542461,1.80864289918585,0.814676660880794,1.81784610795798,2.30493974348916 -"Tfru03227_t",6.69109189181747,9.54810681454513,7.68273082636538,7.69016309765456,7.72182410219497,6.52726292853431 -"Tfru03228_t",5.8564926114711,7.37553961123269,7.34761177794251,6.31896640811385,6.72952645734443,7.7200706152121 -"Tfru03229_t",9.79493182088625,12.3376098865156,10.9005204327613,13.7947043564389,13.0428420301918,12.5135144220518 -"Tfru03230_t",1.55085927268579,1.82753803855928,1.13661768998325,0.546104281711137,1.11384129160033,1.11052346897619 -"Tfru03231_t",0,0,0,0.7899894716487,0,0 -"Tfru03232_t",0.639525359505828,0.373334283831057,0.700927351933616,0.360825649109832,0.402567996225988,0.723118350898561 -"Tfru03233_t",238.308927211928,261.656685528699,201.412574036377,243.19059379614,227.775127574263,242.959891654901 -"Tfru03234_t",27.6184113636133,38.9428491473086,19.7142076011257,7.16915461575098,4.72639988069074,4.99403611089319 -"Tfru03235_t",7.95442699220059,7.9757778818453,7.05478828244873,11.0434516848767,9.51524354715971,11.5234902977418 -"Tfru03236_t",6.88721432947743,8.5386581028,6.63560544181821,2.46871715418422,7.43664316891899,8.63105142042479 -"Tfru03237_t",3.52765190175596,3.40838089121617,3.31912693785272,5.87884868816,4.41032648275963,5.06632685971698 -"Tfru03238_t",7.91006794276616,13.7932169352923,7.98621539900245,6.20706027337747,10.3876920454742,28.5373492051039 -"Tfru03239_t",9.52867767313653,9.82004020053551,8.67623524493544,7.2807808735314,5.78146553571132,7.26930744598083 -"Tfru03240_t",18.7019566664353,18.109351170639,18.0225193487777,14.7390265148751,18.4996353036006,11.185337742256 -"Tfru03241_t",1.72624061859139,2.48701019556845,1.8362651813741,2.24343695866014,1.60905240325047,2.36404076255299 -"Tfru03242_t",8.12295454845877,9.38371291503771,8.55481789423271,7.96698894845096,7.06236379920956,4.71160737345055 -"Tfru03243_t",1.84959114560545,1.64090800157205,2.34725382049612,12.38535085835,13.8181581323341,15.9538509862209 -"Tfru03244_t",9.70170594695649,7.18834317439937,7.43655202203318,12.4613824270091,12.7341504009239,13.0262246078745 -"Tfru03245_t",17.9005161159501,10.1231896151405,12.6123282073977,19.3576117000247,21.479634399116,20.0914844468789 -"Tfru03246_t",1.39329248945275,1.28405322821039,1.19983681272771,0.533776681985778,0.535974282444612,2.98264110951096 -"Tfru03247_t",0.164189661442568,0.087861244321804,0.0471307595879048,0.169834873929546,0.142111747853392,0.200211921258559 -"Tfru03248_t",12.2272528568344,10.9495988344411,11.3890780582396,11.1849997005416,11.6630126530373,10.4673171189475 -"Tfru03249_t",48.4811357105657,37.6650495587707,48.2101611880709,28.5514314175577,31.8544221108053,39.7166814547866 -"Tfru03250_t",0,0,0,0,0,0 -"Tfru03251_t",0,0,0,0,0,0 -"Tfru03252_t",16.8552675200332,18.8931228935596,14.1570860886015,11.5200287622241,13.2795564514857,17.208757351469 -"Tfru03253_t",1.84950871808436,1.99845273124002,1.53145038034365,2.06026048024045,2.64749814198791,2.18588697096347 -"Tfru03254_t",0.0760274902909027,0.152564490988653,0.130942472339247,0.117962231439753,0.131608767996958,0.111248977061317 -"Tfru03255_t",12.4589540298335,12.1693579631604,14.6070266307088,23.3420956319865,27.9768573136594,36.5349194203246 -"Tfru03256_t",42.9779401167615,43.2994084845901,43.2551228100026,22.6851718622806,26.1769839545949,23.6802230488992 -"Tfru03257_t",0,0,0,0,0,0 -"Tfru03258_t",0,0,0.116124744731034,0,0,0 -"Tfru03259_t",9.16476816984015,4.29122295044194,0.657688312249044,0,0,0 -"Tfru03260_t",0,0,0,0,0,0 -"Tfru03261_t",0.487723522620885,1.07658716282559,0.840008313119697,10.5943438047778,6.64872596814819,5.08491786662341 -"Tfru03262_t",0.452479587637957,0.363196615890402,0.389653766431421,3.43227031274733,2.48036452791394,2.75875492937063 -"Tfru03263_t",0,0,0,0,0,0 -"Tfru03264_t",0,0,0,0,0,0 -"Tfru03265_t",25.4297144473013,20.883503052213,23.3443219355456,18.9250229314166,17.1433239351881,22.3509308459555 -"Tfru03266_t",1.48690930929277,0.946641204615243,0.640227568863781,0,2.57394136739832,0.543938577377859 -"Tfru03267_t",8.26123220899256,15.1495847125903,10.0692978351043,5.91595759792407,8.360442009368,9.81023269543547 -"Tfru03268_t",37.1196618596303,118.890456537637,32.0547172286476,92.4603698322308,242.304902759199,404.118584113858 -"Tfru03269_t",2.78231238617489,2.94672630019022,3.09482593604938,4.07713066714951,3.54538523355189,3.53409957603368 -"Tfru03270_t",67.6710091721814,93.5480293350939,70.4779263985673,72.5403429539295,37.7961806955806,17.5614456646793 -"Tfru03271_t",14.1277516598123,12.1386697804141,13.6055183510522,11.3203136203237,7.50905640047065,7.68677204839588 -"Tfru03272_t",0,0,0,0,0,0 -"Tfru03273_t",29.0398007065036,34.9140666938225,34.5974911055107,22.2954867102178,25.4092987580743,17.8534653682626 -"Tfru03274_t",80.5612703937341,96.5030804935146,83.3779072586555,78.4892782956119,82.5227500034882,74.9837679993347 -"Tfru03275_t",0,0,0,0,0,0 -"Tfru03276_t",0.893727412462207,2.3314775670766,1.15445291437395,10.6312415320614,11.8340747993113,11.2298520194853 -"Tfru03277_t",7.63111289408119,7.32853988019135,6.63022376668291,6.1315485912196,10.7920790837408,13.3099521278531 -"Tfru03278_t",0,0,0.0918092842226318,0.661666323558005,0.922764521806079,0.546009414701325 -"Tfru03279_t",44.6422854144239,40.0669928912577,44.1211541326054,29.0312280947655,28.2051458902897,22.8771298905352 -"Tfru03280_t",532.211761059274,667.653242632309,443.97820737772,620.754583219938,580.573119433358,442.917060834928 -"Tfru03281_t",33.7171691526661,36.438284101106,28.711192211291,31.3693135789077,39.6176326667075,41.4820246810307 -"Tfru03282_t",9.44133266526152,9.7887345992397,8.50683236661814,6.28456778979842,6.65849979189602,7.73909702288419 -"Tfru03283_t",36.503249352833,40.7658468616531,36.9017820740689,38.9622020182787,37.4558719473457,31.9711205394131 -"Tfru03284_t",8.31295340267927,6.76102638767932,8.34393578654546,8.65571707847134,10.0064923373834,9.26406537356938 -"Tfru03285_t",17.4005661650623,18.0593687578468,16.8933927786752,23.845593029123,21.9676389827112,19.2990557238495 -"Tfru03286_t",15.3515364747825,18.2410056736591,14.0527649720915,3.2508919992941,5.85895724003722,6.72135906015066 -"Tfru03287_t",4.2017921089084,4.61957324457063,4.18855160648071,8.42910882835134,7.51604150122667,6.81910030204736 -"Tfru03288_t",0.108260794808566,0.0868988466713719,0,0.223966092338362,0.0937034076266998,0.0792075513226517 -"Tfru03289_t",0.859441194592813,1.4659457612388,1.20267814268113,1.11123841211361,1.67372020170044,0.628798565998749 -"Tfru03290_t",5.83212532958809,5.79593762129454,5.02234722418549,9.04897051424617,8.05260755260723,8.33080149712888 -"Tfru03291_t",0,1.14943474460769,1.64422081744168,0.493743430836845,0.413146842717722,0.698466588936111 -"Tfru03292_t",4.0152018309883,2.97500757427873,2.39379207245186,4.15325356527463,6.14859712985786,3.84156623914861 -"Tfru03293_t",12.9987402454389,9.56435099811099,13.5777776385872,7.96780229934988,9.47988514751724,8.36558837178493 -"Tfru03294_t",11.5026432743302,9.06807524678277,9.99396809819075,7.33009807345066,6.04467165482359,8.04005061298584 -"Tfru03295_t",3.24557176234418,4.80952190314303,4.40739131450935,11.5563841345349,13.1273879415687,15.0237776247238 -"Tfru03296_t",6.34040579407151,5.2710826024058,6.43506368443482,18.5040664753517,31.1630761364225,35.9512614078813 -"Tfru03297_t",7.82562413761428,8.68321845424185,7.53188275825339,9.99931901574234,10.3592326152126,9.76705060254769 -"Tfru03298_t",0.0637408017992773,0.127908772793977,0.0548905280481289,0.758222081952787,1.35166099074265,3.54426748619477 -"Tfru03299_t",0,0,0,0,0,0 -"Tfru03300_t",10.6914614301691,11.091929648166,11.2084912062222,41.6135308468687,50.0730648248384,55.6215506175319 -"Tfru03301_t",0.181187009571777,0,0.0520098605085794,0.937083146951308,0.522745106529972,0.309313744633101 -"Tfru03302_t",0,0.069020987734887,0.074048839270659,0.177889137824533,0.0744256338979724,0.566208330028044 -"Tfru03303_t",0,0,0,0.117430870036871,0.196523903563024,0.166121783314534 -"Tfru03304_t",0,0,0,0.153531526196616,0.385409068825013,0.108595512060738 -"Tfru03305_t",0,0,0,0.087599640954924,0,0 -"Tfru03306_t",0.0705969552701239,0.170000432815928,0.121589438600729,0.730242385103232,1.28318548797034,0.929723594012436 -"Tfru03307_t",0.494178686890867,0.297500757427873,0,0.383377252179197,0.427728495990112,1.08467752634784 -"Tfru03308_t",14.8483456619303,9.40932628143971,13.4596680869645,6.06271003446172,10.1461178118585,4.28825998788682 -"Tfru03309_t",22.4678914621313,22.8960272848366,18.0864289918585,15.8640912568415,16.656543407801,14.4371419592189 -"Tfru03310_t",0,0,0,0.0935401978765174,0.156542183677759,0.0661626047646692 -"Tfru03311_t",0,0,0.0818390452120293,0.39320743813251,0.0822554799980985,0.20859183198997 -"Tfru03312_t",0.055599190450991,0,0,0.230043266253566,0.144368982763042,0 -"Tfru03313_t",6.66289195083894,5.81323319111936,7.48403958283799,11.3867450532304,15.5457184404682,7.41819687559731 -"Tfru03314_t",0.686563257418961,0.901785356839318,0.591235420239059,0.451925636546057,0.810332588985725,1.18728941715143 -"Tfru03315_t",0.378709436986239,1.41858613108608,0.434835257505238,2.08922840155756,2.29450147360586,5.54155310230302 -"Tfru03316_t",0.0828504701888042,0.199507411292854,0.142693719856872,0.428495285144402,0.430259433836207,0.181849289427153 -"Tfru03317_t",0,0,0.492038727866514,0,0,0 -"Tfru03318_t",1.37471525626005,1.04215416844431,0.526150661581338,1.02698633614064,3.37127823657661,3.24088497266355 -"Tfru03319_t",0,0.340819158930608,0.208940695934827,0.0627428475287254,0.525009706269452,1.19823582333011 -"Tfru03320_t",41.0173844035286,26.2031648834195,37.8336498956233,0.77848908243928,1.221397161002,1.30776723034846 -"Tfru03321_t",9.64746154039254,6.2176743938544,7.82279745163367,5.900089145021,5.97314060619888,4.84301393434996 -"Tfru03322_t",9.16563183543774,8.61502099142935,9.44706635866435,5.05968395376502,6.00125566448535,4.62117182414259 -"Tfru03323_t",4.67905895942239,5.12153202660642,4.34990064361153,4.67493780083493,4.60214204546323,4.20140915268911 -"Tfru03324_t",88.7102579893839,99.9713500950575,96.1236785580785,318.426532625687,397.573369032063,356.325416755527 -"Tfru03325_t",2.5915797461629,2.94696551488108,4.64946760716156,5.36136825669622,4.29927614221424,6.00429890334795 -"Tfru03326_t",1.14188861631094,1.04751075754539,1.6857254206004,0.506206857246318,1.83549509929737,1.07414667657747 -"Tfru03327_t",3.58905090637513,2.02727309386504,1.83153711309959,1.64997804735351,2.4161245738682,2.52862587893326 -"Tfru03328_t",15.9529658800298,10.7397925295044,14.8458283914795,9.04919047512305,10.0218162153885,9.6009741229564 -"Tfru03329_t",21.2082139961486,24.7570560377041,24.8403821958112,10.026789672379,9.61043117214147,8.33861650791418 -"Tfru03330_t",13.6667598575561,16.7777141669053,13.8460700416141,11.6419503692056,14.2644383590961,12.0577390090023 -"Tfru03331_t",11.0778177682206,12.8708383100658,11.3214178399525,12.8408758451811,18.5422168425883,24.5671019008457 -"Tfru03332_t",1.48690932338845,2.30177577175548,1.0975329855995,0.988735264785792,1.28697069589945,0.543938582534316 -"Tfru03333_t",0,0,0.2494679860946,0,0,0.211948482159923 -"Tfru03334_t",11.9703904726156,15.5481397578021,11.4328722124701,8.77993499809353,7.53511340086208,11.1465134400167 -"Tfru03335_t",17.5826118621905,17.4436792929021,17.0870321820394,14.2777562474169,13.2982776406119,13.314924940384 -"Tfru03336_t",4.9797588865622,6.95389921163932,6.67073561060861,4.96019745227091,3.75142775297585,4.72289153440883 -"Tfru03337_t",55.7773812990758,52.233329705779,51.7390468701525,75.6803455463032,41.1250430980657,32.4958717934538 -"Tfru03338_t",0.860174506192295,0,0.493827412746989,5.04191244049092,2.23353105414632,3.14667541773265 -"Tfru03339_t",13.3197799440741,10.9710469302244,12.4449625394757,26.204729071233,19.8173482442673,21.7197776174039 -"Tfru03340_t",0.869072863152905,3.02288125938207,0.997871944378399,2.39720948489061,1.0029495768044,0.847793928639693 -"Tfru03341_t",14.4739846944426,20.9000835968776,17.4764035837466,5.0697593481734,4.57361463807112,6.10728488703297 -"Tfru03342_t",29.6545550279353,27.1512716088557,29.4658656965887,21.5056099153637,21.7746655600242,21.6009868901079 -"Tfru03343_t",6.65240540045398,6.82726097174222,5.97425030047814,4.17782903015791,4.40066817989827,12.428596656069 -"Tfru03344_t",8.20373271315741,6.00149859236451,6.70695759895864,6.65973834028634,11.1452616754902,11.016605284085 -"Tfru03345_t",20.7850759561119,20.4861281064257,25.8912746442715,20.8997219331444,21.3372040289659,19.1680451242214 -"Tfru03346_t",5.86118907707773,5.71939440636531,4.9484073849134,4.04180668964115,3.68045450038003,3.2792576377958 -"Tfru03347_t",3.36382147234888,3.58870655184155,3.41011230865248,7.79579085526071,6.33896666130303,8.94093875832256 -"Tfru03348_t",0,0,0,0,0,0 -"Tfru03349_t",0,0,0,0,0,0 -"Tfru03350_t",0,0,0,0,0,0 -"Tfru03351_t",0.375046324872533,0.602084866223077,0.645943892566374,0,0.649230752842135,0.274397588510615 -"Tfru03352_t",0,0,0.101609151639654,0,0,0 -"Tfru03353_t",10.9371999947733,10.3058752950486,10.6471053687922,22.9544115770186,24.283680083665,23.7742212535989 -"Tfru03354_t",41.0867780527792,37.6355004985472,38.4622793750914,24.6996713755343,27.3618263430268,32.3239727740559 -"Tfru03355_t",13.0216083995744,14.1610360535668,14.1978467586089,45.5132694545403,45.1734757827557,26.8141323492573 -"Tfru03356_t",0,0,0,0,0,0 -"Tfru03357_t",2.9570876993989,3.11291425352497,3.0474537020327,7.32096433859409,7.5944638324384,6.98708412336781 -"Tfru03358_t",141.057963700707,143.068382265765,153.798027687469,88.6603068778377,90.4009956389912,115.662291632745 -"Tfru03359_t",0.270419667719251,0.144707092311126,0.155248317526682,1.21210833664667,0.624153170114327,0.197848905020529 -"Tfru03360_t",0.157914242051593,0.126754708678542,0,0.245015537107006,0,0.346607480223934 -"Tfru03361_t",0,0,0,0,0,0 -"Tfru03362_t",0,0,0,0,0,0 -"Tfru03363_t",0,0,0,0,0,0 -"Tfru03364_t",0,0,0,0,0,0 -"Tfru03365_t",0,0,0,0,0,0 -"Tfru03366_t",0,0,0,0,0,0 -"Tfru03367_t",0,0,0,0,0.188377835021552,0 -"Tfru03368_t",0,0,0,0,0,0 -"Tfru03369_t",0,0,0,0,2.10425916033721,0.790547393265308 -"Tfru03370_t",1.66769978702625,0.9203083811251,1.97469696189026,2.91100345327132,2.3456078812361,1.75396572705544 -"Tfru03371_t",1.75937961825021,0.706110000177849,2.2726402921707,1.81987107491696,0.761401511186587,1.28722638379849 -"Tfru03372_t",0,0,0,0,0,0 -"Tfru03373_t",0.131677706538319,0,0,0,0,0 -"Tfru03374_t",14.8321768644762,14.5098300450339,10.7770169992867,22.7734901064608,21.4631209436142,18.4819076443453 -"Tfru03375_t",4.05525593925575,6.41298462697548,4.84737145891308,3.50600522646105,5.50068707018984,5.26969893324132 -"Tfru03376_t",14.9906992008531,15.6139183151382,14.2924091024352,10.5681546661966,9.03613360089573,9.53149095555087 -"Tfru03377_t",33.0790858537574,36.4562386498073,40.9205455940798,34.4879786439536,12.9521535192006,9.02768066199923 -"Tfru03378_t",167.427739118626,192.145822530749,172.097691395472,249.859734486922,164.932108053787,92.993019925555 -"Tfru03379_t",0,0,0,0,0,0 -"Tfru03380_t",8.30220193976657,7.99682035966123,8.54530574485925,5.68420672564356,4.9616505534853,5.84279627526037 -"Tfru03381_t",6.672474327764,6.21280470442411,6.07049644353912,6.2198200683704,5.8431981044435,7.07577590227035 -"Tfru03382_t",0,0,0,0,0,0 -"Tfru03383_t",0,0,0,0,0,0 -"Tfru03384_t",0.112862245937412,0.225379361687783,0.1956965385285,0.35617271624555,0.197133808736181,0.123753254165782 -"Tfru03385_t",0,0,0,0,0,0 -"Tfru03386_t",11.4336404378987,10.6473955289976,12.3735356433732,10.4646052306146,10.4031089729354,10.1596276157282 -"Tfru03387_t",1.96899320539791,3.68776980527382,2.8260045297154,15.6146359987649,17.6103841692072,20.6484185335059 -"Tfru03388_t",99.3102798258501,123.182092343492,110.530756779609,119.989463165489,130.981229500548,133.079605969085 -"Tfru03389_t",2.56520234407788,2.57379790132287,2.20902949511265,3.31674976428581,1.11013502772232,2.81519357973702 -"Tfru03390_t",23.2937862866286,21.91588913052,19.2373835640677,24.6871715418422,30.0770901498502,22.9097041171044 -"Tfru03391_t",0,0,0,0,0,0 -"Tfru03392_t",9.95282170668103,10.0505988369264,10.690577136589,11.2913147393414,13.4312196511545,15.894786171662 -"Tfru03393_t",6.86281951090697,8.07302524851224,9.17058371418176,7.34356426709448,5.83759031851294,6.05993547584006 -"Tfru03394_t",7.15730863555627,9.04136380115995,8.89165224180752,8.617064122538,7.0073397457598,5.75161872676998 -"Tfru03395_t",0.339207443222533,0.453792092981054,0.0973697388525355,0,0,0.0827255179359054 -"Tfru03396_t",362.66276171919,400.473806695142,351.73015907168,369.727558633363,269.321168689371,196.166375536702 -"Tfru03397_t",12.8368524002775,11.6449639091312,11.2702971510421,8.75613142972971,7.56783132779323,7.74170458535748 -"Tfru03398_t",15.3637654017822,17.8423281757002,17.7345529414332,17.5826454436529,18.6735942607356,16.9806196407503 -"Tfru03399_t",16.5755305180519,16.4568059434708,13.9814192656164,10.6621952201567,11.7322562293378,15.3869835160865 -"Tfru03400_t",8.03833243320734,7.55381153049069,5.48713131608308,4.15735425544769,2.884796624064,7.60244613955197 -"Tfru03401_t",23.0152225968261,22.5934520146155,28.520538307847,24.2750269869734,40.1235330311891,39.8051616972697 -"Tfru03402_t",78.4081107912109,124.91677486301,75.3213306345851,264.280725657843,266.931022271318,185.269507570337 -"Tfru03403_t",10.6180464497558,8.16777971826554,9.1437534517061,11.7966833048157,9.36047147456418,8.1641711998758 -"Tfru03404_t",10.3316172510667,9.80630862904084,10.3258248104327,10.5308293686566,10.8352766219398,13.1316734638042 -"Tfru03405_t",0,0,0,0.164737144696274,0.137846150366482,0.116521440429152 -"Tfru03406_t",0,0,0,0,0,0 -"Tfru03407_t",0,0.153084006849,0,0.197273198245822,0.0825355781138695,0 -"Tfru03408_t",0,0,0,0,0,0 -"Tfru03409_t",1069.64539451257,954.363122994802,1107.91381842163,1015.48604667194,1170.98246193151,1385.27558506927 -"Tfru03410_t",0,0,0,0,0,0 -"Tfru03411_t",0.119843618789511,0,0,0.247928227752595,0.207457473090782,0 -"Tfru03412_t",0.0829322574249234,0,0,0.600485594068107,0.789587648076515,0.546086415041855 -"Tfru03413_t",2.61551608877483,3.10714780277513,2.52264015826669,1.73148381224976,0.905527326504596,2.3728727952898 -"Tfru03414_t",6.09352746894389,5.70634945462816,5.83728436397344,4.32417637262563,4.39512975216154,3.8707262865079 -"Tfru03415_t",9.65284792705041,9.33351162155614,10.0613247371928,14.5598725088099,17.5283704184557,18.7855133177969 -"Tfru03416_t",12.5187876716073,11.1281892515713,14.5226006190785,20.9755829927928,24.2677977958922,23.6171165835343 -"Tfru03417_t",1.56411541361818,1.64608059412581,1.73605772698021,2.69648874102042,1.62455423797651,1.01721240920774 -"Tfru03418_t",3.80171181485698,6.94080442055919,3.59481818471721,25.6764108203068,27.420926206997,29.7781035183693 -"Tfru03419_t",9.24972366269058,7.96036835614801,10.6753042857734,14.8941264675596,12.1327299827388,8.9999917339418 -"Tfru03420_t",96.7637592692816,104.56255536971,85.5945699759278,69.3096802574246,65.7928880518766,68.3521086984899 -"Tfru03421_t",41.7972419085667,48.4052387498157,53.3639192037012,39.5776912480702,38.8767088434577,42.2952639399332 -"Tfru03422_t",89.00993160588,51.5246441096832,89.8747523548674,165.209385342202,36.4728315815585,15.6765296050273 -"Tfru03423_t",0.753456293914327,0,0.16221012548752,0,0,0 -"Tfru03424_t",0.173217271693706,0.139038154674195,0,0,0,0 -"Tfru03425_t",2.12374311721695,2.13085941959358,2.18057092366597,4.98496041401049,4.56008065972929,3.7351154488562 -"Tfru03426_t",3.58953428023457,2.88124975981661,3.41997930027869,4.50294008923202,6.21372851447454,4.19079953361666 -"Tfru03427_t",0,0,0,0,0,0 -"Tfru03428_t",0,0,0,0,0,0 -"Tfru03429_t",5.39171074801827,5.38461569911743,4.96701930522681,5.0582909093494,5.86051879580482,6.97215604000702 -"Tfru03430_t",45.4793017108588,40.8150161944907,32.9091414739079,8.16718457023352,11.2077729964326,11.5535826741311 -"Tfru03431_t",22.4979967549466,21.7513123012023,18.4401380924188,31.6614987375121,35.2260544992745,29.0015797693004 -"Tfru03432_t",2.99719111759668,3.45385313580458,2.60659238031729,2.57841853814621,2.64554078586608,3.21329171822815 -"Tfru03433_t",293.758138644532,287.373910453176,286.268644308224,282.277370180683,171.672089400535,73.4731344282197 -"Tfru03434_t",0,0,0,0,0,0 -"Tfru03435_t",12.3339334318192,14.4767219911809,14.7296679324277,15.0448136820091,17.9266818402504,21.2829154523469 -"Tfru03436_t",9.07477064961626,14.5682858629165,5.56505507441799,7.96454215110956,6.18841228241013,8.95317565392409 -"Tfru03437_t",3.72197871772235,5.12153202660642,7.78403273067326,6.04991950696285,2.76128522727794,1.55607746395893 -"Tfru03438_t",0,0,0,0,0,0 -"Tfru03439_t",16.5299769679852,13.6505070884584,18.3353919820298,15.8317731669142,12.5409302346575,13.2883975495084 -"Tfru03440_t",22.9949853036046,14.2201167679321,30.4682562110583,37.9099487874921,21.4846343635396,13.4814602519487 -"Tfru03441_t",4.32597202736599,4.86132373963844,5.81149932591127,19.9572010025587,10.2593168605661,5.12736338407476 -"Tfru03442_t",10.3303899104131,9.20656352401869,8.69980128722307,12.3355501635476,15.2528136363924,12.7820648825198 -"Tfru03443_t",0,0,0,0,0,0 -"Tfru03444_t",12.0211086958326,10.7518671122747,13.2505644944442,7.74486833783649,8.02646687078747,8.3427636395574 -"Tfru03445_t",124.531282882057,100.911976589021,118.232839699428,99.6419605016037,75.0262987312691,88.7225333536229 -"Tfru03446_t",22.9710230553055,23.2509333721503,24.3847985032107,53.2750435501754,46.4543304630362,48.6224033020357 -"Tfru03447_t",8.06815916109302,5.93097725139044,6.41883775198258,6.27278470249226,5.58285215555489,7.13175597048224 -"Tfru03448_t",0,0,0,0,0,0 -"Tfru03449_t",0,0,0,0,0,0 -"Tfru03450_t",0,0,0,0,0,0 -"Tfru03451_t",0.194919667683173,0.938749489795609,1.34284391586884,0.201621447395092,0,1.14088278100005 -"Tfru03452_t",5.54383196968943,5.81913495070426,9.18092842226319,3.52888705897603,2.95284646977946,7.80013449573322 -"Tfru03453_t",0,0.0536890963511024,0.0576000923307595,0.0691869775694941,0,0 -"Tfru03454_t",26.5779736217947,25.2153829416507,24.3332165504166,19.5543069126097,19.7524286897051,19.6501047589561 -"Tfru03455_t",16.0317409121463,18.1431791097377,14.3149375652433,8.44000433713623,9.4017699369956,12.8417850713063 -"Tfru03456_t",48.3518238361431,74.7363474817061,48.0830479049932,38.781929428596,46.5495614719021,49.9772669854652 -"Tfru03457_t",0,0.0723535461555629,0,0.0932391028189749,0.390095731321454,0.263798540027372 -"Tfru03458_t",0,0.0654059214519734,0,0.168571956987943,0.14105498412865,0.178850804538441 -"Tfru03459_t",5.34781080854514,6.21426452599155,5.75659842079877,4.14876049360463,4.25195684762932,4.82257316180313 -"Tfru03460_t",0.30988704083898,0.248740335732145,0.186801922453721,0.576974986680606,0.965584063245845,0.680174029801302 -"Tfru03461_t",12.9055822514484,11.7535503574656,12.5028785349923,30.1642958632377,27.0663054183403,27.1463115038212 -"Tfru03462_t",0,0,0,0,0,0 -"Tfru03463_t",5.41810367555047,4.85081556288018,4.92217486383675,6.68215772874584,6.15825967118294,5.51051032461855 -"Tfru03464_t",8.38887988021689,8.05103352228832,9.37039302327834,17.480375241668,15.3109469584883,13.3426323790979 -"Tfru03465_t",7.6373069792225,16.8583762542462,16.0311529700564,18.2685069409633,23.5493700349102,25.8432637906361 -"Tfru03466_t",0,0,0,0,0,0 -"Tfru03467_t",0,0,0,0,0,0 -"Tfru03468_t",0,0,0,0,0,0 -"Tfru03469_t",0,0,0,0,0,0 -"Tfru03470_t",0.205404344184468,0.247311143094075,0.0884421955592101,3.50569907860684,2.48898244610383,2.62992309770565 -"Tfru03471_t",0,0,0,0,0,0 -"Tfru03472_t",1.67351348150294,1.7731519247494,1.52761870369482,0.900147386258725,0.955998750001804,3.18344931371677 -"Tfru03473_t",0,0,0,0,0,0 -"Tfru03474_t",0.724227385960754,1.74396995733581,2.80651484356425,13.1097393704955,18.4918828223311,12.9818445322953 -"Tfru03475_t",8.19954709994473,9.27716108328269,7.75993355813248,7.207798838439,5.59523585527372,4.93440353702766 -"Tfru03476_t",0.565092220435745,0.604784798358606,0.32442025097504,0.584521371035547,1.14124867764178,0.826884212910911 -"Tfru03477_t",5.75413539530362,6.46622650847685,6.44174183271559,4.761580483686,5.47844032535185,8.41987120909137 -"Tfru03478_t",0,0,0,0,0,0 -"Tfru03479_t",64.5850524982076,78.7612677174662,63.1952696790628,70.4121066584717,76.3064255593427,75.5558640553497 -"Tfru03480_t",0,0,0,0,0,0 -"Tfru03481_t",13.003642840387,12.085842039704,9.28264787362187,6.1944186027596,6.81229498705229,4.88215342816442 -"Tfru03482_t",0,0,0,0,0,0 -"Tfru03483_t",7.06281921914066,13.7254035459086,9.28329974852483,5.76762232324092,10.6175081405181,10.8787715475572 -"Tfru03484_t",3.60495272605486,2.76164225277864,2.55454960141032,0.525982439231951,4.51619273578818,3.98953047392545 -"Tfru03485_t",7.67402480123799,7.0513400678818,7.73890471286252,8.46010378606978,9.4388163297818,7.46150365680787 -"Tfru03486_t",4.38860177164278,3.88434602126754,3.50930711782329,4.13418007014134,2.45884035124913,4.25725810831021 -"Tfru03487_t",0,0,0,0,0,0 -"Tfru03488_t",0,0,0,0,0,0 -"Tfru03489_t",0,0,0,0,0,0 -"Tfru03490_t",0,0,0,0,0,0 -"Tfru03491_t",0.135719510131579,0.0544697132608922,0.116875146958698,0.0701929271625886,0.176204792370725,0.297892050854819 -"Tfru03492_t",0.145978065632402,0,0,0.150997122202058,0,0 -"Tfru03493_t",0,0,0,0.0701929271625886,0.293674653951208,0.14894602542741 -"Tfru03494_t",0,0,0,0,0,0 -"Tfru03495_t",0,0,0,0,0,0 -"Tfru03496_t",0,0,0,0,0,0 -"Tfru03497_t",0,0,0,0,0,0 -"Tfru03498_t",39.0087449733913,31.2453675078698,42.0201720687811,8.16098435158072,8.0660972591329,9.33239128253902 -"Tfru03499_t",302.847617928592,270.669557040982,305.602436151003,311.283039348015,306.794316510644,238.594946440351 -"Tfru03500_t",38.9557600594874,44.7204539484777,37.0008828558099,61.494145860773,47.6991405175108,32.0390141802636 -"Tfru03501_t",0.471589925741886,0.108153175648732,0.0580158107196743,0.278745288940769,0.174933065721698,0.34503241281848 -"Tfru03502_t",0.558208483531212,0.336047367194275,1.08158047127393,1.2991521502418,4.22754908827436,2.04202856566039 -"Tfru03503_t",99.5806690066828,85.263945799894,114.418265780456,88.7599393293517,99.9066658343955,105.969003473318 -"Tfru03504_t",10.990669214221,12.8293756872844,12.9597498889931,22.0312160707908,23.2535081445501,21.0226797182993 -"Tfru03505_t",0,0.152564490988653,0.0818390452120293,1.17962231439753,1.72736507996007,1.8077958772464 -"Tfru03506_t",0,0,0.172662806604854,0,0,0 -"Tfru03507_t",0,0.0568100295004082,0.060948370654957,0.0732087985065582,0.122517008118482,0 -"Tfru03508_t",67.8260247757715,60.987655272714,85.4317792968374,45.6218930093244,54.8561796107319,50.527894769037 -"Tfru03509_t",22.238040910089,20.920405826819,23.7128633501855,18.8493815654772,18.6103023495698,24.4226269954923 -"Tfru03510_t",66.3772539360961,66.6638137739245,72.7585957668676,73.6739088123523,71.4689021518038,71.053141447994 -"Tfru03511_t",0,0,0,0,0,0 -"Tfru03512_t",0,0,0,0,0,0 -"Tfru03513_t",0,0.418841646068227,0,0,0.903277569171665,0 -"Tfru03514_t",0.0983728065239431,0.552733647680202,1.01656743748151,0.407020345795244,0.510870100597089,1.00762393157996 -"Tfru03515_t",0,0,0,0,0,0 -"Tfru03516_t",0,0,0,0,0,0 -"Tfru03517_t",2.08176440494473,1.9057595110268,2.25200672272168,1.69063898496663,1.57846969030142,3.04618973540516 -"Tfru03518_t",6.32510558703948,8.33155274341122,7.12284076127245,3.18740932957222,3.64972963759903,5.69560399935546 -"Tfru03519_t",0,0,0,0,0,0 -"Tfru03520_t",1.08400486156706,1.30516461323196,2.33373277314303,0.420478276583635,1.52464512280346,1.09050912595186 -"Tfru03521_t",40.490247165255,35.3749534515329,43.1702305117147,47.5806784234641,43.3899005440461,38.0881846137226 -"Tfru03522_t",18.9463961599943,17.683611455503,16.4422081744168,22.940079401958,21.1022695049667,19.664520888509 -"Tfru03523_t",11.8834647929355,10.5588014663508,11.4374089540043,16.4332155497891,13.4757124493103,13.7622221699 -"Tfru03524_t",1.0852779148396,0.712744034237066,1.27444009337817,0.459242275070794,0.426975010677152,0.505291155354837 -"Tfru03525_t",1.60172310336411,1.09282133964608,1.72415910313236,0.497038191576461,0.762490264539094,0.527345603848808 -"Tfru03526_t",0.183428770243335,0.14723472711132,0,0,0.317527704446808,0.134203187393838 -"Tfru03527_t",4.56394400971646,4.61315728486414,3.34799087978064,15.0368220707173,14.1916356114224,12.6145595619528 -"Tfru03528_t",1.26728412477356,1.65298975214481,1.22773999441905,25.1520537916182,25.1596299794058,23.5661134469456 -"Tfru03529_t",0,0.0245480542471731,0,1.36026584804268,1.45586510284221,1.16351769602171 -"Tfru03530_t",0.484675250604504,0.51871926936142,0.765195072732474,3.25870664352317,3.07635495192888,2.83684891506359 -"Tfru03531_t",38.3410930973668,35.1990661219152,38.7728610348843,72.7088023369953,73.5764649417743,71.115889178042 -"Tfru03532_t",0,0,0,0.674007652954008,0.523700817805068,0.238368653066285 -"Tfru03533_t",0.859272146364136,0.7427766091564,0.853804673101108,1.70926128692535,1.71629844968495,1.74094583300519 -"Tfru03534_t",10.7982489423454,8.06081743776294,10.4613021161135,8.93561376116037,10.421071518628,9.67798178500163 -"Tfru03535_t",13.7046105343343,14.846103226551,16.407317546991,12.7351753884814,13.1637131955578,12.5946309591185 -"Tfru03536_t",1.08491783590303,1.66595969721916,1.29986687869617,3.90337310846871,5.6750277149053,6.38463563609201 -"Tfru03537_t",13.9427499780751,15.168277876609,16.3951117061834,23.4268155220986,19.7864968111348,11.2884440119211 -"Tfru03538_t",1.60189277742167,1.21437456068722,1.60938563063147,10.586193898451,7.77976512304049,2.7346742719363 -"Tfru03539_t",9.30712849343702,7.94497919602222,9.37186590199466,19.9673779485906,18.5833740461824,14.1593015895466 -"Tfru03540_t",14.7341276183769,10.7893608027175,15.0256487009286,11.4973854909946,14.319033958069,14.1842445753179 -"Tfru03541_t",14.9257014568561,12.6651760691799,8.44645414848214,57.7855255907325,50.5674957949732,36.5046294400315 -"Tfru03542_t",6.66371260510065,8.64409660628485,7.0193789571802,33.6640705194934,27.8599077735203,24.4641385427934 -"Tfru03543_t",40.1835348077714,42.0169224499961,46.2311271679648,42.9506402845316,44.2404384436712,44.8444058937348 -"Tfru03544_t",0.248551410566413,0,0.214040579785307,0,0,0 -"Tfru03545_t",2.08865577608571,1.30396280419583,1.99850044108933,4.80104109543009,2.61127065231533,2.88648071007851 -"Tfru03546_t",7.32143608495628,5.47834974288649,7.90780351785836,10.2680788096472,12.781310891994,9.53298564515459 -"Tfru03547_t",0.646233667472673,0,0.2782527537209,0.334226322412633,0,0 -"Tfru03548_t",0.242104832194373,0,0.208489095007014,0,0,0.354265474503618 -"Tfru03549_t",3.43948366076044,3.61760921032294,3.38748175941632,7.70843861714972,7.59645808878439,6.37790385492531 -"Tfru03550_t",1.0600678456965,0.63817197176957,0.456439848374977,0.822386534643072,0.229381212360628,0.969480438901857 -"Tfru03551_t",15.084736160619,19.9320028641363,18.1863540139129,10.3222383551747,12.6546193150666,14.4324035503926 -"Tfru03552_t",45.1399039368971,51.5075938233333,43.2549890902743,37.8418143444541,38.304044417025,40.0413295796069 -"Tfru03553_t",0.40847833114156,0.327877658105274,0.117253996705728,0.281681827641117,0,0.0996192217607418 -"Tfru03554_t",9.08220289421053,9.47714124563027,9.38539017955899,6.57612872206478,6.78007467292434,8.80445451567032 -"Tfru03555_t",0,0,0,0,0,0 -"Tfru03556_t",0,0,0,0,0.0955503867520618,0.323075215907373 -"Tfru03557_t",0,0,0,0,0,0 -"Tfru03558_t",2.19068902436158,2.20825304482545,2.14975141443557,0.737770657114606,0.705531539777504,1.41641738835801 -"Tfru03559_t",3.53599553900142,4.01273397053174,7.03506962237746,2.77470909172752,2.42731265503823,2.58706347600138 -"Tfru03560_t",5.54785506981257,5.91259366963572,6.38344552653828,7.23353305998485,7.70718327680296,8.32268290656835 -"Tfru03561_t",8.38459729030102,7.98381028087587,6.30016508914053,29.5898215771967,25.6846358110696,26.7030201202659 -"Tfru03562_t",8.38448934291531,9.56378009433268,7.69534207926743,12.2103431247793,11.8882122358906,11.2194922073099 -"Tfru03563_t",9.83988943400379,7.60024034445572,10.871842399526,15.1712898615591,19.7653101682945,45.2328506567597 -"Tfru03564_t",0,0,0.230400369323038,1.10699164111191,1.62100926824278,0.587245794519532 -"Tfru03565_t",0,0.045440367262119,0.0975009649156791,1.6396008269299,0.832975305533304,1.03546259815326 -"Tfru03566_t",0,0,0,0.97539518581646,0.741978003248154,0.125438897604852 -"Tfru03567_t",0,0,0,0,0,0 -"Tfru03568_t",0.0765819296002256,0,0.197846078306565,0,0,0.0560301365782841 -"Tfru03569_t",0,0,0,0,0,0 -"Tfru03570_t",0,0,0,0,0,0 -"Tfru03571_t",8.08700616622269,7.11587433027393,6.46157569011153,19.5472093293263,22.2254687893241,18.3195563690262 -"Tfru03572_t",14.6938301577437,15.7045710353244,14.7167140846301,14.1251922951195,16.1048723632779,20.6246826223492 -"Tfru03573_t",0,0,0,0.946266901930504,1.18770344621574,1.11551832715749 -"Tfru03574_t",8.54616116868851,5.8243910283384,7.63726368178285,10.5079216144317,9.07178479979028,10.0278888392363 -"Tfru03575_t",0,0,0,0,0,0 -"Tfru03576_t",1.75536690723154,2.20280137047831,1.59680067614995,4.21963191038904,3.509438042438,5.24569374621823 -"Tfru03577_t",17.2434477700967,17.954245770328,17.0395742416619,16.0178634659376,15.2485399260589,13.9842589364555 -"Tfru03578_t",0.392113777229626,1.02291197808728,0.5065044291769,5.67833751963587,2.63025574547012,2.00819331988165 -"Tfru03579_t",11.0378597217469,9.35209193662049,13.2017729866993,17.7603476434536,12.7381917053423,7.17840114757422 -"Tfru03580_t",1.77386775277549,1.30994139813399,1.16095321231524,3.52292610110613,2.5793762342647,1.55739171857376 -"Tfru03581_t",0,0,0,0,0,0 -"Tfru03582_t",24.9267251037336,38.936203313515,32.811698196807,78.507655387448,64.513881060419,43.9534575781784 -"Tfru03583_t",0,0,0,0,0,0 -"Tfru03584_t",22.6796074173869,22.5372896562479,22.3625368482697,19.2862523114403,18.4549395750867,16.4763753526982 -"Tfru03585_t",0,0,0,0,0,0 -"Tfru03586_t",28.0860131470956,28.4840393032181,38.6314139432204,12.9242898842928,16.2930238247505,20.0068741117862 -"Tfru03587_t",0,0.232529327644774,0.748403958283799,1.79790711366796,4.0117983072176,11.6571665187958 -"Tfru03588_t",0,0,0,0,0,0 -"Tfru03589_t",32.4486548362115,25.7430637978843,27.5762868533624,17.4201633471314,19.9424372563897,20.214540303155 -"Tfru03590_t",0.812289022401923,1.04716547491948,1.0598552002261,0.916600755283401,0.916113479545186,1.0985551272807 -"Tfru03591_t",7.69480238935466,9.13778988937809,8.26030132125029,8.83162653702642,9.3059123217924,10.3341505856143 -"Tfru03592_t",1.50916844499606,1.09601077444201,0.990189440101747,0.297344204712693,0.622017487752943,0.788687679551468 -"Tfru03593_t",0.420051883857237,0.0842918812712307,0.452160724796462,0.217247109568212,0.272676916193696,0.691481923046749 -"Tfru03594_t",0,0,0,0,0,0 -"Tfru03595_t",0.0943936817656713,0,0.24386196393517,0,0,0 -"Tfru03596_t",196.905933465571,50.1929489484104,426.602823878496,0.328333163075383,0.274737447046546,37.6996021857002 -"Tfru03597_t",0.105370888384092,0,0.452770816990563,0,0,0 -"Tfru03598_t",0.169889538466021,0,0.365751850189251,0.0878653628182858,0,0.124297390953241 -"Tfru03599_t",184.820538225698,82.4922754624952,188.533768194871,70.0521968030994,63.0781447031308,73.0793165297669 -"Tfru03600_t",0.109961226140638,0,0.189386691014225,0.227483884364619,0.0951751888983234,0.160903297974811 -"Tfru03601_t",0.226138295481689,0.0907584185962108,0,0.116956721167274,0,0.0827255179359054 -"Tfru03602_t",0,0,0,0,0,0 -"Tfru03603_t",0,0,0,0,0,0 -"Tfru03604_t",6.23186817705459,7.88808475234342,5.46979022293009,6.69406214932007,7.05355408508658,7.8913771531726 -"Tfru03605_t",27.4734918737814,28.0760240418937,25.8221083108593,25.6552226287971,18.2197444885417,13.865698583089 -"Tfru03606_t",5.24352419469007,4.84935653446429,3.63201016390102,4.48053740222092,4.4397869665188,4.1699497846932 -"Tfru03607_t",14.7483897975218,12.852954229742,13.2353698958373,12.0667349137148,9.9242496073313,11.7802622581706 -"Tfru03608_t",0,0,0,0,0,0.183477790526501 -"Tfru03609_t",0.598648765592262,0.560611086839539,0.429606389355308,0,0,0.364994417021245 -"Tfru03610_t",1.09779722053473,1.15944816053962,0.895614090380887,1.73319564717418,0.800152344630746,0.549550053468301 -"Tfru03611_t",50.5843399358821,51.0397765888272,53.5307170444546,30.4606547974086,36.2284524695512,30.4936197866552 -"Tfru03612_t",0,0,0.125818636465102,0.302256848094903,0.252917719368066,0.213791512439575 -"Tfru03613_t",0,0,0,0,0,0 -"Tfru03614_t",0.099774794265377,0.240261894359803,0,0.619231666227681,0.604509394570348,13.6507911965946 -"Tfru03615_t",29.541135654585,28.8390385764295,33.2316646735309,30.0980156022696,33.2471959765915,33.2962784487136 -"Tfru03616_t",82.8057876503027,102.834535634134,77.5323884812879,99.479481254639,105.438437529107,102.801876194349 -"Tfru03617_t",17.3402201165265,13.9186593985235,18.5369806037553,9.58670519091041,8.79811639438736,23.1861079772101 -"Tfru03618_t",0,0.247917297856561,0,3.51429147830931,4.27728495990112,1.3558469079348 -"Tfru03619_t",10.6881529166521,8.57917368098648,9.78340642975975,10.0505780227287,10.0919570406208,8.85884314223593 -"Tfru03620_t",0.49808523777538,1.4659457612388,1.57273295581378,2.23257899161008,3.01776824245988,1.4576694029971 -"Tfru03621_t",0.630471870705047,0.1265168949662,0.678665252977804,0.489111691335561,1.36423722923676,0.345957184763852 -"Tfru03622_t",0.652507780749106,0.392816534079522,1.12381694706693,1.01241371449264,0.282383861430365,0.716097784384983 -"Tfru03623_t",15.0666259046619,11.1374650473795,12.7443997536532,14.2561987693052,12.8407593979846,10.3064490593231 -"Tfru03624_t",32.603136196937,32.6654506485393,32.2252632371643,52.5457374144939,49.3935913520875,50.1713684328896 -"Tfru03625_t",0,0,0,0.293577175092178,0,0.207652229143168 -"Tfru03626_t",18.9627738935551,3.27464862492551,25.2429296720902,0,0,0.055274334376239 -"Tfru03627_t",0.0516986933978138,0.248985249293482,0.178081762381376,5.72195463970428,14.0058050902362,13.3521022268993 -"Tfru03628_t",17.8923930561485,18.7377626253518,19.1999029896934,16.0495368799145,19.9630354617681,19.5849566668075 -"Tfru03629_t",0.103844717888069,0.0833541471161738,0,0.859321076165979,0.359524570177103,0.379882940830517 -"Tfru03630_t",1.86098935886118,1.92057450997741,1.83153711309959,12.9248280376025,7.82364147728749,4.95999691636909 -"Tfru03631_t",7.20653055736271,7.13162802764819,5.86586886222437,60.1450282188844,32.8109473774789,16.4677246068321 -"Tfru03632_t",0,0,0,0,0,0 -"Tfru03633_t",0,0.312916496598536,0.167855489483605,38.5096964524626,54.9993346816056,56.7589183547525 -"Tfru03634_t",257.780443808478,369.00066013484,315.855737589663,1423.3933525229,1769.91184187104,2049.7223931207 -"Tfru03635_t",1.71989747721073,1.16813945698713,1.70895392049056,1.09478858365083,1.14509991052471,1.25833980746915 -"Tfru03636_t",10.8504450817343,10.089156121467,12.3968362399439,14.6683470398997,14.1336372588037,10.9253750842283 -"Tfru03637_t",7.2764893266608,5.30972480448698,7.97511829562264,11.2900072688992,10.8784491499847,11.8574328011516 -"Tfru03638_t",0.543505210166481,0.810199228485027,0.601766583832629,0.963757972206484,0.739235016175148,1.70420683437276 -"Tfru03639_t",3.05368897796053,4.9022741934803,4.09063014355442,12.9856915250789,9.98493823434107,8.63886947478976 -"Tfru03640_t",0.0684309341065279,0.0732375835101652,0,0.306729560074586,0.315889630489575,0.500665705889582 -"Tfru03641_t",0,0,0,0,0,0 -"Tfru03642_t",0,0,0,0.0379802639105265,0,0 -"Tfru03643_t",5.62956133004545,4.51874002691134,4.47499274025365,3.13552529273708,4.12294993557479,8.23758533755578 -"Tfru03644_t",5.32996348096797,5.0931650314943,4.58990947225412,8.92616522697184,6.15102006318107,7.61349683649996 -"Tfru03645_t",0,0,0,0,0,0 -"Tfru03646_t",0,0,0,0,0,0 -"Tfru03647_t",0,0.137339114087545,0,0,0.148093369283746,0.125183421234985 -"Tfru03648_t",64.2284996777236,60.3987131374184,53.9088792603829,85.9922985116498,69.7879519239903,59.6330163144141 -"Tfru03649_t",0.807791989782145,1.29679802160268,0.695631802872826,0.835565708221745,1.39834299628013,0 -"Tfru03650_t",0.126331393641274,0.304211300828502,0.217581100653937,0,0.328032380383394,0 -"Tfru03651_t",0,0,0,0,0,0 -"Tfru03652_t",0,0,0,0,0,0 -"Tfru03653_t",0,0.154664002332534,0,0,0,0.140974907858665 -"Tfru03654_t",51.2350279861742,42.0325434859231,47.3653566423558,45.0081455697371,50.8670839177479,52.7827755908131 -"Tfru03655_t",79.1636149986502,86.237068436578,71.6500756959011,64.3385595330744,93.6889807507685,73.2852550605009 -"Tfru03656_t",691.957952300395,671.95903740918,854.310652648993,3495.63721603884,2039.64773374775,341.461095780431 -"Tfru03657_t",9.93607147367686,9.45597308311824,10.0423231796155,9.60072212256119,11.0718672297724,12.4497217495354 -"Tfru03658_t",0,0,0,0,0,0 -"Tfru03659_t",1.98449708908931,1.0619449608974,3.41790784098113,2.39485002673619,2.29019982104942,3.38783794318617 -"Tfru03660_t",0,0,0,0,0,0 -"Tfru03661_t",0.475979471792903,0.191029759254914,0.409890742025121,0.492344724233907,0.205988227530649,0.174121982510985 -"Tfru03662_t",8.67177902667241,8.35915956937468,11.1851910710543,9.71361069648234,6.96262030280277,6.27997970837886 -"Tfru03663_t",0,0,0,0,0,0 -"Tfru03664_t",16.5249488823495,17.9602982207729,18.2963508921916,15.6598405186616,15.9908270950488,18.6985948647136 -"Tfru03665_t",76.2498874215923,88.2469255537518,85.6586006505907,101.297039358785,108.431055237141,86.5647946675011 -"Tfru03666_t",21.8065212433063,21.8594256693814,22.9325535064234,17.2550335829297,15.2211994685476,13.0135353938623 -"Tfru03667_t",3.67491983842547,3.29278559594635,3.10946744620965,1.81223428124042,1.64586270201689,2.7512336036222 -"Tfru03668_t",0.280971159770727,0,0.483917832558086,0,0,0.205568761961129 -"Tfru03669_t",18.5997550267294,16.5726410634962,17.5499671149813,24.3942728964305,20.566309780711,22.7238409739468 -"Tfru03670_t",0.959570265807509,1.13982984939759,1.57003838193175,2.67708525951719,2.20093303761902,1.88249393029018 -"Tfru03671_t",0,0,0,0,0,0 -"Tfru03672_t",0,0,0,0,0,0 -"Tfru03673_t",14.2452378003759,10.5548094809193,12.2673170553475,18.1354108856942,17.3880932065546,16.568842214067 -"Tfru03674_t",126.536721340617,114.954883242353,126.47036451379,70.5828155132043,75.9616090769536,61.2031605064447 -"Tfru03675_t",2.57700542243704,1.24110745430033,2.44111311546556,1.06624348254337,2.23048602203433,2.07397441131949 -"Tfru03676_t",0.113527536177632,0,0,0.352292610110613,0.393047807126049,0.664487133258137 -"Tfru03677_t",11.2667964014869,10.1028046179292,10.984428078825,7.52446694436818,6.91118294769363,6.88171028261498 -"Tfru03678_t",0,0,0.130352641382764,0.156574493382495,0,0.110747855543023 -"Tfru03679_t",16.2487398878388,13.5360511900272,12.6311913921186,6.45041078069755,5.20742115609499,5.94408576470459 -"Tfru03680_t",14.117926386903,13.5706431258247,12.1576825588426,10.8172834639773,14.4824254243955,14.4098584240263 -"Tfru03681_t",13.1554710878366,11.7082349370149,11.3686125091682,9.64481673247884,9.50873348778018,10.4017793552332 -"Tfru03682_t",0.369547111897863,0.642694695909677,0.106078762415592,0.700797127639392,0.746329780393304,0.630873048071325 -"Tfru03683_t",4.16985811712294,2.95329219052487,4.2773744477096,3.17149065063083,3.34377532266723,3.54433556663054 -"Tfru03684_t",0,0,0,0,0,0.0314399282999374 -"Tfru03685_t",0.693481883726571,1.908495425009,1.36501350881951,4.20147711900787,4.37312035404985,3.40667194792424 -"Tfru03686_t",49.024623049651,52.4085330768607,57.3776368017579,50.9407015539255,70.5922202135405,60.4868360625627 -"Tfru03687_t",0.184638190706478,0.296411011063669,0.1590015735548,0.381972939900152,0.319621293706897,0.135088043574457 -"Tfru03688_t",0.0983728065239431,0,0,0.407020345795244,0.0851450167661816,0.431838827819984 -"Tfru03689_t",106.573163675779,95.8711774184329,115.670464729646,57.5022063725689,62.1599492001173,72.5638934864551 -"Tfru03690_t",20.6517155309286,39.5910315851509,16.9209550472757,121.326548064347,97.3567223450525,72.1737695335987 -"Tfru03691_t",0,0,0,0,0,0 -"Tfru03692_t",0.210025941928619,0.337167525084923,0.0904321449592924,11.7313439166834,15.4516919176428,15.3662649565944 -"Tfru03693_t",0,0,0,0.122392737784908,0.102413865237069,0.0865705067977151 -"Tfru03694_t",0,0,0,0.924455785396645,0.58016365147595,0.245206355690337 -"Tfru03695_t",12.2089343963627,10.5769582132914,11.6253359205031,8.06679408127802,9.35690314211404,10.1130092031876 -"Tfru03696_t",7.04982182697091,3.77250377717198,6.57688326976326,1.82305266770431,1.52546526541848,3.00877915233859 -"Tfru03697_t",7.47481108604755,9.52155873547365,9.65542437476391,25.0443476407455,28.762052539838,23.4209222162406 -"Tfru03698_t",1.39133904747665,1.27634394353914,1.48342950721868,1.57624085806589,0.917524849442512,1.79353881196843 -"Tfru03699_t",7.73244298311592,8.96002281194536,6.95920727991233,7.21651298219665,9.15842191414122,6.975965267492 -"Tfru03700_t",0,0,0,14.2717079278387,15.524671140955,10.6554392034779 -"Tfru03701_t",0,0,0,0,0,0 -"Tfru03702_t",19.9084310900571,16.5799024406436,18.6150031555341,17.9981086961212,18.0167720992023,19.5251143031695 -"Tfru03703_t",2.97168636763246,2.77212305519153,1.86743243892994,2.74155052227571,2.64161193508234,1.35152617209052 -"Tfru03704_t",4.71486808411185,4.98870317727692,2.5837755702655,7.31546389362345,4.45186801948892,3.29277106212738 -"Tfru03705_t",10.733186937677,9.3598555859537,9.58523681587453,22.6156297026845,13.9349086509081,14.7361026713082 -"Tfru03706_t",0,0,0,0,0,0 -"Tfru03707_t",12.5397408916036,17.2954890232771,14.2967707798293,34.5890282367888,61.9621826847063,79.3403224948758 -"Tfru03708_t",59.6763366031661,56.0395679623906,52.6377450659605,55.1358181524841,53.4070649648343,68.6713082198151 -"Tfru03709_t",24.7351507205058,19.4966897794465,24.371103256934,15.9045629286012,21.4091159664016,24.2925568014066 -"Tfru03710_t",0,0,0,0,0,0 -"Tfru03711_t",0,0,0,0.126674699456683,0.105996857606879,1.07519055089874 -"Tfru03712_t",0.196056888614813,0,0,0,0,0 -"Tfru03713_t",0,0,0,0,0,0 -"Tfru03714_t",88.5407808578152,80.7580066989639,87.3536038542952,160.393078766318,151.840021831141,102.659727582354 -"Tfru03715_t",37.1106707825177,31.7817041036571,37.2423163936703,39.2933902523374,38.6964110633141,35.8100783336287 -"Tfru03716_t",26.2460795097701,26.2190299179272,28.6718014850471,21.2801397912655,22.8656768286119,25.4916482772426 -"Tfru03717_t",26.5081285929325,35.026140955424,32.6609300241328,71.2907990621899,70.9489451843793,63.8520524409943 -"Tfru03718_t",0,0,0,0,0.085244835074231,0 -"Tfru03719_t",0,0,0,0,0,0 -"Tfru03720_t",38.1428547418098,32.7822362709054,33.1332557510333,22.9767730489213,23.7047772282773,28.123036612157 -"Tfru03721_t",0,0,0,0,0,0 -"Tfru03722_t",0,0,0,0,0,0 -"Tfru03723_t",1.70579445221213,2.73841644739024,2.93789709512422,0.882221764744007,0.738211617444864,1.24802151931731 -"Tfru03724_t",0,0,0,0,0,0 -"Tfru03725_t",0.267548970609705,0.429512770808819,0.460800738646076,0.276747910277977,0.463145505212223,0.195748598173177 -"Tfru03726_t",0,0,0,0,0,0 -"Tfru03727_t",0,0,0,0,0,0 -"Tfru03728_t",0,0,0,0,0,0 -"Tfru03729_t",0,0,0,0,0,0 -"Tfru03730_t",258.943376504398,182.241181280078,267.862302790815,309.095887537556,277.509165341432,176.225772793349 -"Tfru03731_t",4.28295550832257,4.08282086527806,3.37807321438249,3.93569531436264,2.95758864217243,2.89988660537815 -"Tfru03732_t",18.5825052708498,21.2840113061471,16.5658709956301,13.4122799700467,16.372077866251,10.6915337158545 -"Tfru03733_t",3.81480015612022,6.60045407330727,4.05165210513883,11.311756663693,10.3090768180866,8.55921115644816 -"Tfru03734_t",8.08656033094146,8.11365702076018,9.67188716142165,4.87934684591705,7.77688174527477,6.73814826973659 -"Tfru03735_t",4.08147579456425,4.75037646678353,4.33488500533612,3.58853525116722,3.23826837045146,4.2801580122012 -"Tfru03736_t",8.58669596835236,11.1768240359643,10.9917524259913,11.2328841457841,13.8598211545967,12.0553017891514 -"Tfru03737_t",5.77437052617046,6.46740777017115,5.38892321624428,5.08391573541978,3.92859325121353,4.4212399171787 -"Tfru03738_t",88.9991164847163,87.4553295469681,83.5154820906719,101.657198539044,91.4536355499998,78.1818041259507 -"Tfru03739_t",0.807791989782145,0,0,1.67113141644349,0,0 -"Tfru03740_t",0,0,0.0897589528131934,0,0,0 -"Tfru03741_t",0,0,0,0,0,0 -"Tfru03742_t",0,0,0,0.15034402046243,0,0 -"Tfru03743_t",1.3674120329025,0.754596699071038,1.10395293948271,3.62446856248084,2.73694022357864,2.50112145783836 -"Tfru03744_t",0,0,0,0,0,0 -"Tfru03745_t",0.958293271157195,0.512802319520795,0.275078767937011,0.660827709713191,0,0.701122355433967 -"Tfru03746_t",0.438569252287139,0.273801934523719,0.62945808556352,0.705675065882822,0.337419231175494,0.356525869062516 -"Tfru03747_t",0.260094045732035,0.208772461352894,0,0,0,0.380588605736085 -"Tfru03748_t",12.9978318778466,11.1965064933861,15.0151485970146,12.4609662846672,12.7592217388749,9.62566031243274 -"Tfru03749_t",0,0,0,0,0,0 -"Tfru03750_t",3.23116795912858,3.24199505400669,1.39126360574565,10.0267884986609,4.19502898884038,4.13707085018956 -"Tfru03751_t",2.00830040092791,2.03624071515806,2.12995691197528,2.55842091791452,2.39695863253644,1.79414870152486 -"Tfru03752_t",0.99599931223881,0.903748005382268,0.522082486362925,0.89586436935345,0.412294993557479,1.17227175957524 -"Tfru03753_t",2.6623006723346,2.61186110981278,7.38741465864642,2.75383660016043,3.07241595711207,2.59711520393145 -"Tfru03754_t",1.04900418454362,0.851257363129342,0.845160233264415,0.432193620095924,0,0.147997067484073 -"Tfru03755_t",0,0,0,0,0,0 -"Tfru03756_t",3.49087207419397,2.89414184622251,2.78035623206876,2.86498334116486,3.07820995260929,3.45336270581287 -"Tfru03757_t",12.0263817369914,13.850450200584,14.5592001013301,10.8172834639773,10.7109604701258,15.1749836500808 -"Tfru03758_t",27.8267809495331,32.7594945508379,30.809689765311,19.1890191416717,25.920076996751,22.1041540069623 -"Tfru03759_t",0,0,0,0,0,0 -"Tfru03760_t",40.2012845900178,32.2687938118086,37.2824548543831,24.7901609691333,25.8736378555982,28.8470986301711 -"Tfru03761_t",1.74718287912889,1.51929907317296,0.87767766338308,0.322317811272458,0.504082109659058,1.17177757034689 -"Tfru03762_t",2.32286756050085,2.36172644299117,1.93366429774708,1.76200420663619,1.80946893695356,2.26599298899088 -"Tfru03763_t",0.760274902909027,0.915386945931918,2.61884944678494,1.17962231439753,0.329021919992394,0.556244885306586 -"Tfru03764_t",0,0,0,0,0,0 -"Tfru03765_t",1.08946952794024,0.964987337930946,1.01030052430191,0.919093808711521,0.414770134724983,0.757714481677417 -"Tfru03766_t",0,0,0,0.290631584706638,0,0 -"Tfru03767_t",1.76425809088414,1.5233062069608,1.42887109749869,0.753851680634868,1.18974104037126,0.937837489457319 -"Tfru03768_t",0,0,0,0,0,0 -"Tfru03769_t",7.29563798278359,6.92080709384842,7.61533852288778,8.23252204679539,8.03679331939316,6.30825614007561 -"Tfru03770_t",7.83610889625215,5.26595700783394,5.80648913404567,5.65502237487752,5.20511250000982,6.39983269341894 -"Tfru03771_t",4.9914757679562,3.5750852751235,4.49680867073629,2.6212631136201,3.38976787955601,1.57314595533691 -"Tfru03772_t",2.1238578397276,1.51535966330302,1.21930981967585,1.22048937959669,1.4297666017647,0.863273312168226 -"Tfru03773_t",4.36171256375461,2.89218193075103,4.57264118981524,2.15775910180616,1.47725643084621,3.46868283444569 -"Tfru03774_t",3.66648703177095,3.14731110176478,2.74556796840356,2.47340162696256,2.62156174961682,1.51621589704537 -"Tfru03775_t",1627.50468219908,1504.84631580897,1717.06656901751,1624.51246624505,2079.78716443179,1872.10688043565 -"Tfru03776_t",0,0,0,0,0,0.161750157437836 -"Tfru03777_t",1.57028741628874,1.10288442784788,1.18322432657018,0.20303468183945,1.35913727697793,1.86692938724979 -"Tfru03778_t",0.614335479133071,0.616394012952327,0.793554471306405,0.556025508949719,0.531728294832315,0.842756761787629 -"Tfru03779_t",0,0,0.111817180784287,0,0,0 -"Tfru03780_t",145.782712632806,146.370372654514,143.840305864663,75.6531110966949,53.0383335027739,51.3414029137979 -"Tfru03781_t",7336.43557999656,5636.0810069885,10512.62284469,18.9863019824705,25.6637097185672,134.293407810313 -"Tfru03782_t",1.12765606404621,0.452573859174368,3.88433374321771,0,0,0 -"Tfru03783_t",0.492008063083147,1.18477607643311,0.635540696639244,93.5148612196987,77.1852666629302,65.1547632712993 -"Tfru03784_t",0,0,0,0,0,0 -"Tfru03785_t",0.478237438926646,1.53548778027289,0.686391992100891,0.659573767190016,0.413930802571076,0.699791952482479 -"Tfru03786_t",0,0,0,0,0,0 -"Tfru03787_t",19.5206133891408,21.3059568660405,22.2076961823629,21.2072234598722,24.5756453606184,24.0887785027422 -"Tfru03788_t",4.38860177158782,3.52264578442523,2.69946701367641,3.24249417261927,4.34112503387513,1.83477790524203 -"Tfru03789_t",15.0352241542429,16.2958621830731,18.3607428795004,10.8074396266491,10.8078211474145,11.1867651857917 -"Tfru03790_t",0,0,0,0,0,0 -"Tfru03791_t",0,0,0,0,0,0 -"Tfru03792_t",0,0,0,0,0,0 -"Tfru03793_t",0,0,0,0,0,0 -"Tfru03794_t",1.23992976548597,0.682926761895217,1.83716098883185,0.841842295696017,0.382802794212252,1.24011581459435 -"Tfru03795_t",9.76129176042638,9.39498536815439,7.16063030554483,4.53425919916439,3.36384648271944,7.70379717027757 -"Tfru03796_t",10.4937340244571,10.2177950891423,8.7809960640841,6.72762020443972,5.28861998573461,6.48492405982622 -"Tfru03797_t",3.12161177042071,3.16339247873453,3.12501234787336,3.91508957326828,3.37732672170548,3.59711915379637 -"Tfru03798_t",4.0898906488893,3.87487020049712,4.21487411462304,6.51914710276517,6.67365690072362,5.15070333740595 -"Tfru03799_t",10.3416402989864,10.5168487471315,10.395926816311,14.7459538814323,15.1204855276936,15.9766952957235 -"Tfru03800_t",11.5722903102391,18.2204437396886,13.223455368882,84.9421811185908,85.3304186305042,85.5626197053284 -"Tfru03801_t",12.8419086866749,10.9569334468079,11.2983234004557,5.25333060920612,5.65893578235867,8.76384126505748 -"Tfru03802_t",5.9442795758495,7.03013958965176,5.20061413239739,10.040626667285,9.57841381686551,9.4152349828136 -"Tfru03803_t",0.119758199246539,0.336446568153166,0.464085134502427,0.557440908371748,0.207309606039399,0.525716833867806 -"Tfru03804_t",31.0828186232148,33.4709438632299,36.3047153032202,67.3122878978055,69.0030527492189,71.9581836484993 -"Tfru03805_t",0,0,0,0,0,0 -"Tfru03806_t",0,0,0,0,0,0 -"Tfru03807_t",0,0,0,0,0,0 -"Tfru03808_t",0,0,0,0,0,0 -"Tfru03809_t",0,0.1673287965682,0.179517905626387,0.970334484423774,7.57260008902822,35.1722746097961 -"Tfru03810_t",0,0,0,0,0,0 -"Tfru03811_t",13.1864388856449,11.7795236611948,12.0423565186298,13.8048163295243,12.0576121591137,14.4326184782191 -"Tfru03812_t",0.0727677581389757,0.233637089708045,0.0939961662634481,0.564522588743729,0.503863797788265,0.55901526910088 -"Tfru03813_t",0,0,0,0,0,0 -"Tfru03814_t",0,0,0,0,0,0 -"Tfru03815_t",2.01624904202125,2.6973402000192,1.73629718279345,0,0,0.491720478490671 -"Tfru03816_t",0,0,0,0,0,0 -"Tfru03817_t",2.17465552950613,2.20491024578696,1.28132739451858,1.53908034026526,1.38691256192979,1.75853713399718 -"Tfru03818_t",0.103206851070574,0.0414210718777547,0.13331520141419,0,0,0.0377549507533033 -"Tfru03819_t",0.167351348150294,0.134329691268894,0.144114972046681,0.346210533176433,0.144848295454819,0.550981611989442 -"Tfru03820_t",11.5876381753721,5.85795036951259,9.54694792938949,1.38300547205228,0.819718404118981,0.244555940953757 -"Tfru03821_t",0,0,0,0,0,0 -"Tfru03822_t",0.672083014007084,0,0.578765727597816,0,0,0 -"Tfru03823_t",0,0,0,0,0,0 -"Tfru03824_t",0,0,0,0,0,0 -"Tfru03825_t",0,0,0,0.146171310054306,0,0 -"Tfru03826_t",21.1008027161418,20.8561875904234,18.3643099984134,11.4936346545106,10.9775075590782,10.0183531046334 -"Tfru03827_t",133.770369166843,147.575632133324,118.257420331382,151.404524052923,138.995310100787,103.308581323566 -"Tfru03828_t",19.1273625684992,16.5573338211346,13.2418497976107,5.81911900629138,2.59692301136854,0.823192765531845 -"Tfru03829_t",0,0,0,0,0,0 -"Tfru03830_t",0,0,0,0,0,0 -"Tfru03831_t",5.32192432036319,4.27180574768228,4.58298653187364,7.07773388638518,9.54163567977943,5.00620396775927 -"Tfru03832_t",0,0,0,0,0,0 -"Tfru03833_t",6.51804644805266,9.88249638609775,9.97871940460099,11.986047377388,4.38790438128946,2.64935601659593 -"Tfru03834_t",883.809582111173,3068.84725930444,1031.69741674715,9638.36420363414,13051.3221268971,14981.443170574 -"Tfru03835_t",0,0,0,0,0,0 -"Tfru03836_t",5.17163742095094,3.41318698444382,4.84943923721513,2.02090334482057,2.0889066083238,1.34533646678802 -"Tfru03837_t",0.232072864009523,0,0,0,0,0.169792982945795 -"Tfru03838_t",0.228911108369067,0.918712602411234,0.394254582928795,1.06551715864518,0.495325914974925,2.84715535980496 -"Tfru03839_t",0,0.0995328487335566,0.0533916723006892,0.0641319880644167,0.0536633537404569,0.0453616677685444 -"Tfru03840_t",1.84638190706478,0.741027527659172,0.397503933887,10.9817220221294,11.1867452797414,6.75440217872283 -"Tfru03841_t",0.35387690299683,0.113620059000816,0.182845111964871,4.97819829844596,3.92054425979142,2.33018339695619 -"Tfru03842_t",0,0,0,0,0,0 -"Tfru03843_t",0,0,0,0,0.0530757987724957,0.0448650071725385 -"Tfru03844_t",0.127967062865876,0,0.0550995551922574,0.132366860361439,0.0553799271274326,0 -"Tfru03845_t",0,0.15267963400072,0,0,0.0548783730704295,0.0463887243972662 -"Tfru03846_t",0,0,0,0,0,0 -"Tfru03847_t",0,0.218939951353846,0,0,0,0 -"Tfru03848_t",0,0,0,0,0.0438563596612298,0 -"Tfru03849_t",0,0,0,0,0,0 -"Tfru03850_t",13.7613858958624,14.5185427672664,13.269886106827,14.5754804261556,20.398390853398,24.0253323597955 -"Tfru03851_t",3.03738069994599,4.3311183571096,3.38495480919512,2.84611270723136,3.55682352046222,3.18959476768102 -"Tfru03852_t",5.05693530080557,5.10661494303378,6.88337880078497,5.5682754297095,9.17747549648687,12.7704104881989 -"Tfru03853_t",32.0788902657544,30.4130937612625,31.2733642510521,29.4880082439849,34.9948472655887,35.0722819758582 -"Tfru03854_t",0,0.27561378072337,0.394254582928795,1.06551715864518,0.594391097969911,0.669918908189403 -"Tfru03855_t",5.9031937532113,10.2900629050564,5.76641259939693,13.7616417597483,10.6001304250093,11.5710311891293 -"Tfru03856_t",35.8278364356179,39.6667676570498,39.0791421258807,55.1065838904732,57.3782128767224,44.3571378660947 -"Tfru03857_t",6.13442107613292,7.05214254199901,6.49141634608782,64.2062002040704,91.7022368321375,73.3701116368085 -"Tfru03858_t",23.5500786636942,22.901945100108,28.2752798255469,16.8644656484218,16.0715235420543,14.5793133819979 -"Tfru03859_t",15.3455486981901,17.7456592149959,20.6062101207552,18.0254567691272,15.0830574901776,11.9885410806867 -"Tfru03860_t",527.736417683652,873.864325288595,504.508725733759,1895.2790889532,1548.90449198611,992.341963928799 -"Tfru03861_t",1.87975025478282,2.55342015554847,3.86009844232436,9.27319848070852,10.8883037103163,9.09809835640014 -"Tfru03862_t",0,0,0,0,0,0 -"Tfru03863_t",687.329570426207,663.087874829026,608.320627135425,780.046418102819,634.870398262002,330.312599243297 -"Tfru03864_t",2.53212790001014,3.16165127340182,1.84135110968686,3.25943419579902,3.94495739436292,2.96415559778915 -"Tfru03865_t",0,0,0,0,0,0 -"Tfru03866_t",0.255195555198807,0.040968107543733,0.219762199172035,0.105587902584793,0.176704360433339,0 -"Tfru03867_t",0.461032555453065,0.945713789872345,0.749925104540473,3.97403249210143,2.21688549750973,3.37308255144756 -"Tfru03868_t",2.4119167572217,1.94817090491371,1.64527294060795,1.07313467307198,0.732249492043979,5.44401915270727 -"Tfru03869_t",1.41746247053074,1.20482118853392,1.15540488279664,1.95304843166448,3.22686678282775,5.17459854543599 -"Tfru03870_t",17.974313169705,15.9958546784475,17.1610768108797,21.017394786134,21.9832552590267,17.4389239507397 -"Tfru03871_t",0,0,0,0,0,0 -"Tfru03872_t",0,0,0,0,0,0 -"Tfru03873_t",0,0,0,0,0,0 -"Tfru03874_t",5.25064854821547,15.2373785374917,3.99988333473793,33.0048493382475,40.0275729540747,49.6448560136128 -"Tfru03875_t",11.4865831912845,12.5322492282969,10.3413182607819,10.6794288825432,8.01776551224448,9.80877859298249 -"Tfru03876_t",57.4516627097824,70.9865327236973,70.1221374305644,91.7636528670119,106.237241259805,103.701204119805 -"Tfru03877_t",245.516039870842,196.520500335212,269.303236580815,338.728146347171,324.689574221392,175.363578851584 -"Tfru03878_t",0.0722359215575644,0.0579823774866591,0.124412237261279,0.149439112342708,0.125045304072776,0.0528504383717779 -"Tfru03879_t",15.922470827744,15.2975668191705,15.2897392931659,8.50875736941905,10.0805426442265,12.5134877009591 -"Tfru03880_t",4.17914819439648,4.26939093380569,4.21232828979406,2.45615725910923,2.38406046945308,3.78727615662813 -"Tfru03881_t",11.1309686824838,9.52155873547365,10.215159121127,8.82435067878616,10.9000443610633,12.4237886883104 -"Tfru03882_t",329.290104555256,525.715490591094,286.750116055909,269.788298311395,259.1136984942,250.112084367995 -"Tfru03883_t",18.9983370084588,25.6863792165739,19.1452175374925,18.5365617145611,18.1347278131493,19.0753633943931 -"Tfru03884_t",12.0974942550884,10.7893608027175,12.3855865736247,20.16053176793,18.2075466173071,20.701432149524 -"Tfru03885_t",0,0,0,0,0,0 -"Tfru03886_t",0.439078624241015,0.587399869485928,0.693208079827328,1.43822128285576,0.633395856431351,0.2677049644006 -"Tfru03887_t",0.127384953406289,0.0511247194973348,0.0548489127880469,1.91058868157032,1.59871227083491,1.81738994179585 -"Tfru03888_t",0,0,0.0185692289444132,0,0.0186637177408416,0.0157764527275097 -"Tfru03889_t",0,0,0,0.0837983064872562,0.0701194255721495,0.118543991950584 -"Tfru03890_t",7.02914289201378,6.03127136620462,6.76284246204518,5.46565145826545,6.25179619355426,9.96634841962616 -"Tfru03891_t",0,0.0999755448732166,0,0.257668921652438,1.29364882404719,1.13908561575941 -"Tfru03892_t",2.0490335797914,2.87825936048105,3.08792690104901,12.7169039747246,17.7350839800778,11.9931824051469 -"Tfru03893_t",3.14295646162139,3.13644209381324,2.56026295132476,10.2802474497394,8.0139626195114,8.57651997577363 -"Tfru03894_t",0.446388824502909,1.21824610551407,0.691935646872375,23.2715288464142,8.42275136099551,4.24572676802822 -"Tfru03895_t",2.74031983877042,2.26244751221943,3.1014938811761,19.6797940820412,18.0937525004578,15.9247778487726 -"Tfru03896_t",56.5694622213523,68.4630241775492,47.9882591652203,36.1700290096693,36.8097403941671,40.1535505334231 -"Tfru03897_t",0,0,0,0,0,0 -"Tfru03898_t",570.944308155468,762.718770337739,451.282742806566,241.291935287412,254.498455114117,85.931734126198 -"Tfru03899_t",35.8273977503951,42.3497831077616,35.9910941001825,17.7239226023967,18.0835709242516,20.3819345792701 -"Tfru03900_t",10.4862306730501,10.2069365556555,11.3656469131048,6.79481633943617,7.35484365056168,7.8484796621917 -"Tfru03901_t",0.148515692583584,0.0397368915833734,0.127894606895876,0,0.0428484645364284,0.0724396698012701 -"Tfru03902_t",0,0,0,0,0,0 -"Tfru03903_t",0,0,0,0,0,0 -"Tfru03904_t",5.32748730745764,4.27627104985756,6.17585380209802,17.5917171650357,18.0897856596794,19.4889214083637 -"Tfru03905_t",12.5921593818501,11.465204432418,12.4622374261575,12.0530834838739,11.5496262787487,13.7505726680934 -"Tfru03906_t",0,0,0,0.175317102543278,0,0.0413349427211686 -"Tfru03907_t",1430.60645733527,1966.92666751504,1330.77253978939,1101.58647996344,978.406841163332,859.113904391416 -"Tfru03908_t",13.6628071148723,18.8222113095819,13.8452845232684,13.2123053020304,12.4306571981393,17.3422596938267 -"Tfru03909_t",4.27516456914474,5.66485017913279,3.03875382092614,3.72022513961719,2.87801160872184,5.6103002910991 -"Tfru03910_t",0,0,0,0,0,0 -"Tfru03911_t",0,0,0,0,0,0 -"Tfru03912_t",1.41709325272625,1.78584868090397,1.19523830383654,1.68191310633454,1.53549563037427,1.57451160865532 -"Tfru03913_t",0,1.05364851579252,0.56520090594308,0.678897217337604,1.13615381736821,0.480195779848974 -"Tfru03914_t",8.22392919881825,6.69874445832025,5.96600235082005,7.45003132285964,6.88842958017795,5.96270251030734 -"Tfru03915_t",65.8667744582422,70.257945017696,68.3685954561352,76.7758109730591,79.2809323523034,79.4057775505691 -"Tfru03916_t",0,0,0,0,0,0 -"Tfru03917_t",14.5882191465669,18.9493907957448,10.9151120878072,19.6485389052339,21.1724735794699,25.0709455086852 -"Tfru03918_t",0,0,0,0,0.333549744579445,0.281949815717329 -"Tfru03919_t",4.4565324020971,4.37632792153117,5.14422133854214,2.99143875477673,2.50312895226719,2.4974516408009 -"Tfru03920_t",12.8325422766977,12.2231811537915,10.3140531929132,7.96425248926234,6.66420161776855,6.88508816792418 -"Tfru03921_t",2.51686464137339,2.16821784092394,2.29164943241943,2.70289314833459,2.22699589983593,2.99672221842181 -"Tfru03922_t",1.27509244882943,1.4036462449329,1.97648747005565,1.1305140133645,0.725246495802835,0.559742522269702 -"Tfru03923_t",14.0242041480426,18.5090358874869,17.302586964924,46.029885173361,54.8563512513803,58.6039254203344 -"Tfru03924_t",4.00627519285804,5.45704664877332,4.18183329291525,7.4090054708234,4.93865705630202,6.48403087763811 -"Tfru03925_t",13.6024948132995,13.4248984020575,15.0290489382449,13.8047043147214,12.1436562812671,11.7359457407799 -"Tfru03926_t",55.7523409483242,66.4701692310277,55.5276858918876,16.1383567107814,18.5089785537539,27.3798902862955 -"Tfru03927_t",0.0724227385960754,0.232529327644774,0.18710098957095,4.12020380215574,3.57300786736568,2.11948482159923 -"Tfru03928_t",0.283340225198811,0.454863440249474,0.609997605121702,4.54277261154439,5.27267336540931,2.69492673775012 -"Tfru03929_t",0,0,0,0,0.139565919996774,0 -"Tfru03930_t",1.58510144851788,0.954247712504499,2.38877364043414,16.8059084760315,16.1205220894387,4.34894291224371 -"Tfru03931_t",1.78886448961284,1.96769691295617,1.25520958303119,1.98743412538742,2.35115742669644,2.76301925087029 -"Tfru03932_t",16.1667504252954,11.4286358941682,14.3616748780726,8.50798943616224,9.18128891797816,7.42893025585524 -"Tfru03933_t",0.0361957676740403,0.0290536428336857,0.093510188669669,0.486723382057174,0.720559422370245,0.9268750943228 -"Tfru03934_t",0.0549446545267805,0,0.094631413953478,0.85250664317153,0.570677653250378,0.40199515909992 -"Tfru03935_t",234.393029365968,207.210721726948,238.898899450713,70.341661204853,52.2410143646176,66.4628256132312 -"Tfru03936_t",110.263619512525,109.196300737731,123.316561308126,162.441588745322,181.37146395308,178.807446767644 -"Tfru03937_t",0,0.160174596239868,0.171842555742123,0.206410555409227,0.259075454815864,0.583991067233992 -"Tfru03938_t",8.70323327704204,5.62754430357569,5.51701143348776,6.75185261391852,4.70809063931562,6.10228651513678 -"Tfru03939_t",18.7483306291222,15.3355686223536,19.5279615895093,30.6593157817837,32.6091841682579,30.0466817429689 -"Tfru03940_t",37.1490972428655,36.9325121408051,40.6683287736008,50.2305455649044,52.2236714251511,39.1706522881974 -"Tfru03941_t",21.3563898071367,19.3109731059359,26.3679638594935,10.7791827718378,11.580765404449,7.90668457184644 -"Tfru03942_t",5.57316995781101,4.30779147528648,13.331520141419,27.7563874632605,15.5432541908938,9.81628719585885 -"Tfru03943_t",26.2923682891266,7.63777404067188,35.3642247948112,45.498255533821,18.8557509856744,23.4501569531337 -"Tfru03944_t",0.706682173380278,0.794136162716844,0.730273041394016,2.95315720947367,2.54449522513633,1.65451035871811 -"Tfru03945_t",55.6938955208822,71.7242009509974,65.8762796298474,59.103168931541,71.5884365816641,73.1450067065406 -"Tfru03946_t",0,0,0,0.0672591670489819,0,1.56992799866135 -"Tfru03947_t",4979.12218692785,5471.4707085073,5135.16122668365,11256.9344391383,9884.55995659217,5243.64601293931 -"Tfru03948_t",1.19446033324333,1.7976941503343,0.942894402419162,4.53027147914754,5.21230756073259,5.06140006864129 -"Tfru03949_t",5.36841595111661,6.2211189562855,6.15382518385705,7.0607609034442,8.12376424038774,7.59534382958201 -"Tfru03950_t",2.24658291155173,2.08801845232042,2.29103252535857,1.83459909557955,1.73981049037498,2.0762300293217 -"Tfru03951_t",0.253520563625643,0.10174802718519,0.0545799441474416,0.0983389405816122,0.109715344124208,0.115928064553711 -"Tfru03952_t",7.30525015403891,10.6804619747398,8.53769318870338,8.90578213136768,10.9522405262064,13.2665268879915 -"Tfru03953_t",167.939031386502,225.849764371087,158.484973111538,178.362412913979,167.496481853871,147.384603572005 -"Tfru03954_t",0.310192160386883,0.829950830978272,0.667806608930159,0.80214317379032,0.760698679022415,0.453895826410174 -"Tfru03955_t",52.0533338250854,41.5924292201382,53.6824215105443,31.3846668606985,33.7307654928788,36.0083769808376 -"Tfru03956_t",6.86920496904721,6.72680916767957,6.21120210677069,6.18168390267683,7.6102796997096,11.5592508258928 -"Tfru03957_t",0,0.0489357801284358,0.0262502597849905,0.0630615702665346,0,0.111511356724198 -"Tfru03958_t",0,0,0,0,0,0 -"Tfru03959_t",0,0,0,0,0.101911484678793,0.172291688371066 -"Tfru03960_t",0,0,0,0,0,0 -"Tfru03961_t",2.29583013444239,2.35471247275908,2.23334447065459,4.96941768850362,5.15179058935459,5.47462071328061 -"Tfru03962_t",0,0,0,0,0,0 -"Tfru03963_t",0,0,0,0,0,0 -"Tfru03964_t",24.161295694163,25.6211734101472,21.455563257888,12.7482208886465,30.3901660686589,30.846053770388 -"Tfru03965_t",31.5370184094708,36.5885263814554,28.7557104476236,27.9611421778645,43.3530491361587,34.5135036249061 -"Tfru03966_t",0,0,0,0,0,0 -"Tfru03967_t",1.1938647409555,1.16003785743504,1.4170122006597,0.589072328579793,0.870173155641814,0.781530304449081 -"Tfru03968_t",0.0990688405323673,0,0,0,0.171494915845092,0.0724823818707284 -"Tfru03969_t",2.95811185814956,1.71732381144157,2.35426912040739,6.73160057816994,5.36342472401847,4.97780414086862 -"Tfru03970_t",0,0,0,0,0,0 -"Tfru03971_t",3.80599496975618,1.34121888431572,7.99400176435734,145.183482725806,75.7670223117954,66.2871805420383 -"Tfru03972_t",146.124431937571,168.583762542462,165.856402031724,189.051208113614,192.614332290015,157.912893064577 -"Tfru03973_t",0.0385368700786456,0,0,0.0398618549666443,0.0333549744579445,0 -"Tfru03974_t",0.601985183871837,0.805336445266536,0.806401292630633,0.484308842986459,0.868397822272919,0.440434345889649 -"Tfru03975_t",0,0,0,0,0,0 -"Tfru03976_t",0,0,0,0,0,0 -"Tfru03977_t",0,0,0,0,0,0 -"Tfru03978_t",29.650721213452,34.7667551817671,36.9238515750744,23.9046992535264,26.6701297499717,29.1374159038538 -"Tfru03979_t",2.08645201623755,1.87178465350286,1.66463846090151,1.65037979511278,1.30130692899841,1.18979115076626 -"Tfru03980_t",0.0394044919190654,0.09488767122465,0.0339332626488902,0.0407593076112967,0.102317792192757,0 -"Tfru03981_t",3.17877101297369,2.91604346019393,3.51952131733462,1.87889392058994,5.89571710689074,3.32243566629069 -"Tfru03982_t",0,0.163673555866467,0,0,0,0 -"Tfru03983_t",0.848979462090879,0.433655980816621,0.564941282244546,0.558835008535592,0.768221598218345,0.592910544948981 -"Tfru03984_t",39.3898717009709,42.3280196675863,43.205192509141,24.6783883041907,27.7643077733861,38.9721281491264 -"Tfru03985_t",12.4419746667308,13.5474910272371,13.6958406274472,10.6874946368393,8.28741174780584,9.38005098445043 -"Tfru03986_t",0.292719082827343,0.704879843383114,0.504151330783512,0.605566855939266,0,0 -"Tfru03987_t",2.13948327940868,1.37385748761259,3.00928699694759,0.737681186988834,0.432085662332966,1.04354940282475 -"Tfru03988_t",0,0.132482328127671,0,0.512173932184389,1.57141903241947,1.08680852345265 -"Tfru03989_t",70.3353149176224,75.0025719066462,61.6415028906197,68.7210244552507,62.4369708429724,67.4234074626082 -"Tfru03990_t",79.0961207486051,71.1902462435576,74.1593968691244,30.7413737216299,20.659643789606,19.346940836715 -"Tfru03991_t",0,0,0,0,0,0 -"Tfru03992_t",4.02020099961888,2.89475285435331,3.71656387447057,5.01457086125077,7.41978003248154,6.66123801074044 -"Tfru03993_t",0,1.36920822369512,2.93789709512422,1.32333264711601,2.58374066105702,1.24802151931731 -"Tfru03994_t",0,0,0,0,0,0 -"Tfru03995_t",2.3279983924618,1.94988448241883,3.31221350212348,1.46576363082167,1.48931970290533,0.814597178421873 -"Tfru03996_t",3.18660049822732,3.02288125938207,4.98935972189199,2.09755829927928,1.2536869710055,1.90753633943931 -"Tfru03997_t",0,0,0,0,0,0 -"Tfru03998_t",45.2627336074737,42.3867745821046,31.005306843186,12.0594313882762,16.3235160714594,17.0596900742599 -"Tfru03999_t",1.19932823146667,1.45107189190424,2.48330843065627,0.979449800365963,0.480331275230719,1.19730702962766 -"Tfru04000_t",0,0,0,0,0,0.161750157437836 -"Tfru04001_t",32.6203328063229,29.3532921684318,20.5841946620704,28.17654869815,34.8252220892912,27.0355023680025 -"Tfru04002_t",51.7503920785455,45.3153153603225,42.8286638422384,33.3691560215101,47.1185711067383,32.945272058875 -"Tfru04003_t",0,0,0.320113787466522,0,0,0.271969291267158 -"Tfru04004_t",0,0,0,0.409900206732475,0,0 -"Tfru04005_t",2.50081343567881,1.59907907961568,1.89807125646143,1.57838465074785,1.24736160788237,1.79867480823911 -"Tfru04006_t",4.22398542426272,6.40429935915497,6.06249016486877,3.88374721015798,2.84355815769963,4.12056266992477 -"Tfru04007_t",0,0,0.2494679860946,0.299651185611326,0,0.211948482159923 -"Tfru04008_t",0.576994345957743,0.0926284409573964,0.1987519669435,0.238733087437595,0,0.0844300272340353 -"Tfru04009_t",0,0.727699694427891,0,0.625171538325789,0,0.221097337504956 -"Tfru04010_t",0,0,0,0,0.109344126794465,0 -"Tfru04011_t",0,0,0,0,0,0 -"Tfru04012_t",0,0,0,0,0,0 -"Tfru04013_t",0.136824717868807,0.109826555402255,0.353480696909286,0.283058123215911,0.118426456544494,0.500529803146398 -"Tfru04014_t",19.7221276933671,20.0835596581769,18.0991034340392,17.2336179419212,19.0574476349344,22.7425028649807 -"Tfru04015_t",1.80279778479501,2.02589929235576,1.55248317526682,1.4918256451036,1.24830634022865,1.84658978019161 -"Tfru04016_t",0.980284443074066,0.786855367759447,1.43509588266788,0.709792189954484,0.339387838125176,0.0717211899957733 -"Tfru04017_t",0,0,0.246073863834809,0,0,0 -"Tfru04018_t",0,0,0,0,0,0 -"Tfru04019_t",0.120531387046553,0.290244641393047,0.207591724440269,1.97733401978037,1.87783242142,1.23459230641218 -"Tfru04020_t",1.35500607695883,1.63145576653995,0.875149789928636,0.350398563819696,0.879602955463537,0.743528949512634 -"Tfru04021_t",80.5720257439666,102.852194555237,72.2963669115216,89.5069946652113,76.2850563175816,81.4223370960611 -"Tfru04022_t",0.452154880363011,0.435523175567177,0.545123801692182,2.24496474903642,2.03504838781087,0.926276466705369 -"Tfru04023_t",3.70439456630004,5.20353030839724,3.41790784098113,3.96860861573426,3.5498097226266,5.32374533929256 -"Tfru04024_t",0,0,0,0,0,0 -"Tfru04025_t",210.487999000862,88.7424926023517,187.700960077507,1.34693207932291,4.54461526989494,11.4017685977931 -"Tfru04026_t",5.0834304415844,10.0935501140072,10.5984169888597,34.3167408744691,41.6830954691001,32.6900158949206 -"Tfru04027_t",0.2757452191623,0.147556903757078,0,0,0.079555628357023,0.1344968486354 -"Tfru04028_t",35.5500480770045,38.2974248982875,42.8596001054286,51.6748135899443,58.6245248178875,60.0961275362579 -"Tfru04029_t",562.507609821653,876.326520743178,461.460895891267,2002.57628918936,1376.23113779007,846.482606683158 -"Tfru04030_t",0,0,0,0,0,0 -"Tfru04031_t",0,0,0,0,0,0 -"Tfru04032_t",1.61135857800509,1.32280197287023,0.756886304803144,0.984904071276984,0.760737691211708,1.44686714499756 -"Tfru04033_t",2.81075610015995,2.73243570514919,2.77011477496122,3.65039752880415,3.70327013814487,3.77016166221276 -"Tfru04034_t",0,0,0,0,0,0 -"Tfru04035_t",0,0,0,0,0,0 -"Tfru04036_t",0.504062260628685,0.404601030101908,0.723457159674339,1.39038150123655,4.65368603637242,2.2127421537496 -"Tfru04037_t",17.0376184667328,16.3857114994542,14.4691431934868,23.7956647115836,15.9019061406417,15.7396508340444 -"Tfru04038_t",1.91658654231439,2.30761043784358,1.92555137555908,16.5206927428298,7.46491937868675,3.50561177716983 -"Tfru04039_t",0,0,0,0,0,0 -"Tfru04040_t",10.5775777048796,10.9395758744261,11.9116433069867,17.4639322945875,17.6062577041935,18.9008779611379 -"Tfru04041_t",86.9741078380114,96.9871306892858,93.9414520771157,37.4950235238487,61.9596936660846,67.8033834991114 -"Tfru04042_t",0.472263204836369,0.210598079378465,0.18075132034337,0.488500683601225,0.862937565301725,0.575875013988548 -"Tfru04043_t",0.242804557142912,0.194894523170476,0.104545832322881,0.627881819561305,0.840622477668428,1.33233511184345 -"Tfru04044_t",0,0,0,0,0,0 -"Tfru04045_t",0.480975439531188,0.257379790141163,0.138064343449301,2.48756232330013,6.66081016656358,7.97638180952993 -"Tfru04046_t",12.1252090185594,10.5668997552388,15.3641417415375,16.6758053876076,22.488817830408,13.4336007043217 -"Tfru04047_t",11.6723741035283,12.5127984629322,9.78717181277899,6.51344167626814,7.71006027506856,9.60742708437897 -"Tfru04048_t",168.199499025387,242.473666975966,167.780490222347,480.717008406256,351.656527947956,175.502362312764 -"Tfru04049_t",37.0066586613265,47.0204398239517,34.2849217632724,42.8144616769085,52.3721843211275,36.6993885393403 -"Tfru04050_t",0.36685754048667,0.58893890844528,1.57960078531515,0.189735466871801,0.635055408893616,0.536812749575351 -"Tfru04051_t",0,0,0,0,0,0 -"Tfru04052_t",0,0,0,0,0,0 -"Tfru04053_t",0,0,0,0,0,0 -"Tfru04054_t",0,0,0,0,0,0 -"Tfru04055_t",0,0,0,0,0,0 -"Tfru04056_t",0,0,0,0,0,0 -"Tfru04057_t",21.5438981669047,30.153899794966,22.8386303361377,129.564384417743,127.436634372312,140.593403597707 -"Tfru04058_t",0,0,0,0,0,0 -"Tfru04059_t",13.9842709463694,15.260824389754,16.7333295660336,24.5418804574563,19.583778519647,19.3898505437326 -"Tfru04060_t",33.3144596233803,33.1354290592689,51.1409369485801,38.1233353575067,46.3211580969562,34.9714994190663 -"Tfru04061_t",32.9402389164642,25.2107024835535,32.5445773956846,31.959757152284,25.6377080271277,29.8918224079648 -"Tfru04062_t",83.5965325508984,94.3404700730228,72.7020988047119,93.1059041006621,52.8339509209461,31.4894887780457 -"Tfru04063_t",0,0.695190773370975,0.372916061687804,0.89586436935345,0.374813630506799,0.633660410581214 -"Tfru04064_t",0,0,0,0,0,0 -"Tfru04065_t",4.19224467145765,3.80780133385468,3.8001689280333,4.53608541317737,4.04628910438446,3.733104421497 -"Tfru04066_t",0.653777251139669,0.0655967947636037,0.0703752100850524,0.0845319492483314,0.282933246374782,0.478327313823951 -"Tfru04067_t",0.230235502723212,0.225873494271264,0.110148775833486,0.449841761590694,0.332127790735318,0.65507828682193 -"Tfru04068_t",1.49732052807163,2.18912078667487,1.19731929672392,1.88068789950839,3.70280556681446,3.12998395042025 -"Tfru04069_t",2.07189420105742,2.53420101062068,2.25151083163476,10.0012762126528,15.8834703971901,18.4070349450691 -"Tfru04070_t",85.7749389884707,59.6261422435017,80.4623716010753,51.061974318594,42.279822387957,52.4909091857437 -"Tfru04071_t",0,0,0,0,0,0 -"Tfru04072_t",6.81779432770989,9.30326985356054,7.17586001480408,7.05220554053708,8.13031261990222,7.31594941125506 -"Tfru04073_t",0.620384320773766,0.414975415489136,0.712327049525503,0.160428634758064,0.268481886713793,0.226947913205087 -"Tfru04074_t",0,0,0,0,0,0 -"Tfru04075_t",0.901184017810521,0.562615655684019,0.862285053247126,0.517871536515403,0.346669102828696,0.732599044414514 -"Tfru04076_t",0.91946840936492,1.32070228719901,1.45858298321439,1.00113875377056,0.670173680353171,0.672716668606668 -"Tfru04077_t",0.382444810795664,0.613962109411089,0.74102212864974,0.857120614381411,1.51717049981318,1.32910030732304 -"Tfru04078_t",0,0,0,0,0,0 -"Tfru04079_t",0.0731797707068357,0.0587399869485928,0.126037832695878,0.0756958569924082,0.316697928215675,0.21416397152048 -"Tfru04080_t",0,0,0,0,0,0 -"Tfru04081_t",0,0,0,0.218064852766084,0.0912344345273765,0 -"Tfru04082_t",0.763730697922249,0.963335785956923,0.845599277541435,9.47987387206742,8.68788789257838,5.58773271148888 -"Tfru04083_t",0.167351348150294,0.134329691268894,0.432344916140043,0.432763166470541,0,0.183660537329814 -"Tfru04084_t",8.77720354317563,10.0647022412149,11.3377614574409,12.3214778559532,10.3101719554534,12.8434453366942 -"Tfru04085_t",29.8101336930943,30.3226489019657,26.0769270738156,29.2506627188616,30.7988513101435,33.778482303261 -"Tfru04086_t",0.0433043179234265,0,0,0.268759310806035,0.374813630506799,0.190098123174364 -"Tfru04087_t",0,0,0.0985636457321988,0.47356318162008,0.495325914974925,0.334959454094701 -"Tfru04088_t",0,0,0,2.13593535927349,3.29234741415416,0.556604681480781 -"Tfru04089_t",0,0,0,0.082446720898752,0.0689884670951793,0.0291579980201033 -"Tfru04090_t",1.30104565796489,1.71567545950293,1.72061160763255,30.3761445236968,20.1491349576758,7.17319005717129 -"Tfru04091_t",247.121432970556,341.327384160646,225.023363301304,165.89779276118,144.719436906265,141.489374730201 -"Tfru04092_t",8.30717133438335,7.15774634258496,7.88123721432939,10.5346643075535,8.89627480766026,7.24532269461771 -"Tfru04093_t",35.8823982142453,33.3738702795924,33.7204608322785,25.3332222682932,31.5504138059147,26.3570510780908 -"Tfru04094_t",0,0,0,0,0,0 -"Tfru04095_t",0,0,0,0,0,0 -"Tfru04096_t",0,0,0,0,0,0 -"Tfru04097_t",20.4818687170058,14.4898440532364,15.8443096953471,2.51360292062394,6.30987905241612,8.12761121671111 -"Tfru04098_t",0,0,0,0,0,0 -"Tfru04099_t",13.4611221467763,10.0238993944166,12.8490460791581,5.36826834454268,5.19384602273708,4.74633666612955 -"Tfru04100_t",26.6898638357051,23.580159536856,30.2340305535545,9.07898368344765,13.1784152815717,11.1397229962518 -"Tfru04101_t",123.199143624501,123.212853733762,112.760157807019,27.6553503739572,71.6131301697103,148.5922355415 -"Tfru04102_t",81.5844080764327,133.804359871513,68.3348289387306,40.0638452141037,131.135709045918,179.782525637067 -"Tfru04103_t",0,0,0,0,0,0 -"Tfru04104_t",7.86852157083566,7.55995302224472,8.0422153511575,9.49556902748474,8.70227181293033,7.18158456817185 -"Tfru04105_t",0,0,0,0.462227892698323,0.386775767650633,0 -"Tfru04106_t",0,0,0,0,0,0 -"Tfru04107_t",104.878050659002,108.731111943875,111.074685971414,100.482603140757,107.747281088387,113.322091028932 -"Tfru04108_t",0,0,0,0,0,0 -"Tfru04109_t",0,0.155108694691166,0.208009534121432,0,0,0 -"Tfru04110_t",65.0032443645103,60.5196118163368,60.6260066822105,30.5898185721474,25.6958697966992,19.9141752274115 -"Tfru04111_t",0,0,0,0,0,0 -"Tfru04112_t",7.10347041472216,7.75447295572991,8.07466277426827,4.50659167537215,3.85293199882863,4.64279482341297 -"Tfru04113_t",19.1416048340007,24.1992388257154,26.5114997121166,9.84486901587592,11.2292265909303,11.553875169895 -"Tfru04114_t",14.9077786665811,13.2707698332291,14.5270583763827,12.5797525753974,14.5524705106709,16.278604903984 -"Tfru04115_t",0,0,0,0,0,0 -"Tfru04116_t",47.3513032711795,39.7913409769645,51.4192691999943,72.8226674717906,60.2142743859138,36.7774407556177 -"Tfru04117_t",3.10230342582893,3.78504164053976,3.52645292012602,15.0179685787183,16.8627378995216,25.0581336958349 -"Tfru04118_t",0.929318327117782,0.149189170391559,0.640227574933043,1.53803263411123,0.321742673974863,0.543938582534316 -"Tfru04119_t",1.88890893755379,2.93993070954224,1.80517141569413,6.67169626313126,9.64998646834835,11.7806626867667 -"Tfru04120_t",0,0,0,0.397706379072241,1.16475265498452,0.421956932446529 -"Tfru04121_t",0,0,0,0,0.40173394651005,0.169792982945795 -"Tfru04122_t",10.6650144231013,10.2126466395433,11.762221081565,13.1606266820832,16.1946201154385,17.659226542545 -"Tfru04123_t",0,0,0,0,0,0 -"Tfru04124_t",0,0,0,0,0.131252426567363,0.332843284258363 -"Tfru04125_t",2.33927199242529,2.28588152599948,1.75171225102746,25.1600592272019,117.986186832974,283.91665618482 -"Tfru04126_t",0,0,0,0.667244840135954,0.50967533364035,0.145084923453818 -"Tfru04127_t",14.370196026695,11.3572218975974,12.1845416366204,10.0619713905277,9.18490665073504,9.54325928883233 -"Tfru04128_t",10.1977914000023,13.6426166219333,12.9636832080373,10.5484145686299,14.7108933591975,13.5009958000136 -"Tfru04129_t",9.63045782501958,10.6344109003037,10.9400838780022,23.3225102881181,14.9147303220212,14.4538317955936 -"Tfru04130_t",2.33927199242529,2.28588152599948,1.75171225102746,25.1600592272019,117.986186832974,283.91665618482 -"Tfru04131_t",0,0,0,0,0,0 -"Tfru04132_t",0,0,0,0,0,0 -"Tfru04133_t",0,0,0,0,0,0 -"Tfru04134_t",0,0,0,0,0,0 -"Tfru04135_t",33.9531132615448,30.4141573287382,27.6347233880655,7.56066280843622,6.48975652349858,8.64271540079013 -"Tfru04136_t",106.846115095856,118.891491389048,101.753076822027,106.185619639325,83.4123899910892,47.3633503400267 -"Tfru04137_t",0,0,0,0,0,0 -"Tfru04138_t",0.446863706231103,0.358688856473322,0.865839685780459,9.47567180031561,6.76857593388608,4.33197895052928 -"Tfru04139_t",0.0737580129687862,0.118408261662835,0.127033741821657,0.0762939805331735,0,0.107928112074412 -"Tfru04140_t",306.007153796713,442.519461676831,308.81792341972,629.816901303879,420.202833739418,248.21462106597 -"Tfru04141_t",0,0,0,0.28522596442216,0,0.336242121588499 -"Tfru04142_t",0,0,0,0,0,0 -"Tfru04143_t",90.7429156764763,70.2530243905171,99.3178121643518,137.766459726183,96.7828868627104,68.3183069150331 -"Tfru04144_t",27.890084596189,29.6216003819548,33.390330446508,25.5067456578062,27.23089311516,23.8892540215881 -"Tfru04145_t",0,0,0,0,0,0 -"Tfru04146_t",0,0,0,0.0875555101534354,0.0732633192124121,0.0619295313112118 -"Tfru04147_t",0,0,0,0,0,0 -"Tfru04148_t",0.183428770243335,0,0.31592015706303,0.379470933743601,0,0.134203187393838 -"Tfru04149_t",0,0,0,0,0,0 -"Tfru04150_t",47.6645700544589,47.2438328562108,45.3785254346629,33.6928151965071,36.9011874609433,37.7255606718785 -"Tfru04151_t",5.40259657694196,4.55338779857452,8.14180083234787,6.42660259815931,4.67613146741602,3.55746326969389 -"Tfru04152_t",18.8830663385364,17.9410242705739,18.916081697907,20.7281645826551,19.3458851856078,11.2779926286932 -"Tfru04153_t",8.20021605936439,6.17916579836911,8.50278335075418,7.09731593011687,6.30090085228462,4.53029325413541 -"Tfru04154_t",0,0,0,0,1.01461178118585,0 -"Tfru04155_t",0.0899468702049758,0.216595840525646,0.0387289700039796,0.976914197201808,1.20670726652457,3.22461234635172 -"Tfru04156_t",10.4534914950815,9.51641269587188,9.8802950486632,3.95594129714498,5.29630429025693,4.7567800472614 -"Tfru04157_t",10.2793564458946,8.02601227677125,7.56451312673947,3.67314356555819,4.52944970169729,6.97378876784263 -"Tfru04158_t",2.39317393770295,2.80139189981538,2.10382200736158,4.79619731509642,5.95519911924512,7.1861227215409 -"Tfru04159_t",0,0,0.183774045641238,0,0.123139448464554,0.780673918201241 -"Tfru04160_t",0.470382848664319,0.604107547744543,0.405071198025946,0.58386681182946,0.407132387000667,0.825958250746397 -"Tfru04161_t",9.43179851483773,8.70633063972295,10.4428459295414,11.0801252353956,9.85456270232231,8.8229716992154 -"Tfru04162_t",0,0,0,0,0,0 -"Tfru04163_t",2.93000712732649,2.35186006673789,2.56668505236236,2.6649675497243,2.44857202755614,2.06977952512156 -"Tfru04164_t",0,0,0,0,0,0.663292012514867 -"Tfru04165_t",0,0.109204056707667,0.117159054198274,0.211090308892189,0.412143247148367,0.497692792116419 -"Tfru04166_t",2.48306532329401,4.65058655289549,4.12385854564542,2.50728543062538,1.94449407747792,2.24924919843184 -"Tfru04167_t",0,0.127233028333933,0,0.16396008269299,0.548783730704295,0.231943621986331 -"Tfru04168_t",0.376840804895847,0.221820740187449,0.302882782160309,3.04042007410057,3.74006615512885,3.16148034992134 -"Tfru04169_t",10.2174782559869,10.4795311850719,11.2429153192634,4.40365762638267,5.15875246852939,4.77600127029286 -"Tfru04170_t",18.0341085099175,18.3453531183295,15.9145198780646,6.00257688498778,6.72274649914321,7.57698930909651 -"Tfru04171_t",0.0692012988232681,0,0,0,0.119792165269059,0.0506301975505582 -"Tfru04172_t",0,0,0,0,0,0 -"Tfru04173_t",0,0,0,0.11329705844496,0,0.0801369750017962 -"Tfru04174_t",0,0,0,0,0,0.174121982510985 -"Tfru04175_t",0,0,0,0,0,0 -"Tfru04176_t",20.198978903166,19.4559957598125,21.4220580223383,18.287398881957,18.2724551906427,20.4353844200418 -"Tfru04177_t",0,0,0,0.144350238915755,0.241574233615678,0.102101428283019 -"Tfru04178_t",0,0,0,0,0,0 -"Tfru04179_t",10.1316295324105,8.74789276295954,9.10216635053112,9.26203452787551,9.66989846214934,9.29588910020836 -"Tfru04180_t",0.433043179234265,1.04278616005646,0,1.7917287387069,0,0.950490615871821 -"Tfru04181_t",1590.80460068906,1708.61921495738,1749.73979936101,6602.84424499817,5919.05432043884,2105.59360351172 -"Tfru04182_t",0,0,0,0.583213716961609,0.976024755950536,0 -"Tfru04183_t",0,0,0,0,0,0 -"Tfru04184_t",0,0,0,0,0,0 -"Tfru04185_t",0,0,0,3.73185218890179,3.34572903305149,1.69688815471595 -"Tfru04186_t",0,0,0,0,0,0 -"Tfru04187_t",0.114455554184533,0.734970081928987,0.985636457321988,2.84137908972048,2.47662957487463,3.09837495037599 -"Tfru04188_t",0,0,0,0,0.231204592427088,0.0977186960673732 -"Tfru04189_t",3.58338099972999,2.2371304981938,3.42870691788786,12.9318658586575,9.7870766760202,9.55475811519047 -"Tfru04190_t",2.72543624130478,2.7633536489601,1.52350113306491,1.82996996107543,1.82095000000344,1.29436950118155 -"Tfru04191_t",71.9061712737068,75.1291974582952,80.602003096385,68.8000832013452,81.4270581881319,74.0035813030853 -"Tfru04192_t",0,0,0,0,0,0 -"Tfru04193_t",594.180662409737,439.643948084512,724.405673232911,3.31437783369858,9.3600657763748,35.4577937496625 -"Tfru04194_t",26.3165035669594,26.8109116332589,35.7370404176481,35.8588602540301,44.8986086905283,32.7690228592435 -"Tfru04195_t",0.0739527964537389,0.118720959536945,0.191053827378787,1.68290014454248,1.47219931278287,2.48890207043431 -"Tfru04196_t",0,0,0.0635168709108287,0,0,0.170594047256061 -"Tfru04197_t",18.4443834716261,23.5256739307375,7.94171017386868,39.4638358433684,28.1014405861774,53.7010522693616 -"Tfru04198_t",11.8750809737911,14.2791568273216,6.97791273743542,24.036875315862,18.6621451881273,32.5042500412219 -"Tfru04199_t",3.02530442667262,1.86796412789431,1.80363280805237,0.962868075648583,1.47710487073224,0.681053294475099 -"Tfru04200_t",3.46831830707811,9.58916814461708,10.6195546374215,10.762700840994,7.3380943807478,9.30434391867186 -"Tfru04201_t",6.00074119795126,3.37167525084402,4.65079602647071,6.82776630070467,5.19384602272905,5.26843369939566 -"Tfru04202_t",57.4768503000383,63.7138632811723,49.5606773086513,58.1387282545534,72.2610000921373,71.1441662225244 -"Tfru04203_t",13.0156921758581,11.1472732533636,11.6375243624412,12.8834460826219,11.8584475537659,12.4388149240927 -"Tfru04204_t",2.22598643064679,2.64704632058821,1.98790976161742,14.2415180757179,18.4103747145499,12.7876277558313 -"Tfru04205_t",119.310149763487,108.017339229041,120.000967402863,98.5385054775448,74.9819825814593,48.6081482296675 -"Tfru04206_t",105.629485470949,116.260113346308,85.2291996328673,70.8285096948416,53.0768374378337,45.8281561523482 -"Tfru04207_t",7.90398307161048,9.0914230818243,8.42045190697582,5.39430262361418,7.12327669849682,10.9098990768449 -"Tfru04208_t",4.39009094767659,5.04549978155585,4.98343411652157,8.97885916030138,10.3630181926345,8.17587494127589 -"Tfru04209_t",6.4257228692042,5.73089277764742,4.09890742025121,9.60072212256119,10.9173760591244,9.92495300312615 -"Tfru04210_t",0,0,0,0,0,0 -"Tfru04211_t",0,0,0,0,0,0 -"Tfru04212_t",0,0,0,0,0,0 -"Tfru04213_t",27.3608376245932,26.0687336252774,25.9244136652941,30.2190154174317,30.93386845669,27.3419154037903 -"Tfru04214_t",0.744919596988204,0.292322583324859,0.570212539644799,0.0684916995683032,0.0859671065832343,0.145336102052519 -"Tfru04215_t",0.190932674480562,0,0.164422081744168,0,0,0 -"Tfru04216_t",0,0,0,0,0,0 -"Tfru04217_t",0.981757324541122,1.35092163640036,1.08699740184792,0.580292780148812,0.849744424421091,8.41424859058927 -"Tfru04218_t",0.877720354328555,0.805176179307279,0.755850763838862,5.31769044316219,7.92255318692133,9.40323676448316 -"Tfru04219_t",8.68707552996052,7.86582498621825,7.66335452870674,7.56118565458088,8.71099017684781,10.8513346477842 -"Tfru04220_t",0,0.107721254020742,0.231136472739405,0,0,0.29456098958328 -"Tfru04221_t",0,0,0,0,0,0 -"Tfru04222_t",1.22345208890457,1.21586070072233,1.40477118383367,7.23152653209026,7.00917084621799,5.02973443794214 -"Tfru04223_t",19.8285361323913,20.313819834309,23.8156704737515,26.0426659296055,26.4208688982712,25.1014141837536 -"Tfru04224_t",2.03730115444399,2.86177892628496,1.85189437976591,58.0984186585247,44.4022228861948,40.9698057919843 -"Tfru04225_t",1.84638190706478,2.6862247877645,2.88190352068075,2.74543050553234,2.49704135708513,0.844300272340353 -"Tfru04226_t",9.67162351093413,9.85625157979628,8.73701084482554,6.81655716252402,9.47906209792985,10.0244933915481 -"Tfru04227_t",16.8071916987944,19.3224507372054,15.4869178821882,14.8447781324929,16.384971009609,13.7192109782993 -"Tfru04228_t",0.894785078039085,2.15468004196282,0.941778551055352,2.67381057930107,5.93758018693966,6.98301271400267 -"Tfru04229_t",0,0,0,0,0,0 -"Tfru04230_t",60.4735493072563,70.576444142582,64.9275638381993,30.8263635534386,20.3342702909851,14.5784554119529 -"Tfru04231_t",2.23000517491776,2.18052356956466,1.81562607640278,2.97771134736352,2.87767144503,4.18270918702667 -"Tfru04232_t",1.1575033782868,0.880205286661148,0.734474273781055,1.19730096643829,1.74007024112004,1.64917129338359 -"Tfru04233_t",4.62914320985527,3.50929464884308,3.1005306843186,6.38440485261683,6.30681302760931,7.40089495868629 -"Tfru04234_t",5.62412564160318,3.38578267867705,8.77835047303592,9.45343070924436,6.99756660803908,8.22963144118865 -"Tfru04235_t",141.561671423515,133.119563724559,122.242628375538,0.115480191132604,0.144944540169407,0.36756514181887 -"Tfru04236_t",0.0610540528862263,0,0.0525768284647049,0.252612918102572,0.0528443636034295,0 -"Tfru04237_t",0,0,0.183618568445264,0.220555441186002,0.184552904361216,0 -"Tfru04238_t",9.83758580262781,10.8510680814458,9.5937320127423,8.65955907856229,7.95087402007211,9.10416938878491 -"Tfru04239_t",5.94763723717109,2.38702670363628,1.92068270659134,73.8255657374838,44.4004885876211,17.9499730534694 -"Tfru04240_t",59.9753224544825,60.0410619536253,66.1557081841241,42.0553228148089,28.5800404138848,20.8718251282085 -"Tfru04241_t",0,0,0,0,0,0 -"Tfru04242_t",15.8777375796968,17.0528384470635,17.7173181961063,36.3941919134679,40.2603716545085,38.6679036529741 -"Tfru04243_t",0,0,0,0,0,0 -"Tfru04244_t",0,0,0,0,0,0 -"Tfru04245_t",75.5752578055516,65.5869485915702,66.3291351263288,35.0768152568553,39.0855349784068,42.1403452765024 -"Tfru04246_t",0,0,0,0,0.0229816195696331,0 -"Tfru04247_t",0,0.0191681367302401,0,0.0988048252726374,0.124014515608276,0.104829550585067 -"Tfru04248_t",0,0,0,0.234439326872171,0.26156059107309,0.331646006257434 -"Tfru04249_t",0,0,0,0,0,0 -"Tfru04250_t",0,0,0,0,0,0 -"Tfru04251_t",0,0,0,0,0,0 -"Tfru04252_t",0,0,0,0,0,0 -"Tfru04253_t",0,0,0,0,0,0 -"Tfru04254_t",0,0,0,0,0,0 -"Tfru04255_t",0,0,0,0,0,0 -"Tfru04256_t",0,0,0,0,0,0 -"Tfru04257_t",0.114144533656858,0.183243220154849,0.245739524345903,0.118069081287072,0.197591968256302,0.334049238186835 -"Tfru04258_t",0.0856593186555671,0.0343785393917841,0.018441426451041,0.0886044800686053,0.0741410597178884,0.0313357429652703 -"Tfru04259_t",0,0,0,0,0,0 -"Tfru04260_t",1.04867321906106,1.77702717797879,1.75596397979208,8.79835728070982,7.86640756841732,5.54123285535999 -"Tfru04261_t",62.2007475627399,55.3624652248158,69.8370079160796,51.8786912071043,57.1761156354917,44.8746781675241 -"Tfru04262_t",40.486928564553,39.8101415160512,44.0175741729568,54.4426491448049,57.3826120825289,40.7298589210937 -"Tfru04263_t",17.1751094047085,16.2189743796633,14.8907694752581,19.8557025211279,16.412745618566,18.4793195592717 -"Tfru04264_t",69.8134196260216,68.3361286201121,69.64233450072,57.7710105087135,53.2883387809655,50.1867526970535 -"Tfru04265_t",292.793561647234,324.798065584766,271.189414587985,338.33987715002,402.72283007069,496.812258714982 -"Tfru04266_t",36.1530723567529,38.4141328889324,23.9659182926174,14.797016750776,8.10432939770739,24.3576707671094 -"Tfru04267_t",44.9756284422624,41.0939271318312,37.7044509508839,26.2757754334773,24.2916788711387,26.9514272526214 -"Tfru04268_t",7.098575781518,6.94430285538921,6.38585346525067,9.63721617699799,8.94180054612298,10.1784840678158 -"Tfru04269_t",0,0,0.129884588810474,0,0,0 -"Tfru04270_t",0.263630889450149,0.564297113112842,0.832429786236164,1.09078046645127,1.21696810574593,1.47876189958858 -"Tfru04271_t",0,0,0,0,0,0 -"Tfru04272_t",0,0,0,0,0,0 -"Tfru04273_t",0,0,0,0,0,0 -"Tfru04274_t",0.314940493988557,0,0.135605840613747,0.407211076978841,0.477035529735926,0.0576054918710194 -"Tfru04275_t",0,0,0.0962044095311621,0,0,0 -"Tfru04276_t",0.197671474756347,0.476001211884597,0.340450428082042,0,0.457662331439384,0.289247340359425 -"Tfru04277_t",0,0,0,0,0,0 -"Tfru04278_t",5.93757550113989,4.86738081325603,6.5274330196181,4.05092354683582,3.60835618421734,2.77285984179148 -"Tfru04279_t",0,0,0,0,0,0 -"Tfru04280_t",0,0,0,0,0,0 -"Tfru04281_t",9.75120444668587,9.93440029268077,9.36618644221243,5.81911900629138,8.76461516336882,3.84156623914861 -"Tfru04282_t",45.6182736359878,51.3346928186641,42.9671747846375,26.0340597071795,26.8049864953429,27.8732717176376 -"Tfru04283_t",43.7433341120295,39.5299856996117,36.6717939559062,25.7700019625741,22.566365478099,37.7268298244663 -"Tfru04284_t",3.29811729964243,3.5297799790788,3.47133206386815,5.78062101795459,2.85463292852725,3.21736409123896 -"Tfru04285_t",0.212684498155563,0.341435468440428,1.83153711309959,4.39994145960935,1.10451409091118,0.778038731979465 -"Tfru04286_t",1.97585380908457,3.23069928217261,2.83585123565725,20.8163606729123,18.6851777647248,16.2764618355565 -"Tfru04287_t",0.341968969218918,0.823475637927899,1.07978680548409,0.471635516023254,0.690633528125147,0.41699497846932 -"Tfru04288_t",10.2937615806912,10.5281559216241,9.86532490465008,9.44552650296572,8.19108522953396,6.55951231348695 -"Tfru04289_t",9.9814283176421,16.6914573135989,17.9073507982127,7.74345932504029,10.7990829921227,10.3456014489495 -"Tfru04290_t",236.655878342994,245.149916481951,255.063666251216,141.735449522101,102.097476868621,46.976224347539 -"Tfru04291_t",3.66898621958169,3.54913184299919,3.96969774065427,4.08706768280622,4.31560330220707,4.06096139950312 -"Tfru04292_t",38.6572863483257,37.1520039524727,40.0303026712532,10.7126129769652,11.4065450602339,11.6093093508227 -"Tfru04293_t",0.0709547101110198,0.0569539738319127,0,0.513760056411311,0.307068599317226,0.415304458286336 -"Tfru04294_t",0,0.0778677887032155,0,0,0.0839651781966733,0.141951639321888 -"Tfru04295_t",0.0654796389489068,0.315355440453552,0.0563879313853733,0.203192931786324,0.170024577517504,0.143721885798233 -"Tfru04296_t",18.6098935886118,18.352156428673,27.015172418219,19.799736568242,17.9483539773066,15.1717552735995 -"Tfru04297_t",52.2850260534413,50.7983637597294,58.1178434304349,54.9350709629082,60.5889266781874,55.014092291878 -"Tfru04298_t",1043.90305818827,1048.63066978177,1012.32934790195,2044.26974255339,1721.00837646582,858.775353527132 -"Tfru04299_t",0.105012970964309,0,0,1.41210621219338,0.818030748581089,0 -"Tfru04300_t",2.93847954626587,4.65684294736127,4.0228111120905,4.05268150584646,7.82570521811506,6.67019931748135 -"Tfru04301_t",38.9218714117478,42.8128830708405,39.7246257361696,4.05914523120777,10.5362291099948,12.6562944923714 -"Tfru04302_t",0,0,0,0,0,0 -"Tfru04303_t",12.3611998519296,7.90092838073661,10.5463100933453,1.30229874945522,2.08036884289469,2.09349658809188 -"Tfru04304_t",0,0,0,0,0,0.0837398635236754 -"Tfru04305_t",86.0818655137571,100.688384203443,98.5090981803141,128.800752083729,185.868539038333,139.938259495123 -"Tfru04306_t",1.35690917538152,2.13097452651988,1.98137845697326,2.68507663511273,2.50209155308823,2.97829292698038 -"Tfru04307_t",5.03532226705837,8.29623563300441,6.16193795306219,5.48257689762048,9.40462970678575,8.72532395011671 -"Tfru04308_t",4.78350899766249,2.87972263417728,3.60441289517464,8.34971097272842,3.36398568020693,4.59347422190011 -"Tfru04309_t",2.10797151017708,1.65075899674381,2.16948597454361,5.95634670052379,4.45005167186775,4.66442314471899 -"Tfru04310_t",77.669970977376,59.163358175279,68.2506754409754,20.4950103366237,24.6952678816933,30.152670858223 -"Tfru04311_t",11.2210696566432,13.6289157767192,14.240281526103,33.5988499859449,22.1080756890496,17.9318100723703 -"Tfru04312_t",8.80562022816871,11.2707557960399,9.63243243759035,22.1555125905258,12.7712701069002,12.8850267058129 -"Tfru04313_t",83.2614641311147,74.1874638309563,83.5750457662595,46.434148851601,64.4396417923226,99.2723567201066 -"Tfru04314_t",0.587759165845015,0.786304862604764,0.641123415756177,3.16143181834338,2.91669338217138,2.83817207220681 -"Tfru04315_t",0.549686216607072,1.02951916056465,0.473363463254747,12.9827062206521,11.5771224323605,4.69198929972349 -"Tfru04316_t",0,0,0,0,0,0 -"Tfru04317_t",0.31684948135783,0.690321441445424,0.467752473927374,0.561845973021237,0.587665767658828,0.264935602699904 -"Tfru04318_t",35.3107198816406,55.0159396835514,39.787156758308,43.6288167192313,41.0103680176812,37.1023606383832 -"Tfru04319_t",0,0,0,0,0,0 -"Tfru04320_t",36.4837077160529,37.0267165650664,39.9045005710555,59.8604348494107,43.495219687913,18.2042939252832 -"Tfru04321_t",0,0,0,0,0,0 -"Tfru04322_t",0,0,0,0,0,0 -"Tfru04323_t",0,0,0,0,0,0 -"Tfru04324_t",0,0,0,0,0,0 -"Tfru04325_t",0,0.0565243126714037,0,0.50988424710058,0.609504143489682,0.669778522835633 -"Tfru04326_t",0,0,0,0,0,0 -"Tfru04327_t",4.31217332649043,3.2758714627866,2.9177007356252,10.991787761838,11.7968381707997,3.21128176911414 -"Tfru04328_t",0,0,0,0,0,0 -"Tfru04329_t",0,0.069020987734887,0,0,0.223276901693917,0.0629120366697827 -"Tfru04330_t",31.7654894376025,52.3149611875539,25.102161234252,46.3872831818245,39.2665037394606,41.7240575155927 -"Tfru04331_t",0.629029443380222,0.841516285569691,0.361126702000502,0.939837745220217,0.970199479866809,1.38142710628936 -"Tfru04332_t",13.3111160052533,13.9811937507934,12.2839299482024,23.782442199785,16.4724946316925,9.55109615809274 -"Tfru04333_t",6.96671417129076,9.41975790702889,6.09564790856427,2.69752508554764,3.25680633088702,4.06132767810655 -"Tfru04334_t",21.0162588605215,22.1122228552767,20.428133200954,10.3747155772978,10.3133494218566,12.7768943490746 -"Tfru04335_t",1.92810700786929,1.1054672953604,0.237199068745685,0.284914242056671,1.19203023472654,0.403049572631985 -"Tfru04336_t",45.823841875335,53.7015912680714,52.0889154965524,28.1236258204667,28.5567097686489,25.0330425474702 -"Tfru04337_t",198.705968157682,170.725538928949,180.794659778096,132.522827761629,127.931575951768,132.957383984393 -"Tfru04338_t",6.08351004207033,4.76685121671788,6.67326862803054,2.62194787409911,2.82079568476238,3.76208555833864 -"Tfru04339_t",0.211613039726568,0.0849288476284441,0.0911155112939974,0,0,0.0774119141390147 -"Tfru04340_t",0.518983022526316,0.364505432524241,0.893846683767523,0.134206708613567,0.729945927519805,0.711950499919433 -"Tfru04341_t",1.48293979991191,3.58054008939741,3.13711511717191,3.07606526822246,12.5461625823115,35.6187651485722 -"Tfru04342_t",0.0836445541587317,0,0,0.328540052277069,0.0706519549891298,0.358412029630471 -"Tfru04343_t",0.265295926646676,0.496878458019886,0.152306770457756,7.86663217804892,8.87874309571054,6.98760680131452 -"Tfru04344_t",1.33849709945137,1.95917399768184,2.0340876092062,49.8426358222101,27.1228772621284,33.9296347120304 -"Tfru04345_t",0,0,0,0.322444689526103,0.539620365998657,0.456141445835827 -"Tfru04346_t",8.38861010661642,6.23460660290168,8.37065412943578,5.86347055611291,5.64715506910022,5.09611037498124 -"Tfru04347_t",5.43423765829293,6.95555383916449,6.32392622092954,5.62107905875792,3.55941895264499,4.83553792340384 -"Tfru04348_t",10.7471468612303,12.5733040290866,11.0435395735476,20.1098347295787,19.1512215386877,48.4065483528658 -"Tfru04349_t",61.4698351777353,58.2520552492258,58.6463841681086,48.4704649494294,53.3290322746482,61.6057121371932 -"Tfru04350_t",27.9108855058858,50.157152491972,30.8515615199966,23.4124157749544,24.8789516923835,26.7195218749377 -"Tfru04351_t",0.904309760726022,0.50811037149504,0.467248972879013,7.10905503861532,7.43575372469355,4.69754493829151 -"Tfru04352_t",3.19701222386058,6.41544973734526,3.51786779545662,3.49065123196281,2.4596649240869,3.37862908136537 -"Tfru04353_t",36.5262507701945,36.858064854004,33.2520682086342,41.5603166130492,52.3900990119566,47.7213197409765 -"Tfru04354_t",0,0,0,0,0,0 -"Tfru04355_t",0.803927050444474,1.29059339745425,0.692303502080708,1.24735182527203,0,2.35272956273216 -"Tfru04356_t",0,0,0,0.0463707811244849,0,0.0327988579649828 -"Tfru04357_t",0,0,0,0,0,0 -"Tfru04358_t",15.086118722362,15.5527488166833,14.4075723713868,10.7976435734328,15.4091465832012,14.0192647093355 -"Tfru04359_t",0,0,0,0,0,0 -"Tfru04360_t",1.30360929472936,2.32529327644774,0.997871944378399,5.24389574819821,3.69837656446623,4.55689236643835 -"Tfru04361_t",0.219062260160228,0,0.0943229673630168,4.41858527935346,2.8440877829851,8.01369750017962 -"Tfru04362_t",0,0.0865641912926631,0,1.22706968177167,1.58682330348065,7.33793397157012 -"Tfru04363_t",0,0,0,0,0,0 -"Tfru04364_t",0,0,0,0,0,0 -"Tfru04365_t",0.671469990309411,0.762822454943265,0.736551406908264,0.39320743813251,0.658043839984788,0.278122442653293 -"Tfru04366_t",0,0.116666963697205,0.125165598559574,1.05240814323701,0.754814992923727,0.425363735822683 -"Tfru04367_t",0,0,0,0,0,0 -"Tfru04368_t",1.42122817846434,3.16886771696356,2.71976375817421,4.08359228511676,5.46720633972324,3.58161062898066 -"Tfru04369_t",20.456146606396,16.8011645701254,20.9712553355825,31.6040478399005,28.6454709093378,21.8326117482835 -"Tfru04370_t",3.05492272328005,1.22606370012627,0.657688312249044,1.5799789432974,3.96620960127472,1.6763197759088 -"Tfru04371_t",17.9101876859374,20.4265601853596,19.3069855495913,11.2621967843643,6.57993376500126,3.95940569433721 -"Tfru04372_t",19.083735112835,21.5464020024314,19.1790190607626,45.3366409383487,48.2822830471115,45.9990637442537 -"Tfru04373_t",0,0,0,0,0,0 -"Tfru04374_t",9.0212485123702,10.1829118314238,9.10390721066702,6.9985646035397,9.27223518153062,7.01279206072766 -"Tfru04375_t",0.228537477615472,0.403573751461823,0.314888861664565,2.60034625163257,2.41324510523257,1.83927001656734 -"Tfru04376_t",11.247070594642,11.7458552404824,13.0527779288652,9.88245008976318,9.35091663978383,10.0573826299399 -"Tfru04377_t",0.150826529212652,0,0,0,0,0 -"Tfru04378_t",15.5464042424031,20.8779890977853,14.6751096446396,23.5028901454578,20.701450339735,23.4048448449196 -"Tfru04379_t",16.1558416868168,17.895814792969,20.0341982679048,9.0241107051411,12.5850884397091,11.110991583999 -"Tfru04380_t",0.290693345229922,0.641668300334628,0.563245193518084,0.714134097196543,0.849166867039193,0.664630837222942 -"Tfru04381_t",14.4426168294235,17.2046087783041,16.0380421634255,14.3433845829698,14.8271246794338,15.1711625574503 -"Tfru04382_t",10.8282984644317,13.7684491914852,12.3190182490861,10.1730219222324,16.4516147570812,30.4781416088227 -"Tfru04383_t",14.5265826823664,12.4756061276888,12.0721992787254,7.88078994806088,7.56153641036933,9.88494916192048 -"Tfru04384_t",1.13973377983399,1.37226340091686,1.21394096767918,0.651508647044976,0.934558513195104,0.61443115856429 -"Tfru04385_t",0.0938663427613938,0.0376723491714998,0.121249803297375,0.194187360507899,0.121866778187127,0.171690111246865 -"Tfru04386_t",0,0,0,0,0,0 -"Tfru04387_t",16.515747075839,19.0026251480315,17.6352733168331,11.8898393381861,12.1758425408299,16.6831565199282 -"Tfru04388_t",0,0,0,0,0,0.0619607457927195 -"Tfru04389_t",0.912329883490832,0.579745065756881,0.883861688289916,2.79177281074082,2.99409947193078,3.67121624302346 -"Tfru04390_t",0.459910821741501,0.369161523815609,0.39605318960274,2.06146892291004,1.32689496931239,1.4581127331075 -"Tfru04391_t",33.1255308709006,24.8705280872237,31.9427486542868,27.0988898291982,29.379881624868,19.8125755062537 -"Tfru04392_t",4.99672613371033,4.72296922297947,5.71044561832997,2.46350252095137,3.152684745319,4.30494582441556 -"Tfru04393_t",0.0966747718888923,0.232796910300292,0.0832516869590724,0.199997339073152,0.167350619835027,0.28292317526526 -"Tfru04394_t",0,0.0641002899400994,0,0,0.0691196238767291,0.0584268629528305 -"Tfru04395_t",0,0,0,0,0,0 -"Tfru04396_t",0.991727952443634,0.831420444857889,1.08176962490654,0.250757419228786,0.476874634826332,0.661087999181922 -"Tfru04397_t",0,0,0,0,0,0 -"Tfru04398_t",0,0,0,0,0,0 -"Tfru04399_t",0,0,0,0,0,0 -"Tfru04400_t",0,0,0.208489095007014,0,0.20954998362628,0 -"Tfru04401_t",0,0,0,0,0,0 -"Tfru04402_t",0,0,0,0.103945985439336,0,0 -"Tfru04403_t",0.330749514848218,0.265486240224349,1.13930261366038,0,0.286274977631177,0 -"Tfru04404_t",0,0.327347111732935,0,0.421839047705265,0,0 -"Tfru04405_t",0.303286558741687,0.243442256379006,0.261175869918534,1.56857118821813,1.44377669224099,0.998529852775089 -"Tfru04406_t",0.181447897994487,0.145644719259146,0.625016984599861,1.68917838973123,1.41344405802348,1.46029299803489 -"Tfru04407_t",0.390745938471849,0.627288418762648,1.00947510652233,5.65852936549761,6.76407854123898,1.71530399515473 -"Tfru04408_t",2.5027917608177,2.14287205615045,3.08924109890731,0.776653023282583,0.794292241808848,0.244151181038243 -"Tfru04409_t",0.491768059149936,0.98683178073636,1.05871779464537,5.08676158988983,8.58378064635766,5.03713661016168 -"Tfru04410_t",0.617723358613584,1.23958648928281,2.12781517551276,0.638962086965328,0.26733030999382,0.903897938623202 -"Tfru04411_t",5.13732519825398,4.91197293738827,5.33484596162732,4.14176144140835,4.70809063931562,3.70338040320801 -"Tfru04412_t",0,0.148205505531834,0.1590015735548,0,0.159810646853448,0.270176087148913 -"Tfru04413_t",9.14504101386605,7.46496365501674,8.00875084510339,1.60329970161042,3.21980122442741,2.15467921900586 -"Tfru04414_t",4.7991185747817,4.14210718777547,3.77726404006872,1.38781937316302,1.42926475318563,1.51019803013213 -"Tfru04415_t",0.0882461940876549,0.283334054693213,0.0759933991254558,0.638962086965328,0.687420797126966,0.936180007859745 -"Tfru04416_t",0,0.447567511174677,0.480170681199783,0.96127039631952,1.12609935891202,1.49583110196937 -"Tfru04417_t",0.530033922848249,1.06361995294928,0,0.274128844881024,1.14690606180314,1.55116870224297 -"Tfru04418_t",1.00410808890176,1.34329691268894,1.15291977637345,1.73105266588216,1.44848295454819,2.93856859727702 -"Tfru04419_t",27.533888728447,27.34346392457,29.9970041816189,41.8598089168018,56.0872030869961,59.4974283380333 -"Tfru04420_t",11.5699997003298,11.5354502638507,10.9703709628785,12.900031324897,11.3845972548252,12.2965761902582 -"Tfru04421_t",173.172333250578,171.12842310914,166.190394698775,85.6691432070872,55.2213629021197,66.1039322661044 -"Tfru04422_t",13.5727071107074,12.9607572316767,10.6805653099554,9.92438049280967,8.10182109396313,3.93787291366765 -"Tfru04423_t",6.84625776488934,5.24366290956334,6.50323854264025,6.51403463837499,5.6994988392586,6.4428383083948 -"Tfru04424_t",5.03901012304747,5.85674875627361,5.24194007249641,5.75433802695071,5.16393903988062,6.6950904897254 -"Tfru04425_t",0.207092136659279,0.33245770756114,0.17833783722457,4.78407767989159,4.72012629510863,4.49497972436123 -"Tfru04426_t",0,0,0,0,0,0 -"Tfru04427_t",0,0,0,0,0,0 -"Tfru04428_t",0,0,0,0,0,0 -"Tfru04429_t",0,0,0,0,0,0 -"Tfru04430_t",0,0,0,0,0,0 -"Tfru04431_t",0,0,0,0,0,0 -"Tfru04432_t",0,0,0,0,0,0 -"Tfru04433_t",120.454796837269,124.291898249228,122.884576612708,124.773288998443,151.05523666942,151.096389430627 -"Tfru04434_t",0,0,0,0,0,0 -"Tfru04435_t",0,0,0,0,0,0 -"Tfru04436_t",0,0,0,0,0,0 -"Tfru04437_t",35.6491401431471,36.0458702804605,34.7449820106755,16.436458947595,21.8859103787046,25.0712744028646 -"Tfru04438_t",62.5887873550203,69.6488885857345,89.2715406939419,96.2216566767213,83.1040329677079,91.3899848727588 -"Tfru04439_t",92.5000547136155,86.2379643860008,118.195192149528,141.341661385433,150.848627336764,124.638642034188 -"Tfru04440_t",10.028133266335,8.52917922451213,10.8531804183434,7.65598327623964,10.6683262696486,9.73232830571155 -"Tfru04441_t",90.4875864880032,95.9123270437203,93.4083927680792,86.4988491491383,45.4356932852097,14.9241974952425 -"Tfru04442_t",14.4585558717581,12.0456261000976,11.4478539132807,10.064955810338,8.77785396338599,7.92127198414982 -"Tfru04443_t",1.11190204550445,0.892502272283619,1.17029834653202,3.83377252179197,3.95648858790854,5.78494680718849 -"Tfru04444_t",0,0,0,0,0,0.321806595949622 -"Tfru04445_t",25.9351134291543,21.4791083493223,25.7572456733449,19.2551390823297,21.0211402212798,26.2813671848505 -"Tfru04446_t",9.17234882864438,8.9520906163987,7.98854680037421,11.5361988703715,8.75092171076544,9.22738491190037 -"Tfru04447_t",10.8086004423406,11.1255076390282,9.67286313389,7.62885914528129,12.3268676543669,17.3665153898948 -"Tfru04448_t",27.3866426479609,23.4680480015057,29.9581378895982,28.3282574591148,33.3138317581726,37.907966412744 -"Tfru04449_t",15.3458617816035,11.8510884531806,24.7320894790866,135.251525812433,90.9415398696762,17.8864618874834 -"Tfru04450_t",0,0,0.136845616584049,0.0547912003955136,0,0 -"Tfru04451_t",7.2698588652873,6.37610488466643,7.58989469220656,7.9262894636982,8.60030099855828,7.96807324177566 -"Tfru04452_t",10.0128646733411,16.4663209925195,6.94014135734104,14.6515492499492,15.4305541722014,18.7611374470048 -"Tfru04453_t",21.9598169844936,25.7621299327622,19.2016779645468,23.4137635513193,23.880552088456,22.9052099621086 -"Tfru04454_t",29.5716526163117,31.2891463202227,17.9417375555323,24.3316762656844,43.046595825909,54.0892526339738 -"Tfru04455_t",17.7950593278315,21.7412880423397,17.1022055300429,21.8645423322015,30.0386039138287,32.6566847995032 -"Tfru04456_t",145.636409732082,151.614475918122,145.881328579069,107.90892613421,177.718376080629,184.395179479133 -"Tfru04457_t",1.94839891557245,2.39191150128458,2.46745279561507,3.14163623659351,5.7536193321453,6.70832849401121 -"Tfru04458_t",0.752677393541569,0.697107219334782,0.648169750225114,1.73677909785751,2.90654925600448,3.0923152083567 -"Tfru04459_t",31.8818005632102,30.2237410708622,34.7922145492239,25.1125339304585,32.9868693963149,37.5359143977879 -"Tfru04460_t",0,0.0725871959278628,0.155749657626338,2.33850494691293,3.0525725817163,2.31569116676342 -"Tfru04461_t",3.31619908308339,3.99277332337402,4.75958657680478,3.43021751949802,1.9135222189031,3.63937854235125 -"Tfru04462_t",4.67214057595668,5.51921657012046,4.78256044695523,7.93305289923795,6.86699474149918,6.51413540657308 -"Tfru04463_t",15.1909174436042,9.60696509831014,15.4601803985201,17.1416897412726,18.9255211239461,19.7024986292772 -"Tfru04464_t",0.0203710903907486,0.0654059214519734,0.017542608139533,0.758573806445743,0.2821099682573,0.447127011346104 -"Tfru04465_t",5.95007827977887,4.7443835612325,5.66685486236466,5.29870998946857,4.67251251013589,3.94967785938731 -"Tfru04466_t",4.39049205237715,6.6416919514216,5.9621595068639,4.10476950741947,5.99249772271574,11.1810812347481 -"Tfru04467_t",11.0758860464701,12.6503709255417,10.3297166102537,19.2454448288671,28.5323214026546,27.0010658851675 -"Tfru04468_t",2.46055496820139,1.69289133933853,3.63242088539417,19.6340483961229,20.9926998241172,16.4592628823773 -"Tfru04469_t",9.80402787272425,5.56292496115969,6.2592872969812,13.2883543880757,8.33941474073277,11.9961987991119 -"Tfru04470_t",5.25594688176563,4.86528315712855,6.16873158349966,5.74356636799914,8.034476239007,9.9547347145647 -"Tfru04471_t",0,0,0,0,0,0 -"Tfru04472_t",9.3479754500021,14.0324056682742,11.2332547095089,42.821540094081,56.952172862036,30.3772405500306 -"Tfru04473_t",7.40179531025968,7.50086344351921,8.52532115475267,11.0059108371561,12.0922802776059,11.9139323011481 -"Tfru04474_t",0.308861679306792,0.362340666098051,0.265976896939095,0.909292200681428,0.863682539980034,0.677923453967401 -"Tfru04475_t",2.52662787282549,1.26754708678543,1.63185825490452,4.57362335933077,3.28032380383394,6.70107795099607 -"Tfru04476_t",0,0,0,0.119366543718798,0,0 -"Tfru04477_t",5.79381908768603,5.68077977663816,6.4419581219365,10.5067567613085,10.5373183385779,12.555935398841 -"Tfru04478_t",8.02879360978212,7.14760001048838,8.29681538462318,8.68233452661836,7.58093945977262,8.11701919514284 -"Tfru04479_t",1.54492243565783,2.01093951342896,1.40232749638664,2.93693905579292,2.60208588017842,2.71888187104752 -"Tfru04480_t",56.8786208491512,68.6142473227295,63.5488147068023,128.573094806712,108.504899984729,44.7833947567674 -"Tfru04481_t",0,0,0,0,0,0 -"Tfru04482_t",2.49206786731387,3.3783430331515,3.29060936173562,4.86908485518734,4.12220870888295,4.57847841818107 -"Tfru04483_t",0.0331532662870748,0.05322297159983,0,0.377224657498078,0.602600919765075,0.169792982945795 -"Tfru04484_t",0.0451183548718837,0.108646893153036,0.116561303921752,0.14000887834686,0.156205895420664,0.165051181059016 -"Tfru04485_t",0,0,0,0,0,0 -"Tfru04486_t",0,0,0,0.433565150955804,0.414619212078797,0.0876194723113011 -"Tfru04487_t",2.28996751220942,2.30665116038857,2.59068036868951,7.19899561369809,5.40204401937271,3.97502524799129 -"Tfru04488_t",3.50399333431266,4.52758019442623,3.0910682305516,5.30410033533782,6.50947945067353,5.81510738947419 -"Tfru04489_t",0.232715725128663,0.186796412789431,0.100201822669576,0,0.100711695731744,0.0851316618093874 -"Tfru04490_t",6.23949747904649,4.65058655289549,6.90834423031199,5.30152097620039,8.67937133773039,7.33667822861272 -"Tfru04491_t",4.35036473500015,3.80234953490477,3.74632591315826,4.5999387986825,4.4347914256282,3.74873207226469 -"Tfru04492_t",0.148690932338845,0.238702672626494,0.44815930245313,1.69183589752236,1.35131923069442,1.0334833068152 -"Tfru04493_t",116.286422259007,93.7127385897801,121.351959228462,112.297586784156,96.7735722177629,76.0404140866768 -"Tfru04494_t",0.130450895607838,0.837683292136455,0.112338068272413,3.50833841538727,5.08093632659062,8.01718171648405 -"Tfru04495_t",260.679257334932,284.184056857292,245.002718780469,220.168079108625,160.398185996292,135.58469079348 -"Tfru04496_t",1.35405652820133,2.26826085551174,1.77442190529796,1.15702735299118,0.968159104448537,1.67984396161789 -"Tfru04497_t",0,0,0,0.0344699896181216,0.0432648815856718,0.0487624433370708 -"Tfru04498_t",2.04369291885363,4.62836394121788,1.94849452214635,3.32193668844529,2.4638053244261,2.50986777744548 -"Tfru04499_t",22.2116987626002,17.1099938102797,27.4574359108811,10.468624043159,9.30241078699177,6.15961153910395 -"Tfru04500_t",0,0,0,0.0316340894893646,0.0529405491942621,0 -"Tfru04501_t",0,0,0,0,0,0 -"Tfru04502_t",172.568559372058,264.357923703395,147.397275642311,118.374015607246,140.632582761316,102.966074630408 -"Tfru04503_t",50.975787939285,55.2040388528874,51.2551004650633,55.5268883438751,52.7483480817636,37.92081657085 -"Tfru04504_t",0.344775828063396,0.461241484384299,0.098968147698268,0.475506669369547,0.89524568928163,1.34533646678802 -"Tfru04505_t",23.0061071457529,23.3873427804571,21.3273497938678,25.6175782381013,20.5952507028765,24.1596766947612 -"Tfru04506_t",1.34123968720743,1.98189909520165,1.83751818494934,2.58552438092792,6.41127146928575,11.262647029144 -"Tfru04507_t",7.99878656106792,7.42251018348757,6.72890808943111,3.77821060118629,3.80176951581745,8.55842605177411 -"Tfru04508_t",24.5911169092581,26.6161384040548,18.7811395094265,34.5293419181263,29.5670863651973,32.4014487561567 -"Tfru04509_t",0,0.106361995294928,0.114109962093744,0.137064422440512,0.172035909270471,0.242370109725464 -"Tfru04510_t",2.98781674710169,2.76505585425292,3.20863844876485,3.23598205047211,3.2249654802267,3.44615816599775 -"Tfru04511_t",0,0,0,0,0,0 -"Tfru04512_t",26.5396417527982,23.1419528581015,29.1027084687177,24.094679424838,26.9371741451955,22.4906241637428 -"Tfru04513_t",3.79056138448905,3.34025699201346,3.2287690794686,2.25877328241593,3.06689093250389,4.31069325903483 -"Tfru04514_t",3.0320646546033,2.67122158958126,2.42001514679796,2.92262118357865,4.48060660412177,2.59711520393145 -"Tfru04515_t",0.207946477157048,0.333829232757349,0.230237427053361,2.7962499251354,2.51978668429819,1.71702253404662 -"Tfru04516_t",34.7497467554624,29.7320453938523,39.6257217003445,62.4091696577771,61.6415089334841,60.0681266485055 -"Tfru04517_t",7.5112441405008,8.95093979936591,7.46345075317406,7.70973236156789,7.35139966629498,10.1878125296816 -"Tfru04518_t",0,0,0,0,0,0 -"Tfru04519_t",34.360716953425,36.689899540198,47.3708346578507,6.84756367869785,13.9152197382149,20.1808357778914 -"Tfru04520_t",6.12862584644166,6.19061685401826,6.28577532176065,22.7219108040195,18.3572656147887,17.1296068368594 -"Tfru04521_t",58.1167674925665,75.2853514915519,61.4443067120564,66.0669292111432,88.6511252647845,77.041821563186 -"Tfru04522_t",4.38624262541424,6.05823116568394,4.01542543939661,3.31082142521639,4.99351894189773,4.6257806078177 -"Tfru04523_t",13.0461796796886,14.9800056409597,15.1643875391348,13.6157659200133,12.8616409866665,14.0393729965542 -"Tfru04524_t",2.71487752582774,2.78450738849308,1.03907671048379,3.27625802580427,1.4360005161607,3.20015571806993 -"Tfru04525_t",3.15968231220046,4.92324262292144,4.00142234333152,3.26831934748637,4.82614010962295,3.67158543210663 -"Tfru04526_t",5.07056642269624,2.81531531880055,5.32165306321084,5.52835586972785,7.95081796721182,5.13227139703353 -"Tfru04527_t",89.5674834061346,62.9729229730596,84.1687512617227,86.222588233298,99.3095694775486,72.9449153581525 -"Tfru04528_t",2.08846967114264,2.75790597904267,1.85650594302958,8.64110395716383,6.64745649742452,6.25987377542098 -"Tfru04529_t",5.32330865194168,5.25519667648751,6.11223820263826,4.43038533715217,5.03118369281887,5.28250332083945 -"Tfru04530_t",377.936734245373,369.383793843037,403.583038551313,333.832600305079,252.975652091743,158.650651803163 -"Tfru04531_t",4.25010337798216,3.18404408174632,4.5139822779006,2.19811577977954,1.83930466235208,0.414604113500018 -"Tfru04532_t",29.0805150362703,39.4113879656122,31.091720741857,2.54302636618308,2.91828137732384,3.70023771530033 -"Tfru04533_t",49.7085620343166,35.606757320387,52.5695513950212,22.6718782857345,7.59847092876552,7.18864713540334 -"Tfru04534_t",0.179893740409952,0.433191681051293,0.309831760031837,0.372157789410213,0,0.131616830463336 -"Tfru04535_t",0,0,1.00830266156702,0.302783427969633,0,0.64249191456144 -"Tfru04536_t",10.455438477605,19.6467875011548,14.9302236290911,278.792986375158,236.237239280002,167.04692283618 -"Tfru04537_t",0,0,0.187424134630658,0.450253076825309,0,0 -"Tfru04538_t",21.9738124214335,23.4847900420423,23.0000831110339,18.7108782229269,23.0120403261732,28.1566820302915 -"Tfru04539_t",0,0,0,0,0,0 -"Tfru04540_t",1.93374268783383,1.37971365763651,4.44065775759185,10.3345172326566,9.48441447630248,13.6763688104728 -"Tfru04541_t",4.23394471792441,6.26040497505162,11.705805501362,20.9755829927928,25.4594892573425,32.1183469119268 -"Tfru04542_t",57.2172014672898,44.2186918144161,60.3779447716289,33.4126702048278,45.622248074534,44.5186573407147 -"Tfru04543_t",22.6803524461692,22.3336623030013,23.5809068371986,24.5748916945965,23.6584986178554,21.9338872383342 -"Tfru04544_t",18.4260677677152,16.2943413609814,16.6744772861744,30.0430947060873,32.1670909809664,30.6182825900915 -"Tfru04545_t",16.9982085296314,18.7606833023907,20.4088109246652,34.1509074963259,40.671654166375,34.9178939091484 -"Tfru04546_t",4.65247339715294,6.40191503325803,6.0669666871424,22.4122018098851,30.8343517046036,36.0815461955477 -"Tfru04547_t",0,0,0,0.0591551013119705,0.247494364596049,0.2510485765543 -"Tfru04548_t",9.97342440816114,9.01517446751131,9.43976186954752,4.46111711626702,4.43282259480662,4.33871010539137 -"Tfru04549_t",59.8851972912558,46.0086032193276,77.2080553298073,62.8291029708473,81.0070729982088,77.8640880081608 -"Tfru04550_t",1.0110658035951,1.18045523005662,1.02898720741427,7.60602571792426,6.2053390118478,2.1519495781664 -"Tfru04551_t",56.1209848900912,42.6437949241827,59.23213405073,55.3515548003733,51.5735158530644,43.5325347344661 -"Tfru04552_t",1.98293572237878,3.87926003354106,1.82144996928236,10.8709017848452,15.5611059438102,12.9603745345942 -"Tfru04553_t",8.5586979016488,8.94895039769635,8.72803543843036,27.9567325985902,23.2957222413918,17.7968537835088 -"Tfru04554_t",1.79576084176886,2.50682174784329,1.94983806975426,3.39196230552598,3.17616234475929,3.08467772362862 -"Tfru04555_t",1.14229189676875,1.5837287952073,1.43081762111118,3.75952970822616,4.40417598466951,4.406642113634 -"Tfru04556_t",0.434536431576452,0.63945565102313,0.873137951331099,3.22125024532176,1.37905566810605,1.27169089295954 -"Tfru04557_t",0,0,0,0,0,0 -"Tfru04558_t",6.69189222937256,9.43633547062217,8.33260668300907,8.23153741313353,8.29673573492123,9.79206550517104 -"Tfru04559_t",0,0,0,0,0,0 -"Tfru04560_t",6.93934570871358,7.82181253272581,7.88301298766415,9.01060067804885,5.75065552605335,8.74985913169876 -"Tfru04561_t",0,0,0,0.987486861673689,0.413146842717722,0 -"Tfru04562_t",24.2782281495467,26.6022084011958,30.1993585001674,47.4356074103068,56.0363570893468,48.4953683033806 -"Tfru04563_t",0,0,0,0,0,0 -"Tfru04564_t",5.04308264660226,5.331492343949,4.23693797759496,4.70755083691,7.13298326402251,8.36932732628569 -"Tfru04565_t",74.0767173559047,89.7594627590944,94.0983129981826,61.064052419173,32.9177538468066,17.0274827897398 -"Tfru04566_t",20.6840017488628,20.9303527824013,20.9355164059785,21.3951645829137,22.2299033971991,24.8155317385376 -"Tfru04567_t",4.29845839698468,3.84336038956907,3.88905079358615,1.68844903809491,2.44891185528017,1.99044882857441 -"Tfru04568_t",8.41530089900747,7.89968055377239,8.35230676703821,19.622319573903,22.7153605340759,17.583807437597 -"Tfru04569_t",16.4411715877296,10.7829232366061,14.6763385614126,13.8955191800193,15.2716427207925,13.6426027776924 -"Tfru04570_t",134.941667689137,108.736526839888,124.796360043823,39.1044797222781,43.4010758274967,61.6571381383351 -"Tfru04571_t",98.6725651702378,80.1568078503779,104.423533424692,124.19976263994,139.253871666215,105.824277531264 -"Tfru04572_t",0.0889940431900926,0,0,0.736430879892243,1.16226559417319,0.455779045322716 -"Tfru04573_t",1.34106667425155,1.07644828867127,0.975217171607835,2.00369806625523,1.62503447749347,1.33003499446933 -"Tfru04574_t",38.1365906542865,36.8587496087387,38.3215454606789,47.1195365711979,44.3415759085553,41.3674925806956 -"Tfru04575_t",74.8640857519753,121.135590665591,85.4000336672027,406.812732594667,637.638842464776,733.677190931591 -"Tfru04576_t",9.14467019880588,11.2120301403838,9.43263521584963,12.4735182527203,11.2201984653866,6.91114309052572 -"Tfru04577_t",0,0,0.0747373098837127,0.448857664397131,0.375588038834293,0.0634969626305555 -"Tfru04578_t",13.0640426988516,14.0071866266835,15.4381323517339,9.17320371843073,11.3073742016001,16.6744032900162 -"Tfru04579_t",10.8634107467544,7.55720311878063,8.1077095162383,6.74215164978073,7.52212179649622,8.47793925310697 -"Tfru04580_t",3.75465371045575,3.92585533471419,2.95679344883073,3.50048268283975,3.27116088818077,5.56637413305626 -"Tfru04581_t",6.53438821184871,5.746258325047,7.0098716028971,9.71181663161317,11.9098598206538,11.5685498850283 -"Tfru04582_t",16.317732756568,18.4666908042394,15.6906288577276,22.30622346699,24.6538360283113,29.0239953057981 -"Tfru04583_t",1.5693096532649,1.25965451463857,1.08113149640001,4.86979822195244,8.69306233444412,9.87421259975433 -"Tfru04584_t",0,0,0.156932138757991,0.188500745829251,0.315461363636959,0.133329847779561 -"Tfru04585_t",23.9021119985991,46.2239272085212,21.8860989481313,66.7650180665812,105.884625640001,101.900657407236 -"Tfru04586_t",0,0,0,1.43854615777847,1.15914160164089,1.31899270013686 -"Tfru04587_t",0.0782948525362977,0.0628457642283174,0.0674237800255675,6.55993136068039,8.67415850209212,3.95255277541478 -"Tfru04588_t",3.95342949512694,2.38000605942299,2.55337821061532,5.11169669572263,5.98819894386157,3.97715092994209 -"Tfru04589_t",12.5949622946205,11.6976488294769,13.2312023708101,8.73081005486062,8.96081126999693,9.3114258606679 -"Tfru04590_t",13.8767140202837,9.63335785956923,10.335102281062,16.2935332176159,13.6338458096848,14.8174697795732 -"Tfru04591_t",4.61032555453065,3.2894392691212,6.17585380209802,0.529870998946858,2.21688549750973,5.6218042524126 -"Tfru04592_t",0,0,0,0,0.272847445847351,0.230638123175901 -"Tfru04593_t",0.235984204414178,0.378839915825756,0,0,0.204252371680672,0.172654662433645 -"Tfru04594_t",0,0,0,0,0,0 -"Tfru04595_t",0.399505867799003,0.641351270541973,0.540626953560987,1.35779443480132,2.27230763494747,1.67024619093418 -"Tfru04596_t",0,0.337167525084923,0.36172857983717,1.30348265740927,1.09070766477479,0.614650598263777 -"Tfru04597_t",1.07127326084396,0.497831245091832,0.534095889692465,1.04978469053096,0.976024755950591,0.948789514098448 -"Tfru04598_t",0.616778538548406,0.495076206915763,0.752448560077318,3.58866439788419,6.20592308498349,4.94503234455104 -"Tfru04599_t",2.76118021556506,1.98056448301633,2.02365639069745,1.5799789786779,1.37291873887735,2.66491867778701 -"Tfru04600_t",18.1368672714586,19.8333838285249,18.8651654736183,26.665139464285,18.3438200342151,13.3441427640044 -"Tfru04601_t",13.2873555097697,12.2137215719538,10.7042130768142,23.0547953011163,22.8158235998807,23.3629946789038 -"Tfru04602_t",10.6136104343607,11.4492715737394,11.4128268504775,9.46825637957714,8.65178094161818,7.68313247829721 -"Tfru04603_t",0,0,0,0,0,0 -"Tfru04604_t",0,0,0,0,0,0 -"Tfru04605_t",0,0,0,0,0,0 -"Tfru04606_t",2.59722924620408,1.76401558902932,3.09684396531227,2.06655990076777,1.29691755621259,1.49825651182015 -"Tfru04607_t",0.40389604217042,0,0,0,0,0 -"Tfru04608_t",54.265075905002,49.0425491032615,55.3842801664566,0.831567883514686,1.39165252283864,0.29409119534152 -"Tfru04609_t",2.32593000949294,1.72566689262907,1.7168396669925,1.06498279363657,1.34211446335724,0.718464113037109 -"Tfru04610_t",0.326888625569835,0,0.28150084034021,0,0,0 -"Tfru04611_t",0.905772256295929,0.681605508931785,0.487504824578396,0.292785861951768,0.832975305533304,0.828370078522611 -"Tfru04612_t",1.49228958738755,1.41965273719968,1.47547183880951,2.05813051169885,1.62649388606766,2.42625236156754 -"Tfru04613_t",0,0,0,0,0,0 -"Tfru04614_t",0,0,0,0,0,0 -"Tfru04615_t",0.383026033912374,0.717377712946644,1.0445050177669,1.18858600979569,1.76811779497432,2.8023583507467 -"Tfru04616_t",0,0,0,0,0,0 -"Tfru04617_t",0,0,0,0,0,0 -"Tfru04618_t",59.3658725034218,69.8073050632148,50.0854956697619,38.0678116375067,41.808090409881,32.5356118507293 -"Tfru04619_t",2.90186211628357,2.32777563103677,2.55363263763592,1.23890603656063,0.949995977536785,0.9479706579443 -"Tfru04620_t",13.3669205128223,16.3247920614257,13.1818969213545,24.01054453055,24.0720767760389,40.8014426221293 -"Tfru04621_t",48.4007151888132,53.4271097080056,50.7915881839033,37.8957364058835,28.4294729665608,24.2625236156754 -"Tfru04622_t",0.080546861717591,0,0,0,0.139432107992942,0.0589310257204005 -"Tfru04623_t",0,0,0,0,0,0.29409119534152 -"Tfru04624_t",2.60022051909613,2.1719900961686,2.51225687053495,2.36161930884417,2.08590293213094,2.44375426587007 -"Tfru04625_t",18.6644544714881,19.7796244144689,18.8393006730297,21.7457416547464,17.0698037242908,13.0605814442303 -"Tfru04626_t",34.1650697644126,38.6796128928986,41.9363634287705,47.6031602756445,48.2184369758808,42.5312098343372 -"Tfru04627_t",40.7392785987567,42.8618442847683,45.984126313547,63.3290204330348,145.626904648469,198.708960534591 -"Tfru04628_t",0,0,0,0,0,0 -"Tfru04629_t",0,0,0,0,0,0 -"Tfru04630_t",8.50737992622251,16.6449790864709,9.61556984377285,12.6498316963769,22.0902818182235,14.0046971756303 -"Tfru04631_t",4.43196594925573,4.74327116180431,4.45269646927348,8.09901299445384,8.82284043018291,6.34106127165444 -"Tfru04632_t",0,0,0,0.140840913820559,0,0.0996192217607418 -"Tfru04633_t",104.072556298957,99.915044068585,108.076842985271,212.825526605494,195.054640729059,118.426573885287 -"Tfru04634_t",0,0,0,7.71017093330811,6.54861172980192,2.33723042702037 -"Tfru04635_t",11.7273368589584,12.0661474713132,11.6597790962742,23.7097099274952,35.4341576373534,39.0006724786661 -"Tfru04636_t",10.9932803206579,13.127200895875,9.52532447713386,16.7761095918587,16.6807203444286,16.1358194213027 -"Tfru04637_t",7.981497427738,9.77416211573833,7.04952165334313,13.8657107690308,9.21101072972616,16.0962093333389 -"Tfru04638_t",3.89041342095965,3.71110564523002,3.05891282278412,3.26599681498519,4.88012377975296,2.84636854229534 -"Tfru04639_t",0,0,0,0,0,0 -"Tfru04640_t",0.239892566451877,0.115534274729271,0.0826335990490393,0.347396862816101,0.456797422902061,0.561645321086261 -"Tfru04641_t",2.5315626928896,1.88151520694711,2.01857466426992,1.06683848448675,2.1911537908422,2.40097889946788 -"Tfru04642_t",0,0.0926284409573964,0.1987519669435,0,0.0998816542834053,0 -"Tfru04643_t",5.89002641571034,9.95328487335566,8.27570920660683,14.2693673443327,15.5623725847325,15.9899878884119 -"Tfru04644_t",0,0,0,0.284292836948587,0.0792953591257569,0 -"Tfru04645_t",0,0,0,0.315231597922435,0.439624209905194,0.222968778088432 -"Tfru04646_t",1.66807607307928,1.58237466646354,2.87293456910387,10.5094269610615,9.84393199255222,13.0918358474956 -"Tfru04647_t",0.136049193152142,0.0546020283538337,0.0585795270991368,0,0.176632820206443,0.0995385584232837 -"Tfru04648_t",75.8866171183891,93.3214111120979,70.5444039890901,99.8305189075464,166.227132234351,163.14755891379 -"Tfru04649_t",0.174657747965587,0.140194397124708,0.0752034469515945,1.89696020828792,2.49434185291531,2.49182674971801 -"Tfru04650_t",0,0,0,0.495856455505191,1.65965978472626,1.31522952552877 -"Tfru04651_t",4.67723725065874,4.04312235647873,8.36545752085959,8.55962915643489,13.3905580543371,9.87126228475017 -"Tfru04652_t",2.06582893569935,2.2109345893258,3.55798602894033,1.42457120938451,3.57609070192326,4.03049572377677 -"Tfru04653_t",0,0,0,0,0,0 -"Tfru04654_t",176.18971835603,181.139061542861,171.551277863108,158.434356149193,178.209178671858,170.336320491221 -"Tfru04655_t",0,0,0,0,0,0 -"Tfru04656_t",156.579651647951,94.4593844595893,169.463505884806,216.739917872722,214.18046750571,158.804668189552 -"Tfru04657_t",0,0,0,0,0,0 -"Tfru04658_t",0.730525015403891,0.293189152247759,0.314546591162756,0,0.632294298420166,0.267239390549468 -"Tfru04659_t",0,0,0,0,0,0 -"Tfru04660_t",0,0.558841201798215,0.999250220544667,0,0,0 -"Tfru04661_t",0,0,0,0,0,0 -"Tfru04662_t",0,0,0,0,0,0 -"Tfru04663_t",0,0,0,0,0,0 -"Tfru04664_t",0,0,0,0,0,0 -"Tfru04665_t",0,0,0,0,0,0 -"Tfru04666_t",0,0,0,0,0,0.181849289427153 -"Tfru04667_t",0,0,0,0,0,0 -"Tfru04668_t",23.358982809622,27.1378739702499,28.7618334211993,18.2275623637719,20.5726974168903,19.7887509684923 -"Tfru04669_t",3.05955848636531,2.86515651058508,4.06189907556154,0.52745883961933,0.772377708995802,0.652891379035878 -"Tfru04670_t",5.50887716186494,16.029275772612,8.89496507235082,14.2457120938451,12.5163174567314,18.1372307569955 -"Tfru04671_t",4.10268556735093,5.37036178196872,4.29399816786422,4.30903357821246,4.80752689707895,9.09738300961413 -"Tfru04672_t",11.2180028329826,11.7058161528,10.5191100368079,13.4087236766137,13.4855052519138,13.5879731663654 -"Tfru04673_t",0.100131557534502,0.080373665097717,0.172457010649425,0,0.173334551414348,0.146519808882903 -"Tfru04674_t",14.0986272436512,15.7500400991227,20.6523237623297,0.751720102312151,0.754814992923727,1.16975027351238 -"Tfru04675_t",0,0,0,0,0,0 -"Tfru04676_t",0,0,0,0.702415596756342,1.17551249475343,0.212927458982833 -"Tfru04677_t",9.64304428844568,9.10931522743753,9.88586696587787,8.23299821788954,6.71874407418096,7.37516725142117 -"Tfru04678_t",5.9592135772134,6.6500169307407,3.12913996398936,3.60825649109832,2.13864247995056,4.46631922613817 -"Tfru04679_t",302.515626914575,308.162741094698,317.692057074384,179.869811835047,196.462871294837,200.143214993655 -"Tfru04680_t",0.376728146957163,0.181435439507582,0.194652150585024,0.779361828047396,1.36949841317013,1.819145268404 -"Tfru04681_t",122.699366074088,103.812106407726,122.117392742022,168.407345838215,150.689874738622,116.864488748837 -"Tfru04682_t",19.3870100241802,14.951320116888,15.7130966807096,25.1652760404806,26.6507755193839,37.2684073155413 -"Tfru04683_t",8.10252364800763,4.44992672700914,5.14131991646739,10.5866611769281,14.7642323488973,17.1602958906131 -"Tfru04684_t",0,0,0,0,0,0 -"Tfru04685_t",0,0,0,0,0,0 -"Tfru04686_t",0,0,0,0,0,0 -"Tfru04687_t",38.0397466330861,42.1983550332402,35.9479278323202,28.2949316249384,20.3467229720565,15.2533415849518 -"Tfru04688_t",0,0,0,0,0,0 -"Tfru04689_t",37.638744686584,53.6944540987632,39.7074199904419,50.8565998698142,83.5226590142854,73.4130496263077 -"Tfru04690_t",0.357998764651054,0.742343272559134,0.282600452997789,0.246871715418422,0.516433553397152,0.63298534622335 -"Tfru04691_t",6.57472513863502,7.27109097574443,9.31057909841758,25.3895752399719,32.8793035178486,44.6824260998711 -"Tfru04692_t",0.833285973386764,0.364834111904335,0.848056183567755,0.235073518017903,0.393402223543656,0.443390873409397 -"Tfru04693_t",0,0,0,0,0,0 -"Tfru04694_t",0,0,0,0,0,0 -"Tfru04695_t",119.587724941562,65.993643699896,68.7413030722593,0.618497109090994,0,0.437473735419059 -"Tfru04696_t",0.192096898105444,0.179891210030066,0.110283103608893,0.861040373288643,0.997598473879377,1.61626872256862 -"Tfru04697_t",21.6612121292234,30.0748733176795,25.4596422045673,28.7644256571151,17.9884423226504,29.1263001267853 -"Tfru04698_t",10.8772802564197,9.51705170722638,8.73449526667603,6.87376366660453,4.87382553507467,6.47404668446027 -"Tfru04699_t",91.0467788868225,90.1965917359159,83.1792115057045,50.3969183110014,39.2174921767584,44.7727720055086 -"Tfru04700_t",1.57519456446464,2.31802673495885,0.904321449592924,1.62935332176159,0.454461526989494,1.53662649565944 -"Tfru04701_t",0.540259657694196,0.650483971224932,0,1.11767001707119,0.467613146741602,0.790547393265308 -"Tfru04702_t",0,0,0,0,0,0 -"Tfru04703_t",29.6687131559359,26.1877689386348,33.0121228200912,37.7545947696212,45.2696627855554,31.2546845476362 -"Tfru04704_t",123.454821052373,164.797389266107,130.918664617003,182.441102067337,272.346398719522,285.040106317833 -"Tfru04705_t",13.0450895607838,15.0782992584562,14.3792727388689,63.1500914769708,59.6163195653299,29.7781035183693 -"Tfru04706_t",2.2756761202198,1.67442111780323,1.30646891137578,3.13855869353624,3.93935048225656,3.05244089431221 -"Tfru04707_t",0,0,0,0,0,0 -"Tfru04708_t",0,0,0,0,0,0 -"Tfru04709_t",0,0,0,0,0,0 -"Tfru04710_t",0.0591206029355717,0.0474549648254642,0.101823667793714,2.05122790573716,5.21501878161254,2.72829961482096 -"Tfru04711_t",0,0,0,0,0,0 -"Tfru04712_t",1.70579445221213,0,0.367237136890528,0,0,1.56002689914664 -"Tfru04713_t",2.82936502080004,3.6686621900432,2.62393788482921,3.60202461460247,2.26053402025862,3.343954032005 -"Tfru04714_t",10.1262507715584,10.5364851589038,18.0864289918585,13.9658856150993,13.6338458096848,5.4879517702123 -"Tfru04715_t",9.68055443759164,9.25690399531752,11.8159836700318,10.1004668176002,8.37884979619909,6.34358833879449 -"Tfru04716_t",0,0,0,0,0,0 -"Tfru04717_t",0.141550761198732,0.340860177002449,0.79232881851444,2.56230794772954,1.40894559336254,1.08741891857955 -"Tfru04718_t",0,0,0,0.251152727824522,0.105077809708554,0.355289363158253 -"Tfru04719_t",0,0,0,0,0,0 -"Tfru04720_t",0,0,0,0,0,0 -"Tfru04721_t",0,0,0,0,0,0 -"Tfru04722_t",25.6059025091056,22.4008561186558,25.890846981496,8.03516706622153,8.34217049542359,7.89362925852453 -"Tfru04723_t",13.2923667066281,12.2988621776885,14.0405949149579,10.2273775665783,10.1447997918777,9.82099552954593 -"Tfru04724_t",22.7793863263144,18.7234026945207,17.733331679653,22.8085902453394,19.5586045454915,18.2661891457999 -"Tfru04725_t",0,0.210729703178077,0.226080362398231,1.90091220872185,0.908923053978988,1.72870480761687 -"Tfru04726_t",0,0.10876371776933,0.116686638657151,0.700797127639392,0.586401970309025,1.09050912595186 -"Tfru04727_t",0.619241106423446,0.828421437555093,2.48855042639822,1.06755336397156,2.32255522392665,4.53059409039639 -"Tfru04728_t",12.7203731883556,10.2103975982456,11.7968055986831,3.68705576971008,6.3518749196535,8.84646867717416 -"Tfru04729_t",0.728575649118624,1.39455547400035,0.627414481372009,1.97102114084568,3.2015435123476,4.51044468372351 -"Tfru04730_t",2.22544044427675,2.62365458261447,3.23399723695483,1.94227548289461,1.80580739201123,3.10378199454391 -"Tfru04731_t",2.22142823193731,3.07989566183343,2.782527537209,15.0401845085685,26.3937271443898,28.8117467936146 -"Tfru04732_t",8.5003545342459,7.80784324431706,7.06854874368878,6.88905994180142,6.39659339796061,6.88169306818276 -"Tfru04733_t",0.280502092726035,0.225153606066726,0.845442423659495,3.48175668089287,1.5780967882106,2.15486854149237 -"Tfru04734_t",10.4282990034071,11.1161487912805,9.05219484796094,7.9391197935553,9.96475721542009,12.0244456661335 -"Tfru04735_t",0.803927050444474,0.645296698727126,0.692303502080708,1.24735182527203,1.04373939212898,0.29409119534152 -"Tfru04736_t",6.69405392601175,7.3209681741547,6.55723122812399,2.59657899882325,3.62120738637047,6.42811880654348 -"Tfru04737_t",6.65729856153465,8.38171884563485,6.8096932970151,11.1157813101675,15.0926563428208,18.8400545405068 -"Tfru04738_t",0,0,0,0,0,0.095442639481953 -"Tfru04739_t",3.91758233649237,4.40239462805184,5.32284542351068,6.21349246018926,8.43932700896553,6.81529678903877 -"Tfru04740_t",4.93252680606874,6.0652246860998,5.82923008107369,7.59889952268573,8.31145128685346,8.10064186343891 -"Tfru04741_t",4.86459581494497,4.88355613802397,4.57725340847917,6.07386996142112,7.02128001306583,8.34986060437223 -"Tfru04742_t",1.76739923081586,0.378308583545496,1.5219996346585,0.24375552265718,0.917846562222821,0.431031275079788 -"Tfru04743_t",4.05126182400381,4.62107775497102,5.60036633758054,5.51388602965004,7.47439262662924,5.53809549197058 -"Tfru04744_t",17.427684543013,19.7278871060327,23.8586935637282,20.3380272787262,13.1503761001215,17.00097399453 -"Tfru04745_t",5.63828032023105,6.33603402844115,6.79758405063099,7.58177832050091,6.34416091367848,9.07537796094116 -"Tfru04746_t",100.322821095474,87.9531482614167,100.551668419768,20.3119383424512,38.8773713640583,54.7340701460044 -"Tfru04747_t",4.13482535167658,4.6217075655615,5.29115401969733,6.95510525572563,6.92353531457776,7.01165355885081 -"Tfru04748_t",0,0,0,0,0,0 -"Tfru04749_t",0,0,0,0,0,0 -"Tfru04750_t",0,0,0,0,0,0 -"Tfru04751_t",0,0,0,0,0,0 -"Tfru04752_t",1.07552402694598,0.71941861682416,0.77182485029268,2.71945172716965,2.2238231192658,2.535543008485 -"Tfru04753_t",0.18710551619476,0.750929899966421,0.805631580929108,0,0,0 -"Tfru04754_t",12.0291994453343,21.1800385272746,11.0272915793317,14.951417702385,14.4420106498278,10.7173487688026 -"Tfru04755_t",11.8679842602601,14.6268448034616,13.1171876559419,8.02291884056132,7.60300485642046,10.0504602830673 -"Tfru04756_t",16.7819771780284,13.3899064985878,16.3556702366567,15.3840058450217,13.5686120976768,14.4104685717345 -"Tfru04757_t",0,0,0,0,0,0 -"Tfru04758_t",9.84528386377253,10.433416393669,7.07691749415092,5.38646586435469,4.8417208686532,7.21805181980464 -"Tfru04759_t",17.6177100802259,23.1761755106918,16.1548686140872,13.6675851456506,13.4132334179423,12.5317112267372 -"Tfru04760_t",0,0.122383856655144,0,0,0,0.223103665431498 -"Tfru04761_t",20.7646657313567,21.9369884588743,24.8851381391585,11.0972776875214,8.71072060542594,5.63376964423029 -"Tfru04762_t",0,0,0,0,0,0 -"Tfru04763_t",1.26331393641274,0.760528252071255,0.815929127452262,2.61349906247473,0.273360316986162,1.84857322786098 -"Tfru04764_t",3.76899609702853,6.22598030715982,7.00878522701408,14.0122973141525,13.2851692155056,14.267247306903 -"Tfru04765_t",17.9471709223407,24.7462403732054,24.6999462772169,33.6547946932669,30.1624269026841,35.9284622314082 -"Tfru04766_t",40.7191133762691,69.7204632653232,33.702267118131,5.15744433454445,5.92533917431427,7.70122746764789 -"Tfru04767_t",0,0,0,0,0,0 -"Tfru04768_t",0,0,0,0,0,0 -"Tfru04769_t",2.73033724507204,2.86592396322184,3.07469292861594,0.651741328704635,1.27249227557058,1.53662649565944 -"Tfru04770_t",0,0,0,0,0,0 -"Tfru04771_t",0,0,0,0,0,0 -"Tfru04772_t",0,0,0,0,0,0 -"Tfru04773_t",0,0,0,0,0,0 -"Tfru04774_t",0,0,0,0,0,0 -"Tfru04775_t",0,0,0,0,0,0 -"Tfru04776_t",0,0.0338691637453463,0,0.0436458281402735,0,0 -"Tfru04777_t",0.710447160857907,0,0,0,0,0 -"Tfru04778_t",18.1056846490188,16.7130454244682,19.8015213962588,15.9189692356017,14.4174001665633,13.1143123336452 -"Tfru04779_t",0,0,0,0,0,0 -"Tfru04780_t",1.80788974894843,2.35813198445407,2.1893458093709,4.09073239267648,3.47187824250212,1.94274230789492 -"Tfru04781_t",11.8922676926215,12.3412178039173,14.1911717873429,8.08361337928229,7.0581689125972,5.09619302908288 -"Tfru04782_t",2.30351033083001,2.1752743553866,1.05017974791436,0.140159425527878,0.23456078812361,0.198274386536702 -"Tfru04783_t",3.07092646172695,2.93598729643216,3.30145758547545,1.17348846146275,1.33746069875371,1.9176526232211 -"Tfru04784_t",0.225228892148653,0.325416378098049,0.387912686152461,19.1969563843653,14.8156894589604,2.6365709308902 -"Tfru04785_t",4.07119841822864,2.96030780291209,2.9284753897878,4.7066078469738,4.47724925107096,4.10000684132622 -"Tfru04786_t",2.64738582262965,1.27500324611946,2.43178877201458,3.10353013668874,2.29140265708989,2.45343726197726 -"Tfru04787_t",9.52694994315384,11.8182431473066,8.20415335713168,11.1983046169181,8.24589987114959,7.92075513226517 -"Tfru04788_t",7.39949048075916,8.93913901025863,6.37208708254089,5.48916184318257,4.85190242337538,6.83552711592279 -"Tfru04789_t",5.01673339962198,6.90314553728373,4.66304140832749,3.78895432801431,3.0326153080626,3.49564321287456 -"Tfru04790_t",34.7411332513505,37.5193937688486,43.2442437549699,33.6488004293621,43.4642904007997,50.8357637661771 -"Tfru04791_t",0.730525015403891,0.879567456743278,0,0,1.26458859684033,0.267239390549468 -"Tfru04792_t",8.89885784038973,8.46800845930202,10.0177825917448,8.03087257967844,6.94320097727885,5.75586221892699 -"Tfru04793_t",1.50203509640689,0.457317235010376,1.1596723891204,1.28580286797462,1.1655733367918,1.1368383445076 -"Tfru04794_t",0.340122982880354,0.136505070884584,0.73224408873921,0.175908590743491,0.147194016838703,0 -"Tfru04795_t",3.84200606346423,3.15562267561534,3.19313715782878,1.15526248108594,1.10201784795113,1.65061713439621 -"Tfru04796_t",0,0,0,0,0,0 -"Tfru04797_t",0,0.0855755139809449,0.0918092842226318,0.220555441186002,0.276829356541824,0.390006724786661 -"Tfru04798_t",2.34175266261874,0.704879843383114,1.00830266156702,11.5057702628461,15.96157558207,11.5648544621059 -"Tfru04799_t",17.6492387894452,7.36668541030068,5.4715247283258,0.730242383941173,0.611040707584934,1.03302621392548 -"Tfru04800_t",30.0347979131082,26.6938848875524,28.788347079269,18.910629226663,27.5031639131466,32.7389023323919 -"Tfru04801_t",30.5895303283898,28.3345268442079,30.1838161935369,33.3035806488472,27.2676916193696,21.1032741686211 -"Tfru04802_t",27.7661414753089,16.5726410634962,37.3990565594362,43.8176373535885,17.2541325501096,12.5013681002802 -"Tfru04803_t",56.380920637933,66.1951601836176,57.6108622979398,23.7920039861013,15.9023599427376,8.41424859058927 -"Tfru04804_t",126.143240501809,190.617506582966,113.02643771204,68.1455978949527,73.818917940178,79.0265054910571 -"Tfru04805_t",32.4436960878061,51.0999031208473,27.4463319331705,22.0628387538145,23.2005262027322,21.7041018647618 -"Tfru04806_t",0,0,0.0962044095311621,0,0,0.0817354518967789 -"Tfru04807_t",0,0,0,0,0,0.148825810717622 -"Tfru04808_t",0,0,0,0,0,0 -"Tfru04809_t",0.63523914382947,0.382420633366642,0.820556324772407,1.72483527445461,1.23709754038728,1.85905662990934 -"Tfru04810_t",0,0.594127797506472,0,0.765628579976076,0.640650610734089,0.541542377324914 -"Tfru04811_t",11.7037356952589,3.60331706197628,25.8180322250193,9.2868993403205,7.35464455891395,6.56878501961288 -"Tfru04812_t",4.25368996311126,1.60047875831451,5.95249561757367,1.37498170612792,0.805374857956065,1.55607746395893 -"Tfru04813_t",40.5355194674274,33.9636611924438,51.6839207643669,18.6666352891807,27.3342522986683,29.3571929357882 -"Tfru04814_t",9.95424280437988,9.22848649957369,8.57211752014538,8.29932778125752,8.72714678999233,10.6710971647304 -"Tfru04815_t",37.3673915608015,31.635096314863,37.0368334109981,14.959602677793,17.5640471178995,28.3088288159342 -"Tfru04816_t",1.68431562231264,2.44013661186155,2.4410045974342,3.35697245102958,2.31119798566784,2.9755701334041 -"Tfru04817_t",25.5092237160266,28.5295598148781,21.3815273911849,56.6425662194042,70.2115460320611,75.5248812036665 -"Tfru04818_t",17.4628311266492,13.4488170118143,15.0381544426688,18.3073406939504,16.135937362773,14.3303369819926 -"Tfru04819_t",41.0204719801642,33.8296686253995,36.3424561122407,20.3714637237439,23.7184475438857,25.6481796864255 -"Tfru04820_t",7.77145171539151,6.23799402381942,5.16755114053099,2.03510172897622,3.57609070417963,6.69350183120975 -"Tfru04821_t",1.87477921625064,1.87089338406592,1.35266417068182,2.04406206831369,1.6226853074655,1.59408780008097 -"Tfru04822_t",0,0,0,0.230500912008713,0.578624755848693,0.163037293969172 -"Tfru04823_t",28.3601908846288,37.9045020238783,33.7536541058251,30.3038961754384,30.5676033440067,32.4942672967475 -"Tfru04824_t",37.2732177659232,34.9129799346044,29.5319818780681,27.5419223395372,23.5720436051631,26.5893539668977 -"Tfru04825_t",35.0862802771682,30.8674494796056,26.6612127933346,17.4409651343494,13.2872361519583,31.2973130426293 -"Tfru04826_t",0,0,0,0,0,0 -"Tfru04827_t",0.105806519863284,0,0.182231022587995,0,0,0.0774119141390147 -"Tfru04828_t",7.01806587279905,7.78716151301788,7.28789767730907,6.19180951103502,5.71705901274253,4.98365349943603 -"Tfru04829_t",3.72438949918759,3.9406985299598,3.4988356336895,2.36399877414276,1.97810961873513,2.66296984638211 -"Tfru04830_t",0.590582613507539,1.06661079991716,0.508581483075107,1.8326645446879,2.55584690046816,2.0524360926207 -"Tfru04831_t",0,0,0,0,0,0 -"Tfru04832_t",28.7624685094827,26.9349235445873,34.0571844069232,28.8836385331773,30.9111634905265,24.4632691748351 -"Tfru04833_t",0,0,0,0,0,0 -"Tfru04834_t",0,0,0,0,0,0 -"Tfru04835_t",0,0,0,0,0,0 -"Tfru04836_t",0,0,0,0,0,0 -"Tfru04837_t",26.2266616650654,27.3557452009502,25.0267832826931,20.0310193499951,19.7306550225881,22.8186182278149 -"Tfru04838_t",0,0,0,0,0,0 -"Tfru04839_t",0,0,0,0,0,0 -"Tfru04840_t",0,0,0,0,0,0 -"Tfru04841_t",0,0,0,0,0,0 -"Tfru04842_t",0,0,0,0,0,0 -"Tfru04843_t",0,0,0,0,0,0 -"Tfru04844_t",0,0.186796412789431,0,0,0.805693565853951,0.170263323618775 -"Tfru04845_t",7.64784119574556,9.02213791261725,10.1782938326597,6.83204703193824,11.634215090931,14.0733792154189 -"Tfru04846_t",0.651243230742834,0,0,0,0,0 -"Tfru04847_t",0,0,0,0.0941482598345446,0,0.0665926975367039 -"Tfru04848_t",20.0859724349191,25.9753349496165,23.2000493330101,25.7233769204106,24.0079865491224,19.5941746695094 -"Tfru04849_t",11.8986859728297,12.3769051728941,12.5703171212917,10.7925758928962,9.54244087260901,12.3719820635535 -"Tfru04850_t",0,0,0,0,0.213237080112373,0.180249442306093 -"Tfru04851_t",37.9950498609536,35.3749534515329,30.3475279130509,36.6198599349309,40.8796251085632,38.3489813960139 -"Tfru04852_t",0.0862529535641144,0.0346167890230927,0.0371384578888264,0.490701890195139,0.522584096743566,0.552175845462839 -"Tfru04853_t",106.03251437173,92.4428243533808,127.131792136947,134.988495265685,133.708758387278,73.7580717916533 -"Tfru04854_t",0,0,0,0,0,0 -"Tfru04855_t",0,0,0.483917832558086,0,0,0 -"Tfru04856_t",1074.02417702802,813.422516011554,1101.18430535132,18.1291051100037,13.2482803973572,14.4472810996632 -"Tfru04857_t",136.713289393535,120.02193626764,145.836472043705,8.50233292123073,28.353168072323,25.116657540563 -"Tfru04858_t",0,0,0,0,0,0 -"Tfru04859_t",0,0,0,0,0,0 -"Tfru04860_t",0,0,0,0,0,0 -"Tfru04861_t",0,0,0,0,0,0 -"Tfru04862_t",0,0,0,0,0,0 -"Tfru04863_t",17.5987254788463,16.1607882713118,16.215419096149,10.5627042927993,9.08923053978988,11.7101536393358 -"Tfru04864_t",21.555294040042,30.1676206654926,22.3700569109825,13.1491671580757,11.4811333134186,15.7706403501887 -"Tfru04865_t",0,0,0,0,0,0 -"Tfru04866_t",26.1562650634058,26.6887223022366,23.9561671607202,21.208820723018,18.8019966838925,21.5695328678318 -"Tfru04867_t",0.44925335171897,0.180303489350226,0.386875486456866,0,0,0.164345079749673 -"Tfru04868_t",0,0,0,0,0,0 -"Tfru04869_t",7.3894357743465,6.18510511679774,6.32939942142178,5.68153306302566,5.09612549549837,7.66144913169807 -"Tfru04870_t",0,0,0,0,0,0 -"Tfru04871_t",34.1292155634005,40.9417709031692,32.9431385208851,49.6564821870198,34.0846145242121,41.9828310421241 -"Tfru04872_t",9.94626025201069,9.12419518200214,10.4006526126543,10.2882352099956,9.37747252308132,11.0455181506176 -"Tfru04873_t",52.9313934571548,51.8419431633466,47.6728995392339,57.2628219439911,58.0029509591216,66.083821547435 -"Tfru04874_t",9.72467383849552,9.97408755878229,15.1204872600746,13.4120402048542,16.6002667093269,15.8109478653062 -"Tfru04875_t",1.84496741632903,1.85975958678098,1.95828546796425,2.66288591912006,2.41389166531703,1.53819608349975 -"Tfru04876_t",3.46831830707811,2.16529603265547,0.995583247258265,3.98618549666443,3.00194770121501,3.38339778860795 -"Tfru04877_t",56.5174640449665,55.3237506976172,62.2555659737991,38.6569150298222,44.4104609783717,35.0188353614276 -"Tfru04878_t",23.801822628782,22.6034095028999,22.4600826107995,16.5059256431714,17.0613489461978,21.4367367471086 -"Tfru04879_t",0.36447018122103,0.146276583550943,0.156932138757991,0.754002983317003,0.788653409092398,1.33329847779561 -"Tfru04880_t",0.251098478821576,0.374310659786849,0.370686845264392,2.00364541702535,2.20439066891574,1.9421069287583 -"Tfru04881_t",0.117826615387724,0.0945771458863739,0,10.9689985195731,6.52690888691784,1.20688757022341 -"Tfru04882_t",0.026602399230984,0.0427064629619915,0.0229087130992508,0.0550340999539485,0.0690758495740839,0.0973164341772921 -"Tfru04883_t",0,0,0,0,0,0 -"Tfru04884_t",1.34461423308752,1.32663447682631,1.06142430895868,0.695422558137656,0.630396783019772,1.12723517520866 -"Tfru04885_t",0,0,0,0,0,0.0532626168339495 -"Tfru04886_t",0,0.0305543747245059,0.0327801159798069,0.0393741929439441,0.0329469163200358,0.0557000995254895 -"Tfru04887_t",1.36146463785949,0.964254123217129,0.965529097754123,1.40827487613331,2.07951890328844,3.45704340300885 -"Tfru04888_t",0,0.0353055000088924,0,2.91179371986713,1.5608730979325,0.321806595949621 -"Tfru04889_t",10.9578752310584,9.68798937862161,12.3767245653171,8.70631138534232,9.89678032309825,11.5029128975641 -"Tfru04890_t",0,0,0,1.09078046645127,0.304242026436482,1.02870393014858 -"Tfru04891_t",0,0,0,0,0,0 -"Tfru04892_t",2.75224760452479,2.74143107387723,3.13248324534342,1.77717696593515,1.83420954191456,2.18166867552777 -"Tfru04893_t",0,0,0,0.154919708041722,0.129539206706382,0.322843434224701 -"Tfru04894_t",48.6889488186568,43.6740093750577,45.9244840558106,34.8035221051787,41.1681390489689,37.3667162896413 -"Tfru04895_t",16.584453260874,18.6035909617047,16.6196086764703,14.1977316350769,16.2578646364596,13.9711496776565 -"Tfru04896_t",1.04477584897195,0.661122226771896,0.17920323740571,1.61742969537941,1.57135090162598,1.7877550605764 -"Tfru04897_t",0.240029647918421,0.385334314382769,0.413404091242479,0.248282410935099,0.207753840909483,1.05368673988076 -"Tfru04898_t",0,0,0,0,0,0 -"Tfru04899_t",0,0,0,0,0,0 -"Tfru04900_t",6.76354728244704,5.57183621962373,6.13099287859609,6.9960933589763,6.62435446120279,5.86001629700635 -"Tfru04901_t",31.1527840915398,30.7447591262848,30.7854110499719,45.4303985966351,54.5906369198322,40.9144319209019 -"Tfru04902_t",108.171255805341,114.586256645402,114.162083749362,77.7515971086231,75.8574879636599,63.8913121879453 -"Tfru04903_t",7.63730697922249,5.0157152491972,5.14192691999943,4.30903357821246,6.97091400076447,5.89251813211555 -"Tfru04904_t",0,1.38561996610218,0.495518602516584,0.59519756046075,0,5.05192272545482 -"Tfru04905_t",2.03250911543824,1.63145576653995,2.12536377554097,1.40159425527878,1.0890322305739,1.45165175857228 -"Tfru04906_t",0.278180055534594,0,0,0.287744515984386,0,0 -"Tfru04907_t",0.541303974042831,0.173797693342744,0.0932290154219509,0.335949138507544,0.374813630506799,0.237622653967955 -"Tfru04908_t",0.088431975548892,0.638843731739854,0.6853804670599,1.189142073426,0.841949776317378,0.776400755701613 -"Tfru04909_t",1.44017788751053,3.08267451506215,3.1005306843186,23.8351114497695,23.6839378636811,25.4640962137851 -"Tfru04910_t",4.29598517581266,6.89660846764616,9.45426970028966,6.91240803171583,8.67608369707217,4.19079953361666 -"Tfru04911_t",5.87257002674196,7.59445299220409,7.72624151108517,8.4367809541053,10.1658190114932,6.08683116727236 -"Tfru04912_t",28.1047372562708,24.3882477457449,24.1370426690625,15.3997951086327,13.3462119318434,10.5035228817228 -"Tfru04913_t",0,0,0,0,0,0 -"Tfru04914_t",0,0,0.0580158107196743,0,0.116622043814465,0.0985806893767084 -"Tfru04915_t",0,0.29992663461965,0.214516578109515,0.0644172304131094,0.269510171676498,0.227817123151882 -"Tfru04916_t",50.1025740986343,59.1058733733208,50.9906552300588,142.911954005113,125.497086730111,82.0151250092932 -"Tfru04917_t",10.4468862306463,10.8312883706037,12.7448411548847,15.5337311504732,11.4910479363147,20.7006678171738 -"Tfru04918_t",0.188364073478582,0.151196199589651,0.185383000557166,0,0,0 -"Tfru04919_t",62.1180706294656,70.3766875209351,54.0503295161059,45.2900264362998,42.6575440994503,36.2951572787339 -"Tfru04920_t",2522.18862999865,2707.51173495569,2800.87045616937,9513.72425968323,8305.2209334527,3901.82946819626 -"Tfru04921_t",0,0,0.0387289700039796,0.186078894705106,0.0389260408556312,0 -"Tfru04922_t",0,0,0,0.428073122301895,0.358196277430143,0 -"Tfru04923_t",30.4248514558092,33.9912976045289,29.3141811500459,33.1893606707543,33.2414201051951,32.6272457938391 -"Tfru04924_t",5.85402380925734,5.52328219576769,5.48341612467103,8.81736434922326,9.51146863332535,7.88976929311694 -"Tfru04925_t",6.24042009627167,5.25541198378837,5.88491698322526,12.6136655920754,12.006815988266,12.9486791889471 -"Tfru04926_t",13.610124363501,13.4511160403273,11.7967420759562,8.0249591924933,7.90451289159563,7.52500996291273 -"Tfru04927_t",1.13221532036991,0.545284407145428,0.195001929831358,0,0.391988379074496,0.994044094227133 -"Tfru04928_t",27.5659048755708,28.448509926398,25.4340407674386,25.1191970414913,17.6103841692072,16.8068522947141 -"Tfru04929_t",26.8001056270167,26.5706673082219,27.9266055810196,28.5443398150804,23.0375253302759,20.5928095558148 -"Tfru04930_t",25.1049372989801,23.7537054400396,25.0009402425022,34.0922008337427,44.6722783124231,31.2969002454845 -"Tfru04931_t",0.113989656406306,0,0,0,0.197323865178613,0.0833989956938639 -"Tfru04932_t",8.43523457406664,6.49630781032009,9.03094419132146,8.13571265140114,8.48492620268038,7.58930860814162 -"Tfru04933_t",12.2914510981044,14.7539078090852,14.517697365277,5.71549442622409,6.53936586486896,9.19913311495452 -"Tfru04934_t",1.41363614759647,3.56619497685976,3.13034347936012,0.626674354523687,1.04875736997576,0.738762738297809 -"Tfru04935_t",29.1589414522257,30.2796078352965,30.8171678453511,22.990228099937,27.8854063162486,26.7790733952301 -"Tfru04936_t",0,0,0,0,0,0 -"Tfru04937_t",3.65944391661563,3.94446140111795,3.82662467780453,6.81347499828118,7.10396612195152,5.62250391691196 -"Tfru04938_t",10.5219283284475,10.8304303244371,9.13204764421931,15.4505802875624,13.0356351552979,11.9548937579792 -"Tfru04939_t",0,0,0,0,0,0 -"Tfru04940_t",358.597547594692,391.682925220695,352.578345051348,288.527300251983,280.26023871506,199.897831402798 -"Tfru04941_t",0,0,0,0,0,0 -"Tfru04942_t",28.8220215692812,23.2386232673916,30.3852007063222,25.9359626192203,19.46493678675,21.4654901239811 -"Tfru04943_t",0,0,0,0,0,0 -"Tfru04944_t",0,0,0,0,0,0 -"Tfru04945_t",0,0,0,0.7459128225518,0,0.263798540027372 -"Tfru04946_t",23.9153627304516,31.5017833654585,33.2684679264822,40.595080327894,40.8683650546399,30.5082048771904 -"Tfru04947_t",25.995014123952,17.4111099019263,24.9059022182969,22.9712107658191,23.3935933565084,24.3089273493666 -"Tfru04948_t",33.9616416735639,32.7944097347038,37.3822848463944,35.9217105182696,34.6993117263711,20.1769801253763 -"Tfru04949_t",0.656331068465971,1.05364851579252,0,0,0.568076908684103,0 -"Tfru04950_t",0,0,0,0,0,0 -"Tfru04951_t",3.43242396523342,3.23680824081526,3.47259436643683,3.30215606543682,2.90855377273276,4.162062622529 -"Tfru04952_t",3.69276381412956,2.96411011063669,1.192511801661,1.90986469950076,1.19857985140086,3.71492119829756 -"Tfru04953_t",0,0,0,0,0,0 -"Tfru04954_t",0.125108528326802,0.100422196600126,0.215474954482305,0,0,0 -"Tfru04955_t",0,0,0,0,0,0.123672152568164 -"Tfru04956_t",33.604150708527,29.3817414716407,30.4885517290857,27.9317712301555,31.1630761363743,26.3421684969783 -"Tfru04957_t",55.6695267762604,67.0853113594098,59.2711889853675,64.0149830603749,78.8463372126351,73.1021623752616 -"Tfru04958_t",0,0,0,0.139708752133898,0.0584516433427002,0 -"Tfru04959_t",0,0,0,0,0,0 -"Tfru04960_t",0,0,0,0,0,0 -"Tfru04961_t",3.730478542249,4.79101278983905,2.82700843922477,8.02618095740462,8.52418068385268,7.96971468441487 -"Tfru04962_t",0,0,0,0,0,0 -"Tfru04963_t",5.7938190649357,12.7891129702441,7.48403955345074,5.99302368869399,3.76106089824811,11.1272952697029 -"Tfru04964_t",8.47163461893367,9.63335784423935,12.158943840724,11.6838781430588,5.4993663682644,14.4623669949568 -"Tfru04965_t",7.69480238935466,8.37630739859658,8.7141640312091,8.17743197872816,8.21109910746388,7.7891732025899 -"Tfru04966_t",19.5217245839231,21.7474087301863,18.0975181573961,21.5249128793519,24.4311383730465,32.7487044691123 -"Tfru04967_t",12.4767853970526,14.6884824359671,11.4607045108561,21.509609236223,8.63926639369818,13.3884254045228 -"Tfru04968_t",11.4207655057958,9.94411133891017,7.83467430983731,14.6166258050502,11.5604959860922,11.0467158213306 -"Tfru04969_t",9.92004448961741,7.71379577685064,5.47264641082065,10.1007881201456,10.1960372106868,8.7321210454448 -"Tfru04970_t",15.8720428209551,15.1771658135208,16.4813204719955,11.6474662586434,9.91250027761165,8.21033736015658 -"Tfru04971_t",1.07771405754453,1.48296040355006,1.5025988655423,2.44187343680824,2.62071888502188,2.10265323779911 -"Tfru04972_t",0.976864846179621,1.96027630863327,1.68245851087056,6.06271003446172,10.7802501750996,14.2941999596227 -"Tfru04973_t",5.89860092225056,5.30859507580517,4.46388460224592,6.47119049777652,7.58080504595241,5.88495253656808 -"Tfru04974_t",0.289690954384302,0,0.2494679860946,0.299651185611326,0,0.63584544647977 -"Tfru04975_t",2.10464409448303,1.40779759951951,1.66138387399118,1.451337683963,1.97344462659321,2.69471034729422 -"Tfru04976_t",7.30719413350191,5.20702541444703,5.53539191797256,4.13904704224343,3.44363308069056,3.97754388890637 -"Tfru04977_t",16.9017915199778,16.4787908687661,18.4892580271548,15.3846063461658,16.4452534110501,15.1871862281848 -"Tfru04978_t",0,0,0,0,0,0 -"Tfru04979_t",73.4972405576586,75.2640022173785,83.1934952500367,64.5618242189183,55.9085026213006,42.6166987522235 -"Tfru04980_t",41.4096949843994,70.1543770841912,39.289167450144,69.3674522154551,50.3525530448556,40.9543637447293 -"Tfru04981_t",55.5261717716863,84.5089419096975,51.2319447838051,79.4397156017667,53.365096044775,59.6184700461861 -"Tfru04982_t",5.7866068647553,10.1849775212375,6.784287057527,8.50959632499551,8.14636430122247,16.2716631407589 -"Tfru04983_t",25.1417915884235,26.5796297146056,27.9877587318025,35.5206952869072,24.4148674352394,21.0865533709993 -"Tfru04984_t",1.90932674480562,1.68583762542461,1.15095457220918,2.56746584035159,2.64413979339342,2.23509308459555 -"Tfru04985_t",17.1512627394031,19.537580304432,20.4301471741775,21.352894387878,16.3561703601109,16.6812265054472 -"Tfru04986_t",4.03029519076372,4.03877667116028,4.03118262393031,4.86799244324479,3.81336013111566,4.99998847812906 -"Tfru04987_t",1.49040856690837,1.61137267600325,1.17869558962148,0.97533097706221,0.68448948308338,1.89157497655398 -"Tfru04988_t",1.83772699187541,1.05364851589038,0.678241087194693,1.08623554784106,1.13615381747374,1.34454818370201 -"Tfru04989_t",0,0,0,0,0,0 -"Tfru04990_t",11.8330859888547,12.7734270161692,9.48732270916699,16.2261197864223,23.4269644134034,33.1373959884249 -"Tfru04991_t",0,0,0,0,0,0 -"Tfru04992_t",0,0,0,0,0,0 -"Tfru04993_t",0,0,0,0,0,0 -"Tfru04994_t",0,0,0,0,0,0 -"Tfru04995_t",0.355223580428953,0.570262198875134,0.152950773715505,0.183718485892779,0,0.129947272360207 -"Tfru04996_t",1.92390175812475,3.55184110394804,2.37470670732798,3.8474297267042,2.83084432078952,1.03223764593917 -"Tfru04997_t",0,0,0,0,0,0.298374076827076 -"Tfru04998_t",0,0,0,0,0,0 -"Tfru04999_t",0,0.183243220154849,0,23.8499544199884,23.1182602859873,6.34693552554987 -"Tfru05000_t",0.168132842104298,0.0899713209032483,0.193050609652926,0.115942420049746,0.242541175177849,0.369036383213742 -"Tfru05001_t",0,0,0,0.0745273103149954,0,0 -"Tfru05002_t",28.1319151574113,41.1406246204539,31.6927333710548,49.0300816089725,53.7015088772907,48.7068306651686 -"Tfru05003_t",2.02434642822765,2.11237485595373,2.17908783034439,17.3797687654569,18.7479068483377,4.22109447000425 -"Tfru05004_t",79.8949367411928,78.0424502245554,72.0390219289474,22.5945180370519,38.2578257671043,54.5165839157179 -"Tfru05005_t",0,0,0,0,0,0 -"Tfru05006_t",6.35280554464661,5.27511121384495,4.81047133551386,6.23133821447282,5.40376678767169,3.68630085008263 -"Tfru05007_t",17.6189541370052,21.7921431847071,19.7243801398342,14.2484281585252,28.0735051943939,26.4844681044068 -"Tfru05008_t",313.965787640801,215.590329907357,345.886452251521,227.078730584157,267.502025812188,289.379296261586 -"Tfru05009_t",1.00611229666404,2.82655410250834,4.33207880044515,2.08140943298885,4.3541224142706,2.20832550274411 -"Tfru05010_t",0,0,0,0,0,0 -"Tfru05011_t",0,0,0,0.148799390115213,0,0.10524839011366 -"Tfru05012_t",9.79673722734131,9.37174909980457,13.0592107097764,11.244099600655,17.5396014250258,14.6298624826362 -"Tfru05013_t",114.181286076364,129.8564709615,133.268424150536,135.056407434356,184.373493797843,201.711961040125 -"Tfru05014_t",0,0.105612380606084,0.0566528707654142,6.53272435976455,8.54117200293489,9.097021383857 -"Tfru05015_t",0.566680450397622,0.454863440249474,0,0.879246311911817,0.613101554117361,1.03651028375005 -"Tfru05016_t",0.531711245388907,0.426794335550535,0.915768556549795,1.09998536490234,0.460214204546323,1.1670580979692 -"Tfru05017_t",0.647894936540726,0,0.185978704286462,0,0.373850099322977,0.316015731755155 -"Tfru05018_t",19.5577688064736,15.8829713411303,18.6879366530911,15.8357801963161,16.0003584536438,11.760968167234 -"Tfru05019_t",0,0.120632388223586,0.194129828177372,5.75180182756625,6.3088040240402,9.2383834076125 -"Tfru05020_t",1.92390175805841,1.54427874079372,1.10451474755632,1.32669990571432,0.555067513861158,0.938397859912339 -"Tfru05021_t",2.25806754914092,1.56534709263617,1.8119574555069,1.22093671840412,1.06605513966992,1.42680041136369 -"Tfru05022_t",6.3994938545511,4.1531170026668,8.20777976940093,15.4925005202614,14.4956286080279,10.6592567283994 -"Tfru05023_t",0,0,0,0.374563982014158,0,0 -"Tfru05024_t",0,0,0,0,0.568076908684103,0 -"Tfru05025_t",22.8987871337479,18.4383960407576,22.3319965883996,17.7085348126109,17.6939105262978,15.3794775661874 -"Tfru05026_t",0,0.0291289438518292,0,1.01350703383874,0.910886170726243,0.185855472477168 -"Tfru05027_t",3.95579587351588,2.58324680033141,3.57975609735108,2.91281040761848,2.55339916201599,2.64893314495163 -"Tfru05028_t",10.4811410559387,8.67187108663717,12.0807625511838,5.67094182366157,4.32654351989998,3.53925488443634 -"Tfru05029_t",25.6685572472278,26.7070711038195,23.8109871532969,10.7729778963063,7.97738281056709,6.47355539586644 -"Tfru05030_t",12.94345921188,7.25302234194311,14.7215119701174,15.4093880042569,16.0646865354426,7.32577747930665 -"Tfru05031_t",0,0,0,0.0993129643740396,0.332406145455173,0.0702457826587174 -"Tfru05032_t",18.6283878927992,19.497078624476,25.0850906452298,20.3078819813763,29.4016848765377,22.5817285014301 -"Tfru05033_t",0.700429821046889,1.09137109640044,0.709619577905188,2.47186510151177,1.64043003366487,0.964630659364437 -"Tfru05034_t",125.057057502732,140.614698045484,119.831695978273,137.113544857682,82.474091877825,28.1749233969235 -"Tfru05035_t",0,0.361573753442277,0.19395634307623,0,0.292414923532114,0.0823928415903186 -"Tfru05036_t",32.0007449610566,33.0407951606877,26.1651306345731,12.1254200689234,15.3357987616022,19.3711054625232 -"Tfru05037_t",1.28202549830755,0.847458770410937,1.10401900488903,0.585046076036476,0.195818252203732,0.634513633755246 -"Tfru05038_t",1.58725290471264,1.35318272774364,2.06939437401038,1.38536267549373,1.08488180520721,1.04231652290882 -"Tfru05039_t",0,0,0,0,0,0 -"Tfru05040_t",0,0,0,0,0,0 -"Tfru05041_t",0,0,0,0,0,0 -"Tfru05042_t",1.55164284274441,0.800661669067099,2.09974373520257,3.89783732206818,3.45342796234761,1.62176938855878 -"Tfru05043_t",0.537543544241437,0.67803341424756,0.727424932030871,2.06523760467038,1.06345658966463,1.06749189826433 -"Tfru05044_t",0.250403507515492,0.200994053701891,0.323453275562298,0.777038841972739,0.650198309850841,0.183204351196357 -"Tfru05045_t",0,0,1.01182819534819,0,1.01697684361232,0.429825593191227 -"Tfru05046_t",0,0,0,0,0,0 -"Tfru05047_t",14.1385109096069,14.3792613343823,15.8776572595653,8.76775738518073,8.51098959896924,7.23001841332604 -"Tfru05048_t",0,0,0,0,0,0 -"Tfru05049_t",50.2584072181093,43.703239321858,45.6138678387047,43.3220042540715,44.7797868235983,51.5513404995426 -"Tfru05050_t",0,0,0,0,0,0 -"Tfru05051_t",0,0,0,0,0,0 -"Tfru05052_t",116.639407035358,148.112877090877,72.3457159674339,24.0523585593377,50.9646140981076,99.3319270408426 -"Tfru05053_t",120.357723456237,159.913740468849,81.7949523386906,17.7344579239356,55.2031634416626,90.0651284802841 -"Tfru05054_t",36.9276381412956,43.7206241318911,41.737913058135,20.5310455196332,27.1678099650863,32.7588505668057 -"Tfru05055_t",0,0,0,0,0,0 -"Tfru05056_t",0.268403759653187,0.107721254020742,0.231136472739405,0,0,0.19637399305552 -"Tfru05057_t",0,0,0,0,0,0 -"Tfru05058_t",3.59577488126818,3.67342050676181,2.8150084034021,3.38127796993325,3.39519895649739,2.63080022603173 -"Tfru05059_t",0.22107993887223,0.354913184299919,0.951917315360973,0.457362335933077,0.57405666567094,0.161750157437836 -"Tfru05060_t",108.250174400676,109.50824193016,128.887567355653,177.200047561146,148.012572172989,106.267131746106 -"Tfru05061_t",0,0,0,0,0,0 -"Tfru05062_t",72.8611959817195,64.1676226767793,81.0828501777973,94.5286742572019,83.817875390331,56.2709736951307 -"Tfru05063_t",16.6515528427169,16.2353903456346,19.2003747864298,80.3789977618557,517.302410923047,394.876873711007 -"Tfru05064_t",0,0,0,0,0,0 -"Tfru05065_t",3.91352686823513,4.39783728371639,3.4824801164448,4.85769934438237,4.06474906127249,3.2450497423864 -"Tfru05066_t",18.7461171308188,21.615344288207,18.0650754747488,13.0809947910021,7.03959295643703,7.65591949431269 -"Tfru05067_t",11.1977420274036,9.99664443684817,13.0767939134894,6.32813427090759,6.90261461019153,6.19446311644249 -"Tfru05068_t",0,0,0,0,0,0 -"Tfru05069_t",5.76071155004211,4.23867745821046,6.40776341425843,4.96564821870198,5.60935370455604,7.20019272251853 -"Tfru05070_t",0,0,0.449352273089652,0,0,0 -"Tfru05071_t",33.0201213513443,25.9637024664326,31.1434766597777,30.6701801743358,40.4397850754288,35.4985372259294 -"Tfru05072_t",0.605844063255631,2.10729703178077,1.56517173968006,19.0091220872185,21.324733189507,27.4819738646785 -"Tfru05073_t",0.2193482422231,0,0.188892208792256,0,0.379706758842397,0 -"Tfru05074_t",16.954228688675,12.1258178491085,15.7232603913699,20.9096829907826,15.0507310361333,13.438027310036 -"Tfru05075_t",0,0,0,0,0,0 -"Tfru05076_t",0.754132646063262,1.21065538630134,0.779307532862843,0.936073721658362,0.522182005876618,1.10350197174825 -"Tfru05077_t",0,0,0,0,0,0 -"Tfru05078_t",0.164082767131733,0.395118193458894,0.282600452997789,0.339448608700331,1.42019227184217,0.960391559787152 -"Tfru05079_t",14.6105003080778,17.5913491348655,20.670204562124,22.1295192355197,20.3237453063625,9.92603450612311 -"Tfru05080_t",210.853902277877,320.774360264762,208.576216599934,84.3866564893079,56.7569297307247,59.5266085309335 -"Tfru05081_t",4.33212778390623,3.96149833650693,4.43896690661801,4.65124359911054,4.17677434726637,3.69111325328117 -"Tfru05082_t",1.97339811208098,3.50744740860155,4.24849003164461,1.31223086316369,2.19605570088883,1.23755154012841 -"Tfru05083_t",12.7718478199836,11.1629788710549,11.2429153192634,17.3210533304385,17.1958415617646,12.0438292903037 -"Tfru05084_t",0,0,0,0,0,0 -"Tfru05085_t",0,0,0,0.140840913820559,0.353551917268974,1.1954306611289 -"Tfru05086_t",0.244928212161654,1.17959483994725,0,1.77344579239356,2.33193086735134,4.65915905389452 -"Tfru05087_t",10.036637932872,8.17556653745742,10.3716867139153,17.6873752922792,19.5619545776717,20.28890912853 -"Tfru05088_t",4.94178686890868,4.36334444227548,4.68119338612808,5.62286636529489,5.13274195188135,7.5927426844349 -"Tfru05089_t",8.30042644747834,9.38819755475983,8.66415760089029,12.6185446874949,13.6066325445956,15.9183463322805 -"Tfru05090_t",0.119843618789511,0.384784622065533,0,0,0.311186209636173,0 -"Tfru05091_t",0,0,0,0.179666803226639,0.100225836413948,0.211802411531281 -"Tfru05092_t",0,0,0,0,0,0 -"Tfru05093_t",3.47150317237386,2.89796881064727,4.54402844092973,4.45266803081954,5.52865593164079,4.26699588877333 -"Tfru05094_t",0,0,0,0,0,0 -"Tfru05095_t",349.533537616536,344.242989208761,361.108916317106,747.292841135707,466.956786104152,158.861514369246 -"Tfru05096_t",0,0,0,0,0,0 -"Tfru05097_t",0,0,0,0,0,0 -"Tfru05098_t",8.33404017916155,4.33501103679945,5.68430625457531,3.72423616402073,4.00614832291052,8.68169399752338 -"Tfru05099_t",8.87212390203137,10.0204928015893,11.020889441768,20.7907514203597,17.8046983284108,16.4864225889443 -"Tfru05100_t",0,0,0,0,0,0 -"Tfru05101_t",0,0,0,0,0,0 -"Tfru05102_t",0.773101626731111,1.03425621191694,2.21919374133233,0.266560870635842,0.892194408813731,2.26251753962127 -"Tfru05103_t",0,0,0,0,0,0.278122442653293 -"Tfru05104_t",42.6040403586363,67.5708441310721,50.5388606452746,50.6172491539784,49.463185340771,50.198551915229 -"Tfru05105_t",41.514855447369,46.4425306926314,41.3806235300108,39.8990800452124,42.4399869562174,46.6369130978352 -"Tfru05106_t",4.75226484133787,3.8145510987556,4.78605407646495,5.58218843377571,5.99558064369649,7.24851616360926 -"Tfru05107_t",0.2812847436544,0.82786669105673,0.645943892566374,0.581911900629138,0.649230752842134,1.57778613393603 -"Tfru05108_t",1.1282385310215,1.32359152409371,1.42000888779054,1.16702992743254,1.65258737087089,1.33343621524167 -"Tfru05109_t",0,0,0.0815622502451341,0,0.0819772765708219,0.0692954451255668 -"Tfru05110_t",0,0,0,0,0.299542098118719,1.01281252031106 -"Tfru05111_t",9.16687812837617,8.28947782667352,9.09317700695647,15.483357532762,19.4338796624237,19.4412965472935 -"Tfru05112_t",0,0,0,0,0,0 -"Tfru05113_t",30.9478468136875,28.6158822348929,32.2874224060409,42.1347646696592,46.5874630390441,45.0061860150784 -"Tfru05114_t",5.87992090538414,6.46534084534847,4.16178615344778,4.66570973569314,7.94763015559767,6.42348180352365 -"Tfru05115_t",1.37721929046623,0,1.18599534298011,0.712285604692254,0.596015116987209,0 -"Tfru05116_t",29.7885399707523,25.253981958552,24.4995452479358,16.9643161256452,18.8302784091265,18.8558151658609 -"Tfru05117_t",8.72342512750921,8.06766538577919,7.02227039864483,5.68863763203443,7.55042175765841,8.46358611604749 -"Tfru05118_t",0.160325146510396,0,0.138064343449301,0.331674976440018,0,0.234599464986174 -"Tfru05119_t",0,0,0,0,0,0 -"Tfru05120_t",0,0,0,0,0,0 -"Tfru05121_t",0,0,0,0,0,0 -"Tfru05122_t",0,0,0,0,0,0 -"Tfru05123_t",16.5920494123609,17.0269600167886,15.6447610779576,20.2039811898437,21.9050456008936,15.9040842300752 -"Tfru05124_t",0.135500607695883,0,0,0,0,0 -"Tfru05125_t",0,0.582998602452316,0,4.50772100544992,3.56234972164676,3.54265474503618 -"Tfru05126_t",0.747866855532173,1.3006462392,1.71740572029517,1.4182303888726,1.18672446216841,1.18552786015269 -"Tfru05127_t",0,0,0,0,0,0 -"Tfru05128_t",0,0,0,0,0,0 -"Tfru05129_t",7.96016689525377,7.96226516964395,7.6985965971176,8.74055426251114,7.52577689008841,8.06392913174051 -"Tfru05130_t",0,0.581323316829279,1.24733992557512,0,0,0 -"Tfru05131_t",0,0.0987313397027593,0.105923449439874,0,0,0.359971067797234 -"Tfru05132_t",0,0,0,0,0,0 -"Tfru05133_t",0,0,0,0,0,0 -"Tfru05134_t",0,0,0,0,0,0 -"Tfru05135_t",0,0,0,0,0,0 -"Tfru05136_t",0.815026043305087,1.10711724654751,0.809840104113066,0.324249417265987,0.596904692165306,0.733911162106002 -"Tfru05137_t",0,0,0,0,0,0.710578726316506 -"Tfru05138_t",4.95545079573515,4.47485010250958,4.86749978398403,4.32491941628882,3.81998997801308,3.68223860711019 -"Tfru05139_t",93.1689777384558,87.9078856923923,96.3960414640102,138.710671304387,120.809276413158,89.9994741644219 -"Tfru05140_t",1.20928191455877,1.27191486105844,0.622898569788713,0.555003215131072,0.26235883814056,0.671527032653084 -"Tfru05141_t",1.97472206758714,1.63708360157338,1.73283152017806,0.911928209651753,0.94910766533178,0.683529322277939 -"Tfru05142_t",6.94822665027009,7.49663562755951,4.89557476471357,14.0942270869173,13.9413761662943,18.287670861339 -"Tfru05143_t",5.57080635825953,4.11126497734639,3.18499427544959,7.77848108184652,7.33797671046475,5.16648063685473 -"Tfru05144_t",2.15516237462218,2.67307348438897,2.80565103474813,2.49531546983032,2.72196779052069,3.4052664723755 -"Tfru05145_t",0,0,0,0.0397524445687487,0.0665268475007493,0 -"Tfru05146_t",6.8116521706579,5.46758148786362,6.8435136725951,10.5687783033184,62.6419942607141,65.6181044092411 -"Tfru05147_t",0,0,0,0,0,0 -"Tfru05148_t",0,0,0,0,0,0 -"Tfru05149_t",27.0394844341836,25.9984597655844,23.7831871769017,50.7034562090353,85.4794417717933,83.2581791451966 -"Tfru05150_t",0,0,0,0,0,0 -"Tfru05151_t",0,0,0,0,0,0 -"Tfru05152_t",0,0,0,0,0,0 -"Tfru05153_t",2.13857556482259,2.54627999427731,2.48621255552064,3.83431470430106,3.05416656237318,5.05906729160682 -"Tfru05154_t",1.07533282267453,0.809202060203815,0.694518873287365,0.836530446922245,1.04707935818379,0.491720478611022 -"Tfru05155_t",0,0,0,0,0,0 -"Tfru05156_t",93.2592255903224,79.4972971989222,101.549491220343,165.028079561908,162.772275354769,114.753574996953 -"Tfru05157_t",26.7201726610308,28.3057136263701,25.9743025877419,22.7978636510197,22.1761029831329,23.4551425689527 -"Tfru05158_t",23.2843131513678,24.1699218153264,24.1358676024801,19.4760454086814,17.9141036472848,16.0366494842132 -"Tfru05159_t",0,0,0,0,0,0 -"Tfru05160_t",0,0,0,0,0,0 -"Tfru05161_t",0,0,0,0,0.493319668329286,1.73024967339669 -"Tfru05162_t",0,0,0,0,0,0 -"Tfru05163_t",0,0,0,0,0,0 -"Tfru05164_t",0,0,0,0,0,0 -"Tfru05165_t",993.028906589015,1164.28160995073,1585.95374207628,1756.30710125238,1006.06420527955,1184.16279310757 -"Tfru05166_t",3.11674247718692,2.50174892137211,4.39198275687626,4.68931366352969,1.71668435152861,0.932859255375041 -"Tfru05167_t",0.260094045732035,0,0.447961089581634,0,0,0.380588605736085 -"Tfru05168_t",0.8272356574869,0.959119874421006,0.395764310543949,1.90150642948106,1.59111256714046,2.1519495781664 -"Tfru05169_t",2.57578985384155,2.70370185209608,3.66847380495243,1.43465072356366,1.45770678468328,1.37716525554384 -"Tfru05170_t",1.16036432004762,3.16676681018988,1.59880035287147,1.68036438340053,2.00866973255025,1.35834386356636 -"Tfru05171_t",0,0,0,0,0,0 -"Tfru05172_t",0,0,0,0,0,0 -"Tfru05173_t",1.98719488284827,3.08016009865509,2.47840136266902,7.30063696101983,9.72681114861691,12.3331196715244 -"Tfru05174_t",0,0,0,0,0,0 -"Tfru05175_t",0,0,0,0,0,0 -"Tfru05176_t",0,0,0,0,0,0 -"Tfru05177_t",0.211258281906406,0.226097250685615,0.121283681420677,0.218521820185963,0.67045455783865,1.13347134633722 -"Tfru05178_t",10.5851583864645,14.7192921332548,9.05123864366298,31.4593862302858,30.1952787408814,26.0149365902237 -"Tfru05179_t",10.0032537427152,9.66252039597559,8.72382750565929,12.3640130975249,12.6937387155088,13.3970261579189 -"Tfru05180_t",4.59282242030692,4.9922298702779,3.95511886837907,2.07844615076649,1.32508144543634,2.59021322730749 -"Tfru05181_t",23.5054940189542,21.4878785416816,23.9902892327242,17.7849965345997,21.6634510274785,24.2038577554648 -"Tfru05182_t",0.0349751776733753,0.0280738988413758,0,0.0723554070168898,0.0302722082923893,0.0255891173298825 -"Tfru05183_t",0,0,0,0,0,0 -"Tfru05184_t",0,0,0,0,0,0 -"Tfru05185_t",31.3972369762057,33.2948139653968,24.2797843285096,27.9795731092459,32.1531220259896,34.4564489685298 -"Tfru05186_t",0,0,0,0,0,0 -"Tfru05187_t",0,0.327347111732935,0,0,0,0 -"Tfru05188_t",0,0,0,0,0,0 -"Tfru05189_t",20.888449659205,21.8517540034658,21.231894903486,17.7103621930607,24.0568221352047,25.4294982569728 -"Tfru05190_t",0,0,0,0,0,0 -"Tfru05191_t",6.28004226923373,6.13464185274401,6.32642368121425,2.26745925360334,2.56395783915088,2.12396892206806 -"Tfru05192_t",5.81999598115449,5.89027604064022,6.31935470799875,4.97312660457352,2.62821124042117,3.33244300263494 -"Tfru05193_t",6.61499029696437,8.49555968717916,7.40546698879245,9.57940010694477,4.58039964209884,7.01766431088565 -"Tfru05194_t",9.66151324637362,12.7882275317815,9.80772082422181,9.8613310969272,7.58705001645827,5.89839873429063 -"Tfru05195_t",14.4885768006391,14.0681860257965,13.3824481553111,16.5579160004701,12.6414889287759,7.2663839850377 -"Tfru05196_t",0,0,0,0,0,0 -"Tfru05197_t",0,0,0,0,0,0 -"Tfru05198_t",0,0,0,0,0,0 -"Tfru05199_t",0,0,0,0,0,0 -"Tfru05200_t",0,0,0.199850044108933,0.240052054771505,0,0 -"Tfru05201_t",0,0,0,0,0,0 -"Tfru05202_t",0,0,0,0,0,0 -"Tfru05203_t",0,0,0,0,0,0 -"Tfru05204_t",280.815562196193,199.882580608114,283.041805099682,121.866107678104,312.29292500059,481.190607804113 -"Tfru05205_t",10.8634107467544,12.2077896534149,15.591749069689,20.2264549493422,21.312678423406,17.3071185737626 -"Tfru05206_t",8.08468060980457,7.05371391391052,6.52970897255381,6.90827628752472,5.47635647585666,6.3926601373519 -"Tfru05207_t",5.40259657694196,6.93849569306594,3.95458897571182,5.30893258108813,4.90993804078682,5.73146860117349 -"Tfru05208_t",3.64558047706377,3.0562919342317,3.3486927352332,3.68712548543927,1.82310506487589,3.73413574644339 -"Tfru05209_t",8.37785783333709,8.29296553618415,8.46932504624669,8.80291795964215,9.22895461982607,9.37602607521016 -"Tfru05210_t",12.4479107553478,12.41646062619,10.1813251857455,9.53570697918746,10.8642507629975,12.9560572479655 -"Tfru05211_t",0,0,0,0,0,0 -"Tfru05212_t",0.700816490272763,1.82822849889635,2.18772238066276,11.3267523236815,8.5679503732743,10.8316945887986 -"Tfru05213_t",0.317020289703575,0.138593486343961,0,4.59088231540372,6.65531854500127,2.31943621986331 -"Tfru05214_t",23.700406412113,24.1238709424507,25.0995341111505,17.1085358795614,15.9743499522838,12.6176773473116 -"Tfru05215_t",4.65136326696229,4.08814320548375,4.67684956300454,2.17717486854626,1.34946819025646,1.76809482333842 -"Tfru05216_t",0,0,0,0,0,0 -"Tfru05217_t",9.9617047555076,3.33169491190635,7.8636647790689,6.69773697483024,6.03553648491976,7.40981946523526 -"Tfru05218_t",0.652688831742655,0.711008099513156,0.722654210551504,8.77668677944828,10.0879362261819,8.1862454818705 -"Tfru05219_t",23.89830070118,24.4194420161173,25.7175800947356,16.5641899155829,12.3806794728035,11.2566824682029 -"Tfru05220_t",10.4841661060615,9.6805031672017,9.73657678191402,12.1913549251982,12.277133583925,10.026926562215 -"Tfru05221_t",1.26268101359891,1.01352963452382,0.724906973621582,2.69926268401385,1.82148908613024,1.84764708896927 -"Tfru05222_t",2.56520234407788,2.0590383210583,2.76128686889081,26.5339981142864,24.9780381237521,27.682736867414 -"Tfru05223_t",5.53724419502846,7.36143309145249,4.76840970331181,9.30739418953409,8.31229322279445,12.4069533738105 -"Tfru05224_t",2.65016961424124,7.23261568005513,5.47727818049973,94.8485803288343,115.149368605035,111.878042649274 -"Tfru05225_t",0,0,0,0,0,0 -"Tfru05226_t",0,0,0,0,0.229381212360628,0 -"Tfru05227_t",2.359105743972,1.78840808937401,1.91868513486174,2.84692000058187,2.60907709722518,3.83557315609221 -"Tfru05228_t",0,0,0,0,0,0 -"Tfru05229_t",180.767155535804,183.698168839372,186.701840793198,257.220577728763,147.634177705608,62.4824125407453 -"Tfru05230_t",2.43187932759453,3.54913184299919,4.94997003987706,13.9495512459589,12.820598866651,15.5280151140323 -"Tfru05231_t",2.23036398508268,1.04432419274091,1.76062583106587,7.69016317055616,13.5131923069442,7.47915550984685 -"Tfru05232_t",0,0,0,0,0.349585789991919,0 -"Tfru05233_t",0.0553792859403081,0.0444518820151513,0.190759962999167,0.114566702474996,0.239663297028079,0.283622556878473 -"Tfru05234_t",81.4986581897677,79.3709862355696,76.3870580867791,56.2688815655824,75.2310820445237,98.4117991712656 -"Tfru05235_t",0.945116738678784,0.0842918812712307,0.542592869755754,0.108623554784106,0,0 -"Tfru05236_t",5.71270562045842,5.93414844149464,4.77481725385064,8.68988438272846,9.1619443841082,7.92899271760272 -"Tfru05237_t",0.0360095914151082,0.289042027505292,0.186058420833521,1.22917353034736,1.71421407522827,2.6082472879603 -"Tfru05238_t",0,0,0,0,0,0 -"Tfru05239_t",0,0,0,0,0,0 -"Tfru05240_t",0,0,0,0,0,0 -"Tfru05241_t",93.8939505092648,105.70657543203,82.4672151806838,88.694845369025,96.8747242269497,94.2985417050151 -"Tfru05242_t",0.561942319541455,0,0,0,0,0 -"Tfru05243_t",1.43073560824485,0.905799059954698,1.19737452668576,0.729541744772118,0.889519323634989,0.747962610791596 -"Tfru05244_t",3.34766207248652,4.73442065584142,4.25563035102552,6.10105734650765,9.79636232751547,10.0303513189155 -"Tfru05245_t",49.4890543983432,49.3353543149281,53.806783445074,58.6353078137099,55.0728813297959,54.3818990275836 -"Tfru05246_t",7.71380754996596,7.99295301536879,8.09209176931231,10.3001968476414,10.4397172143163,9.74821483056074 -"Tfru05247_t",4.6173642194994,3.86069685211744,3.42399571754267,4.57711467487224,4.60706036520647,5.63038715966819 -"Tfru05248_t",0,0,0,0,0,0 -"Tfru05249_t",0,0,0,0,0,0 -"Tfru05250_t",9.36701065047498,8.223598172803,7.81434562714443,8.47793598314972,6.84067524945859,5.354099288012 -"Tfru05251_t",8.64555852429656,8.06117783467071,7.36993780125626,8.49115521805068,7.78537002576597,7.21990827482399 -"Tfru05252_t",23.1152811826764,26.7339931132424,26.9691130529487,30.5945633593103,20.4373231072199,13.2749981281822 -"Tfru05253_t",32.5117557165044,41.5457198092258,32.0292179050868,34.7057301972747,21.1613045384582,24.3576707671094 -"Tfru05254_t",10.0793161568499,8.55499690513983,9.26124837011352,11.0743647127768,8.1396094386178,8.15064800223493 -"Tfru05255_t",119.030647726288,94.3915463164852,113.956862395172,32.9582175335829,57.6410428764807,33.4627546662968 -"Tfru05256_t",11.9025196475289,10.0594209133283,10.5901899530786,6.05816527431595,8.06720311777453,7.4642726325886 -"Tfru05257_t",69.2567402121657,12.233945032109,71.4007066151742,2.77470909172752,1.26642399393299,0.713672683034864 -"Tfru05258_t",8.36860123823685,7.18596424119218,6.75971554599189,9.32736624864291,8.81550081696995,9.96730699887206 -"Tfru05259_t",9.62571826375379,7.39991125522585,7.39412911985607,5.74962764430124,4.85019725415361,6.28206636202892 -"Tfru05260_t",7.93959134269738,8.27939641565562,10.5772007997621,9.05488760397392,8.10542044905334,7.54659862165542 -"Tfru05261_t",59.5948610222455,56.2648307485465,66.0154658202835,51.0530707485297,75.8950750072455,59.1601200828886 -"Tfru05262_t",21.8030560405027,20.1933363480988,21.2704282880659,17.1905153850708,22.6983325276785,21.6410555468553 -"Tfru05263_t",1.25388622046936,0.731978344824799,1.66876142665723,1.7686331850872,1.67725285401821,1.58458091818341 -"Tfru05264_t",0,0,0,0,0,0 -"Tfru05265_t",0,0,0.147343617041617,0,0,0.25036684246997 -"Tfru05266_t",0.0631182394977066,0,0,0.130576775097347,0.43704789973445,0.277077655115151 -"Tfru05267_t",0.233103154193805,0.374214789217451,0.321179649134002,0.241117768666162,0.363165704142548,0.238765493221223 -"Tfru05268_t",0.335147779673328,0.269016642354992,0.577226457186973,0.346670919523742,0.386775767650633,0.245206355690337 -"Tfru05269_t",6.77893530144245,4.46965595213443,4.58676009015431,0.751286834241654,2.0954998362628,1.77132737251809 -"Tfru05270_t",7.48889078012546,6.91286599835374,6.47487063926757,9.45057848718909,8.29681946224357,9.42413111975126 -"Tfru05271_t",5.11089744617171,6.41002899400994,2.75078767937011,3.30413854856596,2.76478495506917,3.97302668079248 -"Tfru05272_t",0,0,0,0,0,0 -"Tfru05273_t",0,0,0,0,0,0 -"Tfru05274_t",0,0,0,0,0,0 -"Tfru05275_t",0,0,0,0,0,0 -"Tfru05276_t",0,0,0,0,0,0 -"Tfru05277_t",0,0,0,0,0,0.0963402191636014 -"Tfru05278_t",16.0140262090151,14.0147947173853,15.9073411615141,17.68638258619,16.707914314106,11.8486862315909 -"Tfru05279_t",15.9607343203486,14.251410854105,13.2118833283679,15.357674903202,12.1011257849338,11.4964103062592 -"Tfru05280_t",18.3262376974432,15.7296296799878,11.6409413381724,13.5134271178499,7.93099165890953,11.8814748476475 -"Tfru05281_t",14.8051073818534,11.054672953604,14.2319441247411,8.90357006427097,5.21513227692862,9.95028632435213 -"Tfru05282_t",0,0,0,0,0,0 -"Tfru05283_t",0,0,0,0,0,0 -"Tfru05284_t",0.367392318242482,1.17959483994725,1.05460227357775,2.53349398913366,2.43792772495822,1.07519055089874 -"Tfru05285_t",1.47905592907478,0.949767676295558,2.03790749204039,1.52990922231135,5.12069326185346,1.51498386896001 -"Tfru05286_t",0,0,0,0,0,0 -"Tfru05287_t",0,0,0,0,0,0 -"Tfru05288_t",0,0,0,0,0,0.230638123175901 -"Tfru05289_t",0,0,0,0,0,0 -"Tfru05290_t",0,0,0.0907725419917615,0,0,0 -"Tfru05291_t",0,0,0,0,0,0.051008348403633 -"Tfru05292_t",2.30750780552297,2.40098949704421,1.83992156580452,5.65770702436034,4.29033872885301,3.68915415031158 -"Tfru05293_t",1.20963557745449,0.761530265578595,1.0416802694351,1.47203010435829,1.31385828243151,1.75267392503223 -"Tfru05294_t",0.0493597983381007,0.0594302335637349,0.1065756591277,0.231850139165784,0.257260766268737,0.363671533964538 -"Tfru05295_t",0,0,0,0,0,0 -"Tfru05296_t",0,0,0,0.200227750754112,0,0 -"Tfru05297_t",0,0,0,0,0,0 -"Tfru05298_t",0,0,0,0,0,0 -"Tfru05299_t",6.99046225735669,6.07202140271808,7.2020088812056,5.42098927918425,5.6821965941037,9.98893046655003 -"Tfru05300_t",0.184638190706478,0,0.1192511801661,0,0,0.168860054468071 -"Tfru05301_t",0.428624371282895,0.172024247492308,0.553666193628321,0,0,0 -"Tfru05302_t",0.558579632788879,0.0896722141183306,0.962044095311621,0,0,0.490412711380673 -"Tfru05303_t",12.0173004564808,10.0373484820919,10.4034053178419,7.66535652185723,6.39754114896625,5.99659120257344 -"Tfru05304_t",6.29517054685155,9.18193172695563,11.1470230440402,9.01122741903922,6.84513778523678,3.2339307012429 -"Tfru05305_t",0.113272418118806,0.181843159596363,0.0975447855740682,0,0.0653607589378149,0.0276247459893832 -"Tfru05306_t",0.063260825882114,0.0507782417296571,0,0,0,0.0462839305921519 -"Tfru05307_t",0,0,0,0,0,0 -"Tfru05308_t",48.7802187705179,53.0223124125484,49.3001048326465,54.3117773920529,72.7138443183191,64.1913326412574 -"Tfru05309_t",7.03015705200397,6.20726824424126,5.75133306854077,2.90874791053673,1.82545215861889,4.11481572059432 -"Tfru05310_t",8.45124308158983,7.99261663049917,8.79101329484755,5.02005273105827,3.69363153409788,4.22419235858572 -"Tfru05311_t",0.0798577725964329,0.128200579880199,0.0687696919842528,0.0826034637141489,0,0 -"Tfru05312_t",0,0,0,0,0,0 -"Tfru05313_t",8.99499969963287,10.4636005476686,9.69167627876223,44.1920581774413,45.3293379439492,40.1986258262662 -"Tfru05314_t",0.0577788010807754,0.046377926421585,0.0497563383544937,0.239061468575749,0.350066650775951,0 -"Tfru05315_t",0,0,0,1.16642743392322,0.488012377975268,0.82503436008556 -"Tfru05316_t",0,0,0.210307313858819,0,0,1.25074249646699 -"Tfru05317_t",18.6542726374395,19.964565264871,18.0009812958339,13.2743115767663,12.1380590515619,12.0994212256649 -"Tfru05318_t",0,0,0,0,0,0 -"Tfru05319_t",0,0,0,0,0,0 -"Tfru05320_t",1.88551967816216,0.672653416628275,2.34537233809636,0,0,0 -"Tfru05321_t",0.743454654646386,0,0.640227568863781,0,0,0.543938577377859 -"Tfru05322_t",0,0,0,0,0,0 -"Tfru05323_t",105.328535818626,115.728953518297,100.245315948197,77.0338665647548,109.374246629058,120.672638323573 -"Tfru05324_t",29.7168636763246,35.0061120690465,27.3198449399009,27.4155052227571,45.2549834141737,54.3548569210319 -"Tfru05325_t",3.96275362129469,3.18082570834833,4.09504052645852,13.1168066154392,25.3812475450736,20.0051373963211 -"Tfru05326_t",173.524881676197,174.629525061226,170.137166516517,262.794089781133,222.047396612316,154.086546530264 -"Tfru05327_t",0,0,0,0,0,0 -"Tfru05328_t",0,0,0,0.182944934373231,0.0765408887561253,0.258800251900538 -"Tfru05329_t",2.15096063423604,1.92385274006028,1.64061243232659,1.71636341136553,2.39365251962279,3.73196778755622 -"Tfru05330_t",7.92426645867665,7.89143561646904,8.04155903512768,8.36677713562114,6.7448849719928,6.92835116633925 -"Tfru05331_t",38.6642351782106,39.522803326557,38.2119457310616,33.0819536732443,32.229920184336,36.0246952959233 -"Tfru05332_t",22.5924320002897,27.806246092661,22.7701655833756,26.398553154703,34.4738943182469,36.7321074659628 -"Tfru05333_t",20.2227283393497,20.8948888785023,20.054862364852,21.1961968618409,17.7362193887833,14.2054331608978 -"Tfru05334_t",0,0,0,0,0,0 -"Tfru05335_t",52.0622361900464,48.1928019653337,63.9455383258506,48.9245965922291,53.2427653941967,56.7625124949267 -"Tfru05336_t",4.05878354033833,4.55072733243454,3.82810920379827,3.86513262421972,4.62825849572123,6.59900949056202 -"Tfru05337_t",0,0,0,0.164893441797504,0,0.233263984160826 -"Tfru05338_t",36.5091824287131,38.3803780891062,41.2438193833034,46.4543352048662,44.8515301402716,48.712496011933 -"Tfru05339_t",0,0,0,0,0,0 -"Tfru05340_t",5.80104931117316,3.87097491362058,5.17614939534053,2.81951323566065,2.66173806156908,2.55678285467461 -"Tfru05341_t",0,0,0,0,0,0 -"Tfru05342_t",18.9428803222105,16.4548166682372,16.9830869915829,11.5417769407668,10.6684404791356,12.8151089985498 -"Tfru05343_t",2.77720253789909,1.39325423588811,3.28844163488336,1.43634452607082,0.600940862134868,2.03190280417778 -"Tfru05344_t",35.4594343013543,36.0554261661575,31.1435368270384,30.4078380422069,30.8044342026596,36.8790358958266 -"Tfru05345_t",0,0,0,0,0,0 -"Tfru05346_t",38.4893356133504,39.9338755323993,43.8445087958709,40.8517535172949,38.3017543703166,32.2217714508324 -"Tfru05347_t",7.01858843913358,6.82870936880857,10.8060689672876,16.0597863275741,19.144910909127,13.6934816828386 -"Tfru05348_t",14.8494950720225,18.6274177182938,18.3526950451928,15.2705822279741,12.4492989058988,11.2772007029062 -"Tfru05349_t",0,0,0,0,0,0 -"Tfru05350_t",0,0,0,0,0,0 -"Tfru05351_t",0,0,0,0,0.127122105451607,0 -"Tfru05352_t",0,0,0,0,0,0 -"Tfru05353_t",25.3795483946053,31.4290245515348,30.153787915344,20.0049842413377,34.0662598583401,25.1718782972322 -"Tfru05354_t",194.544648270994,199.51975195747,179.931999764365,173.013806331385,123.21998102911,85.0689101205279 -"Tfru05355_t",38.9179473685102,36.9457510783479,45.7598737967733,33.6757212159188,33.8467560412666,39.2883567264374 -"Tfru05356_t",38.4181531444847,38.8025196466448,41.4558851273883,20.0429097095653,18.8603347194363,15.5502186472161 -"Tfru05357_t",0.138860126894954,0.111460338871049,0,1.86724788389207,1.92301075883158,2.53987850522222 -"Tfru05358_t",0,0,0,0,0,0 -"Tfru05359_t",0.475306233501824,0.763038246302513,0.511638726785247,11.7995601236483,11.7247217146936,8.34603358321394 -"Tfru05360_t",0,0,0,0,0,0 -"Tfru05361_t",0,0,0,0,0,0.0765442837190258 -"Tfru05362_t",0,0,0,0,0,0 -"Tfru05363_t",3.06336180492571,4.24719313366643,2.79790061752507,8.35381150604836,12.2930587632075,13.3117698629503 -"Tfru05364_t",0.157667269511631,0.128299931368879,0.184199089183724,1.00571073556757,0.843010887143649,0.461420530445125 -"Tfru05365_t",0.546535908364435,0.376023262176494,0.470650568561373,0.323044029097712,0.405467533373526,0.685483938584138 -"Tfru05366_t",0.185863665423556,0.298378340783118,0.480170681199783,15.957088578904,13.1914496329694,8.4310480292819 -"Tfru05367_t",0,0,0,0,0,0 -"Tfru05368_t",14.955950245821,13.5054585847646,14.891746819444,11.9652093726025,15.2709186259613,11.3697537648237 -"Tfru05369_t",1.66357181725639,2.6706338620588,1.43258843499869,2.58115377704806,10.9790705530135,17.9526659888925 -"Tfru05370_t",3.58531190877176,4.25138489437827,3.92954422325538,5.14144468813226,5.48627015513844,5.1866733316148 -"Tfru05371_t",15.3685923051951,14.0509518247039,14.9854743903011,15.6474948483092,13.5108168483177,12.9585893153233 -"Tfru05372_t",7.95050884272373,7.8707876518247,8.67235711912457,11.787540329884,12.3865854674739,13.7666222324064 -"Tfru05373_t",5.81789312821658,5.23029955810407,5.41089842415711,7.70294460518867,7.3519537884173,9.79014110807955 -"Tfru05374_t",1.56217642756824,1.88089321844895,1.94317005697653,1.25680146031197,1.87794019417146,2.15889672943889 -"Tfru05375_t",0,0,0,0,0,0 -"Tfru05376_t",0,0,0,0,0,0 -"Tfru05377_t",0,0,0,0,0,0 -"Tfru05378_t",65.2020834635904,51.3299814301962,56.6888072872047,90.1413379988157,98.7605945206593,59.6302819203659 -"Tfru05379_t",14.3323727118518,14.6566316928482,12.7258729292113,9.67403996342301,9.39147483243831,13.3001502949608 -"Tfru05380_t",0.0903823311150591,0.399014822585708,0.116749407155622,0.42070446177814,0.312915951880878,0.297571564517159 -"Tfru05381_t",11.0551747802597,10.3108236227355,11.0233749422941,25.9724301476327,35.0204130334366,33.532350166335 -"Tfru05382_t",23.8214678936051,31.3839866449558,18.9274992247502,34.3652894681814,29.4154304047642,25.9338399872353 -"Tfru05383_t",2.59825907540559,1.99867347344155,1.86458030843902,1.67974569253772,1.4992545220272,0.871283064549169 -"Tfru05384_t",14.4908728492235,12.5149518044622,15.322127617557,9.67650881046183,13.3361635867659,9.52842630496248 -"Tfru05385_t",0,0,0,0,0,0 -"Tfru05386_t",0,0,0,0,0,0 -"Tfru05387_t",0,0,0,0.379470933743601,0.158763852223404,0.134203187393838 -"Tfru05388_t",0,0,0,0,0,0 -"Tfru05389_t",0,0,0,0,0,0 -"Tfru05390_t",0,0,0,0,0,0 -"Tfru05391_t",0.72775637701308,0.657175468492541,0.587539653227671,0.517535074228549,0.748003812695215,1.03162796676649 -"Tfru05392_t",0,0,0.466746554628603,0,0,0 -"Tfru05393_t",0,0,0,0,0,0 -"Tfru05394_t",1.14240052095064,0.916982808808368,1.0594560915733,1.18167883865554,0.836665572700324,0.578645960708577 -"Tfru05395_t",0,0,0,0,0,0 -"Tfru05396_t",0,0,0,0,0,0 -"Tfru05397_t",7.65934190991846,3.77440853239902,5.76093987507552,0.351005139521634,0.839167274302586,0.461076617278079 -"Tfru05398_t",161.182699619638,198.183934802824,162.777860926726,455.966317175142,337.569794698708,105.955757200703 -"Tfru05399_t",6.14029331884333,5.48877366417316,8.5324681622721,8.08361337928229,8.69667241016441,8.27021569092458 -"Tfru05400_t",14.0429073739978,14.9410987722039,15.1813907922572,9.89101913274783,10.367924313939,7.71969837618606 -"Tfru05401_t",16.7644025395938,11.7933035679928,16.545432799727,21.0427693572797,24.9444353827417,26.4602948131492 -"Tfru05402_t",4.89101508600893,5.54247986440969,5.57458427831254,8.9279634069128,8.59119051021236,7.36738730795623 -"Tfru05403_t",0.316678925418124,0,0,0,0,0 -"Tfru05404_t",2.21079938872226,1.77456592149956,2.37979328840239,1.71510875974901,3.34866388308042,1.61750157437833 -"Tfru05405_t",20.9939475917121,21.9596140257039,21.8615708193069,15.920125773216,17.9015557440736,17.4096176041778 -"Tfru05406_t",57.061057872587,43.1530285787905,64.0573360693646,42.3827421612616,37.8445212655081,33.4989605927721 -"Tfru05407_t",41.1954498144327,53.8655588268202,37.5674741951374,93.8088723725868,88.3078976781513,63.3164170500638 -"Tfru05408_t",69.9207440752495,45.6612522760748,36.5946043099845,0.0779361828047396,0.195642630452876,0.165376842582182 -"Tfru05409_t",74.2762600599089,83.8283752469584,68.9074474552346,348.380400214098,231.507628454161,97.9191997862482 -"Tfru05410_t",28.9362009318763,27.5400272192757,26.4792987662788,22.4976567667913,19.9536476649437,22.5666570899267 -"Tfru05411_t",10.1797590094392,10.1919043413293,10.0388517922237,9.17108319219551,10.8952340020934,11.1317828219759 -"Tfru05412_t",0,0,0,0,0,0 -"Tfru05413_t",0,0,0,0,0,0 -"Tfru05414_t",20.7129637673021,22.5717666187232,22.4020792026195,25.201754122915,14.1902905543899,10.3768843166973 -"Tfru05415_t",54.4146321733479,59.6815693351804,50.6151733468079,51.1296040318758,41.9744935681768,34.5693476155771 -"Tfru05416_t",1.09961226140638,0.617846250155618,0.662853418549787,0.454967768729239,0.28552556669497,0.321806595949622 -"Tfru05417_t",13.4563132561243,12.7613987692026,13.5227602811221,9.57402959608746,10.061566830093,10.4168982205751 -"Tfru05418_t",3.3604150708579,3.33618393241924,4.34074295804603,3.75037115465123,5.28132132417265,3.17030308578159 -"Tfru05419_t",0.782011485904431,0.807049927064975,1.15445291437395,1.27112670492039,1.54710307060253,1.30776723034846 -"Tfru05420_t",0,0,0.0470388270269401,0.508510789626503,0.378225458092687,0.399642781705967 -"Tfru05421_t",44.2813315987433,54.8104843734111,45.260620334306,56.0775790215482,73.0720405957492,65.4012459236334 -"Tfru05422_t",0.132195714825252,0.530554720826,0.113840623080148,11.8964585570004,15.9043656337472,15.1365568258507 -"Tfru05423_t",0,0.552733647331449,0,2.84914241876902,1.78804535096163,0 -"Tfru05424_t",31.8777930170396,33.8882517582812,33.8545568108033,23.426443147742,23.5968630086915,19.1335791524635 -"Tfru05425_t",24.3752735522995,26.3642854924981,23.8292002410982,32.7059973346304,33.0396847358785,34.8825430766487 -"Tfru05426_t",3.4745798369284,2.49015897403931,3.31272850072445,9.49854422927483,10.5257854404657,7.0816464792577 -"Tfru05427_t",10.2818670078488,11.8763486447824,10.7978680548409,7.00378741294533,6.29463129919777,9.35736731685153 -"Tfru05428_t",0,0,0,0,0,0 -"Tfru05429_t",0,0,0,0,0,0 -"Tfru05430_t",0,0,0,0,0,0 -"Tfru05431_t",0.0871476937463148,0.104927653034727,0.0750474232027323,0.0450720144332389,0,0.0318802177522706 -"Tfru05432_t",6.2959721722309,4.93792256417278,4.75958657680486,5.02104303578704,4.11823260155239,3.62179700349937 -"Tfru05433_t",0,0,0,0.0476680437889658,0.0398869140528355,0.033716434353471 -"Tfru05434_t",0.26791464118457,0.55298546255386,0.329593239031589,0.277126153435532,0.463778505902718,0.420034577401214 -"Tfru05435_t",12.013483878317,14.5319203311602,12.1540802825289,14.1210621219338,10.7980058812704,13.2457203925844 -"Tfru05436_t",13.9186955479414,15.5674738550521,11.1340423415085,9.0233673620682,12.0738820459342,16.0046580788312 -"Tfru05437_t",5.55134648269477,7.12953357007767,7.96758986425484,11.4844286996411,11.8520362985806,10.8308475464983 -"Tfru05438_t",24.6180210512914,27.2037924312934,22.1505280163102,18.2704533671032,21.0210850854536,21.7268082697708 -"Tfru05439_t",0,0,0,0,0,0 -"Tfru05440_t",1.53069754286959,1.51439651097465,2.11519254311565,1.43604021578987,1.47892564715225,2.00542779941995 -"Tfru05441_t",0,0,0.0557362988963281,0,0,0 -"Tfru05442_t",12.8064598736963,11.9242173505644,7.49925104540474,7.94806498420287,5.76390229352529,5.99659120257344 -"Tfru05443_t",1.64774450927605,1.71742240529205,1.71545755075004,0.966673321263705,1.06431270957727,1.52942918186244 -"Tfru05444_t",0,0,0,3.2485547412941,4.07741161989711,1.1488795634598 -"Tfru05445_t",0.563828032023137,0.452573859174393,0.849698006328922,13.5597189193582,13.5423434888145,14.8506184815409 -"Tfru05446_t",0.460835857221324,0.924760079772142,0.793699571776565,1.57304544503587,2.19378027290595,2.83218048569157 -"Tfru05447_t",30.6366541619506,28.8370589729215,30.0503873356144,27.0715122634468,75.0920567244783,111.873444949728 -"Tfru05448_t",2.48656506300267,2.85131099437567,2.9060647005946,3.67436971785559,3.99695550164122,5.71767998384909 -"Tfru05449_t",5.13172514252493,6.34069333378647,5.61088943330133,4.29424622893926,3.44355199585725,8.14190565991139 -"Tfru05450_t",0.446072797016535,1.84994571285533,0.704250332426348,8.22847459249509,18.5323780209521,29.3726834568531 -"Tfru05451_t",0,0,0,0.225321116233236,0.314234417970264,0.371871580626313 -"Tfru05452_t",0,0,0,0,0,0 -"Tfru05453_t",0,0,0,0,0,0 -"Tfru05454_t",0,0,0,0,0,0 -"Tfru05455_t",0,0,0,0,0,0 -"Tfru05456_t",0,0,0,0,0,0 -"Tfru05457_t",0.83800874584985,1.00898012494241,0.54123977032993,0.216705346202705,0.543993847767973,0.613117803754391 -"Tfru05458_t",0,0,0,0,0,0 -"Tfru05459_t",1.56877071884866,1.3894862592038,1.35095026597269,1.28697579396494,1.40464605895014,1.54355269364374 -"Tfru05460_t",75.7880845767951,87.3766054369013,71.8839348016843,40.8609457145317,29.2402480343879,24.4552472075162 -"Tfru05461_t",3.79662279640195,5.38171241962473,5.07811275540642,13.1183831546959,15.4516919176428,8.27414266893546 -"Tfru05462_t",11.745222985332,15.0156965924958,13.0935815375732,6.93600329480614,7.13460699208723,8.90571532817369 -"Tfru05463_t",0.113989656406306,0,0,0,0,0 -"Tfru05464_t",1.97091793012193,1.99729736267315,1.44267116885205,6.03959706365585,5.20298475474189,5.47958304610523 -"Tfru05465_t",0.209502186462462,0.504490062471206,0.180413256776643,4.11740157785139,2.90130052142919,1.53279450938598 -"Tfru05466_t",1.86098935886118,1.17368442276397,1.37365283482469,1.64997804735351,3.22149943182426,2.52862587893326 -"Tfru05467_t",13.1287471391817,13.4867010033969,14.2348250850902,5.76980177638651,8.24286494296734,17.0210934903815 -"Tfru05468_t",16.6582090038021,20.2999465305749,18.6814309370616,8.41967166420288,7.50404251865483,8.13079957410583 -"Tfru05469_t",7.62863807232213,8.41962037669501,5.83035849453781,12.1027531335211,15.6817598416352,15.9069621344088 -"Tfru05470_t",0.692393215149292,0.741027527659171,0.795007867773999,2.74543050553234,3.09633128278556,2.95505095319124 -"Tfru05471_t",0,0,0,0,0,0 -"Tfru05472_t",0,0,0,0,0,0 -"Tfru05473_t",37.0053805373825,56.2400892044487,38.7796469396285,85.2101213561471,52.3421923878426,29.5131825725036 -"Tfru05474_t",13.7739108376502,12.5166198342442,14.2108123260874,8.94623858787819,8.84298407724289,10.2628905188711 -"Tfru05475_t",25.1569534837576,22.5087111526473,22.657724231559,24.2314083749159,21.8740822880658,22.6272472987215 -"Tfru05476_t",10.1242407052894,8.35480730605278,9.25062409486594,10.0298836608957,10.1443152023192,11.7509144088008 -"Tfru05477_t",0.136824717868807,0.109826555402255,0,0,0,0.300317881887839 -"Tfru05478_t",0.128260117208317,0.154427874084698,0.0552257373797205,0,0.0555067513880298,0.516118822969584 -"Tfru05479_t",71.1968674702978,77.6413291709318,75.8302573328378,82.3147305061205,89.8916561641605,85.8537188859267 -"Tfru05480_t",156.125477475741,174.252949365449,151.733933820716,160.72440874098,155.723452727599,84.8544180709461 -"Tfru05481_t",47.2426539255613,42.5895821159903,46.6413718225007,36.0852708698875,44.926173835117,36.5696008120325 -"Tfru05482_t",16.2619009862151,17.3068017908436,16.8650067504185,41.2024905022326,51.3335694612432,61.6418105375966 -"Tfru05483_t",37.3025202362784,31.0936275505261,35.8296619876665,26.7127375711957,27.5953868380717,29.7411579805053 -"Tfru05484_t",8.49202364476725,9.12908461421272,7.31292435771895,11.9211410304578,14.5690193489773,18.30638063421 -"Tfru05485_t",0,0,0,0.549992682451168,0.460214204546323,0 -"Tfru05486_t",70.622268919424,65.0155705741445,66.0621013307186,98.3237914221069,120.803478409319,100.983198132377 -"Tfru05487_t",64.9314831759242,65.3182758759248,55.4620231569663,40.5600626144917,52.3685654187141,47.4291239563642 -"Tfru05488_t",2.34665856903485,3.87370793975497,2.02083005495626,1.94187360507899,3.24978075165672,4.80732311491223 -"Tfru05489_t",0.653777251139669,2.09909743243532,1.97050588238147,31.4458851203793,30.2738573621017,8.37072799191915 -"Tfru05490_t",13.7471525626005,13.1801850715015,17.7575848283701,19.7497372334738,23.1362231921924,22.4906241637428 -"Tfru05491_t",0,0.324199543350887,0.521723913226687,0.835565806031583,1.22355026497171,0.295505095319124 -"Tfru05492_t",224.965025664127,260.423117701577,265.409098016617,239.608109130463,225.02185092494,166.810233240838 -"Tfru05493_t",26.4887599582796,26.5107974868884,34.2640000426237,30.3802026572961,21.2002105466339,16.7042247021554 -"Tfru05494_t",45.7962703699948,42.358952609947,50.6681187641956,109.799983175269,122.721018840484,154.43928389588 -"Tfru05495_t",0,0,0,0,0.163035525377397,0 -"Tfru05496_t",0.69814717538599,0.373592825578862,0.801614581356608,2.6478872080336,3.42419765487929,2.7242131779004 -"Tfru05497_t",1.69627753311105,2.14984606855424,1.69139824791025,1.20051537699756,1.93182370665035,1.95956620062841 -"Tfru05498_t",0.114925276021132,0,0.395872590793072,0.237753334684773,0.198943486507029,0.336334116697005 -"Tfru05499_t",11.526383465396,20.0709524914437,8.79702898333588,25.2337840514801,29.9565202545525,46.9633215733303 -"Tfru05500_t",5.37666411205667,4.31574432003072,7.52395445877161,4.86633525313688,8.72566131606264,5.40892526339738 -"Tfru05501_t",0.153303607247167,0.12305384127187,0.792106379205481,33.6178008966868,38.7623011266708,22.4325035862692 -"Tfru05502_t",5.4822089997578,4.78885379587174,4.71517641107408,3.38750022129212,1.94709828321828,4.886933377893 -"Tfru05503_t",0.858709132246481,2.29756405509317,1.60220495328218,13.619580293203,22.1733869386356,21.256230229565 -"Tfru05504_t",0,0,0,0,0,0 -"Tfru05505_t",0,0,0,0,0,0 -"Tfru05506_t",0.0516034255352871,0.0828421437555093,0,1.76146305055307,1.42926475318563,0.453059409039639 -"Tfru05507_t",25.9171571571936,25.8271031806919,26.2661256293097,18.6928257970549,18.8460855683366,18.7039531475861 -"Tfru05508_t",10.6617820354462,18.7738462472535,9.22948668820419,28.6968274964521,23.2877561205514,20.0118799434718 -"Tfru05509_t",2.32122188741513,1.79153839046186,1.30698955520338,2.03164140722663,3.24546382717258,2.74339268087977 -"Tfru05510_t",9.44153316926817,12.2184561842701,10.7854851786312,4.68376795858071,3.16872257350473,2.88998561110262 -"Tfru05511_t",50.4846488183144,49.0210894114135,58.501261569932,40.3567559431263,37.8417439509572,30.5532269381994 -"Tfru05512_t",0,0,0,0,0,0 -"Tfru05513_t",1.4224864592775,2.0373447773716,1.83208743171985,1.90415793247038,2.24514857954969,2.93856859727702 -"Tfru05514_t",2.79318388242664,4.13914097290954,4.44065775759185,4.66720133087718,6.13697407290161,4.00859085824202 -"Tfru05515_t",1.21950546926295,0,0.466746554628606,0,0.117280394061805,0.198274386536702 -"Tfru05516_t",9.25828641971054,14.31241739136,12.9927000104779,4.96564821870198,9.49731844157637,12.5438897604853 -"Tfru05517_t",13.0146932355936,12.8092348069409,13.2537107344307,7.81319279662796,8.28735245502159,7.65394370991195 -"Tfru05518_t",0.724227385960754,0.63945565102313,0.997871944378399,10.1881403107851,5.5162226724242,3.8680597994186 -"Tfru05519_t",9.03002567224602,9.59765230782879,9.38510029229128,10.6288430181631,7.11506853225954,6.60669657140457 -"Tfru05520_t",1.3772192913352,0.552733647680202,0.338855812493836,1.01755086448811,1.10688521796036,1.72735531127994 -"Tfru05521_t",12.7905071901166,12.4133649373826,12.6667585742289,8.65981557863598,9.71195290895196,9.06024757302315 -"Tfru05522_t",7.34481437150759,7.19986359175541,7.33252517735694,6.99224739500008,5.90712081502785,7.68016028004642 -"Tfru05523_t",5.03088540872158,6.86058840481878,5.6833080154713,2.23821877211293,3.9330089650604,4.86812772610719 -"Tfru05524_t",1.2793458391591,0,0,1.32333264711601,1.47642323488973,3.43205917812262 -"Tfru05525_t",17.0926504112813,19.4137150761003,18.7671999712061,27.492920071501,30.2542851741531,42.3314806739142 -"Tfru05526_t",30.3521361238776,26.9734020067937,28.9382863869734,47.0935669773669,52.0724949634411,60.2754135071572 -"Tfru05527_t",25.3452358492807,27.8860359092793,28.2175489910574,51.6982783295782,61.2327110049003,51.5289787266249 -"Tfru05528_t",0,0,0,0,0,0 -"Tfru05529_t",2.27464919056266,1.21721128189503,1.82823108942974,2.82342813879264,1.96878639851044,1.33137313703345 -"Tfru05530_t",2.69245667116129,3.42570482356996,2.95993382751179,10.8438379954948,9.32165205035389,6.05639355261614 -"Tfru05531_t",0.620946263093307,0.351826982697311,0.346001250279032,0.0755642120237258,0.158073574605041,0.0534478781098937 -"Tfru05532_t",0,0,0,0,0,0 -"Tfru05533_t",0.272760963543661,0.218939951353846,0.234888688205954,2.53925193001806,1.46629348308788,0.598685647659523 -"Tfru05534_t",18.4638190706478,14.6723450476516,22.1409691175059,1.90986469950076,2.27730171766164,3.74869320919117 -"Tfru05535_t",16.4514702505884,24.570474540699,24.7345706277101,7.53216302836817,6.18592897090034,9.37268167496931 -"Tfru05536_t",8.35345470729307,8.06316296615926,10.562747705755,25.6485574291985,37.1119746646676,36.6314736661924 -"Tfru05537_t",0.607011392857279,0.292341784755713,0.418183329291525,0.753458183473566,0.735544667959875,0.355289363158253 -"Tfru05538_t",10.3540464360382,10.6002483901238,11.5326012169489,12.4416056844968,10.2497005644273,11.4765019454417 -"Tfru05539_t",9.60118591672201,9.15168996657662,6.20106136862761,7.44847232804146,6.75199982954776,10.5368673987913 -"Tfru05540_t",6.13834812291376,5.62451222151557,5.43243460726684,5.45071434977797,4.29940221576392,4.78122992354467 -"Tfru05541_t",2.19794590390415,1.17616578517996,1.26184388315292,2.27351626292314,0.845509817654873,1.78677499495284 -"Tfru05542_t",3.15038912892928,1.89656732860269,1.35648217438939,1.08623554784106,0.908923053978988,1.34454818370201 -"Tfru05543_t",32.068051453757,40.8033084080152,27.3427258274656,45.61984543996,41.8738537968831,26.3587202836964 -"Tfru05544_t",34.1839491392087,31.80185427113,40.8277404992348,41.9813249834186,34.4489025203251,20.5472701791989 -"Tfru05545_t",6.3260825882114,7.31206680907062,7.62680740620538,15.966353835736,18.6164962863166,15.9216721237003 -"Tfru05546_t",49.5877868622297,54.0047697772126,48.7141640468394,76.3166063984606,61.0462933675286,42.8846477585185 -"Tfru05547_t",6.87742379111346,5.86009048636264,7.83593397128377,5.6911081599733,5.40316979191539,4.7221267624799 -"Tfru05548_t",0.753081066676322,0.671648456344468,0.792632346256746,0.432763166470541,0.579393181819275,0.122440358219876 -"Tfru05549_t",10.5786262355799,12.7617163397386,8.94998548050729,7.23090526692427,3.64104669635176,4.61666870566313 -"Tfru05550_t",0,0,0,0,0,0 -"Tfru05551_t",26.6782641055032,23.4295739722773,30.3617761905669,16.0162252633102,17.1144664709369,18.6768052274423 -"Tfru05552_t",41.8524422461393,42.7954818365602,39.1982242878097,38.2354912840052,51.5607259711717,49.3955571695617 -"Tfru05553_t",20.7456102817145,21.6027246328049,20.3598066070754,18.5590411733467,24.1031430554606,24.0419288332371 -"Tfru05554_t",38.1865348960924,38.8926803098466,44.5204405953206,37.6764217992225,24.9159326685018,25.7895355914736 -"Tfru05555_t",19.7510853297986,20.5295936183886,23.7494603880092,11.4860876998144,13.3925823771552,13.4089751494114 -"Tfru05556_t",1.03317911479105,1.71045785208339,1.05654773511241,2.27099207542481,2.45919227517759,1.27560078040907 -"Tfru05557_t",57.2696732898196,47.5790778103923,58.1452306051259,33.653133153272,37.9963589673975,31.7922723239885 -"Tfru05558_t",28.8600353144266,24.752063017999,26.5551333903993,17.5842366332858,19.5044194171491,18.077958772464 -"Tfru05559_t",458.149612858242,448.063156259034,407.275135238594,249.437212846425,306.436915341487,331.829641919813 -"Tfru05560_t",5.37736934213882,5.10626907600986,5.85680247526018,7.30774939825003,5.65780255135724,5.37801730251748 -"Tfru05561_t",0.566680450397622,0.454863440249474,1.46399425229209,0.439623155955909,0.367860932470417,0.518255141875023 -"Tfru05562_t",7.35939958240442,5.04388076609521,6.72756657918186,3.68910186059227,5.2918431175057,6.12993858106732 -"Tfru05563_t",3.8081977909783,3.48758620410325,3.32345698542212,3.22532976785176,3.45097648727039,3.32850034958784 -"Tfru05564_t",9.31247101004252,10.9738486938017,12.1144948907731,13.4242317704885,11.147169529931,9.35022726132397 -"Tfru05565_t",3.18704008996386,2.55817545587954,2.96408851459896,2.90102361790632,1.76543476341898,2.51829531913839 -"Tfru05566_t",0.471968408828356,0.482159892869144,0.997617125189334,0.576958615809346,0.594188717616499,0.690618649734581 -"Tfru05567_t",26.9601463136144,34.5446829257203,27.0147847092619,12.8030472700656,10.7131320164162,9.9405812250958 -"Tfru05568_t",6.36094940083947,8.04970216778465,7.20496216319601,6.04616785155732,9.67203249800288,7.96614008663831 -"Tfru05569_t",0.0599360595277865,0.144328548193308,0.309684396531227,0.061996797023033,0.0172922340828345,0.380045554217793 -"Tfru05570_t",0.719795149816563,0.94918642312769,0.752678807494722,1.38272334119302,1.60201860187239,3.08453788602385 -"Tfru05571_t",1.81695749420319,1.68871611880895,2.67642090943836,3.75885721734413,4.01436704546212,3.07850043524259 -"Tfru05572_t",21.0025941928619,20.0951844950614,23.005937677644,19.6391387049663,21.3778702295858,15.7350553155527 -"Tfru05573_t",3.08949051776186,1.62145627339284,2.55819363392623,6.26851631568814,6.68514834609722,6.3464630372356 -"Tfru05574_t",46.4243727481096,51.4036255935805,46.9312216432352,42.5794844526848,29.1173020568442,28.3719315106833 -"Tfru05575_t",0.125201753757746,0.100497026850946,0.323453275562298,0,0,0.0916021755981784 -"Tfru05576_t",6.6323981661669,8.3658107727838,5.71150389216584,3.59356121090275,4.10040475479243,3.92821810920459 -"Tfru05577_t",7.00798666862532,8.57496248944361,7.727670576379,5.92291204112723,4.66019551582309,5.75257935302823 -"Tfru05578_t",8.78713925026233,9.4577895309083,10.0894183916548,19.3491086493399,16.6515855847815,16.2185934407161 -"Tfru05579_t",8.36302393199929,7.32309556745534,7.90691082971606,8.95303089901714,7.23848223983266,6.58936248747801 -"Tfru05580_t",0,0,0.236681731627374,7.29684948168039,8.48460342645599,5.76444399680314 -"Tfru05581_t",3.30003151546847,3.04338426319864,2.69066808236591,5.88283021313001,8.44732499811646,10.2741428878191 -"Tfru05582_t",13.3298426190773,11.9986761991692,12.3659227292847,9.98347487753042,10.7224267803896,8.9345008153929 -"Tfru05583_t",8.87323930075201,8.70512819552179,6.79218581040763,5.95785772997442,4.44636849136108,7.89668464724309 -"Tfru05584_t",6.51328808083495,7.62060634883137,5.89413191850316,3.8417559123129,2.38875966880155,6.38073551417062 -"Tfru05585_t",2.62836636480774,2.81298514555208,1.59277937819379,5.3367771991264,5.7294802012117,6.97980980647163 -"Tfru05586_t",10.1517604347552,10.5395347928138,10.1032729245403,13.2674790503307,12.8906598104111,15.4774535597536 -"Tfru05587_t",9.02766374914416,7.92833876937998,9.60341362399565,22.3014731946129,25.4636344831534,24.9434692847879 -"Tfru05588_t",4.76476763778359,6.24011538963141,7.12659291619498,12.7105771568267,18.8838938975933,14.311267661067 -"Tfru05589_t",30.1727409531255,30.2026121061987,27.0022742695352,0.979141902279263,0.409655460948276,0.692564054381721 -"Tfru05590_t",20.3310570912615,18.8123059578525,17.2861443593221,1.53803261953091,2.57394136739832,1.11630218608735 -"Tfru05591_t",0.938081130202267,1.5059591691138,0.897589528131934,0.107814942713753,0.27064706321955,0.381296897185966 -"Tfru05592_t",84.0816928807611,93.1360888477368,85.5497303417958,41.5314508274713,34.0113142779234,36.4198741585837 -"Tfru05593_t",0,0,0,0.0830772885538094,0.0695161035547983,0 -"Tfru05594_t",0,0.179344428236661,0,0.693341839047484,1.64379701251519,0.490412711380673 -"Tfru05595_t",0.127481603598555,0,0,0.131864709904833,0.110339672713686,0 -"Tfru05596_t",0,0,0,0,0,0 -"Tfru05597_t",0,0,0,0,0.478380554725775,0.404375393594583 -"Tfru05598_t",0.278180055534594,0.0558224379279674,0.0598888377213857,0,0,0.101763344083407 -"Tfru05599_t",4.95936079091759,8.77690712525475,6.38041876241949,3.70834326432225,7.13692070834141,17.4427872480261 -"Tfru05600_t",18.7475788163651,16.9648502095361,16.2968244389798,11.1596409967671,11.3280515359065,15.5927151770074 -"Tfru05601_t",5.84506159140967,4.45315599168766,6.56912751119388,4.30395217069098,5.83082713873313,5.07376673095099 -"Tfru05602_t",49.9818518490557,50.6539799145357,48.591416337341,30.7275612410791,21.2563857338398,15.3231416685965 -"Tfru05603_t",4.12746633703198,3.81145897922087,3.77455909395307,1.88910530059314,1.29620331176134,2.27153481967048 -"Tfru05604_t",16.4556408109021,11.8182431473066,13.0520621590731,15.2296942790087,13.4932906982448,8.87124574813699 -"Tfru05605_t",20.4086121961094,17.9953080828501,26.4935363042452,21.1733223538562,17.8225376211688,14.1739586836752 -"Tfru05606_t",40.6182246182706,44.5315599168766,40.4385251987779,33.3043917970136,41.930506924125,40.6626162294786 -"Tfru05607_t",6.82702836065939,5.47992365826511,9.30859099355244,7.25791697880255,15.2649831187442,12.071016263871 -"Tfru05608_t",31.8122755935156,26.0562229586494,29.0724670039147,31.0257077652284,23.8258655262498,16.8150163667216 -"Tfru05609_t",0.301328467616382,0.241870534494206,0.103795862220135,1.24675529163966,0.365134081942779,0.529110988462362 -"Tfru05610_t",88.6397978577184,94.7566431924241,73.8700179246084,137.742413716506,85.0881614227331,51.8019953155857 -"Tfru05611_t",0,0,0,0.0855303580977211,0,0 -"Tfru05612_t",0.994859724925035,0.488005628412388,0.571150389216583,2.40115226364865,3.68353027138853,2.14318958605133 -"Tfru05613_t",302.437356377211,284.547281825768,297.92203034458,277.221557521141,290.616971226331,199.711063239149 -"Tfru05614_t",629.643289354279,766.416663917176,658.844951275838,767.781250332621,698.805117638466,518.214038881012 -"Tfru05615_t",5.38828406509562,6.61923975626843,6.61723224688185,5.13735496134533,4.8665149571658,5.24492702366748 -"Tfru05616_t",4.5005558984704,6.02084866223077,4.19863530168143,3.49147140377483,1.9476922585264,3.01837347361676 -"Tfru05617_t",6.42059930115475,6.46026043757979,5.45123801692182,12.1602257239473,11.7406637758319,10.4536915528177 -"Tfru05618_t",8.63489953967768,7.50865580488908,7.90070988081184,15.4445482605238,16.3489371593651,14.0830008595769 -"Tfru05619_t",2.00929795768814,2.70257098322757,3.08650113371082,9.32463353285666,9.16561062835954,9.45616305021196 -"Tfru05620_t",0,0,0,0,0,0.171211865811637 -"Tfru05621_t",0,0,0,0,0,0 -"Tfru05622_t",14.3361514349579,13.8464775831861,12.4341507672873,11.1375382250978,11.6605385978659,9.58180234707437 -"Tfru05623_t",14.1256384382813,9.35641916590325,3.78540880043293,4.61409785859274,12.1186859898258,10.3348329701793 -"Tfru05624_t",18.827026666908,18.0001786300317,19.5275787123253,26.9178689544677,24.6242102273192,22.5290259124572 -"Tfru05625_t",12.5931386422931,10.4055709144445,10.2066901885919,12.5036813362706,12.2112628334171,14.7565414172346 -"Tfru05626_t",0,0,0,0,0,0 -"Tfru05627_t",0.824979149965114,1.10365801991791,2.24970311519025,0.853343801904595,0.357023785523661,0.301792437772722 -"Tfru05628_t",3.75465371045575,3.72956256797848,4.24374311540813,4.90323085282444,4.67155983050653,5.70011169339592 -"Tfru05629_t",0,0,0,0.254835319141597,0.213237080112373,0.180249442306093 -"Tfru05630_t",3.22084511583824,3.01619511258078,1.73352354554554,3.74803320021835,2.4392823173877,3.63291887152712 -"Tfru05631_t",0,0,0,0,0,0 -"Tfru05632_t",5.51433750614346,5.13920544843098,5.70479434280646,9.1109801017153,7.49561214558883,5.52373224871412 -"Tfru05633_t",0,0.53946804000384,0,0,0,0 -"Tfru05634_t",0.334702696300588,0.537318765075575,0.864689832280087,1.73105266588216,0.869089772728913,1.95904573151802 -"Tfru05635_t",12.7695772661346,10.249892760073,14.4691431899454,36.8451097737507,47.1185711067383,39.3376382792537 -"Tfru05636_t",27.4530223847728,23.6928531140757,24.8855042639822,72.8071394228601,78.788219519358,74.9058222945537 -"Tfru05637_t",52.5866480535965,55.5940346685741,55.2257373778162,34.4941975485724,32.1939158039472,31.4363283070634 -"Tfru05638_t",15.0626929536853,15.8688237526629,15.4419884669016,9.36689778714594,9.42874288652696,10.4628356908295 -"Tfru05639_t",21.1431319978699,26.2965601348761,20.1169500162233,15.667635411239,10.7313740499527,10.6706999772931 -"Tfru05640_t",2.82757438647355,3.22793142938445,3.3007394719622,7.21448890413507,6.74384195622406,6.66599377324216 -"Tfru05641_t",3.06779465738432,3.59897920034468,1.42252812295516,5.85834902206413,4.49355217697477,5.87025852274394 -"Tfru05642_t",0,0,0,0,0,0 -"Tfru05643_t",0,0,0,0,0,0 -"Tfru05644_t",0,0,0,0,0,0 -"Tfru05645_t",0,0,0,0,0,0 -"Tfru05646_t",6.91335392181703,8.46430974431942,6.66937069074781,7.64890864938078,6.47607675960029,10.6283332616445 -"Tfru05647_t",2.78795498135334,2.38702672626494,6.08216196186391,1.92254079263904,1.60871336987432,2.03976968450369 -"Tfru05648_t",0,0,0,0,0,0 -"Tfru05649_t",0.3235316178618,0.519385147755979,0.464349909932182,0.11155178925197,0.280027641790702,0.236707547470004 -"Tfru05650_t",0,0,0,0,0,0 -"Tfru05651_t",9.40482151155063,9.36374827469431,8.79985565588808,7.10905503861532,7.74883809204907,7.47637433840762 -"Tfru05652_t",34.0882441161455,37.6429529806697,35.0872379962104,30.1485784706906,27.6714149446664,28.9247340359424 -"Tfru05653_t",0.315828484103186,0,0.271976375817421,2.94018644528407,1.36680158493081,1.15535826741312 -"Tfru05654_t",1.91658654231439,2.45412538627809,1.25750293914062,2.59610885958754,2.01434332440753,2.47062163343398 -"Tfru05655_t",6.30640898016227,5.96596693179756,7.85523189458733,9.4353972520242,8.18761785889919,8.32167700062218 -"Tfru05656_t",16.6529445079496,13.7660113792069,20.3338550796042,4.3706519084729,9.68083726131467,10.729108076202 -"Tfru05657_t",0,0.353055000088925,1.13632014608535,0,0.380700755593294,0.965419787848865 -"Tfru05658_t",20.1367154293978,17.2624600570804,24.5545383053419,5.08229096209431,11.2242846934318,12.2576533498433 -"Tfru05659_t",2.48670715243484,2.37365937659786,3.18321150256709,3.19787745284407,3.49026452727931,3.54038744599936 -"Tfru05660_t",33.0208759762352,25.2970035618027,47.6363728878512,39.0217652572689,29.8020907284488,21.4060846651775 -"Tfru05661_t",0.206413702141149,0.331368575022037,0.355507203771174,0.213510672794311,0,0.302039606026426 -"Tfru05662_t",2.49804610955823,1.91795360100021,2.01090225378129,1.90986469950076,2.1621440456643,0.953562660525575 -"Tfru05663_t",0,0,0,0,0,0 -"Tfru05664_t",4.27348070425477,6.1911654730234,3.23132230127496,2.80318851055757,1.4434510038376,1.37266882986948 -"Tfru05665_t",8.52805120574088,11.433110461843,8.20334792287317,8.07051897316034,5.49672689231354,6.30581067333249 -"Tfru05666_t",14.6105003080778,14.8849877295016,17.9049598046492,15.6941055741584,9.48441447630249,8.63388800236744 -"Tfru05667_t",12929.3864822162,12377.3437930423,12449.4466266666,33593.5902616673,25104.5914310582,7862.21300974625 -"Tfru05668_t",27.6555898688616,28.2718111096053,22.1305994496653,26.3125381154045,23.7110361907562,21.3791512439575 -"Tfru05669_t",0,0,0,0,0,0 -"Tfru05670_t",3.82289172877841,2.9937183137396,4.57681000015953,0.192894214932929,0.645627918475641,0.648077767314748 -"Tfru05671_t",0.773101626731111,0.413702484766777,0,1.59936522381505,1.3382916132206,1.13125876981063 -"Tfru05672_t",11.1868278331929,17.5316879100617,8.59574850302507,8.61014066799309,6.88936630685922,8.40016580216449 -"Tfru05673_t",0,0,0,0,0,0 -"Tfru05674_t",0.750092649745067,1.20416973244615,0.645943892566374,1.93970633543046,5.19384602273708,1.37198794255307 -"Tfru05675_t",2.35984204414178,3.48532722559696,3.25149285246894,2.24570045845792,4.4118512283025,5.04151614306244 -"Tfru05676_t",7.10166677770712,5.9822570637455,6.65325209547232,2.62351363157153,2.90450098066672,1.5987196239095 -"Tfru05677_t",0,0,0,0,0,0 -"Tfru05678_t",8.55458144670092,5.1059311892756,7.55568835169023,6.35291808659,4.55648110610877,5.61691147238439 -"Tfru05679_t",3.71560137145082,5.00443552974623,3.63355544963873,6.12330683640536,5.72335356328598,6.40453022178898 -"Tfru05680_t",0,0,0,0,0,0 -"Tfru05681_t",4.68298567481528,4.46524008012342,4.19972467980665,7.55910411421435,7.7838537411586,9.29668577526607 -"Tfru05682_t",1.62460977856258,1.41995777646422,1.86538158919039,1.60578009650762,1.90612140241404,1.95462588188739 -"Tfru05683_t",0.831785693136841,0.667658292543958,0.716294031928507,12.9057655417338,7.19938866141516,1.21712958222935 -"Tfru05684_t",0,0,0,0,0,0 -"Tfru05685_t",0.0276531852440577,0.13318006257469,0.142881598355696,0.400455501508224,0.239347742983275,0.627194488024262 -"Tfru05686_t",0.235984204414178,0.378839915825756,0.406436606558617,0.244097875919339,0.408504743361343,0.690618649734581 -"Tfru05687_t",0.444760818201781,0.595001514855746,0.595788249143573,3.42483678613416,2.6519166751387,1.98857546497104 -"Tfru05688_t",1.67400750762294,1.59252557973691,1.38818347981792,1.9239596419325,2.20019750335873,1.54229670413051 -"Tfru05689_t",0.437839097180182,0.351444977287216,0.377046076703239,0.396281372502275,0.18948233047119,0.800847685034237 -"Tfru05690_t",0,0,0,0,0,0.056467670947522 -"Tfru05691_t",0,0,0,0,0,0 -"Tfru05692_t",0,0,0,0,0.207358871630187,0.175280588858492 -"Tfru05693_t",4.20051883857237,5.85606754094866,5.33073696602145,5.71702919916346,3.25298777213533,5.17600503801075 -"Tfru05694_t",6.57528024882909,8.09611990325499,6.4869258998155,5.81086493677891,5.8016365147595,4.06341960858272 -"Tfru05695_t",29.42929695456,23.7596667371453,28.8793489401569,45.1307641058199,52.5731460957297,40.3090616376652 -"Tfru05696_t",0,0,0,0,0,0 -"Tfru05697_t",19.2679023386853,20.642889524316,16.8450494172652,14.2528488449351,11.3441342184312,17.0302325611924 -"Tfru05698_t",0,0.0546462763508789,0,0,0,0 -"Tfru05699_t",16.9975746150375,19.1359461554339,19.1737191639612,12.3579480555932,10.0586701254818,8.14501439198929 -"Tfru05700_t",5.68491271385735,6.69264861822704,5.54831806667538,3.00552392184594,4.59245332536752,3.23500314875672 -"Tfru05701_t",14.065085703817,17.3923519727064,18.6593023083427,22.8060314116856,29.9409947193079,25.5872647241029 -"Tfru05702_t",3.23116795912858,3.24199505400669,4.17379081723695,2.50669712466524,1.39834299628013,2.36404048582261 -"Tfru05703_t",3.61594161139659,3.77318033810961,3.42526345326445,2.80519940618925,2.55593857359945,2.73374010705554 -"Tfru05704_t",0,0,0,0.331674976440018,0.138766878470075,0 -"Tfru05705_t",0,0,0,0.201621447395092,0.337419231175494,0 -"Tfru05706_t",0.220789426468981,0,0,0.114190333544395,0.191100773504124,0.161537607953686 -"Tfru05707_t",0,0,0,0,0,0 -"Tfru05708_t",0,0,0,0,0,0 -"Tfru05709_t",7.43570104964675,4.50254769523344,4.83053693571375,4.72276325148286,2.93565209980791,2.67239390549468 -"Tfru05710_t",0,0.335620834251146,0,0,0,0 -"Tfru05711_t",0.428221985571901,0,0,0,0.370960693983375,0 -"Tfru05712_t",0.208101390902962,0.167061365194323,0.358382245662189,0,0,0 -"Tfru05713_t",0,0,0,0,0,0 -"Tfru05714_t",40.7636779648145,83.6026376056703,47.2824769865935,6953.0152766363,3199.27719783303,302.221533881101 -"Tfru05715_t",2.46284492163852,2.74566388505638,4.71307595879048,1.98140686251138,1.7763968481674,3.00317881887839 -"Tfru05716_t",28.3937510342523,22.7239835223985,24.9194800644421,7.31005704669542,6.15298831961883,7.46514415014244 -"Tfru05717_t",4.8736984348918,3.61862173405138,3.30513423201475,3.33983953795945,3.26922287725582,3.12005379829328 -"Tfru05718_t",30.6695004677439,30.4585122875571,33.4022811732247,24.694947028942,25.2442480274766,27.1027035454894 -"Tfru05719_t",0,0,0,0,0,0 -"Tfru05720_t",0,0.151196199589652,0.32442025097504,0.194840457011849,0.489106576132191,0 -"Tfru05721_t",163.525214986563,169.373117952359,188.244036865096,95.3271597837771,128.161190487472,79.5551108789571 -"Tfru05722_t",1.19729753118452,1.52165866427875,1.63250427955017,5.26346916293529,4.57699970174692,4.81792630468044 -"Tfru05723_t",46.526218409676,65.05491211848,42.7788133931679,90.353775321351,66.4982580943878,37.7729069635206 -"Tfru05724_t",0,0.545284407145428,0.195001929831358,0,0,9.60909291086229 -"Tfru05725_t",1.56056427439221,1.46140722947025,0.447961089581634,1.34518334097964,1.80096208837942,1.52235442294434 -"Tfru05726_t",1.018120614564,0.941047811474629,0.797051589799125,0.925474282405896,0.480664413415256,0.564313806705634 -"Tfru05727_t",6.66289195083894,5.81323319111936,6.98510361064879,8.09058201150581,10.5309705564462,5.29871205399808 -"Tfru05728_t",205.986957394447,224.346057737263,260.166294274437,586.567127171665,739.024273534047,546.684362346478 -"Tfru05729_t",13.360140780365,13.6321101786357,14.0401389478578,85.2592430003548,83.4935247428677,86.316162182056 -"Tfru05730_t",481.377479468579,812.940633520932,466.083146498996,1349.11268184419,1254.69438737437,543.446527666558 -"Tfru05731_t",3937.48216049172,4585.83716807421,3994.17754536449,5464.08087519804,5159.27041789303,3093.09101182331 -"Tfru05732_t",7.47207678015278,5.1871926936142,5.04333116119131,3.34226322412633,6.64213000984645,6.50111209702072 -"Tfru05733_t",7.53592679808237,8.30034293451218,7.94464217985095,6.88619156636165,6.84434415546527,6.74978331963037 -"Tfru05734_t",0,0.237441919073889,0,0,0,0.216426266994288 -"Tfru05735_t",0,0,0,0,0,0 -"Tfru05736_t",0,0,0,0,0,0 -"Tfru05737_t",0,0,0,0,0,0 -"Tfru05738_t",0,0,0,0,0,0 -"Tfru05739_t",0,0,0,0,0,0 -"Tfru05740_t",0,0,0,0,0,0 -"Tfru05741_t",0,0.124646035151543,0,0,0,0 -"Tfru05742_t",0,0,0,0,0,0 -"Tfru05743_t",5.63363703055589,4.99801272478827,5.27698163527165,3.47595375309139,4.5766949070942,2.3139787228754 -"Tfru05744_t",23.0684231298647,24.0439136740888,25.1431012870426,24.645081937902,26.1054621405113,23.7799247852871 -"Tfru05745_t",35.6514624114126,42.4434413930432,40.7932566505447,42.9382522440701,46.439093850355,49.378653104216 -"Tfru05746_t",0,0.0441030117835086,0.047315706976739,0.0568337762114353,0,0.20099757954996 -"Tfru05747_t",1.07567703932711,1.85636409457768,2.03790749204039,1.39082656573759,2.28103608937108,2.87256681646964 -"Tfru05748_t",0,0,0,0,0,0 -"Tfru05749_t",2.14039176487764,2.57707662485291,5.52960886375291,21.3095890914042,25.9361482918845,18.5961168264519 -"Tfru05750_t",1.88551967816216,1.17714347909948,1.2628927974365,0.866821384810819,0.181331282589324,0.613117803754391 -"Tfru05751_t",4.74885822335551,4.27801007834469,4.26601415830741,3.10984069003703,3.81459370356371,3.9493613064529 -"Tfru05752_t",2854.18156788721,2862.9075539517,3280.58337077773,2646.18208926942,1654.7820594668,1262.66096060827 -"Tfru05753_t",0,0,0.640227568863781,0,0,0 -"Tfru05754_t",3.12693710067422,2.1752743553866,3.68011706534093,2.47974368241631,2.3456078812361,1.98274386536702 -"Tfru05755_t",26.4447251257531,21.0972386137591,26.383274537068,25.0188609867422,12.4213668797129,10.3818143276799 -"Tfru05756_t",0,0,0.286328691163986,0,0,0 -"Tfru05757_t",0.124644475922029,0.200099421415385,0,0.128930035352054,0.10788404201531,0.455972253904879 -"Tfru05758_t",0,0,0,0,0,0 -"Tfru05759_t",0.981429635180461,0.315109836527965,0.169032046652883,0,0,0 -"Tfru05760_t",20.115160635417,11.5328932121603,13.2463986982625,0.524540304792463,0.438916565301725,0.371016457704493 -"Tfru05761_t",8121.86836332277,7834.03061936081,8392.10305222233,306.34283427877,375.415859149074,653.15258798648 -"Tfru05762_t",37.9887852524436,50.3797606289958,52.459609168443,83.8574642691873,89.04506499276,52.029921615924 -"Tfru05763_t",35.0703052539889,49.013741119818,40.221800462724,140.40737342587,187.808900706878,101.779427136171 -"Tfru05764_t",0,0,0,0,0,0 -"Tfru05765_t",0,0,0.0911155112939974,0,0,0.0774119141390147 -"Tfru05766_t",8.04269957717175,8.30934185043412,8.70891557143517,13.0142344310057,13.7846150366482,12.234751245061 -"Tfru05767_t",18.7694785249802,16.3365153473179,15.3844187387006,21.9878635794475,24.6620306436291,20.102300858425 -"Tfru05768_t",0.312306233351106,0,0,0,0,0 -"Tfru05769_t",8.3612223327033,11.6650375977248,9.9432500618748,5.7658000643696,4.99692295078496,6.84563462521268 -"Tfru05770_t",0.217361906265064,0.261708298901622,0,3.70978246610659,3.76268275903333,1.90835890793411 -"Tfru05771_t",0,0,0,0.239061468575749,0,0.169092324144093 -"Tfru05772_t",0,0,0,0,0.0512791567830177,0 -"Tfru05773_t",0,0,0,0,0,0.625068405014011 -"Tfru05774_t",0.510184474320531,0.34126267721146,0.73224408873921,3.3862403718122,2.24470875679021,4.66586992609142 -"Tfru05775_t",2.92259837335868,2.11592171267482,3.4544339138611,5.80906322992762,6.7456226652738,15.0518120584376 -"Tfru05776_t",0,0,0,0,0,0 -"Tfru05777_t",99.8986933044645,100.298546544322,109.26602425551,97.5416702095634,116.50128522987,102.480026710561 -"Tfru05778_t",10.5181531110319,15.4783165608809,7.43198366278615,19.5278300735471,38.8663084398078,70.6404218871371 -"Tfru05779_t",350.104918175283,488.075985651567,292.888603410008,1688.59383313724,1797.02496310912,897.335719227382 -"Tfru05780_t",7.82282860624814,9.28234482015172,7.17599206964425,11.0822412168399,9.56761109451566,10.4515486344448 -"Tfru05781_t",16.781484575669,16.4038612081758,17.4658162323339,9.47793762331903,10.1585517797652,11.1480745763528 -"Tfru05782_t",0,0,0,0,0,0 -"Tfru05783_t",0,0,0,0,0,0 -"Tfru05784_t",2.77760526448521,3.09005040391055,3.0633626830758,3.12513243462393,4.59733702476611,7.13051738125031 -"Tfru05785_t",1.4688381439784,1.69662123496891,1.23404206341039,1.29699766906395,0.83721697082926,1.57266677594143 -"Tfru05786_t",1.81317359938376,1.63181143598982,1.23020838139521,10.2869134942698,13.5060377935923,13.3864387980273 -"Tfru05787_t",0,0,0,0.398618549666444,1.66774872289723,0.845849447151987 -"Tfru05788_t",45.0601101683807,36.781911003788,36.1728571736974,41.0794525257324,59.4931440191207,67.052791036352 -"Tfru05789_t",0,0,0,0,0,0 -"Tfru05790_t",0,0,0,0,0,0 -"Tfru05791_t",1.10929194680608,2.07761679189653,1.21000757339898,2.60084567792929,3.64849394907059,3.19228743816574 -"Tfru05792_t",1.09553682817948,1.29590812661329,1.19169333096665,2.50497696688123,1.34747686794414,2.57334842100826 -"Tfru05793_t",0,0,0,0,0,0 -"Tfru05794_t",0,0,0,0,0,0 -"Tfru05795_t",0,0,0,0,0,0 -"Tfru05796_t",39.3836744516365,42.6720002719961,45.9904551433034,20.053579344758,29.6554285245975,32.1152707365689 -"Tfru05797_t",0,0.196599139991209,0,0,0,0 -"Tfru05798_t",0.550286310730005,0.29446945422264,0.63184031412606,0,0.158763852223404,0.536812749575351 -"Tfru05799_t",0,1.05364851579252,0,0,0,0 -"Tfru05800_t",0,0,0,0,0,0 -"Tfru05801_t",0,0,0,0,0,0 -"Tfru05802_t",8.80530646450899,9.33489522318178,9.25185820545958,10.0245864665622,9.49066656231192,7.98194910072275 -"Tfru05803_t",29.0448426374266,69.1183630737715,24.6336952683999,75.1339219145843,73.3476082141789,91.7511555455923 -"Tfru05804_t",7.19547930273855,11.2980252582927,5.38108631162731,21.3493027284163,29.0090543448741,35.9739155557838 -"Tfru05805_t",4.95929014471715,7.86034721056876,5.76990372746405,13.594604402428,14.7212077454266,26.0189517056446 -"Tfru05806_t",0,0,0,0,0,0 -"Tfru05807_t",0.504398526312893,0.629799246322738,0.530889176545546,1.44928025062183,2.18287057660064,1.7631738309101 -"Tfru05808_t",0,0,0,0,0,0.0771205267583158 -"Tfru05809_t",16.8919660828902,17.5272997881864,14.9336007547579,14.6833088767458,15.2365166427151,18.1408246121543 -"Tfru05810_t",0.742633164830474,0.894145922877144,1.03922022936645,1.72837479435483,2.08901652185226,2.17335018170617 -"Tfru05811_t",6.85994341278435,8.96381570677729,6.40203259415575,11.2542748747072,15.0785260151167,18.3951641257826 -"Tfru05812_t",2.02887314206537,2.29201537624813,1.68245851087056,2.25408449999218,3.25196083713413,1.81426384102904 -"Tfru05813_t",34.1595912161588,40.3486426713197,39.3417199227864,51.2774995807283,57.3297582476664,49.5784284219377 -"Tfru05814_t",9.14964499491012,9.7478135965146,10.0281190449908,7.82949979037911,8.20730520028552,8.27648330335383 -"Tfru05815_t",2.8515271489003,1.40853274186913,2.26670650550707,1.13444965831964,0.379706758842397,0.641932739701073 -"Tfru05816_t",0,0,0.167855489483605,0,0.168709615587747,0 -"Tfru05817_t",0,0,0,0,0,0 -"Tfru05818_t",0,0,0,0,0,0 -"Tfru05819_t",10.4397420138024,12.0558142029193,13.1884628756576,9.4233798992073,12.6162355909862,15.1320780346299 -"Tfru05820_t",46.4171118923205,36.8154474873909,52.7949590265628,5.8946699313913,7.31911780884612,12.3737100744568 -"Tfru05821_t",0.232072864009523,0.186280400599405,0.5995501323268,0,0,0 -"Tfru05822_t",0,0,0,0,0,0 -"Tfru05823_t",270.38815351633,291.056182322666,274.876524935392,292.864741022031,286.182251031739,214.57468186175 -"Tfru05824_t",69.1850161647214,71.9290720181169,67.80637692634,46.3460500412185,41.3470879457109,45.3154166563098 -"Tfru05825_t",18.4242065863484,15.7532383591525,15.1762169371494,9.94313350109574,6.84671478086675,7.8388097752353 -"Tfru05826_t",15.6200198017264,13.3850424531201,16.1778108570392,13.9736834295131,15.1639424080917,9.88382871579943 -"Tfru05827_t",165.529879838081,184.669652553252,174.136723339403,243.53927997148,140.380838256054,57.116116914134 -"Tfru05828_t",0.719795149816563,0.907917448209095,0.752678807494722,2.81862834935501,3.29303823718214,3.38546841148959 -"Tfru05829_t",0,0,0,0,0,0 -"Tfru05830_t",0,0,0,0,0,0 -"Tfru05831_t",0,0,0,0,0,0 -"Tfru05832_t",4.75070762796489,4.53033213985542,5.07014442497724,5.62805465096962,4.67421038875613,4.30760448275726 -"Tfru05833_t",0,0,0,0,0,0 -"Tfru05834_t",4.36255665727101,4.90243582467692,3.22013572555344,3.0943208484493,3.56017338650524,2.82702797421025 -"Tfru05835_t",141.444736589526,133.118836651598,131.502103312293,107.061671025503,111.664417784111,155.400901727562 -"Tfru05836_t",9.22657317143065,7.01620283413713,6.69093326866441,4.01844364519236,5.04373486601057,6.7504979000068 -"Tfru05837_t",0.685798994052632,0.798192508364307,0.561048409543365,0.744847232805297,0.326470321429188,0.50175559041941 -"Tfru05838_t",27.3946880776459,26.7817014072472,28.4301726627876,22.2333162300578,21.8871103299288,19.6318167672879 -"Tfru05839_t",56.3106429986491,47.6861662376073,53.513859316475,33.1761312659481,34.22755795461,33.9657787218432 -"Tfru05840_t",4.39954591571171,4.37224720808379,7.75777004139566,20.3703025430543,17.7704656937538,5.67133968472812 -"Tfru05841_t",12.3420842197567,11.0307228516798,12.0243517025518,4.42541806187807,5.71399112728803,5.31482266755063 -"Tfru05842_t",7.02894842901508,6.76267242290676,7.25530102825268,5.97585172451241,6.75051162152876,5.53009420787467 -"Tfru05843_t",16.2632914652565,20.662522914943,17.8716257971808,59.8590610686759,103.630181926345,84.0217147982907 -"Tfru05844_t",0,0,0,0.0445178503213548,0.558764172528066,5.47895512796605 -"Tfru05845_t",112.672740611118,92.3442351056119,126.307108818438,204.672335696734,153.297892962856,96.3193643396884 -"Tfru05846_t",14.2617085235348,20.4804677040974,13.3849169462295,25.239849864954,20.1554289953961,13.8581699873796 -"Tfru05847_t",0,0.0978715602568717,0.105001039139962,0.252246281066138,0.738747329794243,0.267627256138074 -"Tfru05848_t",0,0,0,0,0,0 -"Tfru05849_t",1.8621947495938,1.80049156972301,1.42140197618636,1.53222142768512,1.42863472464204,1.20762586056863 -"Tfru05850_t",0,0,0,0,0,0 -"Tfru05851_t",0,0.630219640437332,0.676128151616823,8.93352553855878,4.07741161989711,0 -"Tfru05852_t",1.14268738807736,1.61429500584729,1.3382776620744,1.08741752340998,0.949473484025929,1.60518110536786 -"Tfru05853_t",5.1520353711888,5.14345247159062,5.12991853352827,4.23003187660604,3.56740976341312,4.54685954254155 -"Tfru05854_t",0,0,0,0,0,0 -"Tfru05855_t",0,0,0,0,0,0 -"Tfru05856_t",0.893727412462207,0.860853255535973,1.84712466299831,2.40358504203128,2.16594429884355,1.30776723034846 -"Tfru05857_t",0,0,0,0,0,0 -"Tfru05858_t",41.9396576706134,38.2929732077728,39.5023410118594,20.4707104803744,32.7836209173077,42.9584193482328 -"Tfru05859_t",11.2108441975411,9.73912952525706,9.95975650565179,9.32107530917665,6.9397503445693,8.46182833758409 -"Tfru05860_t",10.3335447466477,11.4184529261987,13.1747789461461,13.326340267443,11.7317863836266,8.73864269097063 -"Tfru05861_t",0,0,0,0,0,0 -"Tfru05862_t",0,0,0,0,0,0 -"Tfru05863_t",15.1608958676287,12.6111498364105,17.881758264732,14.5952793086922,20.6145264416438,26.6507227835634 -"Tfru05864_t",1.23591274767501,1.47534639418525,1.33720863161232,0.360576115465911,0.411432540465781,0.556454709857814 -"Tfru05865_t",0.675622474044569,0.575030107645761,0.864083424903849,0.583077502038925,0.72267244260026,1.28944175227889 -"Tfru05866_t",0.344775828063396,0.0922482968768599,0,0.118876667342387,0.198943486507029,0.504501175045508 -"Tfru05867_t",5.36525445832203,5.01526472236264,4.26939148393102,8.04358740357647,6.17215331723807,7.0309668273504 -"Tfru05868_t",15.6694468585366,17.7726419710248,13.2371026174575,23.475460598045,17.4321583185833,10.8101245614562 -"Tfru05869_t",5.50553440007058,5.72857445532636,3.86312075554259,24.1502854811264,46.8580720061012,41.8469642749974 -"Tfru05870_t",0,0,0,0,0,0 -"Tfru05871_t",52.9261229092937,47.9386683421188,54.7500386255765,13.28990704808,19.5147169754147,14.0396263934943 -"Tfru05872_t",202.731627777804,171.208419923362,212.705069101857,388.182859252421,279.534658996173,170.409117961754 -"Tfru05873_t",366.783259853058,312.209928922053,396.22796040527,473.459537009156,420.446965904071,289.388875979707 -"Tfru05874_t",62.2168899102352,59.5333454334048,70.8322072651864,102.169770357602,113.482275860808,100.04145720695 -"Tfru05875_t",0.0450457784297305,0.361573753442277,0.155165074460984,3.07524058584492,7.44683338595117,6.19594168759196 -"Tfru05876_t",18.6857160890753,17.8411515515789,17.9728819040172,28.2908343581205,25.368327748723,23.9245165602224 -"Tfru05877_t",0,0,0,0,0.181331282589324,0 -"Tfru05878_t",0,0,0,0.218338803586142,0.365396202604618,0.308869647368732 -"Tfru05879_t",7.79128494251327,7.06964165500645,11.0852306724294,11.2127540422303,10.2620344804079,11.8964631922021 -"Tfru05880_t",7.19048728596354,6.72143278609164,8.62191631247858,7.62600904659811,8.9809081823276,9.98890463050559 -"Tfru05881_t",0,0,0,0,0,0.090323379612605 -"Tfru05882_t",0,0,0,0.0749774321201765,0,0.0530328385042085 -"Tfru05883_t",3.96691180977454,5.80225331730612,4.1752511838498,3.10027354682862,2.67049795502746,2.90233755738405 -"Tfru05884_t",7.54584222498031,8.07586886430954,8.66415760089029,5.72387594071935,3.91871017284354,5.15275950640293 -"Tfru05885_t",2.16800972313413,1.95774691984794,3.26722588240024,1.12127540422303,1.75920591092707,0.991371932683511 -"Tfru05886_t",0.147645653376885,0,0,0,0,0 -"Tfru05887_t",0,0,0.0376212771541518,0,0.0320749202992144,0.0271129509600254 -"Tfru05888_t",6.78927486392118,5.69330183619088,5.41879869926903,3.99666167405383,2.86651160256185,3.75574938492321 -"Tfru05889_t",9.11890925694695,8.17611781383762,7.5186078949989,11.0379593775997,11.3352990565509,8.6590499986352 -"Tfru05890_t",108.771329925137,131.85024796742,126.224236016865,107.70883011224,111.175640918272,91.2270887949396 -"Tfru05891_t",0,0,0,0,0,0 -"Tfru05892_t",0,0,0,0,0,0 -"Tfru05893_t",0,0,0,0,0.358196277430143,0.302783545942747 -"Tfru05894_t",0,0,0,0,0,0 -"Tfru05895_t",10.7314163807461,10.4520130705107,9.82138527831545,6.87387968275688,6.02386203599116,7.66287572199732 -"Tfru05896_t",10.5464478095358,9.30144693900735,9.48335526962794,9.60345429783019,8.09580125746824,8.18575611070731 -"Tfru05897_t",9.49916850422942,8.11148817365492,7.54205539355766,7.05335849354605,5.9969228888713,7.73858411607161 -"Tfru05898_t",7.17479925843107,8.27212250984749,7.18963636943443,5.39744371598041,3.5002005805402,6.2992142058089 -"Tfru05899_t",32.2365399239275,38.2404670668768,37.5964767236843,41.6616997239933,41.6901379320595,47.1158821746026 -"Tfru05900_t",15.2029502200341,13.9205895075276,17.4560708768607,16.7740395591541,14.2308596118962,12.2765333969575 -"Tfru05901_t",0,0,0,0,1.2536869660827,1.05974240663837 -"Tfru05902_t",4.78713963854114,6.23626062277578,5.60924280737694,14.2869654494181,16.8114679764446,16.3925965253908 -"Tfru05903_t",1.38431104875712,1.66673956787603,1.2666088274422,3.49027282107528,4.04381832460271,5.82367199178862 -"Tfru05904_t",2.03250911543824,1.41392833100129,1.28355302522867,0.840956553167271,0.351841182185415,0.495685966341756 -"Tfru05905_t",0,0,0,0,0,0 -"Tfru05906_t",0.20872143297254,0.586378304495518,0.943639773488268,13.493609289951,11.4716251284801,7.40634882379955 -"Tfru05907_t",36.2467725496362,31.1727679940364,51.4338830841799,62.0574102571044,62.1274504058751,56.4355065780981 -"Tfru05908_t",36.8826044362452,39.0620913208143,61.3174056065446,72.5923268557195,54.9787603382413,66.7120771286295 -"Tfru05909_t",3.04454366555642,2.94019246110295,2.9085763497666,4.62541977336623,3.25277106520227,3.48046771383792 -"Tfru05910_t",0.121052416097187,0.0485832168710264,0.0521222737517535,0.313036180934022,0.10477499181314,0.0885663686259045 -"Tfru05911_t",10.6206300179813,11.6859199035115,11.3040181199115,12.837329201758,10.2253843572636,11.9612403355309 -"Tfru05912_t",5.09802898307101,5.19248304822268,4.53774761039998,5.62781905459722,4.93163757997778,3.6672167260001 -"Tfru05913_t",2.96507212134521,7.93335353140996,3.40450428082042,7.15637537401168,14.1150403676737,27.1169381586961 -"Tfru05914_t",10.4883165066949,11.6695805962643,12.8773585900006,10.9667872509322,19.9536136448292,23.7046955078243 -"Tfru05915_t",8.89793536643941,9.97125418064077,9.70248597912628,10.8175314530526,11.1021137817516,8.70825469342078 -"Tfru05916_t",0,0,0,0,0,0 -"Tfru05917_t",46.0441488074279,42.516454399445,49.8867437028184,44.1656211759551,52.0383418816541,48.2095455506342 -"Tfru05918_t",0,0,0,0,0,0 -"Tfru05919_t",0,0,0,0,0,0 -"Tfru05920_t",0,0,0,0,0,0 -"Tfru05921_t",2.66096216018159,2.13590287384114,1.30942472339247,1.96603719066255,0.658043839984788,1.66873465591976 -"Tfru05922_t",8.32240081901234,7.54813414191676,7.39258096079083,6.77838095376635,5.98386160341861,5.75335973413832 -"Tfru05923_t",701.629036510691,710.909154585838,705.677280326411,675.675332301133,485.580587481656,235.442432555277 -"Tfru05924_t",3.78337724490352,4.28272837867685,3.42514359661061,3.51207798378171,3.4425723060636,3.76171844203004 -"Tfru05925_t",1.78271356544186,0.357737427145807,0.383796901683999,0.691502736026138,0.192874918616231,0.97822376381503 -"Tfru05926_t",1.55895544524335,1.25134339206776,1.34249782207609,1.07503724322414,2.84858359185167,2.15444539597613 -"Tfru05927_t",0.601430730466278,0.736839353991165,0.599700735223642,0.753079656378126,0.520558795044485,0.949535588877726 -"Tfru05928_t",22.2817305778888,22.2570311254487,23.1676850740505,11.7800004402409,15.8570465998692,15.0945628257313 -"Tfru05929_t",8.8604694251136,6.05847896636971,12.1518194789049,1.69724304350165,4.11855758834229,4.32176201904218 -"Tfru05930_t",139.469549701254,168.336451399367,143.541683392598,367.036070199595,247.298184466459,131.195592245545 -"Tfru05931_t",0,0,0,0,0,0 -"Tfru05932_t",27.0033353908224,28.9000735787077,24.4513395430003,10.5217241219447,8.55084406182323,8.29885389641859 -"Tfru05933_t",0.351998785355227,0.470904364643747,0.404166010991251,0.606835501587183,0.101555648489272,0.171690111246865 -"Tfru05934_t",0.0940765697328639,0,0.0810142396051892,0,0,0 -"Tfru05935_t",2.13585703656222,1.07150696531226,1.22619857571922,0.644377019905712,0.385136887279232,1.10689196721231 -"Tfru05936_t",0,0,0,0,0,0 -"Tfru05937_t",73.2947674893751,74.6585234116615,69.2082742035401,0,0.741978003248154,0.470395866018197 -"Tfru05938_t",62.8636000097559,33.4852873882967,78.8021986281431,0,0,0.14065231081551 -"Tfru05939_t",0,0,0,0,0,0 -"Tfru05940_t",13.0556666604276,12.8488164964795,12.7093825348195,18.5540774658256,18.3749849831428,14.28647336505 -"Tfru05941_t",15.2438183657868,14.9550111932829,16.5549168594834,15.7679353718863,15.2464512280346,13.8172463117764 -"Tfru05942_t",2.36871363077389,1.58443385848178,2.99174013399163,1.30674953123736,1.98186229814967,1.50196574763705 -"Tfru05943_t",0,0,0,0,0,0 -"Tfru05944_t",0.581386690459844,0.700001782183231,0.375496795678723,0.15034402046243,0.880617491744348,0.638045603734025 -"Tfru05945_t",45.2231548095534,34.5777523171872,44.0798974204028,31.7771053014994,34.2029880577997,33.9344891074128 -"Tfru05946_t",3.97663830861769,2.56856997054665,3.27323753730572,1.51902602183378,2.07274000727987,1.36035467608316 -"Tfru05947_t",4.53117192499061,5.30817677976263,3.26926704809104,3.92691568315718,4.5578648770958,3.85276614072047 -"Tfru05948_t",2.18778398660411,2.75845048842291,1.6988138719925,2.56986011427047,2.76278362898226,3.45377092565516 -"Tfru05949_t",23.9815490440905,24.1957504314992,22.3611200451562,23.7115190619271,20.5369170538607,12.6426803077766 -"Tfru05950_t",12.4485574851731,13.0066280372164,10.0014358994714,11.6536528973676,9.57077917765955,6.91990739767166 -"Tfru05951_t",6.43875150438101,5.90658438104974,8.44913471152513,7.2944284964509,11.4112967360866,11.4405768289973 -"Tfru05952_t",0.828028354215498,0.581562055587957,0.713058391465468,0.428248922352121,0.209033638697426,0.227180919276139 -"Tfru05953_t",8.78981809278726,9.22631456972827,4.6580742675209,5.76994335271709,1.7556662612069,10.7594772734303 -"Tfru05954_t",11.2955128432198,10.6570163797512,9.11920789505469,9.32825756454451,7.31277751208901,11.1133626739479 -"Tfru05955_t",24.1914697509404,22.5072562556689,24.8096565228635,21.1560012459096,20.9385415576311,17.1362012343173 -"Tfru05956_t",0,0,0,0,0,0 -"Tfru05957_t",8.04660393249896,6.45885338817184,8.82667230161394,8.7691535675196,8.20829029363009,8.09488530210561 -"Tfru05958_t",0,0,0,0,0,0 -"Tfru05959_t",0,0,0,0,0,0 -"Tfru05960_t",0,0,0,0,0.273360316986162,0 -"Tfru05961_t",9.95916512395744,17.5997580015648,12.172892935247,10.1354292035647,14.2508012287337,13.9853577807628 -"Tfru05962_t",0,0.526824257896259,0,2.71558886935041,1.70423072605231,0 -"Tfru05963_t",0,0,0,0,0,0 -"Tfru05964_t",0,0,0,0,0,0 -"Tfru05965_t",0.292719082827343,0.939839791177486,0.756226996175267,0.302783427969633,0.506716685145081,0.21416397152048 -"Tfru05966_t",0,0,0.0189684624980162,0.250625926088131,0.343169690018286,0.0805782116234632 -"Tfru05967_t",9.69350501209009,9.85566611786698,9.73884638023149,7.68720541549057,11.4664139117349,14.4206486515732 -"Tfru05968_t",5.16746026739565,5.53042725209193,5.86586886222437,9.96137725140355,16.0607466015299,16.0966279694428 -"Tfru05969_t",5.32081991173026,5.32885338890755,5.50684996614401,6.76609243048004,7.77417045588071,7.39295025221394 -"Tfru05970_t",0,0,0,0,0.191352221890313,0 -"Tfru05971_t",0,0,0,0,0,0 -"Tfru05972_t",0,0,0,0,0,0 -"Tfru05973_t",0,0,0,0,0,0 -"Tfru05974_t",0.852897226106065,0.513453083885669,0.918092842226318,0.992499485337007,0.276829356541824,1.01401748444532 -"Tfru05975_t",0,0,0,0,0,0 -"Tfru05976_t",0,0,0,0,0,0 -"Tfru05977_t",21.6800972313413,24.2117493469117,31.2517258316545,23.2786524137607,27.4334139153265,16.5516009630638 -"Tfru05978_t",3.98643264117589,1.54066004432478,4.70437871844474,1.52722045390658,1.40571579525749,1.18825247467514 -"Tfru05979_t",0,0.1301805116158,0.139663544338675,0,0,0 -"Tfru05980_t",0.357490964984883,0.286951085178658,0.307854110499719,0.184891157079329,0.309420614120507,0.261553446069692 -"Tfru05981_t",0,0,0.11957969581394,0.143634452607082,0.240376344853947,0.101595140208889 -"Tfru05982_t",11.7321224418979,14.1257217491938,14.0722340285782,9.75174057912172,8.34123899910892,9.50332595819306 -"Tfru05983_t",16.3897544866996,18.1201688327848,18.463691927885,14.9274087556072,18.2899853806815,13.4996879864069 -"Tfru05984_t",0,0,0,0,0,0 -"Tfru05985_t",9.09619396380989,9.31959532365016,10.3805912875807,14.8401194564201,18.3064784111261,16.6107159918116 -"Tfru05986_t",24.5412716503136,24.8949454979322,22.5066315919389,14.6413808173631,13.338537284384,13.5018130268409 -"Tfru05987_t",0,0,0,0,0,0 -"Tfru05988_t",0,1.32547430008815,0,37.1508570662101,59.6718034455002,35.9427131171447 -"Tfru05989_t",26.8173620065881,30.581930477744,24.6633122616252,28.1882613241399,37.2583334523618,34.859832484175 -"Tfru05990_t",4.91800922559396,8.92263699102041,6.20769174700515,21.4633872484392,17.6682396378915,22.0327840756943 -"Tfru05991_t",192.827645385181,119.610352371206,200.075712101324,35.9356121090275,18.0417809210867,23.9894389342869 -"Tfru05992_t",11.0239860921809,17.0872229907291,16.3678090424059,39.320743813251,41.7857838390341,44.7777132671802 -"Tfru05993_t",92.4784278020719,71.6389302754767,105.554445631963,102.02264550861,93.5419578105134,83.5728695971415 -"Tfru05994_t",0.586573615937181,0.366202121892081,0.168376375409078,1.48314551140439,1.18463206414639,0.381474382165261 -"Tfru05995_t",24.1756479917834,24.499223045739,34.6114396534846,66.2681830625336,55.7124058985682,64.3393252139421 -"Tfru05996_t",18.6022977136776,18.8813814047557,19.6883698454231,30.1042423258807,33.2925530057447,42.1913732093921 -"Tfru05997_t",3.30631178706949,3.67928784081937,3.68846673537006,3.1868091206786,3.77227457107559,5.66270229169669 -"Tfru05998_t",3.09240650692445,3.06139838727415,1.95289049237245,3.73185218890179,5.53160533464513,5.957962854336 -"Tfru05999_t",0.0424574308378426,0.0375289500998978,0,0,0.113703559392896,0.154166494384495 -"Tfru06000_t",0.471968408828356,0,0,0.244097875919339,0,0.172654662433645 -"Tfru06001_t",0.0980284443074066,0.0786855367759447,0,0,0.0848469595312941,0.0753434643361044 -"Tfru06002_t",1.59387276088122,1.17275660899104,1.42975723255798,0.824336858440645,1.20710729698395,0.680245721398647 -"Tfru06003_t",0,0,0,0,0,0 -"Tfru06004_t",0,0,0,0,0,0 -"Tfru06005_t",0,0,0,0,0,0 -"Tfru06006_t",159.665291115355,179.558474028047,173.865201664954,315.224377427727,395.65272613711,339.447183923612 -"Tfru06007_t",5.13246674809486,3.46924784653297,3.48934321386337,1.95592252987457,4.20851832067442,4.3480106629592 -"Tfru06008_t",6.55690745533248,4.44074301331362,7.94038345984031,4.02701959199612,4.78847267462101,5.69676164244476 -"Tfru06009_t",24.5568793639616,30.6044368923238,28.3817808795318,24.0642952137096,15.9411120236315,10.1653752789779 -"Tfru06010_t",29.9141426883406,37.8864148656193,31.9308383907437,41.411282719399,35.8918016198099,23.6555294214524 -"Tfru06011_t",20.494839168419,21.3415927965841,17.0131683703636,25.2102140334101,19.0174669755604,14.5895087060413 -"Tfru06012_t",0,0,0,0,0,0 -"Tfru06013_t",0,0,0,0.835565708221745,0,0.591010121455652 -"Tfru06014_t",0,0,0,0,0.178438881762746,0.150834502641418 -"Tfru06015_t",0,0,0,0,0,0 -"Tfru06016_t",17.4433759403311,13.3837490873405,15.7393351532204,5.04145964188827,5.10662112769874,5.30194790868754 -"Tfru06017_t",0,0,0,0,0,0 -"Tfru06018_t",0,0,0,0,0,0 -"Tfru06019_t",0,0,0,0,0,0.0655277823308931 -"Tfru06020_t",0,0,0,0,0,0 -"Tfru06021_t",0.20194802108521,0.162099771675444,0.695631884302249,0.626674354523687,0.349585789991919,0.591010190638247 -"Tfru06022_t",5.21464626657848,4.18569572822856,4.59503645264106,4.29633403260122,4.93331026049945,4.43630890121817 -"Tfru06023_t",0,0,0,4.87283211194115,2.71827441326474,1.1488795634598 -"Tfru06024_t",0.359274597739618,0.0961275909009046,0.0515650149447141,11.7681969545147,8.81065825667444,4.99430992174416 -"Tfru06025_t",8.76108214902237,7.89935344484677,7.49294915376994,10.3037200538066,7.73883057387824,7.24409633668023 -"Tfru06026_t",10.3420445980908,10.5872407519976,9.6159783043244,10.2325132785027,10.9622120337163,12.7206903476535 -"Tfru06027_t",9.78056750414919,8.6048854902202,7.98119998217242,7.55450040389714,6.24740197752716,10.9368433854765 -"Tfru06028_t",0,0,0,0,0,0 -"Tfru06029_t",0,0,0,0,0,0 -"Tfru06030_t",0,0.566863063313916,1.2158943840724,0.730242383941173,0,0.516513106962742 -"Tfru06031_t",0.661499029696437,0.530972480448698,0.569651306830188,0,1.14509991052471,0.483976849026596 -"Tfru06032_t",17.4786689927163,13.1246419160567,9.22529264014206,19.2460526597331,9.76024755950536,8.80192931667523 -"Tfru06033_t",0,0,0,0,0,0 -"Tfru06034_t",4.97774581701924,4.69651230367772,4.73781715795045,3.97458329355564,3.47696137073043,2.87518471121309 -"Tfru06035_t",0,0,0,0.0865095508484665,0.0361940489389343,0 -"Tfru06036_t",0,0,0,0,0,0 -"Tfru06037_t",0,0,0,0,0,0 -"Tfru06038_t",0,0,0,0,0,0 -"Tfru06039_t",0,0,0,0,0,0.101662354989047 -"Tfru06040_t",0.06427725843263,0,0,0,0,0 -"Tfru06041_t",0,0,0,0,0,0 -"Tfru06042_t",0,0,0,0.361075528368219,0.906405261585695,0.255394985428162 -"Tfru06043_t",0,0,0,0,0,0.250877795209705 -"Tfru06044_t",6.20894745109146,7.47570309497177,6.02030640631678,6.25083361804163,4.6356357731848,6.31122193985937 -"Tfru06045_t",1.16143378025043,0.776883698352357,2.16703757506138,0.200227750754112,1.67543420088293,1.4162456181193 -"Tfru06046_t",48.3455941797952,41.6688167793631,45.7279525454535,57.795929149279,48.0185764366258,41.1699929025738 -"Tfru06047_t",0,0,0,0,0.0694718257818335,0.0391497196346355 -"Tfru06048_t",2.20114524292002,1.17787781689056,1.26368062825212,1.7076192018462,1.27011081778723,0.805219124363027 -"Tfru06049_t",22.9285962804169,45.0538264960639,17.3756086384667,45.5365120492321,37.1507414202765,26.3038247291922 -"Tfru06050_t",0,0,0,0,0,0 -"Tfru06051_t",9.68442019014811,8.7846834089605,8.13635043682481,5.3751862161207,5.92887015528937,5.6453382033599 -"Tfru06052_t",0,0.292341784755713,0.104545832322881,1.25576363912261,1.15585590679409,0.977045748685195 -"Tfru06053_t",0.257174622769737,0.068809698996923,0.369110795752214,0.709378316957426,0.519384602273707,0.564475039221836 -"Tfru06054_t",76.7757397559801,98.3652182145821,74.2528965289656,93.7713358698643,62.6182490614698,32.190839768472 -"Tfru06055_t",2.02783668069011,2.26716094453655,1.8710098957095,4.12020380215574,5.82964441517558,5.66962189777794 -"Tfru06056_t",0,0,0,0,0,0 -"Tfru06057_t",46.2769024588482,64.4618590331853,56.527754340656,68.635358005957,143.08605636198,140.223678858143 -"Tfru06058_t",5.96019564932566,4.84108777571258,5.68256046027986,8.36694949012707,6.69409546511552,6.59295827529558 -"Tfru06059_t",7.24384485176797,6.83843028100657,7.41504355631508,5.37227125613365,4.85021846591825,4.49988236256019 -"Tfru06060_t",0.289690954384302,0.697587982934323,0,0.299651185611326,0.2507373942011,0.423896964319846 -"Tfru06061_t",4.29354566123241,9.53489082863666,4.43687525524297,169.060442335194,403.45654334713,434.757970015537 -"Tfru06062_t",0,0.471562972146498,0,0,0,0 -"Tfru06063_t",3.23037518337149,3.13030618495493,4.12199126714037,1.38669659932493,0.758932010630723,0.216249336594392 -"Tfru06064_t",8.7606384699568,7.3407846959923,10.1520761099364,15.6785637098285,4.04787968131126,1.70592656520639 -"Tfru06065_t",0.184638190706478,0.296411011063669,0.1590015735548,0,0,0 -"Tfru06066_t",327.522972378195,320.89860254586,339.974273637172,290.776900498991,242.548977201666,156.563972319987 -"Tfru06067_t",9.13920416760516,5.07867401801558,14.2269818011272,13.8165525750494,11.2569549781498,8.74398340626294 -"Tfru06068_t",9.31070417721774,6.91515561002199,10.2067363610106,14.363216543427,11.4396939787419,10.7661728995248 -"Tfru06069_t",3.17129081841428,3.74887708055988,3.02888721620691,1.55070002711695,1.39738341860874,1.39213930972578 -"Tfru06070_t",0,0.0830461884445623,0,0.107018280575474,0.268647208072607,0 -"Tfru06071_t",10.9134975432067,8.64976501269265,10.4292772784829,8.18229767812984,6.82966481681408,5.62951015232244 -"Tfru06072_t",0,0,0,6.61986355637114,5.97888925471064,1.6351043726485 -"Tfru06073_t",38.8646135531462,37.0254057920359,45.4696205496255,42.2312138226056,39.7547653516043,35.7588782634768 -"Tfru06074_t",1.20589057566671,1.53257965947692,1.21153112864124,3.94994744669476,4.34891413387076,2.9409119534152 -"Tfru06075_t",0,0,0,0,0,0 -"Tfru06076_t",0,0,0,0,0,0 -"Tfru06077_t",0,0,0,0.28282780741183,0.0591650482655159,0 -"Tfru06078_t",40.7888219266777,41.6903088449601,39.6993624782685,30.448147016703,27.8291884866926,32.1267663088644 -"Tfru06079_t",36.6115260638215,35.422269172346,34.835728992101,36.4332701260308,48.3815851300878,49.5666678950069 -"Tfru06080_t",0,0,0,0,0,0 -"Tfru06081_t",12.4153266164701,15.849958251705,15.9863158436131,22.0151891469546,27.3252588782423,30.5378833479399 -"Tfru06082_t",15.0326116869692,16.6541275205041,18.8112346271333,16.5213086120839,20.9399607589567,23.658033278932 -"Tfru06083_t",27.5659048755708,18.9656732842653,24.8688398614955,13.5779443467521,12.4976919910503,12.9652860559223 -"Tfru06084_t",1.44017788751053,1.73400441472246,1.0335102281062,6.20706027337747,6.85587675001294,4.91720478611022 -"Tfru06085_t",0,0,0,0,0,0 -"Tfru06086_t",16.8020753542895,23.8484347011287,19.233373269391,18.4395107633506,27.1346784895191,36.8790358958266 -"Tfru06087_t",32.0579474551167,28.4627309519542,32.7552996220652,36.2522784064746,40.2379678374993,41.3286537237485 -"Tfru06088_t",0,0.0749510050511694,0.079602983379403,0,0,0.20793375269243 -"Tfru06089_t",2.47690456044988,4.27716276943521,4.07426249342619,3.6268883071259,2.70135906721731,2.33980752822623 -"Tfru06090_t",11.461313603436,10.437018591108,7.82014668163295,13.4951125979133,7.96267398050634,5.41064287524993 -"Tfru06091_t",0.342899497026316,1.65143277592615,0.295288636601771,0.709378316957426,0,0.250877795209705 -"Tfru06092_t",1.12765606404621,0,1.45662515370664,0,0,2.0625859002139 -"Tfru06093_t",7.85594225328947,8.61234127438093,8.06295379797904,8.24480376956713,6.3862075610308,7.07241099725413 -"Tfru06094_t",0,0,0,0,0,0 -"Tfru06095_t",11.3913960801803,10.9467006475172,9.82634253991522,11.8917057895079,10.0601200922955,14.1768671318067 -"Tfru06096_t",0,0,0,0,0,0 -"Tfru06097_t",2.11790865473342,3.96667675939267,1.2158943840724,68.6427840904703,56.2157450978139,38.7384830222057 -"Tfru06098_t",0,0,0,0.511169669572263,0.213864247995056,0.18077958772464 -"Tfru06099_t",0,0.0953797807878141,0,0,0.102848436093803,0 -"Tfru06100_t",0,0,0,0,0,0 -"Tfru06101_t",7.54378893457895,7.29382809367384,8.1204375065487,6.65042172147586,6.01002182631004,5.2684336994038 -"Tfru06102_t",11.691232958715,10.1397213489563,13.7771677973312,11.1197572669985,12.1868528392185,13.0821799027275 -"Tfru06103_t",0.978761671123659,0.130938844693174,0.280954236766734,0.506206857246318,0.423575792145548,1.90959409169329 -"Tfru06104_t",0,0,0,0,0,0 -"Tfru06105_t",0,0,0,0,0,0 -"Tfru06106_t",0,0,0,0,0,0 -"Tfru06107_t",9.37270324266916,13.1139876696285,11.1813747298695,11.1180711140333,9.4520555050425,7.42362032703436 -"Tfru06108_t",0,0,0,0,0,0 -"Tfru06109_t",0,0,0,0,0,0 -"Tfru06110_t",0,0,0,0,0,0 -"Tfru06111_t",2.64629099156076,3.869102764361,5.52355939832853,3.51921674160914,2.73423221585819,2.640962701751 -"Tfru06112_t",1.48035906205194,1.18825559501294,1.27481437828077,0,0.320325305367044,0.541542377324914 -"Tfru06113_t",0,1.58667070628199,1.27668910530766,28.1143318264745,26.0914382553969,5.42338763173921 -"Tfru06114_t",0,0,0,0,0,0.289929527482914 -"Tfru06115_t",0,0,0,0,0,0 -"Tfru06116_t",2.87331907524495,4.11427175211698,1.41392278763714,6.08574964914208,6.75030802303613,7.00741724404958 -"Tfru06117_t",0,0,0,0,0,0 -"Tfru06118_t",0,0,0,0,0,0 -"Tfru06119_t",0,0,0,0,0,0 -"Tfru06120_t",0,0,0,0,0,0 -"Tfru06121_t",0,0,0,0,0,0 -"Tfru06122_t",0,0,0,0,0,0 -"Tfru06123_t",1675.73521399691,2470.00152399647,1910.3565605023,18.2831725874237,24.2965794312616,127.190074294188 -"Tfru06124_t",0,0.268659382537787,0,0,0,0 -"Tfru06125_t",9.03420411972367,8.67710542497963,9.10970872016401,8.30650713054927,5.41343877737486,8.24806868993671 -"Tfru06126_t",2.22544044427675,2.23289751711869,3.59333026328314,9.78331354346913,9.87174707632809,12.4151279781756 -"Tfru06127_t",2.63834241100413,1.56044474419468,2.39159391627881,1.86724788389207,4.20658603494408,1.42233196292444 -"Tfru06128_t",0,1.16599720490463,0.416978190014028,0,0.838199934505119,1.06279642351085 -"Tfru06129_t",0.439844904562552,1.05916500026677,1.13632014608535,1.36490330618772,0.380700755593294,0 -"Tfru06130_t",3.15763140278889,3.48793991467162,4.16611536777981,3.83553517582498,4.18731448315837,4.30255418784644 -"Tfru06131_t",0,0,0,0,0,0 -"Tfru06132_t",0,0.278650847177622,0,0.359086131517705,0.300470431067434,0 -"Tfru06133_t",0,0,0,0,0,0 -"Tfru06134_t",0,0,0,0,0,0 -"Tfru06135_t",0,0,0,0,0,0 -"Tfru06136_t",0,0,0,0,0,0 -"Tfru06137_t",0.259692045661352,0.104224891834598,0.335451542352862,0,0,0 -"Tfru06138_t",0,0,0,0,0,0 -"Tfru06139_t",14.5886283016286,12.9213901828953,16.4618994416916,10.9273995231915,6.09577137997885,4.78470525594557 -"Tfru06140_t",32.5493596749235,31.9849472116071,35.5535382845664,19.8925064182941,15.0315239364439,8.30187555042388 -"Tfru06141_t",87.4747222053216,89.3320143781704,122.689384295287,153.640739344117,134.558093351941,101.702495898285 -"Tfru06142_t",0,0,0,0,0,0 -"Tfru06143_t",44.6100117353207,47.2065510546093,46.0260985828645,41.5932913495777,48.063951297226,49.2962767371867 -"Tfru06144_t",11.5730970789445,12.2982465926124,18.0763417475797,9.01460398877576,7.17810956181956,3.2223734655212 -"Tfru06145_t",0.420051883857237,0,0,0,0,0 -"Tfru06146_t",7.2203053848059,7.1592699967476,4.16957109215746,2.460230158912,2.49976815654484,2.67239390549468 -"Tfru06147_t",0,0,0,0,0,0 -"Tfru06148_t",5.90513426228543,4.23434380144139,4.94961318240176,4.96797513914186,5.17924289427577,5.47252172774684 -"Tfru06149_t",8.22366452081347,7.63642379271035,8.74813839913308,4.5033949776136,6.00133455986127,5.78078297791268 -"Tfru06150_t",3.82205996016398,3.97021528199909,4.19488986430259,4.96121855927406,4.15137023762036,3.6736476435034 -"Tfru06151_t",25.5048884288751,49.8523478572841,22.5504027754806,352.529376870595,356.407371340081,147.074563779224 -"Tfru06152_t",0,0,0,0,0,0 -"Tfru06153_t",0,0,0,0,0,0 -"Tfru06154_t",0.724227383116962,0.581323316829279,0.623669962787562,25.4703506769494,29.4616437029435,41.3299538588965 -"Tfru06155_t",0.641300586041583,0.514759580282325,0.690321717246507,0.995024929320053,1.52643566317082,1.99409545238248 -"Tfru06156_t",0,0,0,0,0,0 -"Tfru06157_t",0.446863706231104,0,0,0,0.386775767650633,0 -"Tfru06158_t",0,0,0,0,0,0 -"Tfru06159_t",0,0,0,0,0,0 -"Tfru06160_t",0,0,0,0,0,0 -"Tfru06161_t",0,0,0,0,0,0 -"Tfru06162_t",0,0,0.241958916279043,0.290631584706638,0,0 -"Tfru06163_t",5.88152117415999,4.52959210615507,3.93555219311963,1.97310525246436,3.0956698148764,3.0529003225022 -"Tfru06164_t",0,0,0,0,0,0 -"Tfru06165_t",0,0,0,0,0,0 -"Tfru06166_t",0,0,0,0,0,0 -"Tfru06167_t",1.01014481087913,0.743255065317465,1.30483255251885,3.39584660246904,2.11292733991107,1.41652943487644 -"Tfru06168_t",0,0,0.210307313858819,0.757838754307715,1.26826472648231,1.25074249646699 -"Tfru06169_t",0,0,0,0,0,0 -"Tfru06170_t",0,0,0,0,0,0 -"Tfru06171_t",19.0783157899137,22.653855640005,19.9984633801912,10.7517755087791,10.9327001637567,20.2637354635122 -"Tfru06172_t",18.0356849760264,18.9265041962169,21.4482187672969,11.6295850475176,14.0562078236156,16.1659962182759 -"Tfru06173_t",0.866086358468531,0.695190773370975,3.72916061687804,0,1.1244408915204,0 -"Tfru06174_t",1.88760367523069,2.13146463410329,1.82129075162771,2.3127980115969,1.49246659100652,0.999474089900083 -"Tfru06175_t",1.63361913779552,1.99119460259011,1.19838060298954,2.31563357696041,1.38776872483648,1.26161628019573 -"Tfru06176_t",151.022545013264,121.22287672314,135.964905884321,102.114594691984,99.5925027239234,66.4874966215292 -"Tfru06177_t",0,0,0,2.91020910339198,3.36051926186471,1.23506483241214 -"Tfru06178_t",0,0,0,0.0953884125436714,0.0798176117654435,0.0674698790629832 -"Tfru06179_t",0,0,0,0,0,0 -"Tfru06180_t",0,0,0,0,0,0 -"Tfru06181_t",0,0,0,0,0,0 -"Tfru06182_t",0.347150317237386,0,1.1957969581394,0.718172263035411,0,0 -"Tfru06183_t",43.6964408351078,4.26654058036797,79.4792294564167,14.4236371841508,2.98742170576496,0.70707546225907 -"Tfru06184_t",4.39217749280381,1.60250724850249,4.33249059500792,2.14769005656787,1.6588709730415,0.876402944292458 -"Tfru06185_t",2.65383223759755,0.732249314103485,5.57054871220123,2.48772603256787,1.43561390559366,0.849467756731775 -"Tfru06186_t",0.365262507701945,0.659675592557458,0.471819886744134,0.755642120237258,1.26458859684033,1.26938710510997 -"Tfru06187_t",0,0,0,0,0,0 -"Tfru06188_t",0.583984744190796,0.870541772811122,1.29317069256585,1.55330604656517,1.80520964047465,1.77009606252726 -"Tfru06189_t",0,0.178081439305417,0.0636846091262622,0.229486383346702,0.0640086657731682,0.0541065667485719 -"Tfru06190_t",42.2747980672752,35.3181900474066,31.297183929429,36.5889868746462,213.007692855461,407.373689195877 -"Tfru06191_t",1.6617437163583,2.66769909957302,1.4310141619932,3.05578351920122,4.15507681818966,6.07896196085054 -"Tfru06192_t",0.260094045732035,0,0.111990272395409,0.739850837538801,0.619080717880425,0.570882908604127 -"Tfru06193_t",0,0,0.073372937086647,0.528796209902341,0.589970339296706,0.311688944352828 -"Tfru06194_t",0,0,0,0.046896299960758,0,0 -"Tfru06195_t",0,0,0,0,0,0 -"Tfru06196_t",0,0,0,0,0,0 -"Tfru06197_t",0,0,0,0,0,0 -"Tfru06198_t",0,0,0,0,0,0 -"Tfru06199_t",1.3436541600917,0.924450183020352,1.70808621095998,40.0409752593353,34.2801748918808,25.232039030021 -"Tfru06200_t",4.02681317231562,4.49979215808826,2.10781691258501,0,0,0 -"Tfru06201_t",0.0507922471411411,0.0815399093312993,0.0218699262295749,0.499116696710522,0.373680578419415,0.130065120551585 -"Tfru06202_t",7.89653672003161,5.28199778200924,5.28898184618316,4.7646885649425,5.12604124437236,4.0120796231317 -"Tfru06203_t",0.1078438726206,0.0865641912926631,0.0928699819864363,0,0,0 -"Tfru06204_t",0,0,0,0,0,0 -"Tfru06205_t",0,0,0,0,0,0 -"Tfru06206_t",6.31166043101548,6.98792798103467,6.74726884670368,0.675379615237964,6.40484639073277,4.29936946972072 -"Tfru06207_t",21.4763369190166,20.2807533885668,20.670204562124,14.374244843611,19.9553031399898,16.4060873972662 -"Tfru06208_t",19.9524644832188,13.4867010033969,12.2083395695045,11.4054732523311,14.9972303906533,14.2137950848498 -"Tfru06209_t",0.104231236689141,0,0.0897589528131934,0,0,0.152518758874386 -"Tfru06210_t",11.5481210462325,10.543118832666,12.6775808673258,10.4862193495674,11.0634915279709,13.1572635934743 -"Tfru06211_t",24.9480120417525,28.3894014945411,23.5319055539981,11.4493587338059,15.6055960271431,23.2194307321468 -"Tfru06212_t",9.1752987693054,7.53611013977912,8.05882975399209,6.90524194418553,6.04189780438863,5.82089282100311 -"Tfru06213_t",0,0,0,0,0,0 -"Tfru06214_t",0,0,0,0,0,0 -"Tfru06215_t",4.74144415800697,5.17276091743959,6.12465719438133,4.90446574859874,7.80315499441421,18.9329973630535 -"Tfru06216_t",7.36583872166719,9.26811206394575,5.31449572272619,2.67697860131446,2.06769225549722,6.11737562253048 -"Tfru06217_t",10.9723937248285,10.7371930613338,11.0404352610227,7.93467154112738,6.88838546981821,9.12067701782126 -"Tfru06218_t",2.53181957393403,3.87973590508679,3.35222524481409,1.42847414510605,1.96381961899086,1.85237166600042 -"Tfru06219_t",6.86663231599706,5.83864437129101,6.72587940003208,5.07277368439458,4.20536601208519,3.87826048696814 -"Tfru06220_t",6.1577838758346,5.47936431883648,5.32526049364137,3.59521449167196,4.58738673484815,6.0254996352485 -"Tfru06221_t",2.40188393511349,2.58078076404192,1.81326957990004,1.27286866011017,0.593639195626296,2.16007999132669 -"Tfru06222_t",0,0,0,0,0,0 -"Tfru06223_t",0,0,0,0,0,0 -"Tfru06224_t",0,0,0,0,0,0 -"Tfru06225_t",0,0,0,0,0,0 -"Tfru06226_t",17.2895335694638,17.2404790705255,16.9877973123893,13.0781578198815,11.8662665252017,13.2626330359727 -"Tfru06227_t",16.1241290204741,19.046104470446,20.5913106515815,27.1973480680814,28.387738567021,20.1085255702435 -"Tfru06228_t",6.95627323585234,6.7648261402389,7.37281181833721,6.98788473451891,6.71560982557724,8.56400117007651 -"Tfru06229_t",0,0.109886211325885,0.1979691656674,0,0.078993855859119,0.100160336490567 -"Tfru06230_t",0,0,0,0,0,0 -"Tfru06231_t",0,0,0,0,0,0 -"Tfru06232_t",0.842913479312182,1.35318070268197,0.967835665116173,2.3250526776531,1.70233080343891,1.23341257176678 -"Tfru06233_t",0,0.301042433111538,0.645943892566374,0.387941267086092,0,0.54879517702123 -"Tfru06234_t",19.5792778921886,19.2826386246915,16.2628386306959,10.485315040317,9.85543013901184,17.5759592561378 -"Tfru06235_t",0,0,0,0,0,0 -"Tfru06236_t",0,0,0,0,0,0 -"Tfru06237_t",4.09307560396821,3.20329682784701,5.02278417800698,3.17535361122843,3.98553348882382,3.14437577674527 -"Tfru06238_t",0,0.0903934383605692,0,0.349459157482378,0.487358205886857,0.164785683180637 -"Tfru06239_t",2.87964033642815,3.81888702033594,4.85179913343446,5.30976542014705,4.76812093890617,3.48088267273078 -"Tfru06240_t",2.88365137659431,2.62327136221679,3.47656758653573,3.57935741165017,2.99507825567447,3.09435083794121 -"Tfru06241_t",0.196745613047886,0.0789619496686002,0.0847139531234589,0.101755086448811,0.0851450167661816,0 -"Tfru06242_t",0,0,0,0,0.238406046945308,0.403049572631985 -"Tfru06243_t",0,0,0,0.539744371598041,0,0 -"Tfru06244_t",0,0,0,0,0,0 -"Tfru06245_t",0.0441230970438274,0.106250270509955,0.151986798250912,0,0,0.129128276946172 -"Tfru06246_t",0.638862180771463,1.21790550886189,0.618927227858275,1.65206927428298,1.52063172528804,1.51909843677359 -"Tfru06247_t",0,0,0,0,0,0 -"Tfru06248_t",0.309316556595904,0.297938902873275,0.319642338589546,0.703893433063425,0.749627261013598,0.497876036885239 -"Tfru06249_t",0.108260794808566,0,0.0932290154219509,2.01569483104526,0.655923853386899,0.0792075513226517 -"Tfru06250_t",54.6685172373022,56.8350405336166,51.1340584365411,42.4111085223237,47.7184603338969,47.1721736718983 -"Tfru06251_t",0,0,0,0,0.0482187296540577,0.448352558415222 -"Tfru06252_t",0,0,0.134973350685511,0,0,0 -"Tfru06253_t",0,0,0,0,0,0 -"Tfru06254_t",2.29085068531886,2.74316001633688,2.26383554658935,2.05884609872422,1.82028398829945,2.19812462499339 -"Tfru06255_t",3.79279353369966,4.41438294693579,3.75609812020537,2.74623885684421,3.44693167197449,2.63619895417873 -"Tfru06256_t",0.111715926557776,0.269016642354992,0,0,0.483469709563292,0.408677259483894 -"Tfru06257_t",0.476789879520133,0.2296260102735,0.492706351651082,0.394546396491644,0.165071156227739,0.837208533389935 -"Tfru06258_t",48.140249476196,48.2260880871328,41.2131722746769,37.1034235255838,40.4870034117109,43.9920601667247 -"Tfru06259_t",0.492729482530484,0,0.212157524831184,1.27417659570799,0.85294832044949,0.180249442306093 -"Tfru06260_t",0,0,0,0,0,0 -"Tfru06261_t",0,0,0,0,0,0 -"Tfru06262_t",0,0,0,0,0,0 -"Tfru06263_t",8.26383880888906,6.78688903513138,6.81418061523874,6.96378885209155,6.5450744790891,5.92940569536648 -"Tfru06264_t",1.85863665423556,0.447567511174677,0.800284468666304,1.15352447558342,0.321742673974863,1.49583110196937 -"Tfru06265_t",18.329536750134,18.3909559137231,17.3022621404632,11.5460002288001,11.6952337015478,13.3675759482542 -"Tfru06266_t",40.4535455429793,36.8304367770866,34.5503287337877,25.9091539643355,27.2437094807422,22.3804175621111 -"Tfru06267_t",0,0,0,0,0,0 -"Tfru06268_t",0,0,0,0,0,0 -"Tfru06269_t",1.32345114092006,1.66274395932291,2.03162627031835,2.91646804625818,2.58980815380314,1.43137810554578 -"Tfru06270_t",1.10428200002914,0.818202285342583,1.24355629064345,1.75730725636572,1.32340667111197,1.24297390953241 -"Tfru06271_t",58.5220544677766,65.1731640666946,61.4332336706701,177.307997632981,111.898700689257,59.2462953118028 -"Tfru06272_t",0.938663427613938,0,0,0,0.40622259395709,0 -"Tfru06273_t",3.67074789670377,3.80986351968559,3.61265419043524,3.26844242948334,3.24698504558435,5.08601727436576 -"Tfru06274_t",1.47149240570081,1.47981720290947,1.44196212618803,1.31214279988853,1.47857827182408,1.58395966534656 -"Tfru06275_t",2.61443081238944,2.37836013545381,3.45218146732568,4.50720144332389,6.18520252500224,5.61091832439963 -"Tfru06276_t",1.42557105112462,1.22319406408808,1.48162671671164,3.96612628351562,3.36126021132078,4.74744756997183 -"Tfru06277_t",0.0667278608192593,0.214244654541651,0.172388520970851,0.828265389934405,0.693062852914876,0.537025939706239 -"Tfru06278_t",1.58286155009793,1.27053236018812,1.29493038472091,1.2279629367963,0.548008247335424,0.694847591065975 -"Tfru06279_t",1.685021883668,1.1593152724983,1.8656488358364,11.7027096271701,7.70891759248655,10.655117820905 -"Tfru06280_t",10.3561178738996,11.4590345506973,10.4184498801028,5.45620620804955,5.151960167715,6.97500966923756 -"Tfru06281_t",302.688133621305,220.819567175021,320.264766506581,458.099576713387,373.987921673026,253.199350926571 -"Tfru06282_t",15.2534969806223,23.8037165175162,21.4703415129159,10.4118430392138,18.2287241056063,18.4678428602757 -"Tfru06283_t",0,0,0,0,0,0 -"Tfru06284_t",0.399099177061508,0.160174596239868,0.257763833613185,0.516026388523068,0.431792424693106,0.437993300425494 -"Tfru06285_t",0,0.126754708678542,0.203982281863066,0.0816718457023352,0.273360316986162,0.231071653482623 -"Tfru06286_t",0,0,0,0,0,0.0873083236170138 -"Tfru06287_t",0,0,0,0,0,0 -"Tfru06288_t",0,0,0.103647157546467,0.373490732782026,0.520872810303145,0.176117649932314 -"Tfru06289_t",0,0,0,0,0,0 -"Tfru06290_t",0,0,0,0,0,0 -"Tfru06291_t",0,0,0,0,0,0 -"Tfru06292_t",0,0,0,0,0,0 -"Tfru06293_t",0,0,0,0,0,0 -"Tfru06294_t",0,0,0,0,0,0 -"Tfru06295_t",49.81951903665,45.9976888526451,48.303069842194,49.0212020867945,53.4518988035325,48.7353906028534 -"Tfru06296_t",69.2517970683553,79.2799315740224,78.2115848296583,54.6053545671451,68.7833662470586,59.388537534946 -"Tfru06297_t",30.388817735296,31.7102713207057,32.0786138478703,35.0840139606073,26.9813331309515,23.0225019886432 -"Tfru06298_t",7.28881803608316,6.93403650560253,6.5557493260978,3.18331240241338,2.94406953216844,4.34521631163338 -"Tfru06299_t",1.16357862564332,2.4283533662626,0.200403645339152,1.92573615129717,1.10782865304918,1.61750157437836 -"Tfru06300_t",16.1727293262107,20.4415154581103,13.0449156840234,8.93211112510417,11.274446244478,17.1866587145185 -"Tfru06301_t",23.9089584023179,34.33298558306,24.1782027254087,19.7394240547618,24.6809393247558,27.9240741769967 -"Tfru06302_t",0.995383611036107,0.159795035585272,0.514306037683179,2.26513573957377,4.65230757486875,5.97172382199404 -"Tfru06303_t",8.84754952218984,9.09290372768394,7.40546698879245,4.4475786210815,4.43726215328325,5.6867279760625 -"Tfru06304_t",0,0,0.0630738587335954,0.0378809258183455,0.0316974038004878,0.0535876720369466 -"Tfru06305_t",13.5612777073115,13.8439646061359,14.6128764040181,5.75489031968772,14.4464591360899,15.5697916447612 -"Tfru06306_t",1.68497633638097,1.25042260958647,1.58790975444131,0.690586838362527,1.05940700331326,0.755956270333879 -"Tfru06307_t",1.06697671033255,1.0367450637638,0.483594358071082,0.638962086965328,0.340238576355771,0.657380318998692 -"Tfru06308_t",2.54343914417238,3.49137794349876,2.35470564361919,2.84500282035094,2.87102921829373,3.07761017480798 -"Tfru06309_t",1.47818844759145,2.32358851598114,2.43981153555862,1.91126489356198,1.75920591092707,1.26174609614265 -"Tfru06310_t",5.12865170267606,4.63893360253516,4.77910196595805,3.72140834613429,3.31270361359085,2.85623512632826 -"Tfru06311_t",1.721524114169,1.71347430780862,2.13479161871116,3.70388514673672,4.70851942716984,3.92973333316185 -"Tfru06312_t",144.282900746641,166.90340413719,151.859575768911,180.46335557386,212.57176830388,204.676936110745 -"Tfru06313_t",0,0,0,0,0,0 -"Tfru06314_t",1.6580995415417,0.887282960749781,1.42787597304143,1.14340583983267,1.9135222189031,2.83062775516208 -"Tfru06315_t",13.0724666994136,12.8970358249973,12.4739586499903,12.0801083347346,11.1353263832762,11.6452859984953 -"Tfru06316_t",11.8248276412433,10.45312382278,10.2162533587867,11.3520108771614,9.43206260246825,9.66929644002814 -"Tfru06317_t",10.1306630812628,13.189200245969,10.5326851187882,34.2483678613416,37.4262433991348,32.2691564088483 -"Tfru06318_t",17.9406143413358,23.4701829576569,19.1634442706344,37.4717807058106,30.6831519659437,29.0917788295278 -"Tfru06319_t",11.1010352284779,7.27852511196084,8.99258059617599,6.42253493012406,6.02555932760987,6.75679891679729 -"Tfru06320_t",10.1737337007624,8.41372172688982,10.885043503357,10.5235297111941,10.5401719287105,8.23293461894601 -"Tfru06321_t",18.8931633350635,18.5515756160263,20.2188900520339,23.3374624252315,23.4970501290638,23.7539641687093 -"Tfru06322_t",0,0,0.36172857983717,0,0,0.307325299131889 -"Tfru06323_t",5.04138630876223,4.83065664422288,5.52843247956797,3.88710473776545,5.72242466579118,4.97751486486675 -"Tfru06324_t",79.9494522145195,79.0459212887916,74.4221035858346,53.6882584975218,65.1349088833281,81.984362275969 -"Tfru06325_t",104.314999556087,121.319191050194,122.834720162229,17.5897961825621,26.9107127764172,19.6836747480243 -"Tfru06326_t",7.1097767522818,8.89601933018091,4.81704518264806,4.32601587192456,4.02708907550118,4.24556418215801 -"Tfru06327_t",548.504610115287,507.247252755748,614.568215163628,499.445914693336,549.944979554249,427.108743366911 -"Tfru06328_t",706.011700137221,913.519738728773,602.521037460121,577.011374772391,513.146515040078,429.391993888049 -"Tfru06329_t",10.9139382814551,10.5449346257514,10.7909407938594,10.6620073019844,7.93029897938363,6.40774480948605 -"Tfru06330_t",0.298261692679695,0.159605929034283,0.342464927656492,0.205677736869313,0.0860518867672415,0.509178010396028 -"Tfru06331_t",0.117332928451742,0.0941808729287494,0,0,0,0 -"Tfru06332_t",0,0,0,0.646088058195425,1.08124675566274,0.228494646194713 -"Tfru06333_t",4.67196230781558,4.84103018827695,6.87613478355792,5.44765249473372,5.66123964864567,3.04528607835441 -"Tfru06334_t",16.0590449177945,18.8544464812111,14.3452988865525,24.9167868891358,23.5464231958037,26.3922724789439 -"Tfru06335_t",5.43254168498967,8.31627983350341,5.81439010546582,38.3719605999465,45.1732658698102,56.6387040894335 -"Tfru06336_t",1.09612793550817,0.691303406511492,0.80908536030681,1.94368336612752,0.948736086166325,0.515550362010624 -"Tfru06337_t",0.0714677811751998,0.0573658060544318,0.0615446328944567,0,0,0 -"Tfru06338_t",0.0552699847180575,0,0,0,0.0478380554725783,0 -"Tfru06339_t",169.917762050637,170.759036897848,157.993708741783,250.605052843847,272.442355405573,199.959718822264 -"Tfru06340_t",1.27529983713772,0.895701205159188,1.64734078104214,3.29786883595008,1.6557232102843,3.96548773073405 -"Tfru06341_t",23.059811018033,24.1847512733881,21.1240509821661,11.6164675013611,16.0642560861919,14.3252637989932 -"Tfru06342_t",378.43384006493,369.330510196711,377.397928456844,257.492887469788,250.644956452086,291.038474523517 -"Tfru06343_t",32.7694189767623,33.4016426719643,34.9451515396065,16.1145421165206,20.029391450201,22.2519842755603 -"Tfru06344_t",123.958560508534,136.456403859312,131.910907283413,3.20153635153154,11.93039505177,16.6813640627194 -"Tfru06345_t",0.882255998766659,0.944226441311336,0.928591453490983,16.2238214846739,16.8845449467275,7.60244613955197 -"Tfru06346_t",0,0,0,0,0,0 -"Tfru06347_t",0.784477202449849,0.686928743806295,0.245656081383477,3.46710157884752,3.70359139142542,4.01766520087528 -"Tfru06348_t",11.5591673199043,5.63326577537463,11.0207233169064,7.89989489338951,5.18108473029792,5.28569310546246 -"Tfru06349_t",0.335705801284505,0.269464555512426,0.072273442524909,4.51422565336543,6.10186106167712,5.7719436799995 -"Tfru06350_t",26.3447174544609,13.6276769720735,31.2573825085777,81.7515255518009,115.784762555651,116.719364478662 -"Tfru06351_t",0,0,0,1.69945587667441,2.18046730028858,2.1636983250485 -"Tfru06352_t",21.7266995234065,20.3085370185059,22.6052875424079,15.4455547357847,13.0619702103728,14.0073604264906 -"Tfru06353_t",3.61679397827877,4.18276512019445,4.46483045377431,4.60216928560839,3.55507173664237,4.35554900363857 -"Tfru06354_t",0,0,0,0,0,0 -"Tfru06355_t",0,0,0.184555397876107,0,0,2.66557657410312 -"Tfru06356_t",0,1.00148769827205,0,0,0,38.3395917728891 -"Tfru06357_t",7.51226291029316,7.98331167707374,8.01816499387177,3.28333163075383,4.76211574880679,12.1536705198253 -"Tfru06358_t",0,0,0,0.0677309772621081,0.0566748591725012,0.0958145905321554 -"Tfru06359_t",0,0,0,0,0.0895490693575358,0.0756958864856868 -"Tfru06360_t",0.778674964925878,0.763922301943183,0.894076819370965,0.626459224295564,0.748855245296797,0.822910172752739 -"Tfru06361_t",1.08591556343822,0.554682179928193,1.44521406750455,1.22536560038474,0.598116228235292,0.866722347728005 -"Tfru06362_t",16.3620864743081,24.2804764381941,16.4583543690234,19.0580115758693,32.0131327686216,26.5577345239995 -"Tfru06363_t",9.33942780413127,10.4595113657896,6.93201407628668,10.2125692586856,7.08276726022801,3.67684052958215 -"Tfru06364_t",0.252662787282549,0.50701883471417,0.108790550326968,0,0,0.0924286613930492 -"Tfru06365_t",1.1772154706827,0.89584092197268,0.961098683461815,1.92932828879504,1.20417831355178,1.12974905231377 -"Tfru06366_t",3.9768225690626,3.19211858068566,4.06677101592084,824.767724845944,745.209339404311,376.428029114207 -"Tfru06367_t",1.27436977599629,1.49502519874295,0.928591453490983,367.063961090747,289.667519839838,151.977201601044 -"Tfru06368_t",5.11353962364809,4.7150841459489,5.00550466265844,7.77868561716617,5.98422830836436,2.49013545770995 -"Tfru06369_t",0,0,0,0,0,0 -"Tfru06370_t",0,0,0,0,0.113721996118735,0.538323952185979 -"Tfru06371_t",4.94178686890867,5.01053907246944,3.58368871665307,3.76651335474299,3.60192417675884,6.2797119946454 -"Tfru06372_t",0,0.322648349363563,0,0,0.347913130709661,0 -"Tfru06373_t",0,0,0,0,0,0 -"Tfru06374_t",103.555648101948,122.756503010511,92.1300546197526,106.406747543614,77.4625035391073,67.9878825018301 -"Tfru06375_t",3.13228981279403,2.22959882926365,3.25721127113315,1.25320175762176,1.09978730414623,0.540494722356469 -"Tfru06376_t",1.64082767131733,1.29311408768365,1.28454751362631,0.308589644273028,0.387325165047864,0.327406213563802 -"Tfru06377_t",0,0,0,0,0,0 -"Tfru06378_t",31.1971774658922,36.5772836670709,34.5126294531708,27.1936576650056,28.5191990233185,31.7156289229293 -"Tfru06379_t",0,0,0,0,0,0 -"Tfru06380_t",0.0960118591673685,0,0,0,0,0.0702457826587174 -"Tfru06381_t",33.0487102009992,36.447530810833,34.5585320902288,42.084894613875,45.9118818671039,46.2257887950444 -"Tfru06382_t",0,0.0903934383605692,0,0,0,0 -"Tfru06383_t",0.928291456038093,0.74512160239762,1.1991002646536,12.9628109576612,10.8468165557714,14.4324035503926 -"Tfru06384_t",1.26648809203187,0.169430917128102,0.72709262278828,8.29687453627341,6.75982974818544,5.40521882895281 -"Tfru06385_t",18.6884335467426,17.8041520293063,16.7921189727151,30.8345748710723,19.6282316242011,12.7688073693697 -"Tfru06386_t",3.27313156252393,3.50303922166154,4.46288507591313,5.6427820667068,3.06909083161736,5.18860894638253 -"Tfru06387_t",6.53591166533083,6.26990843611432,6.17752792890802,3.9574426031401,6.07098510437578,6.41475956442272 -"Tfru06388_t",4.45547077750753,3.97368915833734,4.73210045514741,6.04246527496735,5.65599731880855,4.70857853708256 -"Tfru06389_t",14.7405711266185,14.3424450618837,15.52774674212,15.9225463276928,19.3730961068231,19.5597778599318 -"Tfru06390_t",11.8242233162246,11.1315082130557,12.0052404429017,9.21082445432556,9.98157028870062,10.7870912988083 -"Tfru06391_t",0.705969551577806,1.700004325454,0.6079471920362,5.84193907152939,3.05520353792467,22.7265767063607 -"Tfru06392_t",0.258758860692343,0.830802936554225,0.51993841044357,3.56874101960101,3.8073984191317,21.3928698985031 -"Tfru06393_t",0.103503544276937,0.249240880966267,0.0594215326221223,0.642373383528182,1.01530624510179,3.53392541096217 -"Tfru06394_t",2.35543100252186,3.15109820218666,6.76128151616823,6.4971094825882,6.11611742984567,6.31883759902892 -"Tfru06395_t",18.8970266200307,20.3379905611461,21.8195166944746,20.8645075743691,22.359353981623,19.8842316540262 -"Tfru06396_t",12.8848151873972,15.0006275551763,11.5419974487518,20.9386194419362,21.6168213166713,12.8641922087279 -"Tfru06397_t",12.0960499506167,9.44358899055909,10.7793043848326,8.71478376491393,10.9643726568812,14.9700002442467 -"Tfru06398_t",0.464145728019047,0.37256080119881,0.71946015879216,1.92041643817204,1.92832294324824,1.42626105674468 -"Tfru06399_t",0,0,0,0,0,0 -"Tfru06400_t",20.8255065521126,24.2214781932845,26.8398946253549,19.9295830700012,28.570532421869,30.3697513138763 -"Tfru06401_t",4.89583100837945,3.67895129664888,3.76753883525384,3.28631709452223,3.9219494455634,3.42954456563794 -"Tfru06402_t",0.971842404811088,1.21345638848044,0.74391481714585,0.72601861809428,0.841162723476698,0.948047195265466 -"Tfru06403_t",2.93610110475183,2.28072733992056,2.85467875857969,3.52689783289994,4.75468204110767,4.98927204904081 -"Tfru06404_t",3.35809914041623,2.37016454573826,2.4929605777889,2.09611270431079,2.70609758317659,2.79579183221291 -"Tfru06405_t",41.7651587378053,36.6067598663631,44.6476418541878,14.8969446561059,11.1356058727483,15.3135806196004 -"Tfru06406_t",0.967570688905003,0.675348072278263,1.08681596345669,1.5230142884101,1.20158080245595,1.47737750208619 -"Tfru06407_t",2.52031130314342,3.98470711464,4.53804945613904,4.8189358849676,7.60190190600608,9.33151362818643 -"Tfru06408_t",0.725269439753503,0.485133129618594,0.832756442790606,1.12530876898642,0.627745418575416,1.32658402502973 -"Tfru06409_t",87.4594831491608,58.7324075954382,74.0429761660834,58.1024527642842,52.669558787756,40.9166234034831 -"Tfru06410_t",408.529415635319,297.872093641789,459.589548315614,47.2331161296344,50.868030422975,49.466437842854 -"Tfru06411_t",0,0,0,0,0,0 -"Tfru06412_t",24.3594444669685,42.2781938388005,28.5726317412647,15.5284722284305,14.9744815314757,10.9910867589788 -"Tfru06413_t",0,0,0,0,0,0 -"Tfru06414_t",14.0584822738554,14.173921436691,17.0915183061454,1.25794504671808,2.56835234708596,3.23874953341075 -"Tfru06415_t",0.244216211544905,0.196027630863327,0,6.56793587066686,7.18683345006642,3.03751749141983 -"Tfru06416_t",64.334262211819,57.4959358565869,61.3034751092466,59.6857848392666,81.7073987471638,73.7580717916533 -"Tfru06417_t",0.793382361954908,0.424555120778497,0.303654631552713,0.547107096499169,0.686699474149918,0.773956681969079 -"Tfru06418_t",2.66135858706459,3.21104494090491,2.20224479012602,3.27120187269428,5.45893045371929,2.86064852375353 -"Tfru06419_t",15.2233568646238,17.197806648626,16.5084184086753,15.7467703579634,22.9365817648376,24.338513622524 -"Tfru06420_t",0.472142564563711,0.300981507463786,0.159351797285097,1.40659050928458,1.12113856878466,2.84171653533369 -"Tfru06421_t",2.50362049981135,0.669869255135609,2.39555350885543,11.5097806393754,8.4271011627191,12.4151279781756 -"Tfru06422_t",0,0,0,0,0,0 -"Tfru06423_t",0.646109415661968,0.298206232530407,0.403388918103361,0.367578266525718,0.363499317876619,0.177268967005512 -"Tfru06424_t",0,0,0,0,0,0 -"Tfru06425_t",0,0,0,0,0,0 -"Tfru06426_t",8.55598865274565,7.46256911976253,9.34054552586757,5.57490577881537,4.48994868685691,8.57651997577363 -"Tfru06427_t",12.2556314348935,8.25068767266635,13.2775666951996,4.70276096006482,7.69911292782202,6.50806515808705 -"Tfru06428_t",4.85600424072611,4.18744206172041,4.12997197451886,3.43676529810843,3.43529973157413,2.88186214647655 -"Tfru06429_t",69.8529394541034,81.5085907519241,79.9577972882161,65.2670529344362,67.1156869285426,57.8896756790777 -"Tfru06430_t",0,0,0,0,0,0 -"Tfru06431_t",10.208855911467,10.4137817874331,13.1870672143171,11.8798419409452,10.6769695454747,10.114503515733 -"Tfru06432_t",0,0.146276583550943,0,0,0,0 -"Tfru06433_t",4.55628343559856,5.66120807349128,5.21362143301715,4.00276992369365,4.05166294492862,4.8404876237712 -"Tfru06434_t",4.69331713806969,5.27412888400997,4.95103363464282,2.54870910666617,3.14822510316745,3.51964728056074 -"Tfru06435_t",0,0,0.275083264686677,0,0,0 -"Tfru06436_t",88.2284710026498,94.4492293072619,92.7024080126637,167.798395089087,155.239493989215,121.387063757533 -"Tfru06437_t",0,0.149189170391559,0,0,0,0 -"Tfru06438_t",0,0,0,0,0,0 -"Tfru06439_t",0,0,0,0,0,0 -"Tfru06440_t",46.4841277813196,45.4738909912807,43.99119904648,104.178441014843,66.636894793157,40.7405295679161 -"Tfru06441_t",55.2930405633629,49.1491015708961,57.2562271213874,158.894989060782,102.962129498246,48.5737784491189 -"Tfru06442_t",0,0,0,0,0,0 -"Tfru06443_t",0,0.704879843383114,0.252075665391756,0.302783427969633,0.25335834257254,0.21416397152048 -"Tfru06444_t",4.74716170112631,6.35075817796944,3.46863021761669,2.52958963195863,1.86765011091573,3.47319687375079 -"Tfru06445_t",8.44669549060749,3.48162118294214,5.30797372587151,4.48662508890872,2.56869558733192,4.00859085824203 -"Tfru06446_t",4.51478315631593,4.40556091786411,5.33635418094876,3.98324521231494,4.02263100812618,3.95086264426664 -"Tfru06447_t",0,0,0,0,0,0 -"Tfru06448_t",9.41495573691114,7.66914595868263,6.18582794081624,5.13303039610828,6.17646418116894,6.07855956714625 -"Tfru06449_t",9.24884854437869,7.42387189162877,9.29211003196359,7.97237075671715,16.0103872646416,10.7140926792753 -"Tfru06450_t",0.108680953132532,0,0,0,0,0 -"Tfru06451_t",0,0.087265547868267,0.0935908356629158,0,0,0 -"Tfru06452_t",0.434723812530129,0.174472199267748,0.467954178314579,2.24835300976157,1.22287189668583,1.51078413544783 -"Tfru06453_t",502.539988795906,775.44711048779,505.395865170007,603.32204086429,705.974844100735,269.562224436747 -"Tfru06454_t",0,0,0,0,0,0 -"Tfru06455_t",0.330099712265019,0.397446984383013,0,0.512173932184389,0,0.36226950781755 -"Tfru06456_t",0.517305275686253,1.328739015113,0.890957093194999,7.91935276258505,9.04445600511111,10.0675529025963 -"Tfru06457_t",11.8223557929969,10.9273910048845,9.2553154755779,5.9291322014352,7.28688844981023,7.6012227503836 -"Tfru06458_t",16.2044639189796,14.3907343127901,11.3813369853008,8.55912004865184,9.84770258209793,9.33327173834189 -"Tfru06459_t",19.9896073346852,15.8284432998067,17.4467160693169,12.8532051963186,13.5607812555065,11.0676635057143 -"Tfru06460_t",0,0,0,0,0,0 -"Tfru06461_t",0,0,0,0,0,0 -"Tfru06462_t",65.3913746390174,85.1582646333333,67.3496788369205,84.2937393014131,106.268091535873,103.38502032895 -"Tfru06463_t",0,0,0,0,0,0 -"Tfru06464_t",2.7020881417717,2.00291131834806,1.90383463072194,2.15976658635064,1.80721542896407,2.71443591532624 -"Tfru06465_t",0,0,0,0,0,0 -"Tfru06466_t",2.6325832352343,2.85893200993667,1.93366429774708,4.56519271719376,5.16033733871942,6.23148071972493 -"Tfru06467_t",0.0761308353162188,0,0,0.748109665934938,0.922513656961003,0.58485104501764 -"Tfru06468_t",6.38053494466689,7.25550370435909,7.78403273067326,269.496414401072,350.223009659751,279.704924146617 -"Tfru06469_t",0,0,0.485541717902214,17.4964115088483,26.3526684106645,23.9259964424812 -"Tfru06470_t",0,0,0.10189537460202,1.22392737784908,1.3313802480819,1.47169861556116 -"Tfru06471_t",9.92849885066016,12.2606370012627,9.86532468373566,6.3199157731896,3.96620960127472,6.7052791036352 -"Tfru06472_t",138.294004839152,173.355979820587,137.568161439613,88.5031301748653,117.796427795677,94.7507537631238 -"Tfru06473_t",4.29820532319033,7.13540576342511,4.29026920271992,5.6585293654976,5.3267118512257,4.14531798829059 -"Tfru06474_t",27.4872661325934,37.7565477399246,26.0044509007366,27.6314296040675,24.2937959128025,26.342168497019 -"Tfru06475_t",1.52054980581805,1.52564490988653,0.327356180848117,0,0,0.278122442653293 -"Tfru06476_t",5.35666589403491,3.9413844590161,4.22849561977563,1.10816804030544,0.927275379192166,0.718507606897083 -"Tfru06477_t",128.4303868798,158.331013292527,131.229218524891,24.386891875887,54.1228614290665,61.4650598263777 -"Tfru06478_t",4.84844776750221,3.60871852661722,3.64385557863256,21.9754683760499,19.6090849840588,13.8022274951152 -"Tfru06479_t",0,0,0,0,0,0 -"Tfru06480_t",139.615034988129,131.215914182221,156.682434581404,57.6124931451611,67.2502626457824,77.3576830301041 -"Tfru06481_t",0,0,0,0,0,0 -"Tfru06482_t",22.6828017282908,21.5787216054351,14.830871773324,12.1658381358199,14.1791996420722,15.3662649565944 -"Tfru06483_t",1.88082933068049,1.00647022412149,1.11504939460945,1.29699766904771,0.542640629234391,0.917388952621014 -"Tfru06484_t",0,0,0,0.129506473662123,0,0 -"Tfru06485_t",0,0,0,0,0,0 -"Tfru06486_t",4.08647760313602,5.26347493910853,4.82850366750973,68.4180942350567,46.1453242789332,23.5013464042032 -"Tfru06487_t",13.7854865358553,15.621661393896,15.7819805102703,20.298764677802,20.0735130067946,21.2398565809297 -"Tfru06488_t",2.80547003857075,3.45496457543562,1.9526062406581,2.10687956214368,1.69643461126911,2.41811305812831 -"Tfru06489_t",0.240029647918421,0.963335785956923,1.0335102281062,0.744847232805297,1.86978456818535,3.16106021964228 -"Tfru06490_t",0.852897226106066,1.36920822369512,2.20342282134317,1.76444352948801,2.58374066105702,3.12005379829329 -"Tfru06491_t",2.36184779416295,2.05011963601816,2.24676136544826,2.30101547891796,2.87622594394135,3.27518952327544 -"Tfru06492_t",6.35840126936215,6.60299694347957,6.7075498247952,3.98731686435507,3.8523891029573,4.91371575717021 -"Tfru06493_t",44.2279866856467,43.1867223446631,48.7867311205083,50.4650002144882,44.2992077325987,34.7773812043413 -"Tfru06494_t",16.6394342674646,18.0759953880227,18.8540585172017,14.1703997008007,12.6694263369223,13.272425427885 -"Tfru06495_t",4.53199090028762,4.93049256477284,4.58006761808989,2.20830766747892,1.91266911046849,2.4114691327335 -"Tfru06496_t",7.96650124556829,7.55720314845517,8.57546202200186,3.5583578291345,5.64159136952475,2.78182382834899 -"Tfru06497_t",0,0,0,0.730242383941173,1.22208141516987,0 -"Tfru06498_t",0,0.0833885057918193,0.119283950482166,0,0.0599454611033133,0.0506719372022899 -"Tfru06499_t",0,0,0,0.0825511499309227,0.115126415956807,0 -"Tfru06500_t",14.4637664455864,15.9634552766176,13.4934620886175,8.78962480605964,10.5888883763406,15.0796631711773 -"Tfru06501_t",325.857193566851,326.793139697695,350.114551855776,271.740531700706,275.048019812772,170.005366141854 -"Tfru06502_t",2.37524594666901,2.40559752242753,2.41609981219514,2.55584834786131,1.97307015892213,2.77584141151383 -"Tfru06503_t",0,0,0,0,0,0 -"Tfru06504_t",6.78420009975383,7.35638220075761,5.91919481024139,3.9499473582435,1.13199029965891,0.558773258636267 -"Tfru06505_t",34.7477474604416,41.6604900104931,38.2561115848735,37.3073570357976,43.0191853820422,53.7417015235868 -"Tfru06506_t",0,0,0,0,0,0 -"Tfru06507_t",18.8648694953722,19.0342212482359,18.3711052089391,26.6258786962929,24.4922812446804,23.4121896295646 -"Tfru06508_t",3.7647803698408,2.96595499244828,4.50284539216394,2.81249370063411,3.43957603829393,4.13167622069427 -"Tfru06509_t",6.70145244789057,7.32338881972057,6.11861893813953,4.92746927997097,2.83028418538387,2.27429582250412 -"Tfru06510_t",4.61154812826561,5.15005288912532,4.31657016512136,7.05145749433813,3.9914520747526,4.10745029866009 -"Tfru06511_t",17.2256570859102,18.700047609752,15.6850375794941,14.7508961790853,14.6038729345195,16.7866760030023 -"Tfru06512_t",4.81929215190315,4.96677374062776,5.02116158980774,15.2011433607219,23.5341549953766,16.8463018079378 -"Tfru06513_t",0.0903823311150591,0.0725481495610378,0.116749407155622,0.0467449401975711,0,0.0330635071685733 -"Tfru06514_t",9.69942651790077,11.6989098502282,9.05978727753448,6.21085200231662,3.77561195299763,3.04133771895943 -"Tfru06515_t",8.77720354317563,6.03882134472896,8.09840104102924,1.29699766904771,4.88376566310952,3.66955581048406 -"Tfru06516_t",11.3476516735452,12.728723729418,12.7906672166485,13.0050134915831,11.7946425402405,8.97977064293819 -"Tfru06517_t",12.1770359947976,12.7334544048029,12.6989820581134,14.2135077004734,15.1809488802874,16.3470903793558 -"Tfru06518_t",2.22014737768096,1.81771075891449,1.98836005830157,2.06683296629377,1.96004548638175,3.83344453462609 -"Tfru06519_t",3.30377886179849,4.3566590319962,5.28367588526203,6.59064264982215,6.53607589378149,6.56087717247852 -"Tfru06520_t",0.0839264503211263,0.202098416634319,0,0.434060158977446,0.217923609345612,0.122807312340415 -"Tfru06521_t",23.1814729486989,22.357632679428,25.3790319115704,6.50579579455607,9.72110218159346,12.2930119652755 -"Tfru06522_t",0,0,0,0,0,0 -"Tfru06523_t",45.4862813458665,62.8829409451991,46.8791103466955,128.805073960253,133.153809732304,93.9925441307078 -"Tfru06524_t",0,0,0,0,0,0 -"Tfru06525_t",0.136159443713853,0,0,0,1.53205830816556,1.1954306611289 -"Tfru06526_t",12.8767450181205,15.9206420991892,11.9830975768061,7.51905941645232,4.76370055484661,5.31836117162724 -"Tfru06527_t",0.174114770510772,0,0.149939307704526,0.270151846095185,0.452106804051725,0.318471812571905 -"Tfru06528_t",15.6657564038681,14.6113306996749,12.8052120842836,10.7675989771919,9.56240594074508,12.6954377392068 -"Tfru06529_t",0.831785693136841,0,0,0.860384369448921,0.719938866141515,1.82569437334402 -"Tfru06530_t",4.85166309622341,4.09930121683797,5.71729062356621,11.3575996491588,8.84058897487162,6.35201226169253 -"Tfru06531_t",3.35482369802785,3.25386297086947,3.97239372200552,6.21738816068759,6.29138087279965,3.83517428201192 -"Tfru06532_t",0.283818840444079,0.683447685982952,0.977644810370729,1.76146305055307,3.43916831235293,4.5683490411497 -"Tfru06533_t",10.952642243842,10.8202758766508,10.882951542379,14.566138578499,9.89658339575976,10.1267648711081 -"Tfru06534_t",3.38296819213863,4.07316473256931,1.94216687160885,1.16642743392322,0.488012377975268,3.30013744034224 -"Tfru06535_t",2.85049346255618,2.73293187156488,0.954608881756904,0.900930520358276,0.548266498158862,1.56414384101055 -"Tfru06536_t",3.80953975813246,3.90277445504028,2.80577060732888,2.12580703873429,1.12801906460399,3.04391406061417 -"Tfru06537_t",5.34427457052099,6.23963034374026,4.81142592940042,3.9366223227782,2.83846813965486,3.70271444737215 -"Tfru06538_t",9.31292860283944,8.5654567573537,8.27046868449879,6.42208545605799,4.95394551360372,5.89099303185837 -"Tfru06539_t",14.5599757952142,10.9737192867347,13.3036060281856,9.47473154829629,10.6497086877929,10.2024997596266 -"Tfru06540_t",127.11429241877,144.093324603697,121.837755059843,164.181115400041,112.655251760776,56.394501571083 -"Tfru06541_t",18.9425877725924,17.9417217407084,18.0252573041746,8.62130581375541,4.50875021139521,5.26645382954307 -"Tfru06542_t",0,0,0,0,0,0 -"Tfru06543_t",0,0,0,0,0,0 -"Tfru06544_t",0,0,0,0,0,0 -"Tfru06545_t",2.26889338725807,2.95329219052487,3.11561842487489,2.28347326845419,2.70686573739728,2.37784538014454 -"Tfru06546_t",5.76153462641731,5.34005145816027,4.51191670521287,4.51628153195811,3.92710860870476,5.87514288096109 -"Tfru06547_t",0,0,0,0,0,0 -"Tfru06548_t",3.34847989499455,2.26197629299277,2.02705044739061,4.32093698588708,4.18951115646195,4.87548422458639 -"Tfru06549_t",4.4521628242933,2.95215805373896,5.50094153669428,3.20364401206579,5.52893286291366,3.96548773073405 -"Tfru06550_t",12.6934167686481,7.37344488257287,8.34205074773592,4.83731138601187,6.36065437376946,6.96522546740264 -"Tfru06551_t",18.1070909157877,17.4148663441921,17.9810711530709,16.8735619082106,19.34329450798,14.6800045798922 -"Tfru06552_t",0.0489001028937412,0,0,0.606976790411767,0.169298822627052,0.321993910615483 -"Tfru06553_t",12.740035158747,11.7082349370149,13.1971306050484,8.21241820785327,12.1456091608621,13.1035402267223 -"Tfru06554_t",0,0,0,0,0,0 -"Tfru06555_t",0,0,0,0,0,0 -"Tfru06556_t",29.8954144336096,31.4577755704117,35.9913251711551,26.3739681654794,35.6313975781898,32.0244609194259 -"Tfru06557_t",7.06924282374314,6.43430138028328,5.81592156913255,6.202396817124,5.62699170908104,7.15783942380807 -"Tfru06558_t",0.377211441565191,0.605560660832447,0.649672882324615,0.78036165079024,0.839544065253203,0.473111429067692 -"Tfru06559_t",0,0,0,0,0,0 -"Tfru06560_t",0,0,0,0,0,0 -"Tfru06561_t",0,0,0,0,0,0 -"Tfru06562_t",0,0,0,0,0,0 -"Tfru06563_t",0,0,0,0,0,0 -"Tfru06564_t",0,0,0,0,0,0 -"Tfru06565_t",7.60274902909027,7.93335353140996,8.51126070205105,11.0098082677103,19.7413151995436,21.4154280843036 -"Tfru06566_t",0,0,0,0,0,0.146694653523574 -"Tfru06567_t",0,0,0,0,0,0 -"Tfru06568_t",0,0,0,0,0,0 -"Tfru06569_t",0,0,0,0,0,0 -"Tfru06570_t",0,0,0,0,0,0 -"Tfru06571_t",4.84237761661341,5.76510816586212,4.75774534408656,4.47100434391832,4.30375945094886,4.11352237909607 -"Tfru06572_t",8.40103767713176,7.70668628764347,4.65079602647071,3.10353013668394,2.07753840909162,9.65879511555871 -"Tfru06573_t",0,0,0,0,0,0 -"Tfru06574_t",24.3228572454099,21.7547428869132,26.7971723666138,33.5455095656797,33.0821258617352,33.8396790772061 -"Tfru06575_t",0,0,0,0,0,0 -"Tfru06576_t",0,0,0,0,0,0 -"Tfru06577_t",24.9916452638173,24.6124577807987,20.4455284255791,7.85470098667676,4.65901061993806,4.14924316905754 -"Tfru06578_t",0,0,0,0,0,0 -"Tfru06579_t",0.6109845583378,2.14561152326769,1.38114548665101,1.02698633614064,0.925448927687697,0.94991456095311 -"Tfru06580_t",0,0,0,0.437777550767177,0.0915791490155152,0.309647656556059 -"Tfru06581_t",1.06342249077781,0.85358867110107,0.915768556549795,0.549992682451168,3.68171363637058,1.55607746395893 -"Tfru06582_t",8.19188321215359,20.5658199948065,6.90436293465137,148.19678345649,100.019250587231,32.9003847203433 -"Tfru06583_t",2.93742576123788,6.13031863790447,3.54139868371868,7.29221067081726,6.61034948348008,2.57895355914736 -"Tfru06584_t",18.7203315501712,21.3802240803507,17.0664240555914,15.5987608245676,15.9530373710755,19.6147096007148 -"Tfru06585_t",23.9013434337056,31.0045666589523,24.8707541767808,15.9670187218635,16.3775466457857,19.3086682435107 -"Tfru06586_t",6.92016879225024,6.10446685843942,6.8542328594392,0.781771999570736,0.531504063052093,0.673921094525929 -"Tfru06587_t",14.9521779849844,16.5234416266783,20.4819825007139,9.63944128547694,18.6600097174494,24.2705575638925 -"Tfru06588_t",0,0,0,0,0,0 -"Tfru06589_t",215.083709509757,169.753527425409,224.788474613098,54.3561135368627,87.8501955845814,89.5633728898647 -"Tfru06590_t",0,0.0573902170357316,0,0.591651702653853,0.247536491296405,0.627728270567262 -"Tfru06591_t",3.41968969218918,3.93438360343329,4.71179696938511,3.41935749116859,4.04513923616158,2.83556585359137 -"Tfru06592_t",9.08819379321727,6.76114298323328,7.94084903494789,5.86968443793796,5.64059900516776,5.38427437001514 -"Tfru06593_t",10.6166959656225,4.81667892978462,13.515133752158,20.5310455196332,18.7777510052802,29.0439293685082 -"Tfru06594_t",0,0,0,0,0,0 -"Tfru06595_t",0,0,0,0,0,0 -"Tfru06596_t",3.44703281860752,4.22124518517684,3.53926963964827,4.20552005897432,2.37151938334339,3.62129758051252 -"Tfru06597_t",6.38898438556978,7.57765833902551,8.29389025279322,10.1595697096598,7.8408799208176,6.13952924485952 -"Tfru06598_t",9.20338397215295,8.52389810607951,6.70620400821719,54.6779242059319,57.3949164422687,43.5089749332786 -"Tfru06599_t",14.0380436917091,13.2168670448258,16.4580472782528,13.458212938053,14.5750981015971,13.618416367608 -"Tfru06600_t",0,0,0,0,0.131967049579526,0.223103665431498 -"Tfru06601_t",0,0,0,0,0,0 -"Tfru06602_t",23.6824504251855,32.0159074264615,21.3602336461711,46.8016028327957,43.47726893217,27.5407241358547 -"Tfru06603_t",1.46582991095219,2.941483315899,1.73566603193407,3.88533543829735,7.45376375782114,16.0868204561948 -"Tfru06604_t",0,0,0,2.10458137394205,1.76103841708429,1.48860691767009 -"Tfru06605_t",4.87881444379828,4.52186235856529,3.85380354537197,5.31885549224867,4.83037445022466,4.84067841122716 -"Tfru06606_t",0,0.149189170391559,0.480170681199783,0.192254079263904,0.321742673974863,0.271969291267158 -"Tfru06607_t",0.490766938123166,0.716234785098084,0.729988636952334,2.16900990965607,2.62588497803808,2.28494646194713 -"Tfru06608_t",6.00074119796053,6.09818066339703,6.5424041962686,9.16822664232819,9.48234273875851,9.14322973826195 -"Tfru06609_t",1.48035906205194,4.15889458254531,3.82444313484232,5.74221434982057,3.20325305367044,5.41542377324914 -"Tfru06610_t",8.02400606677806,10.0878661130127,8.57492375678446,9.89986828412103,13.7227508264722,10.3974266909983 -"Tfru06611_t",10.7912488770047,10.2000259689557,11.4641470680688,10.8493154358194,11.6970649923827,11.732226305395 -"Tfru06612_t",15.2029502200341,16.1804254665419,15.4195292745603,35.9942932206849,28.5591908649698,15.4898542189799 -"Tfru06613_t",0.147645653376885,0.118512311101906,0,0.916332272343951,1.91688517535112,1.18825247467514 -"Tfru06614_t",1.17087633130937,0.646139856434521,0.819245912523206,0,0.0633395856431351,0.696032907441559 -"Tfru06615_t",0.846878798099268,0.679773236058312,1.31272468489295,0,0.219900738865884,1.11529342426895 -"Tfru06616_t",0,0,0,0,0,0 -"Tfru06617_t",0,0,0,0,0,0 -"Tfru06618_t",0,0,0,0,0,0 -"Tfru06619_t",0,0,0,0,0,0 -"Tfru06620_t",0,0,0,0,0,0 -"Tfru06621_t",0,0,0,0.100345085250906,0,0 -"Tfru06622_t",0,0,0,0,0,0 -"Tfru06623_t",0,0.221093459072081,0,0,0,0.604574358947978 -"Tfru06624_t",24.8282313208959,19.2878569580402,26.5673368073532,0.762828182829126,1.11703784249064,1.43883095423854 -"Tfru06625_t",6.03667377998425,10.0948360803869,7.79774184080126,14.0495136726748,10.0144815528224,55.9442460695175 -"Tfru06626_t",8.72968462783989,10.5519421053472,10.9668322493421,18.9095283633945,24.2675788495124,58.0837301293276 -"Tfru06627_t",16.6525019831831,20.29008133152,16.3153543428041,26.7143033249457,21.3178867022253,21.8501904071218 -"Tfru06628_t",2.53395567988125,2.69890478316238,2.05622974617417,3.37715924386779,4.21774038969368,3.35134316918765 -"Tfru06629_t",28.994731531209,16.709186925454,18.5665994970497,20.7634403636673,16.7306188880891,15.7742187439579 -"Tfru06630_t",125.108384728794,121.657544722299,129.819882098757,123.675863584902,152.901300205026,203.496171468709 -"Tfru06631_t",0,0,0,0,0,0 -"Tfru06632_t",5.02463513087044,4.79703683174743,5.73652029646621,5.43363862626428,5.3374004438458,3.84330686725878 -"Tfru06633_t",0,0,0,0,0,0 -"Tfru06634_t",1.6760174916997,3.86775714561258,1.98454582454307,1.95034811582434,2.53863795625054,2.14591231314037 -"Tfru06635_t",33.7668826732694,44.7379670088469,35.0342450205491,23.9866058022045,38.0295166410579,43.1594851081103 -"Tfru06636_t",0.664113650367173,1.19941016828629,0.428927169767395,1.20215791855927,2.44295524389609,0.850307151748308 -"Tfru06637_t",0,0,0,0,0,0 -"Tfru06638_t",0,0,0,0,0,0 -"Tfru06639_t",0,0,0,0,0,0 -"Tfru06640_t",7.6373069792225,5.80767028854413,3.46151751040354,6.23675912636014,5.91452322206423,8.52864466490409 -"Tfru06641_t",0,0,0,0,0,0 -"Tfru06642_t",0,0,0,0,0,0 -"Tfru06643_t",0,0,0,0,0,0.0748660899225063 -"Tfru06644_t",0,0,0,0,0,0 -"Tfru06645_t",12.6655580056392,9.51747945708844,12.647446736889,10.522634657514,10.3793618994874,10.7945854867496 -"Tfru06646_t",10.4161907959646,10.1077662813189,8.32851278717901,8.40482412517705,6.88529212934435,8.1457128816691 -"Tfru06647_t",1.6580995415417,0.443641480374891,0.951917315360955,0.571702919916336,0.478380554725775,0.808750787189166 -"Tfru06648_t",0,0,0,0,0,0 -"Tfru06649_t",21.1923327088502,19.30688260389,19.60724755198,14.8555354979236,15.4118988999912,11.959844858503 -"Tfru06650_t",12.0113439262382,15.9164127494896,10.3138715861543,11.0497913576601,10.0676111484279,13.6869607337291 -"Tfru06651_t",0,0,0,0,0,0 -"Tfru06652_t",0,0,0,0,0,0 -"Tfru06653_t",0,0,0,0,0,0 -"Tfru06654_t",0,0,0,0,0,0 -"Tfru06655_t",0,0,0.0513454336177671,0,0.0516067028518943,0 -"Tfru06656_t",0,0,0,0,0,0 -"Tfru06657_t",35.1985400214309,43.498719336857,38.6206453660737,33.9754878121714,25.3565259549233,17.2745980948388 -"Tfru06658_t",1.30393045986725,1.23451587178926,1.21912958171285,0.69364930771225,0.644912144730102,0.572401887518373 -"Tfru06659_t",0.200502092533287,0.160939152785166,0.172662806604854,0,0.347082789108922,0.293389307047149 -"Tfru06660_t",2.14354248877098,2.31616553051468,2.55588397922239,3.07002784865775,4.85234682398989,7.11764186409477 -"Tfru06661_t",20.4209838921365,19.2963568202448,23.1506291095788,14.5990057629838,18.7489850888466,14.0707706187154 -"Tfru06662_t",0,0,0,0,0,0 -"Tfru06663_t",0,0,0.0778748288131689,0,0,0.0661626047646692 -"Tfru06664_t",1.68180925853231,1.47852298893293,1.03449546187942,9.85792413293315,11.6453058584153,12.1875428445058 -"Tfru06665_t",0.477331686201406,0,1.23316561308126,0.493743430836845,0,0 -"Tfru06666_t",0,0,0,0,0,0 -"Tfru06667_t",0.44925335171897,0.721213957400905,0.386875486456866,0.697049549416722,1.16653226179121,1.31476063799738 -"Tfru06668_t",0.331184139703472,0.0886117017305974,0.285199931540475,0.799332334810765,1.33770541452887,1.77691368749055 -"Tfru06669_t",7.90610278721349,8.40984033494146,7.5279398405287,8.04495799778228,7.06553804776321,8.60604892748823 -"Tfru06670_t",0,0.317334141256398,0.170225214041021,0,0,0.289247340359425 -"Tfru06671_t",7.78860069909616,8.2288112302818,8.71358861097461,5.71521714553457,7.08700701359211,7.74401308430591 -"Tfru06672_t",18.190676623239,24.1868935350176,20.4481279841838,9.91077722988866,12.2591935875513,12.9025828065289 -"Tfru06673_t",0.719266924413077,0,0.743277903775006,0,0.124510007394382,0.210496780227321 -"Tfru06674_t",0,0,0,0.265339981152014,0.0555067513880298,0 -"Tfru06675_t",0.454110144710527,1.18464265570378,0.0977644810370728,10.2164856932078,8.64705175677308,7.72466292412585 -"Tfru06676_t",0,0.1301805116158,0.279327088677351,0.335516771533918,0.561496867322927,0.355975249959716 -"Tfru06677_t",17.1882217049206,17.1985677033229,15.4099619213144,13.6875421050824,14.9992683347205,11.610832489624 -"Tfru06678_t",12.6521651764228,12.1867780151177,13.0745269820664,13.3489187806973,18.1784610795798,20.7352009052841 -"Tfru06679_t",34.5535452423956,29.7735317814807,32.4177255517674,20.6684503715355,19.9700308311809,21.4037330538635 -"Tfru06680_t",40.5194743270647,39.6795222447208,41.8721185663605,34.0889355206711,36.9414385925865,35.5746326969389 -"Tfru06681_t",93.831308140504,95.6416050029626,90.4830926465934,87.1436293028545,95.9617917271337,104.663742718438 -"Tfru06682_t",0,0,0,5.49557905627096,9.48441447630248,4.85889800999033 -"Tfru06683_t",0.211081348671979,0,0.18177315569707,14.4103610366854,16.6255272185101,8.33948047895577 -"Tfru06684_t",2.16335734175401,0.868242553866755,1.55248317526682,0,0,0 -"Tfru06685_t",2.87818356101274,3.74872749286404,5.23769889356987,6.29131901012015,7.84952294838997,9.89321260295284 -"Tfru06686_t",2.39513177454907,3.0832963563441,2.41282108121619,0.140234820592713,0.312915951880878,0.694333650540039 -"Tfru06687_t",0,0,0,0,0.101555648489272,0 -"Tfru06688_t",0,0,0,0,0,0 -"Tfru06689_t",0.130959277897814,0,0.676655176624479,0.541847818096864,0,0.0479072952660777 -"Tfru06690_t",14.3581371209383,13.4867010033969,8.94456124688274,12.0078402379521,10.047731214895,11.3989747314373 -"Tfru06691_t",3.75950050956563,3.71406568079777,4.85625287905322,21.0890481577403,35.0428165389489,27.4000869105539 -"Tfru06692_t",0.0910188264046018,0.0730590520227352,0,0.376593039338178,0,0 -"Tfru06693_t",0,0,0,0,0,0 -"Tfru06694_t",0,0,0,0.0614126104786464,0.051387875843335,0 -"Tfru06695_t",0.881389927475153,0.7819456683361,0.679114948341456,0.335887303584203,0.240907269966822,0.2036390717605 -"Tfru06696_t",0.324722604859267,0.335119572144043,0.159791752550931,0.815726308704494,0.361360904950233,0.746676596455168 -"Tfru06697_t",1.6351012928671,1.81029543669757,1.79650435623829,2.09956938106191,2.48886312767401,3.34138915834671 -"Tfru06698_t",1.55987436976162,0.357737427145807,1.727086057578,1.61350638406099,1.15724951169739,0.163037293969172 -"Tfru06699_t",3.04175502103517,1.8602346211582,2.80651484356425,3.29616304172459,4.07448265576788,5.66962189777794 -"Tfru06700_t",10.8747429391205,9.92797691217341,13.0695674649561,8.28196662365302,9.67104472796989,10.2733208102409 -"Tfru06701_t",12.8587311384869,15.5086475431527,13.2879886470797,28.9890177602794,31.505527522537,31.070250022125 -"Tfru06702_t",0,0.743751893569683,0.265976896939095,0.319481043482664,0,0.451948969311601 -"Tfru06703_t",81.6461072563035,39.0937205445558,130.439461622334,3.09770737845855,1.22781350631308,1.38382873905541 -"Tfru06704_t",0,0,0,0,0,0 -"Tfru06705_t",0,0,0,0,0,0 -"Tfru06706_t",0,0,0,0,0,0 -"Tfru06707_t",11.9811063646886,10.5901514670137,8.9664469704969,7.08173939509281,7.09855016689872,8.0875078718918 -"Tfru06708_t",2916.37061254479,3434.43055960973,3354.25426078229,1961.19733971376,1771.10637889034,1336.26862055406 -"Tfru06709_t",0,0,0,0,0,0 -"Tfru06710_t",19.0368341452541,15.2804986737995,14.968079165676,10.7018280575474,13.6114585423454,11.2029911998817 -"Tfru06711_t",248.862256085746,286.126070742645,260.577989532325,261.570618762598,212.838846906597,143.950860984828 -"Tfru06712_t",36.9645657794369,33.7167525084923,45.6334516102275,43.7168029715724,56.7167985682889,34.9878032857842 -"Tfru06713_t",15.1906362396753,15.5298908927326,15.0701827397037,15.8190931341056,28.4281370578645,31.9152723594509 -"Tfru06714_t",16.5370583928654,16.6562884631858,16.2949025869867,11.2666955246101,12.40952358871,11.9052197897148 -"Tfru06715_t",55.6974873622856,52.1585121678334,58.5560629239175,26.165673970094,31.5361148010389,24.9595684930318 -"Tfru06716_t",5137.79878830888,5210.99958538904,5349.26383430118,11392.8275249151,8352.32456517575,3017.29226517052 -"Tfru06717_t",0.0654796389489068,0.105118480151184,0.0563879313853733,5.82486404454129,3.00376753614256,0.670702133725088 -"Tfru06718_t",0,0,0,0.755642120237258,0.45985039885103,0.680245721398647 -"Tfru06719_t",117.905568596207,149.335302029776,106.838127338955,119.25140256876,106.109512515138,104.423326636532 -"Tfru06720_t",27.8944678061788,28.8848302072839,25.156651895552,10.1576364550676,10.9931684444966,14.66304156297 -"Tfru06721_t",0,0,0,0,0,0 -"Tfru06722_t",0,0,0,0,0,0 -"Tfru06723_t",0.0833635050867439,0,0,0.124944419593508,0.140721823403357,0.151947342179575 -"Tfru06724_t",0,0,0,0.145315792353319,0.121595057388493,0.205568761961129 -"Tfru06725_t",50.7874725052673,50.0559891374051,56.2819184187492,76.7582980322044,78.0171230773537,68.7372630149119 -"Tfru06726_t",1.52482101313777,0.116566127946386,2.81379189155966,1.8776759686103,0.377081301564317,0.159373534554134 -"Tfru06727_t",161.591387973651,156.198016723015,166.838079680001,63.1790063540207,73.6413168223793,55.6635108121533 -"Tfru06728_t",3756.17959460585,3185.51403439239,3483.39479322817,764.586272821583,761.772288462769,630.526644522249 -"Tfru06729_t",0,0,0.198207441006668,0,0,0 -"Tfru06730_t",1.04639259323867,1.73983242481544,1.60911289963154,0.695809247727368,1.16445658161009,0.929631687765499 -"Tfru06731_t",0.0441230970438274,0,0.0759933991254558,0.091280298137904,0.0763800885696629,0.2259744846558 -"Tfru06732_t",0.17225830791767,0.207402619490418,0.0445021832893791,0.0890904693738821,0.104366805459962,0.113427422275456 -"Tfru06733_t",18.0734490086942,18.4091467702154,20.2868550709867,18.1791349846397,18.8797073526793,18.968445762443 -"Tfru06734_t",44.5174604183627,42.8315683780129,47.4227898925284,22.0365489131392,27.8330504567728,26.9828671725845 -"Tfru06735_t",1.17877484946445,1.31009507858146,1.05414696768522,5.95583009501627,6.51403030590446,5.17460838257686 -"Tfru06736_t",30.9788264344712,27.5634451756924,29.7521756916072,27.2645122508106,37.4476298239343,45.0231563228217 -"Tfru06737_t",0.062276039118938,0.149963317309825,0.0536291445273787,0.257668921652438,0.754628480694193,0.227817123151882 -"Tfru06738_t",0.827688441098005,0.996554261334748,1.78191418639,0,0,0.605567091885495 -"Tfru06739_t",3651.28061689046,4380.17216304789,3416.16366778502,2230.75766742249,2271.7979584686,1906.60992191844 -"Tfru06740_t",39.7209183224517,30.5080585386509,40.9813345736974,20.6089403034497,30.5903408499273,32.4502090775212 -"Tfru06741_t",0,0.151196199589652,0.32442025097504,0.194840457011849,0.326071050754794,0 -"Tfru06742_t",19.0141829083306,23.4421208269103,20.7084260942285,8.22710947477251,7.90601709674031,9.54708769492553 -"Tfru06743_t",6.52827888569333,6.29873398510296,6.18970411338328,7.29841153023505,6.73487726025247,6.36843633993866 -"Tfru06744_t",5.85909280058378,3.40061666931145,4.81269784332715,4.38223783249182,3.97897645947883,5.53976934057482 -"Tfru06745_t",0,0,0.397503933887,0.954932349750381,0,0.337720108936141 -"Tfru06746_t",0.961617215906266,0.877126756204274,1.24214808893097,1.80850871648875,2.98875842931696,4.47716356695779 -"Tfru06747_t",24.3870122285116,19.8061837592743,22.9025866548334,10.9244260811444,12.465230454569,10.185638485514 -"Tfru06748_t",5.21443717891743,4.88311588054026,6.23669965236499,2.99651185611326,2.507373942011,3.39117571455877 -"Tfru06749_t",0,0,0,0,0,0 -"Tfru06750_t",0,0,0,0.242734200634873,0.203111296978545,0 -"Tfru06751_t",0,0,0,0,0,0 -"Tfru06752_t",0,0,0,0.614560423106681,0.102848436093803,0.0869378498251453 -"Tfru06753_t",0,0,0,0,0,0 -"Tfru06754_t",0,0,0,0.205111354431042,0.400469638259822,0.290157638834198 -"Tfru06755_t",1.55414879947179,1.24748519044781,1.67294821096327,8.21654021799608,10.0887656556763,8.87547883412751 -"Tfru06756_t",577.326279783733,967.731994210901,482.909217300339,771.048859750133,745.74112072703,578.472805919989 -"Tfru06757_t",0.575413539530362,0,0,0,0,0 -"Tfru06758_t",0,0,0.0758738499920649,0.546820202374104,0.343169690018286,0.225618992545697 -"Tfru06759_t",3.56450017915459,3.14166079946018,4.51408377500627,4.33771267024715,5.62594635740738,5.47151530900367 -"Tfru06760_t",0,0,0,0.230500912008713,0.192874918616231,0.326074587938343 -"Tfru06761_t",31.9132260450006,24.708095034572,34.9679505951736,135.552342497416,83.3555231643381,65.4944843720474 -"Tfru06762_t",4.94178686890867,3.48047872665359,5.31953793878191,8.68988438272846,3.74262433991348,6.59845495194937 -"Tfru06763_t",0,0,0,0,0,0 -"Tfru06764_t",0,0,0,0.387941267086092,0.324615376421067,0 -"Tfru06765_t",0.0892777649005817,0,0,0,0,0 -"Tfru06766_t",3.12596750777479,3.13644209381324,2.01895021304467,4.44598735860526,3.04383534355754,6.57533198142646 -"Tfru06767_t",4.03427139113547,3.48732638082559,4.08495599393954,2.47627312225508,3.2615708533283,3.50302187928696 -"Tfru06768_t",5.49600567255102,5.67197676393599,5.40902521293458,3.2485547412941,5.43654882652948,2.87219890864951 -"Tfru06769_t",0,0,0,0,0,0 -"Tfru06770_t",12.7265494117251,11.7963029515735,14.4169551206518,6.89548986185847,6.49113668847032,4.1567894382131 -"Tfru06771_t",0,0,0,0,0,0 -"Tfru06772_t",0,0,0,0,0,0 -"Tfru06773_t",0,0,0,0,0,0 -"Tfru06774_t",0.322868473372204,0.673816729608608,0.500469979790089,2.33778595999613,2.51508300870435,1.84253446059088 -"Tfru06775_t",0,0,0,0,0,0 -"Tfru06776_t",20.0473947938603,17.1896750576704,20.351040819587,11.5149506699827,13.2689496931239,14.9434985428532 -"Tfru06777_t",1.34059111869331,0,0.384817638124649,2.77336735618994,1.54710307060253,1.63470903793558 -"Tfru06778_t",0,0,0,0,0,0 -"Tfru06779_t",0,0,0,0,0,0 -"Tfru06780_t",0,0,0,0,0,0 -"Tfru06781_t",0,0,0,0,0,0 -"Tfru06782_t",7.5514945412537,9.09215797981815,9.02289266560131,3.12445281176754,37.2556325945545,62.570049665953 -"Tfru06783_t",0,0,0,0,0,0 -"Tfru06784_t",6.35280554464661,4.30800749130671,5.47073210705498,6.23133821447282,6.35179604866672,6.89177985015448 -"Tfru06785_t",29.4633548866688,30.4249747754357,30.9955105377063,26.0284688620113,21.9864609834538,13.9243121312837 -"Tfru06786_t",0.617723358613584,1.19000302971149,1.27668910530766,0.511169669572263,0.213864247995056,0.0903897938623202 -"Tfru06787_t",0.200981762611118,0.161324174681781,0.0865379377600884,0.103945985439336,0,0 -"Tfru06788_t",0,0.0862321036022821,0.0925137032831636,0,0,0 -"Tfru06789_t",0,0,0,0,0,0 -"Tfru06790_t",0.0599218093947557,0,0.0258008972779721,0.0619820569381488,0.103728736545391,0.109602460460731 -"Tfru06791_t",0,0,0,0,0,0 -"Tfru06792_t",0,0,0,0,0,0 -"Tfru06793_t",0,0,0,0,0,0 -"Tfru06794_t",15.8859549530736,14.1092449017175,17.1450970352965,13.6206273763432,14.8107352434959,13.8398295114404 -"Tfru06795_t",15.6966756599283,15.2612669248965,17.5152786026419,14.6355947498585,21.4314488517151,13.5870132247782 -"Tfru06796_t",0,0,0,0.162124708632994,0,0 -"Tfru06797_t",18.0022235938816,19.8688005853615,17.7634570455753,19.0091220872185,20.7753840909483,15.3662649565944 -"Tfru06798_t",0,0,0,0,0,0 -"Tfru06799_t",14.2517603451563,12.6437821906846,14.2107656364602,2.71558886960265,4.21999989347387,9.60391559787152 -"Tfru06800_t",22.8289067313716,23.2718889596659,20.8387116645326,35.8930007112697,36.3569221591595,28.8952591031613 -"Tfru06801_t",0,0,0,0,0,0 -"Tfru06802_t",6.38862180771464,4.10241855616636,3.85110275111816,12.225312629694,9.40026884723516,8.17976081339627 -"Tfru06803_t",8.40103767714474,7.88453289429358,8.01367930716191,19.6525077578628,22.2616231066854,25.2479553440659 -"Tfru06804_t",0,0,0,0,0,0 -"Tfru06805_t",13.2911939369753,9.46082010686053,14.4691431934868,16.082771096393,14.5427688636638,9.90780068843103 -"Tfru06806_t",0,0,0,0,0,0 -"Tfru06807_t",7.11516456329606,4.05977224081846,5.83195057288498,7.62581690729232,5.19384602273708,4.64123921137954 -"Tfru06808_t",0,0,0,0,0,0 -"Tfru06809_t",25.9304299696061,30.2900812999755,27.8671703914708,22.2426149821406,28.1914402689593,31.9278980779427 -"Tfru06810_t",11.9369392963444,11.343953527872,9.46579412263552,5.68497079726468,10.1935290497428,4.59551825383921 -"Tfru06811_t",1.85044882756492,1.89663873819374,2.20640950087057,2.65025277684026,2.61188325914667,2.14534095632562 -"Tfru06812_t",1.32647963323338,0.532369776449878,1.71345116764975,1.14340583983269,2.10487444079345,2.91150283388105 -"Tfru06813_t",27.5157898467768,23.8930503375652,29.8008140120374,33.6420172352113,28.3939526038714,17.9496088977232 -"Tfru06814_t",0.230165415812185,0,0,0,0.199216011831011,0.168397424181857 -"Tfru06815_t",18.6871862476976,18.618226263226,21.9507489423141,19.6688114809073,16.174396589831,15.5311712146652 -"Tfru06816_t",8.60085553296101,10.0069368872154,6.73331379221205,10.603995420496,15.1142530589267,25.2343627208603 -"Tfru06817_t",19.9263265548675,22.2145514331208,16.3122112137406,16.4128123773349,15.3305908958096,11.2490958686636 -"Tfru06818_t",6.02557185119347,6.28493554148447,5.64510414248351,4.8800335942416,5.58786192791023,5.72866468923678 -"Tfru06819_t",12.8343144213242,11.7336394022304,13.6374109850574,10.5754677884059,10.6190078186256,10.0266669318016 -"Tfru06820_t",14.4910092274913,12.5341087392165,14.7111920573183,8.20531833908189,8.27153768081994,7.67742011214234 -"Tfru06821_t",5.50887716186494,4.97460282598304,9.48796274384087,4.98599923284578,5.36413605288488,9.57242734396983 -"Tfru06822_t",0,0,0,0,0,0 -"Tfru06823_t",0,0,0,0,0,0 -"Tfru06824_t",0,0,0,0,0,0 -"Tfru06825_t",9.4234513533955,8.65165936801488,9.5470886174033,8.02731255296031,10.1287613053377,8.78716031242203 -"Tfru06826_t",0,0,0,0,0,0 -"Tfru06827_t",0,0,0,0,0,0 -"Tfru06828_t",0,0,0,0,0,0 -"Tfru06829_t",0,0,0,0,0,0 -"Tfru06830_t",0,0,0,0,0,0 -"Tfru06831_t",0.0919150730541,0,0.0791528621087898,2.09165707242917,6.921339667061,26.3613823325384 -"Tfru06832_t",1.34416602801417,1.61840412001152,0.578765727597816,0.695190750448126,0.581710754404176,0.491720478490671 -"Tfru06833_t",0,0,0,0.0591551013119705,0,0 -"Tfru06834_t",0,0,0,0,0,0 -"Tfru06835_t",0,0,0,0,0,0 -"Tfru06836_t",0,0,1.86297981032019,0.7459128225518,0.312076585057163,0 -"Tfru06837_t",0,0,0,0,0,0 -"Tfru06838_t",0,0,0,0.483667034289154,0.539620365998657,0.228070722917914 -"Tfru06839_t",6.97664028551813,7.46668567662113,7.7602671106936,7.36685700265908,9.68679240918783,5.95509230151756 -"Tfru06840_t",8.34145584963824,5.73902170356695,5.64399202582208,2.46521542772172,4.64130921180258,6.10291374161956 -"Tfru06841_t",2.96071812410388,1.78238339251942,1.91222156742116,3.44532860989234,3.20325305367044,5.41542377324914 -"Tfru06842_t",427.806687866909,379.183785903198,410.701064492048,395.723965736558,253.379780586143,143.970082439477 -"Tfru06843_t",27.1888128460321,20.5978706233698,26.5706084098575,23.0676930886974,21.4175323264867,16.9867074429262 -"Tfru06844_t",24.8908514451501,22.9437801201463,20.0644301610896,17.1437318772913,14.1373592956274,16.3218511261611 -"Tfru06845_t",24.766064828577,19.0996632707066,24.2546330989085,17.5806909477166,13.0296484038606,15.9880213421214 -"Tfru06846_t",0,0,0,0,0,0 -"Tfru06847_t",0,0,0,0,0,0 -"Tfru06848_t",1.30501556149821,2.35689920447713,1.2642940654503,31.8910320065181,23.2966685680051,29.2406595290535 -"Tfru06849_t",0,0,0,0,0.674838462350989,0.855662085750038 -"Tfru06850_t",0.584420012323113,0.938205287192829,0.629093182325512,1.81354108856942,2.14980061462856,1.7103320995166 -"Tfru06851_t",4.94785041107911,6.12279677454829,7.01265222261016,7.57032872605793,11.0632106692903,13.9521914943311 -"Tfru06852_t",3.65262507701945,3.12104581425034,2.84106598469586,4.02196612384347,4.48724985975601,3.79307522070213 -"Tfru06853_t",0.125764037083005,0,0,0.520352358247213,0.43541224142706,0.0920135626143379 -"Tfru06854_t",0,0,0.683821796325774,0.000652188701881725,0,0 -"Tfru06855_t",4.68093008403959,3.75729206839504,4.03099297179251,2.29351787227437,1.49265956078661,1.98274386536702 -"Tfru06856_t",6.54694332695195,4.20408385392672,5.32219107491097,9.26415355016563,8.0239092545776,6.93589515497155 -"Tfru06857_t",0,0,0,0,0,0 -"Tfru06858_t",5.12854044244301,3.52849735553989,2.52368776630583,3.536580853436,3.38203927061949,1.60809749545756 -"Tfru06859_t",4.71143409424723,5.25519667648751,4.47879523469183,3.41772583151739,4.13086661094602,4.47669772952496 -"Tfru06860_t",123.588970608992,83.6873976605207,134.243096461483,4.76039483117595,9.84968409092768,17.5089712254423 -"Tfru06861_t",0,0,0,0,0,0 -"Tfru06862_t",0,0,0,0,0,0 -"Tfru06863_t",0,0,0,0,0,0 -"Tfru06864_t",0,0,0,0,0,0 -"Tfru06865_t",0,0,0,0,0,0 -"Tfru06866_t",49.4806880136915,66.2905642539848,41.1542896975763,36.5453824146525,47.6029192677131,70.7108633172099 -"Tfru06867_t",27.6454380481917,29.6872351158709,26.8230086438457,22.4130425435576,21.2604125133051,17.8006093215913 -"Tfru06868_t",16.1791123043438,17.4294655538698,16.1904656432854,18.4042896769442,20.5592624639686,19.690460616559 -"Tfru06869_t",0,0,0,0,0,0 -"Tfru06870_t",0,0,0,0,0,0 -"Tfru06871_t",18.3772699187541,22.6257154991198,15.706635703456,36.5889868746462,37.0744929912482,36.4948792719118 -"Tfru06872_t",0,0.170501909018924,0,0,0,0 -"Tfru06873_t",4.16025827462439,5.92466897114082,3.58261532746078,4.02566528912341,3.48468902483957,4.51660184027696 -"Tfru06874_t",9.32741204775828,10.4510434073311,8.14197712858199,13.8629834222383,11.848030714997,8.52452137038811 -"Tfru06875_t",0,0,0,0,0,0 -"Tfru06876_t",11.2872372758753,12.4043598047474,9.00244256402694,9.7947299174126,9.31051929053319,12.0269774412299 -"Tfru06877_t",26.1850525001914,32.1528957131077,23.6230909281417,27.8914656440079,29.4093099469268,28.5088403647392 -"Tfru06878_t",1.25388622045366,0,0.539893402735283,5.83648951071468,5.42640629234391,5.04563923941558 -"Tfru06879_t",0,0,0,1.65400434810351,0.958161930988099,2.51979747458064 -"Tfru06880_t",0,0,0,0,0,0 -"Tfru06881_t",7.27532812298082,6.27380181258078,6.98481166449771,6.81360156398838,5.9141160680201,5.82641292678361 -"Tfru06882_t",30.5947844265901,31.666966995626,31.2615222664726,22.3840379690849,26.2876879365201,25.1564290367403 -"Tfru06883_t",0.313861930652979,0.167953935285142,0.0900942913666674,0.21643547653122,0.0905527326504596,0.0765442837190258 -"Tfru06884_t",0,0.0775989701000974,0,0.199997339073152,0.25102592975254,0.070730793816315 -"Tfru06885_t",0,0,0,0,0,0 -"Tfru06886_t",0,0,0,0,0,0 -"Tfru06887_t",0.551973566172454,0.797505315575376,0.855599794621426,0.91352266835516,1.43325580128093,2.18075770737477 -"Tfru06888_t",6.10832420748572,6.11200095273466,6.0528288259606,19.5608951244685,20.9305786932213,19.9577783898398 -"Tfru06889_t",449.521492462928,426.84349510751,439.278898797113,181.077171954237,238.318673001402,267.743087830085 -"Tfru06890_t",1.49573371106435,1.90094450344615,1.07337857518448,2.19181060098492,2.69710105038275,2.09747236796244 -"Tfru06891_t",7.87689820980085,11.171571151915,9.02727650774466,18.8684130411023,18.5308810159128,25.6519671605327 -"Tfru06892_t",3.91193357485366,4.89021601268209,3.81057587920072,3.64842474084019,5.27314138186283,5.16118822969584 -"Tfru06893_t",7.55802697597797,9.45002405947362,5.00662394238297,6.76548092080936,3.89987746343926,8.18825191458665 -"Tfru06894_t",27.4710737731729,23.3325055381962,26.9577192578271,17.8423481622562,24.0536291091017,20.7999632112077 -"Tfru06895_t",0,0.472664754791948,1.0141922799173,1.6242774547156,0.849460798111204,1.43609952865369 -"Tfru06896_t",0.646233667472673,0.852181656808047,0.795007867773999,2.29183763940091,2.11749107080819,3.07325299131889 -"Tfru06897_t",6.57212745979715,8.55241213372266,8.34648323290822,4.3603924006579,6.17679831230288,9.68967162019941 -"Tfru06898_t",45.4225596442233,47.3177475881892,42.6717104350288,27.1006563800345,17.0076449422509,10.9386970877452 -"Tfru06899_t",0.0586255246137107,0,0.0504854961391723,0.0606412029499544,0.101484779230034,0.343140599170287 -"Tfru06900_t",0,0,0,0.132467749736714,0,0 -"Tfru06901_t",19.8749381288156,22.6286929587197,21.9707627350764,99.0005284542387,114.072893351725,105.088751615904 -"Tfru06902_t",0,0,0,0,0,0.0844300272340353 -"Tfru06903_t",11.2980269521393,13.7334114482383,11.634394339981,11.6944614115374,13.6950959318802,18.8011480441578 -"Tfru06904_t",0,0,0,0,0,0 -"Tfru06905_t",0.133774485304853,0.161067289053307,0.115200184661519,0.207560932708482,0.173679564454584,0.244685747716472 -"Tfru06906_t",0.259692045661352,0.41689956733839,0.223634361568575,0,0,0.475000462336767 -"Tfru06907_t",11.9932452769122,11.154066375493,10.0797394244263,14.0159425527878,15.0717783007085,17.0853460739073 -"Tfru06908_t",0,0,0,0,0,0 -"Tfru06909_t",13.4032208575759,13.1537962826629,12.3371005706054,17.1992744781576,15.4752221351751,21.9993847482128 -"Tfru06910_t",0,0,0,0,0,0 -"Tfru06911_t",0,0,0,0,0,0 -"Tfru06912_t",0,0,0,0,0,0.0745935192067691 -"Tfru06913_t",47.64345430516,47.533717156236,51.0676395794669,69.036969206893,68.4739682938778,49.6395519363409 -"Tfru06914_t",47.7828537027192,40.1091479654927,39.8035909411904,52.9792207720249,56.7654546722937,43.1854881308007 -"Tfru06915_t",0,0,0,0,0.399526617133621,0.337720108936141 -"Tfru06916_t",4.596680082527,4.17514861876218,3.90635615374913,6.63158923375966,7.1195700700442,8.2307423525603 -"Tfru06917_t",0,0,0.139663544338675,0,0,0 -"Tfru06918_t",0,0,0,0,0,0 -"Tfru06919_t",29.3078025428909,32.883448739271,28.4018827894964,18.7509862631118,14.5151210141131,12.1527874941887 -"Tfru06920_t",1.54230713295314,2.6944273062942,2.50006793839944,2.34608109684894,2.12016608703522,1.72580081585942 -"Tfru06921_t",4.61005264116094,5.56856328057145,5.85857689240807,3.70373335438613,3.71898191505521,3.01267208525666 -"Tfru06922_t",0,0,0,0,0,0 -"Tfru06923_t",0,0,0,0,0,0 -"Tfru06924_t",3.81865348961125,3.96667676570498,4.25563035102552,3.48524774708361,5.83266130895607,4.60166223299085 -"Tfru06925_t",0.472376685998623,0.525001336637423,0.250331197119148,0.338274046040468,0.0629012494103106,0.398778502333765 -"Tfru06926_t",4.72376685998623,4.6083450660396,3.12913996398935,2.63102035809253,2.04429060583509,3.61559175449281 -"Tfru06927_t",6.50784608792903,7.08008631420325,7.13267622214137,5.78583851346838,4.88793447722375,6.02058524547746 -"Tfru06928_t",6.73253890502889,8.45855812059737,6.55396730018565,6.35845198736229,10.1343337029016,7.4957390032168 -"Tfru06929_t",4.41410454222859,4.22888082309903,5.39527373316456,12.5193249581681,13.0638432165116,8.12588926518214 -"Tfru06930_t",2.41343079644377,2.95194550005952,2.37523554475843,6.41934003648888,8.85298514956278,37.5853375408903 -"Tfru06931_t",16.5052700593624,17.8679903427167,18.2656568534753,13.9652170390251,14.975104517086,20.2323592017891 -"Tfru06932_t",29.4930046112528,24.0321533837126,31.5550463262212,23.1113946349161,22.8197702913874,18.9626248400527 -"Tfru06933_t",12.3118655129884,16.2770528712198,14.9680791069015,23.9720947547759,18.1784610081992,19.6052345228099 -"Tfru06934_t",3.65862774764726,3.82326363695311,3.03174323281769,5.49811912465153,5.43710750449222,7.02024923242934 -"Tfru06935_t",10.6927982344008,15.358877956976,8.69656354949056,23.4468410028959,22.920962462827,31.201466915958 -"Tfru06936_t",0,0,0,0,0,0 -"Tfru06937_t",114.286843724794,115.600294314831,94.4252526587936,118.216284297507,158.412303693481,159.250382277433 -"Tfru06938_t",0.901184017810521,1.12523131136804,1.12097056922126,13.8789571786128,1.56001096272913,1.31867827994612 -"Tfru06939_t",8.68003892841523,7.61426292811708,8.27570920660683,3.65552331967175,5.31267202030523,7.39395184627274 -"Tfru06940_t",0,0,0,0,0,0 -"Tfru06941_t",0,0,0,0,0,0 -"Tfru06942_t",0,0,0,0,0,0 -"Tfru06943_t",0,0,0,0,0,0 -"Tfru06944_t",8.84319755488905,8.87282960749781,15.7066357034558,5.14532627924703,1.9135222189031,1.21312618078375 -"Tfru06945_t",1025.22843030066,772.053063427992,1219.48018232531,402.752725283343,161.102529328012,112.992654890407 -"Tfru06946_t",20207.2550783737,18770.1407321624,22000.4906468746,3033.84795637995,2663.34358239198,2208.25565302252 -"Tfru06947_t",0,0,0,0,0,0 -"Tfru06948_t",6.1471007393742,5.8830356159283,5.63292159971577,3.01618876323596,3.03542783505178,3.63255044002045 -"Tfru06949_t",160.093013763054,144.554640332184,183.309778909033,131.449800380991,108.763524881767,77.3074625703596 -"Tfru06950_t",19.413208686375,17.5873871192946,16.7177262573395,25.5999296680379,27.7098704023864,19.270126864486 -"Tfru06951_t",4.58238408492007,0.613031850063134,0,8.68988418813571,3.96620960127472,6.14650584499894 -"Tfru06952_t",1.91724926241893,1.11922829903709,1.50094846405465,3.96633727012502,2.56459616890337,4.59075135632697 -"Tfru06953_t",0.0483930741771011,0,0.0416737995204112,0.150170813065584,0,0.0354061404529825 -"Tfru06954_t",0,0,0,0,0,0 -"Tfru06955_t",0.0797062398211076,0.127957315022741,0.137278398420178,0.20611680224688,0.206965401285538,0.320737978221136 -"Tfru06956_t",0.108680953132532,0.261708298901622,0.0935908356629158,2.02351770878541,5.45589000059832,5.88410663279683 -"Tfru06957_t",4.56916758707502,8.16870641738503,8.22720132138927,33.2986917014317,11.6845485307558,9.57305010892904 -"Tfru06958_t",0.209676481126741,0,0.0601877836667503,0,0,0 -"Tfru06959_t",0.893727412462207,0.358688856473322,0.384817638124649,0,0,0 -"Tfru06960_t",7.08995812002838,6.36846899356653,8.23762338544123,4.2489052909523,3.65273832811382,4.07571394696008 -"Tfru06961_t",0,0,0,0,0,0 -"Tfru06962_t",3.94851093479294,2.68466262716223,5.44042984327952,9.99444817034846,9.91095528032383,13.0339233859087 -"Tfru06963_t",10.7866084110579,9.51515714963586,10.4302105842619,11.7667584323536,10.6107406476776,9.29248275201591 -"Tfru06964_t",15.5011910830095,16.5900084701699,15.0763865402467,16.2856733366619,20.8355154486645,21.3482118065567 -"Tfru06965_t",0.117497030449577,0.141468891644024,0.252957048837182,0.0607684222568424,0,0.171930237276581 -"Tfru06966_t",1.89278145238963,1.98677571107234,1.75535532676616,0.978929783149654,1.26020527414764,1.17177757034689 -"Tfru06967_t",1.67438359249852,1.05182243527359,1.8807378501066,1.80725498427628,1.51224632897717,0.639151402007394 -"Tfru06968_t",0,0,0,0,0,0 -"Tfru06969_t",3.58870883789508,3.64411632876139,3.49999861087946,4.91964633093222,4.11658408389866,3.73282401415984 -"Tfru06970_t",114.618184224132,112.755544342877,110.634148579153,139.304762108552,106.595846560604,102.95250193354 -"Tfru06971_t",18.1343985101362,21.388600710233,17.5286977013606,13.7813144395694,14.09431343615,21.1201527156716 -"Tfru06972_t",7.04194273021353,6.55682026988283,6.06418407103386,5.24452368446311,11.0320249971632,11.1801491888717 -"Tfru06973_t",13.4938947145848,9.08430637534508,6.55984471207302,16.4342373041238,17.1423829869612,17.0382419725969 -"Tfru06974_t",611.485365352831,724.74435883828,578.054130533234,672.112697011687,803.666784252635,659.187576039611 -"Tfru06975_t",0,0,0.112338068272413,0.13493609289951,0.225819392292916,0.381770557927812 -"Tfru06976_t",0,0.137619397993846,0.0738221591504428,0.0886722896196782,0.222593400974446,0.250877795209705 -"Tfru06977_t",4.4215987774446,6.73733502399846,4.06581633001636,3.64339487946688,3.89190959776908,5.09924225143009 -"Tfru06978_t",5.65160716462465,6.375531383424,7.16880276404572,3.63395165095918,1.78479436054056,3.68790358958266 -"Tfru06979_t",5.64775641262245,4.53334486787734,7.9033134964706,2.19072715182352,4.88832566067947,4.64861796266468 -"Tfru06980_t",117.972018445011,106.530590372577,100.822221188658,13.8668367809497,116.03273029519,206.627222395057 -"Tfru06981_t",20.0178453490766,18.4522119800511,17.738880394782,14.5610668365473,19.5617567343672,19.5119674929239 -"Tfru06982_t",28.5608166323587,31.5584450590514,30.7829270200324,32.8616929588925,33.5211213452391,29.1950768298502 -"Tfru06983_t",70.0310500766786,85.3977907535093,70.8409250753113,60.6206334539138,73.9354369028668,68.5950067662375 -"Tfru06984_t",0.693727306122605,2.50578672647754,0.537664280517675,34.5873185175485,41.9110349580402,34.4123126030422 -"Tfru06985_t",0,0.667658292543958,0,0,0.719938866141515,0 -"Tfru06986_t",1.03844717888069,1.50037464809113,2.41450473562511,14.6084582948216,17.1672982259567,14.663481516058 -"Tfru06987_t",4.01243590550197,1.81164640344138,2.59148833316181,6.22558881150696,5.42640629241187,4.95390034421552 -"Tfru06988_t",40.439043280874,42.2832842071965,41.7662820729578,38.3920125660051,28.4492143658334,21.0976076209487 -"Tfru06989_t",4.85318909635852,4.76870404004572,5.04402402163384,10.2997633619989,13.3260431818433,11.6930542099982 -"Tfru06990_t",10.16139139825,13.3258715195404,13.6803653703325,30.4960167434764,38.648585055052,34.7638839222443 -"Tfru06991_t",331.12753775981,463.131750127768,299.549292060204,195.320977450201,269.868721253887,226.287694949587 -"Tfru06992_t",7.10807552315845,8.62281419436173,6.12113446738242,5.35632230328975,4.78820108068563,7.67136657863673 -"Tfru06993_t",3.31619908308345,2.90383514427206,3.98074513696407,1.03945985439336,2.00050050158055,1.39693317787222 -"Tfru06994_t",0,0.305128981977306,0.327356180848117,0.39320743813251,0.329021919992394,0.278122442653293 -"Tfru06995_t",665.31383273388,641.637077233553,657.148927917137,239.065596255782,281.962317176791,253.289109845677 -"Tfru06996_t",79.5272244147345,63.3655905612036,80.402779462647,16.7345801337926,11.6409634755546,8.9844519003754 -"Tfru06997_t",7.82850520679691,7.03409301289825,7.94897296443293,15.1075875916698,15.6754462716821,18.7216246202736 -"Tfru06998_t",0,0,0,0,0,0 -"Tfru06999_t",0,0,0,0.187281991007079,0.470132614127063,0 -"Tfru07000_t",57.0671824394019,65.4810872770719,56.7164632974092,23.2246353213233,14.0893195004315,14.3737890462576 -"Tfru07001_t",34.8358126875039,33.126524893464,30.7904633603192,19.0150642948106,16.5475706982608,15.3998891687533 -"Tfru07002_t",94.5116738678784,100.636282639677,95.2846015180837,15.763662218669,25.8267160459883,38.9778428167273 -"Tfru07003_t",3.9560151259282,4.67491924905191,2.31846964186021,1.98918216740024,1.85470237306373,1.84917773185963 -"Tfru07004_t",0.968818183525753,1.72194287934639,1.31104262873439,7.30122081580151,13.9557872538454,27.9478690479082 -"Tfru07005_t",17.464843785109,25.5212092548289,17.9707375484138,161.012996345225,211.47480522428,185.509151778758 -"Tfru07006_t",1.18994867948226,2.67441662956879,0.819781484050243,9.35454976044424,18.5389404777584,12.8850267058129 -"Tfru07007_t",196.865518099615,216.771224282066,220.452610887889,321.11547010855,331.425333330708,333.705153134626 -"Tfru07008_t",1.84051002114125,1.90624749164621,1.63608686286776,1.59672787244481,2.0555150337334,3.30130356664644 -"Tfru07009_t",88.7007087608074,89.3076949836248,85.9456880150222,13.7564247472168,19.167677689564,15.8115065560435 -"Tfru07010_t",0,0,0,0,0,0 -"Tfru07011_t",0,0.0616112425920371,0.198297988033167,0,0.0664356732008397,0.0842371765551088 -"Tfru07012_t",9.35985175986235,11.3610796496007,8.45343963749907,8.26483569009501,7.50849479373947,10.5225510028853 -"Tfru07013_t",0,0,0,0,0,0 -"Tfru07014_t",0.128652950645402,0.154900853790929,0.0830923230866392,0.0665381652582577,0.0556767567521585,0.188254394567772 -"Tfru07015_t",0,0,0,0,0,0 -"Tfru07016_t",0,0.107721254020742,0,0,0,0 -"Tfru07017_t",847.642043223531,1494.55451394231,427.882883390378,49.9397919920287,178.088575140613,487.352888778961 -"Tfru07018_t",29.8254661522395,33.1921637141593,25.1726253578341,59.1207127028627,74.1537224236323,49.9892636494585 -"Tfru07019_t",12.1864553793577,9.72069564614737,9.96967255398908,7.24813565921141,11.0751820901882,11.813773964816 -"Tfru07020_t",0.246364741265242,0,0,0,0,0.180249442306093 -"Tfru07021_t",0,0.346108665613266,0,0,0,0 -"Tfru07022_t",16.0111625075319,18.3874367870653,14.7432429210327,9.37829083784702,10.0179808475296,14.5723706706625 -"Tfru07023_t",0.0641790502455672,0.128788206678733,0.0829018899550427,9.426765334969,7.94352921124494,6.9494490865576 -"Tfru07024_t",5.04151490981071,4.04672653580417,3.68836363933811,3.73808090813067,2.85758071139438,4.01497735456424 -"Tfru07025_t",10.1175646755114,9.85646702255462,9.53191111048022,9.03425962589372,9.46814339296692,9.23715772995486 -"Tfru07026_t",26.9140795148802,27.1585741029503,35.9245317275358,35.7935741165017,31.947501393861,22.082412798035 -"Tfru07027_t",10.2474028019708,11.6700048675094,7.70670597289879,7.23498826993208,6.97926009817714,8.44711602049473 -"Tfru07028_t",16.5988109114398,14.391937045158,19.8185368908561,8.4568795607287,10.3645568738807,11.5537245848348 -"Tfru07029_t",0,0,0.26894318203507,0,0,0.228494646194713 -"Tfru07030_t",6.15711230409631,6.69941987953756,5.06655665569977,9.62397618934097,13.6190425026168,9.51006625978157 -"Tfru07031_t",0,0,0,0.397100581084317,0.276899635637163,0.187250753469544 -"Tfru07032_t",36.9645657794369,37.445428668255,37.4495470890246,86.080972355969,108.300855184696,74.7704374829112 -"Tfru07033_t",8.94387395782179,9.08796159921208,8.50340415371069,15.026815455672,13.4240943356897,10.6287272684382 -"Tfru07034_t",0,0,0.114380578604639,0.0686947382033871,0,0.0485889800999033 -"Tfru07035_t",0,0,0,0,0,0 -"Tfru07036_t",0,0,0,0,0,0 -"Tfru07037_t",0,0,0,0.169724304350165,0,0 -"Tfru07038_t",0.177988086380185,0.0714337976874837,0.306549643929805,0.0920538599865303,0.231082132367539,0.130222584377919 -"Tfru07039_t",8.69072863152905,8.32210225254982,8.66573004328609,9.62038016962679,10.1614628176235,7.92018012281818 -"Tfru07040_t",2.32439777628511,1.86574915066756,2.28761157209277,2.57605268262702,2.44295524389609,2.79386635574444 -"Tfru07041_t",6.53268870695548,5.66315594232841,5.79440804404797,8.51419465181794,8.82065296551926,5.87885097872819 -"Tfru07042_t",0.164082767131733,0,0,0,0,0 -"Tfru07043_t",13.8417203603004,12.5514918097307,12.9654545469125,17.6334880175074,14.1181624734838,15.0457993551917 -"Tfru07044_t",2.76198498974622,2.03224261695022,2.18028185107335,2.8569482902121,1.99216011831011,0.673589696727427 -"Tfru07045_t",13.4616033995791,17.3085999524308,16.6373679153594,28.6926690243337,29.8838796382409,17.6917234515093 -"Tfru07046_t",2.06905931845238,1.60807029164819,1.92318556911083,1.05311343183965,0.852781598729308,1.20142806541004 -"Tfru07047_t",0.327398194744534,0.210236960302368,0.225551725541493,0.745040749883188,2.26699436690005,1.24558967691802 -"Tfru07048_t",0.0841787342399273,0,0.0724906973621582,0.348291959227594,0.728595634452095,0.246352945195903 -"Tfru07049_t",0,0,0,0,0,0 -"Tfru07050_t",6.11814700400758,4.91091830014996,4.63956221965065,3.68375533615663,3.63569221591595,3.20687268659362 -"Tfru07051_t",1.45557665209251,1.49992577303056,1.67694354501895,1.3021601510059,0.970425925109854,0.892257951120444 -"Tfru07052_t",0,0,0,0,0,0 -"Tfru07053_t",4.37255373981083,8.40041956696224,4.25926143494278,40.7060283798458,11.7260380342682,4.98223607807669 -"Tfru07054_t",1.56017536831749,1.71146859418269,1.14969499137229,1.33660890950183,0.848287964220151,0.970051329918121 -"Tfru07055_t",1.70656290945272,1.87541268800464,0.967318513729405,2.8737025574345,1.83956035467459,1.76575505701763 -"Tfru07056_t",2.66096216018159,3.35641880175037,1.63678090424059,1.57282975253004,1.97413151995436,0.834367327959879 -"Tfru07057_t",6.1900685400513,5.89181987007697,4.78413534295098,3.56041905800405,2.62858563058801,4.00366103559063 -"Tfru07058_t",87.4112344744491,69.7944154770978,90.9466385629995,76.5356337866128,57.3596080454136,44.1822147767288 -"Tfru07059_t",0,0.10326723586062,0.110789764115519,0,0.334060540512951,0.0941271972838862 -"Tfru07060_t",14.8914714678485,25.7104333509573,18.6308365534863,14.8222108200385,16.2937376900581,12.3341257176678 -"Tfru07061_t",24.6635968503332,21.0343043172246,25.8851644287149,17.1405976356571,29.0188277784117,23.4018347045383 -"Tfru07062_t",0,0,0,0.291363648594434,0.972760459107947,0.618072376380222 -"Tfru07063_t",0,0,0,0,0,0 -"Tfru07064_t",0,0,0,0,0.0970812340698519,0 -"Tfru07065_t",1.59850611193029,1.85335214634419,1.37655696343955,0.183718485892779,0.614916231021726,0.38984181708062 -"Tfru07066_t",0,0,0,0.387941267086092,0.973846129263202,1.37198794255307 -"Tfru07067_t",0,0,0,0.597927824499665,0.583712053014029,1.05731180893998 -"Tfru07068_t",0,0,0,0.310722921909242,0.780005481364567,0.439559426648708 -"Tfru07069_t",0,0,0,0,0,0 -"Tfru07070_t",0,0,0,0,0,0 -"Tfru07071_t",1.74705123484927,1.09747114855852,1.24282875531758,0.628563065658478,0.525959090910084,1.7228000493831 -"Tfru07072_t",11.2555339044619,11.9219456383619,11.5913025583181,9.00195205393142,8.53684636333856,8.23495967287105 -"Tfru07073_t",3.25358106571502,3.43014360780037,2.88546497211153,3.31521600728369,2.52186743300528,2.62914128737107 -"Tfru07074_t",29.5019717759264,27.7402044049803,29.7609467023223,30.516316394197,31.8579050357853,28.3684891506359 -"Tfru07075_t",2.71924558544719,3.38890698126243,3.11197500541347,2.36862265968749,2.50844181847693,2.51305184980079 -"Tfru07076_t",0.226901760355023,0.182129655683956,0.244246171395793,0.704109470578944,1.32564064591129,1.03756009159989 -"Tfru07077_t",2.06582893569935,6.08007012064594,4.74398137192044,11.3965696750761,10.1322569887826,19.6486666534118 -"Tfru07078_t",5.56166257371952,10.5731976507467,8.5705726233197,15.7447382544209,18.2418006652229,42.404466361055 -"Tfru07079_t",0,0,0,0.0708799704953382,0.177929472230797,0.300807796866449 -"Tfru07080_t",59.3739026449233,43.3077348936059,69.5876681446285,82.5666434018775,66.1733883028517,44.9513710191834 -"Tfru07081_t",8.46718758011439,18.4778423196147,12.4183984888981,61.4450092574028,95.6158425288132,81.5984967458841 -"Tfru07082_t",0.798577725964329,0.794843595257233,1.40290171647876,3.46934547599425,6.22076614890562,7.73571665495476 -"Tfru07083_t",4.53894926632465,4.98560511026047,3.70300347131889,5.27158863028077,6.13415369130843,9.7295402758342 -"Tfru07084_t",1.09859723470354,2.54172441987096,1.14083629025569,14.338309231502,17.9267593107856,20.9217607485939 -"Tfru07085_t",0,0,0.208189110697652,2.25061753797284,1.67398778286778,0.972828285021806 -"Tfru07086_t",4.10893416147916,2.26500282025228,4.51894277698762,3.73813529722556,5.5703003897357,6.1935917680086 -"Tfru07087_t",1.45823219082551,1.17049478332278,0.69764431984025,0.418991532436281,0.560955404577196,0.414903971827043 -"Tfru07088_t",29.3996045269207,27.0251247335566,30.4504020227263,31.9101219423298,32.5573972163519,30.2316161945655 -"Tfru07089_t",2.44520847151822,3.43476272955535,4.36179992319248,9.9364582338891,10.4308841121913,6.38929935825132 -"Tfru07090_t",65.4820607985666,62.3067111424056,64.4174183271672,56.3056892195968,60.6114715995851,67.3168703166972 -"Tfru07091_t",14.0996436539418,32.0662821059618,14.6715088325488,12.7613686739302,11.1867452797355,14.6140701685017 -"Tfru07092_t",21.4875564033542,30.183380575986,34.695103572304,91.3749832073757,46.4955310028328,14.4109909362022 -"Tfru07093_t",0,0,0,0,0,0 -"Tfru07094_t",19.6433448818416,24.6364579915914,21.2959205666142,46.9870575183021,56.1672701414991,64.6730483350613 -"Tfru07095_t",67.7873896706256,88.1796467023924,67.6888959330375,64.0840434712109,58.2300425863883,51.1222317157049 -"Tfru07096_t",29.1636987746416,26.9083012778957,29.8287847411986,24.9580750171686,22.9022285202107,18.5680852492396 -"Tfru07097_t",11.6334071923287,10.3406397098536,10.3543125083502,13.4870882148295,12.2316039234347,17.0228511415061 -"Tfru07098_t",4.96124272272328,5.57521104471133,4.27238480122641,4.4475786210815,3.14902475394295,4.59778006575267 -"Tfru07099_t",18.1386040756534,17.9245186260562,19.0157711930212,34.3044348903164,43.7935653280785,33.435291931246 -"Tfru07100_t",0,0,0.0847139531234589,2.44212207477146,2.63949551975163,2.44708669097991 -"Tfru07101_t",21.7580831926051,15.7183133996424,20.5066274037187,13.7537738431674,16.7398778286778,16.9802755203806 -"Tfru07102_t",139.503469684697,165.67607929861,159.824297293193,125.80401427473,137.022235073236,154.73405886567 -"Tfru07103_t",63.6195086230379,62.1959512292577,47.0598346584279,47.2459733429897,53.2999538449815,49.5300967532947 -"Tfru07104_t",35.7957257547907,39.5805355534475,41.8346966246466,13.6015581642706,6.32294298420166,1.33619695274734 -"Tfru07105_t",0.906586799691879,0.970266259237189,2.08189110697652,17.817388842285,32.6950738841363,25.4261938130699 -"Tfru07106_t",2.21562532765504,0.68144578883596,2.67005278614431,1.45085943121125,1.6613004853043,1.67435575976952 -"Tfru07107_t",0,0,0,0,0,0 -"Tfru07108_t",50.7348730135636,48.8851692849289,46.697479255263,41.9621556378697,36.2680299289415,53.1244465736541 -"Tfru07109_t",1.94468464748721,0.31219215285641,1.33973548087841,2.81616623514348,1.34655267256146,0.569120924318312 -"Tfru07110_t",0,0.0590486033423683,0.0633500139819912,0.152187117035525,0.382034208327421,0.107644588137264 -"Tfru07111_t",4.9824935152753,4.4437235596036,4.35027781352774,5.86960889113455,3.95314145387896,4.65797817465136 -"Tfru07112_t",12.9641681496046,13.419731135924,13.6511778792637,47.9304547313212,48.5499617526439,48.1765862351899 -"Tfru07113_t",0,0,0,0,0,0 -"Tfru07114_t",66.0509138036796,64.8707114771467,62.3788477343907,62.6456035667004,62.1781091558073,75.626843206802 -"Tfru07115_t",3.12472177152036,4.44301520834542,9.99462601037875,19.4852880420373,14.7591331188086,17.9626901724271 -"Tfru07116_t",0,0,0,0,0,0 -"Tfru07117_t",7.43815343155326,6.8701205839014,8.07253592359481,5.69137364059839,5.42377371203956,7.00753865819224 -"Tfru07118_t",1.57058697512435,2.0839808875909,1.71134467378134,1.22672919557784,1.05422590007483,1.82917766747709 -"Tfru07119_t",7.29638886079044,6.34745267991024,6.45881209995528,8.85432178735069,10.4784142467447,11.9291722127856 -"Tfru07120_t",0,0,0,0,0,0.110548668752478 -"Tfru07121_t",0.345958998372467,0.323977031653323,0.148961666370832,1.43141540964642,0.898317911962761,1.64525554785774 -"Tfru07122_t",0,0.0303891415128367,0.0652056926249967,0.19580631777216,0.0983062338688405,0.415491616672224 -"Tfru07123_t",0,0.420481745142885,0.433207880044515,0,0,0 -"Tfru07124_t",0,0,0,0,0,0 -"Tfru07125_t",0,0.385334314382769,0,8.93816679366356,12.6729842954785,2.98544576299549 -"Tfru07126_t",0,0,0,0.607684222568105,0,0 -"Tfru07127_t",0,0,0,0,0,0 -"Tfru07128_t",0,0,0,0,0,0 -"Tfru07129_t",0,0,0,0,0,0 -"Tfru07130_t",25.8052351857688,23.0148481286637,24.6913706373495,12.1260067124111,7.1969333966937,6.50312919664747 -"Tfru07131_t",12.404657195159,12.130128539188,11.6431386635089,11.1339143653708,9.92714398017676,10.0360917997757 -"Tfru07132_t",0,0,0,0,0,0 -"Tfru07133_t",1.54778585658757,4.07223827635833,2.96195357082636,6.84873180624454,28.3561665151275,125.432823478262 -"Tfru07134_t",18.553160130667,19.7447979950476,25.4915425989469,18.8676149749067,22.6441376227023,18.149732306052 -"Tfru07135_t",80.2190444130222,64.8356264527639,88.8295499853302,61.8861331384184,62.1089083005125,54.3950556966513 -"Tfru07136_t",13.3818261363566,11.0658446635186,13.4734321845028,33.2457078165021,30.7231738746314,24.1955817795847 -"Tfru07137_t",9.04801973334639,5.97413217579539,8.8808869629971,6.54131424293399,4.46303850477233,3.77260934661033 -"Tfru07138_t",0,0,0,0,0,0 -"Tfru07139_t",14.0996436539418,5.18719269361148,12.6478524418524,7.89989489338536,11.6952337015417,9.88598864339821 -"Tfru07140_t",6.91850161647215,3.96667676570498,5.95788249143574,7.66754504358394,1.71091398396045,5.06182845628993 -"Tfru07141_t",12.5355797800327,10.5033862526455,13.44645506201,9.66806508549633,10.7547963455105,13.5963286788715 -"Tfru07142_t",0,0,0,0,0,0 -"Tfru07143_t",33.2806367627979,32.073043557853,34.2522818326012,28.3373534152063,27.2267323666299,29.5364666842856 -"Tfru07144_t",0,0,0,0,0,0.361559175449281 -"Tfru07145_t",2.08821204212011,2.25637923096985,2.42074575416844,0.830772885538094,1.80741869242476,1.58657420201931 -"Tfru07146_t",10.2210426998229,20.0606737844876,9.82402579463584,43.2447935529815,38.2974800138085,36.5220174949513 -"Tfru07147_t",0,0,0,0,0.632294298420166,0.534478781098937 -"Tfru07148_t",0.510184474320531,0.682525354422921,0,0.175908590743491,0.294388033677405,0.746539188174628 -"Tfru07149_t",0.492950143262985,0.671016553176731,0.550299557085071,0.903161047785395,0.685166139836283,0.847028561187792 -"Tfru07150_t",0,0,0,0,0,0 -"Tfru07151_t",3.14057467002915,3.15109820218666,9.46579412263552,0.812138685323525,1.35913720663237,0.574439781729902 -"Tfru07152_t",0,0,0,0,0,0 -"Tfru07153_t",611.623663524346,549.907536728464,923.888504206728,2276.82242697262,2048.32391898995,957.790188574354 -"Tfru07154_t",0,0,0.516755114052301,0,0,0 -"Tfru07155_t",67.5547359605454,61.1767880566458,50.7165843895413,77.0443357643967,63.7183171861559,57.3462671575999 -"Tfru07156_t",32.5480202577379,29.362474755967,32.1628382986649,40.4203765002341,39.0577220909828,24.2347950172575 -"Tfru07157_t",71.2723413042966,69.5027641962061,76.9162936910082,64.3114187169435,81.7702617514671,67.6781344658672 -"Tfru07158_t",476.981268587065,524.553335496826,425.563035102552,748.352396253792,731.415728143092,560.995216627104 -"Tfru07159_t",68.4000570117179,33.6157033001751,84.1262870989941,26.1304215704422,24.0442382311325,12.0351166093607 -"Tfru07160_t",0,0,0,0,0,0 -"Tfru07161_t",48.5979309574741,51.1043154613022,50.2851389011312,48.1255928819267,49.5627997147287,42.4467229294268 -"Tfru07162_t",16.8168269568832,16.6955648944597,15.1170152767772,16.6320877562318,14.1086563602709,14.8940794662689 -"Tfru07163_t",7.93798835635724,5.57521104471133,7.97511829562264,4.4475786210815,3.72157470920531,5.80772218831916 -"Tfru07164_t",0,2.6718935950126,0.546005403527803,63.2885919194941,77.6528978946577,47.2005270742184 -"Tfru07165_t",14.1047780688033,11.1355235975609,12.4458591406717,10.3527141450169,9.26482744994222,11.224300253483 -"Tfru07166_t",13.3821837836349,13.7254035459086,7.0425032575016,9.22819571718547,5.79136807664623,11.422710124935 -"Tfru07167_t",19.6228617276374,18.4229179504171,19.4631853176204,17.2166635319959,14.4821108079238,14.9977309691057 -"Tfru07168_t",0.178745482492441,0.143475542589329,0.307854110499719,0,0,0 -"Tfru07169_t",37.6336076939968,33.5641880175037,42.5563035102553,33.8158396793958,34.8763235191938,26.9778769373694 -"Tfru07170_t",24.9183320932259,21.5015731039326,23.0678607057178,13.4398635580334,13.7108731871407,12.3711455159023 -"Tfru07171_t",1.66357138627368,0.667658292543958,0.716294031928507,0.860384369448921,3.59969433070758,2.4342591644587 -"Tfru07172_t",1.47530417744981,1.44735327841333,0.705811863096916,1.44124911713545,1.56068739024685,1.19931824051469 -"Tfru07173_t",0,0,0,0,0,0 -"Tfru07174_t",0,0,0,0.192254079263904,0.160871336987432,0.135984645633579 -"Tfru07175_t",402.53512473058,461.292417138705,361.969933351656,435.94374113521,388.615775139106,252.627034882727 -"Tfru07176_t",0,0,0,0,0,0 -"Tfru07177_t",1.15610610235937,1.70130402565787,3.73343717721849,3.88653085924782,4.16937180724306,2.32608597966796 -"Tfru07178_t",0,0,0,0,0,0 -"Tfru07179_t",276.899648734308,399.229577603246,320.143421250937,290.535854604463,252.18945790487,124.584184771872 -"Tfru07180_t",0,0,0,0,0,0 -"Tfru07181_t",30.7743274910144,34.2136309665122,30.9944277881533,63.2074748259512,54.4971127943612,42.6373415006136 -"Tfru07182_t",0.794894162237232,1.03682503278628,0.770090412426854,2.26111716641072,3.09603594968597,12.5038323951945 -"Tfru07183_t",0,0,0,0,0.213237080112373,0.180249442306093 -"Tfru07184_t",11.6538784850636,15.5220415511657,13.6751048475027,16.2935332176159,19.0652152785837,20.7069789963864 -"Tfru07185_t",24.3247203520545,21.4232448914549,23.8566301983763,14.0948526851226,21.9311192649086,27.8487804575277 -"Tfru07186_t",0.204570722657745,0.109469975676923,0.0587221720514886,0.14106955166767,0.354125865186619,0.548795177021229 -"Tfru07187_t",0,0,0,0,0,0 -"Tfru07188_t",0.658535988130047,0.302053773872271,1.05318511486746,0.38924454121964,0.569985341800933,0.550638833830931 -"Tfru07189_t",1.3219907004644,1.06113637336372,1.21188255173874,10.9836609710629,11.9221176217345,10.6393834521801 -"Tfru07190_t",2.34447563083109,3.45008630319456,2.69193361739289,0.80836133792823,3.04383534355754,8.29063597658118 -"Tfru07191_t",4.33601944626823,1.74021948430927,3.26722588240022,1.68191310633453,1.40736472874165,3.96548773073402 -"Tfru07192_t",20.8783184875786,25.377342716451,30.7362272571701,34.2453431887406,29.1715896140949,38.4793096427856 -"Tfru07193_t",13.471051668891,12.0908471094593,10.5460227357775,8.74055426251114,13.8855883465012,11.8270960598861 -"Tfru07194_t",0,0,0,0,0,0 -"Tfru07195_t",0.123002015770787,0,0,0.12723110370027,0.319387310329366,0.0899927669493085 -"Tfru07196_t",7.59187257509681,8.00414691278089,8.27979298890745,8.81297056378694,8.52791261976886,8.68868692729815 -"Tfru07197_t",0,0,0,0,0,0 -"Tfru07198_t",2.88677082129059,2.81062333987432,2.969327826853,6.0826425841561,6.89428113485812,4.61525743526094 -"Tfru07199_t",0,0,0,0,0,0 -"Tfru07200_t",0.170061491440177,0.136505070884584,0.439346453243526,5.80498349453521,8.24286494296734,6.09673670342613 -"Tfru07201_t",14.8075843949674,16.9796595366508,19.5177291279048,22.1935896105655,16.2167566465316,16.8033976503766 -"Tfru07202_t",1.73889525012052,1.74472199267748,1.49745337060665,1.79868240780925,1.12880482771,0.874664499469799 -"Tfru07203_t",1.65537688219601,2.65747803022599,1.78191418639,0.85614624460379,0.716392554860287,0 -"Tfru07204_t",2.33795111608852,2.00173669809231,1.61066529055511,6.9325608248112,17.672566986456,18.58776391781 -"Tfru07205_t",0.163126945187277,0.392816534079522,0.4214313551501,2.02482742898527,4.37694985217066,3.58048892192491 -"Tfru07206_t",28.6683671147181,23.9796671623071,26.60532679973,24.8556604652311,25.6566242514665,24.2330495394995 -"Tfru07207_t",0.679329192221947,0.727045876193904,0.975009649156791,0.468457379122828,0.587982568611744,0.165674015704522 -"Tfru07208_t",21.2710387930141,19.5364262861136,23.1171642622658,19.9396616694378,23.8986463371225,22.7828493209154 -"Tfru07209_t",1.79381587412343,1.43986131708864,1.80220644758732,1.85549132727298,0.517536258493374,1.09368433854765 -"Tfru07210_t",8.80871368227482,8.35614490245129,7.71102518543706,6.77720619103606,5.54490320624963,6.92414018841343 -"Tfru07211_t",4.25368996311126,3.21351029120403,2.53183071516708,3.81759626642576,3.95242787433901,4.89706731304722 -"Tfru07212_t",36.7129948398656,35.6252479335013,38.0442474716147,32.5804551415748,32.44019956502,33.7814662344608 -"Tfru07213_t",4.94178686890867,4.550011584191,4.50596154814467,3.0068804092486,2.89345747287429,4.3599782921825 -"Tfru07214_t",12.8486458591626,12.6933656502559,16.6517338091613,8.85699754393479,10.1769883528682,9.4005385616813 -"Tfru07215_t",0.359530856368534,0.673373088614682,0.928832302006997,0.371892341628893,0.518643682726955,0.438409841842922 -"Tfru07216_t",0.26036273792804,0.487638982560839,0.448423859302276,0.179543065758853,0.225352823300576,0.0634969626305555 -"Tfru07217_t",52.7002363510925,48.8955119403597,55.927776734972,29.6610444797927,28.0391023293887,29.7118923883966 -"Tfru07218_t",63.6735708671201,48.5832168710264,66.9249994972515,96.4151437276789,72.0851943674402,49.4200336932547 -"Tfru07219_t",15.2560599178031,16.0546212976969,13.7968750766925,13.6958700110418,9.98076454050416,10.6952563864301 -"Tfru07220_t",4.51591615750955,6.67430595731247,6.04938580615062,3.26241393208236,3.41233911050132,3.67112132068809 -"Tfru07221_t",0,0,0,0,0,0 -"Tfru07222_t",61.4066879540176,64.2583848256019,63.4241590656203,31.7589944929314,34.4004958546308,25.7712246357234 -"Tfru07223_t",7.26878467906034,6.33942268462501,7.04197068900979,14.0975661783032,14.4580771980684,11.8123367885967 -"Tfru07224_t",0,0.264964656255342,0.426399111792341,3.58521752529072,2.57141296214095,1.56983453387605 -"Tfru07225_t",17.2479404824061,17.8001849835336,20.511425057806,15.4136217403145,19.2955732129618,20.2594331271301 -"Tfru07226_t",16.6773846280981,17.7654131955692,17.7173181961063,18.7017919925139,15.6489906139611,14.0263494594517 -"Tfru07227_t",0.137384099380944,0.0551377800629473,0.118308611557537,0.142107675923605,0.713463721847775,0.351803286005433 -"Tfru07228_t",1.6295116184117,0.871984978667904,0.935504947854749,0.561845973021237,0.783554356878438,0.529871205399808 -"Tfru07229_t",2.72957902867519,2.49528312788481,1.5670552195112,2.07835682438903,1.11564562582258,1.33137313703345 -"Tfru07230_t",25.053337643349,21.6399254349481,26.3821492587887,40.1396604388592,37.8300551477803,43.8324575747264 -"Tfru07231_t",2.92588937255134,2.47347795356853,3.24336110858077,5.89199274560692,6.1964372705496,6.99139435594589 -"Tfru07232_t",0,0,0,0,0,0 -"Tfru07233_t",0.464145728019047,0.186280400599405,1.1991002646536,0.480104109543009,0.40173394651005,0 -"Tfru07234_t",5.55710663468718,5.64132434966992,5.48926638663409,5.15644890414821,2.33419928259195,0.418536399595957 -"Tfru07235_t",0,0,0,0,0,0 -"Tfru07236_t",87.977288581222,98.9921023281862,85.4028651242006,99.3911225306823,88.5842321653394,81.5234371674097 -"Tfru07237_t",0.330749514848218,0.265486240224349,0,0.342121432390885,0.286274977631177,0.241988424513298 -"Tfru07238_t",0.541684727131255,0.474327116180431,0.848132660813996,0.611246263732365,0.383601757834039,0.828661416182114 -"Tfru07239_t",1.56466317769171,1.25592487853983,1.554707363197,0.622484554636709,1.14592018266692,0.968647074627729 -"Tfru07240_t",2.24510489647834,2.7322195998261,3.3678178122771,3.59581422733592,4.63864179272035,4.29195676373844 -"Tfru07241_t",0,0,0,0,0,0 -"Tfru07242_t",2.51671599457974,2.69349235445873,3.30251485158043,13.1401960708875,21.1606622552598,32.705374201482 -"Tfru07243_t",1.26072871007629,1.42594724115042,1.92461318057976,1.95611312844502,1.09120366644135,1.84479033585308 -"Tfru07244_t",0.615255755316859,0.808124560789429,0.915158857111348,0.867831329833069,0.435702129736932,0.368299293233954 -"Tfru07245_t",20.8060922108703,21.785067388536,21.4210210184257,25.9692197018247,26.3659519352549,29.1933663347077 -"Tfru07246_t",6.87309564524114,7.72366136758414,7.69441535462324,5.79690210553315,7.4132427813516,8.23918045501476 -"Tfru07247_t",0.133561807267802,0.321622440462566,0,0,0.115602296213544,0.0977186960673732 -"Tfru07248_t",0.51351086046117,0.906807524678277,0.972864151151312,1.91219949742191,1.33338345326991,1.20225055895115 -"Tfru07249_t",2.58714590570753,3.40340187853045,2.66113412027345,5.42653173600665,3.2966926850906,4.1537551123044 -"Tfru07250_t",0.527577126854185,0.483972524045344,0.432689688800442,0.649662408995848,0.521869696064491,0.55142099126535 -"Tfru07251_t",12.0993205676269,9.52864744805217,10.8125390712197,7.55642120237258,5.33498314292015,3.84156623914861 -"Tfru07252_t",39.3080657069733,35.8415894680049,33.9362484532136,30.1717745512094,30.0020261337178,26.6762744787489 -"Tfru07253_t",9.95943912258524,8.85693797238006,10.5510596421588,16.9350838503493,18.0156688908074,17.3517567612205 -"Tfru07254_t",0.127675344637458,0.0512412652104746,0.109947896607042,0.0660325560997604,0.0552536810929476,0.140117917537335 -"Tfru07255_t",55.2453899164525,55.2637995380232,56.6067221352109,33.2986917014317,33.5256661690148,25.0722740948141 -"Tfru07256_t",3.49234822606479,3.65978606905113,5.34656561422144,6.42208545605799,7.64083121589727,7.66538852338198 -"Tfru07257_t",30.0123153745917,26.5573846874638,29.6856165949585,71.3767404463708,46.3198663950268,32.628510955179 -"Tfru07258_t",0,0,0,0,0,0 -"Tfru07259_t",0,0.424110097303781,0,0.638962086965328,0,0 -"Tfru07260_t",0.253043303528456,0.203112966918628,0.653726349103319,27.7448115834102,9.63677454821096,2.03649294605468 -"Tfru07261_t",0,0,0,1.46048476788235,0.611040707584934,1.03302621392548 -"Tfru07262_t",15.1148376618085,24.829072976965,16.6485957247233,36.3593488817091,34.9878330401954,33.9472296949032 -"Tfru07263_t",7.44976055954172,2.98988937660573,8.09324516961744,10.1954987300771,6.5472219986481,3.60572656553102 -"Tfru07264_t",57.9618283980703,57.6516729202325,62.9007630215495,48.0582907839018,43.9711098461639,42.9642439946847 -"Tfru07265_t",4.09345913803904,4.14508801453728,2.92853722806704,1.69368061432489,3.81556904219066,3.63998480231172 -"Tfru07266_t",27.6662709777133,40.5169404015356,25.7413113406101,26.3678611011147,25.0843063181197,21.7588532076521 -"Tfru07267_t",5.95273526837685,4.23867745821046,5.53961482264922,6.45534268431257,10.8863012636569,8.35924813638737 -"Tfru07268_t",6.4548887261965,5.75114794996949,6.42023065250758,7.34450466461875,8.5200624345322,8.99661459617745 -"Tfru07269_t",16.5620457063711,12.2825312709508,18.0864289918585,27.4972770110622,23.8916917045905,15.8931083265348 -"Tfru07270_t",0,0,0,0,0,0 -"Tfru07271_t",0.0987195966762015,0.23772093425494,0.170025184412301,0,0.427225877310923,0.216680586932001 -"Tfru07272_t",26.1208734499458,56.924387352,34.3213824413877,99.4125428810991,110.653917404195,148.286217671276 -"Tfru07273_t",0,0,0,0,0,0 -"Tfru07274_t",0,0,0,0,0,0 -"Tfru07275_t",3.6106719916591,2.67335495991751,3.24336110858077,2.31816108023879,1.91281324438705,2.16346079418521 -"Tfru07276_t",2.14600317109102,1.3236477188061,1.05046213020743,0.98137979046678,0.391039765089105,1.4544031365209 -"Tfru07277_t",11.7257036515042,9.06765429164559,13.4224392177877,10.7976435734328,11.4485627224587,6.95732166545382 -"Tfru07278_t",8.99152594838175,11.9570591963024,9.70773185505503,7.0796182670791,8.47940996044296,8.73864269097063 -"Tfru07279_t",0.375046324872533,0.301042433111538,0.645943892566374,0.387941267086092,1.9476922585264,1.09759035404246 -"Tfru07280_t",6.69109195524802,6.20626948828885,8.51502674660948,20.2251291385627,30.0507657492522,27.849655425757 -"Tfru07281_t",49.8151982865869,63.0960735385052,49.5150076118819,39.2136491240712,45.7476045660982,46.8246385410998 -"Tfru07282_t",23.3030205838297,24.2204267664134,26.0362249498731,33.2514779367561,26.4272933475541,21.7706968659574 -"Tfru07283_t",0.71650641169678,2.65995702092583,3.23936041645226,12.8773339999921,12.9458550118969,7.92886166203806 -"Tfru07284_t",180.740634532938,163.834924160984,183.15693584713,428.068600402716,305.705387732651,251.703748514357 -"Tfru07285_t",1.0611837065867,1.27768746347971,1.14230077843317,1.46355947498585,0.535786221292877,0.58230056677621 -"Tfru07286_t",0,0,0,0,0,0 -"Tfru07287_t",0,0,0,0.181796744408545,0,0.128587991268573 -"Tfru07288_t",0,0.313644209381324,0,0,0,0 -"Tfru07289_t",14.9380514789403,15.314088948082,14.4905192762685,13.5744536851729,14.2640719627581,13.8943213053267 -"Tfru07290_t",17.5835672312332,19.7595851910234,17.4975685130538,21.017394786134,10.1461178118585,20.0118799434718 -"Tfru07291_t",22.1849306110885,19.1878345902986,25.0285076734828,16.8994680933307,16.7457676270438,14.1552082507011 -"Tfru07292_t",6.50901146357899,6.19874635743785,7.22032096326326,5.99105620608331,7.20931746031922,5.40795667546593 -"Tfru07293_t",37.1208641548256,32.5965946178447,33.0482921778145,36.6649606846018,35.1490509910811,32.9787613354153 -"Tfru07294_t",29.2536133400576,31.5341948684336,30.4401059371904,35.3996406216059,41.6319220260019,52.1355418170168 -"Tfru07295_t",3.90349091003552,3.75819584898518,3.80235196274186,3.03379231338114,2.57549353368173,3.03540793099669 -"Tfru07296_t",1.90046675991093,2.50333197278829,2.18212136328687,5.29256299412116,5.10346587152935,5.49049838356274 -"Tfru07297_t",0,0,0,0,0.43110974892284,0.121472450249758 -"Tfru07298_t",0,0,0,0,0,0 -"Tfru07299_t",4.91083622046039,3.24787325432528,4.98415162197353,5.805350735852,6.52754761103908,3.33630804903094 -"Tfru07300_t",2.98851142665228,2.93189152247759,3.71736880465075,7.55642120237258,9.19700797702059,8.50307151748308 -"Tfru07301_t",121.016059976668,130.291432941604,154.509204290849,2.99651185611326,3.72061939782278,3.41852390580521 -"Tfru07302_t",0,0,0,0,0,0 -"Tfru07303_t",0,0.378839915825756,1.01609151639654,1.46458725551603,0.204252371680672,0.517963987300936 -"Tfru07304_t",81.7898381783695,88.7796680273957,85.7767960243206,141.860038318424,154.808644008102,85.1381980351525 -"Tfru07305_t",0.553306542951355,0.962278337234687,0.873548710913033,13.7359314062887,31.7674094826465,30.5638552155314 -"Tfru07306_t",187.969705886617,149.977527880584,186.308365534863,124.680949839148,137.159224734221,213.997081201536 -"Tfru07307_t",3.09020205403956,2.01896721607738,2.47547360025437,2.15574548416703,2.11485945836001,2.68153811047499 -"Tfru07308_t",5.80607681495194,5.32620067835139,4.59175912346195,6.37339898310127,6.30733628431117,7.3255254659082 -"Tfru07309_t",9.24348156677486,10.3310383730756,10.3279051346267,6.17248055040601,5.67127476577419,5.90680937050148 -"Tfru07310_t",22.2284265387487,13.6441333108296,24.209072269258,32.7983963083526,37.0642552750965,44.2452765287155 -"Tfru07311_t",12.3390240883063,5.90043168898615,22.6080362398231,9.77611993056952,6.36246137785292,12.1009336533181 -"Tfru07312_t",88.9700255206052,101.800219019616,69.2949930049517,96.2169126232224,94.0023553657305,77.7570033948152 -"Tfru07313_t",7.21964175312569,4.21459406317008,5.6520090594308,5.43117773870083,2.27230763473641,5.76234935818769 -"Tfru07314_t",6.70089359877728,7.64572370660603,7.15349861246874,4.23896799157486,4.64946796234472,5.51038110506748 -"Tfru07315_t",0.348590774985259,0.223845659807418,0.240151754248743,0,0.0603434392683146,0.204033393614532 -"Tfru07316_t",3.23435803957201,2.79586101748603,2.35677060900821,5.6617213154993,24.0465329186939,30.6415155106819 -"Tfru07317_t",0,0.169218331284779,0.0907725419917615,2.0716161012778,1.00357877980114,1.69665158868295 -"Tfru07318_t",1.98301001746017,1.92017474008648,1.8432029545843,1.69304603934762,1.47116807538,1.33569631694639 -"Tfru07319_t",59.069796167424,55.3165470842452,63.3832444580755,54.3117773920529,59.6480754173711,71.0003760271216 -"Tfru07320_t",4.75856923010258,6.1808258975403,3.72532008071235,41.2568146286078,33.4738294647669,17.9774222355214 -"Tfru07321_t",0.624612466702211,0.250682174784329,0.672357955087676,1.04989309456757,4.25740910042203,4.79838757008897 -"Tfru07322_t",6.50402916940238,6.55301399560213,6.79699670177907,15.7679353718863,15.9501335924055,6.81568203719914 -"Tfru07323_t",29.6507211662679,30.600077858172,26.1417292575566,35.7818768131175,34.2182796247563,21.1770373854724 -"Tfru07324_t",25.3285016534812,27.1746960516207,31.3138173590386,29.8309463884708,28.8684814756312,23.6686349779186 -"Tfru07325_t",23.9701020251501,25.7399523531425,26.2282935215998,26.6978375613947,27.9546104662979,26.4239167380649 -"Tfru07326_t",15.3276968914022,13.6507442823262,15.5251015151661,18.7991417141563,17.8152077304657,14.2581850335733 -"Tfru07327_t",4.49438229641488,3.70005514496486,7.14525589801816,6.67535700182159,3.69055176924253,5.22748108262746 -"Tfru07328_t",37.0219032364787,44.1609466369079,51.6275957091253,5.85029970736427,8.45636695799542,5.19163388534349 -"Tfru07329_t",1.00410808890176,1.07463753015115,0,0,0,0.489761432879504 -"Tfru07330_t",0,0,0,0,0,0 -"Tfru07331_t",0,0,0,0,0,0 -"Tfru07332_t",0,0,0,0,0,0 -"Tfru07333_t",0,0,0,0,0,0 -"Tfru07334_t",0,0,0,0,0,0 -"Tfru07335_t",0,0,0,0,0,0 -"Tfru07336_t",0,0,0,0,0,0 -"Tfru07337_t",0,0.0865641912926631,0,0,0.0933425472635675,0 -"Tfru07338_t",0,0,0,0,0,0 -"Tfru07339_t",8.70163977858684,7.36561825044276,7.90216859907941,8.01891402549331,7.94237847544728,10.7650669752413 -"Tfru07340_t",56.3317839604369,56.3249693877366,79.5635020152289,66.3334561929853,88.9099674147428,81.2878981462536 -"Tfru07341_t",13.2529738757096,11.178816339714,15.6684572015031,3.25289789727803,5.63823926532421,5.09469747223986 -"Tfru07342_t",12.1854673854812,8.98583262608403,16.2948487615329,2.56187629207797,4.03013052235966,5.21873149469245 -"Tfru07343_t",0.493815587194401,0.24773513966563,0.21262517551046,0,0,0 -"Tfru07344_t",19.4858829843198,21.1297151583207,22.0933367611686,29.6221885017121,27.2788167485493,22.6450220412971 -"Tfru07345_t",356.323031287289,375.275723832941,366.499060290608,42.8574679366172,30.4724502892574,14.6377281439385 -"Tfru07346_t",10.6166959656225,10.3743853872284,11.92511801661,0.954932349750381,1.99763308566811,0.675440217872283 -"Tfru07347_t",6.14384313431889,10.1847106146479,6.21091997176698,5.24985066047188,6.47372858795845,6.547152636514 -"Tfru07348_t",1792.17612541904,2360.44268284356,1749.82098888104,3829.53737785531,2888.92210422709,1434.11012906558 -"Tfru07349_t",0.372276411099472,0.39842543584629,0.427448838803154,0.641793529005056,0.75184181717612,0.0907903394776628 -"Tfru07350_t",56.156698619498,47.4465112095682,61.1544623676191,103.706889318097,76.7750243162643,47.5010314367972 -"Tfru07351_t",77.3149868196521,72.8314614601929,91.361377611903,120.746946867443,121.440326127965,101.905575473731 -"Tfru07352_t",0.388038691784977,0.155735577406431,0.16708017544442,0.200690170501812,0.0839651781966733,0.425854917965665 -"Tfru07353_t",22.8289067313716,20.3399974371883,24.5739524345903,17.9465003556349,21.1423406034243,20.377003529397 -"Tfru07354_t",1.1772154706827,1.4173921436691,1.45152232673514,2.3800320283906,2.47782845288539,3.48432504748256 -"Tfru07355_t",0,0,0,0,0,0 -"Tfru07356_t",6.7790800144324,6.97310004060869,6.14052102054729,4.77865728159605,5.21557759605397,6.20896300696822 -"Tfru07357_t",6.32449511453807,6.26107825753684,5.1740348935304,5.66968617191819,5.93023824427947,6.24676266742358 -"Tfru07358_t",12.1041030235048,11.3590427433484,12.4957970290053,8.84220813633764,9.4817112086735,10.0908862647837 -"Tfru07359_t",4.10109827434581,5.00763602345063,3.10189762792502,3.56274887363299,3.14887568733128,4.87777050570295 -"Tfru07360_t",20.0633010715353,20.8694031626804,19.154143046834,8.5499756896255,8.9103726937475,6.21247921322064 -"Tfru07361_t",0.545758186042318,0.321250998348562,1.12795399516138,6.73663622567516,4.69223161690322,3.67352891123435 -"Tfru07362_t",0.0751098585350446,0.150723077820708,0.0970215234252578,2.56384608520375,1.62525356098165,1.29139821718362 -"Tfru07363_t",1.10656449909704,0.675045624511437,1.3722053608154,0.22892213863879,0.383107715059637,0.550530040594532 -"Tfru07364_t",13.5902960258172,13.2656075443248,12.4641397444666,11.7459928093175,12.6400187154022,12.1675342681354 -"Tfru07365_t",11.8527036885336,11.1858411509874,12.6839891631215,9.95181564491925,10.6452381292462,14.1144676933063 -"Tfru07366_t",0,0.0364111798147865,0.0390635615374913,0,0.0196311674725483,0 -"Tfru07367_t",6.46987732428883,5.50798757431613,6.33130536471125,9.43009623796671,8.82408379125459,9.03686993946743 -"Tfru07368_t",6.61065259840898,5.08514955865786,6.64157392487918,10.2569127140402,10.2514600186483,7.85946666632371 -"Tfru07369_t",1.85421884215419,1.54558967356416,2.21090473245129,3.61463781624529,2.71596702037864,1.72185651466084 -"Tfru07370_t",18.9204864818257,18.7867619467756,22.8034285204926,13.4744013051967,12.4578370794476,15.311580739667 -"Tfru07371_t",5.95493401324327,2.79440915010405,4.73363463254747,0.758114231862897,0.475772154754541,0.536227348539827 -"Tfru07372_t",6.47122572104685,6.21464214049239,7.11515638469261,7.35114015870427,8.1015424893863,7.31324301923201 -"Tfru07373_t",57.2202392914711,48.2669628631103,70.1515218089762,85.8446117531235,69.6893516603647,41.5448411304806 -"Tfru07374_t",8.91159797796569,9.09048354925096,6.95478153499088,7.10554082123653,7.2312110371809,8.96506949953796 -"Tfru07375_t",5.78072406714631,4.74168292434849,4.94174654523908,4.75739526728982,4.9668924295788,4.81594642537163 -"Tfru07376_t",0.172505907128229,0.553868624369483,0.742769157776529,0.892185254900253,0.970513322523766,0.820375541830503 -"Tfru07377_t",1.94243645714329,1.16936713902286,0.418183329291526,1.00461091129809,0.840622477668429,1.77644681579126 -"Tfru07378_t",3.54692767203929,3.42285817685833,3.87811475537003,8.69812905481834,9.17546612365885,6.93960352878458 -"Tfru07379_t",7.11881785327924,7.35152185517176,7.85119514215462,14.0812298966908,14.5932145435675,13.0666554338533 -"Tfru07380_t",0.290693345229922,0.350000891091615,0.375496795678723,4.66066463433534,6.03851994338982,6.59313790525159 -"Tfru07381_t",219.696732224805,218.299677049711,269.548186029806,204.342096732701,56.8675935354165,19.1200625470454 -"Tfru07382_t",9.56021357285319,9.40040325983569,8.49007335321948,8.28196662365302,8.74014202688188,10.185888292707 -"Tfru07383_t",1.69658838883842,0.892226041311077,1.46102072636183,2.11800803200206,1.62036421879263,1.79772459102219 -"Tfru07384_t",0.743454661694225,0,0.274383246399876,0,0,0 -"Tfru07385_t",0,0,0,0,0,0 -"Tfru07386_t",199.326507151123,192.917079211326,188.542490905694,118.358684694002,118.245744475191,93.5747549951104 -"Tfru07387_t",10.2853825766912,8.63400952086625,10.3447612551564,12.9942196377248,10.3294433050322,12.8100077955909 -"Tfru07388_t",11.5876381753721,10.6963490716596,8.48191152721639,16.7804663942343,19.0560419592836,12.0810634831156 -"Tfru07389_t",10.4604360182347,9.70832562501335,7.88202352952587,12.510728488753,12.1661295941156,16.0239650131024 -"Tfru07390_t",38.6315433342719,32.7079047956398,44.8885229782188,32.7068089365685,23.818078138914,19.2622785912585 -"Tfru07391_t",12.187191988121,10.8258818499221,9.86532490465008,7.73181202331739,5.48518361395443,6.77661201180567 -"Tfru07392_t",13.7194365292081,12.7797368378963,14.4399715338225,11.6507522470049,8.57612881576948,6.44391756244282 -"Tfru07393_t",7.35574727491936,7.76883698352357,4.73414362551872,11.2127540422303,8.64524047655591,7.19452774004606 -"Tfru07394_t",0,0,0,0,0,0 -"Tfru07395_t",4.86755401894653,4.4859198616449,2.6392213979536,4.00928142121592,4.83718706838603,9.23294890095802 -"Tfru07396_t",0.584759003049518,0.312916496598536,0.503566468450816,1.20972868437055,0.843548077938736,3.42264834300015 -"Tfru07397_t",7.81194052295471,9.0459579900833,12.351707604196,17.2208074657729,20.062813752463,13.4923302057902 -"Tfru07398_t",0,0.0659819031477344,0.0707883717880958,0,0,0.060141937207806 -"Tfru07399_t",45.7102156290979,52.5995671439603,34.1354919123705,56.6089173922694,79.9002285070583,68.4541792752857 -"Tfru07400_t",1.44253304349992,1.9849600822661,1.65632056180552,4.47639179159357,3.50786329908489,3.1159719617624 -"Tfru07401_t",22.2046157127447,24.3139536819825,24.0148630526654,31.5132643848165,35.7516039962599,40.8061479388439 -"Tfru07402_t",4.93295549079216,4.92366158663712,5.55937209757406,6.58896007574765,6.49727993653604,9.36804715760722 -"Tfru07403_t",0.328593390240342,0.351674080922996,0.0943229673630168,1.1329705844496,0.189605852199007,0.400684875008981 -"Tfru07404_t",36.429278423017,37.1481034274981,23.0481926975896,7.88241724982007,10.2957655671956,16.5901267672966 -"Tfru07405_t",0.327880915413281,0.409396821438762,0.373754019849009,0.715992208464184,1.08630070509602,1.00495473634901 -"Tfru07406_t",0.0379108198427109,0.121721128189503,0.0354772282512753,0.745071314403614,0.411796596123454,0.424288153780326 -"Tfru07407_t",0.905284232450942,1.01731580844589,1.247339930473,4.68204977517697,4.54461526989494,3.97403404049856 -"Tfru07408_t",22.8049461842745,21.5076220284814,24.1231843687127,14.2015902926963,12.4344267549284,12.515784834498 -"Tfru07409_t",37.0903847524487,28.193727526602,43.4525751130453,3.38919047688318,4.99127792512642,5.56158107633371 -"Tfru07410_t",0.609654403276106,1.7810263838665,1.26001246967955,1.26123140533069,2.00517132372723,0.624463597655507 -"Tfru07411_t",30.2206002499699,24.2574914777105,28.3904014467727,36.0458199008186,37.6710277793701,38.1908547286099 -"Tfru07412_t",32.5078089176314,32.5399917987877,31.7267252118185,36.6583893535434,34.9776762502385,39.0802125451476 -"Tfru07413_t",1.66067023850536,1.80345420394261,2.01895021304467,2.32403884654366,3.72024319768144,3.43060799030945 -"Tfru07414_t",8.13003646175298,5.98200447731315,6.70948172278621,3.15358707437727,4.6912157624722,1.98274386536702 -"Tfru07415_t",3.22231582137059,3.14073858983216,4.3605637021467,2.61886926602776,2.98824017746517,3.70474333200085 -"Tfru07416_t",6.61279018932679,4.85939892029268,5.13317718615939,4.43164835482826,4.51438501311072,5.24701730225176 -"Tfru07417_t",113.073426032921,121.380309030572,95.4181334921831,57.7759880581406,107.695099152537,88.7090322899614 -"Tfru07418_t",0,0,0,0,0,0 -"Tfru07419_t",127.726183688717,110.151562493807,105.081334052246,59.7675305961415,49.3532879988591,48.393305021673 -"Tfru07420_t",3.7707035259426,4.07159287572496,4.05893677615846,3.8539161301975,5.38117415874282,6.1908435892451 -"Tfru07421_t",91.9004389905905,92.5853579616023,97.647303573218,52.3103058101633,63.1530794571447,57.4516882992529 -"Tfru07422_t",9.27157485851695,11.5892460180833,9.93458441675798,10.8349021789706,7.4735374952274,4.91927606024085 -"Tfru07423_t",12.4600882646771,14.9366960594616,12.6979851212271,4.16484096063411,3.72046224167565,3.46338096171947 -"Tfru07424_t",0,0,0,3.3671683152152,2.7091596243785,2.1068500387581 -"Tfru07425_t",4.16496426557357,6.93089229316045,6.21105904919928,13.8701903085871,22.9483837570511,17.3172417648682 -"Tfru07426_t",1.17114837506665,1.37875196131381,1.54642329670165,1.93826417458627,1.41913636680734,1.3138442156196 -"Tfru07427_t",36.0698648941183,35.1412394072687,30.5255857564223,14.1646239614979,18.0420460512558,12.3785524587151 -"Tfru07428_t",10.320590549423,8.5206198147921,8.11455344040828,3.40489507330076,2.00677686642188,1.49989628602629 -"Tfru07429_t",417.490591882498,410.76872873151,403.636159208549,460.987769083766,588.804788138584,582.418920549945 -"Tfru07430_t",0,0,0,0,0,0 -"Tfru07431_t",0,0,0,0,0,0 -"Tfru07432_t",0,0,0,0,0,0 -"Tfru07433_t",0,0,0,0,0,0 -"Tfru07434_t",16.3063619509797,13.8217743202515,14.154596602324,8.63590994556866,10.1618726531812,11.2622314588705 -"Tfru07435_t",0.195524538645727,0.261572944208629,0.112250916939385,0.67415705063836,0.50769945606274,0.81063306210118 -"Tfru07436_t",80.3637725049945,91.6280537950565,73.7369797360384,24.6850012410473,25.489798173125,28.6386652377848 -"Tfru07437_t",9.73123467506724,10.2677826415399,10.0358139384997,9.01052934593984,8.5585655152809,8.98578408484643 -"Tfru07438_t",11.7746827285966,11.7875890659611,10.2537235229434,15.3270401711116,18.3215985683954,13.938533251966 -"Tfru07439_t",7.99876081732601,8.14758941463567,7.81462633501235,6.91900593947756,8.9070410634912,9.68519595259738 -"Tfru07440_t",18.2693798800922,18.4749328813656,16.1043545817918,14.8799390115213,20.0461111904955,21.0496780227321 -"Tfru07441_t",17.671272069924,15.1357803052231,16.2692802902395,29.8703165614095,26.7974920061526,23.387731186608 -"Tfru07442_t",8.52329810072065,8.55185822460719,10.1975874066362,7.00971962681631,7.92142503592499,10.6317941321302 -"Tfru07443_t",7.19374037879111,6.97934266370875,8.29578574756874,8.67047287628901,6.49714171124221,5.03436826574948 -"Tfru07444_t",14.9493539385309,16.1181438205008,12.8258994633582,10.9878696552823,9.07422685781598,9.63879280869244 -"Tfru07445_t",16.0045425921231,17.4314961653911,14.5712346464235,20.2336628026327,18.2367627507779,18.5696235909069 -"Tfru07446_t",352.466854293122,467.861520010218,327.01561298284,245.654848200539,241.944719660057,262.94917970567 -"Tfru07447_t",103.352571700796,108.772768841544,112.13084270958,62.9142808291853,83.3536648114989,84.4398637420626 -"Tfru07448_t",0.640214556259972,1.19907163874401,0.857612212992443,2.79606779461204,5.47970545667265,5.56880728316885 -"Tfru07449_t",73.3325279417208,76.2764999586873,70.6428914490343,63.5232301548476,75.3544277703629,67.417291578226 -"Tfru07450_t",0,0,0.201520100187838,0,0.405091054698156,0 -"Tfru07451_t",17.9232664728558,18.4428101127279,17.2704998644062,19.6012429685604,17.4267202078678,16.0017120036716 -"Tfru07452_t",28.5078439908874,23.0770280137375,30.8042637872863,58.4125513622886,51.287358492532,26.5256274034584 -"Tfru07453_t",9.50164487518727,6.35565551526716,7.84143010014599,4.83226370010348,5.89386485520776,6.25657536404222 -"Tfru07454_t",3.87484716055435,3.89523650767998,4.30610345424436,9.1803961961177,9.85381988675661,9.46343222892396 -"Tfru07455_t",50.88111648338,45.2884508795092,49.3664575982355,28.3035265224803,34.4485507403073,37.0610320352856 -"Tfru07456_t",3.08245931006793,2.73198982776321,2.46633122616252,1.76030266646179,1.58073574605041,2.9153388059942 -"Tfru07457_t",8.61936388545868,7.99831647595996,7.57565561743352,7.97830576081769,8.15549817168244,9.57817805731146 -"Tfru07458_t",11.7223781541555,17.8777199347354,16.4039704809879,30.2125050050676,28.4936808549692,24.0857269319643 -"Tfru07459_t",39.7566561912979,38.0850206767764,41.5328392675726,30.6067300989816,31.2517220731953,35.238696052516 -"Tfru07460_t",13.0193018303524,12.9600696036303,12.5137342750259,7.82036575016747,6.65471424511767,8.28784516267814 -"Tfru07461_t",11.2538707582479,10.8176129878404,10.8877510799942,16.5749724168911,23.6500375677002,21.8888801807277 -"Tfru07462_t",9.87640133307292,12.1360734718521,11.6551153445358,12.73843719384,10.8701392812581,12.3108537823514 -"Tfru07463_t",155.554697634873,141.392833100128,170.36249243944,94.7477716568453,119.62600194304,100.723388360644 -"Tfru07464_t",21.3525018063036,18.7591075560616,19.2426710622407,13.8546587504563,13.072151787563,12.7883522381886 -"Tfru07465_t",16.3916652114232,13.2730642695046,18.7182677177649,11.9833371047336,10.4046937267376,7.91957921447182 -"Tfru07466_t",6.55652155131628,5.81762196306538,5.1232481643195,6.89598263244246,4.73218201949684,4.96835545268003 -"Tfru07467_t",8.94585700383744,8.61066415214239,11.4137989165017,15.2121995129913,11.3889153751584,11.4784147868537 -"Tfru07468_t",2.43401442796994,2.19055284076245,3.23936041645226,7.01904620905196,5.74560666255374,5.23451343560899 -"Tfru07469_t",13.9626184857573,12.4318752265949,14.3478933901894,31.9195473834858,31.7869179771423,28.0713331888624 -"Tfru07470_t",8.12820289466643,2.00749270686558,15.1250515791185,0.823128425968867,0.787159343094117,0.332693151969568 -"Tfru07471_t",2.00540899389907,1.65320851009382,1.86698621851442,3.36382621266908,2.81472945748332,2.85515116612851 -"Tfru07472_t",0,0,0,0,0,0 -"Tfru07473_t",2.11157140897713,2.05811415671228,3.24711472026184,6.39650376466548,5.7440020646428,4.52435808416784 -"Tfru07474_t",4.23581731620743,4.19334400945955,4.07324619312443,6.86427841997038,5.92709487300584,7.9026505491057 -"Tfru07475_t",53.4352791658811,73.3977028638011,53.966582253464,26.2626163316935,38.7788925099955,54.0161515598765 -"Tfru07476_t",47.6815651946053,43.2850201122536,50.1042965314998,37.8714555868909,38.5678160742436,41.1151413703473 -"Tfru07477_t",0.0984112183968537,0.368632983302532,0.112996042120162,15.8121285527195,10.2497843806768,1.96803393430807 -"Tfru07478_t",3.37730157875166,3.72748017681824,4.43526499900851,4.10476950741947,2.7770111397951,3.52111398000355 -"Tfru07479_t",20.6517155309286,24.7846295289156,26.7627350237524,25.9244760821255,27.5930817341593,29.3389307047149 -"Tfru07480_t",9.02511476173264,9.32509040806301,8.68148591609207,11.5203038673886,12.1328243091138,13.6276818357912 -"Tfru07481_t",0.113527536177632,0.455631790655301,0.0977644810370728,0,0.0982619517815122,0.332243566629069 -"Tfru07482_t",6.66121379903946,6.51873491655861,6.31256971330614,5.63174983529469,6.71326223793315,6.65389315281931 -"Tfru07483_t",11.8031107860711,10.8673830399273,9.56637566511523,6.4635503673187,8.11270163882072,14.4773074797667 -"Tfru07484_t",44.9039604946399,51.7096187206967,51.4141436236628,49.7256564549614,50.0862185253059,62.3081296568295 -"Tfru07485_t",15.9507452556033,17.3464806892243,16.5557289880932,14.5637817327465,12.834236441485,15.6400514146184 -"Tfru07486_t",2.07057108389214,1.61312480287096,1.80929844209965,2.55121650960857,1.50224324978042,1.60401750906096 -"Tfru07487_t",4.45520824313845,4.43437579393994,3.60641539735131,3.30267834945487,2.6350252934869,2.86844189396566 -"Tfru07488_t",2.75802696018822,2.03811531578171,2.63897869605022,3.39625496980008,2.61451550701616,3.36312208534115 -"Tfru07489_t",9.0035295008884,8.58540998604639,10.1435572750471,12.744230118103,14.003713772827,14.2642524012867 -"Tfru07490_t",0,0,0,0,0,0 -"Tfru07491_t",10.4094490168703,11.5993492594813,10.335102281062,11.2740482516448,7.31378317487466,4.74875826646942 -"Tfru07492_t",5.98140891317329,7.10398071538465,6.47941657182559,7.92280051646957,8.50358424212301,14.4355762285533 -"Tfru07493_t",0,0,0.0716294217499345,1.20453842928909,1.00791467371927,0.547708453898415 -"Tfru07494_t",0,0,0,0.183718485892779,0.153729057755431,0.0649736361801033 -"Tfru07495_t",66.9427259373746,83.9614642023909,82.9879308768688,555.255225711157,525.991568468279,193.644084161121 -"Tfru07496_t",3.7940170154847,3.48043896861854,2.33373277314302,24.6680588929065,25.8016866935969,15.0688533767893 -"Tfru07497_t",1.22642885797188,2.95329219051173,1.58421275840391,11.4173663422202,15.9227396316779,10.7676017213613 -"Tfru07498_t",0.409058438327194,0.451472036023634,0.440326938328873,6.82285505399861,7.39087766351752,5.1252058406657 -"Tfru07499_t",0.877392968892402,1.05639955640185,0.755568835169023,1.5882295216475,2.08838717363318,1.28386547940215 -"Tfru07500_t",17.5234133681987,18.832253786183,16.5334745511005,32.0312303786609,23.4601475164047,13.3805117228281 -"Tfru07501_t",7.97600079279201,7.49729162587336,8.04343375527997,10.2042365018923,13.6707477450431,14.6656170229084 -"Tfru07502_t",6.45699590061538,7.35638236548923,6.93562235720854,5.63765226482797,5.40846775921381,4.77497158981777 -"Tfru07503_t",4.11706482191199,4.26483425769671,3.61728579837169,7.16483844801121,8.52341089029303,8.14106752667254 -"Tfru07504_t",58.122979022444,57.4409051567641,54.0285474496734,62.253342486671,55.7306304343544,52.3568910002903 -"Tfru07505_t",0,0,0,0,0,0 -"Tfru07506_t",0.0585030478909801,0,0,0,0,0 -"Tfru07507_t",0,0,0,0,0,0 -"Tfru07508_t",0,0,0,0,0,0 -"Tfru07509_t",0,0,0,0,0,0 -"Tfru07510_t",0,0,0,0,0,0 -"Tfru07511_t",0,0,0,0,0,0 -"Tfru07512_t",0,0,0,0,0,0 -"Tfru07513_t",0.193572296708404,0,0,1.40159425527878,0.167543420088293,0.28324912362386 -"Tfru07514_t",0.290693345229922,0,0,1.95447226601159,0.629012494103106,0.638045603734025 -"Tfru07515_t",16.4082767116493,25.8143886369167,29.9556480149832,19.6880193027905,24.4273070734164,16.8068522947141 -"Tfru07516_t",0,0,0,0,0,0 -"Tfru07517_t",0,0,0,0,0,0 -"Tfru07518_t",0,0,0,0,0,0 -"Tfru07519_t",0,0,0,0,0,0 -"Tfru07520_t",0.145346672614961,0,0,3.0068804092486,5.29784715799368,3.29656895262579 -"Tfru07521_t",0,0,0,0,0,0 -"Tfru07522_t",5.24746440719168,4.5800803892676,4.73822760732739,6.06025896915569,5.95292236687269,6.33660410581213 -"Tfru07523_t",39.3011917970756,39.3673958256758,44.4030864927757,30.8148508355355,36.5586808836832,38.1683695592212 -"Tfru07524_t",62.8917461465808,71.9042346313703,58.1563628356996,48.9706191733869,43.1863992498304,40.7503159069907 -"Tfru07525_t",0,0,0,0,0,0 -"Tfru07526_t",0,0,0,0,0,0 -"Tfru07527_t",0,0,0,0,0,0 -"Tfru07528_t",10384.8077706436,10929.9379578441,12883.5774591746,9410.96722716674,8384.62606576564,7284.59559484158 -"Tfru07529_t",0,0,0,0,0,0 -"Tfru07530_t",0,0.53946804000384,0,0,0,0 -"Tfru07531_t",0.563828032023105,0.452573859174368,0.971083435804427,0,0,0 -"Tfru07532_t",1.66671508001927,1.65637329281209,1.33277417228622,2.8323194256413,2.43867876551755,3.22277829037691 -"Tfru07533_t",0,0,0,0,0,0 -"Tfru07534_t",2.35373900437245,5.81323319111936,5.45711219581937,11.798765433446,14.2606892951876,16.558475168744 -"Tfru07535_t",7.05310999014018,6.03882134480459,6.61369418359004,10.7002307697776,14.1086563602709,19.1504943862035 -"Tfru07536_t",0,0,0,0,0,0.109759035404246 -"Tfru07537_t",6.013757990147,9.36170134726033,8.63126763168951,12.4410492247306,15.457606818211,10.1330684312467 -"Tfru07538_t",4.57718284339328,4.2098101883475,3.3668267362824,6.51001554211213,5.36481257740152,6.13952924485952 -"Tfru07539_t",6.27944035374389,5.08932113335733,4.67254624172831,4.60349462945702,5.3823019742152,5.30794058007181 -"Tfru07540_t",11.1127650286282,10.4137817874331,10.9892226785976,8.96488072395405,8.55998420456161,11.8261887260879 -"Tfru07541_t",0,0,0,0,0,0 -"Tfru07542_t",32.1180319121387,26.986438933815,28.6026078595268,20.3281973960395,20.7703634568036,26.4991944732378 -"Tfru07543_t",0,0,0,0,0,0 -"Tfru07544_t",0,0,0,0.105459761926316,0,0 -"Tfru07545_t",0.889940431900926,0.642904179187353,0.919648931789414,0.920538599865303,1.30946541674939,1.30222584377919 -"Tfru07546_t",14.603202355876,13.8100584700118,11.9973914591349,18.6645868360302,18.160300778801,28.122874525955 -"Tfru07547_t",4.77331686201406,12.2606372758154,4.81521810822206,78.7168098305598,92.3678298361764,110.307830581267 -"Tfru07548_t",6.03426489180389,10.1715342763049,6.87082218685126,31.9715618550505,33.5423799010283,25.9497339570262 -"Tfru07549_t",11.9436268947705,12.7721632273876,10.5121040555404,10.4554181184918,11.3748993897551,11.9841166150808 -"Tfru07550_t",14.0178419238894,14.4334084386181,12.3212496699427,17.0997724907545,16.8187372934202,12.3071581240388 -"Tfru07551_t",8.51282221123162,10.6292321111726,6.96059089144195,10.0507362870861,9.00550170165466,13.5260878840033 -"Tfru07552_t",0,0,0.0894261013194486,0,0,0 -"Tfru07553_t",10.1367892633317,9.47412880403916,13.3929259311613,12.7834662820303,12.2591935875513,12.1914168250667 -"Tfru07554_t",6.92393215149292,6.94713307180473,6.75756687607899,9.9074231286602,10.7872186626078,11.0603335676586 -"Tfru07555_t",4.78350899766249,5.51946838217312,4.89170321487987,0.618497109090994,1.81137690472681,1.96863180938576 -"Tfru07556_t",6.13712167973236,8.21024817576923,6.45943892566374,21.5131066293197,15.7586010008045,15.2165935446795 -"Tfru07557_t",6.64639056736135,4.69473769105589,5.49461133929878,9.21237743105707,4.25698139205349,4.27921302588706 -"Tfru07558_t",0.838705924506963,1.29032497120686,0.963004538668005,9.83214871922688,9.37657726234563,5.2669726806297 -"Tfru07559_t",0.694300634474773,0.278650847177622,0,0.359086131517705,0.600940862134868,0.761963551566666 -"Tfru07560_t",0.732648634634716,0.392055261726655,1.0515365692941,11.3675813146157,14.5850443545466,12.1500699656793 -"Tfru07561_t",0.773101626731111,0.620553727150165,0,0,0.223048602203433,0.754172513207089 -"Tfru07562_t",3.72721011886268,3.56432179310832,2.97247538321149,2.84517935064724,1.47823993371288,0.990876784722159 -"Tfru07563_t",0,0,0,0,0,0 -"Tfru07564_t",0,0,0,0,0,0.156798622006066 -"Tfru07565_t",0.0741486114487621,0.297588283393577,0.127706471257606,0.383490043368423,0.256712601300332,0.43399865720302 -"Tfru07566_t",0.0862529535641144,0.0692335780461854,0,0.446092627450126,0.4479292257802,0.441740676370271 -"Tfru07567_t",7.14981929969765,7.48122472072929,6.4869258998155,7.39564628317316,6.9619638177114,11.2094334029868 -"Tfru07568_t",0.125388622046936,0.503235112067049,0.215957361096818,9.27353333380724,10.8528125848237,13.0727925750132 -"Tfru07569_t",81.3762328189272,61.3169160960711,117.227604708709,165.428930018347,268.87022837524,256.322377148298 -"Tfru07570_t",0.232286756050085,0.124301391736377,0.066678079232658,0,0.201052104105951,0.169949474174316 -"Tfru07571_t",5.50596549664877,4.54173108389839,5.6373285169429,4.77668063321226,3.27223280079418,4.26969609183536 -"Tfru07572_t",14.4371351243895,13.1335304370232,16.695165223254,17.4935479390442,20.1123399178329,16.3973891189846 -"Tfru07573_t",0.113069147740844,0.272275255788632,0.486848694262678,5.61392261602916,4.8932600483391,4.21900141473118 -"Tfru07574_t",0.525064854821546,0.337167525084923,0.904321449592924,7.92951949923972,7.8167382642193,6.99165055525046 -"Tfru07575_t",0.461595476766195,1.11154129148876,0,0.477466174875191,0,0 -"Tfru07576_t",0.44925335171897,0.540910468050679,0.967188716142165,5.3440465455282,8.94341400706598,10.0250498647301 -"Tfru07577_t",1.708062086376,1.81397604987822,1.1540918093022,6.14298989833166,5.78637526106998,8.34402125888268 -"Tfru07578_t",2.21561361434497,2.05580005616745,2.2405641528748,2.77538044645574,1.88250213938063,2.26051030573661 -"Tfru07579_t",18.6910660745942,17.3172433002197,20.205430731733,14.1917638439826,15.0590801842673,10.7654779340875 -"Tfru07580_t",0.0430381028542251,0.0345458529800126,0,0.0890357006427096,0.298007558681635,0.283394230756864 -"Tfru07581_t",241.427878877169,389.870410073926,496.93780628116,173.797687654569,435.577106256339,632.553042873402 -"Tfru07582_t",80.2829539112808,26.00677838539,162.716132500133,7.414577118369,4.46706210829264,8.39113444728706 -"Tfru07583_t",0,0,0,0,0,0 -"Tfru07584_t",0,0,0,0,0,0 -"Tfru07585_t",0,0,0,0,0,0 -"Tfru07586_t",0.121930880655221,0,0.105001039139962,0,0,0.0892090853793581 -"Tfru07587_t",0,0,0,0,0,0 -"Tfru07588_t",10.7922979822976,8.78971455614031,10.1787696929307,9.35212747563305,10.7384450371767,8.34216237243626 -"Tfru07589_t",5.98476326673811e-06,0.292248110508817,0.313188696711749,0.639740124395233,0.415428987901137,0 -"Tfru07590_t",6.89582086473487,5.83273035451411,6.76844297665313,9.89404311890531,9.56254439843737,7.70347616535361 -"Tfru07591_t",8.79721110379151,8.04525649197779,6.65420006534063,3.93541743103139,3.15445729383306,5.90843777442374 -"Tfru07592_t",8.06499616808501,7.01308452004991,3.47259436558689,3.47595375224063,4.07197528082923,6.39236622037872 -"Tfru07593_t",72.7338161309806,60.7500412967849,64.0915067630922,56.5717305452761,47.337200663601,19.3883074620107 -"Tfru07594_t",0,0,0,0,0,0 -"Tfru07595_t",0,0,0,0,0,0 -"Tfru07596_t",0,0,0,0,0,0 -"Tfru07597_t",6.36195086230379,6.15412570057918,5.61908473533467,7.93057409685899,6.35363688218322,9.7866697199281 -"Tfru07598_t",4.46026360123237,6.10734430197549,4.29284385815504,1.89972488067143,2.04379949676724,2.22671672075572 -"Tfru07599_t",0,0,0,0,0,0 -"Tfru07600_t",0,0,0,0,0,0 -"Tfru07601_t",0.628024668216686,0.465326084073499,1.2064552979043,1.39917632384357,1.75617105311639,1.83794313454378 -"Tfru07602_t",0,0.0698792798103467,0.149939307704526,0.0900506153650618,0.0753511340086208,0.0636943625143811 -"Tfru07603_t",0,0,0,0,0,0 -"Tfru07604_t",0,0,0,0,0,0 -"Tfru07605_t",0,0,0,0,0,0 -"Tfru07606_t",0,0,0,0,0,0 -"Tfru07607_t",0,0,0,0,0,0 -"Tfru07608_t",0,0,0.215957361096818,1.29699766906395,0.43411250339295,0.183477790526501 -"Tfru07609_t",0,0,0,0,0,0 -"Tfru07610_t",151.783453589228,151.867053073891,165.361636233846,110.996842359058,134.428955668685,123.446632564095 -"Tfru07611_t",87.7986430980114,85.6781138014207,88.4651858381619,56.2422225301259,57.8624755848693,72.8776704042197 -"Tfru07612_t",0,0,0.145564820860028,0,0,0 -"Tfru07613_t",58.4843812187016,56.3820386400168,63.0598626489163,81.7315449194983,88.1635588834151,73.4104086541291 -"Tfru07614_t",0,0,0,0,0,0 -"Tfru07615_t",11.5876381753721,11.6264663822387,12.9723352769192,18.2787223222909,20.8112037186913,15.6841876798343 -"Tfru07616_t",0,0,0,0,0,0 -"Tfru07617_t",19.7983423427714,26.4980685153538,25.9546440240873,27.4273047324412,31.1357544845406,29.0673796864353 -"Tfru07618_t",3.04617778369752,2.31641811127046,2.89935121243533,2.81923729974015,2.22027005552119,1.29029705742396 -"Tfru07619_t",0,0,0,0,0,0 -"Tfru07620_t",2.26036888174298,3.02392399179303,4.055253137188,4.09164959724883,3.58678155830273,0.964698248396063 -"Tfru07621_t",0,0,0,0,0,0 -"Tfru07622_t",0,0,0,0,0,0 -"Tfru07623_t",0,0,0,0,0,0 -"Tfru07624_t",0.828368546637115,1.55146930195199,1.0105810776059,15.9945283626226,21.6886815838536,15.5051547795382 -"Tfru07625_t",13.4843445395279,22.4259231465261,14.8701356145534,76.3626098759395,80.7745014251997,54.2965020406223 -"Tfru07626_t",7.63730697922249,8.84517403469538,6.95270517089625,22.6839839081613,27.1968664463323,18.5193427009346 -"Tfru07627_t",0.219062260160228,0.175837040461498,0,0.226594116889921,0.379211704398013,0.240410925005389 -"Tfru07628_t",3.11651397700531,5.65571332400516,3.61728579837169,8.54972495720058,6.56770206746108,4.0646249240024 -"Tfru07629_t",9.40219760758168,8.45539285705195,9.89599430849873,8.91501092114112,9.11748721504311,6.94268551406753 -"Tfru07630_t",0,0,0,0,0,0 -"Tfru07631_t",0,0,0,0,0,0 -"Tfru07632_t",0,0,0,0,0,0 -"Tfru07633_t",0,0,0,0.104697402201548,0,0 -"Tfru07634_t",39.8163324152518,41.5812059471977,41.9174309637613,27.8162552201482,31.2146279579881,31.8764206047468 -"Tfru07635_t",0,0,0.0823983097578974,0.197947252453951,5.21750819140558,32.8327028001949 -"Tfru07636_t",42.0051883857237,30.479944267677,36.8963151433913,35.2809305938776,35.9206390932496,30.1178793149251 -"Tfru07637_t",0,0,0,0,0,0 -"Tfru07638_t",0,0,0,0.220555441186002,0.0922764521806079,0.234004034871996 -"Tfru07639_t",8.16586088369435,8.07524088072755,7.9884072063574,14.1227514462694,11.8739559151221,13.0959769770043 -"Tfru07640_t",219.616721935764,238.356001837492,212.959860441709,18.0829964033656,30.8928760543147,63.7744406869064 -"Tfru07641_t",32.8919601191055,31.478998159072,28.4056798890538,27.3346056433846,26.9280494296508,30.5097062161049 -"Tfru07642_t",26.4847268968069,28.8798495943979,25.8889889477965,18.5473389554386,24.144659992332,24.151596285872 -"Tfru07643_t",3.14283423893185,4.26917154064363,3.53921488186008,35.1346404539093,56.7063361446459,65.9754455114788 -"Tfru07644_t",0.123544671722717,0.198333838285249,0.319172276326914,0.766754504358394,4.27728495990112,4.15793051766673 -"Tfru07645_t",0,0,0,0,0,0 -"Tfru07646_t",32.8918432746066,25.3926664777174,30.850666908806,40.5238997399058,49.1407775817069,51.6551749663075 -"Tfru07647_t",2311.64349663605,2912.80037202118,2242.63365490273,7942.51418777972,6022.57033651278,2348.305969302 -"Tfru07648_t",0,0,0,0,0,0 -"Tfru07649_t",28.8711717355397,35.2363807905652,28.1231233901574,9.66902628500773,4.71103780090518,4.06881381949261 -"Tfru07650_t",3.48572466646237,3.2937583858086,2.92574586633005,8.53470787589403,6.60687766127584,6.35956763959895 -"Tfru07651_t",21.9840226902041,22.0576874153066,22.3122290033552,1.62427737064705,7.47525463647804,11.488795634598 -"Tfru07652_t",40.5427253471492,38.151451097617,32.8844163488336,6.55523193281257,9.14197268992406,14.801547288944 -"Tfru07653_t",225.02779492352,237.962464819551,255.296901538925,218.679508092837,157.013960533513,77.2534749191423 -"Tfru07654_t",0.569948282031529,0.548983758618599,0.19632487372438,0.825362153040695,0.986619325893067,1.75137890957114 -"Tfru07655_t",31.0626603188545,36.0052198733221,25.1128955879198,25.4461384962896,25.5227003651243,23.1636262952671 -"Tfru07656_t",0.0731797707068357,0.117479973897186,0.126037832695878,0.302783427969633,0.12667917128627,0.2677049644006 -"Tfru07657_t",0.986423210623649,1.18767425665922,1.34497906397382,0.765254006306812,0.924931483501123,1.14269680694831 -"Tfru07658_t",0.704653672826679,0.691303406511492,0.337118900127837,3.15848546995722,2.64290766860619,2.11948482159923 -"Tfru07659_t",0,0,0,0,0,0 -"Tfru07660_t",77.5177715408672,98.7813990354189,82.5113903422489,90.0532515071978,95.7029988451881,111.918229543346 -"Tfru07661_t",2.12684498155563,1.60675514560202,2.80117440826996,1.87644562248046,1.73257112299792,2.01374730629979 -"Tfru07662_t",2.36279184669696,3.94365587376115,3.61728579837169,6.09067789325165,6.32999984021081,6.55810236540369 -"Tfru07663_t",10.9408862772118,8.70362681033173,7.31869452228692,12.5296007378876,15.2191767177877,10.4347659705246 -"Tfru07664_t",75.0473729838078,76.6263875806887,64.3821739896469,61.8078144072135,56.2131582240688,56.3126119662495 -"Tfru07665_t",0,0,0,0,0,0 -"Tfru07666_t",0,0,0,0,0,0 -"Tfru07667_t",7.35369345744765,7.60192032684839,9.64289715481049,7.77940578029405,6.89527834053025,5.58402731844413 -"Tfru07668_t",4.47152005396414,3.48043896861856,3.38391252105739,3.50398563819696,2.11104709311249,3.07325299131889 -"Tfru07669_t",0,0,0,0,0,0 -"Tfru07670_t",0,0,0,0,0,0 -"Tfru07671_t",19.1488260387165,22.5179910412883,21.4825093078964,12.6334301896981,11.822421036635,9.73454327204117 -"Tfru07672_t",9.42355381542209,9.85713374545883,10.1397348563528,5.354087003641,3.65383914591964,5.29624745481748 -"Tfru07673_t",7.21463159296782,7.46401391409371,4.97031636417485,8.78938687566047,9.99121524984537,13.489469236705 -"Tfru07674_t",676.885655164486,941.13467710138,719.938639358517,2696.82998949317,1898.7495661415,814.202264338322 -"Tfru07675_t",2.71836350107919,2.64954449604485,2.78681494481641,3.94994744669476,3.47323447437271,4.21447636713992 -"Tfru07676_t",2.92210006161556,2.05232406573431,3.14546591162756,2.26692636071177,0.948441447630249,2.13791512439575 -"Tfru07677_t",0,0,0,0,0,0 -"Tfru07678_t",31.2200724488487,30.7551458692328,32.7511011474194,21.431133781729,20.6350098741176,18.6887006228851 -"Tfru07679_t",59.5629126316082,48.8803713615179,54.1635915840841,48.5070265808388,56.5552122475815,54.147790799428 -"Tfru07680_t",0,0,0,0,0,0 -"Tfru07681_t",7.00328633757137,8.11721194946753,6.3311885644278,10.5504995445787,9.63313814386586,11.5446307456669 -"Tfru07682_t",0,0,0,0,0,0 -"Tfru07683_t",0,0,0,0,0,0 -"Tfru07684_t",30.5758696854221,34.1872188225643,24.6480171842536,26.6759241516316,29.7619455814515,30.7325299131889 -"Tfru07685_t",0,0,0,0,0,0 -"Tfru07686_t",16.1830515254472,23.6372180743746,19.8760335447371,49.5780772151456,29.2386195048399,21.3510207817944 -"Tfru07687_t",21.6314143782769,25.0351934793596,29.458135843027,14.0495136726748,24.3830855199154,27.9721230347587 -"Tfru07688_t",26.0161166776094,27.408456877871,28.4715398323448,38.6840014456942,33.3076319135524,33.7066457112392 -"Tfru07689_t",37.8796788121259,28.9000735787077,25.5147837563718,33.3629489694039,31.4876915128435,33.476505798295 -"Tfru07690_t",0,0,0,0,0,0 -"Tfru07691_t",0,0,0,0,0,0 -"Tfru07692_t",0,0,0.275078767937011,0,0,0 -"Tfru07693_t",0,0,0,0,0,0 -"Tfru07694_t",1.22545892302814,1.05475956880696,0.97901935491958,1.31340959035966,1.40571579525749,1.5015190361804 -"Tfru07695_t",1.56735777558671,0.912113640621526,1.65342354589751,0.445842948740733,2.40796779225777,8.1131585498437 -"Tfru07696_t",12.1778853302757,13.4320159511784,13.6771171088965,11.8037963232196,11.4617362306119,9.47054140254375 -"Tfru07697_t",8.12136164691969,7.29594260427042,7.82741741260969,6.56470139028143,5.12069326185345,6.76823962236681 -"Tfru07698_t",5.42836280677045,4.64253746078471,3.50598469688333,4.44521008808802,2.12548160315086,5.03540682423786 -"Tfru07699_t",1.839643286966,2.830238349253,1.3201772986758,10.1487700820186,11.8093652268803,12.1135519365854 -"Tfru07700_t",3.90299541740921,3.54372570157802,3.85696886345801,4.23573953156604,2.93513613775393,2.48107248347145 -"Tfru07701_t",81.5763012855197,89.5391904364597,91.2106998496704,106.177726398239,106.181474650261,98.5577987447795 -"Tfru07702_t",15.5096080193441,12.1899028299934,15.5821542083704,7.35297909307793,8.39005895980605,8.74695082144606 -"Tfru07703_t",0,0,0,0,0,0.0314882478618738 -"Tfru07704_t",2.16766862657605,3.01307668735425,1.86669248248256,13.8906899509945,17.1145234581821,22.8221430444071 -"Tfru07705_t",110.095231366664,115.796893454822,128.872397831201,96.1460968876225,95.2911749885843,76.6969259641098 -"Tfru07706_t",0.38607709913349,0.247917297856561,0.332471121173869,0.079870260870666,0.53466061998764,0.508442590475551 -"Tfru07707_t",18.9219633662793,19.3477439628171,20.4190712356683,21.3592485295102,18.6201806945976,18.3820739667672 -"Tfru07708_t",14.8746552388348,14.630211811665,15.695953339568,14.9526688879866,12.874521063842,18.7000930145089 -"Tfru07709_t",0,0,0,0,0,0 -"Tfru07710_t",0,0,0,1.89802669516501,0.643865209430216,0.507975701044444 -"Tfru07711_t",1.0348422670615,2.3409167475101,2.67346990697124,2.23815611201293,4.47845625700733,6.19468688059798 -"Tfru07712_t",6.20990164837021,6.03821649491028,5.60853206718688,7.05008648839148,8.17156784106109,6.9443697399994 -"Tfru07713_t",0,0,0.195001929831358,0,0,0 -"Tfru07714_t",16.5070556365302,13.982867261047,17.0581035976725,24.3403952191809,22.0695029160116,18.5011885765017 -"Tfru07715_t",1.46054201619345,1.24268976561202,1.43383373092619,7.22142686881816,7.18036571154472,5.2574425303508 -"Tfru07716_t",6.38582309818485,6.48306962749129,5.63621609123508,5.72054903717384,5.80264398183128,7.45207450416893 -"Tfru07717_t",28.6974495334482,29.8098548635029,28.6863120245954,60.8815744429603,60.6841594243975,53.1489566214693 -"Tfru07718_t",0,0,0,0.0903314384899008,0,0 -"Tfru07719_t",23.5311620440909,20.7105359388773,23.2857218470119,20.9240459338425,15.3645960967456,9.212207983806 -"Tfru07720_t",4.89940447723707,5.14715432805457,5.64619224102615,3.80089282606477,3.86643082996208,4.42801460155723 -"Tfru07721_t",1.47963481593547,1.71552948184109,2.33601626900716,46.7655226076385,55.0689975561438,54.9697306079347 -"Tfru07722_t",32.2196460252652,35.8090433559165,35.5472846513434,110.85569700856,122.422596487099,106.735358213252 -"Tfru07723_t",2.30340713158576,3.59508404507915,3.63657064268899,10.390798538373,16.3924584297201,23.9680964441016 -"Tfru07724_t",0,0,0,0,0,0 -"Tfru07725_t",0,0,0,1.34988495265685,1.12953544572146,1.07414667657747 -"Tfru07726_t",9.34730840451544,12.7827248521207,9.73884638023149,18.5018142764136,19.6766858938308,20.0943464817004 -"Tfru07727_t",2.44295118236842,2.56007652326194,2.3959405126533,4.2817685569179,3.75903557057546,4.31943473739488 -"Tfru07728_t",0.78759728223232,2.10729703178077,2.48688398638054,0.814676660880794,2.04507687145272,2.11286143153173 -"Tfru07729_t",40.7022209468756,47.4126268657085,36.5468757176697,35.5553615068801,53.4881749933868,64.1887700107076 -"Tfru07730_t",2.25742994502878,1.90941447317668,2.06940938479513,1.93331724204014,1.55470224777683,1.93576755881975 -"Tfru07731_t",0.233578434026267,0.249985190053696,0.201146568954867,0.0805364632319598,0.269560127222684,0.341789025911275 -"Tfru07732_t",3.55243878919263,3.54507569232148,3.47259436643683,6.25671675556449,6.23261522728449,5.2684336994038 -"Tfru07733_t",5.73247276793406,7.77468646078175,5.27698163527165,23.5138048003241,17.4513226363966,15.0408616986901 -"Tfru07734_t",1.3160894533386,1.93673235598911,1.7000298791303,1.01636074651795,2.0883802498048,0.481449554775805 -"Tfru07735_t",66.2532989103422,71.1465399291098,70.6752109806193,241.248477623527,377.259572386874,341.060118823453 -"Tfru07736_t",0,0,0,10.7662283367164,10.9392508114429,2.7196928868893 -"Tfru07737_t",6.13318540097154,5.72440619838579,6.3870581159704,9.66362354955372,8.33308063070719,10.4876714983887 -"Tfru07738_t",4.29515791119185,5.08380843715568,4.95260967194738,15.888783403429,17.642873838067,15.6592093491811 -"Tfru07739_t",5.2202979785726,3.50810141706856,6.90002493331017,24.1106618711541,12.6093371650264,4.35229469868859 -"Tfru07740_t",3.32105442581125,1.38223875583863,4.66063177535445,15.0132702366319,6.28128376981087,3.41972514407372 -"Tfru07741_t",6.03738264256996,5.03613306608762,6.11659411655148,4.16330768923581,2.62985721583399,3.89750261933349 -"Tfru07742_t",3.90601751778686,5.37477383161206,3.09671699343997,5.32295500934659,4.88336519038157,2.13199838512159 -"Tfru07743_t",0,0,0,0,0,0 -"Tfru07744_t",0,0,0.0328988490090283,2.33979731604438,1.56480569155842,0.29231153875956 -"Tfru07745_t",0.934932650874614,1.07207480154189,1.14049605660453,0.802610916470763,2.39252785730317,1.2373461485378 -"Tfru07746_t",2.00201250911658,2.97588283393577,3.38422148832656,3.91159844235791,3.91486716983006,4.3399865720302 -"Tfru07747_t",0,0,0,0,0,0 -"Tfru07748_t",0,0,0,0,0,0.107456398297863 -"Tfru07749_t",1.29702831363064,1.42779366599703,1.4041515229674,0.843305939214937,1.18677205107093,2.16903607680204 -"Tfru07750_t",34.5063817921348,40.4982189809964,31.1464834640766,21.3665551002556,17.3992618528997,15.9814945945174 -"Tfru07751_t",10.9060124003502,9.50634604194813,10.4923300033905,18.1553365399804,23.1563358173957,23.9377109262972 -"Tfru07752_t",2.27776429596888,4.59215939846462,2.65852603709119,10.7447207296578,9.06575610801642,12.6995860465747 -"Tfru07753_t",3.61520063975491,4.19587333611199,3.70623544915133,6.8991219084508,8.49321542242661,13.4400233354881 -"Tfru07754_t",0,0,0,0,0,0 -"Tfru07755_t",0,0.225530117113661,0.241958916279043,0,0,0 -"Tfru07756_t",14.8914714678485,15.1105178466153,13.0657814790683,7.55642120237258,8.02527378764057,9.86730057413422 -"Tfru07757_t",0.0990688405323673,0.0795206427087082,0.170626688602438,0,0.085747457922546,0.0724823818707284 -"Tfru07758_t",7.03818845762317,8.62820170818995,8.6506301651844,6.88307673879482,6.31331169252732,5.33664647388199 -"Tfru07759_t",1.24000556120218,2.73715334017281,0.800875084510339,4.64956913467021,6.17128568015254,6.01042097933214 -"Tfru07760_t",1.92390175805841,0.514759580264575,0.552257373778162,0,1.11013502772232,0 -"Tfru07761_t",5.76071155004211,4.04601030101908,5.58095523177347,3.47595375309139,4.15507681818966,2.6342168497019 -"Tfru07762_t",4.76623028342782,4.14755386106586,3.64413733664169,2.257711212904,2.23616276270546,3.06347594044512 -"Tfru07763_t",25.4655678882965,30.2464977303506,28.8724684715913,32.96883274378,30.8975407942808,33.9286657238602 -"Tfru07764_t",8.18461980210013,6.9325723926308,6.98904222726293,6.78488515805357,5.28399071540987,8.47491845644971 -"Tfru07765_t",0,0,0,0,0,0 -"Tfru07766_t",20.0788286391509,17.683807124786,18.3716092000289,22.932640943632,21.8443250151299,24.3819905369366 -"Tfru07767_t",6.34815253047403,6.03352413309862,6.3370495565459,4.54095462104983,4.01839665969658,3.1887888180602 -"Tfru07768_t",16.5549860108441,14.775870952251,18.1928197506341,16.8685990958847,16.0398185996292,17.9875689786017 -"Tfru07769_t",0,0,0,1.53803261953091,0,0 -"Tfru07770_t",0.413844220549002,0.4598860797363,0.712765674555999,0,0,0 -"Tfru07771_t",0,0,0,0,0,0 -"Tfru07772_t",0,0,0,0,0,0 -"Tfru07773_t",4.65478055542733,3.39868466540877,3.54967297971054,5.39492154601967,4.53854769276557,5.23150542580985 -"Tfru07774_t",0,0.0888744711920719,0.0238371387042616,0.429483577400089,0.263542763591931,0.202520790202233 -"Tfru07775_t",0.971218228571647,0,1.6727333171661,1.00461091129809,0.840622477668429,0 -"Tfru07776_t",0,0,0,0.186078894705106,0,0 -"Tfru07777_t",113.0908785695,81.0498763501673,111.301088459652,147.059564647027,172.695360040596,128.840206477332 -"Tfru07778_t",0,0,0,0,0,0 -"Tfru07779_t",0,0,0,0,0,0 -"Tfru07780_t",7.26085633136075,7.19412139951625,7.22968667331547,14.2582167792236,16.1040789577371,17.3065023278862 -"Tfru07781_t",0,0,0,0.117908879005814,0,0.0833989956938639 -"Tfru07782_t",0,0,0,0,0,0 -"Tfru07783_t",0,0,0,0,0,0 -"Tfru07784_t",4.95440810307584,4.71267355702632,4.56884948761133,4.94316618009861,4.52456704836534,4.4525420631135 -"Tfru07785_t",7.59129910585368,8.32763164366376,8.22605655955009,9.88081733277107,9.74628334989518,10.6453040361949 -"Tfru07786_t",0.491648144968237,0.690613804124202,0.476306835191591,5.97548743216149,10.638455642768,8.90276652935098 -"Tfru07787_t",0,0.000110946823431286,0,4.72237488544782e-05,0,0 -"Tfru07788_t",0,0,0,0.107018280575474,0.0895490693575358,0 -"Tfru07789_t",15.5536872950792,16.4271632197283,16.5663758853564,11.5371181207966,9.29957814058892,12.6523691969036 -"Tfru07790_t",26.6073920566461,28.0808144058997,26.7318481287292,15.0352838293542,20.2575226106754,16.0422003652423 -"Tfru07791_t",15.9602722754129,9.4619297639636,8.12726913919122,10.9072110668381,7.8821296036343,6.61099445724046 -"Tfru07792_t",9.24661880690907,7.71660106299335,7.42193336970835,9.89477239700137,8.04817422159645,7.67142473763107 -"Tfru07793_t",17.5102220920884,20.2184103947395,19.8520954222244,19.7750946900461,14.4031137758844,17.3194118301944 -"Tfru07794_t",14.2594912975856,21.2260613699428,21.9564345579473,21.8171158648959,30.1587029091102,29.9037873532398 -"Tfru07795_t",7.19509127550872,10.5818589153514,5.89813855938225,6.85342389705664,5.15545305122197,8.43125157793151 -"Tfru07796_t",0,0.316276478589682,0.393787144730273,0,1.45861260294633,0.552430356121594 -"Tfru07797_t",0,0,0,0,0.316916253880516,0 -"Tfru07798_t",0,0,0,0,0,0 -"Tfru07799_t",0,0,0,0,0,0 -"Tfru07800_t",3.80616840113517,3.24411537447427,3.27769007419014,2.80056993184616,3.3962561568575,2.4976460555324 -"Tfru07801_t",25.0818993912535,22.602573268734,28.1032192992252,25.7031541398128,26.1479306982635,22.6145031436673 -"Tfru07802_t",0,0,0,0,0,0 -"Tfru07803_t",0,0,0,2.69872185799021,4.51638784585833,2.29062334756687 -"Tfru07804_t",0,0,0,0,0,0 -"Tfru07805_t",0,0,0,0.276088463311468,0.173265713228719,0.0976410799465889 -"Tfru07806_t",0.184638190706478,0.296411011063669,0.1590015735548,0,0,0.270176087148913 -"Tfru07807_t",46.0103801388012,42.8546417510475,42.8501398942856,52.6944139882689,47.9180477118843,51.4759049649748 -"Tfru07808_t",16.9488766480919,17.5680616724154,16.7791493744962,29.2653771110156,30.841296954712,35.8830968803714 -"Tfru07809_t",0.22107993887223,0.354913184299919,0.380766926144389,0.686043503899616,1.91352221890313,2.26450220412971 -"Tfru07810_t",0,0,0,0,0,0 -"Tfru07811_t",1.15610610235937,2.47462403732054,3.98233298903306,0.797237099332887,0.333549744579445,0.563899631434658 -"Tfru07812_t",0,0,0,0,0,0 -"Tfru07813_t",7.85771604712078,7.40924464025283,7.42071843198644,3.98840312420082,3.99471050149319,5.36430111836606 -"Tfru07814_t",0,0.504849770180633,0.309500389165493,0.557639639533377,0.311075269810991,1.57771276559686 -"Tfru07815_t",0,0.104710411517057,0.112338068272413,9.31059041006621,6.88749146493395,8.87616547182163 -"Tfru07816_t",1.56045192275259,1.74773663110975,1.50004076303967,17.2671568728082,19.1286095852511,24.1612114220318 -"Tfru07817_t",0.557590996270669,0.149189170391559,0.800284468666304,3.26831934748637,2.5739413917989,1.76780039323653 -"Tfru07818_t",0,0,0,0.232349849805574,0,0 -"Tfru07819_t",0,0,0,0,0,0 -"Tfru07820_t",17.2889111186411,16.6830291015274,16.8770838140968,13.4932082911608,12.8572770785735,15.8457472212133 -"Tfru07821_t",0,0,0,0,0,0 -"Tfru07822_t",0,0,0,0,0,0 -"Tfru07823_t",0,0,0,0,0,0 -"Tfru07824_t",0,0,0,0,0,0 -"Tfru07825_t",13.638048177183,10.7280576163385,10.5112687972165,9.59272951340155,8.26293685435444,10.7264511872331 -"Tfru07826_t",0,0,0,0,0,0.260813549475436 -"Tfru07827_t",14.0202747989435,14.2905441095596,18.2062066673012,16.2287907015194,15.3132466842553,14.3282788469437 -"Tfru07828_t",10.5534681962713,12.8741042225471,7.90719677713614,6.72247975668845,3.35443568537313,7.85217229861461 -"Tfru07829_t",12.0362894794359,12.1646288052681,10.616859709838,8.26647934319877,7.17015866247926,8.23574757534411 -"Tfru07830_t",0,0,0,0.346210533176433,0.0724241477274094,0.183660537329814 -"Tfru07831_t",0,0,0.0559951361977043,0,0.337680391571141,0.80875078718918 -"Tfru07832_t",17.070323291731,17.1275230449525,18.1651797712134,10.5943438047778,14.3528052645739,10.1698357332468 -"Tfru07833_t",11.3926678695584,9.34788919371559,8.43003822423137,6.98333250244377,4.71124355452695,6.60649060916365 -"Tfru07834_t",4.94980057734474,4.48341682004817,4.61448350494984,3.47595375309139,2.27967728133108,3.78757665957138 -"Tfru07835_t",0.626943110226831,0.503235112060747,0.539893402735283,0,0.542640629234391,0.458694476310507 -"Tfru07836_t",2.72887534756442,2.50333197278829,3.52496527915571,1.81459302655583,0.674838462350989,2.70959660487512 -"Tfru07837_t",0,0,0,0,0,0 -"Tfru07838_t",5.72798023441687,4.81667892978461,5.40243982873695,3.38566924002408,3.30517474174178,4.58992329872301 -"Tfru07839_t",7.84160602761376,7.86788191717805,7.12339718973595,4.64911287408353,4.6351454545542,4.86263136930364 -"Tfru07840_t",11.3912375283319,11.3414891097666,12.4506316919182,9.74354702626659,7.48943116186076,5.84999917513112 -"Tfru07841_t",656.371308370104,908.908435083354,808.901513235206,491.091370564588,526.855381632481,469.360180233278 -"Tfru07842_t",0,0,0,0.0695190750618277,0,0.0491720478611022 -"Tfru07843_t",9.17994183264161,4.46579503423739,8.384437280994,0.287744515984386,0.240774318934831,0.203526688166814 -"Tfru07844_t",0,0,0,0,0,0 -"Tfru07845_t",0,0.0621506958681886,0,0,0,0 -"Tfru07846_t",0,0,0,0,0,0 -"Tfru07847_t",18.5568207471127,19.5694275187922,34.701873001015,84.73038838982,28.6285560809648,22.6659508971578 -"Tfru07848_t",0,0,0,0,0,0 -"Tfru07849_t",24.2063797477052,24.0017560229945,28.5091168854718,42.7129910337501,45.2920979440377,41.4107818321782 -"Tfru07850_t",8.80011254853164,10.3491128284288,10.2218063973475,10.3728217966795,9.47671296231442,11.0053152186084 -"Tfru07851_t",0.171100563689302,0.137339114087545,0,0,0,0.125183421234985 -"Tfru07852_t",0,0,0,0,0,0.0647719496486217 -"Tfru07853_t",1.41835701042703,1.48879166920615,1.69119855508287,1.24141205467549,2.07753840909483,2.31491783761682 -"Tfru07854_t",0.248551410566413,0.199507411292854,0.214040579785307,0,0,0.181849289427153 -"Tfru07855_t",0,0.0984430730174957,0,0,0,0.0448650071725385 -"Tfru07856_t",2.32652902344715,2.68494813237611,3.00369776055898,4.79074789859456,5.2336151347029,4.14159668049099 -"Tfru07857_t",0,0,0,0,0,0 -"Tfru07858_t",0,0.0326871085879712,0,0,0,0 -"Tfru07859_t",65.4050122394403,73.5220497629815,59.89781594578,50.4812704345895,38.648585055052,25.9682024479415 -"Tfru07860_t",0.497102821132825,0.399014822585708,0.214040579785307,0.257097171086641,0,0 -"Tfru07861_t",90.7962881686687,101.389157519632,84.2039887311087,76.4726244923152,106.889694623811,142.673265936145 -"Tfru07862_t",137.09668847365,111.492819644646,141.140721948736,43.4494219136423,69.8142124896744,85.4100371207028 -"Tfru07863_t",159.852155643379,134.813702915379,189.185477012072,61.2070117392179,107.604993331141,99.3644643043023 -"Tfru07864_t",22.5110678089238,27.3832188881125,16.3877036169325,30.2465589012096,23.0997019243279,24.2803965612487 -"Tfru07865_t",929.675807059642,1124.98823003945,834.11837678132,2494.93544646978,2349.64526901774,1395.06411048441 -"Tfru07866_t",18.3402935205273,16.8583762542462,22.1622439759393,26.6204204682175,26.627604961638,13.2020022866516 -"Tfru07867_t",15.2350424196925,10.1324955725003,10.3083274046862,17.7849965345997,10.5491587612069,8.75797484572739 -"Tfru07868_t",1.29057638054162,1.87452318262283,1.69353541401455,0.635690152357605,0.478730503924559,0.179853869279818 -"Tfru07869_t",138.101039265039,173.670115564738,130.627334740577,218.057985249337,228.036496217559,190.226234921449 -"Tfru07870_t",0.641300586041583,1.69135290664193,1.65677212139162,3.79057115931449,4.12335867453936,2.81519357983409 -"Tfru07871_t",0,0,0,0,0,0 -"Tfru07872_t",0,0,0,0,0,0 -"Tfru07873_t",335.335042810206,339.010487030026,327.50758594928,141.09644088845,214.982276929915,259.471282686825 -"Tfru07874_t",18.1267202992335,20.1461093826676,16.5704710431633,8.50959632499551,12.7324656856144,10.3546947259375 -"Tfru07875_t",0,0,0,0,0,0 -"Tfru07876_t",10.5012970964309,10.4654526746865,9.39884652666803,25.6913014405104,21.1401204689495,20.3732501671701 -"Tfru07877_t",29.8457917477511,29.9457999253057,30.1043850982907,28.7280717257964,36.8353027138853,41.2462901466482 -"Tfru07878_t",80.9425821140631,74.0632035439353,88.6031802297786,63.9536434908668,88.4412769377308,68.5439009861572 -"Tfru07879_t",1.38617121672888,0.944069070237784,1.26605002943009,0.56484248487735,0.690781521024031,0.460987948697833 -"Tfru07880_t",0,0,0.0985636457321988,0.11839079540502,0.0990651829949851,0 -"Tfru07881_t",7.39665041083179,6.68710383393638,7.10717876973864,13.2079799700414,14.0845166473852,12.9879829846285 -"Tfru07882_t",14.7399364603317,35.3195367677551,11.6928685271479,13.9699092064606,41.9188713572332,56.9494763473439 -"Tfru07883_t",10.9358335280074,10.0568934206365,10.4152884194495,5.16898295179538,13.5398192868594,19.181337635473 -"Tfru07884_t",23.1878352071481,14.6170892377857,26.5546414100119,4.01844364519235,4.20311238834214,5.24051810658423 -"Tfru07885_t",4.99362379410702,1.41468891644024,6.07096917209236,0.455763166926318,0.508488421806427,0.214912796595726 -"Tfru07886_t",42.8140174303782,174.080588689546,29.7183942356596,203.470463595593,487.248096715822,502.530123278819 -"Tfru07887_t",0.143118188707747,0.0328223436441882,0.0352132956765315,0.0422968332087051,0.0707849543132821,0.0897518517785997 -"Tfru07888_t",19.0027011529044,20.6477811821917,16.6715260512564,11.3506808397409,8.33957010942845,9.29047098968612 -"Tfru07889_t",9.45199361000549,7.95832081239,9.10724984641182,9.50349275530493,8.81033204171608,10.1071577527246 -"Tfru07890_t",0.519651815081118,1.25134339206776,0.298332849350243,0,0.899552713216318,1.52078498539491 -"Tfru07891_t",38.77402004834,37.2534747995733,36.9317291302091,51.6531589182889,50.848842180616,43.8422105055051 -"Tfru07892_t",11.5766511606672,10.2301145411355,7.8656530634631,10.9859473865088,14.0647511766154,11.966648815755 -"Tfru07893_t",18.9349812930464,19.2168019478453,15.5562031743446,23.4131599949161,18.4610278321121,23.2484423177491 -"Tfru07894_t",0,0,0,0,0,0 -"Tfru07895_t",0,0,0.0497563383544937,0.119530734287874,0,0.0422730810360232 -"Tfru07896_t",0.0545167921943202,0,0,0.169173609008341,0.235930708365733,0.518524190618371 -"Tfru07897_t",0,0,0,0.110207791791103,0.046108969130196,0 -"Tfru07898_t",1.4962060281387,2.1719772362424,1.891570444014,16.9253526817826,21.6295444448202,25.8996386991027 -"Tfru07899_t",27.0619109556615,34.5578428639102,30.1702036762238,35.2496394700699,60.9629085228423,76.5313326254681 -"Tfru07900_t",0.153583869783268,0.369836407771396,0.132259078551067,1.03261880233519,2.79157354786965,3.25865947891216 -"Tfru07901_t",16.5008690151245,24.4400466351503,17.1983190725388,55.4716703776665,79.5148274190192,70.6632605174646 -"Tfru07902_t",3.30532629920449,3.31640188608121,1.89759254996548,25.9271960271571,72.7138443183191,42.5217299126744 -"Tfru07903_t",3.81865348961125,7.66289829738461,4.69777376411909,55.0171251503913,118.75020679258,72.041839601696 -"Tfru07904_t",0.708521249879677,0.832763164366376,1.00238040195842,2.22481979678289,2.71581828176854,2.59190011316051 -"Tfru07905_t",2.79344848870576,2.82357040711512,2.672871279585,3.31756669783968,2.32827580329593,3.17922723239885 -"Tfru07906_t",1.44845477192151,1.68383306225526,1.29035165221345,1.96323190572938,1.34014814141967,1.75405640408212 -"Tfru07907_t",0,0,0,0,0.0929250406623886,0.039274798611104 -"Tfru07908_t",0,0,0,0,0,0 -"Tfru07909_t",3.94887485285145,4.41269940664139,4.73414362551872,4.56519271719376,4.95928523461347,6.51472984334879 -"Tfru07910_t",13.5958175851849,11.3749732100966,10.924456632228,15.3782439458607,13.1227756630544,18.1418852912198 -"Tfru07911_t",1.46989892063098,0.907584185962107,0.778957910820284,2.33913442334548,1.95730401933564,0.496353107615432 -"Tfru07912_t",0.415892954314096,1.16840231465072,0.537220663124509,1.93586533278604,1.79984763164156,1.21712989755203 -"Tfru07913_t",154.427562606401,118.411088385262,174.243793364536,197.539281591467,140.991565508465,113.963068484451 -"Tfru07914_t",11.4657569118548,11.4868772014566,11.618373061984,10.7453162454467,10.520935914708,10.1548226085652 -"Tfru07915_t",6.55572304285862,7.30854461889284,6.69093326866441,5.65093637605175,5.884357343679,6.21756385526942 -"Tfru07916_t",0.525064854821547,2.95021584449308,1.58256253678762,124.645529114761,129.975996718995,82.2095175177802 -"Tfru07917_t",0,2.18703259514545,0.782115848296583,83.6107794662523,82.9330873035964,56.1491627603126 -"Tfru07918_t",8.11748180584469,9.72899013481313,9.43223431210091,11.7322065789319,14.5812672590673,14.5628665902338 -"Tfru07919_t",0,0,0,0,0,0 -"Tfru07920_t",0,0,0,0,0,0 -"Tfru07921_t",6.27760588713424,5.9858226619891,6.45814315055328,9.63121589058671,9.62710877634716,9.6174015375275 -"Tfru07922_t",35.0792793799406,58.1920824878903,35.4757365236453,98.063577509591,117.712347547429,83.1818368528281 -"Tfru07923_t",0,0.125108543630769,0.13422210754626,0.161222344763051,0.269810182999329,0.114035361458957 -"Tfru07924_t",2.71001215391766,3.60279815110906,3.28181171223238,4.7303806115659,3.6650123144314,4.52313444286852 -"Tfru07925_t",2.87108271284293,3.25644712191976,3.17117179946404,4.32557394979797,3.83557425453243,4.70349269102296 -"Tfru07926_t",79.738662698323,84.7408937138378,75.6739692443861,55.7583380489841,39.7901424114773,36.164672004382 -"Tfru07927_t",61.6380481747033,61.8445868022617,62.2212475643827,56.968331721012,44.8533767941805,34.0312661402838 -"Tfru07928_t",0,0,0.0847139531234589,0.101755086448811,0.0851450167661816,0.215919413909992 -"Tfru07929_t",23.924266546623,18.9839314257548,21.1446026996153,8.05962120237874,9.43406785769291,6.70994094655348 -"Tfru07930_t",5.42002430783532,3.59393154368221,4.97186547321776,3.53445507852911,2.3456078812361,1.81033135533511 -"Tfru07931_t",0,0,0,0.209394804403095,0.350428165389489,0.148108577894886 -"Tfru07932_t",5.59181588653057,5.66398695071344,4.29946806462563,4.88892069075849,5.35846871759404,4.77303951108163 -"Tfru07933_t",24.1945910630957,28.2335432004879,26.0975084211323,19.8875532591124,19.737229179248,13.085405994971 -"Tfru07934_t",177.405446024604,183.719334107093,165.643852777732,107.643830541535,99.5791579204121,83.5385691061856 -"Tfru07935_t",5.2041825825247,1.79027002772721,1.92068270659134,0,0,0 -"Tfru07936_t",3.6666916691004,2.42379735619457,3.71479927945745,2.67724294204728,3.17364660696129,3.23500314875672 -"Tfru07937_t",0.302195599897293,0,0,0,0,0 -"Tfru07938_t",2.95045685518947,2.6175667381824,2.74138110412642,0.963757972206484,0.940844566041097,1.07933099510275 -"Tfru07939_t",17.1489071849973,16.6263802507473,16.5930541209711,10.0651183790777,7.50486925303752,7.82410738615588 -"Tfru07940_t",0,0,0,0,0,0 -"Tfru07941_t",0,0.643756611140664,0.172662806604854,0.207395808657004,0.173541394554461,0.440083960570723 -"Tfru07942_t",14.1948567648308,20.4625808327402,16.7143550683382,25.7700019625741,34.6017603997518,29.6727875023892 -"Tfru07943_t",19.0223495975349,19.8447171907126,15.502653421593,16.3245685189828,18.1265226193524,23.7079516473171 -"Tfru07944_t",1.69459609827232,2.11571959284397,2.63650002753967,1.67068395499718,1.44191759271454,1.69252687512183 -"Tfru07945_t",2.38368543088536,2.38000605942299,1.61831587962955,1.26288977188441,1.15738298914971,1.89283196041843 -"Tfru07946_t",18.8563436914015,21.4113683813053,27.7237232721918,46.6209125642731,41.0010545517529,32.7514552359531 -"Tfru07947_t",0,0,0,0,0,0 -"Tfru07948_t",0,0,0,0,0.626843483041352,0 -"Tfru07949_t",0,0,0,0,0,0 -"Tfru07950_t",0,0,0,0,0,0 -"Tfru07951_t",0,0,0,0,0,0 -"Tfru07952_t",0.295811185814956,0.593604797684723,0.191053827378787,0.229486383346702,1.53620797855604,5.35655010810862 -"Tfru07953_t",0,0.530972480448698,0,0,0.858824932893532,5.80772218831916 -"Tfru07954_t",12.3413473841241,12.4125389765777,11.139959803835,7.53635990714504,7.91486977978163,9.84528834387112 -"Tfru07955_t",23.0706833365791,20.5104096222338,21.2921199072645,15.1169761143745,18.6160170355434,16.8793545037427 -"Tfru07956_t",2.48400659142263,2.65848541386141,2.35850324988602,4.87529525642082,3.85896065373945,3.7745791098837 -"Tfru07957_t",0,0,0,0,0,0 -"Tfru07958_t",0,0,0,0,0.488012377975268,0 -"Tfru07959_t",2.9788666226013,2.26389360487047,2.29235765419255,1.60620269616633,1.9474473582047,2.13307638778829 -"Tfru07960_t",0,0,0,0,0,0 -"Tfru07961_t",0,0,0,0,0,0 -"Tfru07962_t",0,0,0,0,0,0 -"Tfru07963_t",22.3244357854079,22.1634596908854,6.57688326976326,2.43073689027242,15.763141075991,27.5088379642385 -"Tfru07964_t",133.205042725568,242.375894419209,36.7461203923337,47.8563363391148,121.746713981464,391.778875787149 -"Tfru07965_t",4.91204266591438,4.29069593401278,4.97648949045117,2.98878224685416,3.68883647014688,4.28088550811401 -"Tfru07966_t",161.818645190631,192.796464008281,220.921481645507,58.3213716961609,42.4570768838483,16.5006872017112 -"Tfru07967_t",0,0,0,0,0,0 -"Tfru07968_t",0,0,0,0,0,0 -"Tfru07969_t",3.96899417817862,4.51326608381393,4.12997197451886,2.8225018172248,4.07941843124428,3.32734083705785 -"Tfru07970_t",1.95879116824618,2.0963783943104,1.87424134630658,2.70151846095185,1.50702268017242,1.27388725028762 -"Tfru07971_t",0.165700940377608,0,0,0,0,0 -"Tfru07972_t",7.66052067824749,5.73902170357316,7.2565611760648,6.86738583437508,8.61957425049983,5.23106892139385 -"Tfru07973_t",6.97814940087299,5.90754261991753,6.10314281360571,6.03385872129751,4.67142802564152,6.14251733501763 -"Tfru07974_t",0,0,0,0,0,0 -"Tfru07975_t",0,0,0,0,0,0 -"Tfru07976_t",0.0724227385960754,0.0581323319111936,0.0623669965236499,0.749127964028316,0.5014747884022,0.423896964319846 -"Tfru07977_t",0,0.114294076299974,0.122619857571922,0,0,0 -"Tfru07978_t",0,0,0,0,0,0 -"Tfru07979_t",0,0,0,0,0,0 -"Tfru07980_t",0,0,0,0,0,0 -"Tfru07981_t",0.159211074108871,0.2981898516228,0.274209915227166,0.439160297295184,0.137802610836991,0.349453909309791 -"Tfru07982_t",0,0.0982995699956043,0.0790951705183315,0.221680724049195,0.370989001624077,0.403196456587026 -"Tfru07983_t",0,0,0,0,0,0 -"Tfru07984_t",0,0,0,0,0,0 -"Tfru07985_t",0,0,0,0,0,0 -"Tfru07986_t",4.84927291816467,4.83922188889437,4.96600858434804,3.79589333410916,5.78534486776017,5.94513839194293 -"Tfru07987_t",0.120358705976286,0,0,0.248993821854684,0.104174562060629,0.0880588249661572 -"Tfru07988_t",0,0,0,0,0,0 -"Tfru07989_t",0,0,0,0.554673471237987,0,0.130776723034846 -"Tfru07990_t",0,0.271909294423325,0.583433193285757,0,0.586401970309025,0.495685966341756 -"Tfru07991_t",0,0,0,0,0,0 -"Tfru07992_t",5.43699724408115,4.56542791855372,4.53104692906684,10.5221982087318,6.07213731259449,2.95134942798891 -"Tfru07993_t",2.05320676427163,2.88412139583845,2.06281063858264,4.60156810490713,2.07330716997244,2.37848500346472 -"Tfru07994_t",0,0,0,0,0,0 -"Tfru07995_t",61.0116682544706,55.5908440119356,67.5625281348763,111.586015369127,103.662298718265,67.4337743136499 -"Tfru07996_t",99.8332771262048,85.1461908787094,95.9924998182759,56.073240442606,80.9432827800207,98.4790696711474 -"Tfru07997_t",0,0,0,0,0,0 -"Tfru07998_t",0,0,0,0,0,0 -"Tfru07999_t",35.0134138095492,37.9406256848898,31.7882135178482,37.8842688739331,31.1357456570709,24.2060343546741 -"Tfru08000_t",0,0,0,0,0,0 -"Tfru08001_t",2.1429295413906,2.30649352120635,1.35073278720221,0.965856104508768,0.477333770142138,1.42962448216373 -"Tfru08002_t",18.3156591367572,24.0606898975309,19.4735038177492,17.2748410818635,13.3141314685004,15.1390267801118 -"Tfru08003_t",2.27055072355263,2.18703259514545,2.34634754488975,7.04585220221227,7.86095614252098,9.96730699887206 -"Tfru08004_t",11.1190204550445,9.49169083222262,10.0311286845602,21.5421503605454,12.5263345254247,14.0749821871327 -"Tfru08005_t",43.476187200788,33.5855589189651,47.5736420174955,27.7264793534527,33.6690563185991,33.0045846538526 -"Tfru08006_t",28.568370198936,25.846271375386,30.02242968101,16.2778814085692,13.2016489684556,18.0675391996845 -"Tfru08007_t",7.30525015403891,6.89390709339325,6.80100737649202,13.9895906043925,11.0224276346218,11.0507099335321 -"Tfru08008_t",0,0,0,0.591819594737466,0.825355781138695,0.209302133347484 -"Tfru08009_t",0,0,0.0932290154219509,3.80742356975216,4.02924652794809,2.77226429629281 -"Tfru08010_t",0,0,0,0,0,0 -"Tfru08011_t",0,0,0,0,0,0 -"Tfru08012_t",0.184638190706478,0.741027527659171,0.3180031471096,2.48282410935099,1.27848517482759,2.29649674076576 -"Tfru08013_t",8.26204992145669,7.68543623355339,7.04838776888602,5.11169669572263,5.9480993973625,7.00520902432981 -"Tfru08014_t",5.63484234442635,6.06490365244221,7.05811863096916,5.03377448999515,10.7518946629222,11.0562150297448 -"Tfru08015_t",0,0,0,0,0,0 -"Tfru08016_t",0,0,0,0,0,0 -"Tfru08017_t",37.7372815443935,25.6030954877321,28.6287859978081,24.1643843797797,33.8294355919452,34.8411569069307 -"Tfru08018_t",14.1852254728163,14.8555636237366,12.5857644725843,8.65245420548922,6.01244736573243,6.12906531828946 -"Tfru08019_t",11.4593107206905,13.7005532009653,12.5188287408868,9.37689823240697,8.44337884131121,6.82520163422733 -"Tfru08020_t",0,0,0,0,0,0 -"Tfru08021_t",0,0,0,0,0,0 -"Tfru08022_t",0.800685409112036,1.38426549888238,1.11382700536372,1.65642957442038,1.43935029075852,1.1716213749896 -"Tfru08023_t",0,0,0,0.547221938458971,0.0915791490155152,0.541883398973103 -"Tfru08024_t",2.03831075896471,1.89275775261755,2.16830642528465,1.6123001471285,2.55985940987422,1.95916223043164 -"Tfru08025_t",0.0973469024002867,0.468830857592013,0.419152467945735,2.64528696535929,2.10642654456312,1.85178627518635 -"Tfru08026_t",11.0137420385,8.20203593433097,10.0641163508958,7.65823751136303,11.3334032659288,9.44583220929767 -"Tfru08027_t",0,0,0,0,0,0 -"Tfru08028_t",6.66289195083894,8.60358512285666,11.7249953464462,44.6480266560876,48.6430544750134,41.9657994676648 -"Tfru08029_t",0,0,0,0,0,0 -"Tfru08030_t",0,0,0,0,0,0 -"Tfru08031_t",3.93152009521552,1.328739015113,4.63297688461399,2.24738389208495,1.97007952586579,1.7410053891708 -"Tfru08032_t",218.791487438863,220.90045910006,198.128608501722,118.408651867963,185.840961615208,184.141191628611 -"Tfru08033_t",1.89700850774236,1.52269204877062,0.81680647060006,1.54175368080666,3.16657063966873,0.693960352878458 -"Tfru08034_t",0,0,0,0,0,0 -"Tfru08035_t",0,0,0,0,0,0 -"Tfru08036_t",0.055599190450991,0.133885185341465,0.14363808597108,0.402575715943741,0.144368982763042,0.244070389780454 -"Tfru08037_t",0,0,0,0,0,0 -"Tfru08038_t",0,0,0,0,0,0 -"Tfru08039_t",0,0,0,0,0,0 -"Tfru08040_t",0.443828405585005,0.916077804004319,0.655206484233364,3.73828988540017,2.63416190738061,0.881385763548058 -"Tfru08041_t",0,0,0,0,0,0 -"Tfru08042_t",0,0,0,0,0,0 -"Tfru08043_t",16.4975060125199,21.7987463347956,20.1081748308276,34.1294552795982,23.1761648809144,13.7414333146585 -"Tfru08044_t",1065.41526530208,741.76855518683,1051.50041330891,0.995975287418735,1.35426930678818,1.58505884939083 -"Tfru08045_t",0,0,0,0,0,0 -"Tfru08046_t",93.0305992091461,113.268653559011,100.125417640097,49.0634509507098,55.2797242292589,80.8721351309756 -"Tfru08047_t",0,0,0,0,0,0 -"Tfru08048_t",0,0,0,0,0,0 -"Tfru08049_t",0,0,0,0,0,0 -"Tfru08050_t",0,0,0,0,0,0 -"Tfru08051_t",0.537150746620508,0.862321036022821,1.20267814268113,3.33371523634084,2.60356475820068,3.0653930092439 -"Tfru08052_t",0.488432423089811,1.17616578517996,1.0515365692941,3.78919377153857,1.26826472648231,2.85883999192454 -"Tfru08053_t",0,0.125108543630769,0,2.41833517144577,2.56319673849362,1.25438897604852 -"Tfru08054_t",0,0,0,0,0,0 -"Tfru08055_t",0,0,0,0,0,0 -"Tfru08056_t",3.54136049775025,3.95264083253402,3.43920403599032,2.83423921405913,2.70719235769742,3.26237625232312 -"Tfru08057_t",6.26829016857024,4.87803789704302,6.58286769494394,60.3705798563529,71.0266714064745,64.009791602629 -"Tfru08058_t",5.88938723758601,6.67383142436136,6.41415626103022,50.8850961792759,45.4274120174241,63.8729693865863 -"Tfru08059_t",66.9573854688362,83.5459354192729,55.099585667675,40.084975526524,81.0389360074186,115.077006367416 -"Tfru08060_t",0.765819296002255,1.29088751627774,0.79138431322626,0.950579877782512,1.25940113222248,0.504271229204557 -"Tfru08061_t",0,0,0,0,0,0 -"Tfru08062_t",0,0,0,0,0,0.302783545942747 -"Tfru08063_t",0,0,0,0,0,0 -"Tfru08064_t",16.0446047440551,18.5718505620548,13.1645483153855,27.1380815558979,34.5688768070697,23.6791623921291 -"Tfru08065_t",0,0,0,0,0,0 -"Tfru08066_t",0,0,0,0,0,0 -"Tfru08067_t",11.7819430838006,14.8024767110454,10.5871779464537,1.58961299684057,5.76390229352529,3.37308255144756 -"Tfru08068_t",4.4195219344303,4.37098341584963,3.22820245040217,1.46940271384793,1.22954363337693,1.58787143750623 -"Tfru08069_t",0.355223580428953,0.285131099437567,0.152950773715505,0.367436971785559,0.922374346532588,0.259894544720413 -"Tfru08070_t",27.0218943842181,36.5670346793133,19.689968057116,43.0014897289656,41.6792757123561,38.7800171275703 -"Tfru08071_t",0,0,0,0,0,0 -"Tfru08072_t",56.8087790062431,63.2746104344393,60.3943311710517,68.7151650528528,69.4305099383068,52.8680745863447 -"Tfru08073_t",0,0,0,0.264130224399041,0.22101472437179,0.18682389004978 -"Tfru08074_t",0.215043626548074,0.230148481286637,0.555555839340363,5.1902039828583,6.82467822100264,3.72356591098363 -"Tfru08075_t",0.82870901870725,1.20565452866372,1.33808352590815,0.750051672985194,1.30006256796008,0.719997618188148 -"Tfru08076_t",0,0,0,0,0,0 -"Tfru08077_t",11.2931981889487,15.0343552169015,13.7575459872497,89.4630720057947,120.395053707381,105.800512815896 -"Tfru08078_t",4.82644893480488,6.90073570191763,7.01376779576559,9.67276179046974,20.3650982291881,15.4490276044755 -"Tfru08079_t",0,0,0,0.252612918102572,0.211377454413718,0.357354998990568 -"Tfru08080_t",0.825654808564594,0.828421437555093,0.711014407542348,1.28106403676587,1.42926475318563,0.453059409039639 -"Tfru08081_t",6.18629169085252,6.81428788345046,6.43431774144535,14.7924713432483,11.7056077082407,12.8925755070948 -"Tfru08082_t",0,0,0,0,0,0 -"Tfru08083_t",1.0785925691056,1.53913848826213,1.44485024756644,0.991712911010381,1.03728736545391,0.964501652054429 -"Tfru08084_t",2.96289352316641,4.16195034638259,4.25250351020919,3.44786007837867,3.47274054422538,2.03227604128361 -"Tfru08085_t",11.5786322389663,12.9975460447245,10.7206605008736,6.39359369091939,5.95273958668104,5.0318546386361 -"Tfru08086_t",42.550710312811,12.8627221420385,26.8360326275303,0.0705347758338349,0.118041955062206,0 -"Tfru08087_t",0,0,0,0,0,0 -"Tfru08088_t",0,0,0,0,0,0 -"Tfru08089_t",18.7852711338122,26.464887050928,13.7812658941243,5.55582772010508,5.91246996424365,9.24998769190405 -"Tfru08090_t",135.209240508737,163.201658878188,136.675066259924,68.9279913188445,67.6880931476618,73.7041254966877 -"Tfru08091_t",0.0822019342186374,0,0,0.0850282229229791,0.0711485756539325,0.481135497662448 -"Tfru08092_t",0,0,0,0,0,0 -"Tfru08093_t",0,0,0,0,0,0 -"Tfru08094_t",58.6514266161539,57.7676569116832,48.6778088887118,49.823957675003,47.3314399778603,46.228358655252 -"Tfru08095_t",0.763730680820012,1.22606370012627,1.97306493674713,0.7899894716487,0,1.11754651727253 -"Tfru08096_t",94.2396195389553,92.5900457487094,88.0893432764092,84.4224519047454,98.5216077162717,67.9937319841018 -"Tfru08097_t",9.99006076531977,7.69592275932067,6.98629818999162,6.03367870149542,5.68711631539926,8.04490806985311 -"Tfru08098_t",19.4002060144125,20.3441307429061,19.2423285890825,20.2546177341791,20.2042443122815,19.8143942861349 -"Tfru08099_t",8.09480270878546,5.49232167559151,6.21976743611423,3.9320743813251,4.39485043481045,7.7874283942922 -"Tfru08100_t",7.11617309122849,6.50534989575616,5.61743206335369,6.33850390269606,8.89675271659433,10.2682805827596 -"Tfru08101_t",4.85933213805925,6.22578522403751,3.29941529996083,6.37967040333792,9.38243152494439,7.38401163653926 -"Tfru08102_t",26.7428530558627,20.1650031079729,26.0537626635132,7.5442726152305,15.8988469892145,13.6369425338266 -"Tfru08103_t",27.7354832403343,22.908032804813,30.8075058425915,55.715048195484,67.4951473576742,58.230056677621 -"Tfru08104_t",141.543549489334,122.243202222733,147.605832815072,183.270073474605,174.375380213599,118.414913836126 -"Tfru08105_t",0.295984885865346,0.0791937815818962,0,0,0.0426975010677152,0.0360922253824884 -"Tfru08106_t",38.6857539864616,42.7627104985756,34.8671060369876,21.8730748365263,22.559026822659,14.8715461823821 -"Tfru08107_t",2.4262924699335,2.96999552782387,2.19387730731568,2.4961725185525,1.11072480364553,1.64202686900792 -"Tfru08108_t",4.63974834893856,4.07183167260142,3.40951827828849,2.62360279596367,2.83787463098005,4.2093155845752 -"Tfru08109_t",4.17270083301891,3.57263602738991,1.91644280708434,1.72646709590632,1.44464591360899,1.4246868171677 -"Tfru08110_t",5.899033720029,3.10226778528501,5.25513675308237,1.8936794054372,2.81700123267096,2.97651621435243 -"Tfru08111_t",9.28564661502591,8.15905717994908,7.61782882325497,6.08121405462358,6.32501065685836,7.11531431606858 -"Tfru08112_t",0,0,0,0,0.0866672757071741,0.146519808882903 -"Tfru08113_t",1.85317007584075,2.97500757427873,2.34059669306404,4.21714977397117,4.91887770388629,3.61559175449281 -"Tfru08114_t",6.00460516524833,5.62307720521539,5.40380106389075,5.09194770655692,4.3075812474471,4.92749513740117 -"Tfru08115_t",12.6181593569763,15.5923321877217,16.5851838976726,9.10205281194879,7.18516248204734,10.568103171729 -"Tfru08116_t",0,1.26043928087466,0.676128151616823,0,0.679568603316185,1.1488795634598 -"Tfru08117_t",8.05013438350479,6.46168721292973,7.28789767730907,3.62968143750329,2.14389712977845,3.92651487834354 -"Tfru08118_t",8.35627193463776,6.70741790577467,6.68201994725855,3.85874084490607,2.71223930849858,3.05687686525502 -"Tfru08119_t",0,0,0,0,0,0.0568068944790922 -"Tfru08120_t",0,0,0,0,0,0 -"Tfru08121_t",0,0,0,0,0,0 -"Tfru08122_t",0,0,0,0,0,0 -"Tfru08123_t",0,0,0.163801621058341,0,0.0548783730704295,0 -"Tfru08124_t",17.9911928196206,17.2882098838138,20.0812557189017,28.0344615656038,29.7404969868125,26.6084955682205 -"Tfru08125_t",8.80753950023239,7.13761897861228,10.7205849266258,13.7531436299231,10.4086349729852,7.43528949512634 -"Tfru08126_t",0,0,0,0,0,0 -"Tfru08127_t",0.150018529949013,0,0.129188778513275,0,0.259692301136854,0.109759035404246 -"Tfru08128_t",0,0,0,0,0,0 -"Tfru08129_t",0,0,0,0,0,0 -"Tfru08130_t",16.6401276400313,14.0391682734156,13.0047961714953,11.5167142421703,11.4590010082363,10.0417615812733 -"Tfru08131_t",0,0,0,8.1980041346495,7.54577629718406,12.7568992092482 -"Tfru08132_t",0.077215419826698,0,0.0664942242347738,4.39286434788663,5.9480993973625,8.02209420528091 -"Tfru08133_t",0,0,0,0,0,0.429825593191227 -"Tfru08134_t",0.787289747174829,1.2112226594226,0.847470315901217,2.5448704752231,1.9591000616806,1.15201986398521 -"Tfru08135_t",2.66136357248513,1.92260257176197,2.82660136303596,1.10114691227816,1.15175043798816,2.14186586512193 -"Tfru08136_t",0,0,0,0,0,0 -"Tfru08137_t",24.901279342435,25.0351934793595,27.0754925027822,23.4158561211246,32.438211986316,27.9721230347587 -"Tfru08138_t",0.4922483013952,0.921942451404086,1.27170203849005,1.01834582610099,0.426057681552651,0.60024472486697 -"Tfru08139_t",7.55338052890137,6.80398002668875,7.37189113754072,8.07351895698049,10.1697684361285,10.3772178927651 -"Tfru08140_t",0,0,0,0,0,0 -"Tfru08141_t",41.8351268942835,34.5357829337998,39.9805272451608,48.2695824213476,35.620952074966,25.1819143300767 -"Tfru08142_t",20.2268485797192,22.7853293285844,21.1791836074293,33.9987268599226,33.1240905034203,34.474246961443 -"Tfru08143_t",0,0,0,0,0,0 -"Tfru08144_t",4.10577029334142,5.57720718185587,4.35162201307873,11.1073710155176,4.64712538876475,4.85250472313508 -"Tfru08145_t",4.70174231139041,5.55418520731235,4.96565104317128,7.98331511401665,13.4370884431952,15.3824912131484 -"Tfru08146_t",17.5374549126463,16.1784784034791,15.9976205106723,13.8990359742082,13.8129644683516,12.0141374958525 -"Tfru08147_t",0,0,0,0,0,0 -"Tfru08148_t",0,0,0,0,0,0 -"Tfru08149_t",0,0,0,0,0,0 -"Tfru08150_t",0,0,0.234888688205954,0,0,0 -"Tfru08151_t",0,0,0,0,0,0 -"Tfru08152_t",0,0,0,0,0,0 -"Tfru08153_t",0,0,0,0,0,0 -"Tfru08154_t",1.44845476623392,0,0,0,0,2.11948481327674 -"Tfru08155_t",0,0,0,0,0,0 -"Tfru08156_t",0.386699087555569,1.55197940200195,0.999020243508869,2.89996141656071,3.17966177686551,0.919500319612094 -"Tfru08157_t",0,0,0,0,0,0 -"Tfru08158_t",11.6264360710485,11.74065489135,11.6269900661947,8.14676660880794,8.76461516336882,9.05512042085029 -"Tfru08159_t",0,0,0,0,0,0 -"Tfru08160_t",0,0,0,0.0828396985960769,0,0 -"Tfru08161_t",0.20194802108521,0,0.347815942151125,0,0,0 -"Tfru08162_t",0,0,0,0,0,0 -"Tfru08163_t",0,0,0,0,0,0 -"Tfru08164_t",0,0,0,0,0,0 -"Tfru08165_t",0,0,0,0,0,0 -"Tfru08166_t",1.60325146510396,1.18394703464935,1.15974048497413,1.99004985864011,2.94185782356558,2.72135379383962 -"Tfru08167_t",3.67985806920599,4.90196960980876,4.98935972189199,2.8345382422693,3.25280943828454,2.97873542495027 -"Tfru08168_t",0,0,0,0,0,0 -"Tfru08169_t",0,0,0,0,0,0 -"Tfru08170_t",16.4133383923651,9.53430019520348,14.878296342917,7.1484910089283,5.79467653950615,7.58437756212373 -"Tfru08171_t",11.5139221735868,13.0953458403519,9.94753594552216,14.1210621219338,11.0693843359584,12.485090277233 -"Tfru08172_t",0.742451576808203,1.01612229223469,0.522753696359899,0.526279956269511,0.457731170059714,0.733346057141739 -"Tfru08173_t",0,0,0,0,0,0 -"Tfru08174_t",0,0,0,0,0,0 -"Tfru08175_t",4.96124272272328,4.77875232403828,5.69651306830188,3.76333575629973,5.72549955262355,6.53368746185905 -"Tfru08176_t",76.2374540608182,73.2315260090992,75.5911312631693,93.6395952643544,80.8686679801866,58.8800806748011 -"Tfru08177_t",79.9616839149922,77.7922663298346,82.3695199870181,120.40201253178,99.8720271360045,61.6501955487463 -"Tfru08178_t",0.934833569415216,1.05052196243077,1.20755089708254,3.73897102520958,4.61204279615451,6.08722958963013 -"Tfru08179_t",2.21745037732998,2.70997128202088,0.6134357953981,17.9748805009305,18.1618472138143,19.8139200579726 -"Tfru08180_t",0,0,0,0,0,0 -"Tfru08181_t",0,0.461873322034061,0,0,0,0 -"Tfru08182_t",34.02951970489,30.7291921596385,20.6047925223704,9.34987560166985,9.66449829547277,13.2266584436509 -"Tfru08183_t",0,0,0,0,0,0 -"Tfru08184_t",0,0,0,0,0,0 -"Tfru08185_t",0,0,0,0.15601228694306,0.522182005876618,0.110350197174825 -"Tfru08186_t",0,0.192255181801809,0,0.185813636123916,0.829238424157594,0.963814195424312 -"Tfru08187_t",61.6422888384924,41.3369473478729,66.2982412580819,79.3658171177987,60.3322299607106,37.4879776650044 -"Tfru08188_t",2.96673415728766,3.02392399179303,2.2303892254534,30.1028506083307,57.0624338820889,69.2170993224175 -"Tfru08189_t",0.203908681484096,0.163673555866467,0.0877981989896042,0.105459761926316,0.176489913393978,0.149187038413538 -"Tfru08190_t",4.28989157981859,4.4477418202692,6.46493632049409,14.2366190951083,26.7648831214238,20.401168793436 -"Tfru08191_t",0,0,0,0,0,0 -"Tfru08192_t",43.5251129654703,45.1722093053156,35.5949081851049,35.3434912276855,47.7526303735201,81.7127134627925 -"Tfru08193_t",0,0,0,0,0,0 -"Tfru08194_t",26.7667131038366,23.825086946064,28.2992705992486,24.6715960392922,22.9381212360628,15.8994791979905 -"Tfru08195_t",6.74612812217395,8.12247990166941,6.44485048141506,5.34258889276907,6.75134815502586,7.09508846176506 -"Tfru08196_t",4.87299169207932,11.8908268707444,5.37137566347537,104.843152645448,83.1738404847594,56.3310873118775 -"Tfru08197_t",0,0,0,0,0,0 -"Tfru08198_t",1.18324474325982,3.08674494796056,3.56633811107069,0.30598184446227,2.30431196783405,4.11209907289147 -"Tfru08199_t",10.3252977037533,11.3017047514499,11.7208143187463,12.6221784330134,11.3742326307985,9.95802645231818 -"Tfru08200_t",12.6015565157171,18.5442138796708,18.9085394005793,16.589779276118,23.1362231921924,20.5349177147216 -"Tfru08201_t",10.9010004461221,12.3666981519037,11.0145726732425,16.3874982304049,18.7445723242726,19.9920955836661 -"Tfru08202_t",1.88082933070405,1.76132289223467,1.07978680548409,0.972748251797963,1.08528125848237,2.29347238158126 -"Tfru08203_t",1.77750240385022,1.87732474991605,1.49041842471885,2.08054024753521,1.82189476298684,3.49077733980541 -"Tfru08204_t",2.19157504621167,2.34551321798207,3.14546591162756,2.41805478475922,4.29960122925713,3.95514298013213 -"Tfru08205_t",27.1302998482403,25.9821745388382,27.7137263839613,31.5467963114641,37.5715186678174,37.6456379782937 -"Tfru08206_t",734.853747154309,593.506176210436,735.868614332409,321.898426005811,318.102551442217,371.842799852578 -"Tfru08207_t",26.9802556169841,28.853759358229,28.9382863869736,35.2608770145328,42.2299634310238,44.4439663359962 -"Tfru08208_t",18.355208341023,26.6334010987794,21.8860989133032,18.2560595985293,20.7753840578877,16.5284194228077 -"Tfru08209_t",0,0,0,0,0.358196277430143,0 -"Tfru08210_t",0.869072863152905,0.465058655289549,0.2494679860946,3.59581422733592,3.0088487304132,1.48363937511946 -"Tfru08211_t",0,0,0,0,0.127792345023408,0.108022952243195 -"Tfru08212_t",4.56263253155275,4.35992489333952,4.11622177056089,4.86933176618405,5.07743223257228,4.08000828157852 -"Tfru08213_t",1.95036988205424,1.10166517224652,1.82824059308501,8.443309847363,14.5885166374379,52.5488769593596 -"Tfru08214_t",116.18793617636,104.458316262159,118.210169863769,66.2398734079679,67.5003988766283,63.2046369912752 -"Tfru08215_t",0,0,0,0.0999986695365761,0.0836753099175133,0.14146158763263 -"Tfru08216_t",0,0.0821358160986414,0,0,0,0 -"Tfru08217_t",13.643509464551,18.0022705273374,13.5195553754493,55.5804618472621,112.750944360108,114.520550844475 -"Tfru08218_t",0,0,0,0.520352358247214,0,0 -"Tfru08219_t",12.6387292488018,10.4432419274091,10.6277777438885,4.15268811210033,6.88529322306207,5.49377968359659 -"Tfru08220_t",3.17269715580604,3.2894392691212,5.0089874155265,4.51244979748292,4.97726550408635,2.80485717539725 -"Tfru08221_t",3.65262507701945,5.86378304495518,4.79491754821274,5.52908868466286,5.62896143715513,6.81134544205352 -"Tfru08222_t",29.9630689162273,26.6385177832332,23.843057632608,22.9507104464838,17.3987979632998,13.8747313377828 -"Tfru08223_t",34.8793082131456,32.2115403429346,27.7755873803541,24.4402998264238,16.8799995738955,14.8174697795732 -"Tfru08224_t",0,0,0,0,0,0 -"Tfru08225_t",0,0,0,0,0,0 -"Tfru08226_t",0,0.503235112060747,0,0.648498834523854,7.05432818004709,1.83477790524203 -"Tfru08227_t",0,0,0.132744432967769,0,0.133419897831778,0 -"Tfru08228_t",0,0,0.172686036704668,0,0,0 -"Tfru08229_t",6.38241378298982,7.26756856190116,5.49622930494639,6.29479257406125,4.88184820511683,5.10398906685469 -"Tfru08230_t",10.7320610232497,10.7482644972867,10.7681288342972,7.86748981618252,8.90547521976483,10.5893510629681 -"Tfru08231_t",0,0,0,0,0,0 -"Tfru08232_t",0,0,0,0,0,0 -"Tfru08233_t",4.06829911726138,2.77571328157079,2.27722592633569,0.210408822826355,0.880312885209674,2.23238716076432 -"Tfru08234_t",0,0,0,0,0,0 -"Tfru08235_t",0,0,0,0,0,0 -"Tfru08236_t",15.4620325346222,9.92885963440264,14.4247593186601,2.66560870635842,4.23792344186522,3.20523318113013 -"Tfru08237_t",1.63574872395729,2.15464020024314,2.20323947779005,3.73105370401721,4.28369127786403,4.84846702574522 -"Tfru08238_t",35.3432636834804,33.5478873039422,39.9773488901847,12.1861483831251,7.7690918804214,11.6978577966729 -"Tfru08239_t",16.2781799089442,21.0260371990598,14.5013684567239,4.45138843658696,2.42919301731578,3.5592239543114 -"Tfru08240_t",12.5470043230084,13.5742769839385,9.63043621644412,1.12855641334136,2.12475519111971,1.99561882553174 -"Tfru08241_t",3198.0530473566,2036.10751547398,3237.93934987924,1125.40756552486,749.555405550755,844.109539221835 -"Tfru08242_t",0,0,0,0,0,0 -"Tfru08243_t",0,0,0,0,0,0 -"Tfru08244_t",0,0,0,0,0,0 -"Tfru08245_t",60.4681940907119,61.3845571090763,57.922202385294,40.6444907624269,41.5419577771137,37.0120758077415 -"Tfru08246_t",0.976864846179621,0.482529552894344,0.517679541806325,0.699543465514814,1.75605885205243,0.934620766590717 -"Tfru08247_t",63.2069148157739,87.6673174537597,63.1058002080684,81.3252983503534,108.685500710036,150.320294109686 -"Tfru08248_t",9.90320997703155,12.2362783938104,11.3070125617976,6.90586838362527,8.2826365713582,8.14106752667254 -"Tfru08249_t",0.0613214428988667,0.147664609526244,0.211228367788128,0.888017382176631,0.902288579132426,0.538380086070462 -"Tfru08250_t",9.25466424192504,5.96996825100065,7.53297947950645,3.71549382561328,11.1192196543104,12.3053791805324 -"Tfru08251_t",26.1233680420048,34.9081571907712,31.7950474326841,45.2150344649034,32.8240056949302,22.6421642646639 -"Tfru08252_t",338.328322499339,418.70603258397,393.237315731295,92.501204819015,187.930909957375,168.19235568536 -"Tfru08253_t",163.04292811888,211.152315162573,197.516334842721,170.708303051776,201.636749695831,161.590913891771 -"Tfru08254_t",81.5691934784896,87.9743722766673,93.6579809919084,55.2042755375736,50.0545200868589,53.5201773438098 -"Tfru08255_t",12.2735563041409,10.8708924964408,10.7516303326917,8.53666223995995,6.68527787813261,8.05083907045753 -"Tfru08256_t",32.7907370756936,33.5637264002843,31.5760046242128,17.682139931573,10.6705641435355,11.530510466673 -"Tfru08257_t",1.81753218976689,3.24199543350887,4.86942319011574,0.626674354523687,0.524378684987878,0.738762738297809 -"Tfru08258_t",1.1496156821356,2.48439229009943,1.90383463072194,9.60460905459462,11.4811333134188,11.8401115244496 -"Tfru08259_t",32.8065024145775,29.2246277485553,33.4585087628867,36.4629145615253,43.8732843207009,36.8037341379995 -"Tfru08260_t",671.82817986388,788.678819546472,653.379105178078,231.349500300546,372.980113475058,535.348862835609 -"Tfru08261_t",0.123605262537686,0.0661437028121477,0.0354809788952594,3.32423237789515,4.20805965157511,6.75241461555106 -"Tfru08262_t",0,0,0,0,0,0.0569648376518792 -"Tfru08263_t",3.26679932889552,2.95486339453415,3.3800523130461,9.98605402077908,10.0018462585268,10.0777013354334 -"Tfru08264_t",27.1729578250558,7.93702978420486,21.5897317344891,0.16107292646392,0.336950159028355,0.113929675303758 -"Tfru08265_t",7.64719132820337,7.01098995215413,5.71150389216583,5.06097666811192,4.23484425494956,7.10640035956394 -"Tfru08266_t",0.291029018838732,0.0778677887032155,0.16708017544442,0.903105767258154,1.09154731655675,0.354879098304721 -"Tfru08267_t",0,0,0,0,0,0 -"Tfru08268_t",4.67373445181905,1.96954604361151,5.43347519087821,0.120860700733358,0.404527645720829,0.0854868704122082 -"Tfru08269_t",0,0,0,0,0.799053234267243,0 -"Tfru08270_t",17.6150790004648,15.1181567699369,18.2031156305156,12.1938700209254,15.2464512280346,17.2498716286931 -"Tfru08271_t",8.55772848030526,8.61059102799373,9.08213794426179,8.66494927689567,7.09403359203113,7.71620191507611 -"Tfru08272_t",0.365262507701946,0.586378304495518,0,0,0.632294298420166,0 -"Tfru08273_t",6.46822490859891,7.28097525695915,7.84431908895183,15.0835806369911,16.8947884293133,16.5773646547679 -"Tfru08274_t",0.413104221942745,0.331590771205557,0.517448124934708,0.310769222448939,0.162525356098165,0.274765578124174 -"Tfru08275_t",0,0.0219796300576873,0.0235807418407542,0,0,0.0200342437504491 -"Tfru08276_t",19.5530448707349,22.8288742425258,20.7378903705138,20.619322641134,18.7187780587713,17.7118459550066 -"Tfru08277_t",0,0,0,0,0,0 -"Tfru08278_t",13.1098995598756,10.5230628848161,12.441619943444,9.96292477000716,12.2733558881239,15.464139255681 -"Tfru08279_t",18.5650912102245,19.6189688682165,22.8883902663265,17.8218614526546,25.085698278339,21.0095196544852 -"Tfru08280_t",0.0648728778157895,0,0,0.268413417227134,0.224598746929171,0.0474633666612955 -"Tfru08281_t",0,0.123731201866027,0,1.11613193906604,0.533679591327112,1.46613904173011 -"Tfru08282_t",22.2142823193731,50.413028991063,20.1733246447652,104.027942850932,95.7865064577857,76.2403145923339 -"Tfru08283_t",0,0,0,0,0,0 -"Tfru08284_t",3.48430134075128,9.01185090088734,5.66763673477593,33.4380343759367,54.4516115286951,50.843217690483 -"Tfru08285_t",0,0,0,0,0,0 -"Tfru08286_t",0,0,0,0,0,0 -"Tfru08287_t",0,0,0,0,0,0 -"Tfru08288_t",0,0,0,0,0,0 -"Tfru08289_t",0,0,0,0,0,0 -"Tfru08290_t",0,0,0,0,0,0 -"Tfru08291_t",0,0,0,0,0,0 -"Tfru08292_t",0,0,0,0,0,0 -"Tfru08293_t",0,0,0,0,0,0 -"Tfru08294_t",0,0,0,0,0,0 -"Tfru08295_t",0,0,0,0,0,0 -"Tfru08296_t",0,0,0,0,0,0 -"Tfru08297_t",0,0,0,0,0,0 -"Tfru08298_t",1.22336108309033,1.08588893661497,1.38411513179316,0.874944000673048,1.08102391065781,1.47169178370991 -"Tfru08299_t",4.18391599731319,6.07701151931719,4.40365227627859,7.48772646416919,13.5655867661054,16.6174311941669 -"Tfru08300_t",0.0702427899426818,0.0563825292784152,0.0604897290697608,0.0726578961766594,0.18239258608274,0.0513921904902824 -"Tfru08301_t",0,0,0,0,0,0 -"Tfru08302_t",47.8465591055385,62.0855877987434,39.9489254161743,39.5548407535482,37.6846002461225,43.2817407630229 -"Tfru08303_t",0,0,0,0,0,0.231071653482623 -"Tfru08304_t",4.49316582310345,2.89475285435331,3.41109287108942,2.14036561150947,3.12142470331982,1.60042731426881 -"Tfru08305_t",0,0,0,0,0,0 -"Tfru08306_t",7.87326908980609,10.0004374072562,7.00360175173922,2.68482524698099,1.87213811324199,2.15222660566101 -"Tfru08307_t",13.4134214799783,11.3333621696933,8.5112606885068,2.19072715182352,2.44416283033973,2.06605242785097 -"Tfru08308_t",3.15591197488533,6.89027549384666,2.55465713784327,0.71817226303541,0.600940862134868,1.61628632150505 -"Tfru08309_t",66.5788288534526,65.7330924264987,58.6896802444745,74.3147893537369,48.4060462176706,50.2171310108878 -"Tfru08310_t",57.3788452300664,51.3038770158038,52.6434964892711,36.3121969883466,32.5850224538865,30.9096626504407 -"Tfru08311_t",25.63166724708,23.7246767469806,24.5856295479951,30.077197316412,31.1475724958593,24.0604317554672 -"Tfru08312_t",1.40603141040079,0.846445669669263,0,0.363593488817091,0.608484052872963,0.771527947611436 -"Tfru08313_t",3.32714277254737,2.49281941975408,2.78576354820664,4.1624134458544,1.0279549476939,2.30237258452209 -"Tfru08314_t",13.7012631644421,18.8119220004464,10.8673822268678,11.9346051608288,6.8656848712576,8.96915036093066 -"Tfru08315_t",12.1697274762377,11.9111518207571,10.8180509857845,8.04017340084222,8.97030602805431,9.88036475713735 -"Tfru08316_t",0,0,0,0,0,0 -"Tfru08317_t",0,0,0,0,0,0 -"Tfru08318_t",0,0,0,0,0,0 -"Tfru08319_t",21.5543976731154,21.8508178760842,21.3306051944202,18.2648234836459,14.4814467763373,13.1981412925923 -"Tfru08320_t",0,0,0,0,0,0 -"Tfru08321_t",0,0,0,0,0,0 -"Tfru08322_t",11.747632004468,11.1728839099822,10.4565488413565,10.4156076032703,7.60462061613442,11.4118442450854 -"Tfru08323_t",0,0,0,0,0,0 -"Tfru08324_t",0.791555057519919,0.46593502210228,0.817979200636815,1.25544812062032,1.50725933574405,1.77600047237021 -"Tfru08325_t",0.0287608273781059,0,0,0,0.0746804289472636,0.126254830180851 -"Tfru08326_t",18.7595958278995,20.295517823938,22.4763355043534,9.28045763038786,8.47151454748311,16.7089457472556 -"Tfru08327_t",0,0,0,0,0,0 -"Tfru08328_t",0,0,0,0,0,0 -"Tfru08329_t",0.255253708382674,0.102443608077455,0.0824296042165977,0.363041124990555,0.248547132117308,0.396849987485158 -"Tfru08330_t",0,0.189129502139659,0.383796901683999,0.230500912008713,0.192874918616231,0.163037293969172 -"Tfru08331_t",37.7630802517199,47.8043461308524,41.6883234584619,61.4314598937438,57.6671181177956,56.535683741292 -"Tfru08332_t",0,0,0,0,0.960975916101133,0.812313565987371 -"Tfru08333_t",0,0,0,0.421429892469858,0.634747428578925,0.298084674230736 -"Tfru08334_t",32.3116833736336,29.9442487313183,33.8962445441823,25.826579459158,24.9159326685149,27.9386635574444 -"Tfru08335_t",0,0,0,0,0.476812093890617,0 -"Tfru08336_t",0,0,0,0,0,0 -"Tfru08337_t",0,0,0,0,0,0 -"Tfru08338_t",0,0,0,0,0,0 -"Tfru08339_t",0,0,0,0,0,0 -"Tfru08340_t",1.10539969436113,3.10549036262423,0.964130188767294,2.28681167966534,0.478380554725775,1.61750157437833 -"Tfru08341_t",0.392571854072184,1.10288442784788,0.676128186611532,3.45158959127065,2.54838239433361,2.01053934011516 -"Tfru08342_t",24.4456424211999,24.1820970860088,17.6416807379603,16.3825689182586,16.0924081688083,14.484594016462 -"Tfru08343_t",9.03909117161143,10.6698583887634,9.15768556549796,8.38738840738032,9.31933764206304,9.33646478375358 -"Tfru08344_t",16.3005208661017,18.2079613275169,16.1968020822613,17.8042407298779,18.0551336638431,15.5122131990587 -"Tfru08345_t",7.64138807583469,8.2783439693442,7.85551815990908,11.1920552115697,8.39461952798423,10.0114025219711 -"Tfru08346_t",0,0,0,0,0,0 -"Tfru08347_t",4.05464496291334,4.04405702210434,4.22738291819219,5.14379566633791,4.94178146226424,5.48861175346601 -"Tfru08348_t",0,0,1.00947510652233,1.21254200689234,1.69101963530975,1.71530399515473 -"Tfru08349_t",0.500487350978836,0.229560868142926,1.04670397569904,7.2477333575097,5.81710754546552,3.97561238025932 -"Tfru08350_t",1909.9017438465,3450.24779002934,2078.47324021546,4162.10766688742,5098.81166475756,6134.25809450588 -"Tfru08351_t",683.210165473662,1687.2737366624,850.57374912498,2780.64667621931,3265.75282654568,3387.72242172625 -"Tfru08352_t",0,0,0,0,0,0 -"Tfru08353_t",25.9360894730643,26.7923724631241,18.9361269981874,13.9971292070794,9.66264508391085,14.1080875574639 -"Tfru08354_t",0,0,0,0,0,0 -"Tfru08355_t",0.411239606573519,0.141468891644024,0.40473127813949,0.789989489338951,0.355941895264499,0.343860474553162 -"Tfru08356_t",0,0.383144914869231,0,1.97497372334738,0.413146842717722,0 -"Tfru08357_t",0.206160433794963,0.744664472580198,0.355070998613172,0.426497393017348,0.356877763525492,0.226251753962127 -"Tfru08358_t",0.174054648007142,0,0.1498875330817,1.62035136970766,1.40606881278518,0.169792982945795 -"Tfru08359_t",0,0,0,0,0,0 -"Tfru08360_t",0.128652950645402,0.413068943442478,0.443159056462076,8.25073249202396,10.5785837829101,8.37732055826588 -"Tfru08361_t",2.44854364459495,1.55876443757854,2.69024270431664,12.4889795651273,6.86944860896682,5.00368828737346 -"Tfru08362_t",5.91622371629912,7.59814141036446,5.54056099398481,6.19613235036096,9.28125653710939,7.68313247829721 -"Tfru08363_t",22.6828017282908,22.5902241806898,21.975011225108,28.8938655725721,25.5407378168096,24.893349229683 -"Tfru08364_t",74.3039985787304,68.843966775308,74.6515555201808,23.3692109894092,22.6687582386791,20.9985214347087 -"Tfru08365_t",2.36583612111751,3.38843122945643,2.95614742219222,4.51048664813073,3.21209693289096,4.34430019755734 -"Tfru08366_t",0,0,0,0,0,0 -"Tfru08367_t",0,0.144567068463639,0.158136595893025,0,0.157310590799623,0.265371085954924 -"Tfru08368_t",1.76245545674273,0,0,0.607684222568105,0.50848842180616,1.28947677957368 -"Tfru08369_t",0,0,0,0,0,0 -"Tfru08370_t",96.0596738382686,96.7173777136034,99.43933071221,103.516949419753,81.9841352274275,65.3831512894138 -"Tfru08371_t",88.6929223619872,84.6787948246069,75.6665029298735,78.6363308076412,63.8928205813427,58.0391384590058 -"Tfru08372_t",27.3033724507204,21.0729703178077,23.7384380518143,28.5136831308278,25.4498455114117,24.5860239305511 -"Tfru08373_t",15.8510144851788,19.08495425009,16.721415483039,25.8237130241459,18.8644407429601,23.484291726116 -"Tfru08374_t",3.26465194707697,0.873490997629334,3.18621028872118,1.57588576888858,2.26053402025862,1.59235906285953 -"Tfru08375_t",3.23116833736336,2.10729703178077,3.82597536366237,6.26674354523687,3.67065079491515,3.54606114382948 -"Tfru08376_t",60.4179890089394,49.4089854428958,58.9916759147985,24.762903616948,21.6228010736054,19.1327329083612 -"Tfru08377_t",0,0,0,0,0,0 -"Tfru08378_t",0,0,0,0,0,0 -"Tfru08379_t",0,0,0,0,0,0 -"Tfru08380_t",0,0,0,0,0,0 -"Tfru08381_t",6.72363165490534,8.51702877038196,6.24241901011205,9.30929673347734,10.1235614849181,15.6801236405766 -"Tfru08382_t",2.03485341660945,2.2166723102469,3.00397436542978,9.62201730959553,11.6996323903178,15.3130944896166 -"Tfru08383_t",0,0,0,0,0,0 -"Tfru08384_t",3.9327566815319,3.82839620116347,3.96316173128373,5.36626326423471,4.92484204546384,5.81591701544411 -"Tfru08385_t",0.381865348961125,0.429122304653538,0.197306498093002,0.315995795735581,0.528827958678684,0.670527925378666 -"Tfru08386_t",9.83812505416705,9.38528855846444,11.3109488483726,9.11079233259698,6.91026724055147,7.68784316651199 -"Tfru08387_t",10.2889113124582,13.4867010033969,11.8679489115116,8.00641033015431,8.00669296988232,7.80399074200076 -"Tfru08388_t",28.0299272214754,28.3628636413593,27.6253962673377,34.9895155675078,26.1852312715308,17.5448469447694 -"Tfru08389_t",0.0527703371679946,0,0,0,0.0456745253255773,0.115826117763275 -"Tfru08390_t",16.9985024942227,14.9178437357718,19.4526700308118,14.3007989392024,15.6936354643854,13.2105659159211 -"Tfru08391_t",22.1299010653111,19.7121889149567,17.9221426839225,14.9256478250002,13.9303153442197,17.3584231714461 -"Tfru08392_t",15.554311874266,13.6513402831942,15.6025348780224,9.28217558684119,11.3915890386787,11.1299904873807 -"Tfru08393_t",0,0,0,0,0.0711485756539325,0.180425811623418 -"Tfru08394_t",0,0,0,0,0,0 -"Tfru08395_t",18.42808264664,16.5320851009381,17.7363690758869,17.3797687654568,4.69121576247217,6.74132914224784 -"Tfru08396_t",0.845484121213103,0.616957959899219,0.628805399533963,1.11306844792496,0.598741627506744,0.393646311788329 -"Tfru08397_t",9.69042477535285,6.81406247073438,7.10353550490533,5.21890101155284,4.64425888401085,4.80470439062247 -"Tfru08398_t",28.1401271096754,25.045680727378,23.4706513256003,19.309206406794,23.8611412738661,23.5938881692574 -"Tfru08399_t",0,0,0.180413256776643,0.866821384810819,0.725325130357297,0.766397254692989 -"Tfru08400_t",7.62071315634531,7.9118072154637,8.33095697180662,7.22190282757987,6.71447774802512,6.54380865071702 -"Tfru08401_t",16.6858554654752,17.2248626945558,17.1570867906958,15.3275134616307,14.4062507765049,14.850007043033 -"Tfru08402_t",4.0575813149766,5.69964861285161,4.68539763126081,10.3019485547165,16.1231575766196,14.9783131519823 -"Tfru08403_t",0,0,0,0,0,0 -"Tfru08404_t",0,0,0,0,0,0 -"Tfru08405_t",0,0,0,0,0,0 -"Tfru08406_t",0.361594161139659,0.628863389684935,0.259489655550337,0.810390939565782,0.260810058530556,0.485018406090498 -"Tfru08407_t",1.16357862564332,1.30757488952602,1.10222004936534,1.3239436040168,0.503558478658719,0.510789970856324 -"Tfru08408_t",0.685798994052632,3.02762675586462,2.0670204562124,3.54689158478713,1.48395600649631,1.00351118083882 -"Tfru08409_t",0.0680245965760708,0,0,0,0,0 -"Tfru08410_t",10.4662538358199,8.25104065836296,11.7491374096166,25.8086666316852,34.375287914667,23.3827035157076 -"Tfru08411_t",0,0,0,0,0,0 -"Tfru08412_t",12.6849688418484,12.2284812394981,11.1947473565194,11.8187636977536,12.5321724939778,13.0345537136492 -"Tfru08413_t",0,0,0,0,0,0 -"Tfru08414_t",14.6092222727115,13.9208425332473,15.5930584450452,11.3716471628427,10.6857293959741,9.97893203619288 -"Tfru08415_t",0,0.0639180142341086,0.0685741383577573,0,0,0.058260720214576 -"Tfru08416_t",5.34429864122763,8.86016920853365,3.13985568705272,32.3933264445348,26.8894239988076,15.3114506939669 -"Tfru08417_t",16.0870934243197,14.3475542589329,12.6989820581134,16.1779762444413,20.1123399178329,14.058497726246 -"Tfru08418_t",438.304834799223,455.129199599314,452.009584721321,172.103281228968,224.825535357477,296.196527854132 -"Tfru08419_t",5.95570929051934,6.15870427426396,5.44065658959945,5.42510744634653,4.98071837977948,6.34965570935117 -"Tfru08420_t",44.1160018724435,47.4406567958686,48.3516594154206,57.2047665395693,66.1367126714359,60.3840160605871 -"Tfru08421_t",3.54161603271947,3.92989552159337,3.04722049495703,7.00694007900793,6.36244076296404,5.84092405150645 -"Tfru08422_t",20.732275409182,25.2828474322214,20.0802882595675,24.6545684501585,17.2527532126286,14.171015472002 -"Tfru08423_t",16.5040341063198,19.0189397741917,13.5066724710819,9.74962638062218,10.3508399229181,13.710388067702 -"Tfru08424_t",115.396275958533,103.944201904692,126.198566336451,133.643587065838,117.700429180987,114.901677849591 -"Tfru08425_t",4965.56415177601,3457.34896405821,5611.45313438585,1346.21979286836,1692.35656595147,2728.01087273771 -"Tfru08426_t",1664.87717469683,1326.52040890485,1946.99748007841,594.337347925573,522.265859919034,501.142130115025 -"Tfru08427_t",0,0,0,0,0,0 -"Tfru08428_t",36.9452899759711,8.70317703374084,39.2852453819335,2.99078238793714,0.41709662132879,0.470096059857573 -"Tfru08429_t",1.92390175812475,2.95986758662337,4.00386596002974,0.497512464660026,0.555067513880298,0.117299732493087 -"Tfru08430_t",0.950036570921054,0.762575985652491,0.350625440876093,0.561543417300708,0.469879446321932,1.29086555370422 -"Tfru08431_t",22.0080375318818,20.086575962506,28.5727096307551,4.27560800745948,4.54461526989494,1.87991539362591 -"Tfru08432_t",0,0,0.0973697388525355,0,0,0 -"Tfru08433_t",14.0682459914182,14.4157136615882,12.8881916806592,8.77244860489215,9.24035788843247,9.41685595914813 -"Tfru08434_t",141.581826648106,128.463695679605,140.520534788454,40.1051722032015,44.8384032572101,62.7436791986946 -"Tfru08435_t",0,0.218939951353846,0,0,0,0 -"Tfru08436_t",12.0743658922526,11.8759411669588,11.4230077843317,10.026789672379,14.2778196333541,10.2027022383866 -"Tfru08437_t",0.152330692241972,0.550228055442304,0.196769853039258,0.945408999027575,1.18662665252017,0.501528140015775 -"Tfru08438_t",7.48607123823157,5.34126634035166,4.29776419157104,4.3019218472446,4.31963319684909,6.69421270226142 -"Tfru08439_t",7.40565406610864,7.03098156575195,6.78883969741797,9.47238582003577,10.4073843526694,9.61301883540504 -"Tfru08440_t",65.0974879304382,64.3837485086787,67.9104509684254,28.5587155090674,36.1742240578572,32.9255044095069 -"Tfru08441_t",98.0580135430665,108.777981863464,105.790784660575,44.4466217608407,68.6609415202488,75.3702700821812 -"Tfru08442_t",0.161248323937519,0.258861823481707,0.555437358675116,1.16754684604797,0.697829599983868,0.589875814072723 -"Tfru08443_t",12.616666295712,12.8560279348927,9.6938054668594,9.612012401759,12.5549083715083,11.6628845533864 -"Tfru08444_t",5.20418263185958,6.22331967919074,7.40834765279664,5.82255211484966,6.34292700121873,6.06102991966809 -"Tfru08445_t",29.4422869513432,29.3728764184411,26.0200466171216,19.4589435564165,22.3606223708941,22.0085108886444 -"Tfru08446_t",0,0.318082570834833,0,0,0,0 -"Tfru08447_t",0,0,0,0,0,0 -"Tfru08448_t",19.9199862447762,14.6859050874618,20.883299454517,29.8994733271714,35.888405121026,36.0394358518065 -"Tfru08449_t",0,0,0,0,0,0 -"Tfru08450_t",0,0,0,0,0,0 -"Tfru08451_t",0,0,0,0,0,0 -"Tfru08452_t",3.9768225690626,1.99507411292854,3.85273043613554,0,1.29077830150862,1.45479431541722 -"Tfru08453_t",0,0,0,0,0.0478380554725783,0.040437539359459 -"Tfru08454_t",0,0,0,0,0,0 -"Tfru08455_t",0,0,0,0,0,0 -"Tfru08456_t",0,0,0,0,0,0 -"Tfru08457_t",0.375046324872533,1.50521216555769,0.322971946283187,0.775882534172185,0.649230752842135,1.9207831195743 -"Tfru08458_t",0.588857781108276,0.157554918263983,1.52128841987595,0.4060693636789,1.35913727697793,1.14887962292295 -"Tfru08459_t",0.379564955292684,0.304669450377942,0.326863174551659,2.94461443691853,2.1354216328422,1.57365364013316 -"Tfru08460_t",0,0,0,0,0.0596015117363271,0 -"Tfru08461_t",0,0,0.0874797049182997,0,0.0879248419810388,0 -"Tfru08462_t",0.0581386690459844,0.0933335709577641,0.100132478847659,0.30068804092486,0.201283998112994,0.127609120746805 -"Tfru08463_t",17.9177061122202,19.4023968157521,16.0849127050331,14.0751648452644,16.2399129161638,19.9421346016165 -"Tfru08464_t",50.7536840465613,63.3496442995601,60.163424061544,130.284086388026,148.922985226684,143.5864324494 -"Tfru08465_t",36.5194361711702,33.8425612865091,38.4674049453706,110.731175996335,125.412002278302,134.338236816742 -"Tfru08466_t",21.6707764672693,24.5265456768568,21.585523164832,21.8928299582067,24.508879598264,32.8201222288741 -"Tfru08467_t",12.3696260276978,16.6308398876244,11.5398074549281,27.4024575013646,19.6282769939021,11.9913429599927 -"Tfru08468_t",34.0218446428075,49.1015417445245,34.2293283246079,54.2159586989795,34.2868808814528,16.413684781222 -"Tfru08469_t",10.6759029863953,11.6126582273905,13.6614831814988,4.26039693864489,6.47688637039659,9.41685595914813 -"Tfru08470_t",12.9377110159122,14.3301866747593,15.957898343859,10.9116894218439,12.762820018212,14.5498998378513 -"Tfru08471_t",0,0.161905174110407,0,0.3129610221871,0.261874589381701,0.221362760479151 -"Tfru08472_t",0.275443858267041,0.221093459072081,0.237199068745685,3.13405666262338,4.29130884501555,2.8213470084239 -"Tfru08473_t",41.5267693836084,40.7058743268814,31.6409509470326,15.2419384389543,11.5116450572282,11.760968167234 -"Tfru08474_t",46.0971451071958,46.1175461746376,43.4361952726939,24.7048402928463,17.0581185478363,16.7409805093713 -"Tfru08475_t",666.44092231046,959.85137992261,568.650521251623,693.870099496282,564.626601196232,237.266340363221 -"Tfru08476_t",315.670253399727,374.600552920002,306.490668447205,588.352192125213,547.466759727304,246.907239322593 -"Tfru08477_t",53.9384805407589,53.6402880816923,58.7808942235401,60.7304419929319,55.7748237668925,39.1141289804222 -"Tfru08478_t",1.87523162436267,1.67723641305,2.7683309681416,39.8471101478429,26.7112081169335,15.9542597891172 -"Tfru08479_t",0,0,0,0,0,0 -"Tfru08480_t",0,0,0,0.0884016722556304,0,0 -"Tfru08481_t",28.3132844268027,32.3680824081526,27.1527325460752,28.6211511158801,22.2164000938524,15.6932067641815 -"Tfru08482_t",12.5662580380821,13.8267018690288,13.7396065618824,14.8239204175956,20.4087596658139,24.0178595119879 -"Tfru08483_t",5.65406347538628,5.30150247900057,4.82592030277105,4.65806786447625,4.02762806527914,5.67426103221474 -"Tfru08484_t",3.38296819213882,4.59039200019742,4.36987546112017,6.66529962241876,8.85393885755179,9.72361924386608 -"Tfru08485_t",0,0,0.244686750735402,0.587816305483323,0.0819772765708219,0.277181780502267 -"Tfru08486_t",8.87738517430243,13.2086246940485,10.3484207118365,81.7476237035023,98.4822814156615,113.979666353296 -"Tfru08487_t",0.948674267180711,0.676873325139117,0.544635251950569,1.63548639574563,1.5509853869654,1.54241053516632 -"Tfru08488_t",1.18116522701508,0.592561555509531,0.635726853843883,0.610888181562634,0.766754070140447,1.08022952243195 -"Tfru08489_t",3.28165534263467,4.06407284700577,3.14897647626107,2.13367696897351,3.65192298473701,4.87055719606341 -"Tfru08490_t",16.2526886942037,13.6704435238792,16.4009906498379,10.0868957685077,10.3820311778744,12.3600038560945 -"Tfru08491_t",0,0,0,0,0,0 -"Tfru08492_t",35.3879326811234,43.9356997584976,35.2747305166555,30.6154745162052,23.7191564086298,15.4188891516513 -"Tfru08493_t",16.2471321571522,15.0269649062918,15.5746248859458,10.4776560603531,5.8159501424521,7.8757458273353 -"Tfru08494_t",2.62742958627622,3.46090162075943,2.78475891454437,10.1045167241029,18.1930388350566,11.3367792783215 -"Tfru08495_t",0.752331732281619,0.805176179307279,1.51170152767772,1.81579673668953,1.95350626526827,1.65130011473851 -"Tfru08496_t",2.24401674180828,4.05276490920108,2.53632727097848,6.38322058163693,5.58403478905288,5.33586495988588 -"Tfru08497_t",6.41869066932545,7.91326061406573,6.04662379128405,15.7731122185447,16.4519293181169,12.6095479424312 -"Tfru08498_t",0.0789571210257965,0.0633773543392712,0.0679940939543552,0,0.0683400792465405,0.577679133706557 -"Tfru08499_t",0,0,0,0,0,0 -"Tfru08500_t",0,0,0,0,0,0 -"Tfru08501_t",0,0,0,0,0,0.0561837841191752 -"Tfru08502_t",0,0,0,0,0,0 -"Tfru08503_t",0,0,0,0,0.0711485756539325,0 -"Tfru08504_t",0,0,0,0,0,0 -"Tfru08505_t",0,0,0,0.0941482598345446,0,0.0665926975367039 -"Tfru08506_t",2.24360056659652,4.10203813901538,2.4687707229243,3.48111095450547,5.17843401673489,3.28300022811513 -"Tfru08507_t",0,0.116131179707781,0.083060523498776,3.79122395572539,2.25404569069416,0.670399619231445 -"Tfru08508_t",4.39438893881417,5.1871926936142,4.56334516102275,7.62036015100804,27.1837910297716,17.1156551208836 -"Tfru08509_t",10.3376181425079,10.1786422667147,10.8904338638426,5.98810736791789,6.29311778144599,8.31971687559665 -"Tfru08510_t",5.08839117651536,3.5008741788793,6.34925319368085,2.25571782493569,2.51667199123972,3.64687623197297 -"Tfru08511_t",145.985244881532,128.07628236247,161.464794653313,73.0601520702463,64.5399227087656,49.6614651992981 -"Tfru08512_t",15.6217642756824,18.8089321844895,15.3211485261611,17.3259058457293,20.4319893125855,23.7478640238277 -"Tfru08513_t",50.6801729436449,66.2607484079935,30.9042025817408,157.929203129587,65.1263127372771,28.2605655506063 -"Tfru08514_t",0,0,0,0.511169669572263,0,0 -"Tfru08515_t",16.5178964899463,16.8227348668165,14.530323502973,13.2277309842801,17.2176544686083,19.8819326711116 -"Tfru08516_t",14.7801507338929,14.9957688848467,13.8480188199451,14.6156394614504,14.2255093036543,16.9991333650714 -"Tfru08517_t",18.4549422345561,18.4045586917658,16.213573918737,16.9684132917183,21.0827122579742,21.049055251193 -"Tfru08518_t",0,0.0792403114183133,0,0.714796600224433,0.769006579159661,1.01117607234934 -"Tfru08519_t",12.3390240883063,14.9618089256435,8.81713413353101,70.6053106096688,80.4396902771405,74.7184633514404 -"Tfru08520_t",0.827688441098005,0.664369507556499,1.069148511834,0.428073122301895,0,0 -"Tfru08521_t",9.69793491109936,8.89375264962149,10.1367317958209,7.10059102290398,6.42003231985158,7.39872806794072 -"Tfru08522_t",36.7123094202304,31.3846017987896,41.2739098066218,8.94615443154887,8.49952711066678,9.26095539475181 -"Tfru08523_t",0.941820367392909,1.81435439507582,1.29768100390016,1.94840457011849,2.11946182990616,1.92939649679213 -"Tfru08524_t",24.982033092562,28.3930547439935,23.6075494209521,15.5503194217246,11.0984288696382,8.08750787189181 -"Tfru08525_t",1.92243425106287,1.4659457612388,1.77967150263138,2.48566486920151,1.66393236426359,3.55147084809162 -"Tfru08526_t",0.44215987774446,0.56786109487987,0.304613540915511,0.457362335933077,0.535786221292877,0.258800251900538 -"Tfru08527_t",16.3078966673986,19.2667157191384,17.5696738778054,11.1727084920795,13.137375233982,13.1157689951023 -"Tfru08528_t",0.193572296708404,1.39839065703424,0.66678079232658,0,0.167543420088293,1.00141822698821 -"Tfru08529_t",6.44140037880428,17.1860768725792,6.48455121522356,0.469216219369787,2.27721542681561,24.6922270576809 -"Tfru08530_t",18.6000834180326,15.1787594318674,16.4179392324619,4.16857922418709,1.87821738091599,5.89701680991078 -"Tfru08531_t",11.0914681196915,10.8880146369975,9.93866214003998,5.73640895916063,6.16219019646772,7.01831191594679 -"Tfru08532_t",0,0,0,0,0,0 -"Tfru08533_t",0,0,0,0,0,0.957068405601037 -"Tfru08534_t",8.58958964496096,8.57633106201051,7.39694352784237,9.96844592532442,8.52257028169824,8.43036980162288 -"Tfru08535_t",11.3527536177632,10.9351629757272,12.0872449282199,13.2376617132473,8.21827233081739,8.60812877175314 -"Tfru08536_t",0.420051883857237,0.337167525084923,0,1.30348265740927,0.727138443183191,0.307325299131889 -"Tfru08537_t",0.392571854072184,0.126043934611186,0.540902549289225,6.00982658244772,2.58236082625806,4.76785043513023 -"Tfru08538_t",0,0,0.115568236369703,1.80460857788291,0.8130941057959,1.76736593749968 -"Tfru08539_t",33.3739852927668,37.2137933753222,41.411197496036,12.8392616613698,24.1905157223371,13.952929432211 -"Tfru08540_t",2.60209131592979,3.43135091900585,3.20113787466522,0.576762237791712,0.643485347949726,0.407953936900737 -"Tfru08541_t",13.2647963323338,16.5314825318646,16.0322916271322,17.0909083427624,17.661418189777,16.3452790674024 -"Tfru08542_t",11.8122343160905,10.5447925059411,10.4573308231508,8.67846534937402,7.93068210042113,9.5307188692675 -"Tfru08543_t",0.440229048584004,0.471151126756224,0.695024345538666,5.69206400615402,7.04911503871914,4.72395219626309 -"Tfru08544_t",0.734784636484963,2.94898709986813,1.05460227357775,3.54689158478713,9.53971718461912,7.16793700599157 -"Tfru08545_t",21.0893101061272,20.7145036055477,21.1481283670286,8.53919274603375,5.64417949291659,5.93840792707365 -"Tfru08546_t",1.18994867948226,2.62665918975507,1.74203565360677,1.47703417270172,1.95688816154116,32.430219242671 -"Tfru08547_t",4.8997546598171,5.69456694857889,6.06543669714816,18.9530285139703,11.1765507974087,8.43930955088783 -"Tfru08548_t",9.96522594995468,10.0609791702283,8.15338895120032,6.83618524806505,6.00718565885003,8.97344399931334 -"Tfru08549_t",34.548444595013,31.3936582394662,28.7740864371961,16.9289560657855,15.0889576969654,20.3610276539149 -"Tfru08550_t",40.1395474479998,41.6581141356607,44.4979706556087,57.5427068142988,64.3953022361426,60.1414515394032 -"Tfru08551_t",12.6086400213471,11.4853018662992,12.6879501865314,8.79246311911817,14.8370576096401,10.3651028375005 -"Tfru08552_t",0,0.0718907302952927,0.0771276289631491,3.14985148201245,2.63568305631434,2.16241681691947 -"Tfru08553_t",0,0,0,4.74338667179501,4.28662401003191,2.1472509983014 -"Tfru08554_t",3.83843925898747,3.46220068151263,3.9870225003249,17.1914811151482,11.8164278331701,12.1598328436546 -"Tfru08555_t",0.0959570265807509,0.154045699639028,0.0826335990490393,0.148884369778329,0,0 -"Tfru08556_t",10.5876091273605,12.1934557017013,14.2709357524801,16.6655316929039,13.1482567808467,10.1038454509114 -"Tfru08557_t",0,0,0.0724906973621582,0,0,0 -"Tfru08558_t",63.5797595824046,64.8882365524161,63.531498302983,30.8069479789036,36.235327101771,42.4646328279704 -"Tfru08559_t",9.16026701535429,9.83681286347958,10.5533780168604,6.53021763535096,8.35709212695808,10.898274360178 -"Tfru08560_t",6.46233667472673,4.82529552894344,4.33556616262797,3.73089848274567,3.38203927061949,6.15750152106825 -"Tfru08561_t",7.75480400967207,7.26206977105988,8.68148591609207,8.2888127958333,11.1867452797414,10.9691491382459 -"Tfru08562_t",3.2599014430311,3.62516417431647,4.06469463196173,7.16546650798952,8.11197293122718,10.8073165014043 -"Tfru08563_t",0,0,0.0443566621504806,0.106558974650257,0,0 -"Tfru08564_t",0.0553792859403081,0,0.0476899907497916,0.286416756187491,0.239663297028079,0.202587540627481 -"Tfru08565_t",0,0,0,0,0,0 -"Tfru08566_t",0.876412276304221,0.602982161105674,0.862542068166127,3.3671683152152,2.81752600935364,1.92364568756175 -"Tfru08567_t",0,0,0,0,0,0 -"Tfru08568_t",32.7358870380361,30.9855071935586,32.4343223820479,42.8425864120551,38.7942577229021,28.3288683557327 -"Tfru08569_t",31.7058157152262,32.6079189911606,28.0941512987241,36.0931860476298,23.3817964677664,27.539391548477 -"Tfru08570_t",5.4826915981366,5.40576915860719,4.98166800597952,8.03791977847443,10.5745210390978,13.5816935895901 -"Tfru08571_t",170.884743660103,201.534225221215,194.018056458118,521.886806394545,433.804184853608,343.645561756567 -"Tfru08572_t",0,0,0,0,0,0 -"Tfru08573_t",0.151734575746142,0.324785093399083,0.391999665085434,5.44098721134112,7.22322956804494,3.95951920615437 -"Tfru08574_t",2.62217262431889,3.15715089515294,2.60548797001563,6.98946282884522,6.02311555577913,4.79619314371495 -"Tfru08575_t",1.54755957210561,3.14985451066178,2.57017675147463,2.17247109568212,2.00919832984829,2.22406466477025 -"Tfru08576_t",3.07237949335579,4.93227922409944,3.22455191169134,17.9756465517012,21.1077902364035,19.5283275791234 -"Tfru08577_t",0,0,0,2.50428944747218,4.40054965615187,8.14810591358321 -"Tfru08578_t",6.63239816616679,5.32369776449869,8.09129718056812,8.00384087882871,3.34866388308042,8.89625865908083 -"Tfru08579_t",16.2213875509106,14.743163005216,20.2198394739935,13.9717149354162,16.0068793277742,13.2535478363414 -"Tfru08580_t",10.7927684670694,8.31555117378359,10.5277072799557,7.68375978330074,8.30356350661217,6.60469120259649 -"Tfru08581_t",1.73688482987759,1.2840983001058,2.12549981623582,2.0329979785491,3.00666603274877,3.74542257919168 -"Tfru08582_t",1.77107118766571,2.03969355230109,1.52516174816772,1.59301271910696,1.53292247417171,1.18310380967363 -"Tfru08583_t",1.33703517408139,1.60981842215613,0.959492254209999,2.07450820807841,1.35012443031362,0.97822376381503 -"Tfru08584_t",0.481434823905143,0.966096060415252,0.414588630185868,6.47383936822178,9.58405970957787,12.2401766702958 -"Tfru08585_t",0,0,0,0,0,0 -"Tfru08586_t",0,0,0,0,0,0 -"Tfru08587_t",0,0,0,0,0,0 -"Tfru08588_t",0,0,0,0.599302371222653,0.2507373942011,0.211948482159923 -"Tfru08589_t",0,0,0,0,0,0 -"Tfru08590_t",6.93969752520297,7.12363476350989,9.65375717436767,50.1790782068594,52.0374692063586,38.3729444190094 -"Tfru08591_t",0,0,0,0.216705346202705,0.362662565178649,0.153279450938598 -"Tfru08592_t",2.68068657285952,2.60845171719579,2.41825194698403,2.10518406237368,2.58472458628561,2.79878400343633 -"Tfru08593_t",0,0.123460900680173,0.0434769927688906,0.0522228628769739,0.0888362764531175,0.0369381369148904 -"Tfru08594_t",118.378258177949,132.889487892709,117.800465662515,109.069516592604,116.054280851159,119.775754412399 -"Tfru08595_t",2.1449457899093,1.43475542589329,2.46283288399775,0,0,0 -"Tfru08596_t",0,0,0,0,0,0.027293543439777 -"Tfru08597_t",12.1195297637498,7.9593645265949,9.01356461233603,5.12845635702008,5.96015117363271,9.67318974316764 -"Tfru08598_t",1.08400486156706,0,0,0,0,0 -"Tfru08599_t",0,0,0,0,0,0 -"Tfru08600_t",8.79838405376646,11.1629788710549,10.5096817114853,8.51373807767316,8.59792078088232,11.6285248320174 -"Tfru08601_t",6.72851987872004,7.71550400651998,7.4497876854337,7.95412758144482,8.02847365757184,8.86109558137711 -"Tfru08602_t",1.32299805939287,2.65486240224349,1.13930261366038,2.39485002673619,3.43529973157413,1.93590739610639 -"Tfru08603_t",0,0,0,0,0,0 -"Tfru08604_t",0,0,0,0,0,0 -"Tfru08605_t",15.1967815306313,19.3280746863969,17.0496273299048,16.3834762884562,11.4860085292631,10.2572265442745 -"Tfru08606_t",17.2394953864839,23.6481970120819,16.7292543814434,15.5699306704323,9.01963459384968,13.0836804224602 -"Tfru08607_t",2.08075236585628,2.29649707488183,1.79184435832654,1.88325667737149,2.02608234942685,0.570882908604127 -"Tfru08608_t",0,0.667658292543958,1.43258806385701,0,0.719938866141515,0.608564791114674 -"Tfru08609_t",1.43199505860422,2.68201440408462,2.87738643052294,2.46871715418422,2.06573421358861,1.39693317787222 -"Tfru08610_t",20.6859721698539,24.6141040518992,22.8087337844985,26.3553428321619,30.8759791200902,23.0107887289705 -"Tfru08611_t",0,0.22801692468585,0.247288711614251,0.295753841648221,0,0.424202081614762 -"Tfru08612_t",1.33774193236955,1.66261320878804,1.18903966485951,4.070277499761,6.36251323184292,6.21229957568474 -"Tfru08613_t",15.3754840506234,14.8824244161308,17.1933639072109,15.2517727836415,21.8465122935803,16.920539067944 -"Tfru08614_t",0,0,0,0,0,0 -"Tfru08615_t",0,0,0,0,0,0 -"Tfru08616_t",5.4165982494865,3.58054008939741,5.94497033866397,11.8648231774295,9.65228021924589,10.9564771624769 -"Tfru08617_t",0.372276411099472,0.298819076884718,0,0,0,0.181580678955326 -"Tfru08618_t",0,0,0,0,0,0 -"Tfru08619_t",12.7421596567572,18.1985818978891,10.594560915733,11.4531948977384,7.8342321807394,5.20781364637719 -"Tfru08620_t",10.5665225442348,10.1307323142752,9.71724290556371,5.16130555340627,5.58902995924968,5.75041902878766 -"Tfru08621_t",6.62617056225501,5.31869898725512,3.77012886027472,1.71349832898871,1.43379411331897,1.90455114954973 -"Tfru08622_t",7.95814936467583,8.83190057471215,7.68747723212436,4.79589994763432,4.37241403232067,3.59474402608964 -"Tfru08623_t",0,0,0,0,0,0 -"Tfru08624_t",0,0,0,0,0,0 -"Tfru08625_t",0.337617053334685,0.361331574103065,0.533022689646197,0.407429274474878,0.535734954790027,0.247012966482429 -"Tfru08626_t",6.91743080674973,6.79449183811437,7.36781939429988,2.82444779503634,1.96949740840517,2.39733711132134 -"Tfru08627_t",0.116036432004762,0.0931402002997024,0,0.180039041078628,0,0.0848964914728974 -"Tfru08628_t",0,0,0,0,0,0 -"Tfru08629_t",47.3297897303929,32.292100994049,59.3138338472809,124.196420236475,87.9681200352088,46.4291296983535 -"Tfru08630_t",2.04153776842033,2.18493718894855,1.92821087762693,5.5631608930454,4.61705361101425,3.46915414750394 -"Tfru08631_t",4.71864451029055,5.42141615224656,5.09925751312309,4.68947505235347,6.1662621283156,5.75388775907721 -"Tfru08632_t",0,0,0,0,0,0 -"Tfru08633_t",190.793498043583,268.735574093883,170.399704579332,658.174614409388,530.363848535894,270.082233268981 -"Tfru08634_t",41.5150798046961,41.3764951854387,44.3905765785078,29.880796676369,26.6001915042306,24.0038565828476 -"Tfru08635_t",39.5503397138308,32.8409927030769,35.2333032308931,19.1854590268031,16.0537058884601,25.5439209668063 -"Tfru08636_t",0,0,0,0,0,0 -"Tfru08637_t",0,0,0,0,0,0 -"Tfru08638_t",226.709236544542,286.202356768744,228.381848863776,3.79763584849316,7.00968936230582,9.79648768440982 -"Tfru08639_t",0,0,0,0,0,0 -"Tfru08640_t",0,0,0,0,0,0 -"Tfru08641_t",226.709236544542,286.202356768744,228.381848863776,3.79763584849316,7.00968936230582,9.79648768440982 -"Tfru08642_t",0,0,0,0,0,0 -"Tfru08643_t",0,0,0,0,0,0 -"Tfru08644_t",226.709236544542,286.202356768744,228.381848863776,3.79763584849316,7.00968936230582,9.79648768440982 -"Tfru08645_t",0,0,0,0,0,0 -"Tfru08646_t",0,0,0,0,0,0 -"Tfru08647_t",1.15366362467833,1.0684886358325,1.09537527697171,1.31572193118776,0.768103989278018,1.19034446846858 -"Tfru08648_t",0,0.214414960308377,0,0.967077753244821,0.693613777281263,1.27034304887585 -"Tfru08649_t",0,0,0,0,0,0 -"Tfru08650_t",0,0,0,0,0,0 -"Tfru08651_t",17.6069651916207,14.1327705125417,23.8264334024483,36.424665077305,32.2205058656025,23.1874177788132 -"Tfru08652_t",5.19165249711192,2.84129936869317,4.26758436886548,2.44097875919339,3.06378557521007,2.76247459893832 -"Tfru08653_t",10.6658942296038,11.3093809354504,14.0609228526047,8.58092031523343,5.81254868375278,7.32185665643371 -"Tfru08654_t",9.35708796970117,8.9802488521408,9.45924615554826,6.73308233044336,7.04250308167739,13.6919745860212 -"Tfru08655_t",8.97059955356134,9.48640833289783,7.23457159674339,11.1937493743621,6.53192160825578,14.3765733153222 -"Tfru08656_t",8.79654107428305,7.93657323657692,5.93093937720034,8.04096444505718,4.42657331483273,10.027984598297 -"Tfru08657_t",18.0390379570593,17.6030407268263,17.7313579932453,22.7109861781738,20.3866422413937,22.8891357758351 -"Tfru08658_t",59.7138505397051,58.0219223023839,51.6308994530176,67.8936290621807,54.8230998889197,48.2876585110823 -"Tfru08659_t",0.354661221198723,0.854039113671573,0.152708635287459,0.0458569096713903,0.115114265411587,0 -"Tfru08660_t",0,0.0319893287556853,0,0.041223360449376,0,0 -"Tfru08661_t",0,0,0,0,0,0.247842983170878 -"Tfru08662_t",0.803927050444474,10.324747179634,6.23073151872637,69.8517022152336,58.1014928285133,61.1709686310362 -"Tfru08663_t",1.91077430109433,2.45398653587207,2.41335216267407,0.790588419960133,2.75640046695675,3.54158039939705 -"Tfru08664_t",0,0,0,0,0,0 -"Tfru08665_t",0,0,0,0,0,0 -"Tfru08666_t",21.6026683126579,21.489798302116,23.055228165446,57.8689003948731,75.7502466085346,69.9756065715685 -"Tfru08667_t",5.2117719144902,5.82719695043553,4.60570409410091,19.7508222436908,19.5835683740623,12.8312845126251 -"Tfru08668_t",0,0,0,0,0,0 -"Tfru08669_t",0,0.289414184622252,0,0,0,0 -"Tfru08670_t",0,0,0,0,0,0 -"Tfru08671_t",1.18324474325982,0.949767676295558,1.0189537460202,0.699387073056617,0.731527608836208,0.989377220545315 -"Tfru08672_t",0,0.0460768739439594,0.0123583389080003,0.222665298498338,0.49684895331957,0.115496354303067 -"Tfru08673_t",0,0,0,0,0,0 -"Tfru08674_t",0,0,0,0,0,0 -"Tfru08675_t",0,0,0,0,0,0 -"Tfru08676_t",17.4030437723267,12.4616313295173,14.9866684343865,20.0735034176291,20.5896131452766,18.7784459976266 -"Tfru08677_t",0,0,0,0,0,0 -"Tfru08678_t",0,0.0369296303488415,0,0.0475897282734308,0,0 -"Tfru08679_t",3.69901743616873,5.02468115283204,4.04302900410723,25.9004174658799,24.6278896929108,27.5317668485638 -"Tfru08680_t",0.675686676445958,0.271180315081707,0.290934514614345,0.232972771654919,0.779773129418971,0.659142732722549 -"Tfru08681_t",8.28757680422969,7.00864966999781,6.07483111176926,18.3696910028317,23.697113092582,23.7847765270598 -"Tfru08682_t",8.82566891751579,8.05325803225633,6.13038524798374,4.73680516402443,3.02674079422141,6.27443128059158 -"Tfru08683_t",20.5680577612854,19.2999341945163,20.7058428458518,14.0836057237323,13.0383444984572,13.3527543760752 -"Tfru08684_t",5.29820557968202,5.20285345652682,5.7032013593918,1.51584699061349,2.26849631721022,2.45365384748036 -"Tfru08685_t",16.3185623944538,10.0145338899838,14.3501779873738,5.93912961409499,3.21345869032654,1.76877870003965 -"Tfru08686_t",4.67026011786973,4.79488400250052,6.21976743611423,6.40366399244373,5.73438203415315,6.71467040120093 -"Tfru08687_t",0,0,0,0,0,0 -"Tfru08688_t",0,0,0,0,0,0 -"Tfru08689_t",5.08622322833398,4.36417255851048,4.22897713379572,3.6283442099075,3.6432823875567,3.2079885086836 -"Tfru08690_t",0.106612153263258,0,0,0.220555441186002,0.184552904361216,0 -"Tfru08691_t",4.56663716283407,4.92953457481237,6.1022628276186,5.21230178532916,4.70220736453985,3.45632951226116 -"Tfru08692_t",4.26186384851309,3.88740420928043,3.33646653193392,4.20801472799303,3.40933474513256,3.44884655443933 -"Tfru08693_t",0,0,0,0,0,0 -"Tfru08694_t",5.74975962694317,6.41002899400994,5.50157535874022,6.27786324227532,2.76478495506917,2.1033670663019 -"Tfru08695_t",0.20490335797914,0.16447196345606,0.705811863096916,0.635845198736229,0,0.299829560128672 -"Tfru08696_t",0,0,0,0,0,0 -"Tfru08697_t",0,0,0,0,0,0 -"Tfru08698_t",0,0,0,0,0,0 -"Tfru08699_t",1.42390469104148,1.14294076299974,0.61309928785961,0.368215439946121,0,0 -"Tfru08700_t",0,0,0,0,0,0 -"Tfru08701_t",0,0,0,0.0953884125436714,0,0 -"Tfru08702_t",6.77028264100663,5.48163040082005,7.45257200225142,11.5093773534385,21.452367524886,27.6528159835561 -"Tfru08703_t",46.9219247221172,42.5732266697092,49.8752032660282,17.9404064675684,14.6097862316991,8.15757476036718 -"Tfru08704_t",0,0,0,0,0,0 -"Tfru08705_t",0,0,0,0,0,0 -"Tfru08706_t",0,0,0,0,0,0 -"Tfru08707_t",1.03185723772505,4.7624481537072,0.888586071247909,77.7375532293212,102.335246609712,83.3584485874621 -"Tfru08708_t",79.2878999706856,71.6231606541345,76.4124869833548,46.7916851377687,37.4325707437501,30.3688313343346 -"Tfru08709_t",88.0786758887088,83.597952950838,89.512496027503,65.4371438989964,66.9037792759352,41.671227000934 -"Tfru08710_t",1.44845476623392,2.9066165841464,2.49467985115025,2.99651184434699,2.50737393216541,1.05974240663837 -"Tfru08711_t",0.360559556959002,0,0,0,0,0 -"Tfru08712_t",2.81522308755974,3.03133859904712,2.0991196704895,2.02420682392939,1.72349937493359,1.55734928861276 -"Tfru08713_t",0.562988377470608,0.50211098300063,0.646424863446915,0.452935150253904,0.541428475936851,0.503436826574948 -"Tfru08714_t",18.6288366182387,15.367217666647,18.486374596101,16.6538324779563,15.8112413321161,15.4040199073477 -"Tfru08715_t",10.605961187093,9.05087575643248,7.35474720466272,7.10203175465516,5.50789252643746,6.94289712324532 -"Tfru08716_t",8.40103767714474,11.1746951171003,8.16054083901055,11.6208078689655,15.5900647148889,11.078432383035 -"Tfru08717_t",0,0,0,0,0,0 -"Tfru08718_t",0,0.176219960845779,0.378113498087634,4.69314313352931,4.94048768016453,8.83426382521979 -"Tfru08719_t",0,0,0,0,0,0 -"Tfru08720_t",0,0,0,0,0,0 -"Tfru08721_t",4.5005558984704,4.98870317727692,4.79844034477878,5.76369882527908,6.30681302760931,4.07676417215771 -"Tfru08722_t",3.48646415970891,3.98250548384426,1.55892604239482,4.02245246766361,2.55339916201599,4.21867130492297 -"Tfru08723_t",0,0,0,0,0,0.05354099288012 -"Tfru08724_t",0,0,0,0,0,0 -"Tfru08725_t",4.84675193869287,11.6711821944241,8.34758163447391,15.0401827479914,14.6826014609413,12.4112125505687 -"Tfru08726_t",2.12684498155563,1.70717734220214,0.457884278274898,1.09998536490234,1.84085681818529,1.1670580979692 -"Tfru08727_t",4.77175269482825,4.18006707778687,3.99067029640132,5.45787386135321,5.14278691382977,6.86488516356867 -"Tfru08728_t",0,0,0.657688312249044,5.5299263015409,7.93241920254943,5.58773258636267 -"Tfru08729_t",0,0,0,0,0,0 -"Tfru08730_t",0,0,0,0,0,0 -"Tfru08731_t",59.0978259134529,73.0526657077879,50.7672334418611,200.174986713952,156.805298024448,106.700408896054 -"Tfru08732_t",0,0,0,0,0,0 -"Tfru08733_t",0.634040579407151,0.254466056667866,0.546005403527803,0,0.548783730704295,0.347915432979496 -"Tfru08734_t",0,0,0,0,0,0 -"Tfru08735_t",0,0,0,0,0,0 -"Tfru08736_t",10.8400486156706,10.57235040524,9.73690678393353,6.39477378970945,6.5237219196879,7.96122480203999 -"Tfru08737_t",15.2550812040224,14.9181539231948,21.9257476781098,12.001374850827,17.9459999404547,15.4055648669693 -"Tfru08738_t",16.3005208658976,17.6132289221261,17.2765888875291,19.4549650357156,16.8218595062661,8.25650057358913 -"Tfru08739_t",20.8676738875544,19.7824201013424,21.2234755621808,32.0055698892783,34.2549159529554,31.1931888198105 -"Tfru08740_t",12.1865654979304,13.1617202563271,12.2028918499286,11.6842300856927,12.0196860728595,12.7669594145392 -"Tfru08741_t",0,0,0,0,0,0 -"Tfru08742_t",55.1389411986095,51.0118742615531,58.1014817355039,119.677267820167,72.3370886482759,42.9300003346928 -"Tfru08743_t",0,0,0.254738436505049,0,0,0 -"Tfru08744_t",0,0,0,0,0,0 -"Tfru08745_t",0,1.16264663365856,0,0,0,0 -"Tfru08746_t",0.477331686201406,0.766289829738462,0,0,0,0 -"Tfru08747_t",18.3132376193856,14.5968867567253,16.3218993341162,19.8701624605072,24.2748961977315,19.1141344582028 -"Tfru08748_t",10.5142669981556,8.96707374248086,9.23308849316777,9.94560666281808,9.28007070344953,9.1855976603438 -"Tfru08749_t",9.60118591673685,11.0345735482338,9.7713694293677,5.19135950137025,6.79921661158308,5.82720697055269 -"Tfru08750_t",5.87394874083881,5.10349615380175,6.08671217705264,7.91203457052111,9.77712082651236,10.6495359130604 -"Tfru08751_t",1.05895432905186,0.850002164079638,1.06390758775638,1.82560596275808,2.29140265708989,2.45343726197726 -"Tfru08752_t",21.8247598018351,26.6374343661398,24.2010580104583,29.6878612363677,37.5213787407696,39.3726361877153 -"Tfru08753_t",36.5310280156258,39.4998817068837,34.5547592005989,38.9687541251134,23.5357631295954,15.4344404028768 -"Tfru08754_t",0,0,0,0,0,0 -"Tfru08755_t",6.4515481326988,5.72533455426819,4.91736919883584,3.68900410237459,4.00593800084228,3.79667314453418 -"Tfru08756_t",397.37227643985,416.139082291125,394.187874453737,326.11847474346,396.470162556918,454.560993773021 -"Tfru08757_t",0,0,0,0,0,0 -"Tfru08758_t",6.41458541850953,6.31151032178673,7.03856103624049,13.1632485107833,13.701007611703,16.5017032538797 -"Tfru08759_t",25.3877512221407,35.5693213276402,37.365369785378,34.8550307658889,46.7446142046337,34.1097310025503 -"Tfru08760_t",27.3688196280919,32.2840293140804,20.1871190447372,78.4058973342497,34.297039883853,28.9042490968235 -"Tfru08761_t",0.063260825882114,0.152334725188971,0.10895439151722,0.916102269263543,1.14984241768426,0.879394681250886 -"Tfru08762_t",0.706252166613449,0.566894958109158,0.521306199925464,0.487023143947952,0.640394145317461,0.590537003936375 -"Tfru08763_t",4.33043179234265,4.38504949357077,4.64710784564801,5.3751862161207,5.44921355121423,6.4097187685715 -"Tfru08764_t",4.47754508482887,4.83844799758756,4.13570328697076,3.14604424815023,3.34398305573483,3.66526239555698 -"Tfru08765_t",14.0110701753581,12.1011426614869,14.382270419143,10.7246738546015,10.1867293574696,8.85687319712981 -"Tfru08766_t",91.7321816151209,105.024097175389,80.5346353067264,9.8362095566203,16.0279878114422,23.8536742815559 -"Tfru08767_t",3.6659073500268,3.187765691712,1.84152731553468,5.37192852750487,7.13917744216224,3.57614893535289 -"Tfru08768_t",37.2498840401701,34.0984515934941,35.0808471766614,27.3813338097293,31.1434767174687,22.8464467656536 -"Tfru08769_t",9.72914289816395,10.2265885365831,11.1045354472072,10.9422257392812,9.08923053978988,8.19157506877276 -"Tfru08770_t",61.2536155692495,77.6322518254224,58.9544096258321,144.177539984321,97.8272036427047,80.7509363858958 -"Tfru08771_t",92.9239445986567,123.777149792449,82.8041815383229,246.174974025305,205.556444515248,117.346092334311 -"Tfru08772_t",1.03191936785737,0.950110800456069,1.30682290403602,2.76268000606974,3.41502881552799,3.48627687599035 -"Tfru08773_t",3.9819044752266,4.32426751502968,2.75666761585947,3.79576734189812,2.43280520024116,2.17069913884977 -"Tfru08774_t",2.46284492163852,1.75722488643608,3.53992860849188,1.19994474709483,1.53954393507842,1.30137748818064 -"Tfru08775_t",0,0,0,0,0,0 -"Tfru08776_t",0.829049770770863,0.776372590656073,1.07090697978109,1.50887010954859,1.67433194154024,2.22406466477025 -"Tfru08777_t",0.938289010610502,1.04902540712501,1.21201438796658,0.519937238695361,0.551082186696475,0.514864880875122 -"Tfru08778_t",5.00579965218469,2.27107659383627,3.18621028872118,3.15177153777716,1.31864484515086,2.86624631314715 -"Tfru08779_t",6.67712532143007,6.52896652621093,6.16820410705,4.14402000910461,4.83357924659346,3.28642660921384 -"Tfru08780_t",3.67746230661245,3.94054693575664,3.15148146479472,7.49701032594083,6.79857447940085,7.66680622993704 -"Tfru08781_t",1.62696152198226,0.949767676295557,1.21000757339898,0.841450072271242,0.512069326185345,1.29855760196573 -"Tfru08782_t",0,0,0,0,0,0 -"Tfru08783_t",81.3117194170574,71.1065590612058,77.8986065981851,32.64344681695,61.2380560390313,95.7172370201273 -"Tfru08784_t",0,0,0.260236388372064,1.25034307665158,1.04624236429236,0 -"Tfru08785_t",0.166852784054513,0.200894255264105,0.359214081268291,1.29442170547097,0.93870901304682,1.09868031467209 -"Tfru08786_t",47.1277723352022,41.7758787178392,46.230677032848,41.7538347170124,49.8355859840187,43.3253714385931 -"Tfru08787_t",15.5007756685359,15.8215285119577,14.8316957564215,8.90762636042781,11.594462647568,16.8013830960486 -"Tfru08788_t",4.0704893186704,2.45047730209769,1.85002503819818,15.2043737517456,7.92708127830935,5.21170762996204 -"Tfru08789_t",0,0,0,0,0,0 -"Tfru08790_t",0,0,0,0.103205277704614,0.172716969877242,0 -"Tfru08791_t",0,0,0,0,0,0 -"Tfru08792_t",13.8998987021849,13.1188818851225,13.7456860338124,18.4857540505315,19.3683239866068,21.1775069765429 -"Tfru08793_t",0,0,0,0.363593488817091,0,0 -"Tfru08794_t",11.8313290538239,10.8989880509493,15.1802920082895,28.7472545742435,27.0099629651223,17.6029424644541 -"Tfru08795_t",0.0495929024624837,0,0.0854140684385288,0.153894056364731,0.0858486945906955,0 -"Tfru08796_t",0,0,0,0.0332309154215238,0,0 -"Tfru08797_t",1.76304255050006,1.46008588477815,1.59054538769175,0.955250448467819,1.01731561004977,1.04420987713033 -"Tfru08798_t",4.3678588868342,4.05238483896801,6.10615428489483,9.85753258810521,11.4397877961974,9.67006005371101 -"Tfru08799_t",0.256129197473925,0.308384931480112,0.882264828871145,0.927274248157001,1.44097557338132,0.65587716278147 -"Tfru08800_t",0,0,0,0,0,0 -"Tfru08801_t",0.0423866684013357,0.0680459182815182,0.036501370316566,0,0,0 -"Tfru08802_t",16.0577325436714,14.6346481769066,13.6480967404965,12.2843562204822,10.0619456050237,14.5325552103183 -"Tfru08803_t",2.94428890554138,4.09642787486355,1.85935251318171,3.04552022759175,1.18924511735569,4.73912844455716 -"Tfru08804_t",1.30501556149821,2.35689920447713,2.1071567757505,1.85609180990317,1.12953544572146,3.22244002973242 -"Tfru08805_t",0,0,0,0,0,0 -"Tfru08806_t",43.1639522032609,41.8552789760594,48.6462572884469,70.717679804273,71.7108947415147,69.5191021484548 -"Tfru08807_t",14.8192646525292,14.279710149567,16.0636046967164,15.328784540257,14.3514166417735,14.0014980032127 -"Tfru08808_t",8.40900830112685,12.091966269649,7.58463151271484,10.2233933914452,11.521074004895,15.0746849763934 -"Tfru08809_t",5.71798375931318,13.4160900033791,7.95424102259745,10.4642586807725,10.2789204010189,20.5956221407758 -"Tfru08810_t",9.13945741533758,9.91097624168938,8.60017516903933,11.3319097498116,15.716248771971,21.7430434976595 -"Tfru08811_t",5.75515926281268,8.99913323180399,6.24335805057036,7.11271675454643,7.37489168353058,8.91352735916331 -"Tfru08812_t",18.5302888193021,23.8907274917317,21.8277360176029,24.6296151647618,21.4401963818586,22.1976673201547 -"Tfru08813_t",0.540259657694196,0.517051361742894,0.465245761848449,0.494354046012255,0.34171729954194,0.364868027660911 -"Tfru08814_t",10.902109962331,8.75091286449777,18.2244933346793,10.6135992457146,10.546282763362,8.91477966916722 -"Tfru08815_t",5.22645201112691,2.1752743553866,5.66763673477593,3.20364401206579,1.84297762097122,3.11574035986246 -"Tfru08816_t",0.155000695150272,0.373248182750837,0.400437542255169,2.56527952257667,4.96386022099226,3.28872091321947 -"Tfru08817_t",0.418135429803969,0.363598326512152,0.27005866599208,2.73924186266015,4.9159504868876,5.58309751222593 -"Tfru08818_t",4.01145438986951,4.03809247264135,4.92687067645147,5.91796431543934,8.70858566004134,10.3925267495089 -"Tfru08819_t",944.27663491107,914.735495555396,827.273262087607,442.749609300015,534.810324961237,662.900670227484 -"Tfru08820_t",25.0301772612655,28.2007940807758,24.9251762488017,24.2902510373125,23.0825096265086,22.4417390698692 -"Tfru08821_t",5.82730937142988,7.51736017943263,4.54027614659371,9.40028781286068,9.72720295587753,8.27316659925646 -"Tfru08822_t",0.136454320689953,0.255568237747099,0.274185171506246,0.141145929335059,0.157474486883203,0.232948250560175 -"Tfru08823_t",12.3291679220896,10.5868301391853,9.1358071358193,8.00774328783852,5.95608281105685,10.4889180591088 -"Tfru08824_t",23.3563331972343,22.0902861262536,27.7533134530242,19.1027630827221,15.6710871375688,19.0753633943931 -"Tfru08825_t",1.90611779229335,2.2666724375457,1.94543101761167,0.876290862123879,1.34428955882607,1.03302621556937 -"Tfru08826_t",2.70099880972503,5.90603868774034,2.16555912541099,4.62432871808167,5.23991117593208,4.2930141563878 -"Tfru08827_t",0,0,0,0,0,0 -"Tfru08828_t",24.7271921778029,25.2460412871469,25.481372865377,24.9352593740854,24.3573468652497,23.8442042429914 -"Tfru08829_t",1.88511089340809,6.5788785382424,1.41162372619383,35.1834343300713,26.0351032827542,60.1458097618115 -"Tfru08830_t",0.295032051875145,1.48010327078544,0.317584354554144,0.305175922132694,0.702240814312124,2.15856224148824 -"Tfru08831_t",1.7129608528348,2.00955773409342,1.18333794882874,3.07640988678265,3.51920017314742,4.17295835254144 -"Tfru08832_t",6.39525359505828,7.93335353140995,5.88278313229999,6.61513690034693,6.41592743985168,3.82827362240415 -"Tfru08833_t",0,0,0.069363102557463,0.749846207522111,0.697160539964708,0.117862051440801 -"Tfru08834_t",30.9183171017595,33.1527176152276,34.8953778690504,26.5703713932868,42.2362013930757,44.2708377002256 -"Tfru08835_t",12.3851887602667,9.10292430069419,11.8220352913036,18.8306553231416,18.4690581483475,14.4109909362022 -"Tfru08836_t",6.17723358613584,6.2631738405868,5.09555739399109,10.0888750573473,8.27316959349296,11.6555260506676 -"Tfru08837_t",10.987122229006,9.23911011798543,10.5557806215829,9.27745663636491,9.70380484675076,8.74947470838117 -"Tfru08838_t",48.1293093092498,52.6233427001702,54.1578677475837,58.1491328788185,45.1233575956672,30.387866026312 -"Tfru08839_t",0,0,0,0,0,0.132637663664274 -"Tfru08840_t",0.950849803671509,0.448958089327461,0.866992601473908,0.752120485855326,2.27533334418175,7.85433325304708 -"Tfru08841_t",8.66144720082982,8.95175235063744,8.53133443012192,1.58104365453954,1.37195932676074,2.0295066923804 -"Tfru08842_t",17.5531036705415,22.9918811284521,16.319147988496,23.0345168149247,27.8912770825985,26.5794853303255 -"Tfru08843_t",0,0,0,0,0,0 -"Tfru08844_t",0,0,0,0,0,0 -"Tfru08845_t",0,0,0,0,0,0 -"Tfru08846_t",0,0,0,0,0,0 -"Tfru08847_t",0.260901791215675,0,0.449352273089652,0.809616557397062,0.338729088439374,0.190885278963906 -"Tfru08848_t",0.524245720882667,0.526002379227649,0.112863831462455,4.60929904856112,1.47469575060553,0.671225302316137 -"Tfru08849_t",0.126331393641274,0.202807533885668,0.108790550326968,0.130674953123736,0.109344126794465,0 -"Tfru08850_t",1.41518245709942,1.85881024549115,1.88342598996382,3.85921358497895,2.22707027008634,3.48270629950379 -"Tfru08851_t",0.387740200483604,0.414975415489136,0.22260220297672,2.40642952137096,0.671204716784484,0.378246522008478 -"Tfru08852_t",18.0265180926588,0.546020283538337,49.4997003987706,27.4417401559846,13.9834315996767,31.8523386954508 -"Tfru08853_t",141.712938709341,128.353679899323,234.532762459361,1114.3085699313,479.273896104952,872.477232473117 -"Tfru08854_t",633.663202518009,665.277878491127,796.182541720124,3032.16973461532,2293.52124224731,2164.99393146721 -"Tfru08855_t",0,0,0,0,0.320325305367044,0 -"Tfru08856_t",0,0,0,0,0,0 -"Tfru08857_t",0,0.0757679831651512,0,1.46458725551603,0.57190664070588,0.966866109628413 -"Tfru08858_t",0,0,0,0,0,0 -"Tfru08859_t",38.2173165422529,38.0139856713393,41.6992668423404,40.6095904160186,36.9212861469242,30.7325299131888 -"Tfru08860_t",154.506040757923,182.070463545858,131.480475106032,183.243214157535,190.95287812289,175.576279591001 -"Tfru08861_t",160.095246300306,208.116882060505,143.716422285711,202.373587781062,214.613637543287,179.093610976588 -"Tfru08862_t",6.28114966515495,8.98063034104701,7.60644209937973,11.9790462285276,6.28600990602291,9.19103698338358 -"Tfru08863_t",10.3379105786647,13.6393086526574,12.9956236603453,14.5036259853177,12.2389638951626,9.12847423164025 -"Tfru08864_t",5.42878040526316,4.68439534043673,4.85031859878596,14.670321776981,15.2710820054628,18.7175505287111 -"Tfru08865_t",2.66591106109557,3.18237859315306,2.11915848236584,8.76766202976672,7.69145627451707,9.55234046121899 -"Tfru08866_t",0.345248123718277,0.831371979661454,0.346863021761669,3.03550755835035,3.18745618929618,3.74684268804631 -"Tfru08867_t",0,0,0,0,0,0 -"Tfru08868_t",11.7830027825903,13.8661365301785,9.51838546861563,12.0443163765579,10.920614599731,9.99411192046604 -"Tfru08869_t",0,0,0,0.12723110370027,0,0.183113157766075 -"Tfru08870_t",12.0933773606678,12.5986027749956,8.53081183689496,7.31919817840835,5.79038270222449,10.0716101093758 -"Tfru08871_t",20.7337131861254,20.3355662355629,23.9265703590731,35.8473182217817,30.0474705184519,26.4920528127915 -"Tfru08872_t",0,0,0,0.0986365991229111,0.0825355781138695,0 -"Tfru08873_t",6.74535871884533,8.8598765715352,8.97720563095551,10.1487700819735,7.96136981583893,11.6649018648081 -"Tfru08874_t",34.354243358324,34.43925434796,34.1381347221329,23.5092407854172,21.911537908422,26.2049697027637 -"Tfru08875_t",0.452479587637957,0.121065538630134,0.649422944052369,1.87214744331672,0.652727507345773,0.331050591524476 -"Tfru08876_t",12.8587311384869,14.4500367893538,13.841654840708,16.4043735796405,10.7586810470982,12.7006883824913 -"Tfru08877_t",9.76415196077813,8.30308980071041,8.15866532198909,7.99989356292609,11.9655693182044,14.0046971756304 -"Tfru08878_t",99.7338378850908,66.823798823341,83.2695266062779,7.07133448865788,7.49491704546869,6.61332922182545 -"Tfru08879_t",28.2694347887639,27.7236798102393,28.2707818163107,38.0845679188778,42.8192787437591,39.3643259675038 -"Tfru08880_t",8.50411789404223,5.19218106668822,10.2374755086485,7.7715208452816,7.38999462301264,4.57190203935377 -"Tfru08881_t",27.4742234634643,29.8657840625758,31.0902296228167,22.4923055099381,23.7798767778891,26.5153298347151 -"Tfru08882_t",9.01057668842023,7.8707876518247,6.84659772562466,13.1581845542892,9.63401091914637,8.72532395011671 -"Tfru08883_t",7.03586905460872,5.90043168898615,6.05895371227259,8.25539016359204,9.99815359376887,8.22095175177802 -"Tfru08884_t",6.83337992877803,7.74356038472551,5.53842801664566,41.5783941757343,52.8827958678684,37.3495818083731 -"Tfru08885_t",2.44216211544905,1.37219341604329,4.20614627717639,3.536580853436,2.74790690737834,3.3948724904104 -"Tfru08886_t",0,0,0,0,0,0.167024619093418 -"Tfru08887_t",30.9254152070676,32.3599716360759,32.0703117335271,33.6084824411329,29.8735038447325,26.5623338597673 -"Tfru08888_t",20.4532305620627,15.6033261105699,20.3790749204039,27.6257893857364,24.8719387004311,27.3315457175643 -"Tfru08889_t",0.188533161515816,0.332930231232868,0.227298030418329,0.546043004300711,0.783273008814927,0.386225690111889 -"Tfru08890_t",0.309715674733447,0.0621506958681886,0.266712316930632,0.320364401206579,0.0670173680353171,0.396548773073405 -"Tfru08891_t",0.0377066323031631,0.0907991539726004,0.0324711472026184,0.351027645621886,0.391636504407463,0.137937746468532 -"Tfru08892_t",0.330099712265019,0.662411640638355,0.426399111792341,0.853623220307315,1.14285020539598,1.32832152866435 -"Tfru08893_t",15.8843149357779,13.6567014362128,15.502653421593,13.7285568399408,15.1538095722211,17.7680509077932 -"Tfru08894_t",1.12313337929743,1.62273140415204,1.1606264593706,0.697049549416722,1.55537634905495,1.15041555824771 -"Tfru08895_t",9.19611877999881,9.53449785872986,7.96050352435276,7.8773752386193,7.91809821254215,8.41027044374609 -"Tfru08896_t",8.94741681895817,9.09513446104244,8.36159848730307,8.6102302700976,7.55386073669137,12.8778824603498 -"Tfru08897_t",17.2999771352554,19.6441149723009,15.9880035287147,18.3312478189149,15.9232727889438,12.5029378350994 -"Tfru08898_t",0,0,0,0,0,0 -"Tfru08899_t",77.9049714828248,76.646803667561,66.0364965516693,73.2577462497458,78.6324130419032,79.1541322764108 -"Tfru08900_t",89.6486570916737,129.888697583044,125.269763218771,128.890231448516,148.843775282457,125.817739913048 -"Tfru08901_t",55.9061859809992,37.3552509806318,58.5531873837145,18.4425603806108,20.6632866947741,31.1747245881988 -"Tfru08902_t",0.290291557606936,0.256312562262208,0.174989637792687,0.0600544877866514,0.17588006573194,0.169910324330001 -"Tfru08903_t",0,0,0,0.147286175978449,0,0 -"Tfru08904_t",156.314389467918,145.368949248171,179.678294461487,175.934544358987,182.976640915073,160.716016985599 -"Tfru08905_t",21.5954093515313,23.6561086148293,24.7959107146447,10.7747558374557,12.3877416227781,21.3144965526955 -"Tfru08906_t",332.687190771866,341.083808497888,335.731389707311,303.59396436937,264.989835555689,203.916750204389 -"Tfru08907_t",0,0.413702484766777,0.665758122399698,0.533121741271685,0.446097204406865,0 -"Tfru08908_t",0.26069938486097,0.209258355366903,0.280627292348464,1.07865128102138,1.01539891212548,1.04905455095447 -"Tfru08909_t",16.3328920066723,15.8102791003994,15.4373103091732,50.1797327896227,46.8923843232995,35.9463732388194 -"Tfru08910_t",10.5869266502195,13.1967719232646,7.72259681194254,18.5521623589755,8.03140311595963,5.74099150342742 -"Tfru08911_t",1.06492026893384,0.949767676295557,0.713267622214137,19.3380525700155,5.32552099232759,2.16426266994288 -"Tfru08912_t",0,0,0,0,0,0 -"Tfru08913_t",0.40260563947978,0.538606270103711,0.577841181848514,0.555264177810125,0.696937804967914,0.687308975694319 -"Tfru08914_t",2.73855290378339,4.76836720531335,4.17239585569453,13.0304685578526,5.17821759939885,4.34632569484416 -"Tfru08915_t",0.373587000651239,1.0120648334956,0.965145738309291,0.289823825994279,0.202095175981987,0.204997420210265 -"Tfru08916_t",8.97425594858602,8.79653499047678,7.76004671638946,10.8001937962891,9.82677191741333,11.6526569766222 -"Tfru08917_t",6.34169240239011,7.60816330954615,10.6874353133709,41.4039134144611,84.9902076447885,68.5495066570154 -"Tfru08918_t",20.483095396572,24.423795986717,19.6841700688778,18.5773146697905,14.3886052361338,9.77359608546642 -"Tfru08919_t",2.74185302778875,2.72903218737144,3.82506722804318,2.5525117312192,1.66121706993549,1.60483184925268 -"Tfru08920_t",98.8179611664148,65.7355390633195,92.904390648827,1.25034307665158,1.04624236429236,3.75865473758425 -"Tfru08921_t",12.5616207272778,14.8038982491911,12.9434427011744,6.15877717704178,7.22739161331607,7.75617868163453 -"Tfru08922_t",13.5899138894988,16.060729295925,14.0389544732201,5.44506821935671,3.13822537818832,2.49554430880753 -"Tfru08923_t",127.837476942576,102.775161260826,135.27777250778,67.8439166266029,60.8868937364238,41.1741846547783 -"Tfru08924_t",24.9682969341723,34.0358589391055,24.7303214517038,19.8268803048232,16.2448330869479,16.1894577221263 -"Tfru08925_t",62.044247938713,65.0974787552839,61.8736038881286,33.8587530226047,30.4658806544669,29.0206383265126 -"Tfru08926_t",0,0,0,0,0,0 -"Tfru08927_t",0,0,0,0,0,0 -"Tfru08928_t",0,0,0,0,0.142856275674497,0 -"Tfru08929_t",0,0,0,0,0,0 -"Tfru08930_t",0,0,0,0,0.173541394554461,0 -"Tfru08931_t",0,0,0.404166010991251,0,0,0 -"Tfru08932_t",12.1847111343699,9.26567244476235,16.5677212133449,8.6235493871431,9.99121524950084,7.97638180925488 -"Tfru08933_t",0,0,0,0,0,0 -"Tfru08934_t",0,0,0,0,0,0 -"Tfru08935_t",0,0.29446945422264,0,0,0.317527704446808,0.268406374787676 -"Tfru08936_t",0,0.19508246388713,0,0,0.0701194255721495,0.237087983901168 -"Tfru08937_t",4.15892846568421,2.00297487763187,2.86517612771403,0,0,0 -"Tfru08938_t",11.2906884499212,16.51276034015,11.6181616758635,7.12610108834225,7.4535831305794,6.37052442391842 -"Tfru08939_t",30.7891433193787,9.88554000248989,35.2259245286458,20.0185818240865,4.18770831152623,5.14890553519395 -"Tfru08940_t",0,0,0,0,0,0.106895756219787 -"Tfru08941_t",4.37461048012851,2.00652299731729,4.07473214269288,3.04746211083995,3.40000972370461,5.35614761505098 -"Tfru08942_t",4.1103510584367,3.96437546415844,3.59560027144276,10.4023176037689,8.05744204107461,7.86885894509032 -"Tfru08943_t",27.6719894100237,29.6432183278744,30.7690759339045,29.8293582280597,34.3684211104545,35.5493835812152 -"Tfru08944_t",0.184638190706478,0.148205505531834,0,1.52789175960061,0.799053234267243,1.62105652289348 -"Tfru08945_t",0,0,0,0,0,0 -"Tfru08946_t",1.10217695472744,1.76939225992088,1.37098295565108,0.886722896196782,1.80194657931694,1.25438897604852 -"Tfru08947_t",45.666824873295,36.6281497234526,49.2617210699303,13.3992871855394,16.0855461526545,7.93586709929383 -"Tfru08948_t",140.585630501297,161.616463131113,111.188157566185,16.5139869265873,23.0752421083965,42.8667760412745 -"Tfru08949_t",15.6405202490102,15.8225246876157,18.5428406091691,10.1194283317091,15.3384170988685,13.7857605208685 -"Tfru08950_t",45.2200993370603,61.2649035149047,51.592752696512,19.0601624420831,33.4862442138986,35.0526790100882 -"Tfru08951_t",1.82326360271923,2.7581316743174,2.59671601552559,1.48700024913133,1.72983686400008,2.25748132918249 -"Tfru08952_t",2.58294778697763,3.93923626540417,2.50234989895044,0.200381653713954,1.50904980522261,13.3229414842725 -"Tfru08953_t",30.8963782341274,35.6673084387357,33.4823148279033,19.7497372334738,24.939045778597,16.7631981344667 -"Tfru08954_t",35.7018888080341,28.7381684045973,33.0028476201979,25.6628038193422,31.5122422555981,27.0062567784565 -"Tfru08955_t",0.695258290522324,1.95324635221611,1.09765913881624,2.51706995913514,3.71091343417628,5.08676357183815 -"Tfru08956_t",0,0,0,0,0,0 -"Tfru08957_t",1.2368458641323,2.2910590605997,1.47477110692391,8.16829449339142,13.1346072126522,16.6366356721453 -"Tfru08958_t",0,0.191029759254914,0,1.96937889693563,2.26587050283714,18.1086861811424 -"Tfru08959_t",145.998615942613,256.312788486888,103.250682011775,722.188449671414,672.07359020427,381.918818338658 -"Tfru08960_t",0,0.689856828818257,0.0925137032831636,0.222247682422723,0.0929844556500244,0.157199641499687 -"Tfru08961_t",0,0,0,0,0,0 -"Tfru08962_t",0,0,0.106390758775638,0,0,0.271169381586961 -"Tfru08963_t",0,0,0,0,0,0 -"Tfru08964_t",170.43583624269,165.122083640152,151.153523607524,126.957961772306,103.546306026189,98.4450650196604 -"Tfru08965_t",19.7216110455131,23.0498904818916,21.0148591357794,13.2311973708064,10.2418359044232,7.1201297912083 -"Tfru08966_t",5.21483239167921,4.27784172345127,4.19466975254562,4.09005472311231,2.72800916610338,4.10885120258186 -"Tfru08967_t",40.3403486021432,40.9124009096949,40.1430497136371,39.7403249210143,49.6582351442179,38.6030558665665 -"Tfru08968_t",0,0,0,0,0,0 -"Tfru08969_t",0.197439193352403,0.554682179928193,0.170025184412301,0.204227600064124,0.0854451754621846,0.0722268623106671 -"Tfru08970_t",5.06959168181873,0.581323316829279,0.623669962787562,2.24738388326024,1.88053044912406,0 -"Tfru08971_t",0,0,0.0346151751040353,0.207891970878671,0.104373939212898,0.117636478136608 -"Tfru08972_t",34.5311617626087,41.204196858654,32.6304125811736,89.1761928379307,56.064881343366,36.5399183243707 -"Tfru08973_t",6.87629418413983,8.63916790253184,7.98119998217243,8.34971097272842,9.83318891137411,7.65579036983353 -"Tfru08974_t",0,0,0,0,0,0 -"Tfru08975_t",0.806003614781414,0.199065697467113,0.587308395307581,0.769583856773,0.697623598625939,1.67838170743614 -"Tfru08976_t",2.29261962778156,1.9662853799345,1.89315892251229,1.52682080743266,1.03294433050322,1.93011776651055 -"Tfru08977_t",12.517810599733,10.4723596458696,13.208976472543,16.0484748306423,21.0587838739308,25.089095773831 -"Tfru08978_t",0.454110144710527,0,0,0,0,0 -"Tfru08979_t",3.52715322322871,3.08855748169395,3.17547989933393,3.64842474084019,6.93834392350373,6.21688582213362 -"Tfru08980_t",26.9701209561473,25.25646036614,41.912462756041,41.0444723612267,62.9202822606857,48.4235803429212 -"Tfru08981_t",1.67823314349542,0.950883737019759,0.680100737649202,0.816910400256495,0.769006579159661,0.650041760796004 -"Tfru08982_t",14.4910796460332,19.0060611660047,18.6777553061357,11.8542954939137,8.52563676336548,10.3250213237094 -"Tfru08983_t",0,0,0.125165598559574,0.30068804092486,0,0 -"Tfru08984_t",0,0,0.107337857518448,0.128930035352054,0,0 -"Tfru08985_t",0,0,0,0.141529061607955,0.355279369633481,0.400423842517119 -"Tfru08986_t",0.244216211544905,0.196027630863327,0,0.252612918102572,0.211377454413718,0 -"Tfru08987_t",17.8165832741495,20.6168376041446,15.1463701212877,9.10720403826016,11.9087497170388,12.0170513276517 -"Tfru08988_t",8.90095428783115,7.73185326029286,7.35007273979735,7.56738843198415,6.33211996966494,7.04751774496929 -"Tfru08989_t",0.251027022225441,0.134329691268894,0,0,0,0.183660537329814 -"Tfru08990_t",23.918248445518,25.8627325123964,21.4483769691686,19.6289153115749,28.2300807353474,30.3709707377396 -"Tfru08991_t",0.238214678936051,0.573630950049963,0.410278162386204,0.739215117623404,0.61854877019364,0.987623834639339 -"Tfru08992_t",129.561969429887,113.232620994749,163.422592917055,169.232645202104,155.795891578837,87.0658914989028 -"Tfru08993_t",22.3306270809351,32.3743993641261,23.635192921445,21.7755885000456,29.6304658346312,32.3159389485288 -"Tfru08994_t",49.7042525642391,45.0314039567599,48.5554805280082,40.6972348112957,41.5017696345123,37.9807681002617 -"Tfru08995_t",15.5725929919443,13.1242983804121,14.0144426255421,12.0447311999865,10.3876920454741,9.73251212978776 -"Tfru08996_t",10.0115993043694,5.93973878387947,5.81014817355039,4.50253076825309,1.88377835021552,5.09554900115048 -"Tfru08997_t",0,0,0,0,0,0 -"Tfru08998_t",0,0,0,0,0,0 -"Tfru08999_t",12.4113821123822,12.1048229816033,12.8142133921666,9.38700775258992,10.9734951711522,10.3011339343651 -"Tfru09000_t",4.43007739446751,4.13781814102302,3.53751823043061,3.83254728289079,3.3463705918306,5.42165436627684 -"Tfru09001_t",2.9669092168355,3.00818609741195,2.82390341136824,2.50359122550727,1.48671428903626,5.02688221628368 -"Tfru09002_t",18.6389581904498,20.5986590887895,18.8424533548622,27.6623329225118,3.97471174730361,2.1740053314796 -"Tfru09003_t",5.53239066543678,5.42757479404998,7.76393049406608,4.02701959199612,9.04489282983969,32.2316777138322 -"Tfru09004_t",0,0,0.110959687066616,1.99920652976882,0.61338365605944,1.88543128301772 -"Tfru09005_t",1.92956695764809,1.78710702341832,4.60149430181558,31.6274943965029,5.78113603237519,0.868764096485904 -"Tfru09006_t",52.8619139992646,49.693306004824,57.6539705709704,42.7809692688171,52.2421004563923,45.3895826410174 -"Tfru09007_t",3.57129132024372,3.4126267721146,3.66122044369605,7.21225222048314,7.35970084193513,7.71423827780449 -"Tfru09008_t",1.4921914168996,0.239550639491952,0.771002301606756,2.31524450694364,4.26209034192634,8.62475972696952 -"Tfru09009_t",52.4800338521888,48.2395854529562,62.7785872815642,68.2932979196796,67.2190953773881,39.0930166402024 -"Tfru09010_t",4.03249808502948,4.31574432108701,3.90666866224143,4.69253756667337,6.25339061137544,5.77771562367951 -"Tfru09011_t",2.03328861147993,2.06874676585826,0.442069711114544,1.06495138832093,0.43541224142706,3.74697281596108 -"Tfru09012_t",4.18820060150911,4.15279649664715,4.24315049662369,2.29351787227437,1.91913372101135,2.88399107689749 -"Tfru09013_t",2.42921571387318,3.08731709716315,2.35341485677195,1.98925064182941,1.48931970290533,0.888651467369316 -"Tfru09014_t",9.09102301355841,13.1723605804543,9.39450473716955,8.77668677944828,8.31245945037388,8.39090161891727 -"Tfru09015_t",27.2923378127907,32.1224402182484,23.7562552432467,12.6315307139486,15.854419645588,16.6849111612759 -"Tfru09016_t",5.42532765843007,4.68471512348914,5.52149299947147,2.97598780230427,2.70364587484944,2.58610329993566 -"Tfru09017_t",2.22211747433009,2.531633294153,2.59259391692169,5.63507860996044,5.52178510608396,4.77245771689451 -"Tfru09018_t",0,0.383144914869231,0,1.97497372334738,0.413146842717722,0.349233294468055 -"Tfru09019_t",25.0985357989387,32.4576206720756,31.2197280523366,28.1249370063411,25.7968202872045,20.9134228454895 -"Tfru09020_t",2.24214516821211,2.41838258192689,1.68947460140796,2.89904399757413,3.82066071063728,3.02455256860407 -"Tfru09021_t",0.114144533656858,0.229054025193562,0.147443714607542,0.236138162574143,0.345785944448528,0.501073857280253 -"Tfru09022_t",11.7896292203532,11.4273900823134,9.76954505120687,12.5017754138106,16.8788535354968,14.5932048484515 -"Tfru09023_t",0.159715545192866,0.320501449700497,0.275078767937011,0.578224245999042,1.31327285365785,1.22696412200944 -"Tfru09024_t",14.7499134784478,23.6789406921704,11.5974048493414,54.3946961342872,61.0574265247274,61.4650598242582 -"Tfru09025_t",0,0,0,1.19654173944626,0.62576458105266,0 -"Tfru09026_t",0,0,0,0,0,0 -"Tfru09027_t",0,0,0,0.906376467559683,1.32724096539305,0.480821850010777 -"Tfru09028_t",0,0,0,0,0,0 -"Tfru09029_t",0,0.0879185202307491,0,0.226594116889921,0.189605852199007,0.480821850010777 -"Tfru09030_t",0.236205370491417,0.442394128508802,0.542423362454987,6.75970387784876,5.92887015528937,15.3806663295622 -"Tfru09031_t",0,0,0,0,0,0 -"Tfru09032_t",4.26342178291039,4.9929966277135,5.05577382800703,4.69918872610108,3.75063090493825,3.2726820539835 -"Tfru09033_t",0,0,0,0,0.209248472858472,0.265316805005947 -"Tfru09034_t",0,0,0,0,0.286274977631177,0.241988424513298 -"Tfru09035_t",0,0,0,0.225126538412655,0.188377835021552,0.318471812571905 -"Tfru09036_t",0,0,0.107337857518448,0,0,0 -"Tfru09037_t",0,0,0,0,0,0 -"Tfru09038_t",0,0,0,0,0,0 -"Tfru09039_t",18.1317359938376,7.51956350908821,11.4504010883708,25.6320330713573,41.3265733895483,43.1139808134664 -"Tfru09040_t",0,0,0,0,0,0 -"Tfru09041_t",1.77392429039311,1.55822441871917,2.47877751920291,4.22376850475248,2.81005693182348,1.95904573151801 -"Tfru09042_t",13.8723832313129,22.1923197804164,12.8651735092203,12.5431356563633,8.14462228507731,10.4334454901588 -"Tfru09043_t",3.1273935878422,3.29784294608611,2.05947658593425,1.07830682121448,1.11459177422241,1.48054523669377 -"Tfru09044_t",64.9797102002701,69.5439425808544,73.7473468282039,87.8053891429195,90.0524659143415,90.9609603689912 -"Tfru09045_t",5.22829072603178,5.16850316867815,4.59714015646321,2.76095245700839,2.92951288933942,3.50308562390754 -"Tfru09046_t",21.1527318797052,22.4956887268733,23.4448388520358,17.1865068411389,15.5939141905847,14.6461619919883 -"Tfru09047_t",6214.68264531996,5874.60030601594,6418.83946982046,7678.98452610864,6595.90360058871,3095.55885980427 -"Tfru09048_t",3943.00131630561,3757.28480402799,3862.96594402437,4348.13439379054,3538.9382842924,1892.62208706201 -"Tfru09049_t",4.92306086455739,7.01085512313861,5.34677867055525,14.934788884204,8.77102544744249,5.20860303863447 -"Tfru09050_t",16.4433121794648,17.2783358050637,16.992232220109,13.2976878454564,15.7848558840479,17.4989494167623 -"Tfru09051_t",13.4416602834316,15.4254142726352,14.2882789035682,14.338309231502,13.9974150312764,13.906469785718 -"Tfru09052_t",0.0381691852664459,0.030637666977276,0.0328694756780708,0,0.0660734614432704,0.0279259699347468 -"Tfru09053_t",0.509771703710239,0.572857445532636,0.702385591916834,0.632758571557898,1.05893948036387,0.745935192067691 -"Tfru09054_t",0.0389117076292021,0,0,0,0.0673588182661594,0.0569384528266584 -"Tfru09055_t",0,0,0,0,0,0 -"Tfru09056_t",0,0,0,0,0,0 -"Tfru09057_t",63.6743736780274,69.4459686911059,60.5908222787414,66.4399497570997,52.0122713977554,36.5121672298805 -"Tfru09058_t",0,0,0.0890957093194999,0,0,0 -"Tfru09059_t",0,0.0524366290956334,0,0.0675729734271265,0,0 -"Tfru09060_t",18.8233776525499,13.6895085372826,18.9295557568925,21.5613672654165,16.2922748923752,10.2595814146285 -"Tfru09061_t",0.476172176032496,1.20124462378434,1.28874959618101,1.40726872594793,0.706531280825772,0.647000629751344 -"Tfru09062_t",23.5537957199002,24.8835389491434,24.0360684698106,20.940167882215,22.8692918112113,25.4658258374552 -"Tfru09063_t",0,0.0348673759136425,0,0.0449321839851523,0.0375976444251908,0.0953439397513615 -"Tfru09064_t",0,0,0,0.124141205467549,0.0519384602273708,0.0439036141616984 -"Tfru09065_t",0,0.199212717923145,0.213724419401577,0.513434823204045,0.107405973882303,0.453951697388314 -"Tfru09066_t",0,0.0893159006847478,0,1.38117367672505,1.34833618603505,3.33783768593574 -"Tfru09067_t",0,0,0,0,0,0 -"Tfru09068_t",1.569588889858,2.15979197563296,2.05966451152837,2.47398843636398,2.26422113090851,2.40610554480482 -"Tfru09069_t",0.881227728371826,0.825235201256804,0.252957048837182,0.455763166926318,0.38136631635482,0.429825593191453 -"Tfru09070_t",0,0,0,0,0,0 -"Tfru09071_t",0,0,0,0,0,0 -"Tfru09072_t",0,0,0,0,0,0 -"Tfru09073_t",0,0,0,0,0,0 -"Tfru09074_t",0,0,0,0,0,0.133608117944152 -"Tfru09075_t",0,0.327347111732935,0.351192795958417,0.84367809541053,0.882449566969891,3.43130188351138 -"Tfru09076_t",10.7364539416123,11.2262066710022,10.30938725616,11.8918345432045,10.7236884179018,11.5533736068129 -"Tfru09077_t",6.68872426524263,5.15415324970583,4.60800738646076,6.08845402611549,3.01044578387945,6.85120093606121 -"Tfru09078_t",0,0,0,0,0,0 -"Tfru09079_t",0,0,0.331861082419422,0.398618549666444,0.667099489158891,0.563899631434658 -"Tfru09080_t",4.85524068906789,5.90486033423683,3.67430081095549,6.23967179845652,5.66684075685674,7.96569952215753 -"Tfru09081_t",0.317619571914735,0.318683861138869,0.34189846865517,0,0,0 -"Tfru09082_t",150.41289482348,159.420950581894,140.836420426834,301.753534071654,193.860533431256,218.785044213252 -"Tfru09083_t",0,0,0,0,0,0 -"Tfru09084_t",9.39482558594726,8.80515062277368,9.21273823243987,6.90921641289981,6.48643213699291,7.6285012842046 -"Tfru09085_t",0,0,0,0,0,0 -"Tfru09086_t",0.518873747605796,0.340764483522101,1.0967626788999,0.975843277117177,0.694068137794174,0.517673159683136 -"Tfru09087_t",0,0,0,0,0,0 -"Tfru09088_t",0,0,0,0,0,0 -"Tfru09089_t",0,0,0,0,0,0 -"Tfru09090_t",0.26791464118457,0.337935560449581,0.263674591225272,2.77126153435532,3.61084693881402,11.1449174537122 -"Tfru09091_t",0,0,0.0324274836250264,0.116851874263493,0,0.34637699517171 -"Tfru09092_t",0,0,0,0,0,0.0941769695994445 -"Tfru09093_t",0,0.164204963515385,0.352333032308931,0,0,0 -"Tfru09094_t",22.7833806043249,22.6788060201551,25.3757325607918,23.6073200218552,24.9285729130185,22.0242752197681 -"Tfru09095_t",2.30165415812145,0.461873322034061,0.495518602516584,1.1903951209215,0.996080059154882,2.52596136272741 -"Tfru09096_t",5.07445228820823,4.00293775442179,3.59970583962006,3.15739839872337,2.49895993549419,2.83783370408756 -"Tfru09097_t",0,0.0866245975549065,0,0,0,0 -"Tfru09098_t",0.0148191742342701,0,0.179073554374836,0.34738336939518,0.950130850931177,0 -"Tfru09099_t",3.35548932458588,2.83251328062724,3.61857901476108,1.3892648417811,2.49801224111659,1.69995963964289 -"Tfru09100_t",0,0,0,0,0,0.420993560454568 -"Tfru09101_t",2.80326596109105,3.58614051706592,3.09298681404045,1.81228037178904,1.89556424187484,1.53822881734418 -"Tfru09102_t",25.976892817487,27.5945000793187,23.0363990317355,30.0144032956082,25.2106552340488,31.4604056216591 -"Tfru09103_t",129.045002855603,128.697098380101,131.764210351882,109.816192307031,109.266444207076,99.8393705898859 -"Tfru09104_t",15.0130233992162,17.1721956186215,17.6150775289284,17.7291758813671,20.1411393048508,21.6020165584887 -"Tfru09105_t",80.1129881583391,90.0272051515413,81.668617509629,69.8774208095691,81.7093714504823,74.4550982432926 -"Tfru09106_t",75.662622631367,82.6880188368944,74.18112525202,75.5082977019323,79.3241938018026,73.6801034282371 -"Tfru09107_t",0,0,0,0,0,0 -"Tfru09108_t",4.12414576878015,3.98470711464,3.41997930027869,5.13493168070318,4.89165861777783,4.86132745899533 -"Tfru09109_t",0,0,0,0,0,0 -"Tfru09110_t",0,0,0,0,0,0 -"Tfru09111_t",0.0469331713806969,0,0.0808332021982502,0,0,0 -"Tfru09112_t",48.3149806325063,55.5675234474723,48.7479717033782,42.1440744741767,35.8888072815738,34.2938102035584 -"Tfru09113_t",19.689932055808,18.3334841764927,18.3125093542567,12.7632676871324,13.1793842826953,13.829638460935 -"Tfru09114_t",0.117992102207089,0.142064968434659,0.101609151639654,1.64766066245554,2.80847011060923,2.15818328042057 -"Tfru09115_t",3.81865348961125,3.65841596133201,3.92491420937691,2.80318851055757,3.03862839160131,4.23586189419319 -"Tfru09116_t",10.2869849107895,9.08288026759385,10.0398136444602,9.93129643740396,10.9812744480727,12.0421341700658 -"Tfru09117_t",5.17973550264356,4.27646420542239,4.5879843361614,3.98009971728021,3.58659008968808,4.07842146822119 -"Tfru09118_t",19.3308971152824,19.7128335939666,19.8924544628255,11.1924704784781,11.2069817943574,9.91802340179611 -"Tfru09119_t",176.107313873836,189.138360328387,171.192402757163,163.109594563513,150.288239727435,141.008078425219 -"Tfru09120_t",0.380137451454513,0.610257963954612,0.654712361696235,0.78641487626502,0,0.834367327959879 -"Tfru09121_t",73.5499407532128,73.7307973142906,81.0722420179804,41.9278468271724,41.3082539707182,47.5935677254831 -"Tfru09122_t",21.8191802812313,21.8660743328791,21.5461969016541,28.5833677596745,30.0806883183093,33.0745111973976 -"Tfru09123_t",0,0,0,0.944552650296572,0.112909696146458,0.381770557927812 -"Tfru09124_t",6.8755295567425,9.05437087823962,6.29093182325512,6.77855431389305,5.76503625030151,10.06077705598 -"Tfru09125_t",34.0796811431344,30.2178442293091,31.7365640800536,33.2019167453305,32.5840340105675,35.0814728254326 -"Tfru09126_t",20.8647457143054,21.1028453610516,18.7654416843856,12.4108613919776,13.3248262888387,13.4419519126733 -"Tfru09127_t",7.60156295279867,10.8356490120896,8.69051502260906,15.4547085745873,22.120436259083,22.4381029631394 -"Tfru09128_t",0.0348446191503307,0.0559382040787927,0.0300065184435644,0.108127968262901,0.0603184108820564,0.127467979731186 -"Tfru09129_t",5.2903259931642,5.18065970533509,3.73573596305389,21.7794331506671,22.6200498068322,19.8948619337268 -"Tfru09130_t",0.147645653376885,0,0.127145370768777,2.13810863546922,1.53350814028089,1.29627542691833 -"Tfru09131_t",13.4445056814594,11.8765190885121,15.3757618186502,9.78623728114213,10.9594109133453,14.6246247343032 -"Tfru09132_t",93.4178020328827,86.4577528621984,86.8711944859169,69.7009852865621,60.669816875793,49.1248834959403 -"Tfru09133_t",0.230165415812185,0.738997315254626,0.198207441006668,0.952316096737366,0.398432023662022,3.53634590781899 -"Tfru09134_t",0,0,0,0,0,0 -"Tfru09135_t",0,0,0,0,0,0 -"Tfru09136_t",4.62442440943748,2.7839520419856,2.9867497417748,2.7903298476651,3.33549744579445,2.53754834145596 -"Tfru09137_t",0,0,0,0,0,0 -"Tfru09138_t",2.48348718284605,2.68084270709725,3.68734536021579,11.8699745900674,14.0090892723367,10.2128488804277 -"Tfru09139_t",2.20114524292002,2.35575563378112,2.21144109944121,0.948677334359003,2.69898548779787,2.41565737308908 -"Tfru09140_t",0.920661663248739,0.184749328813656,0.396414882013336,0.476158048368683,1.7929441064791,1.85237166600042 -"Tfru09141_t",1.54745240781144,1.27479723493088,1.61313763184777,1.64277988815516,1.51560606189419,1.96640521015072 -"Tfru09142_t",0,0,0,0,0,0 -"Tfru09143_t",0,0,0,0,0,0 -"Tfru09144_t",0.488432423089811,0,0,0.505225836205143,0,0 -"Tfru09145_t",10.3478334645415,8.86912487697292,6.79657039360026,8.34519168278725,8.34918880481743,7.18589425945126 -"Tfru09146_t",0.494178686890868,0,0,0,0,0 -"Tfru09147_t",1.12263309716856,0.901115879959705,0.322252632371643,0.580615883033082,1.1336234080807,1.23203906110779 -"Tfru09148_t",0.0657872958272885,0.158418570909126,0,0.544393696647045,0.512470320176094,2.1659574723469 -"Tfru09149_t",44.7229360643433,43.5655089500785,45.8786105540387,35.4706032368269,32.0674280128838,35.4696087390086 -"Tfru09150_t",14.1879226728375,11.388371193028,12.3141644199887,5.08450681968155,7.83220929492532,10.3804023908909 -"Tfru09151_t",12.8142238674281,13.5475890440443,13.3213169356352,11.9377321736289,10.9973534296329,11.3772796969819 -"Tfru09152_t",8.78202247572394,7.46381608181843,9.17528296281829,9.75190714741242,8.27182856196097,8.2677828359847 -"Tfru09153_t",0,0.819860243367594,0.219895793214085,1.05652089759617,0.22101472437179,0.18682389004978 -"Tfru09154_t",13.6360756189895,16.5484088950308,17.2779093557625,21.3634357130682,22.4613853148104,20.4687536150541 -"Tfru09155_t",0,0,0,0,0,0 -"Tfru09156_t",0,0,0,0,0,0 -"Tfru09157_t",1.15214231000842,0.385334314382769,0.578765727739471,0.198625928748079,1.41272611818448,0.491720478611022 -"Tfru09158_t",0,0,0,0,0,0 -"Tfru09159_t",0,0,0,0,0,0 -"Tfru09160_t",8.62606547206826,7.14975778639903,8.55875657650446,1.74573570188741,2.434615323158,4.52756021042514 -"Tfru09161_t",1.64887883751614,1.38969931830881,1.20694521241058,1.19389971892246,0.642222373763367,0.904784982723911 -"Tfru09162_t",118.052496268882,110.258574553837,115.204552441032,262.343902928817,307.224607629296,262.901499968274 -"Tfru09163_t",110.790977226974,100.708553344143,120.997420155141,62.2332331339506,37.4682691247233,21.0699004208325 -"Tfru09164_t",4.63259765865882,5.89953781961954,5.29358897322687,9.86020815431543,8.86754199003891,10.2007230782907 -"Tfru09165_t",42.8717437284371,41.7255680645894,39.8149072467813,41.5579972889362,38.6730514981834,36.5427396764026 -"Tfru09166_t",3.3604150708579,2.504673043488,0.826808182484959,3.97251857496158,6.64812290910346,7.02457826587174 -"Tfru09167_t",6.10743157880139,6.07461048750394,6.25986242468116,10.1628043353916,9.59558435492634,9.00969466439594 -"Tfru09168_t",46.825455875852,41.4550235498587,42.6958323472839,45.5862787003042,42.9130884230791,35.7706495485188 -"Tfru09169_t",11.7273368589584,9.327731023923,11.9352069489421,16.8724912507291,13.9337442792718,14.5082501620638 -"Tfru09170_t",42.6114488366517,54.7810329416328,38.3357711415062,50.1684046837932,46.9266665394513,38.2730887991053 -"Tfru09171_t",0,0,0,0,0,0 -"Tfru09172_t",0,0,0,0,0,0 -"Tfru09173_t",0,0,0,0,0,0 -"Tfru09174_t",2.34291887410411,2.35076959720564,1.80143715058351,0.519315799764649,1.08636221591114,0.857082507539131 -"Tfru09175_t",0.240545101707795,0.337891578467353,0.310718894634648,0.559835071185084,0.572549955262355,0.307985267562379 -"Tfru09176_t",0,0,0,0,0,0 -"Tfru09177_t",0,0,0,0,0,0 -"Tfru09178_t",0,0,0,0,0,0 -"Tfru09179_t",0,0,0,0,0,0 -"Tfru09180_t",5.04644542793446,5.79040108540145,5.7827149625523,4.08227144664179,3.16390620252986,3.70227842343778 -"Tfru09181_t",3.08294960629165,5.56790408397121,6.30536056596901,3.98618549666443,6.33744514700946,2.53754834145596 -"Tfru09182_t",32.5549193134865,33.630225342089,29.5200226830333,28.9910599594876,33.1535320972319,34.0187285779866 -"Tfru09183_t",0.217361906265064,0.087236099633874,0.280772506988747,0,0.188134137951666,0.318059817989018 -"Tfru09184_t",12.9511893850473,10.7909418931048,11.0681312236227,5.14465605308074,6.64909713579002,7.09766517338594 -"Tfru09185_t",0,0,0,0,0,0 -"Tfru09186_t",0,0,0,0,0,0 -"Tfru09187_t",14.3250376022362,14.1334877300252,13.3640398945171,14.8175648444393,10.3323402228517,14.0834684149249 -"Tfru09188_t",0,0,0,0,0.122620310823472,0.103651028375005 -"Tfru09189_t",42.2049752508163,30.2689038572077,37.2481510272282,8.8862075733014,6.22520426982042,6.54116867355625 -"Tfru09190_t",0,0.0732972880619398,0.078636647790689,0,0,0 -"Tfru09191_t",0.207042205635079,0.158480622836627,0,0.306341400096186,0.189654810813153,0.0722268623106671 -"Tfru09192_t",1.2968416748589,1.75574070400702,1.59664951620317,0.781991845464879,0.905037380358611,1.17537234763602 -"Tfru09193_t",5.80493966175069,3.75349644048475,5.41551424708238,9.50716717496204,7.9552574398161,8.61218688546175 -"Tfru09194_t",0,0,0,0.457362335933077,0.191352221890313,0.161750157437836 -"Tfru09195_t",0,0,0,0,0,0 -"Tfru09196_t",0,0,0,0,0,0 -"Tfru09197_t",0,0.20129404482682,0,0,0,0 -"Tfru09198_t",4.28078352975528,7.94598625996315,5.29920849442987,63.9287672742126,48.8618507998896,46.3924177670431 -"Tfru09199_t",0,0,0,0,0,0 -"Tfru09200_t",0.079807197692952,0.0213532314809957,0.0229087130992508,0,0,0 -"Tfru09201_t",0.907429156764763,0.634391859044803,0.655396730018565,1.8167005678178,1.34279921563446,1.67047897785974 -"Tfru09202_t",0.0876325209716072,0.187575813677287,0.0503099554710945,0.151075875916698,0.126414889287759,0.192345458427468 -"Tfru09203_t",3.47917076634929,2.75542759318435,3.51541855612048,2.92701793123377,2.97118966292414,5.09097679401251 -"Tfru09204_t",0,0,0,0,0,0 -"Tfru09205_t",8.53309751971171,7.17551202115435,9.53528783609467,4.62339676952905,6.41851346461583,6.98635504677086 -"Tfru09206_t",0,0,0,0,0,0 -"Tfru09207_t",0,0,0,0,0.192874918616231,0 -"Tfru09208_t",1.179552871986,1.99880904106507,1.24150214608701,11.5232476214028,8.84817450363321,6.61636369425907 -"Tfru09209_t",14.6421052222177,15.0871006280275,14.8447328190285,21.268196635108,22.4702856360689,31.4543075007668 -"Tfru09210_t",0,0,0.0536291445273787,0,0.107804068670599,0.455634246303764 -"Tfru09211_t",13.8723832313129,14.4055409100949,12.7816334214981,24.6848909717229,28.8000561214589,20.9378667999785 -"Tfru09212_t",0.688609645233117,1.65820094199435,2.37199068596022,0,0,2.01524786188838 -"Tfru09213_t",1.5038472652334,2.4690868395153,2.5312170761592,11.595940103885,8.81559219156187,11.2027448340998 -"Tfru09214_t",31.9428522611693,39.8963502351291,28.0310571513691,30.9454885976584,61.0819672931217,67.5918021241838 -"Tfru09215_t",0,0,0,0,0,0 -"Tfru09216_t",2.98675318325116,5.25389638180742,2.79094668255607,4.92996466493672,9.13048272075716,13.2042942440932 -"Tfru09217_t",0.5131971702593,0.247160067258343,0.839687601332464,2.97271548828829,3.28700334731558,2.66586392649531 -"Tfru09218_t",0,0.165413340188842,0.0591543057787685,0.142107675923605,0.118910620307962,0.100515224572981 -"Tfru09219_t",0.174657747965587,0.070097198562354,0.150406893903189,0.180662876979802,0.226758350265028,0.19167898074754 -"Tfru09220_t",0,0,0,0,0,0 -"Tfru09221_t",24.4725880160304,25.5074562455551,16.0418761493006,34.0038954106766,23.0787418923361,34.7411207714309 -"Tfru09222_t",34.9902374078262,35.4127662161629,33.7710384395265,49.1319418822273,47.5492945743535,67.6486674547859 -"Tfru09223_t",9.90527753149836,8.88481991777837,9.04321449592923,6.48805556953713,5.67462771538233,8.63833273235579 -"Tfru09224_t",24.2891402290027,22.4108369877609,23.1808180819647,25.3832688377761,22.9736736147297,20.4272851583938 -"Tfru09225_t",42.6826914242032,53.566131001395,41.1320401266459,63.422140051365,46.912157624722,36.9286044924608 -"Tfru09226_t",0,0,0,0,0,0.18077958772464 -"Tfru09227_t",2.16521589617133,3.82354925354037,3.72916061687804,3.5834574774138,2.6236954135476,2.21781143703425 -"Tfru09228_t",40.3048284360767,37.5585414000147,40.4571994840373,35.0461604041073,42.243800109968,41.1456509932199 -"Tfru09229_t",0,0,0,0,0,0 -"Tfru09230_t",17.450226629084,36.5181444083077,14.8126243375458,21.7891759744972,21.900460529108,14.4087232233942 -"Tfru09231_t",0,0,0,0,0,0 -"Tfru09232_t",0,0,0.303973596501823,1.09536357765485,1.22208141711461,0.516513107784687 -"Tfru09233_t",0,0,0,0,0,0 -"Tfru09234_t",28.5201279076501,26.7743363093267,27.9772362855612,8.08063049611651,11.6449477616791,14.0621170082488 -"Tfru09235_t",0,0,0,0,0,0 -"Tfru09236_t",0,0,0,0,0,0 -"Tfru09237_t",0.521803582431351,0.418841646068227,0,0,0.903277569171665,0 -"Tfru09238_t",0,0.0562180116856895,0.0697816357891466,0.398452389370626,0.243773767528492,0.179347819418359 -"Tfru09239_t",0.0438467519683964,0.0703898799759756,0,0.771023144605344,0.834918880481743,0.834077012257735 -"Tfru09240_t",0,0,0,0,0,0 -"Tfru09241_t",0,0,0,0,0,0 -"Tfru09242_t",0,0,0,0,0,0 -"Tfru09243_t",0,0,0,0,0,0 -"Tfru09244_t",16.8704691481333,15.3715452413208,19.5343249355758,10.4938902315174,14.2724107853079,10.8418694402023 -"Tfru09245_t",8.30142062958967,3.86476609781137,6.86283471627832,7.72815804788104,8.04738197989302,6.43803986323719 -"Tfru09246_t",8.47163461893367,9.06668973575468,9.119207880543,8.76290860729408,9.77665132135894,9.29723592532936 -"Tfru09247_t",7.68867764760597,7.03509473473003,6.42954434555365,4.49957849789818,3.71856391898578,5.80042045962458 -"Tfru09248_t",3.67928657391564,4.4299382857676,7.3929928725516,1.26859626024669,5.30757987722596,1.79460028689356 -"Tfru09249_t",22.80281655225,29.9838263379092,27.258832266301,40.1907152701191,35.0584606534753,32.3789154442525 -"Tfru09250_t",0,0,0,0.107459411163171,0.0599454611033133,0.025335968601145 -"Tfru09251_t",0.131746539631125,0.14100053322945,0.0756358765995127,0.317977996231569,0.228062240412919,0.449822706518185 -"Tfru09252_t",0.539786299349253,0.433276025225952,0.59161216328509,3.95917629586928,6.03117166658955,4.81093342098984 -"Tfru09253_t",11.6826930197794,9.79893119778057,9.72145558312393,11.337583530591,8.52115363105301,8.25936741416951 -"Tfru09254_t",0,0,0,0,0,0 -"Tfru09255_t",0,0,0,0,0,0 -"Tfru09256_t",0.863347745477325,1.33267796476254,0.571902893023193,0.549557905627096,0.689775598276544,0.631656741298743 -"Tfru09257_t",0,0,0,0,0,0 -"Tfru09258_t",4.87425572600505,4.26794335550535,5.32887498807884,3.5749524359326,3.99279605383963,2.43137103743583 -"Tfru09259_t",0,0.593256642378164,0.424315049662369,0.254835319141597,0.639711240337118,0.360498884612186 -"Tfru09260_t",13.9936172200412,12.463086964321,13.6434128316337,11.7308404471363,14.4079575648118,15.7757946136068 -"Tfru09261_t",19.3210678132136,26.8357826088,21.0109222197414,23.7368898366523,29.0512925887162,19.2500462093601 -"Tfru09262_t",41.0222276590687,43.6581974758949,38.9380218545471,22.2330895283536,26.8848379148855,26.5613441059386 -"Tfru09263_t",0.39456928424946,0.0527855225181875,0.368099533298098,0.782259650891408,0.28459430261573,0.336794848363713 -"Tfru09264_t",5.08013476557465,3.77567217340339,3.88868350104908,4.18437881811113,4.80416216660787,4.95574950447838 -"Tfru09265_t",16.9607726421694,20.0230537329063,19.6025287066424,16.4666640310262,18.5003936842949,26.5235883902492 -"Tfru09266_t",0,0,0,0,0,0 -"Tfru09267_t",7.61875481651993,4.58657038172203,6.32658892670677,20.405396526245,17.8987924475862,16.2745543022069 -"Tfru09268_t",0,0,0,0,0,0 -"Tfru09269_t",12.492516291499,14.4637504905289,13.7778834384234,12.3068937060661,11.3895355692087,14.2134348618764 -"Tfru09270_t",0,0,0,0,0,0 -"Tfru09271_t",0,0,0,0,0,0 -"Tfru09272_t",12.5956889587488,13.0235404684435,12.5040034615531,9.43720083374684,8.80075967230013,10.4150030133245 -"Tfru09273_t",0.528248219726734,0.393150438706636,1.07382929467063,0,0,0.35509697950024 -"Tfru09274_t",6.49345357622468,6.8581909398113,7.07146432910266,7.15088811175356,6.36236743528969,5.89476825657862 -"Tfru09275_t",0,0,0,0,0,0 -"Tfru09276_t",0,0,0,0,0,0 -"Tfru09277_t",0,0,0,0,0,0 -"Tfru09278_t",0,0,0,0,0,0 -"Tfru09279_t",31.5870150130112,31.6706171319875,34.0731142485144,17.7695524976637,18.4182824658539,20.0288519487009 -"Tfru09280_t",0,0,0,0,0,0 -"Tfru09281_t",16.6039926351335,18.2846743839396,17.810491795034,23.9845629980994,22.4394318458058,24.125675354875 -"Tfru09282_t",0,0,0,0,0,0.0563382766511253 -"Tfru09283_t",8.41064984840006,7.25257376612878,7.78088936034186,7.10900152591631,8.02847365757184,10.0566402233089 -"Tfru09284_t",31.6691099346111,24.5289904970529,29.3662597853964,34.2892228317857,27.09036868247,23.2863222249713 -"Tfru09285_t",0.762383051114723,0.934923815461092,1.05773923017675,0.514777622874008,0.375758459421613,0.371858189017662 -"Tfru09286_t",3.19026747233345,4.61942104360579,3.3937305330963,7.3116674255273,8.7169984625833,7.00234858781518 -"Tfru09287_t",0,0,0,0,0,0 -"Tfru09288_t",58.3884436798623,78.9031334362958,55.160956456108,147.039979144702,201.722277786304,328.414483881701 -"Tfru09289_t",0,0,0,0,0,0 -"Tfru09290_t",0,0,0,0,0,0 -"Tfru09291_t",0.275443858267041,0,0.237199068745685,0,0.238406046945308,0 -"Tfru09292_t",0,0,0,0,0,0 -"Tfru09293_t",0,0,0,0,0,0 -"Tfru09294_t",0,0.837683292136455,0.449352273089652,0,0,0 -"Tfru09295_t",9.93552419110417,11.2536861197859,11.6931971931595,16.3292176968485,18.3456742563959,18.011443286836 -"Tfru09296_t",6.8914762195328,7.50724567571899,6.92371109844582,10.6926311740604,10.3674035844478,14.7660202317275 -"Tfru09297_t",401.149549083662,285.213074628655,367.812196861704,18.9597477441348,21.4836358213215,23.6081707060405 -"Tfru09298_t",0,0,0,0.0822625521591948,0,0 -"Tfru09299_t",0,0,0,0,0,0 -"Tfru09300_t",0.114455554184533,0,0.295690937196596,0.5919539770251,0.0990651829949851,0.0837398635236754 -"Tfru09301_t",0,0,0,0.0517563096052916,0,0.036608135691708 -"Tfru09302_t",0.0631182394977066,0,0,0,0.0546309874668062,0.0461796091858585 -"Tfru09303_t",2.02109968175094,1.67637422255535,2.37864823950665,5.15678784540422,4.89812584020754,5.52051860509567 -"Tfru09304_t",12.3425160552973,11.7417469437071,10.4319548115072,9.56202513698053,8.79248419810387,11.873087433209 -"Tfru09305_t",32.6564726779255,50.6779237398985,40.1430497136371,85.3092308304441,94.2176336441634,57.7171903247693 -"Tfru09306_t",22.4411280416841,37.4117390847589,26.262485933379,48.2110023973207,56.2785233422508,43.7833302872751 -"Tfru09307_t",0,0,0.0314957405169499,0.0378314513832323,0.0949680160883575,0.0802765256765925 -"Tfru09308_t",12.4017280079479,14.7500457271089,13.5537339379891,15.683557885454,15.0135009602807,15.7656823389875 -"Tfru09309_t",0.0803158477738503,0.0644679780277099,0.27665665761925,4.4030962933519,5.76983659504826,2.17419427684128 -"Tfru09310_t",3.39593438456215,3.28450581499668,3.15175594487464,3.07826214386039,3.0743176572236,4.42485218575837 -"Tfru09311_t",0,0,0,0.0476680437889658,0,0 -"Tfru09312_t",9.1536730138381,11.6335041948188,8.18925477355335,6.62787791903018,7.92281596688706,9.18999381181313 -"Tfru09313_t",0,0.315109836527965,0.169032046652883,0,0.169892159622241,0.287219905730737 -"Tfru09314_t",3.19026747233345,5.97512069770749,2.51836353051194,12.7873298669897,23.7010315341356,19.548223140984 -"Tfru09315_t",0.561942319541455,1.57871081979563,0.483917832558086,1.16252633882655,1.70233080343891,1.64455009568904 -"Tfru09316_t",20.2462680861937,23.5363480114683,19.9401627112456,31.6542879869472,30.5794840657283,27.4123951026227 -"Tfru09317_t",5.93894675756962,7.05677647825945,6.241907027527,5.68361488990033,6.41533221511471,7.59545966126126 -"Tfru09318_t",0.108680953132532,0.087236099633874,0.0935908356629158,0,0,0.0795149544972545 -"Tfru09319_t",1.3772192913352,1.6582009430406,2.11784882808647,1.72983646962979,1.44746528502509,1.00762393157996 -"Tfru09320_t",0,0,0,0,0,0 -"Tfru09321_t",2.16521589617133,2.25937001345567,1.77135129301707,2.01569483104526,3.09221245168109,1.98018878306629 -"Tfru09322_t",0,0,0,0,0,0 -"Tfru09323_t",1.53389732869216,1.56271465278124,1.47333269877499,7.99420543635835,7.91477940262602,7.94211447194768 -"Tfru09324_t",12.7884648481126,13.2656075443248,14.9943697028522,9.2597128668418,11.6648672969669,10.0762393157996 -"Tfru09325_t",0,0,0,0,0,0 -"Tfru09326_t",11.0215986273776,12.7526028329399,10.4000122046695,16.009277578788,16.2375646768054,19.0014106790547 -"Tfru09327_t",0,0,0,0,0.10029495768044,0.847793928639692 -"Tfru09328_t",0,0,0.7575467640569,0,0,0 -"Tfru09329_t",0,0,0,0,0,0 -"Tfru09330_t",0,0,0,0,0,0 -"Tfru09331_t",0.168865078937583,0.135544733702482,0.218127786836484,0,0.292316962083695,0.0617739294737464 -"Tfru09332_t",0.125077484026969,0.5019863897046,0.430842973503328,4.0969678231226,2.5260392567158,2.89785641861334 -"Tfru09333_t",0,0,0,0,0,0 -"Tfru09334_t",39.4350812569605,35.2639839811573,42.5359611089597,38.797093754629,40.9449849937762,39.429307020554 -"Tfru09335_t",18.6546778435833,17.3190652059187,22.1080307327047,15.5699306704323,15.5894918906044,13.4977330346106 -"Tfru09336_t",17.6542002680086,16.3513975047047,13.8710822359995,9.23303645146571,7.77655429762233,11.6115099211875 -"Tfru09337_t",17.7115246292172,16.1694412571173,15.7613806099552,12.9819111752804,11.8270691299891,14.2891708770929 -"Tfru09338_t",0,0,0,0,0,0 -"Tfru09339_t",0,0,0,0,0.186925049661489,0.158007865877578 -"Tfru09340_t",0,0,0,0,0,0 -"Tfru09341_t",0,0.131968329751787,0,0.220505396109892,0.123515657555046,0.380936877710681 -"Tfru09342_t",0,0,0,0,0,0 -"Tfru09343_t",0.170926504112813,0.0685996999155489,0.220790587896543,0.353606689022521,0.147942714788035,0.750336437351508 -"Tfru09344_t",1.14743113614799,1.2722148365906,0.487652971005491,0.772727011060752,0.4032044578367,0.200651690169525 -"Tfru09345_t",0.502387635178091,1.3441894687771,0.432632188509572,0,0.0966296934462712,2.73631827798492 -"Tfru09346_t",0.270129828847098,0.92151895923532,0.348934321386337,0.0698543760669491,0.260629546018054,3.95273696632654 -"Tfru09347_t",0.137327955490719,0.440921978043218,0.118260263126169,0.426148805037767,1.51549082968299,4.64692932892516 -"Tfru09348_t",0.19100502486877,0.53660614071871,0.13707032203,0.493930525732955,1.42853373161073,5.05415611304432 -"Tfru09349_t",1.99549588530754,0.96104757743921,1.80434683529229,8.77244860489215,4.14520727705382,5.69391290553143 -"Tfru09350_t",11.2938478206899,10.894328051093,10.8347947262548,10.6574053750443,15.3487949681357,17.0333597396212 -"Tfru09351_t",7.15545795845136,8.50895962359427,6.16193795306219,10.6910249503599,19.2680218382927,23.6553227092053 -"Tfru09352_t",1.85044882756492,3.56476678503883,2.54962875656155,3.44532860989234,2.56260244293636,4.33233901859931 -"Tfru09353_t",11.4174339944578,11.5657465578092,11.7212940410145,11.6552751958257,11.5651693040413,11.7823230409021 -"Tfru09354_t",4.01854690332736,3.31690074316395,3.42793329268076,2.58814246055992,2.62504853134726,2.38537687051827 -"Tfru09355_t",27.2277398400536,24.0967372498366,33.8682160623167,18.2944934373231,14.7039075768346,10.6414577261734 -"Tfru09356_t",3.7176124757438,4.09154022228967,3.82851416615982,2.61647978677043,3.21772030058255,5.88853219139567 -"Tfru09357_t",0,0,0,0,0,0 -"Tfru09358_t",0,0,0,0,0,0 -"Tfru09359_t",0.0767919348916339,0.493115210361862,0.264518157102135,0.0794322155642456,0,0.0561837841191752 -"Tfru09360_t",0.258442225412491,0.412977348891634,0.439974492247291,1.87985624402795,2.20311988311509,1.8824673211657 -"Tfru09361_t",0,0,0,0,0,0 -"Tfru09362_t",0,0,0,0,0,0 -"Tfru09363_t",0,0,0,0,0,0 -"Tfru09364_t",0,0,0,0,0,0 -"Tfru09365_t",0,0,0,0,0,0 -"Tfru09366_t",101.906752827237,88.6608770169038,130.752365900437,36.3159347337906,16.4765427424142,10.5082734574269 -"Tfru09367_t",0,0,0,0,0,0 -"Tfru09368_t",3.31619908308345,1.95202251364955,2.47498501993853,4.11626102339769,4.01839665969658,3.72025362107023 -"Tfru09369_t",0.803927050444474,0.967945048090688,0.692303502080708,0.831567883514686,1.04373939212898,0.882273586024561 -"Tfru09370_t",3.2983288801723,5.061406265709,3.84284403522166,4.31483866578896,3.94636337524364,4.47147663863949 -"Tfru09371_t",24.0670296444894,28.6172436771367,24.9090676862962,77.3121386363742,30.2758711218624,15.5303176073766 -"Tfru09372_t",5.65454392847502,3.89039406480803,4.86942262010978,4.17782854110873,4.19502898884038,6.50111133601217 -"Tfru09373_t",0,0.552733647331449,0.592997671490055,1.42457120938451,0,2.01524786188838 -"Tfru09374_t",1.09522730453574,1.24110745430033,1.10959687066616,0.599761958930645,0.61338365605944,0.565629384905316 -"Tfru09375_t",9.04473211606153,9.12803240799654,10.190938771837,7.52895680311051,10.5999356550477,11.4235651465134 -"Tfru09376_t",0,0,0,0.237753334684773,0.89524568928163,0.420417645871256 -"Tfru09377_t",0,0,0,0,0,0 -"Tfru09378_t",20.573969821579,18.1657605351877,21.5560704719293,1.77344579239356,4.15507681818966,2.50877795209705 -"Tfru09379_t",0.252472957990826,0.253318951979657,0.271772035940774,0.130576775097347,0.546309874668062,0.692694137787878 -"Tfru09380_t",0,0,0,0,0,0 -"Tfru09381_t",10.5971595595519,13.0949710987339,11.647360081064,8.65382677118187,11.6462837787847,14.2313292046136 -"Tfru09382_t",0.617723358613584,0.743751893569683,1.06390758775638,1.59740521741332,1.3366515499691,1.3558469079348 -"Tfru09383_t",11.7401070987322,12.8503049487902,14.968079165676,26.6531844043759,29.0327509074958,17.9598450672356 -"Tfru09384_t",17.0773141166085,17.6743066016222,18.3692398696165,21.2879520619335,21.3322819519119,15.1031047972484 -"Tfru09385_t",16.1847200532878,15.5358224070908,15.1588342295219,16.9137769514874,14.5860938950352,15.3204866101498 -"Tfru09386_t",1.15226202554354,0.798775932246077,0.721653027106573,0.650116038608114,0.770657951004628,0.498158215550443 -"Tfru09387_t",32.1570820177789,71.3052852093474,39.4612996186003,96.8776584294609,136.381947238187,122.047846066731 -"Tfru09388_t",0,0.182252716262121,0,0.469723480147485,0.390934497706917,0.166121783314534 -"Tfru09389_t",0.255350689274916,0,0,0,0.22101472437179,0 -"Tfru09390_t",0,0,0,0,0,0 -"Tfru09391_t",366.659292515958,365.981123278895,364.066502435758,0.624049147772242,0.783273008814927,2.53805453502098 -"Tfru09392_t",49.2248301349479,62.1652624317586,51.9984833467634,26.4769914761665,39.7653836078872,53.7819273430851 -"Tfru09393_t",0,0,0,0,0,0 -"Tfru09394_t",0,0,0,0,0,0 -"Tfru09395_t",0.224626675859485,0,0,0,0,0 -"Tfru09396_t",0,0,0,0,0,0 -"Tfru09397_t",18.0622310058612,12.8123659532271,20.9802576305558,1.30348265740927,0.727138443183191,1.22930119652755 -"Tfru09398_t",4.52363567230871,5.05751287627384,5.56505507441799,6.26674354523687,7.34130158983029,8.62874878331841 -"Tfru09399_t",1.01453902606734,1.10331406728218,0.817306491256557,1.69261479990815,1.24636118036854,1.41271465904024 -"Tfru09400_t",8.45742048034706,5.88346016926711,8.8611363517159,23.4743521077061,29.2807426785177,41.8704937743445 -"Tfru09401_t",18.3896730255609,19.6459817766018,16.5198878980755,42.4230576164697,32.0627974946919,47.0425497253851 -"Tfru09402_t",4.3414247288962,3.42364123386323,3.41067745268047,3.62406782960571,3.16433774005378,3.67787302678235 -"Tfru09403_t",0,0,0,0,0,0 -"Tfru09404_t",0,0,0,0,0,0 -"Tfru09405_t",89.1253997114064,76.6402935248386,85.8271132233579,101.6492010821,74.7262200835862,58.743359760265 -"Tfru09406_t",9.63537304799959,12.6374634589551,11.6056845704879,13.6145864766885,13.0274428726224,13.9148786113689 -"Tfru09407_t",0.512258394947851,0,0.441132414435573,1.05974199789372,0,0.37478695016084 -"Tfru09408_t",27.3889629599703,29.2775562534557,30.1629474096198,31.0547592360829,26.8972841052089,19.9424253668655 -"Tfru09409_t",2.1384459541823,0.490425491032615,2.36767797711602,1.26398318294232,0,1.34105585075733 -"Tfru09410_t",1.86172580102931,1.40227115504962,2.70780642228581,1.44670234648595,1.20854034878093,0.511291842016217 -"Tfru09411_t",2.76917223590894,3.38138355618037,3.92816048605762,2.82663559026834,2.56429500250068,2.82558071252196 -"Tfru09412_t",7.4140962881392,5.98979557457456,10.0745037135166,2.88832833351433,3.83362388383115,4.75517654817249 -"Tfru09413_t",0.785143708144369,1.98069040103293,0.676128186611532,1.74029727290957,1.65038097918748,2.46188490626346 -"Tfru09414_t",4.03249808404251,4.31574432003072,1.73629718279345,0.695190750448126,2.90855377202088,2.45860239245335 -"Tfru09415_t",3.82735201692243,5.60665816200441,3.46072900983169,5.17627808558397,8.11612385329757,7.35060510452125 -"Tfru09416_t",2.50002805664611,4.05131108187386,4.42767155555884,4.3912947470273,5.26675233973226,7.02183631598477 -"Tfru09417_t",8.50020675596433,5.45836128299369,6.58797413531439,3.22390314367666,5.64053429787973,6.01175964575026 -"Tfru09418_t",17.1427322123555,17.2442776073518,21.2447524325558,15.5156209057218,17.2629990108239,11.2558644547977 -"Tfru09419_t",6.56684885814549,5.2710826024058,6.5325646493505,5.56293137708358,7.20278646549387,10.3132074776065 -"Tfru09420_t",1.32966063954809,0.485133129618594,0.936850998139432,1.75048030731221,1.36011507358007,1.41502296003172 -"Tfru09421_t",0,0.184749328813656,0,0.476158048368683,0.597648035493033,0.336794848363713 -"Tfru09422_t",11.4586400416769,11.7465176311646,11.820081528242,20.7100016307191,20.1438115158787,13.2820313599625 -"Tfru09423_t",0,0,0,0,0.0777688174527476,0.0657380318998692 -"Tfru09424_t",2.47957542122333,2.55896645883146,3.02499655661442,1.587751187287,1.37967237989783,1.74935693813654 -"Tfru09425_t",0.473869973730969,0.597718416750065,0.991037205033341,5.6718826349799,9.02331347705168,5.25003734214024 -"Tfru09426_t",1.12299039605372,1.97450110170674,2.07228339817602,3.31886099913245,4.30451147142182,8.05970867233215 -"Tfru09427_t",0,0,0,0,0,0 -"Tfru09428_t",54.6573535621465,53.4187102995992,49.2473849657833,72.7646945300757,66.8003690273714,67.3894029421732 -"Tfru09429_t",0,0,0,0.549992682451168,0,0 -"Tfru09430_t",55.0999232266173,66.3414644499079,56.9685901039105,97.8051764533811,96.4120810293501,86.3496994321986 -"Tfru09431_t",25.5515431655094,26.5694224836506,23.6707181275936,17.6200420663619,13.3286909812998,20.393936900918 -"Tfru09432_t",13.158143133151,13.3259248324135,14.1893531317343,12.2426547933467,13.4131049380298,12.5646807379888 -"Tfru09433_t",0,0,0.457884278274898,0,0,0 -"Tfru09434_t",8.67246600241104,9.72445344216562,5.64399202582818,5.40977829972852,4.29750852945148,2.9545852241206 -"Tfru09435_t",0,0,0,0,0,0 -"Tfru09436_t",6.77627237019924,4.94471164194204,6.43220389444646,9.6377269505971,8.19780279665742,7.43665251794854 -"Tfru09437_t",7.30878096609982,7.91993316535875,7.93739851358506,6.00605832155713,7.48576550981245,9.47672986206597 -"Tfru09438_t",0.725269439753503,0.485133129618594,1.24913466418591,2.00054892264252,0.52312118214618,0.530633610011894 -"Tfru09439_t",0,0,0,0,0,0 -"Tfru09440_t",0,0,0,0,0,0 -"Tfru09441_t",0.85724874256579,0.516072742476923,0.369110795752214,0,1.11296700487223,0.940791732036394 -"Tfru09442_t",14.4696535827429,14.2147748364852,12.6465518914795,13.6268109857696,13.0847534763042,12.4826214043286 -"Tfru09443_t",0.123544671722717,0.396667676570498,0.106390758775638,0.511169669572263,1.60398185996292,1.3558469079348 -"Tfru09444_t",0.182235090610515,0.219414875326414,0.313864277515982,0.329876305201189,1.22241278409322,0.966641396401819 -"Tfru09445_t",0,0.216827990408311,0,0,0,0 -"Tfru09446_t",3.64931953396333,3.2953930053549,2.71705630103937,2.90973504218057,2.30315343994676,3.58777951022748 -"Tfru09447_t",0.204073789728212,0.218408113415335,0.234318108396547,0.0703634362973965,0.353265640412886,0.149307837634926 -"Tfru09448_t",328.366140437236,364.499377616724,355.239097009526,347.162324592391,212.464538464989,111.801063969906 -"Tfru09449_t",9.68230512183926,9.29109817825004,8.40062906380948,4.81934662473676,4.09566714097984,3.78164579521041 -"Tfru09450_t",10.9442798523598,9.7887345992397,12.0276996769679,6.46889656282516,6.58574520500905,4.11800648960843 -"Tfru09451_t",15.9585518968828,15.4630425344239,15.4115025873638,10.729707989529,11.4447841803596,6.75531865120298 -"Tfru09452_t",0.569561876416593,0.685764457799843,0,0.147286175978449,0,0 -"Tfru09453_t",7.55553709721797,6.67837174954076,5.15095301052929,3.95417651248351,3.26978743187302,3.84979229105257 -"Tfru09454_t",9.19821643478909,2.95329219051173,9.50527655042348,13.9545588627136,11.6766757298971,8.075701291021 -"Tfru09455_t",4.2793489508244,5.15242598655244,4.55797406229141,5.59134651971805,5.77444894388088,3.79007071315466 -"Tfru09456_t",0,0,0,0,0,0 -"Tfru09457_t",2.45423572590745,3.78839915825756,2.19475767541653,3.51500941323848,7.92499202121005,5.80119665777048 -"Tfru09458_t",0.690496247436554,0.554247986440969,0.594622323020005,0,0,0 -"Tfru09459_t",17.314523123875,15.8923694818217,15.7127941334076,22.1664333607491,25.0667873666664,26.1311714603824 -"Tfru09460_t",0,0,0,0,0,0 -"Tfru09461_t",14.0610588240346,15.2868327051215,9.80958860575375,9.38949371862609,4.85272477971833,13.0873697299808 -"Tfru09462_t",20.0193860684603,19.7962449038082,16.6934844455208,12.7028210245865,10.4316146334043,16.5775591739521 -"Tfru09463_t",17.8378197254412,23.5555394237371,15.3610766780141,18.4511243742832,15.9372809464781,13.8927874950008 -"Tfru09464_t",16.8886839901363,19.2046451143732,18.7390320998121,17.3573721562231,21.1769701236342,15.0494347513038 -"Tfru09465_t",12.9246733494467,9.43125944292996,7.08279736743736,10.3306317836578,14.2376758105725,15.4737213548842 -"Tfru09466_t",7.28750665956345,6.36430026530874,6.87811456456519,6.06060638767669,6.18143367730332,5.35313324650271 -"Tfru09467_t",5.43053502077876,4.96924342077327,3.69444832671447,3.08948701389829,2.91419414850406,4.01290952971179 -"Tfru09468_t",0,0,0,0,0,0 -"Tfru09469_t",3.40122982880354,3.13961663034544,2.92897635495684,3.69408040561331,4.71020853883848,3.11057995072762 -"Tfru09470_t",0,1.15979001257713,0.355507203771174,0.854042691177245,2.14389712977845,1.2081584241057 -"Tfru09471_t",4.53918456173291,4.98136909158814,4.36700607148292,2.86116919313136,2.70106302237741,3.917781356599 -"Tfru09472_t",4.65204040753943,5.22774403714734,5.09012203549372,4.86859971931367,3.36331136586362,4.56483180469515 -"Tfru09473_t",4.9623433866662,3.98317708502987,6.13915393400853,32.2436641821705,47.1248624991436,48.7322812100981 -"Tfru09474_t",0.0803158477738503,0.19340393408313,0,8.55696072104237,7.09064256258943,3.99581650878937 -"Tfru09475_t",0,0,0,0,0,0 -"Tfru09476_t",0,0,0,0,0,0 -"Tfru09477_t",85.7852438863372,99.9630479301075,73.6194081499592,66.7040420927748,75.5302256123385,70.7713893071321 -"Tfru09478_t",1.40442879101204,2.04965060841898,1.48429660419507,7.19754861487388,10.8297214942177,11.5363752105739 -"Tfru09479_t",0.855502818446512,0.82403468452527,0.884061702249701,6.01743521410932,5.47945466349859,5.38288711310436 -"Tfru09480_t",0,0.940932628143971,1.00947510652233,2.02090334482057,1.01461178118585,0.857651997577364 -"Tfru09481_t",0.762529430806033,0.529564429276595,0.821158638594337,0.678769664727536,0.605985905951146,0.565019885025183 -"Tfru09482_t",0,0,0,0,0,0 -"Tfru09483_t",0,0,0,0,0,0 -"Tfru09484_t",0.379793746706363,0.853588671101071,0.850356516796239,27.3424933561438,34.0558511364279,15.6163488347307 -"Tfru09485_t",0,0,0,0,0,0 -"Tfru09486_t",41.1058649501374,45.9664928052794,42.0244458058368,16.598105804687,17.8770560785019,22.0706528720894 -"Tfru09487_t",24.6898644087416,24.686762196575,25.8249252423104,76.1901669639428,53.7883065569741,39.6856477514508 -"Tfru09488_t",1.8710551619476,1.35167381993956,1.61126316185822,0.580615883033082,0.971677206926313,1.23203906110779 -"Tfru09489_t",0,0,0,0,0,0 -"Tfru09490_t",17.182141149297,17.414496111832,21.0695817473488,17.6090965342754,20.6285269932272,16.510407210667 -"Tfru09491_t",0,0,0,0,0,0 -"Tfru09492_t",3.70861258586402,3.7210395165718,3.1936796748346,3.46316667613335,3.52200717421656,3.20326798604666 -"Tfru09493_t",0.125764037083005,0,0.216603940022257,0,0,0 -"Tfru09494_t",3.64715707540715,3.23034754572381,2.05773743021144,2.73184988079787,1.19738366392442,2.39235262797279 -"Tfru09495_t",1.86329668827704,2.53607203053269,1.32552420769647,1.17317629082159,0.981671958010093,1.36325590743171 -"Tfru09496_t",2.08565980068142,2.20983680790515,0.790270978790241,0.776653023282583,1.5885844836177,1.28179370045078 -"Tfru09497_t",1.72409355314538,3.27102822843582,3.37433376713778,1.78337179496293,2.30622267427504,2.29347238158126 -"Tfru09498_t",0.149484656176953,0.41995955081752,0.514916127882092,0.54118497045462,0.776304387740061,0.164052650782147 -"Tfru09499_t",20.2072042387821,23.7432197808011,16.290744639545,29.5295968788726,23.1463721422694,27.1779998413461 -"Tfru09500_t",17.4228910110034,14.0653913921005,13.192961314681,11.9110453398543,11.5267476690542,13.8461219394343 -"Tfru09501_t",4.32643754318753,3.3172515919193,3.114035429805,2.53816761371008,2.40330154165082,1.70080104054543 -"Tfru09502_t",3.76366487936084,3.66838267292396,2.72019892037551,2.08557225185483,0.698052905455863,0.786752765777635 -"Tfru09503_t",33.1500405638684,28.1710627136592,29.8879984884766,14.2930144673449,20.0454381634285,23.2570496640348 -"Tfru09504_t",10.0239654102295,10.0028190274788,8.48535386144009,8.69341112152015,8.74985991898604,10.4645262163821 -"Tfru09505_t",6.44463164274117,6.46622650847798,4.3605637021467,5.23773853205551,3.5858882129582,7.24108923981984 -"Tfru09506_t",13.4796942755784,11.2239522331865,15.3650355483431,18.7451567243943,15.636865322781,12.4403316825691 -"Tfru09507_t",96.7144925552105,62.8305353912518,97.8538011720187,30.2058464760632,31.8039550103228,33.9195473234565 -"Tfru09508_t",0.237989735896452,0.191029759254914,0.409890742025121,0,0.411976455061298,0 -"Tfru09509_t",4.51080403827378,4.03485007740073,3.96036382762528,7.35486933822596,7.94247670393441,6.33821749960101 -"Tfru09510_t",4.1924564223755,5.8243910283384,5.83209226608872,8.58980893878149,8.82754443979593,10.3523205369763 -"Tfru09511_t",0,0.0795206427087082,0,0,0,0 -"Tfru09512_t",0.561942319541455,0,0.241958916279043,2.61568426235974,1.21595057388493,2.05568761961129 -"Tfru09513_t",60.6260450927971,56.0323763337006,61.1582341167998,116.462368015948,67.3165280390212,25.7266126695973 -"Tfru09514_t",2.77929066010803,4.96878458019886,3.69887871111692,8.75522185929033,8.41949776317378,7.85643621840918 -"Tfru09515_t",32.5029576092492,44.0527548631041,37.0140872391522,18.7392855610635,13.3744280247225,15.2038308661442 -"Tfru09516_t",32.9183517145263,32.4781779265477,32.9246829810975,19.6852482955686,18.1784610795798,12.5438897604852 -"Tfru09517_t",0.304753482846847,0.244619727993898,0.262439114754899,0.945694793767306,0.70339873584831,1.56078144661902 -"Tfru09518_t",39.9465399455475,39.8694445720858,44.207079829944,49.5658681684303,46.1759449320712,37.9429774944897 -"Tfru09519_t",3.32319528368067,2.34736884552794,1.83153711309959,4.12494511838376,4.25698139205349,5.05725175786652 -"Tfru09520_t",3.3604150708579,5.73184792644369,4.70247153788321,3.04145953395496,6.18067676705712,7.06848188003344 -"Tfru09521_t",14.9077786665811,16.7796513484558,17.1332416066972,10.492789014502,11.2539105282522,11.1530995815709 -"Tfru09522_t",4.20051883857237,4.58547834115495,4.19605152611117,3.99734681605509,3.63569221591595,4.4254843074992 -"Tfru09523_t",8.70839271411345,8.32639314996304,8.0506665634492,9.67014573078015,7.75909924128405,7.12095205305595 -"Tfru09524_t",14.8565718922139,12.918839908517,14.92606350486,14.5441222826718,13.7773599761026,10.6755103908972 -"Tfru09525_t",0,0,0,0.367696095178919,0.256395783915088,0.866926090640024 -"Tfru09526_t",0,0,0,0,0,0 -"Tfru09527_t",0,0,0,0.146541051985303,0,0.207302056750009 -"Tfru09528_t",11.4530521264959,10.8366104787386,11.2954088144128,3.17680464867453,4.09811460743002,4.49401808326905 -"Tfru09529_t",0.0757191318354641,0.0607782830256733,0.260822770499987,1.72309559639501,1.14690606180314,0.553988822229632 -"Tfru09530_t",0,0,0,0,0,0 -"Tfru09531_t",0.0831374337174146,0,0.0715939791859811,0.214989717534103,0.0719582823536062,0.152065957017263 -"Tfru09532_t",0,0,0,0,0,0 -"Tfru09533_t",0,0,0.0377587244088903,0.408188723614594,0.151803432814862,0.0641597701736719 -"Tfru09534_t",0,0,0,0.0439104819743732,0,0.06211729138593 -"Tfru09535_t",0.77627658207703,1.10773724873897,0.742769157776529,56.1184525332259,60.0225162545467,39.8197666842344 -"Tfru09536_t",17.1622876269152,15.3262727730074,13.9026954562243,12.9464022417844,12.1434492220278,14.4758475527091 -"Tfru09537_t",3.06381698921307,2.72792603807599,2.97098557757773,2.98273690121234,3.09752508741843,3.27763420465514 -"Tfru09538_t",1.52054980581805,5.1871926936142,4.58298653187364,4.32528181945761,2.96119727993155,4.44995908245269 -"Tfru09539_t",7.28527486064896,7.27017475964365,6.78241087194693,6.17796467834602,6.70330752309504,5.61829062475484 -"Tfru09540_t",0,0.0978715602568717,0.105001039139962,0,0.105535332827749,0.0892090853793581 -"Tfru09541_t",4.81157753523891,4.57287254934204,5.05647494766144,6.33875909764966,5.81831759418528,5.51489303947668 -"Tfru09542_t",0.272760963543661,0,0.234888688205954,0.56427820667068,0,0 -"Tfru09543_t",0,0,0,0,0,0 -"Tfru09544_t",27.5787855949087,28.3328999669935,23.8786038429532,25.6588022362455,30.5514903424873,30.0471478901472 -"Tfru09545_t",1328.17762536105,1092.7056608767,1287.16016123305,134.315270332672,152.806730826868,158.876373024382 -"Tfru09546_t",1.67823314349542,1.90176747403952,2.89042813500911,0,0,0.144453724621334 -"Tfru09547_t",0,0,0,0.310722921909242,0.173334551414348,0 -"Tfru09548_t",266.270177224757,317.737532113927,280.516504937612,235.997772740853,231.319139682788,246.821883005532 -"Tfru09549_t",12.9865561903879,10.2395609533314,10.9854643945077,5.70608003243456,3.77992624363355,4.96092822128083 -"Tfru09550_t",10.4779089069066,9.61190271957019,10.1509579197068,4.06431118123158,4.37254743116841,8.76116665676653 -"Tfru09551_t",18.5863663661596,19.0962136290903,18.5665994970497,8.45917940742002,6.43485341849581,14.6863415892022 -"Tfru09552_t",11.7781990025086,14.0691831065337,13.4115978437967,22.0567165063274,21.1135880180102,29.7319359160153 -"Tfru09553_t",0.504062260628685,0.640618297661354,1.22987717144638,0.0434494219136423,0.0363569221591595,0.153662649565944 -"Tfru09554_t",0,0,0,0,0,0 -"Tfru09555_t",0.0875564114345466,0.0702798384752315,0.188498478289301,0.226416997986672,0.49258987813348,0.192178404876637 -"Tfru09556_t",19.7027593731082,27.0173326289547,25.4506101774686,93.9752969076824,59.3316547287913,29.5312583856375 -"Tfru09557_t",430.680383744877,508.97321148755,456.177226524129,476.949508920144,350.455284662046,196.886732687455 -"Tfru09558_t",52.8203679858235,48.5153481296816,53.6428119443899,4.96695017156477,3.08852721016457,4.19006700442008 -"Tfru09559_t",3.58580876463495,3.2894392691212,2.64679448661344,2.11948399578743,0.886754199003891,1.49914780064336 -"Tfru09560_t",4.90124349441444,6.57737924960561,4.02287025890015,21.5464772297369,21.0783978971973,33.0577805811876 -"Tfru09561_t",0,0,0,0,0,0 -"Tfru09562_t",0,0,0,0,0,0 -"Tfru09563_t",74.1544107815011,65.5498875584096,68.6071803657648,69.1792471809389,59.4100543662244,43.0083728673397 -"Tfru09564_t",8.77614719432138,3.74946194702694,5.668198470911,1.53738476863772,1.47020409742178,2.01949227736203 -"Tfru09565_t",0.0417546604231846,0.167578292785747,0.0359571152919652,0.345522241857991,0.144560326676579,0.305492345061519 -"Tfru09566_t",38.6782729862416,50.8222161632351,35.0929267893059,35.7613443273045,34.2717800486406,37.8951077962117 -"Tfru09567_t",18.1086223152882,23.0430923980756,19.51544256695,31.5671577446478,32.8124905615836,35.9064836126548 -"Tfru09568_t",7.52820259380503,10.173420480662,7.00232524458515,9.50599324538958,10.4821256095239,13.3523714835216 -"Tfru09569_t",23.4484041785899,26.2931679739086,23.3427619404484,26.3480456989039,26.9026702421189,30.7879614669634 -"Tfru09570_t",0.871948856382351,0.760757051184393,0.685586658536151,6.58799899051616,5.15165774276899,5.74154665345676 -"Tfru09571_t",2.76957286059717,4.26090828404023,2.1862716363785,3.93909594272032,5.6932542941541,4.39036141616984 -"Tfru09572_t",0,0.170717734220214,0.183153711309959,0.219997072980468,0.184085681818529,0.466823239187679 -"Tfru09573_t",0.166137857820924,0.0444518820151513,0.28613994449875,0.400983458662487,0.287595956433694,0.486210097505954 -"Tfru09574_t",19.8971944985007,24.7330125309006,22.6080362398231,36.5889868746462,47.3596749178525,41.5495716918441 -"Tfru09575_t",0,0.285735190749935,0,0.736430879892243,0,0.520890337511676 -"Tfru09576_t",0,0,0,0,0,0 -"Tfru09577_t",0,0,0,0,0,0 -"Tfru09578_t",156.846959588072,130.548608234852,167.306754038771,167.668441893833,125.492824523422,112.029911998817 -"Tfru09579_t",8.1344031071805,8.89088837986932,7.12557870410097,7.49096892902271,10.2254195995082,10.070199611914 -"Tfru09580_t",16.0977967466247,16.5555311718346,12.5630285212909,14.0495136726748,8.70824482854121,16.9304955210382 -"Tfru09581_t",4.19677172096437,7.15841846299836,5.42108844002181,14.3410223979016,18.551435749366,23.7416332781637 -"Tfru09582_t",5.64775641262245,7.93335351878534,4.2556303442534,9.49315099123525,9.165610613774,12.3963145671058 -"Tfru09583_t",73.1419014548616,84.5276627573041,81.7051267744096,106.344738949474,104.240126470318,78.1208015625465 -"Tfru09584_t",0.175387007873585,0.140779759951951,0,1.81417210495375,3.6432823875567,1.53983448416813 -"Tfru09585_t",4.01465517314881,3.16281041230105,3.71331993461165,2.53775384628353,3.9896091572883,3.2636314952059 -"Tfru09586_t",3.58922838008854,7.02244778548037,4.82948704722523,1.50825763652163,2.621193319886,1.06681679271417 -"Tfru09587_t",0,0.351826982697311,0.377455909395307,0,0.126458859684033,0.320687268659362 -"Tfru09588_t",1.17048165389432,1.24259492390848,1.62574642623447,3.51500941323848,3.56216136211091,4.2818356283544 -"Tfru09589_t",46.4346454548344,64.4373480997607,50.787721221214,49.1637416202943,35.1076914214633,39.5080508955094 -"Tfru09590_t",230.397556896802,195.35457462002,227.283536859063,207.736721080676,205.658469552671,187.296963419434 -"Tfru09591_t",0.0505629712738173,0,0.021771205527365,0.104602881525471,0.0875279498264448,0.0554905746250777 -"Tfru09592_t",12.4201387585695,16.9143841487785,17.1851119324635,14.2906736526598,15.2191767177877,16.3362285252831 -"Tfru09593_t",2.76905711146112,3.23982202874898,2.66749567254226,1.84477992482504,1.78737941341119,2.57535166870298 -"Tfru09594_t",11.6455062231607,13.3887346522827,10.2475166685106,14.3604021578987,19.1563984212775,15.8127423887473 -"Tfru09595_t",12.3433537085485,11.9803153590895,10.3041124691248,9.44552650296572,12.5913778392292,14.3756361812817 -"Tfru09596_t",3.44189670719141,4.79251498866529,3.81085293139493,5.37668431707279,4.80300476684549,4.62529714412541 -"Tfru09597_t",9.17548203215207,9.45960992222229,9.85873484125352,6.87876619474498,7.21309678107574,8.99188249965045 -"Tfru09598_t",0,0.169430917128102,0.36354631139414,0.436677607172285,0.182698101302309,0.308869647368732 -"Tfru09599_t",23.124989018303,23.996795957687,19.4207656626775,19.0714139583749,15.8681172969921,17.0715107267311 -"Tfru09600_t",215.721560692785,230.645445973347,244.136136425696,83.5112617797803,80.7246915737271,86.6761521619428 -"Tfru09601_t",0,0,0,0,0,0 -"Tfru09602_t",0.255609665633207,0.615518808471462,0.366864685433235,0.26439810495117,0.0737462924120883,0 -"Tfru09603_t",4.15150798046961,5.64645683738649,4.41919610233467,12.2863155994651,15.0717783007085,17.8868808279919 -"Tfru09604_t",0.0892777649005817,0,0,0.184694673384239,0.309091793064055,0.522550986834242 -"Tfru09605_t",5.30178458783579,5.77926416195427,5.35476666685331,5.24710587971528,4.92879194054831,4.5973087209445 -"Tfru09606_t",3.22387450364471,3.80550254046188,5.71580148726904,6.47327730541849,5.74488611995749,7.35360760902487 -"Tfru09607_t",8.0112988158339,7.90779504709484,8.20415335713168,8.62269455502695,6.37183171861559,7.92075513226517 -"Tfru09608_t",2.68118223738662,2.86951085178658,3.07854110499719,4.62227892698323,4.25453344415697,2.61553446069693 -"Tfru09609_t",2.93486032389336,4.56427654045092,4.10696204181939,2.84603200307701,3.65156860113829,3.8918924344213 -"Tfru09610_t",5.45142653441606,5.62597029110416,5.28132109611626,7.24996147805851,6.65630788081947,6.19636176696971 -"Tfru09611_t",0.111198380901982,0.0446283951138217,0.04787936199036,1.55279204721157,1.25119785061303,0.447462381264166 -"Tfru09612_t",5.88938723758601,7.50806035240653,8.65165263115704,12.3629282970776,12.8935888894339,11.1524232262294 -"Tfru09613_t",0,0,0.0446854329632081,0.697767121528536,0.0898256260881026,0.113894490104468 -"Tfru09614_t",0.421456739656091,1.18403311484672,1.20979458139522,0.799236857943253,1.8239258608274,2.05568761961129 -"Tfru09615_t",3.41902696162868,2.35233157035993,2.94430239402347,4.54703252584629,5.70719126917039,5.71767998384909 -"Tfru09616_t",1.88156736258973,1.7613875082591,2.24937602612591,2.07209462954453,1.2739553047665,2.27828061033287 -"Tfru09617_t",11.8200646387734,11.5264246947636,11.1042261717457,13.4390072430568,14.2891159183673,13.2936059624491 -"Tfru09618_t",0.998538551166174,0.908375265680458,0.630588649478425,0.550864303184055,0.460943545599487,0.487044848069554 -"Tfru09619_t",0.0831785908628192,0,0,0.0860384592349353,0.0719939052656624,0 -"Tfru09620_t",85.7485224977533,96.7322003002262,97.2925145768939,157.916174817169,144.675476454035,140.945740636349 -"Tfru09621_t",6.60081531774638,5.7800147157326,5.68430625457531,11.793414519399,6.75199982954776,11.8539758236402 -"Tfru09622_t",4.6740765992899,4.34417894692141,4.13101452815508,7.50663511831595,5.74897158592859,5.84952985170505 -"Tfru09623_t",4.13436893560273,6.76989912572089,3.4891142543349,2.99356253342024,6.3696182522937,8.71158328247873 -"Tfru09624_t",1.20641533222705,1.76066592733641,1.13335325275353,1.02100469248768,2.27824055305438,2.40724777387902 -"Tfru09625_t",0,0,0,0,0,0.316830205290607 -"Tfru09626_t",0,0,0,0,0,0 -"Tfru09627_t",5.75542435600545,4.58200407432936,4.86176175999182,5.07734517788689,3.75989077397319,4.72719892635199 -"Tfru09628_t",16.6460189268503,13.9877549106439,19.0383463072194,16.6802734281475,15.5332980122725,11.9885410806867 -"Tfru09629_t",3.76450355357025,3.74843079504509,3.81630832953565,2.36593562320457,1.48479772856465,2.68452048022183 -"Tfru09630_t",0.0449734351024879,0.144397227017098,0.193644850019898,1.53515088131713,1.82952392021467,1.9413482493342 -"Tfru09631_t",21.0025941928619,19.7019577911069,21.1371519543406,15.966353835736,15.9882850458955,13.3297720105397 -"Tfru09632_t",0,0.03162922374155,0,1.14126061311631,1.90993212093146,0.836063196512642 -"Tfru09633_t",73.1469659820361,64.4438422329803,81.7007654459814,126.067534517908,98.1457800158592,49.3537179886678 -"Tfru09634_t",11.6921658393252,14.5990062407905,19.7645512694536,69.4294886248924,109.070766477479,115.959855136362 -"Tfru09635_t",1.39856539975429,1.39357415649337,1.16284732898286,6.53487287105298,5.38466470554716,5.36319695385156 -"Tfru09636_t",0,0,0,0,0,0 -"Tfru09637_t",0.431560154647846,0.461873322034141,0.247759301258335,0.297598780230427,0.871570051760674,0.315745170340981 -"Tfru09638_t",8.62158997893136,7.72507933368797,9.32379155666213,2.28135389522704,5.72686602029721,8.80167921141447 -"Tfru09639_t",8.56905843068764,8.22688761207212,9.23131335744456,9.62839189606314,11.0525043363845,13.0920577430184 -"Tfru09640_t",5.33553201204343,6.0736875188508,5.26302552649923,12.9445159973669,14.1061499370411,15.9695594237125 -"Tfru09641_t",8.95266663118762,9.29116107876644,8.72198082707492,7.95091681950398,6.26168734711036,6.8809108955256 -"Tfru09642_t",6.39814127729567,7.81514130991543,7.42621587745182,2.80550903084777,3.61161478402247,4.12141543537797 -"Tfru09643_t",0,0,0,0,0,0 -"Tfru09644_t",3.57842365015995,7.37968239700945,4.07715044115289,16.5141970576098,14.9144385790523,10.3515860913362 -"Tfru09645_t",57.9381908768603,53.8139301120764,56.664871127202,32.9616304172459,35.4614314655842,26.9477355889045 -"Tfru09646_t",1.69527666130724,1.73875629528099,1.8248639117346,1.60743377034775,1.30428420301918,0.620163159683183 -"Tfru09647_t",0,0,0,0,0,0 -"Tfru09648_t",30.330860525674,29.4602882349463,27.2413963201823,19.624357268483,20.3147716256414,23.8741194334101 -"Tfru09649_t",18.0945426892348,24.120446025306,20.8689565290675,14.0375055413306,17.8987924475862,18.9123261004239 -"Tfru09650_t",11.3912375283319,17.8474596068421,9.99823454047978,43.1661792675299,36.4043236222093,45.1972539010131 -"Tfru09651_t",23.919038341521,15.4942119419645,22.260220297672,28.4743464289204,30.29138169904,48.4474847182937 -"Tfru09652_t",0,0,0,0,0,0 -"Tfru09653_t",0,0,0,0,0,0 -"Tfru09654_t",56.7604654695816,47.7919641011283,57.0084241823379,39.8470698422567,35.9338597922166,37.7507221988189 -"Tfru09655_t",6.28114934005831,5.67197676393599,1.35225630323365,5.68497079726468,8.83439184311041,5.16995803556912 -"Tfru09656_t",314.810623825614,318.659959849283,293.9044711177,6.37573038950186,11.6579261271218,19.3748558148365 -"Tfru09657_t",3.55243838815913,3.1968505621141,3.80089041960434,3.42520990268129,3.34377532266723,3.99298563835592 -"Tfru09658_t",0,0,0,0.140159425527878,0.117280394061805,0 -"Tfru09659_t",1.50916844499606,2.42276065929286,0.433207880044515,1.56105707474164,0.870824482854121,1.84027125228676 -"Tfru09660_t",0,0,0,0,0,0 -"Tfru09661_t",0,0,0,0,0,0 -"Tfru09662_t",0,0,0.0773750972913731,0.278819819766689,0.622150539621981,0.262952127599477 -"Tfru09663_t",12.623320862031,14.8493469596987,13.119689424146,15.7588576888858,18.4610278321121,17.9936574103126 -"Tfru09664_t",0.459351999357854,0.163872430174932,0.307667078840849,3.11484312625139,3.71079156910012,2.12849842655135 -"Tfru09665_t",2.60313843517161,2.08948888785023,2.95496586345857,0.367178213354724,1.63862184379311,1.47169861556116 -"Tfru09666_t",0.118826558375456,0,0,0,0,0.0869378498251453 -"Tfru09667_t",3.23116833736336,4.18965563714993,3.63868985635023,2.82806888195305,4.94798348911639,2.00034218369868 -"Tfru09668_t",0.258493466989069,0.207487707744568,0.22260220297672,0.668452644825266,1.78987924475862,1.79667097954027 -"Tfru09669_t",4.99362379410701,8.45866081288225,4.67970540348786,13.2930923686843,13.6974068624106,33.1771629744652 -"Tfru09670_t",10.5218475799856,6.66417221792118,7.14962555059767,10.7135560882954,11.2414749533213,11.3066841950675 -"Tfru09671_t",7.09078409447079,9.03237773621995,9.55759917367934,12.1180039098599,12.5414703961871,14.886950269875 -"Tfru09672_t",0.809088700848611,0.108239975950216,0.116124744731034,0.697422502626682,0.466862563841535,0.591958842629641 -"Tfru09673_t",39.6696301933225,50.365273456669,43.287353703336,34.1826157461684,30.7148105875721,24.3819905369366 -"Tfru09674_t",13.0556666604276,17.7696398355568,12.4649713322268,9.68804677804187,5.89571710689073,8.51374139486989 -"Tfru09675_t",0,0,0,0,0,0 -"Tfru09676_t",0,0,0,0,0,0 -"Tfru09677_t",7.29725170496514,3.54395062862985,9.7165049182539,8.11901606561492,2.28225934721731,1.88433030124662 -"Tfru09678_t",0,0,0,0,0,0 -"Tfru09679_t",0,0,0,0,0,0 -"Tfru09680_t",0,0,0,0,0,0 -"Tfru09681_t",0,0,0,2.14036561150947,8.2385143808933,8.78072283233968 -"Tfru09682_t",3.10192160386883,4.04601030101908,4.34074295804603,35.8290617626343,92.4025160106639,147.421581952804 -"Tfru09683_t",7.41727304208876,6.0163721948239,6.79081534638552,19.059597716765,16.5565909460857,10.6250010480541 -"Tfru09684_t",5.38228040597017,6.19862302384538,4.03040200375676,6.29350958080613,7.89927556661405,6.33483903503057 -"Tfru09685_t",46.7462484695186,51.2417072630861,44.6764701768697,30.2365495416289,32.9852162220412,32.8314446089135 -"Tfru09686_t",39.9616927345264,30.9829617645605,30.1114601594185,16.440321805162,16.5080078992941,14.9509604983081 -"Tfru09687_t",0,0,0,0,0,0 -"Tfru09688_t",0.189639676684983,0.532770355664664,0.489925841765918,1.76543926511414,2.95451286169242,3.05440313298493 -"Tfru09689_t",0.189639676684983,0.532770355664664,0.489925841765918,1.76543926511414,0,3.05440313298493 -"Tfru09690_t",1.5625562419197,2.6560242676274,2.69119731169885,5.60944396696914,4.45511518799329,6.11960661291069 -"Tfru09691_t",0,0,0,0,0,0 -"Tfru09692_t",0,0,0,0,0,0 -"Tfru09693_t",0.638862180771463,0.705103189341094,0.275078767937011,5.86484592370457,5.18397179075469,5.60897884347173 -"Tfru09694_t",0,0.179344428236661,0.288613228593486,0,0,0 -"Tfru09695_t",17.6167723347274,18.1350790797989,15.5685232311823,19.047809556743,16.883569450567,21.0618837845448 -"Tfru09696_t",7.95887779940028,9.60995699027473,7.84965663128433,6.12161895787349,3.88607758685147,4.67831224589434 -"Tfru09697_t",23.0922283537031,21.7197292719124,25.4978998940872,7.18051154727984,12.9977529472881,14.5111439725006 -"Tfru09698_t",0,0,0,0,0,0 -"Tfru09699_t",34.953222452354,31.6248372068705,37.09698209279,34.4106735593445,30.3858947972538,27.2554918573171 -"Tfru09700_t",19.2396821414403,14.0457352418797,19.3421706938839,29.4465512243752,21.3997220584483,15.4777300909946 -"Tfru09701_t",1.88413773761821,1.77924815348244,2.38607242636655,1.94891866103409,1.34299976313518,1.4595924497029 -"Tfru09702_t",70.8371520114276,81.3990238074844,78.3388522014225,55.7900861258011,64.5389150754311,60.555813379242 -"Tfru09703_t",0,0,0,0,0,0 -"Tfru09704_t",0,0,0,0,0,0.095442639481953 -"Tfru09705_t",70.7514290403582,46.0073214189316,85.2972925782371,98.2567153786215,83.990696130973,49.82665140018 -"Tfru09706_t",0,0,0,0,0,0 -"Tfru09707_t",94.7156227475763,71.4756600615544,116.314489879414,126.330062629656,113.905190643374,77.2090697202248 -"Tfru09708_t",0,0,0,0,0,0 -"Tfru09709_t",23.0764589695358,16.2227821764379,29.2240324823566,27.1461379280925,27.4145553085224,13.904124844028 -"Tfru09710_t",12.3620816358601,15.1179891833147,14.4914377130453,26.5115116761207,38.5977185942387,36.3202626246777 -"Tfru09711_t",0,0,0,0.251394919461768,0.701194255721495,0.592719959752919 -"Tfru09712_t",8.06701292328978,8.59992187013307,8.49370183713684,7.20354256782817,8.10052954333862,7.8387548165673 -"Tfru09713_t",8.16059167250834,8.27566431908354,7.21574790655238,6.85845168107797,5.70737459740492,8.71599070391392 -"Tfru09714_t",33.2778968182044,31.2943838816686,34.5573711223082,31.5957446731244,25.9793152515936,22.9151291003195 -"Tfru09715_t",53.2585677675754,42.9284912574968,40.682471578504,3.6880145921394,0.771499674464924,0.97822376381503 -"Tfru09716_t",15.6240700711474,16.8708178603378,17.7260352038288,14.2373013503005,9.12277013587767,5.39803846445679 -"Tfru09717_t",111.272022213838,111.198296352511,103.008800880783,55.8224361009709,59.7120310958382,67.5708604713821 -"Tfru09718_t",5.55710663468718,12.4446490637237,4.54422785120624,39.8024721032143,37.7109598382388,24.3263605316181 -"Tfru09719_t",30.6244723206262,34.5472143929379,31.005306843186,226.450681697702,182.680101489373,162.291980625313 -"Tfru09720_t",5.72277770922666,6.24724569639639,4.82961864087774,5.56436738403594,4.75512878375928,7.36910799008343 -"Tfru09721_t",0.389237266894737,0.989371888280083,0.335192506412821,0.738136897374619,0.280748433661464,0.42717029995166 -"Tfru09722_t",12.70122984409,9.69213767023778,10.4962598081565,7.59996668048794,7.14814062790255,6.87575245515412 -"Tfru09723_t",10.9323547065028,10.8953698062377,9.73034083754133,7.66531286162074,9.46232559251488,10.8436175414221 -"Tfru09724_t",9.37615812181333,5.71980622911923,9.04321449592924,8.14676660880794,16.8799995738955,15.0918673680838 -"Tfru09725_t",0,0,0,0,0,0 -"Tfru09726_t",34.6137174680642,32.7038028623144,36.3281063012436,57.0623309252127,58.6703979907467,55.6614919457755 -"Tfru09727_t",8.03532726937204,9.50932320901683,7.58498922773219,10.3895000284001,11.4576689085273,14.5089197015055 -"Tfru09728_t",10.8472881850934,7.62605087903565,9.88875102493419,7.1190504293056,7.21958472083043,6.48585003510753 -"Tfru09729_t",4.57822216738133,4.68543427229729,4.63249134941334,3.67011465755562,3.07102067284454,2.93089522332864 -"Tfru09730_t",4.87113383980593,4.07064843629137,3.16045621779894,3.45110579139335,2.13694379648753,3.36861725815732 -"Tfru09731_t",0,0,0,0,0,0 -"Tfru09732_t",12.3024222754577,15.7931027296549,12.8437228949206,11.1565215746163,13.4560724942125,12.3608269761171 -"Tfru09733_t",3.36682807671831,3.29078445966201,2.80073382425726,5.54371032049744,4.91631226579693,6.16661450820801 -"Tfru09734_t",2.28894251880969,4.61805299453576,3.1431496627972,6.27105058547415,3.85522591378422,3.25882496870338 -"Tfru09735_t",0,0.118512311101906,0.254290741537553,4.73438340711041,10.2233876018726,9.61404274964432 -"Tfru09736_t",3.52604199772344,3.79102492586821,3.70503666679581,3.74765903298263,2.68792031365369,4.14185039261305 -"Tfru09737_t",25.9052170447979,24.6802741704814,24.3932241158207,30.3019023144134,30.1751976421843,27.2784415367786 -"Tfru09738_t",15.4638569632399,11.8157822950115,13.4447790735939,12.0735561777732,12.8697069589945,15.502249602228 -"Tfru09739_t",4.05998103356437,4.38693805872576,4.63926989010496,4.68413842191683,4.93318832271124,4.969758554735 -"Tfru09740_t",2.57957173489092,2.96595499244828,3.42216249804459,1.87499580042274,1.50858598170786,1.63226714891625 -"Tfru09741_t",10.9578752310584,11.0678904973529,11.0877673384872,10.6734449483513,13.357217054126,12.8943005940118 -"Tfru09742_t",14.4665171618883,17.2081350976952,13.9588207157082,13.8821804454376,15.2367184152494,16.8327549731989 -"Tfru09743_t",1.9442109118849,3.03902519564973,2.90792768200404,2.7519731297313,2.03705044984329,3.21924186666777 -"Tfru09744_t",6.08486373811886,5.35686722097541,4.90192935293361,5.88800577334405,5.4365491079117,5.88800806748011 -"Tfru09745_t",0,0,0,0,0,0 -"Tfru09746_t",6.52254478039188,5.98943553877565,5.97638523209236,6.31500914769708,6.68425401187032,6.52827654056558 -"Tfru09747_t",0,0,0,0,0,0 -"Tfru09748_t",0.159412479642215,0,0,0,0.137976934190359,0 -"Tfru09749_t",2.36741570549676,2.90320373850031,3.14300370739145,3.60519665193431,4.01277966688179,3.84908398129958 -"Tfru09750_t",15.9598777250659,13.9871767537307,15.787434002309,11.7437374100567,10.9946715585163,12.136413086737 -"Tfru09751_t",0,0,0,0,0,0 -"Tfru09752_t",13.2290902856788,16.0642400915293,15.092309522143,19.648729156102,27.5979866726325,31.1047947439004 -"Tfru09753_t",1.36808213077749,1.62686381223123,1.74537312346041,2.14888576412465,1.71039802678796,1.59408780008097 -"Tfru09754_t",0,0,0,0,0,0 -"Tfru09755_t",0,0.395504428252109,0,3.05802382969917,4.47797868235982,1.44199553844874 -"Tfru09756_t",0.539104022062764,0.865456748881086,0.619000778330985,10.9669129108231,13.7650806891363,10.5180851039791 -"Tfru09757_t",32.9615784216585,31.9019697955706,29.9220241678339,17.9090393440084,20.1868462980036,26.423010846042 -"Tfru09758_t",5.73469848475046,7.0233347941687,6.16033190151971,7.52185629187615,6.08933671631243,5.57986820380206 -"Tfru09759_t",0,0,0,0,0,0 -"Tfru09760_t",0,0,0,0,0,0 -"Tfru09761_t",9.29074457266242,8.27909011923616,9.96702928511039,8.55143261655566,7.5644205429554,7.94955787820068 -"Tfru09762_t",5.50723566439763,3.85793592469042,3.27668320233908,8.90739042806493,6.93338205657393,7.17947063526224 -"Tfru09763_t",0.589891469430877,0.749699587666885,0.592650686684654,1.93221536889223,1.70190390446622,2.08599968983611 -"Tfru09764_t",0.512258394947851,0,0,0,0,0 -"Tfru09765_t",0,0,0,0,0,0 -"Tfru09766_t",12.7080291927373,12.4060005141631,12.2449412962051,17.4081903006416,15.934023121267,16.7860425036878 -"Tfru09767_t",29.8101336930942,33.3768658904631,33.3286211664489,33.2878635628711,37.8229270849321,38.1058586625225 -"Tfru09768_t",1.53677518484355,1.27682182156678,1.5323547027762,1.19918173445868,0.676733467660864,0.96655581883585 -"Tfru09769_t",2.77975511376113,2.97500757427873,2.92574586633005,2.87532939134398,1.87131216995674,1.3558469079348 -"Tfru09770_t",21.1761693514806,25.078576245986,24.2148884023229,25.1360292062394,27.3428092271365,22.3509308459555 -"Tfru09771_t",0,0,0,0,0,0 -"Tfru09772_t",0.109151637208464,0.321250998348562,0.125328221684597,0.0752696784991638,0.0944744620852997,0.053239549438179 -"Tfru09773_t",6.5841957045389,6.23869197858962,6.18157266663401,5.73522127793511,4.0706041309607,5.79517358410161 -"Tfru09774_t",0,0.0572440619838579,0,0,0,0.834839522259799 -"Tfru09775_t",5.47044313860588,4.39101893133853,6.89807989456928,6.16375520170275,4.31210007003985,6.86121598061891 -"Tfru09776_t",15.3072799421029,14.5942487333594,16.8332204817297,8.47430983431176,9.95227980404709,10.6209940846264 -"Tfru09777_t",6.15178960340118,5.86378304495518,7.28423684797962,13.7208700779923,11.8139197862715,7.59522478403752 -"Tfru09778_t",1.83964328695782,0.984430730170578,2.64035459733986,2.53719252049337,4.24606390178076,1.79460028689356 -"Tfru09779_t",5.1225839494785,4.46423900809306,4.22226739531191,7.03971470029396,6.1439398073841,6.58554212425475 -"Tfru09780_t",32.7778191337779,26.3101216295776,28.4638882494822,19.089254217797,17.8388115004265,21.7646769221272 -"Tfru09781_t",0,0,0,0,0,0 -"Tfru09782_t",4.38860177164278,3.88434602126754,3.50930711782329,4.13418007014134,2.45884035124913,4.25725810831021 -"Tfru09783_t",7.67402480123799,7.0513400678818,7.73890471286252,8.46010378606978,9.4388163297818,7.46150365680787 -"Tfru09784_t",5.03190890303675,6.76354269283148,9.23945442715488,8.26678818286387,5.42233801814982,5.88522893239142 -"Tfru09785_t",7.06281921914066,13.7254035459086,9.28329974852483,5.76762232324092,10.6175081405181,10.8787715475572 -"Tfru09786_t",36.9841600364098,34.2868900144668,37.7125773031405,41.3466219026614,35.2333554685266,31.3955640862431 -"Tfru09787_t",81.3986552137859,91.5418565515542,101.021608565925,70.2394799847482,113.780212353017,74.8408759543977 -"Tfru09788_t",0,0,0.0382376934288763,0,0,0 -"Tfru09789_t",7.95580457696592,8.26075083179394,8.79965268066094,7.54985611010292,5.18030863084462,5.17993988111089 -"Tfru09790_t",20.0332436916529,19.9706918704147,19.7559455141839,11.0294686396169,9.50873348778019,17.0210934903815 -"Tfru09791_t",4.93686477043366,3.96272589243236,3.96316173128373,1.73105266588216,2.38999687500451,1.71416501507826 -"Tfru09792_t",0.0750092649745066,0.0903127299334615,0,2.32764760251655,1.26599996804216,0.850632524382906 -"Tfru09793_t",98.1024399718188,65.693285532675,110.618933446979,96.4296847631799,98.0464094356684,80.8959497069741 -"Tfru09794_t",13.5069687035366,12.0331872910167,19.3007122103931,13.203711252909,16.7010596490839,15.2033716885033 -"Tfru09795_t",12.9949585821695,11.1234724287836,11.7151975101343,9.45123376973488,11.2475795441025,10.0646714277634 -"Tfru09796_t",19.6524999310684,19.4902058966442,19.7560800007734,18.3121778195728,20.9460856518696,21.0329929227044 -"Tfru09797_t",0,0,0,0,0,0 -"Tfru09798_t",0,0,0,0,0,0 -"Tfru09799_t",0,0,0,0,0,0 -"Tfru09800_t",0.141670112599405,0.341147580187106,0.243999042048681,0,0.735721864940834,0.725557198625032 -"Tfru09801_t",0.942665807579078,0.393463000547935,0.779307532862843,2.37918737588167,2.2845462757102,2.75875492937063 -"Tfru09802_t",43.5053736852139,30.1042433111538,41.6633810705311,38.7941267086092,35.7076914063174,38.9644575685073 -"Tfru09803_t",0,0,0,0,0,0 -"Tfru09804_t",2.87359437648814,3.79907070518223,4.6580742675209,21.3313057282268,26.9202160051724,31.5363989048819 -"Tfru09805_t",0.121314623496675,0.340819158930608,0.0522351739837068,2.32148535856284,3.09755726698976,3.46157015628698 -"Tfru09806_t",4.4765742506988,5.030563429331,5.65401687844954,8.33488022499711,8.00756367271009,5.5678828617145 -"Tfru09807_t",3.08023983139913,2.3369722984289,2.72522787421273,2.09499975073313,2.5564887505185,2.84017353291148 -"Tfru09808_t",2.88815424488165,2.31826556726316,2.77411793377202,2.49501780539238,2.33497422253763,2.1827410743028 -"Tfru09809_t",14.1420273523078,11.0812573374604,10.2211883280643,15.2377732162072,14.7904913793775,16.9367649822183 -"Tfru09810_t",0,0,0,0,0,0 -"Tfru09811_t",60.9842768257849,59.2563524152572,57.6842918012762,46.9138276476205,32.7333086549244,21.032894226302 -"Tfru09812_t",4.17914819439648,3.92631487662488,4.41681024560931,11.5439391178134,11.509257438739,9.24234364828517 -"Tfru09813_t",11.8994867948226,12.7989938700792,11.4769407767034,36.4335095933091,22.0407403457794,23.8547116040049 -"Tfru09814_t",0,0,0,0,0,0 -"Tfru09815_t",0.0895633014620975,0.123241251934788,0.154255257926298,2.06460853442833,1.98229944151372,1.38544454071031 -"Tfru09816_t",0,0,0,0.472276325148286,0.237110361907562,0.200429542912101 -"Tfru09817_t",1421.2053312974,1426.5773199657,1343.62926527602,248.308823957539,442.780898806445,641.98293337806 -"Tfru09818_t",46.6935216578763,45.5244719816425,41.7794057868868,25.0526264626333,21.2260024535174,27.830090350669 -"Tfru09819_t",9.11651066613235,11.1154129148876,8.34758261162699,21.3666113256648,17.3794078453125,24.1469877889341 -"Tfru09820_t",1.61558397956429,0.648399010801338,2.08689540861848,0.835565708221745,0,1.77303036436696 -"Tfru09821_t",0,0,0,0,0,0 -"Tfru09822_t",19.0215226363213,18.2305696702894,13.6699754008233,10.0943441790381,8.45509817654873,15.2824826703117 -"Tfru09823_t",178.686835615161,129.287633014019,186.076071168735,138.096022858196,162.128015220446,150.374575752122 -"Tfru09824_t",25.3199744519818,22.5125766362731,24.2643282301904,21.3553572929494,19.5551915168277,20.0450195106116 -"Tfru09825_t",5.69964393643742,7.29139665554674,5.57292087664332,9.21189157179696,6.1665451012002,6.3419779043471 -"Tfru09826_t",0,0,0,0,0,0 -"Tfru09827_t",0.118826558375456,0,0.204655490714099,0,0,0 -"Tfru09828_t",0.295811185814956,0.237441919073889,0.254738436505049,0,0,0.216426266994288 -"Tfru09829_t",0.966871343916914,0.603624725215975,0.925137032831636,0.666743047268168,1.02282901215027,1.2575971319975 -"Tfru09830_t",4.52808223424086,4.25326006414467,3.31861082419421,3.28860303474816,4.58630898796737,6.06192103792257 -"Tfru09831_t",4.26998797859898,3.70770418960821,3.22608396599086,2.73134300019953,2.54363088618936,2.8207188248316 -"Tfru09832_t",5.73154906945389,5.23082328636422,5.94992804218148,3.32976878216698,3.46580005629371,4.02107868023032 -"Tfru09833_t",0,0,0,1.04837747244713,1.07218805295109,0.329571366361275 -"Tfru09834_t",35.682353727896,29.9791895116349,33.2604575159498,22.003557888589,33.175161176736,85.8502644249406 -"Tfru09835_t",2.14483582652419,1.9912692961029,2.33660417612444,3.47488455784282,3.66812379827878,3.64895618163362 -"Tfru09836_t",0,0,0,0,0,0 -"Tfru09837_t",0.226901760355023,0.0455324139209889,0.0488492342791586,0,0,0 -"Tfru09838_t",480.097935509721,618.147699563292,438.499822537962,776.605958453885,580.371385528123,448.501003188997 -"Tfru09839_t",0,0,0.101466642310566,1.58441089727167,7.75070430321493,24.6549889345638 -"Tfru09840_t",37.3184781070246,36.4942534972002,36.2860160378892,38.873413974875,36.470656013672,40.1221349857273 -"Tfru09841_t",21.499277163639,20.9021083963119,31.895661938345,4.6238405077018,5.40440734798317,4.98365349943603 -"Tfru09842_t",33.967086703493,31.5598514203002,27.7482183923833,21.923247501151,14.03532248404,13.4811208481006 -"Tfru09843_t",28.6641575917098,30.3511964504758,31.1178487918001,36.4312757243244,44.6048627578799,42.0550409338374 -"Tfru09844_t",0,0,0,0,0,0 -"Tfru09845_t",0,0,0,0,0,0 -"Tfru09846_t",0,0,0,0,0,0 -"Tfru09847_t",0,0,0,0,0,0 -"Tfru09848_t",0,0,0,0,0,0 -"Tfru09849_t",0.0926244506851681,0.297391422346128,0.239291232527345,1.62875451495462,2.04432528127578,1.62641834160206 -"Tfru09850_t",1.94027207292241,1.69403456687725,1.43636145964516,1.05630685365419,0.883879793172436,1.17052585568872 -"Tfru09851_t",45.3365023233335,53.7869798449057,53.8141332993857,52.5195382474838,50.1109082084314,43.1432051652788 -"Tfru09852_t",19.9148104298849,21.2240912204852,19.0231763101619,23.3692109894092,21.3651235795858,26.1410164799435 -"Tfru09853_t",10.7957259869851,10.6743457123848,7.85999016935906,10.8115968079507,7.60267414309527,10.4476240709556 -"Tfru09854_t",25.1743969892412,27.249999748603,26.8170979051331,60.2978304870676,63.1862042538222,50.4466366444368 -"Tfru09855_t",26.0753025266945,31.4496228347099,26.1129507338075,110.598528507453,112.923544135012,73.2687318855584 -"Tfru09856_t",23.9551024492861,22.6571198312301,26.3632693779632,23.4791492295056,31.1009364033488,27.2395005910517 -"Tfru09857_t",0,0,0,0.32792016538598,1.23476339408466,0.695830865958993 -"Tfru09858_t",13.3187182686441,9.97111278452364,10.366611739236,14.0415814720917,11.1952717624241,7.589435740757 -"Tfru09859_t",26.8547102218327,19.9899631745395,34.3810136253904,36.1854318723523,32.248477395044,12.7497182921588 -"Tfru09860_t",0,0.0918712602411234,0.295690937196596,2.3678159081004,1.68410811091475,1.17235808933145 -"Tfru09861_t",0,0,0,0,0,0 -"Tfru09862_t",0,0,0.0444384004713967,0,0.044664523537051,0.0755099015066065 -"Tfru09863_t",0.359274597739618,0.384510363603618,0.412520119557713,1.36263333157538,0.881065825667444,1.05143366773561 -"Tfru09864_t",2.85708227804488,2.78126612588142,2.7744739119204,9.87201047820817,8.36577514226681,8.40585839883168 -"Tfru09865_t",1.04537799149991,1.90705613735816,1.71861994945262,2.06433905019568,1.39834315996767,0.584808710454482 -"Tfru09866_t",0,0,0.0807429865707968,0.096985316771523,0.0811538441052668,0.137198794255307 -"Tfru09867_t",47.9806987166991,44.4201084204383,58.6066206435554,134.519653829343,139.465866782929,93.3820950971176 -"Tfru09868_t",8.84319755488905,2.66184888224934,6.66342120752669,3.43021751949802,3.8270444378062,3.63937854235125 -"Tfru09869_t",13.6233043413158,12.7576901383484,16.4244328142282,9.86419308309718,8.25400394964703,6.64487133258138 -"Tfru09870_t",0,0,0,0,0,0 -"Tfru09871_t",0.477331686201406,0.328409927030769,0.469777376411908,0.493743430836845,0.177062932593309,0.798247530212697 -"Tfru09872_t",1.44845477192151,1.16264663822387,2.18284487832775,1.68553791906371,0.313421742751375,1.05974241079962 -"Tfru09873_t",7.70737401572912,7.95414869138743,7.34835253928719,8.65571707847134,9.81589248333796,8.05570902049511 -"Tfru09874_t",0.0937615812181333,0.0752606082778846,0,0,0,0.0685993971276537 -"Tfru09875_t",1.40277066965311,0.500434174523077,1.47644318300886,5.15911503241764,2.02357637249496,1.25438897604852 -"Tfru09876_t",1.98234412235311,2.08500666447959,3.11987221014971,6.85857432973687,4.14155337858611,4.15101705906375 -"Tfru09877_t",0,0,0,0.127417659570799,0.159927810084279,0 -"Tfru09878_t",4.15355651615355,3.73606748292859,3.84645545764742,3.47595375309138,3.45052031423576,4.44380929427973 -"Tfru09879_t",1.0600678456965,0.63817197176957,1.36931954512493,0.822386534643072,0.917524849442512,1.16337652668223 -"Tfru09880_t",3.93184290662,3.26121475121142,3.38591494387366,3.38919047688318,3.28970590519696,2.30134389365533 -"Tfru09881_t",9.54437416575024,11.4916268904684,7.79107710418519,9.6668536328577,9.46570754439656,5.96465669321062 -"Tfru09882_t",0.349315495931174,0.420583191374124,0.376017234757972,0.541988630939405,0.377930583775047,0.511143948660106 -"Tfru09883_t",16.5988244427457,16.8583762542462,25.3793439079304,21.3743123930015,26.3880886639061,25.0321413002587 -"Tfru09884_t",7.58866171183891,8.04360279878334,8.42008622435102,5.58527600742825,5.93668329408395,5.12505420671592 -"Tfru09885_t",0.175544070865711,0.785046774824597,0.518297666632362,1.19323785553883,1.04187000814308,1.04582340600105 -"Tfru09886_t",48.0886984277941,56.5046266176802,57.3776368017579,61.1288418647106,40.0664005961947,36.8790358958266 -"Tfru09887_t",0,0,0,0,0,0 -"Tfru09888_t",34.5341548794806,27.2720005529945,32.5689201034204,24.7549473928648,20.1774210064118,14.1074786760173 -"Tfru09889_t",4.36985054727945,4.34064824231565,5.92689220539445,6.10212947551804,5.24787823103603,5.47510610937175 -"Tfru09890_t",0,0,0,0,0,0 -"Tfru09891_t",19.9022304879967,21.1209725280988,21.7531537760849,18.1121735995365,15.9837949355758,14.1411641058409 -"Tfru09892_t",0,0,0,0,0,0 -"Tfru09893_t",0,0,0,0,0,0 -"Tfru09894_t",4.68459350026659,4.01091479654927,6.18569318680662,27.4587424733056,19.732753290845,33.1317236982333 -"Tfru09895_t",1.09578752310584,1.4659457612388,0.943639773488269,0.755642120237258,0.948441447630249,0.267239390549468 -"Tfru09896_t",157.065338369999,280.003873343628,213.125883997987,372.881413398502,505.204684023087,480.195116823081 -"Tfru09897_t",5.18887621235411,5.45418055284434,4.78758414490371,4.4727346087573,3.20796371992584,3.34442237290585 -"Tfru09898_t",1.38370032329443,0.952002423769194,1.02135128424613,3.47595375309139,2.73746237433672,2.60322606323482 -"Tfru09899_t",0,0,0,0,0,0 -"Tfru09900_t",226.433847623664,266.951292048583,195.443853368212,234.219156228656,201.535318650491,187.001103440116 -"Tfru09901_t",0.504263966215171,0.161905174110407,0.434247995002604,11.5795578209227,16.7599737204289,8.77949903374816 -"Tfru09902_t",0,0.121065538630134,0,11.3888969468434,11.8796406336931,7.17276281636365 -"Tfru09903_t",0.537838519663556,0.345370064107476,0.370528634916435,0.667596751554043,0.791379867740988,1.10180645015274 -"Tfru09904_t",0.0973469024002867,0.234415428796007,0,46.218504422623,34.2926241454877,54.7701402160886 -"Tfru09905_t",79.7338304425841,92.530363784618,76.7650244088835,92.9935591183385,74.7702313182715,63.9681618102573 -"Tfru09906_t",93.0408081507887,94.6704907567438,104.15897868927,72.4628795432732,88.5829894952812,89.5948347632053 -"Tfru09907_t",0,0,0,0.343134625181775,0.717806952796832,0.728115220055807 -"Tfru09908_t",27.161249632874,28.5774252293441,29.1261973375383,23.6996846801685,26.6402054371969,21.9728135948021 -"Tfru09909_t",7.37742057268474,1.11032115834772,13.3414712212172,8.77573395401777,2.23489312943242,1.34939758125966 -"Tfru09910_t",18.1295978174232,19.2439955355074,19.7073825335816,34.6365674688941,30.9548323100391,32.4721070780863 -"Tfru09911_t",1.07890038661962,1.38561996610242,1.33170624426355,1.71119298632495,1.61863009612696,1.42085326653442 -"Tfru09912_t",378.35555715082,476.744963778167,380.346962622906,436.091624353837,464.620078769259,428.221648422742 -"Tfru09913_t",46.6529440943737,44.9087434246724,33.9828519680013,45.5357198343391,59.3551422306112,72.1155816752072 -"Tfru09914_t",0,0,0,0.928253878187921,0.597484341152991,0.353537731129535 -"Tfru09915_t",11.8976143342727,12.3619249952458,11.3840623080148,8.68304733758076,9.09638178333024,10.7841922433377 -"Tfru09916_t",174.180806454076,204.602290822709,191.97681139778,222.025996681343,215.567591563158,258.837059774544 -"Tfru09917_t",0.442825781174798,0.253891208648285,0.16343158727583,0.130871752751935,0.49278960757897,0.277703583552911 -"Tfru09918_t",0.856156705951057,1.8898561915588,2.11968339777195,2.10328411811262,2.50098572814601,5.32436187031043 -"Tfru09919_t",26.5700922224352,23.8342560835894,26.194138539933,29.1223496016008,30.2843758933516,29.6065536017143 -"Tfru09920_t",19.9216789216983,22.7121316571863,20.5961419399144,20.8896894933342,18.5692683861766,20.6218278896316 -"Tfru09921_t",14.2006176644918,15.6131552809211,14.1814045504345,11.7264064823751,14.150279363082,9.34199062702048 -"Tfru09922_t",0,0,0.103647157546467,0.248993821854684,0.208349124121258,0.0880588249661572 -"Tfru09923_t",0,0.208342445984504,0.149012803228494,0.0894941748993663,0.224656573589039,0.0633007825194415 -"Tfru09924_t",6.35783575825314,6.45547137290667,6.27058598941536,5.39604722342776,4.72687021603562,7.33525455237172 -"Tfru09925_t",11.9824626139941,9.93869408332736,13.8156240476637,21.2771337104841,23.8538284847734,16.6569338039787 -"Tfru09926_t",0,0.958770213511629,1.02861207536636,2.26513573957377,1.72307687958102,1.89347340697372 -"Tfru09927_t",57.5137264817773,73.0157488097813,44.7968506155965,89.8482251161246,226.327859798741,243.367037375467 -"Tfru09928_t",74.3698416851766,106.67759393497,65.229743863906,99.7199846569155,267.01477241027,338.057828831776 -"Tfru09929_t",17.4089944260224,17.7557803134075,20.8372166712286,25.7722806788145,23.224193622581,20.8583900741605 -"Tfru09930_t",3.76911420109737,6.37884506917422,5.04317011115808,3.24109201301764,2.90855377273276,3.3888843796165 -"Tfru09931_t",24.6822939840641,16.5402936834113,26.7152643868961,138.897612909919,124.848298735227,61.4650598263777 -"Tfru09932_t",0.891970182001211,0.424276869945636,1.53624406694512,11.3108601285219,9.26436710937293,5.46248663812873 -"Tfru09933_t",25.7919320591512,18.439369091515,24.496130875449,34.0561115492912,25.0514626526094,22.3895430167161 -"Tfru09934_t",9.14676085514372,10.8024546871868,10.3852726804846,7.41231469539252,8.47151584291096,9.24959638163936 -"Tfru09935_t",5.55322829506178,4.8003512045989,5.88575316345225,8.68988438272846,9.9827481182777,7.60499892767046 -"Tfru09936_t",1.90808772680121,2.27549789804231,2.30041536820523,2.65038654113068,2.87835464206195,2.55273447689044 -"Tfru09937_t",4.86233691924776,2.81876387530804,3.48934321386337,3.91184505974915,6.31277748101162,4.3480106629592 -"Tfru09938_t",4.28848781948488,3.9718687510004,3.50365378376316,4.09470991856315,3.42630680033964,4.74664729025692 -"Tfru09939_t",0,0.0646534084534847,0.069363102557463,1.41637616976399,0.557728431971766,0.176793077161201 -"Tfru09940_t",0,0,0,0,0,0 -"Tfru09941_t",2.16800972313412,0.870109742154635,1.86698621851441,3.36382621266907,1.87648630498887,2.77584141151382 -"Tfru09942_t",0,0,0,0,0,0 -"Tfru09943_t",12.3804765768449,14.1965273719968,13.1364589519814,26.2983343161519,40.3753188188561,27.65927692187 -"Tfru09944_t",27.322523752416,29.1050386395496,28.586453117831,32.7521478254811,31.1630761364225,29.7049985179151 -"Tfru09945_t",170.188763266029,212.959359392348,195.450119750729,347.455215883611,215.209523103412,100.42597678084 -"Tfru09946_t",0,0,0,0,0,0 -"Tfru09947_t",1.55255316415406,2.07700734138556,1.48553831555306,6.06685973332172,7.16686761248319,7.95133217466488 -"Tfru09948_t",0,0,0,0,0,0 -"Tfru09949_t",54.8191691820212,61.82321340872,53.8167153036703,48.1274999663346,42.7030733353913,36.9993590145732 -"Tfru09950_t",78.0994670285462,62.2851386159873,84.3672346386692,90.1510460663297,73.0404034993894,51.8036357518722 -"Tfru09951_t",44.2380223198486,26.883789375542,39.5377750054581,37.6754123570121,30.8007147859989,24.1980385030756 -"Tfru09952_t",0,0,0,0,0,0 -"Tfru09953_t",3.42899497026316,3.09643645486154,2.39922017238939,1.10840362024598,1.48395600649631,0.940791732036394 -"Tfru09954_t",0,0,0,0,0,0 -"Tfru09955_t",1.75718915557808,2.21643990593674,1.44114972046681,1.21173686611751,1.23121051136596,1.40806411952857 -"Tfru09956_t",4.21305529064399,6.07685655676315,4.62676090489403,4.04180668964115,3.59341672503321,2.68016249242926 -"Tfru09957_t",4.4037697501162,6.5258230661598,7.29291491607197,8.75996409549241,5.27761773278122,3.22195878122141 -"Tfru09958_t",0,0,0,0,0,0 -"Tfru09959_t",0,1.1054672946629,0,0.712285604692254,4.17210581891046,2.01524786188838 -"Tfru09960_t",1.10831631624601,1.24547370743771,0.858986073491959,0,0,0 -"Tfru09961_t",19.0286661672169,16.7316215455676,18.9703522132651,16.1710254490624,12.7112547398565,12.593405114803 -"Tfru09962_t",0,0,0,0,0,0 -"Tfru09963_t",0,0,0,0,0,0 -"Tfru09964_t",0,0,0,0,0,0 -"Tfru09965_t",0,0,0,0,0,0 -"Tfru09966_t",0,0,0,0,0,0 -"Tfru09967_t",13.2299805939287,11.415908329647,9.9688978695283,12.3163715660718,10.0196242170912,12.5833980746915 -"Tfru09968_t",8.26938576447646,10.3693048850799,10.9120864436678,7.61747945400781,7.83400869247316,11.4682604279382 -"Tfru09969_t",0,0,0,0,0,0 -"Tfru09970_t",34.0848342687797,32.2698697610537,28.9759174485951,32.1491821441645,27.9414057165972,32.7307438217187 -"Tfru09971_t",1.87352082004242,1.67472972419272,1.83339371432929,1.76176064525666,2.3218308119889,2.71031941454377 -"Tfru09972_t",71.9878610413565,84.8270062492929,71.6966952309472,44.4990270604339,45.2122343428412,40.0383464124066 -"Tfru09973_t",0,0,0,0,0,0 -"Tfru09974_t",7.73459751398966,11.4797049652539,8.79710501051599,3.67319953641678,5.6840584730591,6.33513644996829 -"Tfru09975_t",6.55234136378977,6.38646008517403,7.25472360676217,7.50379988480731,8.10182109396313,7.19089836408876 -"Tfru09976_t",2.40766688802511,2.82986049713037,2.59170937447307,2.31255879171894,1.56293831185742,2.89395368681 -"Tfru09977_t",34.9185449163132,38.0703765364503,38.1843552702761,62.2189836241031,48.5901183993291,35.6277208230182 -"Tfru09978_t",35.453920472354,25.1399305609609,36.9874260951101,6.30542069472374,10.8555280508583,12.6108463029933 -"Tfru09979_t",0.356580546568113,0.171732185951574,0.245656081383477,0.958985543085484,0.987624371046778,0.887016992401036 -"Tfru09980_t",0.470458109920106,0.107893608027175,0,0.764709825680105,0.523539679091897,0.393376382888817 -"Tfru09981_t",0,0.152220101618475,0,0,0,0 -"Tfru09982_t",0.792550724258938,1.11328899792192,0.426566721506096,0.922275465148068,0.685979663380368,0.362411909353642 -"Tfru09983_t",0.730128206595958,1.20874832458473,0.785939336962889,0.944039585304559,1.77736175683018,1.8028860568302 -"Tfru09984_t",29.0503172013416,23.4981906667997,28.0110248739063,18.7952105474234,23.1053337086247,23.7982207605468 -"Tfru09985_t",3.36386518900046,1.80007302920082,4.08523036777091,0.713748203920202,0.895858451560399,0.694163920010426 -"Tfru09986_t",38.34549143053,33.9778696624787,41.775623983131,16.6983741526776,21.7859969182185,22.1048109636973 -"Tfru09987_t",0.158809785957368,0.446157405594416,0.478657856117238,1.47843023524681,6.32294298420166,7.37813099995271 -"Tfru09988_t",0,0,0,0,0,0 -"Tfru09989_t",9.97963438969678,10.1223079885106,9.4533818920729,8.821264924152,7.61689297934876,7.23508803571833 -"Tfru09990_t",0.0782583854414974,0.251265971185783,0.202177128926224,0.485694516035126,0.338676498920908,1.88947086564552 -"Tfru09991_t",0,0,0,0,0,0 -"Tfru09992_t",0,0,0,0,0,0 -"Tfru09993_t",0,0,0,0,0,0 -"Tfru09994_t",0,0,0,0,0,0 -"Tfru09995_t",23.0211119826445,21.8529547632484,27.8694775569543,60.2563071177279,72.771599556062,65.2730619442947 -"Tfru09996_t",11.1543189326796,14.8467044659243,9.72715508805834,58.054269615707,8.92119434493662,3.92549961916362 -"Tfru09997_t",0,0,0,0,0,0 -"Tfru09998_t",16.55519957121,25.0034344444999,14.006430749097,10.9656276566841,8.73571681957334,8.49992184288715 -"Tfru09999_t",36.0690581293294,39.1168784149668,43.2321640505258,53.9170484581133,64.199571834209,50.71074249471 -"Tfru10000_t",0,0,0,0.0870729898068984,0,0.123176472597951 -"Tfru10001_t",4066.67179761447,4413.46575632349,4109.29797687903,12391.9224159468,9917.73701170497,3899.12462144365 -"Tfru10002_t",373.802268770517,343.98136357096,391.221432688005,354.55939415244,245.250875610219,95.3029673266135 -"Tfru10003_t",6.02691990410772,4.11857568208437,5.85639096779518,5.60230064422145,8.52968992973011,11.7090492058974 -"Tfru10004_t",51.1994570881783,61.0663929552951,46.2639986229513,42.5170308854526,94.5592052723205,88.1087123691423 -"Tfru10005_t",0.206160433794963,0.0827404969533553,0.532606497919759,0.213248696508674,0.178438881762746,0.226251753962127 -"Tfru10006_t",0,0,0,0,0,0 -"Tfru10007_t",0,0,0,0,0,0 -"Tfru10008_t",23.6593195909441,19.4552627740195,21.1347035410481,26.0161090979837,22.3755178783084,24.1493747197512 -"Tfru10009_t",5.60323293348583,6.66992018770537,6.20387491735254,8.12212424157016,8.87478408422315,10.0117769862385 -"Tfru10010_t",0,0,0,0.122912084621336,0.102848436093803,0.0869378498251453 -"Tfru10011_t",17.5178588335081,13.00287316471,17.5186935526522,12.0801083347346,14.5101617585883,13.5057754775449 -"Tfru10012_t",3.9884734164329,3.16094554767115,3.82597536366237,15.2490759600764,12.803579558454,20.8700473569131 -"Tfru10013_t",20.7815142539896,18.4554855835958,23.6075494209521,17.83713110139,19.3265744109216,14.5575141694052 -"Tfru10014_t",2.95560004687769,2.5811867949085,1.73075875520177,6.44465109723881,8.6108499850641,10.0726234404471 -"Tfru10015_t",6.23398555547843,5.9570234113944,3.70675929868478,3.07063052393232,2.95480286099176,4.34382048242952 -"Tfru10016_t",4.15260417501451,5.12802319520795,5.77665412667723,4.29538011313574,3.04126345057608,4.90785648803776 -"Tfru10017_t",22.1427822332297,18.56941522891,21.3451168275277,13.4006084894947,15.96157558207,16.6840642329664 -"Tfru10018_t",0,0,0,7.34607990123015,3.74278487868613,1.70209144229097 -"Tfru10019_t",0.210025941928619,0.0842918812712307,0,0.434494219136423,0.545353832387393,0.307325299131889 -"Tfru10020_t",5.76324484447924,5.07085723742496,6.01290251444371,4.47104869296056,2.30228530823174,2.35156561341023 -"Tfru10021_t",13.7184574785745,12.4732494829104,18.2955206565042,8.79034547385827,8.72145820580994,6.48403087763811 -"Tfru10022_t",0.209676481126741,0.504909771341815,0.120375567333501,5.85591210483366,5.38397016999201,3.42608902526398 -"Tfru10023_t",0,0,0,2.78777225843718,4.86536263541456,1.69014829953376 -"Tfru10024_t",0,0.0606416412023243,0,0,0,0 -"Tfru10025_t",0,0,0,0,0,0 -"Tfru10026_t",0.542002430783529,0,0,0,0,0 -"Tfru10027_t",0,0,0,0,0,0 -"Tfru10028_t",0.0618633113191807,0,0,1.40778686612685,2.03470256560834,2.30833435283156 -"Tfru10029_t",8.70479888835289,7.71500435164637,8.82360054432815,9.9420155916807,6.6709948915889,6.70045444410593 -"Tfru10030_t",0.2193482422231,0,0,0,0,0 -"Tfru10031_t",4.63049320787506,4.24777984358958,1.42412826707547,2.39485002673619,1.43137488815589,2.66187266964628 -"Tfru10032_t",2.13995207881255,2.16097509914741,1.12947296908894,1.64229532294786,0.597484341152991,1.21212936387269 -"Tfru10033_t",0,0,0,0,0,0 -"Tfru10034_t",11.5175516541501,26.2120559824085,13.8334186284838,312.415359501641,379.519355184001,205.01571567895 -"Tfru10035_t",4.4215987774446,3.80264126035627,3.26371650980905,8.8205593358522,6.56064760766789,9.24286613930492 -"Tfru10036_t",29.6989808508437,43.8581194739372,30.5208489237612,33.7751365656829,28.4038454368434,25.8105231692797 -"Tfru10037_t",7.9215739883747,10.2907209889443,12.2969765354075,12.7221632402228,11.1867452797414,13.5741695398204 -"Tfru10038_t",0.0567254400887559,0,0.0488492342791586,0.29337894607456,0.49097801700418,0.415024036639958 -"Tfru10039_t",2.91576144976824,3.36436142167168,3.4917400873653,5.13664532384708,4.14043039773509,4.36655251478063 -"Tfru10040_t",1.19471770457133,2.00513331013658,1.44972022947023,0.674069893941445,0.564037577129818,1.11248977061317 -"Tfru10041_t",4.78146709000839,5.75698676866687,5.14696328738147,5.88557906399936,6.04224318182959,5.00256320726922 -"Tfru10042_t",0.212281432145161,0.255591301390971,0.182806610151444,0.933215631752267,1.33209190475758,0.737736030765115 -"Tfru10043_t",12.3061232532888,13.5475181702644,10.797502259411,8.81730401289387,7.35374358913212,9.6894155634533 -"Tfru10044_t",3.93798641079583,1.05364851579252,1.69560271782924,6.11007495603843,2.84038454342052,5.28215357833871 -"Tfru10045_t",6.59991868508528,5.47818445654607,6.17112798365113,5.85053834160244,5.82955797227236,7.37886801034191 -"Tfru10046_t",1.00144819992454,1.07179080821697,1.05404354389639,0.345293419181263,0.192619455147865,0.244232025800176 -"Tfru10047_t",0.0767919348916339,0,0,0.238296646692737,0.0664660368540394,0.224735136476701 -"Tfru10048_t",0.175114941434405,0,0.112338068272413,0,0.127971329161982,0.095442639481953 -"Tfru10049_t",2.89690954384302,3.87548879407958,5.82091967554066,8.74052746540189,7.52212181976292,3.51429270640632 -"Tfru10050_t",1.76540764343836,2.24881035460935,1.94993021565948,0.516073535749064,0.431831875805458,1.26355764832663 -"Tfru10051_t",2.38394939760067,2.9851381335555,2.46353175825541,1.08500259035202,2.06338945284674,1.53488231121488 -"Tfru10052_t",0,0.156458248299268,0,0,0,0 -"Tfru10053_t",6.19431349466894,5.09635706119146,6.00102713093922,6.00683252262336,5.56244154693132,3.68223860711019 -"Tfru10054_t",0.847806315324835,0.752366170097055,0.876358688799008,1.05264777348958,0.831367135415202,0.901304670708758 -"Tfru10055_t",0,0,0,0,0,0 -"Tfru10056_t",0,0,0,0,0,0 -"Tfru10057_t",0.0449734351024879,0,0,0.0465197236762766,0.0389260408556312,0 -"Tfru10058_t",6.42638487125119,6.47136557186639,5.33285527993602,7.97680624840165,11.731301725904,10.9423194127627 -"Tfru10059_t",84.6076069380691,77.3407972232714,103.03264288253,126.847601416131,106.830766534023,63.5041850338879 -"Tfru10060_t",20.537401376449,29.2603587660291,21.3060804202697,16.4316517655366,18.1337232754463,18.328588389572 -"Tfru10061_t",9.85543144357527,13.21020827212,8.81661914409502,26.9208263337374,24.5140067405723,21.4917692103621 -"Tfru10062_t",0,0,0,0.585300309228289,0,0 -"Tfru10063_t",0,0,0,1.02554376617135,1.00674876949829,8.51539115343824 -"Tfru10064_t",0.209502186462462,0,0,30.0890071447564,126.741992431568,1391.39160397657 -"Tfru10065_t",0,0.186969052727314,0.0668629537591811,26.904910057431,63.4398050244854,124.179871331295 -"Tfru10066_t",0.107019588243882,0.171805108323528,0.368640590916861,0.553495820555953,0.741032808339557,1.01789271050052 -"Tfru10067_t",4.88195894071365,8.65369434842659,3.67859572715766,28.6155999043843,29.4024503660031,31.2534202507005 -"Tfru10068_t",0,0,0,0,0,0.102101428283019 -"Tfru10069_t",0,0,0.0354288520898305,0.0425557511397084,0.0356091304203325,0 -"Tfru10070_t",0,0.102223605381988,0.0365567033690924,1.71250879700056,0.624626252355444,0.341645102622615 -"Tfru10071_t",0.147190676129913,0.364814802998638,0.262486168978301,1.54538980308635,1.35524327886352,0.772162340144797 -"Tfru10072_t",0,0,0,0.0859958870136414,0.0359791411768031,0.0608263828069052 -"Tfru10073_t",77.7617420895973,82.3580052557277,68.4907199774643,84.2673240405337,80.0801696026152,91.4232940222834 -"Tfru10074_t",10.7480638689319,12.8528612695558,13.4113468242502,30.6301407746304,36.4518488488701,26.1587591428187 -"Tfru10075_t",5.53298854934918,5.87478222115455,5.54881689787738,5.614556395677,6.33480344415535,6.14906809434375 -"Tfru10076_t",3.71240617484301,3.39374841124759,2.75292618043018,3.48448719111043,2.26115064164986,4.95442585343552 -"Tfru10077_t",8.02940086431651,7.60816330954615,9.23406155509657,8.69341112152015,8.57279698639273,10.9384856874459 -"Tfru10078_t",12.5739215233581,11.5346784897474,9.63816281802984,15.8647560276786,16.7433194154024,15.8717341985877 -"Tfru10079_t",16.2020012344684,13.0050331103984,17.5696738777782,18.0004747927669,18.6978456818246,17.1224095230359 -"Tfru10080_t",47.396899133742,55.3558623273754,37.7925381919431,4.40979207481743,11.7210375916096,7.70606720211303 -"Tfru10081_t",14.5470334852896,13.2119569446099,11.8119877777865,5.02440888516055,6.60044782158498,9.59355786984505 -"Tfru10082_t",54.4327589140443,45.088674952185,51.5837797282591,53.4762115860213,61.3119693216596,68.3753328246095 -"Tfru10083_t",80.3310901975154,111.117618668498,60.3321025494841,37.7407387425068,31.5801002696349,32.5271302000904 -"Tfru10084_t",0.144471843115129,0.0579823774866591,0.124412237261279,1.79326934811249,1.31297569276414,4.80938989183179 -"Tfru10085_t",3.99505867799003,3.43581037790343,3.48950124571183,6.49379947078893,4.89040121434347,5.51181243008278 -"Tfru10086_t",7.21751966720056,7.4441606000274,5.71414200019917,6.22139528555617,6.44852568550451,7.66538852338198 -"Tfru10087_t",2.51952395190845,3.66555135050151,3.0511314138093,3.17624640043496,2.86221317841556,3.5715404960032 -"Tfru10088_t",8.10749060356731,8.02245525576439,7.04197068900979,6.07279773834601,4.17408923291515,6.54536410796701 -"Tfru10089_t",6.11726044452287,6.5469422346587,7.42521911454939,6.38784843667973,6.75704239851231,5.32810851476922 -"Tfru10090_t",791.649649991523,894.263410930634,842.632467720278,951.199792599074,553.500196688615,210.154395422968 -"Tfru10091_t",0,0,0.2494679860946,0.299651185611326,0.2507373942011,0.63584544647977 -"Tfru10092_t",0,0,0,0.206667114039909,0.132652602949964,0 -"Tfru10093_t",0.0347150317237386,0,0,0.107725839455312,0.0901411293202302,0.0761963551566666 -"Tfru10094_t",0,0,0,0,0,0 -"Tfru10095_t",0,0,0,0,0,0 -"Tfru10096_t",0,0,0,0,0,0 -"Tfru10097_t",0,0,0,2.48348566417093,0,0.730573441023721 -"Tfru10098_t",0,0,0,0,0,0 -"Tfru10099_t",0,0,0,0,0,0.0688298542288664 -"Tfru10100_t",13.9527723658872,12.3785280188521,18.437940789339,15.9543089048906,17.2779522681476,18.9678253497597 -"Tfru10101_t",13.6233043413158,13.1865200589652,14.8371977103322,18.0981693821531,23.81407301999,15.8304287629144 -"Tfru10102_t",2.3897918994066,2.72980271950594,4.11594882965707,4.94391671665077,4.53467081635031,2.689936972708 -"Tfru10103_t",8.73375204059602,8.94662343789697,8.47750242848181,5.07626909486118,6.69543318970661,8.94590474700745 -"Tfru10104_t",15.2216821278959,11.2834280671984,15.5899832794962,7.82949979037911,9.5751894003331,9.73703918041627 -"Tfru10105_t",1.85583267652443,1.67130454244682,1.98794801419134,69.1070546816121,98.4536049417757,77.1293773360095 -"Tfru10106_t",0,0.107951181990904,0.0386049711672539,0,0,4.36224810934271 -"Tfru10107_t",35.4371043835924,33.1037206447015,38.6720736262283,53.7192852750487,46.8012743430635,37.5495638212053 -"Tfru10108_t",2.0490335797914,6.1993278533438,2.30746186012453,17.6080208880802,17.3258128113068,13.3770111442023 -"Tfru10109_t",10.3838912903839,9.00509539046689,11.593288645713,8.85180769420788,12.6458859684033,16.3397798793103 -"Tfru10110_t",11.8719276301162,15.3528686594116,14.1993554401244,13.3034540108502,12.7730894337381,10.4955057995974 -"Tfru10111_t",5.16706369433649,4.09870797498314,4.60667366507538,2.32652476238027,2.36767221007551,3.4246089773018 -"Tfru10112_t",7.28123408957554,6.28788211754309,7.43781419390235,4.98642498949153,6.21522996863098,6.13548415481475 -"Tfru10113_t",0.254268694828836,0.367373816678487,0.48172086903255,9.78401026142551,14.9653190485645,11.5712067832951 -"Tfru10114_t",5.3468513663602,3.38142937404359,6.9764431984025,29.7483988029759,69.0676341885673,70.2373152307209 -"Tfru10115_t",2.63447174544609,1.40975968676623,1.76452965774229,1.51391713984816,3.04030011087048,2.56996765824576 -"Tfru10116_t",21.6189231420881,27.2473981897071,21.7200456516224,30.0124675069403,34.1410375128902,37.3230272986357 -"Tfru10117_t",31.3702114111204,43.9700789431823,29.6750461535443,92.0611513813808,174.842341359466,176.831586544345 -"Tfru10118_t",2.74319597621053,5.78001471574154,6.20106136863719,34.7595375309139,37.395691363707,30.1053354251646 -"Tfru10119_t",7.00312672278948,6.34027462356785,5.18925652496618,7.43795119032628,6.2728906083978,7.34800392108554 -"Tfru10120_t",5.77056111632601,7.63965667899825,6.64728701574103,11.7828940782759,12.3892455528983,10.6371289976068 -"Tfru10121_t",0,0,0,0,0,0 -"Tfru10122_t",0,0,0,0.128930035352054,0,0 -"Tfru10123_t",0,0,0,0,0,0 -"Tfru10124_t",6.47428920865039,6.27771840786971,4.7724979090724,8.51844400033185,6.67963181469145,5.34314021918573 -"Tfru10125_t",7.46443550367928,5.51314466692914,6.35469126740973,6.1064052419173,6.14137198634451,6.97711489921044 -"Tfru10126_t",0,0,0,0,0,0 -"Tfru10127_t",0.0408015428710284,0.0491259142911495,0.140545344278648,0.759679062113221,0.670987392932522,0.31344493840552 -"Tfru10128_t",0,0,0,0,0,0 -"Tfru10129_t",15.0314944168451,12.3615755629379,14.6915010471737,11.9235515679589,11.0946480353966,11.7397589569591 -"Tfru10130_t",8.50737992622252,6.18851786548276,9.61556984377286,8.52488657799311,7.59353437501433,6.90509374631775 -"Tfru10131_t",293.190576652015,334.452081929858,227.719065696138,251.365112010453,250.350349901313,191.40797153985 -"Tfru10132_t",148.889639071495,130.861025338616,236.377030536407,322.633981792304,451.379746791518,460.647496691126 -"Tfru10133_t",6.46233591825716,1.94519703240402,10.4344770430924,0.835565708221745,9.08922947582082,1.1820202429113 -"Tfru10134_t",903.000495561345,523.135934565313,1675.04748433206,1461.02466230923,874.005262979034,940.399638406026 -"Tfru10135_t",2423.47524464207,1772.22029804038,4157.04164810333,3466.22601447647,2085.18166508687,2729.33099560872 -"Tfru10136_t",0.420051883857237,0,0,3.47595375309139,0.727138443183191,0 -"Tfru10137_t",10.73158062376,9.99079351850981,8.74108396858878,12.4729154734373,10.9505732784889,11.2317744151394 -"Tfru10138_t",0,0,0,0,0,0 -"Tfru10139_t",0,0,0,0.276747910277977,0,0.195748598173177 -"Tfru10140_t",0,0,0,0,0,0 -"Tfru10141_t",0,0,0,0,0,0 -"Tfru10142_t",0,0,0,0,0,0 -"Tfru10143_t",7.80627394778936,7.31026934918638,15.365461798393,6.53663869497274,2.73481272878634,1.63181574760295 -"Tfru10144_t",162.31131046134,129.629456246242,135.911612035907,218.512626711327,202.963400403075,182.306560941344 -"Tfru10145_t",11.4400420429854,17.2722224522429,11.8621507422286,11.189383318196,13.2360077893003,15.6296053009177 -"Tfru10146_t",17.4135432864867,22.9401955358413,19.3456107571144,44.8244036197702,33.8257440341547,16.4360682130662 -"Tfru10147_t",1.53945716596893,1.05916500026677,1.32570683709957,3.86722603419853,4.4732338782212,2.57445276759697 -"Tfru10148_t",8.61350411190507,7.88183824873846,7.31863702199605,7.30591783373617,7.35587762071854,10.2931918369532 -"Tfru10149_t",0,0,0,0.101755086448811,0,0 -"Tfru10150_t",4.96191634698977,3.57081696627617,4.56765212829012,12.0348704282186,12.1436562812671,5.75843737680932 -"Tfru10151_t",6.42862013555424,6.4501613494507,7.29748091497594,5.13836641761335,5.18481324704536,5.8792665920883 -"Tfru10152_t",0,0,0,0,0,0 -"Tfru10153_t",0.0486452673835828,0.0390466155280745,0,0.654131424293399,0.884186873586972,0.92535700954593 -"Tfru10154_t",0.572798023441687,0,0,0,0.495776211261266,0 -"Tfru10155_t",16.5988244427457,18.7617413152094,24.2124775213589,23.4767037759196,26.3880886639061,20.323124620012 -"Tfru10156_t",31.2385155503938,31.6474933292707,36.172857983717,24.3128534173811,19.5566115585371,20.747231385438 -"Tfru10157_t",0.262532427410773,0.158047277383558,0.282600452997789,3.05503747830298,3.91973067028439,3.74552708316989 -"Tfru10158_t",5.79745385499324,10.3223182083715,5.08326235153864,10.4671129327721,19.8891067269681,31.4651749173929 -"Tfru10159_t",1.82631253850973,5.16267855044967,2.73518774924136,9.52766151603499,7.42258524232368,4.9381191731967 -"Tfru10160_t",0,0,0,0,0,0 -"Tfru10161_t",0.976864846179621,0.301580970558965,1.68245851087056,1.55454103447736,0.195117650228048,1.0995538430479 -"Tfru10162_t",0.340352640532535,0.546388967051867,0.146547702837476,0.938812627438592,1.27654284421087,1.16206730259188 -"Tfru10163_t",2.52419467957354,1.76636299736323,2.89828754260906,3.14656830499413,2.85701545472594,2.27297601823277 -"Tfru10164_t",0.606573117483375,0.486884512758011,1.43646728455194,14.4308549316068,12.2064756707648,12.6480448018178 -"Tfru10165_t",3.8860981685699,3.03422415341352,3.74201979141899,5.70068109211791,6.05439073802656,5.37625418161756 -"Tfru10166_t",274.185302778875,328.892395226442,245.937655847517,227.57060145892,129.290151385836,84.8956048254669 -"Tfru10167_t",0.86608635846853,0.744847257183188,0.586010954080834,0.12798062419335,0.0535448043581142,0.181045831594632 -"Tfru10168_t",235.669043840034,287.834011594592,184.712466299831,12.6579330615848,26.6577759857667,73.9391472543169 -"Tfru10169_t",4.49553855633164,4.51060234227322,4.11330157674373,4.94073694001284,4.86380229553974,2.67239390549468 -"Tfru10170_t",0,0,0,0,0,0 -"Tfru10171_t",10.2124011131991,9.18837929753429,10.1220153584523,9.40520300772229,8.67029757283766,9.15033371704146 -"Tfru10172_t",5.2180358243135,5.1871926936142,5.25396503920208,4.31795497278433,3.96052472636807,4.84554938908376 -"Tfru10173_t",2.74217847028463,2.48123282555077,2.79078429547965,2.11445257977369,1.55353020502047,3.42891134936469 -"Tfru10174_t",0.256129197473925,0.102794977160037,0.661698621653359,1.32467749736714,0.886754199003891,0.56218042524126 -"Tfru10175_t",5.84882369927798,3.84114901995481,5.03672706102387,4.94993414206051,5.52257045455587,4.27921302588705 -"Tfru10176_t",31.1722713809844,31.2323602183929,28.7479029239014,25.3836096442858,23.1536188487279,21.3510207817944 -"Tfru10177_t",0.352097136510677,0.62176743938544,0.363851044262031,0.946927887472506,2.37706615960976,3.96714971218029 -"Tfru10178_t",8.64106732506316,5.39468040135877,9.04321449592924,1.92418868474702,1.66203072727586,2.23908432224662 -"Tfru10179_t",5.64248799204148,11.0711724653364,11.8776548601762,11.0244801869055,18.4497813939693,10.0912784788312 -"Tfru10180_t",4.99241993109011,3.45458529800126,5.04048021084581,4.45178503213548,5.36413605626944,4.03049572631985 -"Tfru10181_t",24.2337625302252,24.3798056599867,20.0341982679048,69.5190750618277,68.7375299570185,57.6825946062929 -"Tfru10182_t",12.3544671722717,12.8333660066926,9.88808228620637,44.8025180978042,32.0796371992584,34.6671444695487 -"Tfru10183_t",54.5302253828091,68.5326129606938,58.5424585584988,21.4122750370203,16.9410011211424,13.2594807870901 -"Tfru10184_t",0,0,0,0,0,0 -"Tfru10185_t",0,0,0,0,0.286274977631177,0 -"Tfru10186_t",398.219665361539,352.028131180142,331.195980374822,192.225301106509,106.198494040788,88.3640101246158 -"Tfru10187_t",0,0,0,0,0,0 -"Tfru10188_t",6.30077825785856,5.7171884688313,5.34729204976685,2.07801583065246,2.05495646986554,1.46981664802208 -"Tfru10189_t",7.460957084498,6.10854130704479,4.88301457684279,2.93264304212861,2.84139356128423,2.51100599645948 -"Tfru10190_t",1.52131466990549,0.678405483068255,1.0189537460202,0.524540304792463,0.731527608836208,0.247344305136329 -"Tfru10191_t",0,0,0.0838852564563355,3.21928153469818,5.33811985349302,3.86576881459785 -"Tfru10192_t",0,0,0,0,0,0 -"Tfru10193_t",1.61145223986152,1.37971365763651,1.57273295581378,1.55573377695906,2.41759584690063,2.43659444324515 -"Tfru10194_t",0.0240441833919426,0.0578994032773193,0.0621171001437612,0.0497417537649025,0.208110601941382,0.0703664107915028 -"Tfru10195_t",0,0,0,0,0,0 -"Tfru10196_t",8.71177619096251,12.426649867727,11.0382169012399,40.0056104013325,28.912638229609,22.8565579143003 -"Tfru10197_t",0,0,0,0.346210533176433,0,0 -"Tfru10198_t",7.0471337911992,8.46775584097366,6.1789935345851,6.14079272597487,3.36398568020693,2.2498649250123 -"Tfru10199_t",0,0,0,0,0,0 -"Tfru10200_t",14.9190057287681,10.0766905168856,12.5733485790722,12.3737931383735,11.1413199469866,12.4793705657237 -"Tfru10201_t",22.2741499999454,18.0198092738497,17.9731528186318,21.4072308384543,16.6983776096349,20.531126455575 -"Tfru10202_t",0,0.0510087027359944,0.109448889512003,1.44612296838144,2.03510759438563,2.9756156043027 -"Tfru10203_t",0.802281906412186,0.597977875321146,0.246745279561507,1.30407541896334,0.7936026665028,0.16770821235028 -"Tfru10204_t",4.27775610151642,1.52607649260503,6.54897570285116,3.0728021155334,0.411393744375214,0 -"Tfru10205_t",0,0,0,0,0,0 -"Tfru10206_t",0.173575158618693,0.0696627117944055,0,0,0,0.126993925261111 -"Tfru10207_t",1.80369099591877,1.72620863379564,1.55325236593995,4.16195948966351,4.32320131372335,5.68462981053204 -"Tfru10208_t",1.96056888614813,1.80976734584673,1.85718290698197,5.37414086679823,12.7270439296941,9.25203350945475 -"Tfru10209_t",53.8191476192085,66.8587876446807,53.9509955723051,59.619519273549,63.9344739105675,45.7495615753152 -"Tfru10210_t",0.329711054832996,0.582235914589349,0.340717657617428,0.818513442643183,1.36980554445813,2.12281211331289 -"Tfru10211_t",0,0,0,0,0,0 -"Tfru10212_t",0,0,0,0,0,0 -"Tfru10213_t",0,0,0,0,0,0 -"Tfru10214_t",173.400728410032,161.109605582451,176.959066771777,324.187575631044,236.643611958453,158.053010982114 -"Tfru10215_t",0,0,0.0732244088739209,0.0439771476858728,0.0367985042096756,0.0622115990145523 -"Tfru10216_t",0,0,0,0.164893441797504,0.827861605142152,0.583159960402066 -"Tfru10217_t",0.759129910585368,1.52334725188971,1.03506671941359,4.77681897544562,8.04889692378983,7.86826820066582 -"Tfru10218_t",9.89476691305836,7.1786517232124,8.07027522400027,8.16829449339142,7.49372574514953,9.46687218163915 -"Tfru10219_t",14.825360606726,12.4578442172922,13.830798640833,14.3766469567199,17.1091398396045,13.8974308063317 -"Tfru10220_t",0,0.74512160239762,0.999250220544667,0.480104109543009,1.40606881278518,0.509378948837384 -"Tfru10221_t",0,0,0.273002701763902,26.7254934789573,41.8293364549743,30.152670858223 -"Tfru10222_t",0,0.305589901889658,0,0,0.109839643985376,0.0928475223963409 -"Tfru10223_t",0,0,0.201520100187838,1.21029030400118,0.202545527349078,0.342423731623274 -"Tfru10224_t",0,0,0,0,0,0 -"Tfru10225_t",57.9970113752124,55.966386143538,59.7678440289333,41.6849783841543,53.2435129082108,50.3888688424365 -"Tfru10226_t",13.2374744037399,13.2644690610134,15.1247995276922,10.6498068130246,14.0035930870501,12.6601565038883 -"Tfru10227_t",123.073323943864,151.750510544928,120.648071784737,145.694782869889,135.5663476039,80.1519036484061 -"Tfru10228_t",0,0,0,0,0,0 -"Tfru10229_t",0,0,0,0,0,0 -"Tfru10230_t",2.23852101115142,4.86197685075437,5.1027542610259,2.45169151863812,1.93751622791759,2.60118591741724 -"Tfru10231_t",2.97142811731808,2.81876387530804,3.02409745201492,0.558835008535593,1.169032866854,1.58109478653062 -"Tfru10232_t",0,0,0,0,0,0 -"Tfru10233_t",1.85658291207619,1.39710300449554,1.498875330817,0.720156164314513,0.903901379647613,0.933861406201871 -"Tfru10234_t",2.25089632734711,2.02912030760094,1.61033333150925,0.859675289305371,0.599454611033133,0.912094869641219 -"Tfru10235_t",11.7047161468329,11.9949521021969,11.3491019464999,8.75688960663145,10.0728298032024,11.2274650626752 -"Tfru10236_t",0,0,0,0,0,0 -"Tfru10237_t",0,0,0,0,0,0 -"Tfru10238_t",9.72751731037812,9.36970806551786,8.346411021085,10.135149364277,11.5117496689212,11.8789315622347 -"Tfru10239_t",27.2971402269243,22.9113837520615,30.1619379626839,22.0470360452013,25.3527498735979,20.0627791718147 -"Tfru10240_t",0,0,0,0,0,0 -"Tfru10241_t",0,0,0,0,0,0 -"Tfru10242_t",0,0,0,0,0,0 -"Tfru10243_t",36.7007789308712,54.3150415836463,33.8271777731688,37.072885591845,27.0505427668832,13.4258151156593 -"Tfru10244_t",0,0.230148481286637,0,2.66924776261284,1.24085058563684,0.209778361182176 -"Tfru10245_t",0,0,0,0,0,0 -"Tfru10246_t",0,0,0,0,0,0 -"Tfru10247_t",0,0,0.466746554628603,0,0,0 -"Tfru10248_t",0,0,0,0,0,0.0463887243972662 -"Tfru10249_t",28.0802709192965,24.5476983388631,27.4698271051894,22.1333262099275,24.731824791654,23.9646295169458 -"Tfru10250_t",0,0,0,0,0,0 -"Tfru10251_t",0,0,0,0,0,0 -"Tfru10252_t",26.4971603997964,22.835062212353,26.0020054944078,18.1658952255082,14.311649065097,19.6868529028251 -"Tfru10253_t",32.6185541095843,31.1738689394161,30.8176583380829,22.6956477593607,26.3029129587216,29.7882343013311 -"Tfru10254_t",0,0,0,0,0,0 -"Tfru10255_t",0.0396836923814112,0,0.0341736967252876,0,0,0.0290340386520443 -"Tfru10256_t",5.51731896484988,10.3335055849144,6.08160134227115,47.2540998395304,57.3688036171677,39.3979192582386 -"Tfru10257_t",0,0,0,0,0,0 -"Tfru10258_t",0,0,0,0,0,0 -"Tfru10259_t",0,0,0.18177315569707,0,0.182698101302309,0.617739294737464 -"Tfru10260_t",23.9331887314007,19.9948183480594,17.455507050282,19.1985817757954,25.3652945296462,20.7265899414529 -"Tfru10261_t",0,0,0,0,0,0 -"Tfru10262_t",0,0,0,0,0,0 -"Tfru10263_t",16.4560528597991,22.3840936654164,16.8026519193099,35.1916329945826,29.6647981672867,24.2995835229015 -"Tfru10264_t",95.8507654439279,81.4632946513862,109.246886527998,106.144896487013,140.547564856877,112.204672971636 -"Tfru10265_t",1.82631253850973,1.4659457612388,1.57273295581378,11.6631718558359,10.9276949400876,4.99621469288136 -"Tfru10266_t",25.1643985720925,23.1200588629661,27.1379782476918,37.6428171417731,37.3286739956716,35.4061404529825 -"Tfru10267_t",0,0,0,0,0,0 -"Tfru10268_t",6.91224619005579,8.96268104656123,9.15768556549795,4.39994145960934,1.84085681818529,5.83529048984598 -"Tfru10269_t",6.93195569590582,6.42560100161842,5.71190260098902,4.98644674527246,3.57858710257696,3.84880688755747 -"Tfru10270_t",36.7879834588345,36.3475182296963,37.7856605689782,20.3409714054313,25.2993232222177,27.9920495387644 -"Tfru10271_t",0,0,0,0,0.177784460435988,0.150281319868894 -"Tfru10272_t",27.3741677120447,25.0846144264626,26.0409740059343,14.1576768033217,12.4885735827611,12.2338160810126 -"Tfru10273_t",47.0458109804959,34.5259545602457,29.5170521074886,12.5134335080663,14.5427688601044,13.7681733977388 -"Tfru10274_t",8.09648062634596,6.35827743291706,6.91267524947202,9.33911259084637,9.58779642586074,8.86170663433449 -"Tfru10275_t",0,0,0,0,0,0 -"Tfru10276_t",3.75575802037059,4.91867918947417,3.74495470890246,2.24914654611796,4.27728495990112,1.88010771233626 -"Tfru10277_t",9.98724758821403,15.119487794455,10.7506745755802,16.8252569123632,23.6764921403618,25.1716613012744 -"Tfru10278_t",0,0,0,0,0,0 -"Tfru10279_t",33.6109802066393,29.0181391485499,33.0878367731423,29.4130939883126,34.2921415067603,32.4653894130641 -"Tfru10280_t",0.261555985763628,0.0849874484285351,0.089903628213859,0.160133004595733,0.089329047074102,0.11326485225991 -"Tfru10281_t",0,0,0,0,0,0 -"Tfru10282_t",0,0,0,0,0,0 -"Tfru10283_t",0,0,0,0,0,0 -"Tfru10284_t",0,0,0,0,0,0 -"Tfru10285_t",0,0,0,0,0,0 -"Tfru10286_t",174.741583684611,192.579911686241,114.934137442603,4.72205038155811,37.0429018225399,8.67469146228878 -"Tfru10287_t",0,0,0,0,0,0 -"Tfru10288_t",0,0,0,0,0,0 -"Tfru10289_t",0,0,0,0,0,0 -"Tfru10290_t",0,0,0,0,0,0 -"Tfru10291_t",0,0,0,0.204467867828905,0.171091398396045,0 -"Tfru10292_t",6.84043535876729,8.35110203525796,6.45502975233564,5.21138848891078,4.25434486504061,5.42426905342485 -"Tfru10293_t",29.6898795880076,29.9229499282974,28.3764892265291,31.1238331298991,26.043310326371,25.8133769476864 -"Tfru10294_t",0.544343693983461,0.145644719259146,0.234381369224948,0.281529731621872,0.157049339780387,0.92927736238584 -"Tfru10295_t",12.0014823959211,11.8227573731077,13.3886552277394,9.02845130673087,10.1516081353497,7.7829134195738 -"Tfru10296_t",6.66470629919625,8.02444631726122,6.34346570069358,3.44692699941213,4.55410298444587,5.64605977528313 -"Tfru10297_t",14.4768545395472,15.6993317965184,15.2632596390426,12.7950790999749,10.3417152438565,11.0089381276516 -"Tfru10298_t",0,0,0,0,0,0 -"Tfru10299_t",0,0,0,0,0,0 -"Tfru10300_t",5.63198056568363,7.15774634258496,4.44582612090376,7.76749442031595,2.43733556374254,6.86760444987461 -"Tfru10301_t",5.39912447117272,6.41398376768234,9.29893521432312,8.71222341713137,6.5423767381521,8.21640902563404 -"Tfru10302_t",0,0,0.0745064016142471,0.0894941748993663,0.0748855245296798,0 -"Tfru10303_t",0,0,0,0,0,0 -"Tfru10304_t",0,0.0226438902004649,0,0.145901349609276,0.317421079965798,0.0619191334718378 -"Tfru10305_t",10.4237395107852,5.57795610184806,5.34311048503943,4.10747858563236,2.36293142541066,9.16982428724394 -"Tfru10306_t",6.56521034103931,6.34323853271201,3.35030812005483,4.21289619133724,2.6307469000839,6.13761089438504 -"Tfru10307_t",6.97849775098285,7.36813377501876,5.1312296948148,5.99685312034936,4.50686447212585,7.77641012499859 -"Tfru10308_t",0.503056148332021,0,0,0,0,0 -"Tfru10309_t",7.84844320648413,7.71403298573704,7.72423278203298,6.54433618909007,6.86241238085185,8.14455988166492 -"Tfru10310_t",13.75328899941,12.7778251890235,14.5563358876558,14.9243745843311,15.7015164329815,12.0995832534014 -"Tfru10311_t",1.15534899292757,0.794893968766027,0.284266074528227,0.512173932184389,0.428568827023492,0 -"Tfru10312_t",0,0,0,0,0,0 -"Tfru10313_t",2.54226724755412,3.20007692308937,3.53270002316906,6.45465965154521,8.65164722631994,6.42550831747552 -"Tfru10314_t",0,0,0,0.0591551013119705,0,0.0418414294257166 -"Tfru10315_t",0,0,0.063184031412606,0,0,0.0536812749575351 -"Tfru10316_t",0,0,0,0,0,0.14565180053644 -"Tfru10317_t",0.123544671722717,0.198333838285249,0.106390758775638,0,0,0 -"Tfru10318_t",0,0,0,0,0,0.352235299864629 -"Tfru10319_t",27.3581618268757,28.908450411629,26.7993695670668,23.8027267874736,21.9089974402587,20.4438133770343 -"Tfru10320_t",0.118324474325982,0,0.10189537460202,0.489570951139632,0,0.34628202719086 -"Tfru10321_t",3.83669437223933,2.76105689833323,3.75969862507924,3.69491146982155,2.86274977631177,4.54938238085 -"Tfru10322_t",5.2461569754625,4.67246698577909,4.14641828042607,3.49379440537415,5.16274514834943,4.8898636132191 -"Tfru10323_t",0,0,0,0,0,0 -"Tfru10324_t",1.13221532036991,0.90880734524238,0.780007719325433,2.10805820605273,2.74391865352147,2.15376220415879 -"Tfru10325_t",0,0,0,1.17430870036871,0.280748433661464,0.237316833306478 -"Tfru10326_t",11.0326880338407,9.83066759886161,10.3724580724393,10.5744376223563,9.1987393414741,9.99732900790481 -"Tfru10327_t",2.52662787282549,3.04211300828502,1.90383463072195,3.26687382809341,4.10040475479243,3.0039314952741 -"Tfru10328_t",11.2982018570449,12.5067121815855,11.8279840345233,8.02025660872975,6.64714896786274,6.12309415205638 -"Tfru10329_t",9.66187856833123,9.13047457815615,8.20232831930939,10.064955810338,8.89647361153985,8.97409927318239 -"Tfru10330_t",0,0,0,0,0,0 -"Tfru10331_t",0,0,0,0,0.0825355781138695,0.418604266694967 -"Tfru10332_t",2.93913854593985,2.65408838988132,3.58564773016436,4.05359038261386,5.0878491651302,5.28635354191878 -"Tfru10333_t",1.25388622046936,0.575125842362342,0.84840391859464,1.29699766906395,1.31784152815717,1.17950008195608 -"Tfru10334_t",0,0,0,0,0.542640629234391,0.458694476310507 -"Tfru10335_t",0.952344352064991,0.764428396953671,0.878692906487051,0.633270926676568,0.412143247148367,0.597231350539702 -"Tfru10336_t",0.165103917664161,0.176700963031732,0.0473931974893114,0.0853902821755171,0.0476343559242182,0.181194083995218 -"Tfru10337_t",1.66109358188398,1.79049255827256,1.49236159289655,0.823953834335375,1.65471990094801,1.21564142990637 -"Tfru10338_t",0,0,0,0,0,0 -"Tfru10339_t",1.48035906205194,1.44288179394429,1.09269803852638,1.91407144994019,1.2355404635586,2.35957750120141 -"Tfru10340_t",0,0.134867010033969,0,0,0,0 -"Tfru10341_t",1.28652950645402,1.96207748135177,0.886318112924152,2.92767927136334,1.3362421620518,3.10619751036825 -"Tfru10342_t",10.1130974881268,8.8846039785411,10.5604173070946,29.6526860453294,17.3686149461767,13.5164870897816 -"Tfru10343_t",14.0413944178907,5.73089277764742,17.8302472780928,31.756234713087,36.8718927279862,22.2876137614061 -"Tfru10344_t",1.26739792543132,1.16264663822387,1.8710098957095,1.68553791906371,1.2536869710055,2.64935602699904 -"Tfru10345_t",0,0,0,0,0,0 -"Tfru10346_t",5.03056148332021,4.84552131858572,5.19849456053417,0.260176179123607,0.43541224142706,0.276040687843014 -"Tfru10347_t",10.0447189618035,9.47226491877375,8.71052098604555,10.462737049439,8.81564166066577,9.81590838364393 -"Tfru10348_t",0,0,0,0,0.186925049661489,0 -"Tfru10349_t",0,0,0,0,0.420311238834214,0.355289363158253 -"Tfru10350_t",0,0,0,0.330413854856596,0,0 -"Tfru10351_t",9.64164035177928,10.3910376912207,10.6254141428896,4.88195751838678,4.05586852337333,4.73567074103712 -"Tfru10352_t",0.347629145261162,0,0.0997871944378399,0,0,3.39117571455877 -"Tfru10353_t",1.23544671722717,1.23958648928281,0.797930690817286,0.319481043482664,0.26733030999382,1.129872423279 -"Tfru10354_t",9.36592112535279,6.75291214721664,8.52710051725337,3.85053366834831,4.20147345759873,5.34905075766598 -"Tfru10355_t",8.41947448258105,7.35010405817901,7.40921743631364,4.95838318838932,3.45749808389959,3.01255231043695 -"Tfru10356_t",21.966015944828,25.6742243872006,26.2170255111343,22.3226387813208,15.6768379952339,8.17654465580254 -"Tfru10357_t",20.0847430327625,21.3221622547278,13.5764454129118,8.93561376116038,9.34625248307443,7.58437756212373 -"Tfru10358_t",0,0,0,0,0,0 -"Tfru10359_t",0,0,0,0.204227600064124,0.170890350924369,0.216680586932001 -"Tfru10360_t",39.9131331047941,30.6875130253074,40.3412146654343,27.9620791416897,26.6996147106328,26.0506210592265 -"Tfru10361_t",4.22355641903986,2.58885485439977,3.24034742450115,4.28933964046926,5.58314709573931,4.7756216501299 -"Tfru10362_t",7.37607940411846,8.17265748926557,6.44934877059537,7.04458712416178,5.40506895552277,7.41619897716596 -"Tfru10363_t",21.445865025073,21.4160679249921,19.4860822907259,15.6330583367678,15.7851159525195,11.9841423179068 -"Tfru10364_t",15.1900681247267,13.156998441967,19.1876322330602,6.37311631390141,12.8792048977096,15.5647222530818 -"Tfru10365_t",21.5592894606245,18.4426573962114,20.0476080391684,23.4522180931467,26.7201476109486,27.9925212221335 -"Tfru10366_t",24.5439331135281,43.1169155617781,29.8320398062707,73.2619634937875,57.2970526181078,31.809964183935 -"Tfru10367_t",0,0,0,0,0,0 -"Tfru10368_t",8.96313242227016,10.5479171500347,10.9892226785976,9.82129790091372,11.1766306818393,10.8925422477125 -"Tfru10369_t",9.66353127983254,8.25716387963077,13.0195444319872,4.35300330860238,2.83300692149295,5.35966198857097 -"Tfru10370_t",0.509926414394218,1.22792421882218,0.98802950486632,3.02625053672745,1.65509509070529,1.11924236406151 -"Tfru10371_t",0,0.118512311101906,0.76287222461266,0.160409750705519,0.127792345023408,0.216045904486389 -"Tfru10372_t",0,0,0,0,0,0 -"Tfru10373_t",0.131061430220667,0.10520047584553,0.677182988774732,0.271135238150654,0.113438134661964,0.0958893289023053 -"Tfru10374_t",6.26224138777991,6.0318960909688,6.63722164838843,4.68376795858071,5.33679591327112,7.68313247829721 -"Tfru10375_t",8.79689809125104,9.88554000248989,8.3330144046259,5.00464545602163,3.04560604474635,8.68877809063978 -"Tfru10376_t",58.2821988851917,63.008181250245,67.3719479946728,61.64386733998,75.8950750072455,60.8888248905054 -"Tfru10377_t",0,0,0,0,0,0 -"Tfru10378_t",0,0,0,0,0,0 -"Tfru10379_t",0,0,0,0,0,0 -"Tfru10380_t",26.6785157991124,26.5516046217638,23.7284665843468,12.1254200689234,10.787539052838,9.61161721422907 -"Tfru10381_t",0,0.581323316829279,0.623669962787562,1.4982559221735,0.626843483041352,1.05974240663837 -"Tfru10382_t",0.609539011275486,0.808351164241455,0.59337180288747,2.74128844881024,3.34896570046517,2.8696620991495 -"Tfru10383_t",75.2923188045992,58.2091104627745,69.6156889497949,75.4216380387754,102.896949507055,106.114207058746 -"Tfru10384_t",8.33460244030176,8.77459698639411,9.51780447307002,7.05935970703319,4.86152949072874,4.55133081388706 -"Tfru10385_t",3.32415159887022,5.09389786099524,3.38307304883684,1.87551461497737,3.66184827502326,5.5274334376239 -"Tfru10386_t",2.69455948304714,3.1241467042794,2.11416561273328,6.37960150692111,5.80466896910316,8.19242066110665 -"Tfru10387_t",0,0,0,0,0,0 -"Tfru10388_t",0,0,0,0,0,0 -"Tfru10389_t",0,0,0,0,0,0 -"Tfru10390_t",0,0,0,0,0.341780701848738,0 -"Tfru10391_t",13.667887384976,14.3757261747288,12.5818636465102,20.4754639032031,18.0509823903821,14.3102383326489 -"Tfru10392_t",0,0,0,0,0,0 -"Tfru10393_t",5.94763723717109,1.19351335181814,2.56091027545513,2.30704892929637,1.28697068369916,2.7196928868893 -"Tfru10394_t",1.46743016194668,2.12018007040301,2.085073036616,1.89735466871801,1.71464960401276,1.77148207359866 -"Tfru10395_t",2.55925651091827,2.14358161643395,3.25795277204338,1.38117367672505,3.08191128236584,1.70962418060123 -"Tfru10396_t",0.424447314483582,0.851599304197552,0.182799696593141,1.09730677813441,2.20074371086115,1.4782879708051 -"Tfru10397_t",0,0,0,0,0,0 -"Tfru10398_t",0,0.57147038149987,0,0,1.23243803929354,0.260445168755838 -"Tfru10399_t",13.8244923801116,15.6846918314822,13.0497019308346,26.1246524164305,32.6752085227889,25.38351363083 -"Tfru10400_t",44.7334364318415,39.378957289029,48.2163665809873,18.3051982316106,12.6366364906616,10.897550103799 -"Tfru10401_t",0,0,0,0,0,0 -"Tfru10402_t",0.44215987774446,1.24219614504972,0.761533852288778,1.60076817576577,0.57405666567094,1.13225110206485 -"Tfru10403_t",1026.38764664247,709.672058519707,1829.50230470506,1445.86154111713,1460.08156463083,1075.42756849539 -"Tfru10404_t",11.333305645827,22.0927757336159,24.4767090425151,413.653382929451,188.572932653649,84.7612388183881 -"Tfru10405_t",0,0,0,0,0,0 -"Tfru10406_t",0,0,0,0,0,0 -"Tfru10407_t",0,0,0,0,0,0 -"Tfru10408_t",0,0,0,0.236138162574143,0,0 -"Tfru10409_t",0,0.610210845609111,2.3214799373101,0,0,0 -"Tfru10410_t",0,0,0,0,0,0 -"Tfru10411_t",0,0,0,0,0,0 -"Tfru10412_t",0,0,0,0,0,0 -"Tfru10413_t",0,0,0,0,0,0 -"Tfru10414_t",0,0,0,0,0.166952402089288,0 -"Tfru10415_t",0,0,0,0,0,0.0674698790629832 -"Tfru10416_t",15.8495413425686,25.3188996532173,15.6659403535428,24.0667801677796,28.6530390250625,21.5356204038517 -"Tfru10417_t",304.15850759807,312.975450857259,281.776116658358,187.405042712362,157.798229840612,120.711164424366 -"Tfru10418_t",3.54931590036697,3.44498549582969,3.38900737694361,2.0276908936188,1.87665216023945,1.89056397556827 -"Tfru10419_t",12.3206193170052,11.9000302971149,13.0583725839687,4.83160372609399,4.39447084921348,6.14155311722066 -"Tfru10420_t",0,0,0,0.160329970161042,0.268316768702284,0.113404169421361 -"Tfru10421_t",0,0,0,0,0,0 -"Tfru10422_t",8.32419891790257,9.35434292156341,7.83010035623141,6.35845198736229,7.98078779103502,14.8040845313532 -"Tfru10423_t",5.09042823506155,6.58461426495403,4.16287467641729,6.21247183420866,5.54704566508537,7.36830490508015 -"Tfru10424_t",0,0,0,2.86479704925114,7.59100572553881,0.675440217872283 -"Tfru10425_t",2.03908681484096,0.982041335198805,1.75596397979209,714.173507765014,1037.4077109298,788.602685053963 -"Tfru10426_t",53.823597321368,57.032744073687,61.5551685011048,34.464965178957,41.7796495320511,25.6278046055744 -"Tfru10427_t",166.450466126606,189.696121589835,168.693982559577,128.317918922532,122.662139247258,103.542776015931 -"Tfru10428_t",0,0,0,0,0,0 -"Tfru10429_t",0.587485152247576,0,1.51774229302229,1.21536844513621,1.52546526541848,1.28947677957368 -"Tfru10430_t",1.48603260798551,0.795206427087082,2.13283360753048,1.43465072356366,1.54345424260583,2.10198907425112 -"Tfru10431_t",20.3393543762452,25.7312058617441,24.5594667363131,25.8409719802189,22.005505517386,16.0132655863458 -"Tfru10432_t",41.456817780166,65.8489056823818,44.5785612749723,46.5124359911054,43.4764238874545,34.0224352041569 -"Tfru10433_t",6.68854063520103,7.45147172802644,6.25638998757493,19.2644657214914,20.0125268165037,18.3509272645671 -"Tfru10434_t",0,0,0,0,0,0 -"Tfru10435_t",1.77988086380185,2.28588152599948,3.67859572715766,0,0,1.56267101253503 -"Tfru10436_t",4.10129398411791,2.54866790615375,4.78507097737358,7.25297436668675,5.03843960630872,5.22694996948724 -"Tfru10437_t",0.200981762611118,0.322648349363563,0.173075875520177,0.103945985439336,0.260934848032245,0.14704559767076 -"Tfru10438_t",7.1243859641125,6.90838412240024,6.29988306375492,16.4697296496789,16.7196318182134,19.485508436706 -"Tfru10439_t",8.8630947493877,8.36175462210609,10.2369188093919,7.47330056914648,8.76201824035745,7.56020235864446 -"Tfru10440_t",3.23116833736336,1.81551744276497,2.2260220297672,1.0026789672379,1.67801179196121,1.65482853378709 -"Tfru10441_t",0,0,0,0,0,0 -"Tfru10442_t",0,0,0,0,0,0 -"Tfru10443_t",0,0,0,0,0,0 -"Tfru10444_t",0.246004031541574,0.0987313397027593,0.105923449439874,0.381693311100811,0.638774620658733,0.179985533898617 -"Tfru10445_t",0,0,0.637407189140387,0,0,0 -"Tfru10446_t",0.882461940876549,0.283334054693213,0.455960394752735,1.09536357765485,1.22208141711461,0.903897938623202 -"Tfru10447_t",0.155000695150272,0.373248182750837,2.13566689202757,0.320659940322084,0,0.453616677685444 -"Tfru10448_t",0.107019588243882,0,0.460800738646076,0.332097492333572,0.0926291010424447,0.234898317807813 -"Tfru10449_t",0,0,0.142133037264114,0,0,0 -"Tfru10450_t",0.86608635846853,0.384522914623862,1.65740471861246,2.28943116612548,1.97512689451258,2.32342150546445 -"Tfru10451_t",0,0,0,0,0,0 -"Tfru10452_t",0,0.328543264394566,0.264357062000368,0.846760962994247,0.619971876039261,0.598928719380051 -"Tfru10453_t",0,0,0,0,0,0 -"Tfru10454_t",0.426448613053033,0,0,0,0.369105808722432,0 -"Tfru10455_t",0.0785143708144369,0,0.0676128186611532,1.05578034556514,1.15526668543124,1.03399166063065 -"Tfru10456_t",1.0348422670615,0.755134434680678,1.62028479210378,4.76824562994059,2.76850023160453,1.72074635572166 -"Tfru10457_t",97.1754752733992,145.358355797604,95.4278327868068,355.236987280422,383.653654351447,350.565656890242 -"Tfru10458_t",109.946466244506,182.839839106445,104.391469348976,401.251037269587,413.346484145052,488.832858350694 -"Tfru10459_t",15.5274351549986,17.7652406320608,17.3629718321841,17.962834308555,18.454272213201,13.3103646796432 -"Tfru10460_t",0.117826615387724,0.0945771458863739,0.101466642310566,1.34065537461449,2.24362492987801,1.98274386536702 -"Tfru10461_t",0,0.0644679780277099,0.0691641644048125,0.0830772885538094,0.0695161035547983,0.117524014964393 -"Tfru10462_t",8.63892100928446,9.94920565824363,8.40978516461974,3.49667478887732,2.7091596243785,4.21370007751621 -"Tfru10463_t",0,0,0,0,0,0 -"Tfru10464_t",2.95558894824922,3.45075505417405,3.23936041645226,0.463213453237125,0.697680809024383,3.40744468120644 -"Tfru10465_t",4.11479396431579,5.16072742476923,3.61728579837169,3.10353013668874,2.67112081169335,2.69693629850433 -"Tfru10466_t",3.85368700786456,8.35185612595681,2.65488865935537,1.59447419866577,2.33484821205612,4.79314686719459 -"Tfru10467_t",18.5360973659421,15.5984976017936,23.1712257546941,28.4508670181857,28.7232623463823,21.4362130355339 -"Tfru10468_t",0,0,0,1.36490330618772,0.380700755593294,1.93083957569773 -"Tfru10469_t",0,0,0,0.16242774547156,0.135913727697793,0.0574439811461474 -"Tfru10470_t",10.31866584258,11.1411877854148,9.51503438267337,7.2730554072836,6.95523728262182,8.01718171648405 -"Tfru10471_t",3.3604150708579,3.16239885596893,5.28872130520551,9.10939604258432,9.22713610660048,12.5473501438674 -"Tfru10472_t",3.81550018367433,3.00694407177305,6.92989517111671,9.47204573509626,11.768714687358,11.2169927511391 -"Tfru10473_t",9.34681313039874,8.28169820611365,9.31489905160093,5.82385780684674,8.36824246097909,12.9667128521147 -"Tfru10474_t",5.51892986087346,11.8131687620469,5.80878011414768,9.51447195185015,3.18454792633557,17.9460028689356 -"Tfru10475_t",2.16230276568803,2.50484209919773,1.98903109123685,4.70204331911309,3.27520679292809,3.32583681423804 -"Tfru10476_t",0.0391291927207487,0.439715449575121,0.168480940771853,0.404745430029272,0.609617698057635,0.458053543186792 -"Tfru10477_t",20.2668345236852,23.1936896236762,19.5264313001275,47.8082015005204,52.2196557126782,40.0305883264148 -"Tfru10478_t",0.236399231154266,0.237191364815282,0.178128741390094,0.3056589652736,0.639411223340829,0.454015566779434 -"Tfru10479_t",0,0.245212745516308,0,0,0,0 -"Tfru10480_t",13.9839381919436,11.9101107971548,12.134224279163,15.3480804218457,11.5954097356405,11.9493699535398 -"Tfru10481_t",0.475530434555363,0.254466056667866,1.36501350881951,0.32792016538598,0.411587798028221,0.231943621986331 -"Tfru10482_t",0.0782583854414974,0.21985772478756,0.235873317080595,0.323796344023417,0.40641179870509,0.601195275432665 -"Tfru10483_t",0.48300331604895,0.594469381138614,0.3604807618155,1.33229350444285,0.696759719416626,1.01303088253516 -"Tfru10484_t",0,0,0.0289267157006933,0,0,0 -"Tfru10485_t",0.581163252069967,0.777480841856087,0.778508857451249,2.47137372913876,2.2915200745973,3.5433355011363 -"Tfru10486_t",9.26341775899394,9.11742060481676,10.0095017891409,6.86703911578175,6.28061296422341,7.42292662644624 -"Tfru10487_t",4.79586796529916,4.97786700420654,4.55721045464151,2.90803217532252,3.29216224275854,4.47678585349601 -"Tfru10488_t",14.8810189571267,16.2714976269652,13.1605005497073,14.4435962265828,12.9296631023359,12.7125686876399 -"Tfru10489_t",116.854422423507,178.799533687872,100.750652200389,98.0372323547137,79.9019763732436,95.4673730115367 -"Tfru10490_t",3.80554898209714,3.47118248199989,4.07161888080273,5.3081654774388,3.49345854652185,2.9530227782062 -"Tfru10491_t",0,0,0,0,0,0 -"Tfru10492_t",30.5022291047101,32.9905455313863,33.0564271420429,31.0162027198924,35.3501150839828,36.3116661128139 -"Tfru10493_t",4.20441181247281,5.56217047869474,4.15702909173392,9.98652144076302,19.4757191918389,10.5954598032495 -"Tfru10494_t",0.390745938471849,0.392055261726655,0.75710632989175,3.94076152240012,4.6503039971018,3.93090498889625 -"Tfru10495_t",1.58652689946079,2.18309908328367,2.14695020406953,3.75102922995473,2.81177635403572,6.35654845326748 -"Tfru10496_t",4.636024136217,6.40505532602797,4.83917832558086,8.6608212242578,8.36573994832834,7.64715794495401 -"Tfru10497_t",0,0.0827404969533553,0,5.22459306446251,6.60223862522161,14.6309467562175 -"Tfru10498_t",1.35500607695883,0.155376739670471,1.16686638657151,0.600683252262336,0.335086840176586,0.708122809059651 -"Tfru10499_t",78.2200605973573,78.6860125047039,82.4058820330384,50.3319784682822,48.0069637216472,39.9114112778293 -"Tfru10500_t",0,0,0,0.174846768264154,0.146305521767242,0 -"Tfru10501_t",6.76425498855591,6.60258473575843,7.62290844189661,7.1695865185533,5.49329241370999,6.53753618431651 -"Tfru10502_t",3.6861695930329,1.23857458194461,4.79844034477878,18.6211808201324,7.93916463475524,2.00702236167764 -"Tfru10503_t",40.4657312197548,40.9543800103152,41.1239671916603,52.7762611725917,37.9613039148741,22.5724340873235 -"Tfru10504_t",0,0.160301517473022,0,7.23009397929072,8.23936587759083,3.31190496687297 -"Tfru10505_t",0,0,0,0,0,0 -"Tfru10506_t",0,0,0,0,0,0 -"Tfru10507_t",0,0,0,0,0.304242026436482,0 -"Tfru10508_t",6.38788579137734,5.28280914879603,5.16755114053099,14.216170303542,22.6183617119195,31.2990281604366 -"Tfru10509_t",31.1734590706023,32.3453113089911,31.4534521071,26.4431247716948,24.8052983879454,31.7938989431915 -"Tfru10510_t",0.161299923401179,0.0215787216054351,0.138903774657473,0.834228900741932,0.465368603637242,0.590064574333226 -"Tfru10511_t",0.821330499162196,0.470904364643747,0.808332021982502,2.79144330730104,2.74200250921036,6.86760444987461 -"Tfru10512_t",0.891730256233241,0.866464030944495,0.969998426379002,3.49537248914217,5.40276049962929,8.03509720635329 -"Tfru10513_t",20.8275308928499,20.2509287512307,18.2630290367897,16.6181880431792,14.1998933891454,19.6149512187059 -"Tfru10514_t",1.8650880932433,1.56241844942886,0.968773572993564,0.474647900386895,0.320297085359524,0.812242002815316 -"Tfru10515_t",5.07620958395613,4.0952614672737,4.70346725883702,2.62328280058522,2.48211602040862,2.02004055656072 -"Tfru10516_t",0.272785860141102,0.64014344439063,0.872499225825155,0.483082258933257,0.814004048604018,0.105251792899857 -"Tfru10517_t",0,0.199507411292854,0,0,0,0 -"Tfru10518_t",25.1845266648919,25.1756725035755,26.3293590191214,18.3602645697028,18.5806394220483,14.9583110196937 -"Tfru10519_t",17.8597432672597,20.6657069488826,18.8953747391476,30.9496158302587,19.1922791740235,9.02799884804885 -"Tfru10520_t",0.781966275088341,1.20075848674517,0.9661710347735,0.91435448786297,0.912233579064302,0.621864223253518 -"Tfru10521_t",0.679558153864084,0.340917618892743,1.1704059206056,7.73215192800915,3.45556186345904,4.47470607431668 -"Tfru10522_t",20.0999038980397,19.6117500264296,20.7294315092934,14.4416416675717,15.3136606229125,15.0580590692129 -"Tfru10523_t",24.0223532932895,22.9317492828356,21.0959640260449,17.407845936322,13.6852388741263,15.0931972433108 -"Tfru10524_t",8.55614915301817,7.38997315254626,8.79006912290442,6.57305131987204,7.70879350128695,7.87074917371722 -"Tfru10525_t",3234.39950570067,3882.30659476067,3627.7568888406,14354.3169132594,12495.778469992,4798.31842039332 -"Tfru10526_t",0,0,0.475958657680478,2.28681167966534,0.478380554725775,0 -"Tfru10527_t",54.472970416136,62.1075466589552,50.6880812510683,94.2049886586232,69.379196680791,46.0400702903313 -"Tfru10528_t",10.5089790986961,8.68200210898997,7.83260128981728,11.3152847119654,9.89376374777421,11.6005745685482 -"Tfru10529_t",4.29820532319034,3.76373051257589,3.70140872391522,24.655020806811,34.1585966332569,24.5860239305511 -"Tfru10530_t",0.193572296708404,0.310753479340943,0.166695198081645,69.8794850131851,39.8753339810137,10.3385930122709 -"Tfru10531_t",14.5255555388448,10.568446185675,11.6309088360182,7.73215192800915,10.1461178118585,12.616185181754 -"Tfru10532_t",0,0,0.177535499306586,0.106624348254337,0.178438881762746,0.0754172513207088 -"Tfru10533_t",1.06342249077781,1.70717734220214,1.37365283482469,4.94993414206051,3.22149943182426,2.33411619593839 -"Tfru10534_t",25.5628551989694,26.361914303869,25.1843273216609,22.020210803589,34.6169183278647,46.4161837177532 -"Tfru10535_t",0,0.151649561507462,0.0542321708901304,0.260566248357675,0.272540645870761,0.598984840886739 -"Tfru10536_t",1.88787363531343,1.13651974747727,0.812873213117235,0.244097875919339,0.817009486722686,1.8992012867701 -"Tfru10537_t",0,0,0,0,0,0 -"Tfru10538_t",0,0,0,0,0,0.326941807587116 -"Tfru10539_t",0,0,0,0,0,0 -"Tfru10540_t",0,0.0900313818651329,0.193179481889009,0.116019818193971,0,0 -"Tfru10541_t",145.173738896836,160.847057292637,183.426107056242,116.931872005553,155.933088240701,116.139362334827 -"Tfru10542_t",0,0,0,0,0,0 -"Tfru10543_t",7.7745954535494,6.42010067738269,6.93594081179127,7.28978317059778,6.24506385956269,7.69336301422038 -"Tfru10544_t",1.42632218627245,3.94984027688619,1.28969442726325,8.85217424386601,11.5428598366092,20.66227817593 -"Tfru10545_t",25.5443187329209,27.9800931903624,24.3005368672171,11.8281631554153,12.2120946001129,19.1614456538872 -"Tfru10546_t",70.2248902355922,68.474949109911,20.9495316508013,8.38791928834794,9.68582096132049,7.23816341584757 -"Tfru10547_t",27.4612507214185,23.1946680126758,29.0042050347799,15.5388593176352,17.0604236099929,17.5014407250506 -"Tfru10548_t",10.9555083915463,10.7382367457793,9.91486727821951,13.3874616037174,12.1091579392892,16.2399987974764 -"Tfru10549_t",19.3592269774273,24.5845280543435,18.8484539450838,95.5663123431617,103.787602380404,94.0209298633929 -"Tfru10550_t",2.10361625373363,1.79631073566821,2.62094229397203,9.49081672061446,7.90283656949232,14.6704031977716 -"Tfru10551_t",41.3210647963797,29.5433434032066,50.0764320621489,22.361591734057,20.1324976125639,18.1191788738996 -"Tfru10552_t",0.0587485152247884,0,0,0,0,0 -"Tfru10553_t",1.25972126492863,1.67363404385484,1.98258683881799,2.06688046331701,1.84228457683435,2.28825455403268 -"Tfru10554_t",13.9037173556745,13.216966983329,14.2882789035682,13.5562196370564,15.4153349954836,14.475021589112 -"Tfru10555_t",8.342831873377,6.30729088496045,7.18444754411006,8.12795190532339,7.72479639409394,5.25221065490987 -"Tfru10556_t",1.53461578177351,1.51606943363712,1.8637069687161,0.936146795329062,1.43043628167185,1.81372307684393 -"Tfru10557_t",11.2279271324873,11.2495705052031,9.80610178515929,8.89580581359881,7.78830749570621,8.5060651513281 -"Tfru10558_t",1.2154692809486,1.66431629403622,1.2983717324227,1.25725986813944,1.23768245648203,1.41238860877634 -"Tfru10559_t",14.6621883987904,12.9505046697039,13.548370814465,7.26108937640384,6.76179953903506,7.66242322633415 -"Tfru10560_t",4.59631240694849,6.14895182525695,8.13614434892114,16.6402041371396,20.7753840909483,20.1769801253763 -"Tfru10561_t",0,0,0,0,0,0 -"Tfru10562_t",11.8007887103705,13.306276909706,13.0657814790683,17.4378950823983,16.7801179196121,15.4176571470847 -"Tfru10563_t",48.5427796280119,47.9637943263136,44.9319049261697,47.4811427640394,49.9991683667554,50.308185750684 -"Tfru10564_t",17.3910633108112,16.3552603357158,18.6776007590012,44.9107714900841,50.9789150123696,36.1918850611973 -"Tfru10565_t",8.0202770495403,7.86832604344757,6.62762103848237,9.97199847198348,12.8318548797034,14.1067350421195 -"Tfru10566_t",36.0383736397658,41.2226020068492,39.1638292798971,31.0747809021951,36.8964948555145,33.8817997629503 -"Tfru10567_t",0.214860298648203,0.275942731527303,0.185027406566327,0.355596291876356,0.706681862940185,0.597358637698811 -"Tfru10568_t",0.379184248216162,0.0676364142597639,0.18140851546498,0.348641299206759,0.51052849571538,0.863100137983238 -"Tfru10569_t",0,1.05364851579252,0,0,1.70423072605231,3.84156623879179 -"Tfru10570_t",0.987463741436543,1.52426548410905,0.588708357782012,2.35711149621929,3.41873409091554,4.72380658701818 -"Tfru10571_t",2.08075236585628,2.92281445894051,0.447961089581634,4.8426600275267,6.5284875703754,7.80206641758974 -"Tfru10572_t",0,0,0,0,0,0 -"Tfru10573_t",31.0200547585682,36.5830046685264,32.7222349314091,26.1091269902873,12.9290028184422,9.25366247872786 -"Tfru10574_t",0,0.0961961555163831,0,0.123964113876298,0.103728736545391,0.263045905105753 -"Tfru10575_t",0,1.88061567776451,0,30.8127374527025,21.1478511364036,12.9786779713069 -"Tfru10576_t",0,0,0.528070919467971,0,0,0 -"Tfru10577_t",26.2462325293975,25.2087869222372,22.022460935347,21.3476465476907,19.6104092821101,23.2237809490853 -"Tfru10578_t",0,0,0,0,0,0 -"Tfru10579_t",0,0,0,0.3129610221871,0.261874589381701,0.0737875868263838 -"Tfru10580_t",0,0,0,0.441110882372003,0.738211617444864,0.312005379829329 -"Tfru10581_t",3.85523754344834,3.73214179135361,3.40802342515174,4.98312568917979,4.45980187021584,4.29978770334691 -"Tfru10582_t",0.0714981929969765,0.0573902170357316,0.184712466299831,0,0.309420614120507,0.366174824497569 -"Tfru10583_t",4.48599099265011,1.30938844693174,5.61908473533467,2.53103428623159,2.82383861430365,0.596748153654153 -"Tfru10584_t",0,0,0,0,0,0 -"Tfru10585_t",0,0,0,0,0,0 -"Tfru10586_t",12.0634735239992,10.1707559219832,12.5558680604637,12.2987000044814,11.6432292038631,8.1276112167111 -"Tfru10587_t",13.2838022834803,10.6833554156475,12.0835337691999,10.9390623178344,10.4706149785974,11.1720342085402 -"Tfru10588_t",51.0464699229186,59.8637294795476,50.7388594993022,73.7432001170778,107.685384273679,111.472678016736 -"Tfru10589_t",0.684867201941148,0.916216100774247,0.589774858430168,2.59751978831557,3.75424739686973,2.33834466730785 -"Tfru10590_t",0,0,0,0,0,0 -"Tfru10591_t",0,0,0,0,0,0 -"Tfru10592_t",0,0,0.2782527537209,0.334226322412633,0,0.236404076255299 -"Tfru10593_t",0,0,0,0.860384369448921,0.719938866141515,0.608564791114674 -"Tfru10594_t",0,0.152220101618475,0,1.3731194284221,1.31311682741885,0.277494626755656 -"Tfru10595_t",6.1810743531324,7.89635861856918,8.84641915456705,51.6890532195455,44.306466797069,49.1083534985878 -"Tfru10596_t",0,0,0,0,0,0 -"Tfru10597_t",71.5065067403483,106.011742770887,64.2699151152553,12.5296007378876,14.8809727907258,18.868343946702 -"Tfru10598_t",0,0,0,0,0,0 -"Tfru10599_t",0,0.149299273100335,0,0,0,0.136085003305633 -"Tfru10600_t",9.25656905995915,9.11872104570242,9.96414285027261,12.7664411632739,10.9252854568426,13.0831304304894 -"Tfru10601_t",0,0.0347595386685488,0,0,0.0374813630506799,0 -"Tfru10602_t",0,0.130054975924753,0,0,0,0 -"Tfru10603_t",5.79789924197313,5.50865252251423,8.04973459355955,21.4187291123589,17.4103570903017,10.648172336119 -"Tfru10604_t",0.315828484103186,0.50701883471417,1.90383463072195,0.326687382809341,0,0.693214960447869 -"Tfru10605_t",2.20355086613633,4.64296264051369,5.45557858115076,12.2513124084369,37.6681554173587,37.0805606821426 -"Tfru10606_t",2.16800972313412,1.30516461323195,1.86698621851441,3.92446391478058,3.28385103373052,7.53442668839465 -"Tfru10607_t",0,0.682870936880857,0.366307422619919,0.219997072980468,0,0.698126170336065 -"Tfru10608_t",0,0,0,0,0,0 -"Tfru10609_t",64.493947454716,63.8322497423793,69.1582545162652,78.0813376445428,55.9187908242347,48.8273839742253 -"Tfru10610_t",0.372716844593822,0.239338083467558,0.385159091219701,0.308425355198881,0.258079305477619,0.109077302265089 -"Tfru10611_t",2.60209131592979,3.13297257822274,2.8810240871987,10.1894662009869,5.95223946853497,4.89544724280884 -"Tfru10612_t",18.9663315979861,24.0033390434419,18.2367317258628,46.6991016689563,34.7455350274516,26.9016051317664 -"Tfru10613_t",0.591622371629912,0,1.52843061903029,0,0,0 -"Tfru10614_t",449.887321481676,545.77020861873,419.875582154047,264.757211415469,202.511443788223,140.163306742096 -"Tfru10615_t",81.6853663441934,93.8097099313771,69.8096115331512,47.2973411975073,40.3816736896938,28.2376381859189 -"Tfru10616_t",0.771917703872411,0.826137886884957,0.886318112924152,3.19383193239637,3.11789837812088,2.54143432666493 -"Tfru10617_t",2.08807895869381,2.40235353415935,2.27766131463338,2.66384194002447,2.46998145571755,3.41189644438054 -"Tfru10618_t",0.753081066676322,1.07463753015115,1.51320720649015,1.81760529917627,1.44848295454819,0.918302686649069 -"Tfru10619_t",0,0,0.252075665391756,0,0,0 -"Tfru10620_t",1.19938672421165,1.19805719573323,1.05580676856027,2.94992902586277,2.21463485233459,2.20353799504463 -"Tfru10621_t",9.46422679063856,9.22462724080184,10.0024435390234,10.2981804681932,8.13841856671749,10.6113782875092 -"Tfru10622_t",2.39012573139106,2.20424290007092,3.10928924557373,3.62955219375462,3.60928282935966,3.23696138310827 -"Tfru10623_t",1.40731148269723,0.442025888676519,1.8969015111636,6.5189955675239,4.76638455109156,5.01390145706796 -"Tfru10624_t",0,0,0.108464341780261,2.67080404566617,1.41721135852796,0.460757569912876 -"Tfru10625_t",0,0,0,0,0,0 -"Tfru10626_t",0,0,0,0,0,0 -"Tfru10627_t",0,0,0,0,0,0 -"Tfru10628_t",15.7141711946592,16.9796595366508,15.0286514284867,9.76830528634045,9.74313201747261,8.78861916582199 -"Tfru10629_t",0,0,0,0,0,0 -"Tfru10630_t",0,0,0,0,0,0 -"Tfru10631_t",0,0,0,0,0,0 -"Tfru10632_t",21.3468990022266,26.5312150719095,20.1619208306619,22.7931393501521,17.8804535096163,22.1677264807722 -"Tfru10633_t",16.0791373939417,21.6107375128615,17.5765741686458,13.5054212031277,11.732389569165,9.2334381415738 -"Tfru10634_t",0,0,0,0,0,0 -"Tfru10635_t",0,0,0,0,0,0 -"Tfru10636_t",0,0,0,0,0,0 -"Tfru10637_t",0.224626675859485,1.26212442545158,1.1606264593706,25.3261336288076,31.1075269810991,38.4567486614235 -"Tfru10638_t",0,0,0,0,0,0 -"Tfru10639_t",0,0.245212745516308,0,0,0,0 -"Tfru10640_t",42.84748946059,39.0955442115103,40.1116928555574,18.7802406229337,26.3413494012112,28.278503329734 -"Tfru10641_t",0,0,0,0,0,0 -"Tfru10642_t",8.29106095595485,8.7210822742814,7.72028488415726,7.61731670194994,6.9579641723272,6.12478688022562 -"Tfru10643_t",0,0,0,0,0,0 -"Tfru10644_t",6.80716491626353,12.3939050722916,9.43639773488268,9.44552650296572,7.61627223097018,11.1754654229778 -"Tfru10645_t",8.62463944041476,16.4096742246655,10.1779144136694,15.52945117826,17.9711022079496,13.788739656868 -"Tfru10646_t",8.45459236352577,10.8668363457149,9.52490472385534,17.7584936984417,18.3680370411802,14.4917977171111 -"Tfru10647_t",0,0,0,0,0,0 -"Tfru10648_t",0.167018641692738,0,0,0,0,0 -"Tfru10649_t",12.9960803845333,11.5493848371631,11.141639959073,14.043045204133,14.3619885877343,12.2250947720972 -"Tfru10650_t",0,0,0,0,0,0 -"Tfru10651_t",0,0.634668282512796,0.340450428082042,0,0,0.433871010539137 -"Tfru10652_t",0,0,0,0,0,0 -"Tfru10653_t",0,0,0,0,0,0 -"Tfru10654_t",85.8026017200458,80.3448941571897,87.1260125329145,79.441911626076,102.533911670334,78.5989765623514 -"Tfru10655_t",1.69586164290189,1.78007699578997,0.449352273089652,1.21442483609559,1.01618726531812,2.29062334756687 -"Tfru10656_t",8.14612492440816,8.18454150601924,6.95778719528487,7.03903563455841,5.43914904069748,8.22237079999301 -"Tfru10657_t",0,0,0.275078767937011,0,0,0 -"Tfru10658_t",0,0,0.0783810573861689,0,0,0 -"Tfru10659_t",10.4145095171216,10.3658115150075,9.20763657767341,6.03264700949745,6.00940862134868,5.58773271148888 -"Tfru10660_t",0,0,0,0,0,0 -"Tfru10661_t",70.1312007402783,73.7784518785389,74.4828432443712,31.1847054434894,27.52624741153,18.157074565779 -"Tfru10662_t",0,0,0,0,0,0 -"Tfru10663_t",7.17614411302496,7.10087718514639,7.51159495685433,8.12676963627772,6.15765250118313,5.20506765834568 -"Tfru10664_t",157.9110302365,222.987742861249,150.086705668032,225.495135423005,210.623660915267,140.848747263157 -"Tfru10665_t",0,0,0,0.188296519669089,0,0.0665926975367039 -"Tfru10666_t",10.863714577522,11.9310828290186,10.585389465808,13.9417782175933,13.3445713124686,10.9341283970964 -"Tfru10667_t",0,0,0,26.6398039334775,34.218279679209,12.0983262554182 -"Tfru10668_t",0,0,0,0,0,0 -"Tfru10669_t",0,0,0,0,0,0 -"Tfru10670_t",0,0,0,0,0,0 -"Tfru10671_t",3.41902696162868,3.52849735553989,2.94430239402347,2.77874209912829,3.38203927061949,4.64561498687739 -"Tfru10672_t",13.2430150575681,12.2908358897952,12.47339930473,5.13687746762274,10.029495768044,9.68907347016792 -"Tfru10673_t",1.10539969436113,0.887282960749781,0.475958657680478,1.14340583983267,0.95676110945155,1.21312618078375 -"Tfru10674_t",13.2810522101921,17.3542108499593,8.24528380511195,12.4597606958239,20.5844338695241,34.1221471830259 -"Tfru10675_t",0,0.13818341192005,0,0,0,0 -"Tfru10676_t",0,0,0,0,0,0 -"Tfru10677_t",8.62358172157242,8.26172081333917,9.64210287314309,7.76910193157843,8.90864980058876,7.63225080625551 -"Tfru10678_t",0,0,0,0,0,0 -"Tfru10679_t",0,0,0,0,0,0 -"Tfru10680_t",8.2586472080406,7.65770311209825,6.37623259373994,4.12401292739656,4.56002074538611,4.27130076759574 -"Tfru10681_t",13.0156921758581,17.9725267975929,13.6383039851934,11.0153464006417,7.95676952995691,8.12430909947788 -"Tfru10682_t",0.644993295750076,0.647154558704267,0.694296698343896,0.667169626313126,0.418697759990321,0.117975162814545 -"Tfru10683_t",67.248691021375,69.5408020487654,73.5630717649628,50.7606227164187,57.6816553486666,64.8633684225476 -"Tfru10684_t",0.291829359171333,0.351368675728969,0.4083779016833,0.264130224399041,0.284161788478016,0.480404288699435 -"Tfru10685_t",0.555440507579818,0.891682710968391,0.837057870697582,1.14907562085666,1.20188172426974,1.21914168250667 -"Tfru10686_t",1.07936244245971,2.45475285929066,1.39424292014327,13.2116015240625,33.6320992992653,61.9915271482311 -"Tfru10687_t",21.6390364405967,21.9669751186275,16.9902817798117,26.3329829773156,31.9500225027159,36.320262623782 -"Tfru10688_t",0,0,0,0,0,0 -"Tfru10689_t",0,0,0.050170399422631,0,0,0 -"Tfru10690_t",0.930141461154201,1.43348460620694,1.21750983470438,0.769697465254957,0.676258073819619,0.734967500138263 -"Tfru10691_t",1.0245167898957,1.6447196345606,0,0.529870998946858,0.443377099501946,1.49914780064336 -"Tfru10692_t",0,0,0,0,0,0 -"Tfru10693_t",4.3678588868342,4.64430621994087,5.51996347354492,5.80890313227628,4.95887797174222,6.39137016425535 -"Tfru10694_t",31.871861268413,29.6725598221637,30.7128039484389,54.6923990125902,63.0611304836096,82.9198448601133 -"Tfru10695_t",7.21964175312569,8.42918812634015,6.21720996537388,15.6146359987649,9.08923053894565,12.0048944962244 -"Tfru10696_t",22.7166412846085,22.4620887114369,21.8937648321761,31.4114209561323,32.1163424467251,30.1620135960613 -"Tfru10697_t",131.972664600965,124.077649231252,156.266746489657,107.438570550097,122.423672434115,105.49639359291 -"Tfru10698_t",0,0,0,0,0,0 -"Tfru10699_t",0.245166469177376,0.327983973818018,0.28150084034021,0.929851441731645,0.353666557968478,0.478327313823951 -"Tfru10700_t",0,0,0,0,0,0 -"Tfru10701_t",0,0,0,0,0,0 -"Tfru10702_t",0,0,0,0,0,0 -"Tfru10703_t",16.004768219543,16.0466330849907,13.8835114382724,15.0390183315887,14.5123234298948,11.4523174973083 -"Tfru10704_t",0,0.338861834256204,0.18177315569707,0,0.182698101302309,0.308869647368732 -"Tfru10705_t",34.2424225649534,38.9092708619562,27.9281203323975,10.9738786352731,11.7208147412486,16.3444050257 -"Tfru10706_t",6.33244046015935,2.23648810609095,12.3605745874008,1.74671042868914,0.80387164573016,0.679513224211211 -"Tfru10707_t",1.57028733501458,0,1.35225630323365,0,0,0 -"Tfru10708_t",24.8950065151575,30.3038587337941,26.1788898855262,157.352771976741,155.402647224366,91.9421114957894 -"Tfru10709_t",12.2942014787484,10.5878826474839,12.2414245005871,0.927274248157001,1.33013129850584,1.96763148834441 -"Tfru10710_t",0,0.0561010857046461,0,1.012132956391,2.5407499678614,3.83517428201192 -"Tfru10711_t",11.4665973866321,13.5242684156626,15.9200879148392,22.0272835328215,29.5716469929654,27.9075341272968 -"Tfru10712_t",0,0,0,0.0331169374341786,0,0 -"Tfru10713_t",0.105717756004338,0.0565717323967991,0.0606927147377801,0.0364508573101026,0,0 -"Tfru10714_t",1.80491043844907,1.97559096729447,1.41300226498894,2.20641595655215,1.56221149902639,1.32053839470733 -"Tfru10715_t",4.71920638746491,3.75388944932606,4.68636216793094,3.91396614404268,4.56301452199978,4.19928293348228 -"Tfru10716_t",13.0245769641246,14.6840627090872,14.0920762993102,14.6622607517768,12.7506166936275,10.3980202798157 -"Tfru10717_t",8.47890517363733,8.88927769533885,9.76033861146636,8.68093496523853,10.2593168605661,13.9261721542771 -"Tfru10718_t",145.655262222709,177.055026483863,149.085140142541,22.628401096456,27.8272615527677,35.5904173370706 -"Tfru10719_t",2.64032612710263,3.37167525084923,3.30723272993984,8.25539016359204,8.82953823865303,11.3271324537182 -"Tfru10720_t",5.42650759050019,5.03331425007158,6.02304046810215,4.57362335933077,5.28827958678684,5.38186887474982 -"Tfru10721_t",8.6608635846853,9.17651820849687,8.80081905583217,6.80856920708622,8.54575077555502,11.2791553083456 -"Tfru10722_t",5.87485152247576,8.48813349863696,6.07096917208917,4.86147378054484,5.59337263986776,12.8947677957368 -"Tfru10723_t",8.16100802922632,9.225356820811,6.71173701076025,5.84193908082586,8.6767780615137,20.9084506031241 -"Tfru10724_t",9.42387263373281,8.39459501579425,8.31332440665451,2.73416334887489,1.59154789205623,0.924918820916764 -"Tfru10725_t",0,0,0,0,0,0 -"Tfru10726_t",0,0,0,0,0,0 -"Tfru10727_t",5.88607735341352,4.5635731898437,5.41440867909139,6.84951077937992,6.65771663742571,9.39593271231252 -"Tfru10728_t",8.64415452310713,5.85435574102439,7.67655507049942,10.8972826664441,13.5607812555065,11.2653003540306 -"Tfru10729_t",5.3487081985217,5.32369776449878,4.11473936317323,4.8686958341263,5.49366056394771,5.42645689468869 -"Tfru10730_t",21.6097855742715,22.7444364586568,23.0605321467729,37.684079791669,36.0604609703154,30.2541139545699 -"Tfru10731_t",0.0654541307140221,0.0525387651086752,0.0563659649142453,0.101556887994489,0.0283263904629213,0.191554530039354 -"Tfru10732_t",34.7446476632655,42.5961643338,34.160273155246,4.64148127267396,13.7282443464482,14.8646954772991 -"Tfru10733_t",4.33828882141459,6.16454232883809,4.49320915638633,30.8057310985768,30.8513728859302,26.9365370348675 -"Tfru10734_t",4.67314358779227,4.34779867998257,4.66451518879789,3.6253626375479,3.1255002614701,3.7298645659496 -"Tfru10735_t",13.6516862253602,15.5939980351777,20.1211522534426,12.7632676871324,17.951230316085,16.3266565163816 -"Tfru10736_t",22.0284278423847,29.4696551488107,31.8023584329851,22.785815090959,32.151108541776,37.7638799447411 -"Tfru10737_t",75.5255382197177,82.9465744379742,74.330261791977,89.4451316451664,58.2980073524678,24.1798333855638 -"Tfru10738_t",2.17268214935089,0.581323316829279,0.623669962787562,2.24738388326024,1.2536869660827,0 -"Tfru10739_t",9.37490880027811,16.1507961716229,10.0252557769662,113.645856384384,150.562710287365,62.0383515236257 -"Tfru10740_t",114.399719488675,145.865171757771,114.294960230926,31.2226615114586,119.691094274701,143.488296916982 -"Tfru10741_t",0.489190858529391,0.890038497894983,0.78636647790689,0.708414487722429,0.649230752842134,0.787401775726112 -"Tfru10742_t",0.43528692627693,0.873490997629334,0.374848269261316,0.675379615237964,0.376755670043104,0.477707718857858 -"Tfru10743_t",8.63892100928446,7.0347918795662,9.91923378391046,6.60483015676828,6.50198309850841,7.69458275024698 -"Tfru10744_t",17.5265041943214,17.7259143925036,15.3948463741549,15.4701696938699,15.4731824488217,15.6440972854341 -"Tfru10745_t",9.09288783879196,7.93335353140995,12.5966658390356,11.8591363340765,10.4365753021587,9.25591489150158 -"Tfru10746_t",19.604196989152,18.7719142057427,18.3502133081633,11.2411947626925,12.8182934181945,17.5391736980786 -"Tfru10747_t",5.29072983484306,6.43449475352906,8.42192495040738,56.716420971243,42.6014316903129,33.4304237605299 -"Tfru10748_t",22.7230539953683,26.9942469851608,21.6925330721517,13.1624214761575,17.0826960376886,15.9600155345154 -"Tfru10749_t",14.0188779364479,9.04344004820553,15.2178526851277,7.15731444872614,8.01499814898801,8.48767360125424 -"Tfru10750_t",6.73846350415658,7.3802786600298,6.50786050681564,6.2535899605842,7.03154866346564,7.32604536161473 -"Tfru10751_t",3.91688251828292,2.16827990408311,2.73331885085964,1.88606815380762,2.10425916033721,1.77873163484694 -"Tfru10752_t",0.674105330162066,0.608727728337875,0.616788952580931,1.00234373521943,0.911658028063178,0.585675093631483 -"Tfru10753_t",0.0663763840701455,0.0177596800150078,0,0.0457723696746298,0.0191503408791991,0.0323755911648026 -"Tfru10754_t",5.82520488989451,5.91778321384155,7.28943833691371,3.95422691305087,2.2058370974138,2.59711520393145 -"Tfru10755_t",2.45285771594376,0,1.05614183893594,0.634298130123344,1.06151597544519,0 -"Tfru10756_t",0,0,0,0,0,0 -"Tfru10757_t",0,0,0,0.329786883595008,0,0.116631992080413 -"Tfru10758_t",0,0,0,0,0,0.0631058109100387 -"Tfru10759_t",8.30335119252678,4.50863550985653,9.88444375136452,3.03135501723086,5.07305890592924,7.50445497880193 -"Tfru10760_t",9.9928132370248,12.2799961767772,9.67147992406748,5.76276543275677,5.4344031016849,10.6755103908972 -"Tfru10761_t",67.8545350846306,85.9128789879852,64.6937652401092,252.549764873046,140.883073366743,64.5678633272285 -"Tfru10762_t",33.387586037246,36.6277938584371,38.0503481246554,20.5824728825829,20.188508127163,21.6874638173096 -"Tfru10763_t",17.4837457725675,15.7238075473533,15.4142662054804,14.3575699058564,12.673757341824,13.4514484621133 -"Tfru10764_t",13.4416602834316,10.018692173952,17.5696738778054,44.6908339683178,39.2654759318923,36.7034214391798 -"Tfru10765_t",6.55371052336986,6.54279253943439,5.74956201983994,8.68564748151796,8.4023311084552,7.46211599062313 -"Tfru10766_t",0,0,0,0,0.203965902716182,0 -"Tfru10767_t",1.0245167898957,2.24279950167355,1.44370608360733,3.08288581205444,6.2878934111185,6.40544969365799 -"Tfru10768_t",80.6299294199883,117.079036281352,113.100828688283,215.110252752787,680.32416487393,848.052941687936 -"Tfru10769_t",23.9935222407832,23.609685076757,24.8172558314722,13.6057198439258,13.7875975458024,12.2833400439811 -"Tfru10770_t",3.54826436053318,7.32972880619398,9.66107387142751,4.31795497278433,6.63909013341174,14.4691041454641 -"Tfru10771_t",51.1596037899117,54.4952725632566,49.7141051329916,52.1936747075244,32.6795275299223,30.7004834794942 -"Tfru10772_t",33.4410237633917,30.7706285028959,31.6073516362575,26.5758600054317,31.0622247573402,21.7813076083766 -"Tfru10773_t",0,0,0,0,0,0 -"Tfru10774_t",0.260094045732035,0.62631738405868,0.447961089581634,240.787818035355,154.88273960063,31.398559973227 -"Tfru10775_t",0,0,0,0,0,0 -"Tfru10776_t",22.8028165522148,20.2300515050641,20.670204562092,21.7247109567876,21.814153295462,17.5614456646522 -"Tfru10777_t",0,0,0,0,0,0.37478695016084 -"Tfru10778_t",27.6997337727983,27.2074445404753,27.6200564214064,21.3005842787053,19.400873863673,22.9327338180845 -"Tfru10779_t",31.3179071938484,29.7406516727176,30.1883203561733,27.364689913646,21.5471694178691,20.6565082267481 -"Tfru10780_t",117.878434422764,90.7351350228536,122.722575777218,70.5200041530321,43.7805868932288,44.4093102410478 -"Tfru10781_t",7.61891859965775,7.68503829246534,7.75132671079649,5.26553989483145,5.36891948417765,7.12817106333192 -"Tfru10782_t",20.4686299337213,21.9301758900575,26.2099945559983,19.3313105971714,22.8771311043864,22.463395805191 -"Tfru10783_t",0,0,0,0,0,0 -"Tfru10784_t",2.95892901612142,3.6324678116884,4.09692590423314,4.92106712281584,5.77492548108197,5.77296142015702 -"Tfru10785_t",0,0,0,0,0,0 -"Tfru10786_t",4.19120504957332,6.5788785382424,2.9676180607484,48.5554515398575,61.5891098217248,60.3747705168189 -"Tfru10787_t",0.354474163592605,0,0,0.366661788300779,0.306809469697549,0 -"Tfru10788_t",0.748422064779042,0.382942967287409,0.347356118504847,0.80553614142527,0.39211185029607,0.637016836078935 -"Tfru10789_t",35.4169620355153,33.7504355779313,34.4744320843816,20.7480755991219,20.7753840909483,20.0789955676579 -"Tfru10790_t",0,0,0,0,0,0 -"Tfru10791_t",8.76630018484669,7.69621524650367,8.65003125697579,12.940371309063,12.4878123937983,13.2283498321987 -"Tfru10792_t",22.5872745198472,21.14015300745,22.6032311311643,29.3664530680941,27.3546236861689,29.2628552627175 -"Tfru10793_t",0.638862180771464,0,0.550157535874022,0,0,0 -"Tfru10794_t",0,0,0,0,0,0 -"Tfru10795_t",5.62210934416952,4.77063037405054,5.80978981000425,4.07078713913666,2.71112803863713,2.93810037410983 -"Tfru10796_t",13.1680906482585,13.1097944139946,13.0099221909845,7.86629874256708,9.40950719307531,9.67159811362808 -"Tfru10797_t",29.9633241513238,30.3133118111344,35.4425849423229,1.63739409634184,2.1530344212692,2.23358898426945 -"Tfru10798_t",0,0,0,0,0,0 -"Tfru10799_t",0.803927050444474,1.29059339745425,1.03845525312106,0,0.347913130709661,0 -"Tfru10800_t",0,0,0,1.51391713984816,2.78694176829794,0.21416397152048 -"Tfru10801_t",13.2404869926899,12.7699368083477,12.6395081042676,11.8377777480052,12.6594047835803,11.5270454286487 -"Tfru10802_t",86.5057120862315,64.09519608422,88.1041659272063,70.5515182948115,100.791441259812,107.715968027297 -"Tfru10803_t",12.5834207651686,12.2952488390317,12.3018952425527,9.11990523062834,9.80465652382515,9.63517377550657 -"Tfru10804_t",2.84733156171684,2.74938619448444,2.53695547603921,2.39117623954273,1.29323280163453,1.88726609869582 -"Tfru10805_t",15.7726991962204,21.9891864185819,22.8761157209277,13.9106844861859,25.5791784360885,37.8994044779246 -"Tfru10806_t",0,0.0585868853318719,0.062854662004721,0.452991366606175,0.252697981992421,0.106802884146616 -"Tfru10807_t",3.81655070685265,3.08203794956482,3.18703594570193,4.5219938004837,4.90498123843286,5.61850216474598 -"Tfru10808_t",3.08861679306792,2.23125568070905,1.86183827857367,9.26495026099726,6.6832577498455,3.84156623914861 -"Tfru10809_t",6.44290107570499,3.14351677522785,6.96259522092597,6.14172279681561,6.56064760766788,5.54571968358295 -"Tfru10810_t",7.06845928697696,4.83661001501131,4.59021094414063,3.23623280460232,4.11209326489804,3.05205814310289 -"Tfru10811_t",1.0436071648627,2.93189152247759,4.94287500398617,4.31795497278433,2.25819392292916,2.67239390549468 -"Tfru10812_t",1.24446833940596,1.22401730366736,0.99620639554572,0.725214636572373,0.455125251314327,0.897674564541297 -"Tfru10813_t",1.96659257987295,2.26915964212238,2.11691926751818,1.71636341136553,1.80853745927055,1.79853869279818 -"Tfru10814_t",0,0,0,0,0,0 -"Tfru10815_t",0.78240164629986,0.510265171839813,0.294772998703165,0.303488395205883,0.634870584851447,0.572433618871969 -"Tfru10816_t",0.0549446545267805,0,0.047315706976739,0.0568337762114353,0.0475564711041982,0.0803990318199839 -"Tfru10817_t",1.82191178540488,1.72239795946997,2.40571296470021,0.711942334970525,0.31538534885054,0.562812596000567 -"Tfru10818_t",7.45502119452869,4.70466314071986,6.15425613186861,6.43498170324446,7.07558215826972,9.10314839533868 -"Tfru10819_t",1.20014823959211,1.30050331104185,1.0335102281062,1.24141205467549,1.03876920454742,1.36101203901265 -"Tfru10820_t",1.05192275980185,0.614078588657799,1.15291977637345,2.17618049425186,2.40034318182271,1.32935246067294 -"Tfru10821_t",56.7817171063933,65.6210629849075,61.9370833144118,75.7016015001325,59.952995750203,38.5310612192233 -"Tfru10822_t",0.459910821741501,0.492215365087479,0.13201772986758,2.37861798797312,5.70564836804328,2.69190043035231 -"Tfru10823_t",26.5728474353165,23.6750240440065,30.0391994560432,22.3858978120288,23.3948890415461,24.385594387639 -"Tfru10824_t",0,0.0721213957400905,0,0,0,0.0657380318998692 -"Tfru10825_t",1.00447189618035,0.366486440309699,0.471819886744134,0.755642120237258,1.02747823493277,1.06895756219787 -"Tfru10826_t",0.101217321411382,0,0,0.104697402201548,0.700856330778979,0.592434311579544 -"Tfru10827_t",7.49933225164887,8.09775352488763,6.765592991641,20.7781507557269,21.7136984627499,22.4043735605181 -"Tfru10828_t",0,0,0,0,0,0 -"Tfru10829_t",5.86118907707773,6.18063589074961,5.44324812340474,5.82495669977695,4.97358716267572,10.0900235009102 -"Tfru10830_t",11.5926982793788,10.3064308977924,10.8044693715556,12.8261175605337,14.0982300774383,20.9356972334387 -"Tfru10831_t",2.61092578631555,0.493115210361862,2.31453387464368,0,0,0.0561837841191752 -"Tfru10832_t",2.37905491742152,0.596756681566235,5.05779784197104,1.61493426581679,0.900879487129617,0.108787716506863 -"Tfru10833_t",0.0761653461209859,0.183409351814101,0.262359804052344,21.429270644625,24.9191597029235,12.7053795470663 -"Tfru10834_t",9.52258678769555,18.2597022401155,9.56712868586972,19.9188785599065,25.0011076812356,29.9584107717987 -"Tfru10835_t",5.02565257733309,5.86502695311067,5.83185661171508,5.75147205645159,4.65837526180152,4.77221296063942 -"Tfru10836_t",0,0,0,2.28681167966534,0.95676110945155,2.02187696797291 -"Tfru10837_t",0.681779432770989,0.912085279760838,0.130470182087347,2.58580869819693,2.88494963932014,2.43864980375169 -"Tfru10838_t",0.140957008005784,0.905147718348786,0,0.291606858480821,0.488012377975296,0.412517180042803 -"Tfru10839_t",0,0,0,0,0,0 -"Tfru10840_t",0,0,0,0,0,0 -"Tfru10841_t",0,0,0,0,0,0 -"Tfru10842_t",0,0,0,0,0,0 -"Tfru10843_t",0,0,0,0,0,0.0940551795353905 -"Tfru10844_t",0,0,0,0,0,0 -"Tfru10845_t",0,0,0,0,0,0 -"Tfru10846_t",0,0,0,0,0,0 -"Tfru10847_t",43.7314290043075,34.1786258305205,42.6145998164262,132.133858422286,94.6276056197138,43.3623367268206 -"Tfru10848_t",71.7733935888894,85.398808617736,90.0908915820875,99.3598101119519,100.317665972745,92.4527277237515 -"Tfru10849_t",10.822467443217,10.0619038996613,11.5324032867457,24.080402506356,24.6647516408756,18.0578535356457 -"Tfru10850_t",2.06407115871138,2.45290988255783,2.14682564932079,2.02412750459214,2.52897544055417,2.43192961661482 -"Tfru10851_t",0,0.141667027346606,0.151986798250912,0.365121192551616,0,0 -"Tfru10852_t",3.51671344624664,3.76373051257589,4.71088383043756,2.02090334482057,4.05844712474339,3.43060799030945 -"Tfru10853_t",4.33505502913163,5.6994510468092,5.21352579480618,2.93786126818222,2.91114145402523,3.55447410027985 -"Tfru10854_t",0.0965192747833725,0.0309896622320701,0.0498706681760803,0.139772956523666,0.0334162887492275,0.0564936211639501 -"Tfru10855_t",71.0943932516776,77.9520436749454,60.3151195425491,24.3051898468066,37.5465480298985,62.7048301949062 -"Tfru10856_t",133.887403610559,141.875846775892,136.602383377879,58.2974920794067,101.226832090384,128.350660361853 -"Tfru10857_t",5.77674496463784,6.49163407825588,4.54825719245164,2.90231894904487,2.85712551348994,4.830260104234 -"Tfru10858_t",7.05284145368519,7.20163645812457,5.28855033913851,5.75686229809538,4.02812272922727,5.37073338288737 -"Tfru10859_t",9.54938095675446,6.88889044058404,7.80709165116193,7.62709276757462,7.8468177321927,6.0138475801348 -"Tfru10860_t",0,0.0695190773370975,0,0,0,0.0316830205290607 -"Tfru10861_t",0.151643279370844,0.365163384568509,0.130587934959267,0.941142712930881,0.262504853134726,0.443791045677817 -"Tfru10862_t",4.7790334091542,11.4071647708372,7.68943987079013,21.3344466881357,28.6283548738292,42.6942930530528 -"Tfru10863_t",8.18372960294232,7.38539763257013,7.88357279116781,3.39560699600287,3.04141561265396,4.16081582754235 -"Tfru10864_t",5.11161729088243,4.5968755532705,3.26065198726463,1.32184156807701,1.14703529065517,2.25083317674059 -"Tfru10865_t",0,0.729010865048482,0,0.469723480147485,0.786095614252098,0.332243566629069 -"Tfru10866_t",18.169686138941,17.7208978300448,18.3387977684891,8.99301988445155,6.08767068711508,7.07562898001325 -"Tfru10867_t",3.20161496842406,1.54192465740056,2.09537896856897,1.45714524710386,1.33013129850584,2.34241843850525 -"Tfru10868_t",9.24884881887495,4.94924807464107,6.30536056596901,4.78342259599732,3.33549744579445,9.58629373438919 -"Tfru10869_t",161.243180932816,140.054202727583,179.574825937927,206.405133743607,164.7998572918,112.55140410984 -"Tfru10870_t",0,0,0,0,0,0 -"Tfru10871_t",52.402498667621,62.0922212065881,42.9776419157104,6.88307495559137,4.31963319684909,11.5627310311788 -"Tfru10872_t",90.5020877037866,93.9471331259354,111.313749340802,111.388517996792,133.694318303455,135.921598206967 -"Tfru10873_t",0,0,0,0,0,0 -"Tfru10874_t",0,0,0,0,0,0 -"Tfru10875_t",3.37730157875166,3.93079727737197,2.69024270431664,0.698684171475655,2.55777341823233,2.47095717894986 -"Tfru10876_t",0.16504985613251,0.264964656255342,0.142133037264114,0.170724644061463,0.285712551348994,0.12075650260585 -"Tfru10877_t",7.0348495112013,8.67469846092277,8.07743430704359,3.37471238164212,3.08857348439462,2.83455372985722 -"Tfru10878_t",29.2747815988848,31.441388842275,28.1393766400939,34.2264157896422,36.579970761363,34.7673528588468 -"Tfru10879_t",0,0,0,0,0,0 -"Tfru10880_t",0,0,0,0,0,0.122440358219876 -"Tfru10881_t",0,0,0,0,0,0.355289363158253 -"Tfru10882_t",13.717493118021,13.4700953858654,13.1537665395334,13.2504785381613,12.3478148837352,12.2125707144114 -"Tfru10883_t",17.6305173999684,17.0072746898093,18.5049036519754,18.0817333376277,16.2714548895225,19.0443960035816 -"Tfru10884_t",1.08051931538839,1.51779593285817,0.232622880924225,0.838252512803389,0.701419720112403,0.988184241581635 -"Tfru10885_t",0,0,0,0,0,0 -"Tfru10886_t",0,0,0,0,0,0 -"Tfru10887_t",0,0,0.31592015706303,0,0.158763852223404,0 -"Tfru10888_t",0,0,0,0,0,0 -"Tfru10889_t",167.790588127083,176.250859688228,172.440473675801,166.17915888067,162.445216898326,150.715694642762 -"Tfru10890_t",53.4126887848923,47.2376837174816,52.4231012911228,60.3219131643714,68.1922981614693,69.4991983569829 -"Tfru10891_t",82.5479137328729,67.5639373284294,68.0077716831197,197.161206594594,139.872182155838,94.3970164451526 -"Tfru10892_t",24.3953209470934,22.9533276692428,20.729830152207,23.228729407678,19.856472871541,12.0651344035915 -"Tfru10893_t",0,0,0,0,0,0 -"Tfru10894_t",27.6698858574213,29.3992410199123,27.964484611593,22.7727762263283,18.8389054666282,13.3253613917817 -"Tfru10895_t",1.59902620502023,1.87589545435243,1.80069864047786,1.2723110370027,1.38401167809392,1.25989873729032 -"Tfru10896_t",1.25388622045366,1.50970533618224,0,0.648498834523854,0,2.75216685786304 -"Tfru10897_t",0,0,0,0,0,0 -"Tfru10898_t",10.1202630943834,6.94888077823789,7.7700768963572,8.19800413464949,9.81478595298065,8.02881768414223 -"Tfru10899_t",5.77170527437425,6.82056443874081,6.07483111176926,6.30182455236034,5.68944201727306,9.03207940196772 -"Tfru10900_t",0.446863706231104,1.07606656941997,0.769635276249297,10.1690136393631,8.50906688831394,14.058497726246 -"Tfru10901_t",16.0068314965015,13.2575580251839,15.0134920272223,18.5609180990317,18.7079308197617,19.8418761090006 -"Tfru10902_t",10.7369359581069,8.74990845586239,10.304853201215,5.00198223005833,5.74616720954521,8.57512541968001 -"Tfru10903_t",8.65223149473379,9.74537364863398,10.5754534969006,11.1149683965132,17.3933448203288,13.6815913899246 -"Tfru10904_t",2.27225662191744,1.7732326638576,1.46756899408018,1.04461420077878,1.09261974933612,0.831232965345454 -"Tfru10905_t",0,0,0,0,0,0 -"Tfru10906_t",0,0,0.350342450205491,0,0,0.148825810717622 -"Tfru10907_t",0,0,0.0894261013194486,0,0.0898811425442757,0.0759765881661035 -"Tfru10908_t",0,0,0,0.125214472373609,0.20954998362628,0.221415921564761 -"Tfru10909_t",0,0,0,0,0,0 -"Tfru10910_t",0,0,0,0.0898643679703047,0,0 -"Tfru10911_t",0.287706769765231,0.461873322034141,0.445966742265003,69.4595553057816,68.3808960609946,39.4891959706454 -"Tfru10912_t",0,0,0,0,0,0 -"Tfru10913_t",0,0,0,0,0,0 -"Tfru10914_t",15.0512708635904,19.0853819241348,15.8552627935351,15.4811385641885,16.7180737861278,16.6110615463555 -"Tfru10915_t",20.1947997445536,17.5067732916361,21.5645858890576,0,0,0.591010121455652 -"Tfru10916_t",0,0,0,0,0,0 -"Tfru10917_t",7.32279879888389,6.47954063306647,7.94462220644435,9.36384247143699,8.43420706231703,8.94344041399593 -"Tfru10918_t",0.334037283385477,1.07250107382878,1.00679922817502,2.07313345114794,3.18032718688473,1.71075713234451 -"Tfru10919_t",0,0,0,0,0,0 -"Tfru10920_t",3.8380375174773,2.73841644739024,2.93789709512422,0.441110882372003,1.1073174261673,0 -"Tfru10921_t",69.5495741685448,67.9862386217682,73.5317112647668,78.3514165161479,100.726554770838,72.0451110625097 -"Tfru10922_t",144.913773684344,127.315517330692,119.53388433912,104.654206809677,123.856391009789,137.541656468063 -"Tfru10923_t",0,0,0.682506754409754,0,0,0 -"Tfru10924_t",0,0,0,0,0,0.491720478490671 -"Tfru10925_t",0,0,0.0531562938776149,0.127698521421432,0.213707110413869,0.135485069418908 -"Tfru10926_t",0.450975948926482,0.517128105958471,0.332879061199849,0.999603264884409,0.390335053856007,0.329950474528101 -"Tfru10927_t",4.98208312951504,5.94854491995639,5.52380188632001,7.79448487998624,6.57604818890654,6.51556972214382 -"Tfru10928_t",0,0,0,0,0,0 -"Tfru10929_t",0,0,0,0,0,0 -"Tfru10930_t",11.1848134754886,9.37684833076413,10.2739478296948,19.0251906604114,17.2103773534483,11.6383545233378 -"Tfru10931_t",2.99035823880569,2.77535003963118,3.13846821215787,5.1230686572259,6.14711030944633,5.33289729305613 -"Tfru10932_t",0.688609645233117,1.1054672946629,0.592997671490055,0,1.78804535096163,0 -"Tfru10933_t",6.76244518903292,4.17544922705787,8.51126070205105,9.95435672324933,9.45505096399195,10.4661866577423 -"Tfru10934_t",15.7494152116111,17.4514661176485,13.9810275194896,14.9926679952616,16.0496099748386,15.3144269543312 -"Tfru10935_t",31.2082611384753,29.0946273176096,29.487299164205,19.5708534445782,18.8237185720006,23.2468830922285 -"Tfru10936_t",0.82944642965713,0.795675575421647,0.987494335597083,0.713586399321649,0.66167944131067,0.579293706520947 -"Tfru10937_t",0.856811593793447,0.894069928833044,0.700952882907315,0.354508286903762,0.407879799847787,0.438812257811977 -"Tfru10938_t",0.553306542951355,0.814235516121658,0.39706759586956,2.38471031359178,2.47434596472875,2.63132528345634 -"Tfru10939_t",0,0,0,0,0,0 -"Tfru10940_t",2.97821128879577,2.8885844098856,3.63331512982681,2.18209799861719,1.82590155599915,2.08817780798624 -"Tfru10941_t",3.66146920553524,5.71470381499869,5.43030797818511,3.78735881087439,2.81700123267096,4.46477432152865 -"Tfru10942_t",0,0,0,0,0,0 -"Tfru10943_t",0,0,0,0,0,0 -"Tfru10944_t",0,0,0,0,0,0 -"Tfru10945_t",201.710193974085,180.393183471832,239.438613252624,354.212038544719,279.413097202881,211.851652904114 -"Tfru10946_t",7.63000553851578,6.70466971488183,6.98558060488606,11.5477431089795,10.2188672225554,8.52049108491852 -"Tfru10947_t",0,0,0,0,0,0 -"Tfru10948_t",0,0,0,0,0,0 -"Tfru10949_t",0,0,0,0,0,0 -"Tfru10950_t",35.7332938526883,29.464069775594,31.2834815018314,39.7617696019147,35.356928229438,49.9931920788219 -"Tfru10951_t",0.614335479133071,0.123278802590465,0.793554471306405,2.30353425136312,1.12992262651867,0.505654057072577 -"Tfru10952_t",0.699046225735669,0.961904380628606,1.39746553874687,1.47198635903573,1.40457648757526,0.931565542688042 -"Tfru10953_t",5.20900677890734,5.42093425334807,5.18990536320092,7.42430641206433,5.97648035493033,6.27058829519282 -"Tfru10954_t",0,0,0.0668629537591811,1.04407113655702,0.201609549865949,0.170420683437276 -"Tfru10955_t",0.698630991862349,0.543253288858244,0.695631884302249,0.812982946409108,0.340137525397542,0.431277706681964 -"Tfru10956_t",2.348627552413,3.32631639097233,3.04955035916538,3.03951112938484,3.39113892784986,3.74854176519613 -"Tfru10957_t",20.5680577612854,28.6011073003073,20.4563748597572,30.8640721179666,41.6224074373826,48.1123054503026 -"Tfru10958_t",3.60366227437844,3.84172113032419,3.61243688979479,3.58195636419437,3.04598878679286,4.26382955229899 -"Tfru10959_t",4.90300874732822,4.82849030528678,3.44165495284016,3.75041601608683,3.38784463474267,3.31591789156525 -"Tfru10960_t",6.9924197795294,8.37834863299085,8.9886715858211,19.2875600292164,19.0336600929737,18.9066227451463 -"Tfru10961_t",0.154006190231801,0,0,0,0,0 -"Tfru10962_t",0,0,0,0,0,0 -"Tfru10963_t",0,0,0,0,0,0 -"Tfru10964_t",0,0,0,0,0,0 -"Tfru10965_t",0,0,0,0,0,0 -"Tfru10966_t",0,0,0,0,0,0 -"Tfru10967_t",28.4633255785716,30.2489102020873,31.1392969332602,31.2445281176754,26.9613130618486,18.4342054967615 -"Tfru10968_t",187.190906631671,171.525492627085,236.94435833628,243.200119972991,219.117557710895,182.332593578909 -"Tfru10969_t",0.514349245539474,0.550477591975384,1.18115454640708,20.4832989021457,35.0213617533128,28.6627881027088 -"Tfru10970_t",0.892996645976138,0.82706670094421,1.89293778492059,5.89746855082962,4.39969295139461,1.10566747030279 -"Tfru10971_t",8.00465339828725,7.35188923226859,8.11942300138401,8.39929273823044,8.26066577688645,8.10899552450608 -"Tfru10972_t",2.53837280192636,1.09711687418685,2.31203624532764,1.56529003988717,1.60553520284493,1.67859256934326 -"Tfru10973_t",5.62412564160318,4.79652546145916,8.4756487325864,10.1806176868785,11.8654390310228,9.51551135387438 -"Tfru10974_t",0,0,0,0,0,0.0259784699181647 -"Tfru10975_t",0,0,0,5.81749582107345,6.69332458160259,4.37199170313147 -"Tfru10976_t",8.08730597965801,6.32363988955955,7.74489407452197,5.48075695508185,4.70678826292854,5.20285153717056 -"Tfru10977_t",0,0,0,0,0,0 -"Tfru10978_t",1.93870100241802,1.66731193723314,1.7887677024915,8.06917835539072,9.42882816435346,6.4504540806803 -"Tfru10979_t",8.31785908628192,7.94513573962492,9.09693656224169,8.34573054578872,6.98340881076926,7.60706185970021 -"Tfru10980_t",0.619241106423446,0,0.177753601885587,2.13510672794311,1.78658094148204,2.71835645423783 -"Tfru10981_t",55.1768621229007,48.4974193647892,59.3663753492515,23.7243333381822,37.2077081691243,43.9173126372558 -"Tfru10982_t",31.8660049822732,41.8552789760594,35.994666565078,43.6634584747933,58.3859932211134,45.1147483454694 -"Tfru10983_t",20.872143297254,20.9420823034114,22.0182613813929,18.3513086343334,25.7434107213925,22.9062334756687 -"Tfru10984_t",17.4444750711971,18.3586272722575,22.7004355969008,15.180088077937,16.4409021761262,15.92338069332 -"Tfru10985_t",2.3725651976532,1.21189867809728,1.48591971178298,0,0.37337018905427,0.315610063293339 -"Tfru10986_t",61.2013418345363,57.7901644031567,57.6516638123903,27.735589532439,25.5440344289224,22.9936648676916 -"Tfru10987_t",1.52468923360159,1.80516188566338,1.37863887052279,3.86392318288289,2.63934099159053,2.67724398517798 -"Tfru10988_t",1.17436198437954,0.820443887082132,1.08621577170882,3.21680938837735,2.93641204081226,2.22757141488296 -"Tfru10989_t",2938.70781011847,3611.18045832335,3064.17963491624,13812.6354373152,11792.1796492777,4849.68405536499 -"Tfru10990_t",0.371727330847113,0,0.160056893733261,1.73028671337514,1.93045604384918,0.271969291267158 -"Tfru10991_t",0.339207443222533,0.0907584185962108,0.584218433115213,4.67826884669096,3.62101243577094,0.827255179359054 -"Tfru10992_t",2.07067830070469,0.949767676295558,1.52843061903029,21.7247109568212,34.0526101913255,27.2697096412803 -"Tfru10993_t",0.887824325193632,0.534479564203312,0.764551819999301,8.09295705392809,9.12525126848126,7.75417861746245 -"Tfru10994_t",0.164403868437275,0.0659819031477344,0.0707883717880958,0.255084668768937,0,0.360851623246836 -"Tfru10995_t",7.52331732281619,8.93242323919012,11.4727348082684,12.9699766906395,12.6163946298576,12.3847508605388 -"Tfru10996_t",59.322720303627,69.1030105233254,73.5917132284446,104.390860830193,53.8505111851491,50.4159048306779 -"Tfru10997_t",0,0,0,0,0,0.0977186960673732 -"Tfru10998_t",3.3604150708579,1.99368623528476,1.38400500111613,0.906770544284709,1.64396517589243,1.49654058707702 -"Tfru10999_t",3.36789929150569,3.90483547982539,3.06140000753061,3.87077255355388,3.88670882770525,2.19029166419163 -"Tfru11000_t",0,0,0.122619857571922,0,0,0 -"Tfru11001_t",0.454110144710527,0.364505432524241,0,0.469723480147485,0,1.0009769625375 -"Tfru11002_t",0,0.120914724899684,0,0.143623543808448,0.0576179431999359,0.0974089696139108 -"Tfru11003_t",0.0527703371679946,0.084715458564051,0.36354631139414,2.24786386157793,1.64428291172078,1.77600047237021 -"Tfru11004_t",72.6021779007565,60.7263011230975,58.8589922641541,76.4699940185706,108.312879475948,130.910693233548 -"Tfru11005_t",1.31658053149283,0.603882134480459,1.34973350685511,3.30734405611307,2.93025939790241,2.98151409605564 -"Tfru11006_t",0,0,0,0.688459150040107,0.576077991958514,0.486959100737147 -"Tfru11007_t",14.4182568829715,15.5853180931704,15.8928803955919,18.095640247787,19.9671883711631,18.2848004060163 -"Tfru11008_t",7.99839727033858,12.0541757672848,11.2923041114971,21.9498374952338,19.1203502546875,13.5748610108775 -"Tfru11009_t",0,0.0692335780461854,0,0,0,0 -"Tfru11010_t",4.38515702927885,5.55770645744378,5.06817515705924,2.62606396181355,2.49704135708513,5.15023166127615 -"Tfru11011_t",12.2345208890457,11.211638576853,9.92119648582528,7.27672357291583,9.26572045318386,8.50366118957167 -"Tfru11012_t",11.7412092837204,11.841485971356,11.1351388130599,11.3858424894183,10.0310062342741,12.5336884043547 -"Tfru11013_t",21.3405198917231,21.962740785639,22.9982480793598,26.6501086140234,20.2435909828182,15.6734404140398 -"Tfru11014_t",72.064762469625,79.0767001278308,66.7429796060118,43.357484922712,38.0955307939395,49.7078837614083 -"Tfru11015_t",2.13224306526516,2.13938784952362,3.30513423201475,12.4613824270091,22.4231778798877,24.3364196266876 -"Tfru11016_t",13.4208986722259,11.6654607090282,11.5574356488134,10.2008351536001,9.56254439843737,9.22247146556417 -"Tfru11017_t",0,0,0,0,0,0 -"Tfru11018_t",0,0,0,0,0,0 -"Tfru11019_t",4.20051883857237,6.40618297661354,5.06420011772038,4.34494219136423,3.27212299432436,5.83918068350589 -"Tfru11020_t",2.04416940512127,2.40119305698461,2.18969229337634,1.70187646664712,1.51037658821434,1.93332235655669 -"Tfru11021_t",17.9709153789357,27.7943316330876,21.0117122896721,16.4729982211722,19.8540409703932,15.6067804080889 -"Tfru11022_t",8.1724049204419,7.69218325903067,7.66604865202108,5.0317801868723,3.83147645221021,6.29954579575498 -"Tfru11023_t",3.43388422164662,2.62811188754408,2.95709675532287,3.3867420122801,5.04573254300123,4.44044158441512 -"Tfru11024_t",0,0,0,0,0,0.0441876778047288 -"Tfru11025_t",0.203579265197369,0,0,1.28968157511471,1.52710820054628,1.33765875327038 -"Tfru11026_t",14.0137687821675,19.4820788355175,12.6900482006505,3.13822135919687,2.00072486516441,2.37826972673001 -"Tfru11027_t",0,0,0,0,0,0 -"Tfru11028_t",6.09401696787702,2.96986939193974,8.05923778911829,6.07841653714167,3.39080103038794,9.23568256458525 -"Tfru11029_t",0,0,0.0928699819864363,0.404555550973362,0,0.556855580934669 -"Tfru11030_t",6.76775323078255,6.59124485128421,5.24525867647883,2.47349018412787,1.6011104280618,3.56510551087475 -"Tfru11031_t",5.32192432036319,4.57693472965959,7.85654834035482,2.35924462879506,1.97413151995436,3.33746931183952 -"Tfru11032_t",12.8064598736963,9.45713789872345,17.6452965774229,5.29870998946858,6.65065649252919,4.87223035209092 -"Tfru11033_t",0.510701378549832,0.819860243367594,0,3.69782314158658,4.42029448743581,4.29694947114495 -"Tfru11034_t",3.57380764317501,5.48780682012452,3.43441438316425,4.23243444041645,3.98984719132577,4.66103721248117 -"Tfru11035_t",0,0,0,0,0,0 -"Tfru11036_t",0,0,0,0,0,0 -"Tfru11037_t",0,0,0,0.122392737784908,0.102413865237069,0.51942304078629 -"Tfru11038_t",91.2215679106275,97.2431660330765,73.5877025076474,50.3491155222465,47.1235643436317,117.654148852208 -"Tfru11039_t",114.242139433857,127.739240501295,109.979235674959,75.0302368912541,78.8452967489611,140.084857252754 -"Tfru11040_t",5.81921943440977,5.26223756818205,5.40769161440047,4.74305394848616,4.46292775298758,6.89831447415725 -"Tfru11041_t",6.02945287833355,9.03415378217976,2.07691050624212,1.24735182527203,3.13121817638695,2.35272956273216 -"Tfru11042_t",13.9122355490195,15.5947327116559,13.1155510644041,10.1491386457201,6.71789729611431,7.78581234291129 -"Tfru11043_t",19.8756257239766,19.3665736969511,18.3952216819634,15.5252202691429,12.3702210761043,7.98296203842588 -"Tfru11044_t",0,0,0,0.165837488220009,0.277533756940149,0.821098127451611 -"Tfru11045_t",0.0810128994903061,0,0.13952886396805,0.167596612974512,0.0701194255721495,0.177815987925876 -"Tfru11046_t",4.72964823484574,4.93531634184827,4.02203487785171,9.11184217471176,11.001742806783,9.73232826244545 -"Tfru11047_t",19.4390207821257,16.9601370767064,17.7589081449234,15.7362091437739,12.143358306681,10.7594772734303 -"Tfru11048_t",0,0,0,0.204628360660796,15.9810646853448,152.601243509288 -"Tfru11049_t",69.7009169916954,62.5241976462426,68.0725486781486,107.429889346918,81.4035482409753,50.4891562859531 -"Tfru11050_t",0,1.16264663365856,0,6.74215164978073,6.26843483041352,3.7090984232343 -"Tfru11051_t",0,0,0,0,0,0 -"Tfru11052_t",0,0,0,0,0,0 -"Tfru11053_t",17.2721645093417,16.0794386254865,15.2290385702516,11.4246324167893,10.3574611956065,10.1971047076255 -"Tfru11054_t",0,0,0,0,0,0 -"Tfru11055_t",12.7439469848213,14.7725093617716,13.7334240480552,11.3778570943351,5.60759307878562,2.21378393442462 -"Tfru11056_t",4.45131228693376,4.37472467285167,4.54381209100192,8.40014670235318,6.57788718309942,7.06951450574776 -"Tfru11057_t",20.5179189422573,20.0355317790848,20.7993933406372,13.5779443480132,13.7911594151812,14.3467723777434 -"Tfru11058_t",11.0539969436113,11.9783199701221,11.4230077843315,13.7208700779921,10.0459916492413,13.7487633822158 -"Tfru11059_t",9.43475911007466,8.5279676754878,8.79593909955617,11.4139594675486,13.1367785145401,11.794808843636 -"Tfru11060_t",7.81771580550334,7.09572314781441,8.90727497952658,8.0243026869862,8.58824932893532,7.56763800296132 -"Tfru11061_t",13.4233971580465,12.6071335466536,19.0300687653467,13.3181923691817,18.4946082287898,18.573137643188 -"Tfru11062_t",0.170926504112813,0,0.147193725264362,0,0,0.125056072891918 -"Tfru11063_t",47.4488008070844,85.4331639963731,43.3094759998468,44.2057948289669,27.9885010045367,20.0920601753536 -"Tfru11064_t",0.726733363074805,1.51667052806367,0.375496795678723,0.45103206138729,0.503209995282485,0.212681867911342 -"Tfru11065_t",11.9279288776621,11.1929975130337,12.7103811505604,7.18979198162416,12.2180055059893,10.6731973140799 -"Tfru11066_t",10.436071648627,7.53914962922809,8.98704546179303,32.3846622958825,20.7753840909483,18.7067573384628 -"Tfru11067_t",13.8527748931642,11.119354550673,12.3141644199888,48.5339287333239,35.5833706238583,22.558984723511 -"Tfru11068_t",8.75402245349536,10.8233608892807,7.41695575464448,26.434774340737,17.4146601938831,7.38613744132102 -"Tfru11069_t",6.377751116157,5.20756125131164,5.11344065738407,4.89090351383932,6.37673765618767,4.42484069430729 -"Tfru11070_t",4.67807202439614,4.38083095237951,3.52496527915571,4.73810401378466,3.07895048447639,4.52787853709395 -"Tfru11071_t",0,0,0,0,0,0 -"Tfru11072_t",0,0,0,0,0,0 -"Tfru11073_t",9.25538049176963,8.36424831104354,10.701369388095,4.75332658839538,6.21821010734469,6.10862304900056 -"Tfru11074_t",1.12398102713086,1.38799667273382,1.38983193625259,1.19243696503993,1.59646176204886,1.28623281283329 -"Tfru11075_t",0,0,0,0,0.064178150325083,0.0542498321503775 -"Tfru11076_t",0,0,0,0,0,0 -"Tfru11077_t",21.4273657608074,21.6696431852333,19.7528190787488,15.7199032092054,16.9120963751596,16.1604764037892 -"Tfru11078_t",16.4394406344127,15.2331802700239,15.4059941916262,8.75240153656104,6.90519960432958,9.63984391521607 -"Tfru11079_t",80.952365079059,72.0018011101473,90.4138573667829,126.61398782115,137.854861574164,107.455094479077 -"Tfru11080_t",5.42532765843007,7.19202744310305,7.29120229417387,5.86694738168556,6.04762893058427,5.0519227254557 -"Tfru11081_t",0.158092541910891,0.406073044889632,0.217826769943346,2.02774870805105,0.738906208729625,0.717130920066883 -"Tfru11082_t",0,0.0393198279982417,0,0.0506698797826733,0.0847974860855033,0.107519055089874 -"Tfru11083_t",5.63828032023137,7.33169651862517,4.85541717902241,3.67424641685834,2.92807426785177,3.34138915834671 -"Tfru11084_t",0.300681377134744,0.289621352972017,0.207145929756432,0.497631174386741,0.104099991865883,0.307985267562379 -"Tfru11085_t",0.888503845620652,1.18238542055943,0.583920334833171,1.20927976380858,0.48570338537146,0.684275645158672 -"Tfru11086_t",0,0.501364349568659,0,0.969132087293137,0.270311688915684,0.456989292389425 -"Tfru11087_t",0,0,0,0,0,0 -"Tfru11088_t",0,0,0,0,0,0 -"Tfru11089_t",0.494606676989797,0.94794642975619,0.736531295625866,1.0745775847892,0.77307177176139,1.64641842548755 -"Tfru11090_t",0,0,0,0,0,0 -"Tfru11091_t",0.0950596888432459,0.0395472556426378,0.161255158117152,0.329145539906606,0.0923976142357595,0.786851721531699 -"Tfru11092_t",0.0257463612538913,0.165328850792484,0,0.106526317900441,0.0445687062937904,0.324663602437097 -"Tfru11093_t",0,0,0,0,0,0 -"Tfru11094_t",11.85561697855,7.3762510552002,13.5312378953269,27.342917774149,17.7734042155513,24.7769349874055 -"Tfru11095_t",0.0597513348303325,0.0479612411216107,0.051454990019512,0.309028605360187,0.258584083635559,0.612027622737758 -"Tfru11096_t",0,0,0,0,0,0 -"Tfru11097_t",0,0,0,0,0,0 -"Tfru11098_t",0,0,0,0,0,0 -"Tfru11099_t",10.4163809474032,7.63398170003599,7.60507526342297,10.0718336511408,5.6838314965802,5.63291653395375 -"Tfru11100_t",0,0,0,0,0,0 -"Tfru11101_t",0,0,0,0,0,0 -"Tfru11102_t",0,0.337167525084923,0,0.434494219136423,0,0 -"Tfru11103_t",0,0,0,0,0,0 -"Tfru11104_t",0.461595476766195,0,0.397503933887,0,0.399526617133621,0 -"Tfru11105_t",0.0778594780087557,0.0624962975134241,0,0,0,0 -"Tfru11106_t",0,0,0,0,0,0 -"Tfru11107_t",0,0,0,0,0,0 -"Tfru11108_t",23.6807773449704,21.2709713811953,17.4795018444797,36.1592504516198,23.9126065207881,6.60027488068448 -"Tfru11109_t",4.50783248586831,3.8940161229597,2.44738858912195,0.631201470054426,1.43715227607111,2.31035949126251 -"Tfru11110_t",0,0,0,0,0,0 -"Tfru11111_t",5.17774145643244,4.16056806858243,5.20693110686098,5.38682409662107,6.41880871887324,6.27848522890192 -"Tfru11112_t",0,0,0,0,0,0 -"Tfru11113_t",20.8307817156847,19.611831783501,18.6935615870718,13.0654679153576,12.5736492431959,15.4486229352052 -"Tfru11114_t",2.69467246248039,3.30805873668226,1.36501350881951,1.96752099231588,1.23476339408466,1.85554897589065 -"Tfru11115_t",2.83116125295799,2.73629765887351,2.53757325607918,1.73319564717418,1.25023803848554,2.62093102423344 -"Tfru11116_t",4.72653662416492,2.93721255972347,3.54507138134431,2.83880070579151,2.11147279327242,3.79276231233547 -"Tfru11117_t",5.04815716922599,6.41071886260123,6.16398476852576,4.44236241987016,4.89106576132191,4.79592843488328 -"Tfru11118_t",16.8394964575284,18.472875539174,18.3684000451837,32.901566705208,44.535205317456,26.8310728863475 -"Tfru11119_t",4.06674435326752,6.09908134548523,3.77856605689782,9.52012811356239,12.2270413376027,9.31763327304325 -"Tfru11120_t",1.572737162648,2.05140927898783,1.49544576687753,1.79627095274808,2.46727942889772,2.13353756807629 -"Tfru11121_t",28.0814629876705,34.5620192844712,56.022587852219,69.4706634496677,118.894224553909,172.410348872319 -"Tfru11122_t",3.42783548143192,3.13149279384554,1.40255445743898,0.822757313062659,0.278659908343423,1.70428366966737 -"Tfru11123_t",6.15479904963015,6.10152878832453,3.46552740858403,1.44196578673954,1.04722505906158,3.54088009018582 -"Tfru11124_t",14.5076743080105,13.1183667322957,12.0525531012973,5.95147543859134,5.42298628844606,6.94710129970403 -"Tfru11125_t",52.1944735506864,58.2529790568009,51.5563483634884,41.9657831165911,55.2044795888968,61.5740887573336 -"Tfru11126_t",2.0505491371729,1.8454435544589,1.81934492817511,3.21371463858301,0.860518867672415,0.863784124778977 -"Tfru11127_t",7.53799219405705,5.48061646757027,7.29101818917572,11.2437385706305,10.3066437330257,8.15271274680172 -"Tfru11128_t",32.1360082018935,28.9374846771914,31.4668745178742,42.3526403896086,42.49877114527,46.6657056157547 -"Tfru11129_t",18.4708182439119,16.1554113611578,18.3743857839957,13.4400031393223,11.6871379798966,12.6751298504736 -"Tfru11130_t",1.38860126894955,1.11460338871049,2.09264467674396,7.1817226303541,3.60564517280921,1.77791495365555 -"Tfru11131_t",0.313033541765989,0.408307203176898,0.303265693389336,0.161898172011709,0.135470599568363,0.257655118042571 -"Tfru11132_t",0,0,0,0,0,0 -"Tfru11133_t",25.9097410277405,29.6203231005546,29.0735105195234,60.9104013992644,48.9289394387653,13.2121149797877 -"Tfru11134_t",2154.46371926896,2370.77225347887,2338.45613648029,4473.59896212769,3335.2576597823,983.256828033196 -"Tfru11135_t",12.0014823959211,12.1908864948531,11.7984795951947,17.9070942400094,11.8585156979307,11.5004157450113 -"Tfru11136_t",58.1172547182663,59.1542008447045,58.6239205595548,19.5724745622843,23.3964952082652,23.1599929066368 -"Tfru11137_t",0,0,0,0,0,0 -"Tfru11138_t",4.28317663324911,3.50641864782195,4.46498604807955,5.06257789065326,5.53721029103988,6.05521751382625 -"Tfru11139_t",5.50553440007058,6.87428934639163,5.61908473533467,11.3896542880422,10.5893948036387,9.99553157370705 -"Tfru11140_t",7.15285093949569,6.31331322411389,5.57071829192927,4.745832379984,3.92181182042494,5.48348396687155 -"Tfru11141_t",1.54416467309082,1.34929768065628,1.34659313108299,0.828955932275167,0.575214217501826,0.529131506183335 -"Tfru11142_t",1.72806154751395,1.28038300665161,2.51836353051194,0.687490853063961,1.26558906250239,0.389019365989732 -"Tfru11143_t",0.380137451454513,0,0.327356180848117,0,0.329021919992394,0 -"Tfru11144_t",0.150826529212652,0,0,0.468036860829181,0.391636504407464,0.551750985874127 -"Tfru11145_t",26.4924483776842,24.5331588527059,26.0631577717896,18.3063154040031,17.5499973201242,13.9612074500625 -"Tfru11146_t",36.8321356288612,40.5265399609464,53.101042754422,0.428073122301895,3.58196277430143,5.45010382696946 -"Tfru11147_t",25.9360894730628,32.1327440013801,41.7565877395904,1.74964115088483,1.95204951190107,5.36272334055614 -"Tfru11148_t",4.58125857117694,4.99415420354234,4.58491641355882,4.19445414199495,3.59014559272467,5.20890337511675 -"Tfru11149_t",28.5318260733218,23.5870460219061,24.990247315311,9.96372810211246,8.97050329035866,7.40435408648672 -"Tfru11150_t",0.0510391110397615,0,0,1.26705483101752,0.706817441733356,0.186710388293978 -"Tfru11151_t",0,0,0,1.5405113329575,0.820301225186516,0.148585962513403 -"Tfru11152_t",0.138860126894954,0,0,0.430903357821246,0.120188172426974,0.304785420626666 -"Tfru11153_t",0,0,0,0,0,0 -"Tfru11154_t",0,0,0,0,0,0 -"Tfru11155_t",26.6872509679152,22.9514360673691,29.4307531731376,26.0555690568033,27.1056469906214,29.4872896411796 -"Tfru11156_t",0,0,0,0,0,0 -"Tfru11157_t",9.10236764308756,11.4984306956137,8.48102531767431,10.0327261967558,8.52418068385268,11.4632882447063 -"Tfru11158_t",247.83061147577,267.171546877293,260.733960346632,246.445121094179,175.967503250332,105.596972781717 -"Tfru11159_t",16.6600859850983,17.5517066579419,15.8549202880742,7.78417812312015,6.92317729002587,8.34539685529973 -"Tfru11160_t",0.108260794808566,0.260696540014116,0,7.27889800099678,6.27812831098889,3.56433980951933 -"Tfru11161_t",44.3346353266136,70.4493147225742,35.4610486137333,29.3808255516222,26.1457651305584,25.7295599273209 -"Tfru11162_t",42.550710312811,41.8175307085846,44.6288507591313,38.3709180536062,73.1860121385679,70.6449064238237 -"Tfru11163_t",0.676139853291328,0.407043289840953,0.72782410430014,1.04908060958493,1.46305521767242,2.34977089879512 -"Tfru11164_t",2.40640799154369,3.86315432942623,2.90119675744643,2.82103184926258,3.19366980137748,3.12998395042025 -"Tfru11165_t",42.4442670099647,46.7570296110799,52.9358897322687,65.5526121554255,57.3223250070372,43.742991183058 -"Tfru11166_t",0,0,0,0,0,0 -"Tfru11167_t",0,0,0,0,0,0 -"Tfru11168_t",0,0,0,0,0,0 -"Tfru11169_t",0,0,0,0,0,0 -"Tfru11170_t",28.7878695379283,29.025999825238,30.2622602739593,31.400422559439,37.8166305184909,37.3037244511163 -"Tfru11171_t",0,0,0,0.136848572956354,0,0 -"Tfru11172_t",0,0,0,0,0,0 -"Tfru11173_t",9.27895351050553,11.449342423549,10.2722564935198,15.1868059612893,16.1899688218436,16.399991090067 -"Tfru11174_t",2.30797738383098,1.48205505531834,1.590015735548,1.90986469950076,1.19857985140086,1.01316032680842 -"Tfru11175_t",20.9086928775436,20.8979334119167,18.0055656729679,19.2964645756563,19.3975829105501,19.511263402412 -"Tfru11176_t",7.73779786052805,6.92080709384842,6.66342120752681,5.25966686323039,4.97515776914815,6.30825614007561 -"Tfru11177_t",0,0,0,0,0,0 -"Tfru11178_t",0,0,0,0,0,0 -"Tfru11179_t",0.785143667507288,0.630219640437332,0,0,0.679568603316185,0 -"Tfru11180_t",0,0,0,0,0,0 -"Tfru11181_t",111.088101515964,109.509782940806,158.443096953471,171.284084733945,164.357325793887,109.976739276122 -"Tfru11182_t",18.9352917687428,22.3175080798009,19.5054783421469,27.2721050527855,27.591843921074,25.5154527952581 -"Tfru11183_t",0.752331732281619,1.0064702241341,0.215957361096818,1.03759813525116,0.651168755089424,0.733911162106002 -"Tfru11184_t",0.22107993887223,0,0.190383463072194,0,0,0.161750157437836 -"Tfru11185_t",0,0,0,0,0,0 -"Tfru11186_t",0,0,0,0,0,0 -"Tfru11187_t",16.5717346411309,13.8153944018042,16.2543687817159,12.6410351645174,12.9589029478192,12.6394258591942 -"Tfru11188_t",9.93159110010634,10.3197833588746,7.9668156854826,12.0321476068548,9.24378425747052,11.0985492641961 -"Tfru11189_t",645.148389535586,968.77753005793,669.888194392911,550.580460871444,609.464130219551,409.610665851736 -"Tfru11190_t",245.500490728972,351.491109682803,230.85017243069,168.464652574818,167.814528534164,151.661315364301 -"Tfru11191_t",0,0,0,0,0,0 -"Tfru11192_t",0,0,0,0,0,0 -"Tfru11193_t",0,0,0,0,0,0 -"Tfru11194_t",0,0,0,0,0,0 -"Tfru11195_t",0,0,0,0,0,0 -"Tfru11196_t",0,0,0,0.202090334482057,0.338203927061949,0.214412999394341 -"Tfru11197_t",0.14921914168996,0.119775319745976,0.128500383601126,0,0,0.218348347518216 -"Tfru11198_t",0,0,0,0,0,0 -"Tfru11199_t",41.5907874240708,51.2857509008098,32.182488896724,47.4631353280864,38.2807413586128,37.4854176519613 -"Tfru11200_t",0,0,0,0,0,0 -"Tfru11201_t",13.6607356758367,13.8202050372014,14.3932466012392,28.5213140474715,27.1893655412823,31.7343021508986 -"Tfru11202_t",0,0,0,0,0,0 -"Tfru11203_t",0,0,0,0.674069893941445,1.22208141711461,2.42363842883584 -"Tfru11204_t",0,0,0,0,0,0 -"Tfru11205_t",0,0,0,20.7864344038687,16.5478350026739,2.55253570707549 -"Tfru11206_t",8.91159797796569,8.12182546613406,9.11316201136736,3.07266630107526,3.85664588649648,3.8033628179858 -"Tfru11207_t",3.57766099129304,2.35273388463569,2.7097164010378,1.91721410188468,1.49233133541958,1.98681311906711 -"Tfru11208_t",9.82936766612914,9.73902540464677,9.45652411640132,15.5687142505921,13.559071518224,11.6862270967884 -"Tfru11209_t",0.373794779850712,0.525066223714007,0.563314807310386,3.76980523833604,4.44856667130984,3.35015342768911 -"Tfru11210_t",8.8029096389216,19.5849017987825,10.464585339253,26.9208263337374,27.0813520411052,15.2612563122441 -"Tfru11211_t",11.1190204550445,10.4125265099756,11.171029671442,9.84001613926606,7.80604505181955,7.23118350898561 -"Tfru11212_t",27.219362073949,26.5957743786987,29.6906818330349,26.9734011239892,23.2684301818621,22.0782494896349 -"Tfru11213_t",8.77902340717593,5.57867893464169,6.30006234839773,15.8915157071667,21.1070665655498,26.0490529307726 -"Tfru11214_t",6.08351004207033,5.11564520818504,4.98935972189199,22.1741877352382,25.5752142085122,24.797972412711 -"Tfru11215_t",0,0,0,0,0,0 -"Tfru11216_t",5.39878596807107,8.03283131863766,6.00991057409717,11.4412270869779,11.9670119959616,10.886444765487 -"Tfru11217_t",65.2434410308992,70.5675959548055,66.2174806568492,46.6413584560238,35.4847920923731,28.520893577607 -"Tfru11218_t",55.1108071485809,38.3022308402726,52.6676812114012,75.0806010483976,65.7333152476719,29.5032287094403 -"Tfru11219_t",0,0,0.291716596642879,0.350398563819696,0,0 -"Tfru11220_t",0,0,0,0,1.2536869660827,0.529871203319186 -"Tfru11221_t",1.55494784769774,1.97620040409672,1.74819982029275,2.3455986123046,2.24310059593786,2.4333211345147 -"Tfru11222_t",2.1585654988529,2.33010043915747,2.49983720265498,2.90005001550005,2.87762998778935,3.04965447455152 -"Tfru11223_t",3.51262899392812,5.21446199929614,2.77283231930931,4.23896799157486,5.57388353659589,4.49744340193008 -"Tfru11224_t",0.392026035345498,0.1543100801304,0.333728861282339,1.19311913721672,0.499179709279078,0.281304621631019 -"Tfru11225_t",0,0.262387179054415,0.285320087626848,1.01438339097998,0,0.239163656911976 -"Tfru11226_t",19.6006990236373,21.8059319970566,20.4107085936027,1.8167005678178,2.78694176829794,2.1416397152048 -"Tfru11227_t",0.224626675859485,1.26212442545158,0.386875486456866,0.929399399222296,0.388844087263738,0.657380318998692 -"Tfru11228_t",0,0,0,0,0,0 -"Tfru11229_t",311.88245365007,395.830776559236,352.946729922047,265.342856946608,265.636702943223,239.287386087083 -"Tfru11230_t",1.70147598524451,3.07291921596385,2.56415195833943,1.97997365682421,2.39311386364088,2.48972394233429 -"Tfru11231_t",2.79015355064407,3.09862784654934,2.43566104712926,4.30936031718563,3.37434582368905,4.11072056163673 -"Tfru11232_t",3.19649238447458,3.61838319603332,4.58777711012995,2.71293951460791,2.55385209313121,3.05826151331245 -"Tfru11233_t",0,0,0,0,0,0 -"Tfru11234_t",1.68653203054349,1.86140164413257,3.44935659568694,0,0,0 -"Tfru11235_t",0,0,0,0,0,0 -"Tfru11236_t",13.7961399257593,13.8879668369601,12.858975790193,11.3492307626052,12.0253189212676,13.2762629223126 -"Tfru11237_t",6.8197540465671,7.75996623299823,5.80830904288051,4.3410662393648,3.17839283817809,6.63449798304345 -"Tfru11238_t",6.51682517957265,6.02694058330554,5.00198036199796,2.05157472779424,2.45240621646944,5.90810861737526 -"Tfru11239_t",0.334702696300588,0.268659382537787,0,0.346210533176433,0,0.734642149319256 -"Tfru11240_t",1.01217321411382,1.01556483459314,1.30745269820664,0,0.219017603368431,0 -"Tfru11241_t",0.143525700634591,0.230410609397442,0.185396196955269,0.296920878680927,0.186339578264485,1.19009796930344 -"Tfru11242_t",4.62877988333381,4.14413581573651,5.04222555365209,2.90549466057792,2.67091116403527,1.96827128240814 -"Tfru11243_t",64.4831714268445,65.1346355277692,67.3383162052251,39.0506168025504,31.0235720077126,21.3349794438666 -"Tfru11244_t",0,0,0,0,0,0 -"Tfru11245_t",2.16983567180605,3.67268387796042,3.16842551682192,0.975843277117177,1.63310150069217,1.72557719894379 -"Tfru11246_t",0.492729482530484,0.197752214126055,0,0,0.639711240337118,0.180249442306093 -"Tfru11247_t",0.630603328559656,0.449931643149188,1.20676757243426,1.0871414990903,0.545808672948183,0.615163234292354 -"Tfru11248_t",5.11219331266414,5.4712782975241,4.91598678480535,6.43368722047848,6.34218114743959,6.67014340915052 -"Tfru11249_t",1.38951995983208,1.3384089649418,1.41197394709844,3.79445828157511,3.36749527110971,2.62288875871741 -"Tfru11250_t",1.31266213693194,1.58047277368878,0.56520090594308,0,0.568076908684103,0 -"Tfru11251_t",0.763730697922249,2.62727941624615,1.69119855508287,1.46712333734377,1.32206989669671,2.15526833157428 -"Tfru11252_t",0.556667322615886,0.409590588176052,0.759010824616921,2.35121112508942,2.24846785302367,2.2400297893655 -"Tfru11253_t",3.21827460896207,2.74469972535213,2.88690007850893,4.43856824018054,4.12025773870762,4.46394289241849 -"Tfru11254_t",5.55115392818617,5.92937687194089,4.47926129038743,3.79786830462638,2.11861357014873,4.12538642955397 -"Tfru11255_t",0,0,0,0,0,0 -"Tfru11256_t",0,0,0,0.226889931663929,0,0 -"Tfru11257_t",0,0,0,0,0,0.0765442837190258 -"Tfru11258_t",12.1562293036049,12.9456872095644,14.199660583866,19.297021193738,21.3557852224289,25.7131768901179 -"Tfru11259_t",2.83712341817271,3.2894392691212,3.8005254166757,8.47793598314972,8.18542337542053,6.57318651051319 -"Tfru11260_t",17.5627551972267,14.4564504763442,16.2320281498171,13.5960241673847,11.3766667209088,16.6962346266059 -"Tfru11261_t",23.3740388390061,19.5811340807527,25.6616967281387,18.5938950866521,19.6110860791725,22.1200214755557 -"Tfru11262_t",0.0380654176581094,0,0.0655602319596139,0.0393741929439441,0,0.0278500497627448 -"Tfru11263_t",8.38777637062991,8.22294911217373,7.39445163203054,4.7324547940668,4.07473002888765,4.36610527574901 -"Tfru11264_t",3.94150561260142,6.93769639417368,4.17006137613895,4.68857702955524,4.06944101915525,3.6458832403716 -"Tfru11265_t",14.9040395485358,16.9222821536178,19.8004575164849,20.6870636556235,22.2165877636714,19.3388929703918 -"Tfru11266_t",4.48047310462618,4.82956157773946,3.83760114352423,3.92529695742861,2.96041505842785,4.13486929080649 -"Tfru11267_t",0.184435514317118,0,0,0,0,0.0674698790629832 -"Tfru11268_t",26.935736053237,25.5359113452533,22.7569279862899,21.2352460652463,18.9030791122147,26.8976215011445 -"Tfru11269_t",3.19836459789774,1.62593476563795,3.12151566356948,1.98499897067401,2.21463485233459,2.57404438359196 -"Tfru11270_t",17.3586109732802,21.4319420519281,17.8011540866241,18.8463580855704,16.2860660776046,14.9299987590886 -"Tfru11271_t",45.823841875335,28.07040639463,27.6921400832283,22.0365489131392,27.4851373260632,23.8213868226631 -"Tfru11272_t",0,0,0,0,0.632294298420166,0 -"Tfru11273_t",7.40211189688545,7.32596675548079,9.28302600095388,20.9627664322449,22.0194190664542,20.6110380256117 -"Tfru11274_t",2616.69130594257,2974.52086547312,2193.45109393287,1.06624348254337,3.12268043084806,4.14794882263899 -"Tfru11275_t",7088.34041869591,9601.719205997,6482.07936711557,7.84705278707922,23.3462510185907,110.801562697049 -"Tfru11276_t",0.579381908768603,0.697587982934323,0.498935972189199,0.898953556833979,0.752212182603301,0 -"Tfru11277_t",0.226687471050857,0.0363915299605961,0.0780849605692757,2.57929649784169,2.51143337095112,2.22242795918365 -"Tfru11278_t",0,0,0,0,0,0 -"Tfru11279_t",0,0,0,0,0,0 -"Tfru11280_t",0,0,0,0,0,0 -"Tfru11281_t",0,0,0,0,0,0 -"Tfru11282_t",0,0,0,0,0,0 -"Tfru11283_t",0,0,0,0,0,0 -"Tfru11284_t",8.33418591844067,7.19052228563072,8.30920292145859,12.7006002516801,12.2089823484074,13.385361834869 -"Tfru11285_t",52.0973440368392,56.3770374736154,62.1867802025264,73.2150973155207,90.6562214877744,103.073712338715 -"Tfru11286_t",13.9798517596237,14.8564440740544,11.756178844708,13.4421649045331,20.3371533327799,25.114239288434 -"Tfru11287_t",0.386658637860218,0.451437690490273,0.454052610674271,0.472671535462218,0.517211444942018,1.00298633189487 -"Tfru11288_t",0.154147480314582,1.23731201866027,0.398233298903306,0.637789679466309,1.46761887614956,1.35335911544318 -"Tfru11289_t",14.7575410248105,14.0049456897123,13.4034835163818,10.6536551444246,8.64849017509741,10.4035096686916 -"Tfru11290_t",9.90060263812371,9.3877105537084,9.17409492626315,9.94156311187405,7.71738940387397,9.48874803660138 -"Tfru11291_t",10.461985559844,11.4841519986349,9.93357888217027,7.9776745929785,7.91377390265899,8.63585726139633 -"Tfru11292_t",0,0,0,0,0,0.0516513107784687 -"Tfru11293_t",61.6723575142996,67.0437159706437,63.1456827230204,49.7282401092554,40.3498789280846,29.1337277789767 -"Tfru11294_t",36.8065264567975,40.8940810127753,34.7402695487183,33.3399029535374,31.4973335537273,21.2997732071606 -"Tfru11295_t",15.7152460068662,16.3231543044034,18.5389204204976,19.385924803233,14.3464296216124,13.325881574624 -"Tfru11296_t",8.12051093572866,11.4956941768849,11.0616472568836,11.1487093135181,6.5174095961938,7.43271554945358 -"Tfru11297_t",213.563220950574,252.059343489802,201.121090389466,976.743004618679,515.885590216285,252.589045854925 -"Tfru11298_t",0,0,0,0,0,0 -"Tfru11299_t",0,0,0,0,0,0 -"Tfru11300_t",67.208301417158,47.6001211884597,58.3021358090497,44.9829309223591,38.9232931351002,34.709680843131 -"Tfru11301_t",2.71001215391766,4.3505487107732,7.00119831942909,10.1615583507712,9.3824315249444,5.45254562975931 -"Tfru11302_t",49.4326792391434,63.256804406542,51.2418707501605,54.5179559675672,34.5045714797218,22.3509308459555 -"Tfru11303_t",17.2731615791761,15.2828270716063,22.3122301581806,26.8005780028074,35.6773535206706,21.828712835536 -"Tfru11304_t",6.54126597762415,5.71383134113381,7.7868289705406,10.2155892743525,10.5462827637257,11.0730947473474 -"Tfru11305_t",56.3405259777682,53.9657061873836,53.9931236897807,75.3285702973729,63.4398992125489,87.050375549481 -"Tfru11306_t",4.87612676365744,3.91397266881799,3.13666740558105,3.52456849089686,3.00008168865792,4.81404664374427 -"Tfru11307_t",1.85938459655115,2.27265836827865,1.63760423467531,0.655675380990578,0.95098589148707,2.04059051737471 -"Tfru11308_t",25.8647699367941,28.3252908901892,22.7914904718408,28.4132257860095,33.3199477544565,27.2852055553849 -"Tfru11309_t",4.40710173227265,4.64296264051369,1.89759254996548,4.27371363085006,2.62246651639839,7.65794188000772 -"Tfru11310_t",49.0230043629996,35.2678864011348,37.1362997217821,14.3077999521921,7.39462823576126,8.33424540018681 -"Tfru11311_t",19.3484519294622,16.2950892194981,17.5684405720439,16.2805709795748,15.6187255099015,15.2929176298326 -"Tfru11312_t",1.68604384103252,2.26426666788022,1.92661304583286,1.27447165782972,0.926112258782141,0.972623486252986 -"Tfru11313_t",0.40712564463992,0.571885794910216,0.350597121237867,0.736966206434447,0.56380979359976,0.521268983262229 -"Tfru11314_t",0.238214678936051,0.446157405594416,0.273518774924136,0.0821350130692671,0,0 -"Tfru11315_t",1.3772192913352,1.76874767257665,2.37199068745685,0.284914242056671,0.238406046945308,0 -"Tfru11316_t",1.84705104764477,2.41124879017002,1.99260971739248,1.00776624878223,1.21219020487171,1.49987220161009 -"Tfru11317_t",0,0,0,0,0,0 -"Tfru11318_t",0.547017532096471,0.577737363065324,0.4710653198702,0.387143581135949,0.4983813866917,0.568730848290678 -"Tfru11319_t",129.230516840395,123.444772672247,106.566964298328,112.848561306449,114.77291863544,87.5317978706885 -"Tfru11320_t",0.0667278608192593,0,0,0,0,0 -"Tfru11321_t",0,0,0,0,0,0 -"Tfru11322_t",158.346013173683,147.714160049693,172.290671836719,156.572085989452,102.385574831059,73.0911661344907 -"Tfru11323_t",56.4659909091156,59.6952339117965,61.6717578349657,91.8848430053007,96.5544489519279,68.5184273042051 -"Tfru11324_t",29.3390085032593,23.8610863906253,25.2653500378577,45.7221609060482,34.3433080088061,32.0563927402185 -"Tfru11325_t",0,0,1.32339724330672,0,0.443377099501946,0.37478695016084 -"Tfru11326_t",0,0,0,0,0,0 -"Tfru11327_t",1.5274613958445,1.47127647309785,1.31537665395334,2.21197057014906,2.90855377273276,2.011583776136 -"Tfru11328_t",0,0,0,0,0,0 -"Tfru11329_t",3.3431600512386,2.77005412136522,3.43618933349814,1.56172504952758,2.05353603979848,4.02402830699007 -"Tfru11330_t",19.7562864055931,18.9850768026861,21.9422171505624,16.8068093556067,19.6567095629742,24.8131776752898 -"Tfru11331_t",0,0,0.237199068745685,0,0,0.403049572631985 -"Tfru11332_t",28.1773934512929,28.9000735787077,26.5117841122894,47.4975047006276,47.4220723815124,71.3910943325008 -"Tfru11333_t",328.05626879874,245.157579544313,337.518399296886,42.5208065971528,48.5440569211725,70.1075035589955 -"Tfru11334_t",5.90039435518527,2.48083128825027,3.3874248279066,3.19694743177301,1.94552091821589,3.4946689533392 -"Tfru11335_t",44.1320333672794,55.6966607893449,35.4860315663046,42.34943654874,47.0569024148615,43.2784044663577 -"Tfru11336_t",18.0979801023597,26.0049420943159,21.1649700968557,108.392440837757,125.798818428368,92.769737902844 -"Tfru11337_t",0,0,0,0,0,0 -"Tfru11338_t",0,0,0,0,0,0 -"Tfru11339_t",0,0,0,0,0,0 -"Tfru11340_t",70.6868560803507,63.0608636760395,72.967436964029,101.183333218752,76.349536534235,55.6066713116761 -"Tfru11341_t",16.3783566741619,20.8644889431795,18.4548237627887,2.69715131180709,2.46846222225137,1.55004030599983 -"Tfru11342_t",0,0,0.0997871944378399,0,0,0 -"Tfru11343_t",5.85072266801152,8.06793720738923,6.07187259012392,2.32764760251655,4.93415372160022,3.29277106212738 -"Tfru11344_t",12.1987670380458,10.3459624135648,13.4781059884534,18.808242910563,17.531009041129,8.92506348163841 -"Tfru11345_t",8.94078065689264,9.59083690776142,9.65082625951056,11.1660113206222,9.98522629187314,12.0578832420555 -"Tfru11346_t",124.605995077106,133.961862315613,153.431182857099,205.291228370486,223.997681490648,190.582937179764 -"Tfru11347_t",103.876818264541,92.447479057288,110.699008976444,50.0977878633341,53.271038959634,54.2450527988588 -"Tfru11348_t",1.39594281644399,1.83353941133795,1.42068626522151,3.54421266365058,1.09839643985376,1.20701779115243 -"Tfru11349_t",10.7480638689319,11.796461713154,16.4336221649262,29.7225810479746,26.3896197395466,20.5418476704343 -"Tfru11350_t",7.96558566100956,9.29235404153138,7.31688657066335,9.77749317399283,13.5131923069442,10.4125385799426 -"Tfru11351_t",0.0803158477738503,0.32233989013855,0.207492493214438,0,0.208548310664395,0.17628602244659 -"Tfru11352_t",0,0,0,0,0,0 -"Tfru11353_t",0,0,0,0,0,0 -"Tfru11354_t",2.56115191534089,3.36901271150527,2.82803820251646,2.79672331121302,2.08177629264453,1.75378301009292 -"Tfru11355_t",0,0,0,0,0,0 -"Tfru11356_t",0,0,0,0,0,0 -"Tfru11357_t",0.401963525222237,0,0,0.415783941757343,0,0 -"Tfru11358_t",0,0,0,0,0,0 -"Tfru11359_t",2.10025941928619,4.04601030101908,3.97901437820887,3.47595375309139,3.63569221591595,3.68790358958266 -"Tfru11360_t",3.49073587692995,4.38971570055163,4.20847655212219,7.22151056736437,6.61520700977036,7.83211288646364 -"Tfru11361_t",3.77304128834977,3.4473889330231,4.52808829036495,2.78175945362067,3.54362738675038,3.58276985132254 -"Tfru11362_t",0.613712167973236,0.656819854061538,0.352333032308931,0.493743430836845,0.649230752842134,0.548795177021229 -"Tfru11363_t",0.976864846179621,0.392055261726655,1.0515365692941,1.26306459051286,0.845509817654873,1.25074249646699 -"Tfru11364_t",63.4922386183124,63.1331322411389,68.8118682403951,32.5428506056046,40.9447020245623,33.7765932560149 -"Tfru11365_t",0,0,0,0,0,0 -"Tfru11366_t",7.05152221815333,2.92764855355939,9.52743871640591,2.89243619106736,4.52488466814431,4.98124942152989 -"Tfru11367_t",4.87802187705179,8.63894672567821,4.66746554628606,6.16701472322665,5.22735470675473,5.72163229720198 -"Tfru11368_t",0,0,0,0,0,0 -"Tfru11369_t",0,0,0,0,0,0 -"Tfru11370_t",0,0,0,0,0,0 -"Tfru11371_t",0,0,0,0,0,0 -"Tfru11372_t",80.0365687737683,77.8613666175492,91.9128410865822,61.7092456772288,48.3730061959951,34.0685656041899 -"Tfru11373_t",0,0,0,0,0,0 -"Tfru11374_t",0.565345738704222,1.27061786034695,0.584218433115213,0.818697048170918,0.97865200966782,0.744529661423149 -"Tfru11375_t",3.8453159266993,5.0745151176474,2.69402200654525,2.83145961268111,2.25644202694551,1.62126612420236 -"Tfru11376_t",0,0,0,0,0,0 -"Tfru11377_t",10.0159430289488,7.75626974722669,9.04321449592924,0.330981370290669,0.381900442848314,0.613359315494315 -"Tfru11378_t",1.52459382125906,1.60355018188073,0.769635276249297,1.35949380205389,1.27408488167267,1.07698477793403 -"Tfru11379_t",1.92810700786929,1.76874767257665,2.37199068745685,1.9943996943967,1.90724837556247,1.20914871789596 -"Tfru11380_t",1.6617437163583,2.37128808850935,2.7030267504316,1.33690528965053,2.07753840909483,1.89123261004239 -"Tfru11381_t",2.71780514357666,2.23000807389022,2.34044372288607,1.37438861552858,1.7773333622019,1.28144265633713 -"Tfru11382_t",55.2231599201118,58.8640429573375,55.7094847616095,47.1961950589942,75.0789693604429,89.0824921538122 -"Tfru11383_t",0.967025919671337,1.84350589255066,0.936850998139432,1.00027446132126,1.1508666007216,0.707511480015859 -"Tfru11384_t",2.10610972407528,2.62971885860107,2.6197613024419,12.5870191616123,11.7476405862465,8.04695769314694 -"Tfru11385_t",47.9104270712499,39.7088544131846,52.1963786290239,6.91502736026138,4.62899804678954,8.80401387433527 -"Tfru11386_t",1.52350424196925,1.74698199525867,1.87424134630658,6.52866961396698,3.76755670043104,3.343954032005 -"Tfru11387_t",32.857926731526,34.9726773870321,34.0999148327876,41.8309620715869,48.9620441684956,39.4503535848384 -"Tfru11388_t",6.53531161835601,3.55358495698037,6.0034442779439,6.10581587745036,6.2039415478616,5.78403950687369 -"Tfru11389_t",11.4397108795162,10.3302390664317,14.6230702487366,17.0099864512983,13.7692173283625,14.5162162568679 -"Tfru11390_t",58.0666926411264,49.2454947451281,78.1284848386986,181.152840113014,163.242274842695,98.0543085235159 -"Tfru11391_t",1.95372969235924,1.28308994746905,1.3056984292197,0.918592429463897,0.461187173266294,0.649736361801033 -"Tfru11392_t",1.52746136164002,0.613031850063134,1.97306493674713,1.25302000103294,1.32206986709157,0 -"Tfru11393_t",3.30486722542689,2.7284809395108,6.57672730763354,6.72984085472034,9.41541338338596,6.59381727930809 -"Tfru11394_t",1.04919293024109,1.44371464799967,1.12702342384689,0.884792833679392,1.03784255940509,0.712797303963346 -"Tfru11395_t",2.34127279526985,0.773827106752282,1.71969324840622,0.427371363085006,1.5496393051445,9.92509572606263 -"Tfru11396_t",0,0,0,0.119366543718798,0.0998816542834053,0 -"Tfru11397_t",0,0,0,0.4060693636789,0.339784319244482,0 -"Tfru11398_t",0.0915644433476266,0.0734970081928987,0.078850916585759,0.982549917237349,0.752895390761887,0.167479727047351 -"Tfru11399_t",0,0.235781486073373,0.126478524418591,0.303842111284212,0,0.107456398297863 -"Tfru11400_t",14.6398779896624,14.3725566993305,15.9044201322509,14.21133907095,14.2308596118962,15.0778900110283 -"Tfru11401_t",0,0,0,0,0,0 -"Tfru11402_t",11.3046221277708,11.870782910824,10.335102281062,8.00911003016448,9.65050099708566,11.1600154707801 -"Tfru11403_t",11.0876639393788,8.3864003701326,9.91540269604424,23.4891544863092,24.8223656365835,22.2303833128397 -"Tfru11404_t",9.82275174558462,10.5403755534241,9.61641516859429,10.107003989758,12.3054198077155,14.1085952709162 -"Tfru11405_t",0.107019588243882,0.171805108323528,0.0921601477292151,0.110699164111191,0.0926291010424447,0 -"Tfru11406_t",0,0,0,0,0,0 -"Tfru11407_t",11.5396402085847,10.7763858899403,12.7987343587497,12.5401859077321,10.9984061689387,10.4796120174316 -"Tfru11408_t",6.76232623451852,6.55367931219265,6.05500389757165,5.10702100700026,3.94081433877009,6.42340094686819 -"Tfru11409_t",0,0,0,0.255584834786131,0.106932123997528,0.0903897938623202 -"Tfru11410_t",4.48845762992612,3.67077547471489,5.83433193285757,5.69397666207006,6.0106201956675,6.3819568166501 -"Tfru11411_t",0.111272022213838,0.178631801369496,0.191644280708434,0.230195612787509,0,0.244232025800176 -"Tfru11412_t",0.40980671595828,0.16447196345606,0,0,0,0 -"Tfru11413_t",43.2653440372955,47.5406210369742,53.8975583957383,37.8009970648688,47.9911372500906,34.7277588019034 -"Tfru11414_t",26.326818707995,23.4513972861615,26.0813218073679,20.2579470323479,19.174223915786,14.5636957040844 -"Tfru11415_t",18.4280826466401,24.8315934107209,15.5103470461198,49.5086216941552,65.9296246002823,60.9769997979797 -"Tfru11416_t",0.412068065096002,1.48841580662872,0.887133243009612,17.2625538933416,20.1958132901278,16.2801384702607 -"Tfru11417_t",20.7015647281351,21.5608781200943,20.0206997881212,15.6647860702988,13.3482415424478,10.2328820659129 -"Tfru11418_t",0,0,0,0.447932184676725,0,0 -"Tfru11419_t",0.133774485304853,0.161067289053307,0.115200184661519,1.79886141680685,1.21575695118209,1.51705163584212 -"Tfru11420_t",1.3536828288368,1.51461974159243,1.09507675536643,1.65481196741411,1.49120188543428,1.62066075714082 -"Tfru11421_t",0.590582613507539,0.237024622203812,0.76287222461266,0.152722045390658,1.02233876018726,3.45673447178223 -"Tfru11422_t",2.94375983296177,3.63522938096952,1.56001543865087,0.702686068684242,1.76394770583523,1.32539212563618 -"Tfru11423_t",64.3350840703278,80.2182959309854,56.4780682273648,73.007950576083,65.4154287175956,47.755381054695 -"Tfru11424_t",0.549536397523777,1.48872006169958,0.650697363566454,0.781592217579829,1.66474868431147,1.5579859808812 -"Tfru11425_t",15.858521731552,16.0599416549246,12.8244773907089,11.9353621765486,9.83949178867646,12.7670997068322 -"Tfru11426_t",0,0.0705371391391052,0,1.09078046645127,0.608484052872963,0.128587991268573 -"Tfru11427_t",17.6754505583491,17.5260347197608,17.9073554374836,19.5737494759478,32.7572268958764,32.2539422851289 -"Tfru11428_t",2.93742576123788,2.82937783287899,3.03548458604458,3.64610533540863,2.5424421090308,3.86843033872104 -"Tfru11429_t",12.6343730691435,10.2730730299312,12.5757201584016,13.4082200436631,9.79932667571097,13.5655307819935 -"Tfru11430_t",0.374211032389521,0.600743919973137,0.644505264743287,6.3867747133639,9.06898726464558,14.3737890462576 -"Tfru11431_t",17.5392314590919,17.2409415247661,17.6759956561885,10.0571279164709,16.0608491232596,22.0381530693669 -"Tfru11432_t",3.51861642971322,3.78766115842154,3.47635258544812,6.96883585238289,6.18539844525961,8.50133619676523 -"Tfru11433_t",27.5868293542798,26.729752785691,29.2919423842639,31.0287051285522,32.5319112199918,23.5147944075409 -"Tfru11434_t",15.9102884838567,14.8695352437935,12.9506685760762,12.4111255840175,9.68348421319954,15.3922152231074 -"Tfru11435_t",0,0,0,0,0.147194016838703,0 -"Tfru11436_t",0,0,0.221919374133233,0.266560870635842,0.892194408813731,0.377086256603544 -"Tfru11437_t",0,0,0,0,0,0 -"Tfru11438_t",0,0,0,0,0,0 -"Tfru11439_t",0,0,0,0,0,0 -"Tfru11440_t",0,0,0,0,0,0 -"Tfru11441_t",0,0,0,0,0,0 -"Tfru11442_t",0,0,0,0,0,0.160483184925268 -"Tfru11443_t",0,0,0,0,0,0 -"Tfru11444_t",0,0,0,0,0,0 -"Tfru11445_t",0,0,0,0,0,0 -"Tfru11446_t",0,0,0,0,0,0 -"Tfru11447_t",12.6104371052278,13.2789626309495,11.4713080286629,12.2041565628775,10.8269179247754,12.2150436018594 -"Tfru11448_t",8.67313606344903,8.97520841066141,7.65195072732474,7.08032077742552,8.83164101032215,13.4999169861579 -"Tfru11449_t",0,0,0,0,0,0 -"Tfru11450_t",3.7940170154847,2.61032922646391,2.33373277314302,1.12127540422302,0.938243152494435,1.98274386536701 -"Tfru11451_t",7.49238654318412,5.37420723095513,7.27575511626944,1.97872130157005,0.275953868380718,0.816423944562892 -"Tfru11452_t",31.9557543313079,24.1414269251855,25.7754960503594,18.3968292439863,16.7704907722113,25.6016256075446 -"Tfru11453_t",14.9489052784487,19.4862996115257,12.5807072252192,13.0348265740927,10.2120178417639,9.42313601014687 -"Tfru11454_t",132.62477311996,123.667389445484,121.419383441847,145.540371305138,108.689400161124,87.0396826212691 -"Tfru11455_t",0,0.0652161557224222,0.0699668432953906,0.0840414350360587,0,0.118887930031678 -"Tfru11456_t",0.601506277599862,0.965634916710997,0.690651226419417,0.622187425971012,1.21478976188123,0.440083960570723 -"Tfru11457_t",1.9210404058167,2.0309031070369,2.62268351248366,1.40550277244353,1.98716027417604,1.37122275128562 -"Tfru11458_t",71.4281774854012,71.4733002484169,71.345544778944,116.732778689647,164.360095106615,197.707888289455 -"Tfru11459_t",7.7038204109063,12.9546948675047,9.33971333186134,65.3967221220702,77.630969036566,58.6940940145328 -"Tfru11460_t",0,0,0,0,0,0.491720478490671 -"Tfru11461_t",0,0,0,0,0,0 -"Tfru11462_t",0,0,0,0,0,0 -"Tfru11463_t",0,0,0,0,0,0 -"Tfru11464_t",26.5806503872709,29.8233630733315,24.8114060534964,28.6986943817591,24.4338668552319,22.0025040948927 -"Tfru11465_t",9.09235741444109,11.8219740459114,10.5477206643039,23.9399319309514,35.8366084252181,32.2719052934559 -"Tfru11466_t",2.80274139784983,2.82655410250834,2.53736044026073,2.45308968887972,2.86128044366354,3.83828004048381 -"Tfru11467_t",138.445671924375,179.249265886985,126.789558340885,304.589314843595,241.14285105565,182.043200149042 -"Tfru11468_t",9.53388788461019,20.0769981559247,13.6191534731751,59.8662261880893,70.772219636922,80.2574479441888 -"Tfru11469_t",4.47010781504685,5.65953168820551,5.43684206666947,6.29218178014348,6.10269785008383,7.72106346694487 -"Tfru11470_t",13.5920403038142,9.1690996494695,10.9576988040175,3.14092206604643,4.25519915115809,5.92434311579544 -"Tfru11471_t",2.387729481911,3.9340414295623,3.57129188769681,6.23955797114385,5.11226728939566,7.72335830279092 -"Tfru11472_t",82.9277688233618,74.7330081373798,74.9561283992485,28.5556767731412,23.5195553143017,27.4850203089601 -"Tfru11473_t",19.8915047088243,17.4513360138322,23.2325533404141,45.897101672575,31.501708362097,19.1759737691101 -"Tfru11474_t",4.12182936880429,4.75222738299891,3.67859572715766,7.13175167895646,8.49733595512917,8.71805933309015 -"Tfru11475_t",40.856845106114,41.0422627657331,41.221443918135,20.3805921494207,21.4479684679934,29.0964096156522 -"Tfru11476_t",29.8621635479418,33.0694204526518,30.4383785776313,19.1625536031642,20.5417607372103,23.1631904008346 -"Tfru11477_t",32.7712892147241,32.1181133809345,30.5598282965885,24.1593768399132,39.3344287152976,30.8649977145388 -"Tfru11478_t",16.2704660669534,14.1590964513132,15.4679718703142,15.9134028485248,15.7558282032024,15.6167218159061 -"Tfru11479_t",3.53367934859548,3.65989172412399,4.31914722193635,10.729707989529,10.2608409892879,7.25571262536616 -"Tfru11480_t",16.3109917322435,18.3013687937536,14.4993501730139,34.4692699941213,28.0836350707495,19.1196115117542 -"Tfru11481_t",8.34592309069675,10.6174590842113,8.06854751651793,19.0574784026097,12.1303320418564,9.62011714246024 -"Tfru11482_t",36.3473466847895,34.1296107024738,30.0456187742302,22.3454169841589,18.2526588799046,18.7531151919254 -"Tfru11483_t",0,0,0,0,0,0 -"Tfru11484_t",33.3235314959812,25.3403567913512,43.8001203143128,21.770065259445,24.4403526831928,13.3452321961238 -"Tfru11485_t",132.662281141767,111.341779734437,241.785598867902,59.2725281681086,64.1656482716166,70.5412853829547 -"Tfru11486_t",26.6409663113424,24.6893867806951,58.9786860138733,58.3810154271228,37.9662874592071,43.7845296074097 -"Tfru11487_t",0,0,0,0,0,0 -"Tfru11488_t",0,0,0.183153711309959,0,0,0 -"Tfru11489_t",2.78497102006284,0.674967029360547,5.93378232027469,0.852039632175408,2.50345124834656,2.79892371139013 -"Tfru11490_t",5.09445076531661,1.95183881117321,10.7608044345153,5.86616909131555,7.11675530320384,6.09156051157819 -"Tfru11491_t",0.372276411099472,0.597638153769435,0.320586629102366,0.513434823204045,0.644435843293817,0.272371018432988 -"Tfru11492_t",0,0,0,0,0,0 -"Tfru11493_t",0,0,0,0,0,0 -"Tfru11494_t",0,0,0,0,0,0 -"Tfru11495_t",0,0,0,0,0.102848436093803,0 -"Tfru11496_t",0,0.470919415648403,0.0640227574933043,1.64289370813584,0.876279098795127,3.28973217745614 -"Tfru11497_t",0,0,0,0,0.661034933545786,0.558773258636267 -"Tfru11498_t",24.231397106845,35.9382076518044,22.1380009329337,18.0668167254384,11.0720934247514,8.459320093235 -"Tfru11499_t",3.20506374576887,3.32930231232868,3.08475898424875,2.4571935193532,2.34981902644478,2.81393002795804 -"Tfru11500_t",11.5654099656042,12.5173149577934,11.736622123631,21.4063446413339,15.8823679495003,18.2140267630387 -"Tfru11501_t",0,0,0,1.99667673129625,2.10659489034091,0.73684387404249 -"Tfru11502_t",19.3660284115999,15.1068566434154,16.9119855508287,14.6712333734377,18.886712809953,22.7500546110619 -"Tfru11503_t",1.18324474325982,0.949767676295558,0,0.61196368892454,1.28017331546336,1.29855760196573 -"Tfru11504_t",18.7690837580674,16.8179978581081,18.9902318522535,17.7440468237905,18.042698367135,20.4237576340098 -"Tfru11505_t",0,0,0,0,0,0 -"Tfru11506_t",0,0,0,0,0,0 -"Tfru11507_t",0,0,0,0,0,0 -"Tfru11508_t",0.0564965546546385,0,0,0,0.0488996935563679,0 -"Tfru11509_t",0.688609645233117,0,1.18599534298011,2.13685681407676,2.38406046794884,0.503811965472096 -"Tfru11510_t",0.485609114285824,1.94894523170476,1.6727333171661,0.502305455649044,1.68124495533686,0.710578726316506 -"Tfru11511_t",0.831785693136841,2.67063317017583,2.14888209578552,0,0.719938866141515,0 -"Tfru11512_t",0.967861483542021,0.776883698352357,2.00034237697974,0.600683252262336,1.17280394061805,0.849747370871581 -"Tfru11513_t",0,0,0,0,0,0 -"Tfru11514_t",9.47144016110527,10.0499354967398,7.82115848296583,7.38136897374618,6.56951334767825,6.83472479922656 -"Tfru11515_t",30.7815690624978,29.2954271268446,32.7004669783932,33.9900888786132,29.0650981365143,24.7847163235246 -"Tfru11516_t",16.3643041601951,15.8125712756949,14.5409503557373,19.191059803048,21.4713336820843,19.5986605153587 -"Tfru11517_t",10.8162591893012,13.0723327209224,12.5427466600452,7.05616069116942,6.64903477672998,7.5988259770723 -"Tfru11518_t",196.053052280226,254.663916475059,231.342377012237,366.926117087402,298.343929726244,236.301821145075 -"Tfru11519_t",5.00112871429414,4.4794867921349,4.10341056330361,2.42002401051968,2.32223570255235,3.62760061826603 -"Tfru11520_t",0.495550452850314,0.538157743022431,0.527154765897332,0.452284058781842,0.580297855420312,1.10901565266192 -"Tfru11521_t",0,0,0,0,0,0 -"Tfru11522_t",0.731888783323126,0.881209461951883,0.990420504843526,1.02742876958208,1.08595660462953,1.26219475685779 -"Tfru11523_t",0,0,0,0,0,0 -"Tfru11524_t",55.7000306265487,50.4365667661282,49.1554453696537,44.2826984982875,56.5773473600072,58.2655087669224 -"Tfru11525_t",0,0,0,0,0,0 -"Tfru11526_t",0,0,0,0,0,0 -"Tfru11527_t",0,0,0,0,0,0 -"Tfru11528_t",0,0,0,0,0,0 -"Tfru11529_t",0,0,0,0,0.0845018527813121,0.21428841310765 -"Tfru11530_t",0,0,0,0,0,0 -"Tfru11531_t",7.59761203650304,5.1871926936142,4.0609861353861,1.98729164677782,2.04082515238525,5.23922547376608 -"Tfru11532_t",0,0,0,0,0,0 -"Tfru11533_t",0,0,0,0,0,0 -"Tfru11534_t",4.97429862462509,5.76733924487358,1.42787597304143,2.85851459958168,5.26218610198352,2.4262523615675 -"Tfru11535_t",1.30067673445274,1.33849751919382,1.03392051402446,0.655449794648038,0.548456944044487,0.585613908627656 -"Tfru11536_t",5.49298617351772,4.92783305893349,6.95631884302249,5.0133948361895,12.025751175722,8.51054674519076 -"Tfru11537_t",0,0,0,0,0,0 -"Tfru11538_t",1.85317007584075,3.47084216999185,2.92574586633005,18.5299005219945,6.95058805983932,1.8077958772464 -"Tfru11539_t",0.253043303528456,0.812451867674513,0.653726349103319,0.261743505503869,0,0.185135722368608 -"Tfru11540_t",5.06595236812748,4.06634201107445,4.36255573672968,2.18338803586142,2.74047151953464,2.00765270789676 -"Tfru11541_t",0,0,0,0,0,0 -"Tfru11542_t",1.07771405754453,0.906253579947258,0.928075769893776,1.85794718018018,1.73233960196362,1.23906351513162 -"Tfru11543_t",0,0,0,0,0,0 -"Tfru11544_t",0.396899417817862,1.38052844916661,0.113930261366038,0.957940010694476,1.71764986578706,1.16154443766383 -"Tfru11545_t",0,0,0,0,1.52280302237317,6.11432532304281 -"Tfru11546_t",53.0901056005062,69.0219276600052,52.3754226381827,75.8645776806474,95.0338097807696,103.633212758423 -"Tfru11547_t",0,0,0,0,0,0 -"Tfru11548_t",0,0,0,0,0,0 -"Tfru11549_t",0.318623426440382,0.0852509545094622,0.640227574933043,0.109859473865088,0.183852956557065,0.0777055117906166 -"Tfru11550_t",0,0,0,0,0,0 -"Tfru11551_t",16.4511181667325,13.2049944550231,16.244729956134,14.2940656948275,13.6694433183263,14.1225202734236 -"Tfru11552_t",12.7924110351938,14.8226738412283,14.199660583866,13.0366051013917,11.1913243813704,11.6992438883609 -"Tfru11553_t",2.681517846629,3.7983573986285,3.06987078645138,1.40317321989232,2.12980843290608,3.5083323671083 -"Tfru11554_t",0,0,0,0,0,0 -"Tfru11555_t",0,0,0.164422081744168,0.197497372334738,0,0.279386635574444 -"Tfru11556_t",0,0,0,0,0,0 -"Tfru11557_t",7.50524979802556,7.96764756684832,7.50560742025251,6.51115256342767,8.59154932867747,7.26244222732417 -"Tfru11558_t",11.6607463026615,10.2107515483131,15.9753946931242,3.83780382833434,6.19329273373696,13.572726144626 -"Tfru11559_t",0.500487350978836,0.401731519250121,0.861991509399212,0.813521091149048,1.05203008800972,0.6800389597812 -"Tfru11560_t",7.10637119991826,5.86805901703463,6.22517828207866,7.1817226303541,6.75174733339764,6.78296965512287 -"Tfru11561_t",16.2724970479938,16.3077014998095,12.9766241248177,11.6031120984283,9.41738041028086,10.0387060461419 -"Tfru11562_t",4.65521417676835,2.34626886012704,4.00884766314389,16.685473879208,12.4625532143511,8.63362309416904 -"Tfru11563_t",0,0,0,0,0,0 -"Tfru11564_t",0,0,0.191898450842,0,0,0.163037293969172 -"Tfru11565_t",2.93742576123788,1.41468891643949,1.51774229302229,1.21536844513621,0.50848842180616,0.859651186382454 -"Tfru11566_t",0,0,0,0,0,1.21712958222935 -"Tfru11567_t",0,0,0,0,0,0 -"Tfru11568_t",0.416332890610819,0.616820636163733,0.425332173847074,0.908958113407921,1.64557615666433,2.02267070343071 -"Tfru11569_t",0.875954645574105,1.80679063819946,0.321018211532438,0.377821060118629,0.316147149210083,0.898257152342845 -"Tfru11570_t",11.2112337304213,12.4614646261205,11.7038433194482,9.5677095402474,11.1146552893605,13.1804969346261 -"Tfru11571_t",0,0,0,0,0,0 -"Tfru11572_t",0,0,0,0,0,0 -"Tfru11573_t",0,0,0,0,0,0 -"Tfru11574_t",6.39814127729567,5.4705989169408,4.79110701771086,4.81972064273847,4.45432490029438,4.88464051600353 -"Tfru11575_t",9.19821643483001,8.36766120648714,12.4096666075525,8.24587569164015,7.96136981587435,10.3189516496839 -"Tfru11576_t",6.62596949430763,6.87321227555791,11.3086138739026,2.73210581360667,5.01078546075195,0.784142371246679 -"Tfru11577_t",7.07932050023987,6.84131613563841,6.81802173993828,5.60424128437008,5.1708206228122,4.82998123065129 -"Tfru11578_t",0.301991918297722,0.272703457718653,0.455106728170782,0.136664099481238,0.457422520986954,0.510942982155914 -"Tfru11579_t",24.5225820464141,18.3652702211061,26.1697492116835,18.0836979472981,16.3504594067729,13.5635187885023 -"Tfru11580_t",0,0,0,0,0,0.0977186960673732 -"Tfru11581_t",2.09719500536935,2.70334763987911,2.2557684266015,2.70954078748772,1.1336234080807,1.91650520616768 -"Tfru11582_t",6.32954893483398,7.38997315254497,7.92829764026535,3.5711853627645,8.4666805028165,3.36794848363655 -"Tfru11583_t",7.9554120693973,5.48502193918057,7.96149027392814,2.07891970878671,7.30617574490288,2.64682075807368 -"Tfru11584_t",0.58872022965275,0.77433310516029,0.696308763156148,0.791650294151857,0.124195804449807,0.430729220927664 -"Tfru11585_t",0.563072230371632,0.542360630163415,0.0969781715381152,0.399018881869607,0.194943282354743,0.0823928415903186 -"Tfru11586_t",0.499120459558676,0.516616821616282,0.111016744766606,0.227483884364619,0.31966554375709,0.430715048551305 -"Tfru11587_t",2.34201589920402,1.39475774765346,3.18789575755779,2.6569790378846,1.8963142852799,1.65823003128717 -"Tfru11588_t",6.71714951184629,7.60750385186135,7.29003928697034,7.13845924101462,6.5307067186223,7.54007305646692 -"Tfru11589_t",0,0,0,0,0,0 -"Tfru11590_t",0,0,0,0,0,0 -"Tfru11591_t",0.656331068465971,0.526824257896259,0.56520090594308,0,0,0.480195779848974 -"Tfru11592_t",17.4462443774571,18.2048919295054,18.6064860555221,38.3132282688987,20.5596652465535,10.3096346354148 -"Tfru11593_t",20.7400617654511,19.8085920987392,19.4994312568474,13.6458340697533,13.6906535005585,14.5979517087647 -"Tfru11594_t",4.141046364193,3.53610409108467,4.02131404957944,3.00751111305757,2.59283765791594,3.57767259608176 -"Tfru11595_t",0.266911443277037,0.267805818177064,0.172388520970851,0.276088463311468,0.231020950971625,0.244102699866472 -"Tfru11596_t",46.8130111527644,43.3646184371271,48.4847042251628,33.6340404572472,32.4146052985278,21.6608795171271 -"Tfru11597_t",0,0,0,0,0.173541394554461,0.146694653523574 -"Tfru11598_t",11.1433453126894,9.50358205420715,14.4691431934868,12.9672886125689,10.92591443125,6.3694362514381 -"Tfru11599_t",18.8594723364474,24.1545770961613,17.7173181961063,18.3459909557955,17.7051302844042,16.0907827272431 -"Tfru11600_t",0.474099191712457,0.837210558901614,0.571580148726904,0.490399795865037,0.369314107711553,0.346868283444569 -"Tfru11601_t",0,0,0.971083435804427,0,0,0.41251718004278 -"Tfru11602_t",3.94679622416174,3.62059087339494,2.91325030741328,16.9131977918867,18.5444703630602,10.7254466811123 -"Tfru11603_t",0,0,0,0,0,0 -"Tfru11604_t",17.4008130061127,12.6156223194359,13.6957368757948,10.4510858945955,11.4981802819614,11.0883515499701 -"Tfru11605_t",0,0,0,0.208057886258463,0.0580317991367271,0.0981086349982086 -"Tfru11606_t",5.82453708079995,5.37127529060095,5.93855885760891,3.87964827399443,2.92615925076186,4.05355275924475 -"Tfru11607_t",1.35899138894988,0.892502272283619,1.17029834653202,9.07326163490766,12.9387870037009,9.40053856168129 -"Tfru11608_t",175.140276998102,167.012218993337,170.135052381042,118.473317802665,128.32761084144,118.89321953704 -"Tfru11609_t",10.459933114335,8.8574680005168,10.7576470860574,11.6323987478318,10.4518608971844,8.28862103579232 -"Tfru11610_t",5.15122238093636,4.68203776943897,5.74068801184327,2.89924005555413,4.06515630995111,3.60255084645135 -"Tfru11611_t",10.9715044291069,9.05823201720689,10.6628947041554,6.97136247121873,6.51168755089424,9.05921590724597 -"Tfru11612_t",3.14174931830394,3.07662214363206,3.89595478657834,4.74466387389063,6.36314120063076,5.33279501859373 -"Tfru11613_t",6.64958459251033,5.33749297660938,6.44209202254182,4.05323229159066,3.54576343319012,2.6931686991063 -"Tfru11614_t",41.7296154534837,41.5850480798274,42.9870514745577,14.415272125051,17.9910542643264,16.1295377238854 -"Tfru11615_t",0,0.0737784518785389,0,0,0,0.1344968486354 -"Tfru11616_t",0,0,0.0244163739343348,0.0586559863835873,0,0.0622325951667678 -"Tfru11617_t",2.91637366171878,3.02053773872271,3.24056958420756,2.23815611201293,1.7099560254028,2.34021504378146 -"Tfru11618_t",4.82099930463141,4.72966135081932,4.45914083539975,3.97093547776115,3.78637446503468,4.3110456413825 -"Tfru11619_t",6.45964347336197,6.39346630188122,6.63307252045654,12.1683732135727,11.439665026116,14.0630622399172 -"Tfru11620_t",9.23132652872236,7.55885515662442,10.1425632742471,3.95119466723366,7.53083073457804,5.43423326535704 -"Tfru11621_t",4.29598517581266,3.06515931895385,0.41105520436042,0.98748686167369,0.413146842717722,0.349233294468055 -"Tfru11622_t",3.98153444414443,3.51549078287597,4.80018968504301,3.29474289392548,6.37538445444978,4.80650941770252 -"Tfru11623_t",15.8137179805078,10.3133595908329,13.6180171232817,13.8015810784511,14.1150403676737,13.7392486670727 -"Tfru11624_t",5.1165455401078,4.63688148446849,3.26905985707462,3.41449288122926,3.28569434051343,3.01891256514625 -"Tfru11625_t",5.14487400050766,4.12969087936408,5.3049638622373,8.96297502811639,11.1912524293303,11.5401764218743 -"Tfru11626_t",0,0,0,0,0,0 -"Tfru11627_t",0,0,0,0,0,0 -"Tfru11628_t",6.27429584035059,6.86762175245721,6.24516849767373,5.14144468813226,5.21903441276005,5.36552413615324 -"Tfru11629_t",3.28532199664878,3.86141579007873,4.64790912639939,7.2820260190462,13.405345600584,7.8977451173558 -"Tfru11630_t",0,0,0,0,0,0 -"Tfru11631_t",0,0,0,0,0,0 -"Tfru11632_t",10.7177124438549,11.0514183884558,11.075497243297,7.07811976218314,8.70568106657009,8.98753082839085 -"Tfru11633_t",109.887242292248,130.463970671611,100.996467926148,99.6037138261637,89.331202636629,56.3175246528415 -"Tfru11634_t",0.419004372924925,0.504490062471206,0.631446398718251,0.975174057912172,0.815990771651959,1.11127601930483 -"Tfru11635_t",8.49455572178828,7.50651261784615,7.78488223768305,9.95547978911842,11.0622175029725,8.69519631124545 -"Tfru11636_t",16.5142129271195,21.099572805134,20.3533484056261,25.5446556246121,35.9307364169872,37.9653435356796 -"Tfru11637_t",28.9997358278362,29.1779589015799,24.9731846464507,10.1939028335853,15.8012777076347,18.2622148907218 -"Tfru11638_t",20.6493810951811,27.0431908865009,18.4373946255944,59.1316841567292,54.0885646611041,55.7399831025754 -"Tfru11639_t",305.546637225691,588.183348030709,256.685689749223,327.494219263681,280.245883974162,318.699616252784 -"Tfru11640_t",0,0,0.498935972189199,20.9755829927928,7.27138443183191,2.11948482159923 -"Tfru11641_t",321.207506991531,277.86848133747,307.722249910431,255.531215590022,246.87112878702,209.969802274025 -"Tfru11642_t",1.51896369684119,3.47015255302981,2.31425795167035,2.77979611686724,8.19168482584679,2.39363237154183 -"Tfru11643_t",0.465431450257327,1.40097309592073,0.701412758687032,0.601792547280364,0.906405261585695,0.170263323618775 -"Tfru11644_t",0,0,0,0,0,0 -"Tfru11645_t",7.21119113918004,9.26125390791205,7.76241587633411,38.0415539501418,44.9390282482315,30.8644291832025 -"Tfru11646_t",0,0,0,0,0,0 -"Tfru11647_t",73.7738182572795,77.4918639585936,91.3440657487978,75.0324050693571,65.9923965241887,47.5192059161912 -"Tfru11648_t",39.6185299547167,48.2762592735231,47.2713485014483,24.6871715418422,27.6808384620874,24.7955639072319 -"Tfru11649_t",2.88624607312948,3.1441388842275,3.99454873439819,2.34573566159541,2.3197054629157,3.99711431999757 -"Tfru11650_t",4.73297897303929,3.79907070518223,5.60424560311108,7.64954611155675,8.4491438820582,6.70921427682292 -"Tfru11651_t",0.246605802655912,0.329909515738672,0,0.0850282229229791,0.0711485756539325,0.060141937207806 -"Tfru11652_t",0,0,0,0,0,0 -"Tfru11653_t",195.970973951646,215.505174778614,177.425805319372,256.814168687289,232.380175473563,158.979494094652 -"Tfru11654_t",0.388218007261772,0.623230175757713,1.20353316766526,0.562192150453782,0.537625466309198,0.568068944790922 -"Tfru11655_t",0.275443858267041,1.1054672953604,0.47439813749137,0,0,0.201524786315993 -"Tfru11656_t",3.86658637860218,5.14921115715468,4.69187697696747,2.81784953833245,2.73817823792833,3.79334574242289 -"Tfru11657_t",3.88308068381207,4.46791412854186,3.94150649383207,6.29214827009513,4.66442059335438,5.8872508972541 -"Tfru11658_t",0,0,0,0,0,0 -"Tfru11659_t",0.691127414024705,0.67803341424756,0.595165853479804,0.238296646692737,0.265864147416157,0.955124330025979 -"Tfru11660_t",2.23431853115552,1.34508321177496,2.21270141921673,2.88892432936452,2.03057278016582,2.61553446069692 -"Tfru11661_t",0.0976864846179621,0,0.0841229255435278,0,0,0.142941999596227 -"Tfru11662_t",15.9083479418273,15.2084075144689,15.2387784697361,16.0855306659016,15.7804513201458,16.7394205484603 -"Tfru11663_t",0.0898026475376242,0.324372819429643,0.154667484697881,0.139335398974802,0.233181756231916,0.229960138313546 -"Tfru11664_t",15.3005324210442,14.264779907439,17.4317166301622,17.1045235587642,17.6026727195931,14.2537751859813 -"Tfru11665_t",0,0,0.0981624368621898,0,0,0 -"Tfru11666_t",0,0,0,0,0,0 -"Tfru11667_t",8.24045446198805,8.81927127988732,12.8824866461125,11.1464814768398,14.5573994158405,12.5836415238107 -"Tfru11668_t",13.0501556149821,14.4032729162491,8.07743430704359,11.8114933357474,9.88343515006279,13.1284593803914 -"Tfru11669_t",12.4608692818893,11.2926922277247,13.4999182905738,7.06832700987483,14.2644383590961,10.8813742276363 -"Tfru11670_t",15.84347834517,15.4423795165678,17.2551984993642,18.8671023840539,18.898685369579,18.9460445899057 -"Tfru11671_t",0,0,0,0,0,0 -"Tfru11672_t",0.0474903203908691,0.0381195619089794,0.0408963911630491,0.147369435546554,0.164417963410557,0.104236958439306 -"Tfru11673_t",0.761423354423995,0.50931650314943,0,0,0.219679287970752,0 -"Tfru11674_t",0.257305901290804,0.516336179303098,0.221579528231038,0.266152661033031,0.111353513504317,0 -"Tfru11675_t",7.08076924500347,10.2423146338352,7.62202450929944,15.4876780482342,15.6408181369519,10.5769549832924 -"Tfru11676_t",0,0,0,0.695190750448126,0,0 -"Tfru11677_t",0,0,0,0,0,0 -"Tfru11678_t",0,0,0,0,0,0 -"Tfru11679_t",0,0,0.466746554628603,1.68191310633453,0.469121576247217,2.37929263844041 -"Tfru11680_t",2.92659099408731,3.73095212184136,4.15098370304949,8.36935586041471,11.0262796712205,7.9350384611922 -"Tfru11681_t",0,0,0,0,0,0 -"Tfru11682_t",0,0,0,0,0.488012377975268,0 -"Tfru11683_t",43.6918211889746,42.1620576301223,46.478318480034,49.0156002467475,52.067561562544,49.007514240152 -"Tfru11684_t",0,0,0,0,0,0 -"Tfru11685_t",0,0,0,0,0,0 -"Tfru11686_t",0,0,0,0,0,0 -"Tfru11687_t",0,0.0487941425593231,0,8.74018762083398,9.20761415029366,3.60251074235644 -"Tfru11688_t",1624.37215484884,1994.60666064787,2003.74367379328,5523.59925074901,4944.20735310518,2107.03731119979 -"Tfru11689_t",12.1791724499014,11.5855836812031,12.6303748419394,7.4783397371414,8.32104757621726,10.503282894452 -"Tfru11690_t",10.0402645409779,11.8419813688363,8.99910125448568,12.5049555751458,12.4145587860545,6.89607988295945 -"Tfru11691_t",8.30803726005458,10.5007155413902,8.54266756811028,14.1731693622361,13.6841552038165,11.0682469355248 -"Tfru11692_t",0,0,0,0,0,0 -"Tfru11693_t",7.21675042750319,9.65457670948017,9.87981143167599,6.50784292979665,6.08618080197384,5.07695978742106 -"Tfru11694_t",0,0,0,0.272695116612818,0.912726079309444,1.47876189958858 -"Tfru11695_t",6.95791464058,5.3781323019681,5.10414560506436,5.59777828335269,4.01487483966179,4.52503507924253 -"Tfru11696_t",0.763730680820012,0,0,0,0,0 -"Tfru11697_t",0,0,0,0,0,0 -"Tfru11698_t",0,0,0,0,0,0 -"Tfru11699_t",2.18682108732618,2.92553167101885,2.19704994261188,1.50800596663401,2.20822954545871,1.46662832557517 -"Tfru11700_t",13.0057905462073,16.6467648368288,10.7459117859578,65.4468279870763,140.255574187218,162.920984937282 -"Tfru11701_t",3.08030026546699,3.78601173971039,2.98418307055585,1.74245748149812,1.68714448289425,1.10922336552902 -"Tfru11702_t",4.02814333547761,3.67024692533048,3.1563357722293,2.81529731621872,2.41855983261796,3.1329922503294 -"Tfru11703_t",0,0,0,0,0,0 -"Tfru11704_t",0,0,0.108790550326968,0.653374765618681,0.437376507177859,0.277285984179148 -"Tfru11705_t",0.0645736946744408,0,0.055607775532232,0.667938845713179,0.894251736428213,0.425200260136356 -"Tfru11706_t",11.2988639645143,9.06937963044888,12.7062887221284,9.76237011350824,12.6558906250239,6.02980017284085 -"Tfru11707_t",0,0,0.387257520234508,0.305444090781317,0.127792345023408,0 -"Tfru11708_t",54.8538342448863,58.7068161324337,60.855514019665,38.848894887492,38.4955646391101,35.7943583694788 -"Tfru11709_t",40.6032846942348,45.5113643254309,43.0139547346548,45.8662624403591,59.321554079222,52.4238458346114 -"Tfru11710_t",0,0,0,0,0,0 -"Tfru11711_t",2.77604382522473,2.8134806832854,2.75280761691838,2.95850536394627,3.10659949023526,2.85168334975517 -"Tfru11712_t",5.8872022965275,5.10358692490143,4.86698579738868,4.50631705901826,5.40130868797605,5.47026110578134 -"Tfru11713_t",1.52909679348459,1.22737642964533,1.93644850019898,8.74570805113999,11.3274778889887,15.2675523337469 -"Tfru11714_t",24.1447145839199,25.6763120902692,23.2336354428598,13.6848572956354,17.9535307400124,20.9492836078655 -"Tfru11715_t",0.159412479642215,0,0,2.14361474336755,5.79503123599507,5.365071635699 -"Tfru11716_t",18.0398457957497,19.4479074030175,17.3777131222715,14.0291236899848,15.12972230918,18.7381726273205 -"Tfru11717_t",8.61887743652956,7.98254568972196,7.6668515230426,11.8542954939137,12.2146142090525,15.1064070373736 -"Tfru11718_t",0,0,0,0,0,0 -"Tfru11719_t",0,0,0,0,0,0 -"Tfru11720_t",0.116843361295476,0,0.201239821884378,1.08774630660022,0.707923380011451,0.683894963297666 -"Tfru11721_t",0,0.125887065993126,0.0900382277130478,0.162225595197171,0.769219261612585,1.41518806071934 -"Tfru11722_t",3.95410368160291,10.8096000538822,6.11928293312538,9.36563255437311,10.5648354978185,22.0955569771494 -"Tfru11723_t",1.08051931538839,0.433655980816621,0.232622880924225,0.838252512803389,0.467613146741602,0.592910544948981 -"Tfru11724_t",0,0,0.347815942151125,0.626674354523687,0.349585789991919,0.147752547659562 -"Tfru11725_t",19.1481556912334,22.5009128650103,17.975013618192,19.5388570823155,23.9642135792407,26.5044405822163 -"Tfru11726_t",0,0,0,0,0,0 -"Tfru11727_t",34.3264942660791,36.1772958635195,34.6046704988737,30.1069332479646,30.0785230290734,35.1292357822722 -"Tfru11728_t",170.231552931617,235.583065259505,158.180302829132,338.253506319867,280.493858024109,180.403047933859 -"Tfru11729_t",0.743454654646386,0.596756675909071,1.28045513772756,0.769016309765456,5.79136807664623,1.63181573213358 -"Tfru11730_t",4.34536429870177,4.65058653463424,5.61302966508806,6.74215164978073,7.52212179649622,7.94806804978779 -"Tfru11731_t",0,0,0,0,0,0 -"Tfru11732_t",0,0,0,0.0680492120808807,0.0569411466862326,0 -"Tfru11733_t",5.87196992761803,6.53249159575939,5.10101614730527,5.80746411843901,7.13317908702088,5.6905113634476 -"Tfru11734_t",0.58872022965275,2.3627717244914,1.47023529296117,14.3106014712066,14.3695193397099,10.9405222115627 -"Tfru11735_t",13.8402597646536,41.2155360153234,10.7863052636784,123.118625521359,66.4247556416934,35.8968100633458 -"Tfru11736_t",17.7373156331271,18.508620378942,17.6351361379349,17.3464102841413,19.8183606395419,22.533256097578 -"Tfru11737_t",0,0,0,0,0,0 -"Tfru11738_t",26.6679735503999,28.4406585988176,27.3857106642745,24.6062299958034,28.0668937085613,29.5875027182116 -"Tfru11739_t",9.22808283707091,10.1324955725003,10.7206605008736,13.5075923047593,11.6040746373276,9.87262618972906 -"Tfru11740_t",140.90348002806,118.648825283049,185.443132701333,1.09998536490234,4.60214204546323,11.670580979692 -"Tfru11741_t",0.552369482657455,0.806138733018345,1.12432075024105,6.70050857962924,7.08449290130664,6.72331497204251 -"Tfru11742_t",1.70891734685613,1.70092648944387,0.824117187586716,11.0302844890614,9.52557277074806,8.40205862557482 -"Tfru11743_t",1.92810700786929,1.76874767257665,1.89759254996548,1.70948545234003,2.38406046945308,1.41067350421195 -"Tfru11744_t",1.22006771244841,1.81874598593527,2.70170723529836,2.52403280826138,4.37489934695281,2.1678548071544 -"Tfru11745_t",7.80096355733663,8.6700220735989,5.16755114052301,12.4141205467358,10.907076647731,15.3662649565707 -"Tfru11746_t",115.014876169349,137.802829073557,105.780775590695,162.564280515476,205.137784506872,181.266348570356 -"Tfru11747_t",87.8169185372584,105.657027797341,66.4125149750888,89.9700308769122,92.3831533613804,146.853312398953 -"Tfru11748_t",900.567293039293,1004.05445652961,973.831763390613,1637.76455189451,1537.61282433215,835.618218328439 -"Tfru11749_t",44.4851995081281,42.1770446508446,51.6564429509168,50.1832806604061,43.3331581454189,28.8046590330257 -"Tfru11750_t",5.91468102432616,3.60465932946071,7.35719145431531,1146.566231463,911.056119816227,660.168400064797 -"Tfru11751_t",0.0474903203908691,0,0,0.0982462903643693,0,0 -"Tfru11752_t",0,0,0,0,0,0 -"Tfru11753_t",19.194423831887,18.3097596403733,19.8830941235001,54.383713521049,22.3920116609393,16.0786083651783 -"Tfru11754_t",0,0,0,0,0,0 -"Tfru11755_t",26.6317552981576,25.3031451357632,27.8818517175785,40.3975216683218,36.6257348923141,26.1879783548615 -"Tfru11756_t",0,0,0,0,0,0 -"Tfru11757_t",12.3765287207936,10.2354427257923,7.10538281823012,8.14676660880794,21.7492302202115,30.4581323246782 -"Tfru11758_t",13.8064862223992,12.8956503618138,8.50278335075418,9.69389492894012,27.0866312500511,38.8748137348106 -"Tfru11759_t",0,0,0,0,0,0 -"Tfru11760_t",0,0,0,0,0,0 -"Tfru11761_t",7.06563303376345,6.40873512777061,5.62824114969523,8.44139315563614,7.30807770903206,8.71056566925537 -"Tfru11762_t",0,0.332184753778249,0,7.27724307913221,6.80572927117272,6.3584544647977 -"Tfru11763_t",0,0,0,15.0495204393622,13.8115681945411,7.55436489486207 -"Tfru11764_t",106.686699550373,139.070769665491,101.125920455764,117.27993061523,117.061812350507,118.110879743489 -"Tfru11765_t",0,0,0,0,0,0 -"Tfru11766_t",1.13155585749674,1.84110406853798,1.58017581290354,7.11767013510704,7.51755798558522,8.36837727523307 -"Tfru11767_t",0,0,0.0195952643465422,0.235370649586361,0.078779896336207,0.0499445231525279 -"Tfru11768_t",1.3797324652245,1.35359225399057,2.11228367788128,4.5986614434147,2.78647943555602,5.27163834277327 -"Tfru11769_t",8.20021605936439,8.52993539557474,9.65570312712763,7.78973699646974,8.61847357956172,4.40785289591553 -"Tfru11770_t",0.268689904386292,0.431344381771756,0.771276289631491,0.463213453237125,0.310080359566393,0.458694476316252 -"Tfru11771_t",0,0,0,0,0,0 -"Tfru11772_t",0,0,0,0,0,0.142610347625006 -"Tfru11773_t",0,0,0,2.03669165201281,3.97653836078872,1.9207831193959 -"Tfru11774_t",3.00335011298124,2.52791937873999,2.26304871199024,4.12057576241593,4.11587798028221,5.00509921128398 -"Tfru11775_t",18.9556123823426,17.8262136092963,18.2554610385114,8.70148636454786,9.41687970477563,10.2578537760977 -"Tfru11776_t",0.058872022965275,0,0,0,0,0.215364610463832 -"Tfru11777_t",0.549326787956282,0.352747192765394,0.283913050023144,1.21218962618706,22.1881826603415,60.8220077619343 -"Tfru11778_t",6.64071987026498,6.93795158267595,6.62639556539859,5.45162131915211,5.01789389900571,7.94341425610653 -"Tfru11779_t",0.983399059197545,1.18403311484672,1.14930485232545,0.799236857943253,0.72957034433096,0.8736672383348 -"Tfru11780_t",0,0,0,0,0,0 -"Tfru11781_t",14.0419065909234,13.6414981454732,10.1200965664631,11.4078109185029,7.98078779103502,8.50986839776965 -"Tfru11782_t",0.943179851483772,0.108153175648732,2.14658499662795,1.46341276693904,0.758043284794024,0.197161378753417 -"Tfru11783_t",3.39732427283437,2.32297146588714,2.23935815775382,4.55535626653264,4.6104134939723,12.1211675643631 -"Tfru11784_t",17.5694778344133,21.559269632834,20.8689565290675,3.55115467563423,5.41857974487474,5.17133916808466 -"Tfru11785_t",2.33768004929245,4.45647511416594,3.52292182102287,3.77821060118629,6.82877842293779,8.97924352246213 -"Tfru11786_t",0,0,0,1.23552858522206,1.20615381570671,3.641295013411 -"Tfru11787_t",2.05493007930159,1.06729288516091,0.936850998139432,1.12530876898642,1.04624236429236,1.59190083003568 -"Tfru11788_t",0,0,0,0,0,0 -"Tfru11789_t",3.23116833736336,3.75624298503097,2.6386036990775,2.3626343480893,3.03777996820564,4.11669167272158 -"Tfru11790_t",8.73432097760602,7.01087056264135,7.99167792663514,8.55912004865184,8.97732482862968,11.9608820250372 -"Tfru11791_t",5.01781435919957,4.82103791524143,4.94307833080657,4.83645148902987,5.69207921586841,8.23242430253746 -"Tfru11792_t",0,0,0,0,0,0.260445168755838 -"Tfru11793_t",0,0,0,0.489570951139632,0.307241595711207,4.93451888746976 -"Tfru11794_t",19.2504311623116,33.154181554513,17.9456002900309,50.6507165355919,67.5373303735222,71.3104086750967 -"Tfru11795_t",97.0939600391319,122.292319549245,100.809604216916,26.5326387915275,22.7975782391451,23.5532094006816 -"Tfru11796_t",12.4572348919687,17.0108028026571,12.9515838712043,8.0141790871456,6.50874375001228,3.89019365989732 -"Tfru11797_t",0,0,0,0,0,0 -"Tfru11798_t",0,0,0,0,0,0.156798622006066 -"Tfru11799_t",0,0,0,0,0.442029448743581,0 -"Tfru11800_t",3.59787480819903,9.81901143716264,5.42205580055715,13.7698382081779,11.0549956029993,10.3977296066035 -"Tfru11801_t",6.1013122794906,7.15774634258496,8.08332021982502,21.8460780571386,15.4364585703694,8.92788578483699 -"Tfru11802_t",0,0.0582830639731932,0,0.0751070387444119,0,0.212498046072179 -"Tfru11803_t",17.0196193611615,24.8060799110461,15.9788710057546,15.9502066735534,16.7247379924847,20.6443955700172 -"Tfru11804_t",76.0848695288581,116.736303496384,72.0044625902291,65.584033077196,74.7717833084602,124.959626345136 -"Tfru11805_t",0,0,0,0,0,0 -"Tfru11806_t",0,0,0,0,0.132568540233945,0.0560301365782841 -"Tfru11807_t",0.455094132023009,0.219177156068206,0.0783810573861689,0.376593039338178,0.236339689008621,0.466148882756927 -"Tfru11808_t",1.75224424320516,0.937661715184027,0.922135429480617,2.71873555427194,3.11751128595342,2.92012451087078 -"Tfru11809_t",2.03102009777126,2.96411011063669,1.7490173091028,2.10085116945084,3.83545552448276,6.61931413514837 -"Tfru11810_t",1.839643286966,1.47664609526244,0.792106379205481,6.81870489885628,3.7153059140747,7.96353877312558 -"Tfru11811_t",2.73002701472946,5.67756246080963,2.03038198431498,0.770152234806068,0.75184181717612,2.72371018432988 -"Tfru11812_t",0,0,0,0,0,0 -"Tfru11813_t",0,0,0,0,0,0 -"Tfru11814_t",0,0,0,0,0,0 -"Tfru11815_t",0,0,0,0,0,0 -"Tfru11816_t",0,0,0,0,0,0 -"Tfru11817_t",0,0,0,0,0,0 -"Tfru11818_t",0,0,0,0,0,0 -"Tfru11819_t",0,0,0,0,0,0 -"Tfru11820_t",0,0,0,0,0,0 -"Tfru11821_t",0.0685239614775265,0,0.177028668762073,0.283519881981353,0.118619648153865,0.150403898433224 -"Tfru11822_t",0.604391199794586,0.242566564809297,0.260236388372064,0,0.52312118214618,0.663292012514867 -"Tfru11823_t",0.136159443713853,0.655755316210547,0.234507993411455,0,0.235701278179316,0.298857665282226 -"Tfru11824_t",0.392113777229626,1.10159751486323,1.18184366807943,0.405595537116848,0.848469595312941,1.29098141992392 -"Tfru11825_t",0,0,0,0,0,0 -"Tfru11826_t",0,0,0,0,0,0 -"Tfru11827_t",0,0,0,0,0,0 -"Tfru11828_t",12.2487395609717,16.4576224605636,10.2613971142398,4.68234657706446,6.39559169519288,6.72121890335984 -"Tfru11829_t",6.50182142019349,6.7296165902897,6.77780638391438,5.4864850481585,1.6290270621212,3.75550263704955 -"Tfru11830_t",0.872368890933506,0.576378456494927,0.546827263188382,0.738972700125068,0.276049919913153,0.29017836220232 -"Tfru11831_t",10.2409878134401,10.2724602609807,10.3809041441576,7.26609334557551,8.02637510581467,9.92130812230552 -"Tfru11832_t",0.248184274066314,0.498031794807862,0.106862209700789,0.128358705801011,0,0 -"Tfru11833_t",0,0,0,0.234228689561414,0.391988379074496,0.331348031409044 -"Tfru11834_t",14.8486705186209,22.2388033767566,17.7757285349617,21.5558571114092,19.4085825060175,13.6019962862824 -"Tfru11835_t",41.3622518287994,39.9096254182154,43.9241846945134,31.4786628149858,36.7279111607836,33.7117037313041 -"Tfru11836_t",2.34127279526985,1.16557769741327,2.07549185152474,2.2080853759392,1.90724837556247,2.6198222221079 -"Tfru11837_t",0.904679140873366,0.525846121558365,0.779066380637053,0.774441979894107,0.675026404737459,1.2096725476413 -"Tfru11838_t",0,0,0,0,0.43541224142706,0 -"Tfru11839_t",0.240947543321551,0.38680786816626,0.345820822024063,0.581541019876666,0.41709662132879,0.117524014964393 -"Tfru11840_t",8.95401737234921,12.1536087054697,9.57893910151087,20.8997219331444,20.5991877954934,35.7742208964158 -"Tfru11841_t",0,0,0.2494679860946,0.299651185611326,11.5339201332506,56.3782962545396 -"Tfru11842_t",0,0,0,0,0,0 -"Tfru11843_t",0,0,0,0,0,0 -"Tfru11844_t",0.199076722207221,0.239692553377907,0.171435345894393,0.566283934893442,0.301538453926678,0.47336835174343 -"Tfru11845_t",0,0,0,0,0,0.0932701970051255 -"Tfru11846_t",0.340334963549023,0.252166425741295,0.338169442041604,0.270797269639404,0.407868244851899,0.249001488857248 -"Tfru11847_t",0,0,0,0.112417650488078,0,0 -"Tfru11848_t",0,0,0.346151751040354,0,0,0 -"Tfru11849_t",1.15339575876517,1.86078862384224,0.806052270351362,1.18692557004605,1.77852629230951,0.960868782711218 -"Tfru11850_t",17.4707846996915,17.4326128064704,17.613030169196,16.2020074543521,11.914746093034,11.7905367540739 -"Tfru11851_t",0,0,0,0,0,0 -"Tfru11852_t",0,0,0,0,0,0 -"Tfru11853_t",0,0,0,0,0,0 -"Tfru11854_t",0,0,0,0,0,0 -"Tfru11855_t",0,0,0,0,0,0 -"Tfru11856_t",0.61321442898594,0.492215365085289,0.528070919467971,0,0.530757987722596,0.448650071723389 -"Tfru11857_t",23.0551675641287,22.1671837814964,19.0684167456119,12.4386301628394,3.94793824038257,1.63825924512557 -"Tfru11858_t",0,0,0.113930261366038,1.91588002138895,1.25960990157718,0.193590739610638 -"Tfru11859_t",0.295811185814956,0,0.254738436505049,0.30598184446227,0.256034663092673,0.216426266994288 -"Tfru11860_t",5.4094024422745,3.86302491052072,4.25198263251287,2.96940772877154,2.80161823542172,2.9227064638078 -"Tfru11861_t",2.67170809520504,4.52733779265974,4.60149430181558,3.53122510252217,4.36796944668348,3.58365189800435 -"Tfru11862_t",1.83221338677632,3.43159193543621,3.0598948585173,8.70392296816098,13.3915642201751,19.8098213818455 -"Tfru11863_t",0,0.155197940200195,0.166503373918145,0.0999986695365761,0,0.212192381448945 -"Tfru11864_t",12.8655891284274,10.712293939841,12.3194419190259,27.1124392741128,29.6672484818742,26.4124142796777 -"Tfru11865_t",0,0,0,0,0,0 -"Tfru11866_t",10.7756777806607,12.8139676991895,11.7712150683354,21.2602872071504,23.2304324484891,21.388672837445 -"Tfru11867_t",0.148428227511391,0.238280936455776,0,0.153531526196616,0.128469689608338,0.217191024121476 -"Tfru11868_t",6.01383753405385,7.59399576358883,6.41037989584857,14.9446287507421,16.8216226489346,16.3924712151535 -"Tfru11869_t",0.626164298917621,0.753914962922809,0.898704546179303,3.45436397822746,3.38729088439374,3.58864324452143 -"Tfru11870_t",0.446863706231104,0,0,3.69782314158658,1.1603273029519,0 -"Tfru11871_t",1.10938072567338,0.971431044662443,1.30274398500781,1.04320340729033,2.09499671505361,3.61559175449281 -"Tfru11872_t",1.40799514142091,0.753446983429996,1.616664043965,3.88374721015798,2.84355815769963,1.71690111246865 -"Tfru11873_t",0,0,0,0,0,0 -"Tfru11874_t",0,0,0,0,0.890373603897785,0.752633385629115 -"Tfru11875_t",0,0,0,0,0.365396202604618,0 -"Tfru11876_t",16.3459104125441,6.10257963954612,18.3319461274946,64.8792272918641,42.4438276790188,80.655508369455 -"Tfru11877_t",0,0,0,0,0,0 -"Tfru11878_t",0,0,0,6.99609335897631,1.84865705894032,10.9386970877452 -"Tfru11879_t",0.760274902909027,1.52564490988653,1.63678090424059,144.307129794631,78.3072169581898,47.8370601363664 -"Tfru11880_t",0,0,0,0,0,0 -"Tfru11881_t",0,0,0,0,0,0 -"Tfru11882_t",0,0.301042433111538,0.322971946283187,0.387941267086092,1.29846150568427,2.19518070808492 -"Tfru11883_t",0,0,0,0,0,0 -"Tfru11884_t",0,0,0,0,0,1.46490708622946 -"Tfru11885_t",0,0,0,0,0,1.73808652465335 -"Tfru11886_t",5.98381386030761,6.70530621113881,8.87740097202644,33.5216273438115,30.3059816587634,44.9067714951532 -"Tfru11887_t",0.837439188478406,0.794413742837154,0.85228301547498,1.06310320948649,1.02135440592111,1.03045184122156 -"Tfru11888_t",0,0.394925358811037,0.953311044958865,5.47093745911162,5.9618964594815,2.60979024152995 -"Tfru11889_t",1.10676494717428,1.30480639596471,0.893524692887203,4.72237438666182,6.28649950878839,4.8078885825491 -"Tfru11890_t",17.7630259378104,20.4521029080976,15.5474328942146,16.4912017315211,21.8645615064616,21.5713598177495 -"Tfru11891_t",0.892371225189882,1.22792421882218,1.09781056096258,4.61526484666914,3.64120919955164,3.17118669817427 -"Tfru11892_t",18.4822828897184,17.0422858133834,20.0594939727885,34.3645427862444,43.5622030961566,36.9907905500564 -"Tfru11893_t",3.48832014275906,2.56667320133851,3.75496795678723,1.65378422508673,2.64185247523305,3.19022801867012 -"Tfru11894_t",0,0,0,0,0,0 -"Tfru11895_t",0,0.351582403633913,0.226316108344423,0.634298130126165,0.985693405774919,0.128185734778681 -"Tfru11896_t",0,0,0,0,0.0813809113803235,0 -"Tfru11897_t",0.213089097708174,0.342084996915584,0.504630865974491,17.4128311029943,14.10934455384,6.62591006371858 -"Tfru11898_t",0.815634725936383,0.398754890959677,0.848896698219221,14.1737920028969,18.4180580794621,10.2789748878178 -"Tfru11899_t",342.52462297812,414.791945651098,316.59974093787,109.811079177244,108.486250044052,113.641187781888 -"Tfru11900_t",16.9908627178208,18.7525758333749,13.2091897131551,5.85834902206413,7.35308538050417,7.2514958222131 -"Tfru11901_t",599.110497119263,728.970955691313,608.337699227103,206.146892290087,287.670829345647,240.027788372013 -"Tfru11902_t",8.16494294148728,11.6074066012842,6.35354648425942,5.18950940888936,4.1721058215429,2.44708669097991 -"Tfru11903_t",0.298969312353906,0.959907544725759,0.257458063941046,6.49421964545544,10.6094932991142,6.34336916357635 -"Tfru11904_t",7.04568460759258,5.78494857380021,7.92004957133879,0.61196368892454,0.558621083111286,0.314801842900782 -"Tfru11905_t",4.93731870718272,4.26794335550535,4.77507890200965,3.2213857114997,4.60214204546323,3.22330331820064 -"Tfru11906_t",0,0,0,0,0.133419897831778,0.112779926286932 -"Tfru11907_t",84.204665339374,171.609225070976,72.178403950858,150.927455398452,99.2163925712494,71.5576112779799 -"Tfru11908_t",0,0,0,0,0,0 -"Tfru11909_t",0.398153444414443,0.479385106755815,0.514306037683179,0.205921430870343,0.516923063874306,0.14565180053644 -"Tfru11910_t",3.91778118112729,1.95925794062362,2.51763448504968,3.94994744669476,4.37198994858647,1.09973197169097 -"Tfru11911_t",27.6191557566205,25.5317320392385,27.5795056706045,21.3236558256071,19.4806220830065,16.906525808823 -"Tfru11912_t",0,0,0,0,0,0 -"Tfru11913_t",0,0.149189170391559,0,0.576762237791712,0.482614010962295,0.815907873801474 -"Tfru11914_t",0,0,0,0,0,0 -"Tfru11915_t",0,0,0,0,0,0 -"Tfru11916_t",1.22642885797188,2.46107682542645,3.6964964362758,1.90289439037003,3.18454792633557,2.69190043034033 -"Tfru11917_t",0.733257652618618,0.630612578089008,0.541239770329929,5.52598632816897,5.62126976026905,4.02358558713819 -"Tfru11918_t",27.7534280405675,7.22501839467692,53.2903711367259,30.2594188327152,13.6338458096848,7.68313247829722 -"Tfru11919_t",1.37271857469685,3.08519303999276,3.07351080907399,2.55584834786131,4.51491190211785,3.21385933732694 -"Tfru11920_t",19.2128611116056,20.6278748049042,20.3916912450087,34.3671319724804,34.4238884245502,32.4112915617607 -"Tfru11921_t",0.117251049227421,0.141172725087895,0.151456488417517,2.48628932094813,1.87746841575562,0.94363664771829 -"Tfru11922_t",0,0,0,0,0,0 -"Tfru11923_t",1.61474490417847,1.89164117969723,1.87910950564763,2.97938893122119,2.68191321901333,3.44842933051885 -"Tfru11924_t",1.74265258644316,2.91415319865966,2.62620576545568,6.68452644825266,5.65621952346475,4.46245896751575 -"Tfru11925_t",1.00812452125737,1.34867010033969,0.868148591609207,5.90912138025536,8.28937825228837,7.86752765777635 -"Tfru11926_t",0,0,0,0,0,0 -"Tfru11927_t",0,0,0,0,0,0 -"Tfru11928_t",2.52169305276137,1.99638666168704,2.14181395956219,3.60887468197193,2.81048575901398,2.80535429306247 -"Tfru11929_t",0,0,0,0,0,0 -"Tfru11930_t",0.360559556959002,0.289414184622252,0.310496635053364,1.1188692338277,2.49661268045731,0.791395620082117 -"Tfru11931_t",0,0,0,0,0,0 -"Tfru11932_t",0,0,0,0,0,0 -"Tfru11933_t",0,0,0,0,0,0 -"Tfru11934_t",0,0,0,0,0,0 -"Tfru11935_t",0,0,0,0,0,0 -"Tfru11936_t",2.95128283230534,4.52757142850306,2.58631592924045,8.04229145494365,8.2991963922255,7.77054483403085 -"Tfru11937_t",0.0944998613852052,0.189633028731678,0.122068137177897,0.928615316489543,1.02241063439706,0.933383923122721 -"Tfru11938_t",14.6000837613674,14.1476527013058,14.8501475724411,8.85743859878634,9.01259632457684,9.66229072246932 -"Tfru11939_t",0,0,0,0,0,0 -"Tfru11940_t",10.697583023467,10.5955682532528,10.3532128574891,36.9523120947799,35.0827309619927,31.6659946068137 -"Tfru11941_t",11.7637745456103,14.9092963648791,12.0964969581661,9.92672191117761,7.73694059766545,7.89901045212316 -"Tfru11942_t",0,0,0,0,0,0 -"Tfru11943_t",0,0,0,0,0.0863072336122481,0.328300022811513 -"Tfru11944_t",0,0,0,0,0,0 -"Tfru11945_t",0,0,0,0,0,0 -"Tfru11946_t",0,0,0,0,0,0 -"Tfru11947_t",0,0.0293189152247759,0.0629093182325512,0.188910530059314,0.284532434289075,0.400859085824202 -"Tfru11948_t",1.41989369191179,1.32967474681378,2.75117511425453,3.42699665797742,2.86758822663793,5.97336496904234 -"Tfru11949_t",0,0,0,0,0,0 -"Tfru11950_t",0,0,0,0,0,0 -"Tfru11951_t",6.51804644805266,9.30117306926847,5.61302966508806,4.49476776652049,3.76106089824811,3.17922721991512 -"Tfru11952_t",0,0,0,0,0,0 -"Tfru11953_t",0,0,0,0,0,0 -"Tfru11954_t",1.34059111869331,0.717377712946645,1.53927055249859,1.38668367809497,2.70743037355443,0.980825422761347 -"Tfru11955_t",9.37845468433021,8.57609343126982,8.96228134688418,9.37345041754507,10.4464072148315,9.46729842827391 -"Tfru11956_t",9.12329883490832,4.27180574768228,5.89241125526611,5.11169669572263,6.90946031984028,7.50930595163891 -"Tfru11957_t",55.0412813330173,68.8644547255678,53.7315662357599,32.2701276812198,36.2604846998514,28.3684891506359 -"Tfru11958_t",0,0,0,0,0,0 -"Tfru11959_t",26.4127736745106,22.4481416965391,26.9504516549754,20.548075356782,22.3808794269067,18.7561807396212 -"Tfru11960_t",75.4626623377481,71.6963093678475,75.7430463981743,90.4822499421116,84.0521258827047,67.5507805120705 -"Tfru11961_t",0,0,0.172662806604854,0,0,0.146694653523574 -"Tfru11962_t",21.5473300652992,24.0972755680291,25.8526477808698,14.2744498505914,21.7931982971331,15.764813615411 -"Tfru11963_t",0,0,0,0,0,0 -"Tfru11964_t",0,0,0.18177315569707,0,0,0 -"Tfru11965_t",0,0,0,0.167758385766959,0,0 -"Tfru11966_t",103.405912305753,106.665926801272,101.74212826027,113.839778259226,112.907908657865,98.6035788243737 -"Tfru11967_t",21.8316439636327,33.3840213982111,21.537129260042,25.7266313962356,18.6568416343055,14.6586080178039 -"Tfru11968_t",0.461595476766195,0.25935963468071,0.2385023603322,0.334226322412633,0.599289925700432,0.540352174297826 -"Tfru11969_t",3.64330715590461,1.89226672241538,2.7683309681416,6.42874099742667,8.53274703735377,12.2302925164731 -"Tfru11970_t",40.0017875994909,42.687508497153,34.8468525471834,27.1965636574158,26.4830871699357,25.5357402668514 -"Tfru11971_t",0.626943110226831,1.00647022412149,0,0,0.542640629234391,0.458694476310507 -"Tfru11972_t",0,0.129430911740853,0.138859339668779,0.166792406578281,0.418697759990321,0.117975162814545 -"Tfru11973_t",7.48839013004546,4.88376359454484,5.64256280525947,8.95614824960872,7.3605545204564,5.30756784016075 -"Tfru11974_t",2.91518657566537,3.61630784002757,3.19507893862484,4.38606151809639,4.81700545957319,3.10233740448594 -"Tfru11975_t",0.302195599897293,1.45539938885578,2.08189110697652,0.312585769162894,0.26156059107309,1.10548668752478 -"Tfru11976_t",24.5479481977773,29.3965026427696,27.1385706491855,21.7032650427473,23.0416031847783,21.7827803333362 -"Tfru11977_t",2.38665843100703,1.14943474460769,2.0552760218021,0.98748686167369,1.23944052815317,1.74616647234028 -"Tfru11978_t",0,0,0,0,0,0 -"Tfru11979_t",0,0,0,0,0,2.54855126109371 -"Tfru11980_t",10.3306585636571,10.6447021468629,8.69571010110815,2.69768986913513,2.62584350738341,1.92646207921178 -"Tfru11981_t",0.428624371282895,0.344048494984615,0,1.33008434429517,0.370989001624077,0.313597244012131 -"Tfru11982_t",0,0,0,0,0,0 -"Tfru11983_t",19.0263604758178,18.1602236093761,15.492593296076,15.676754434773,15.760171318831,15.5557257185511 -"Tfru11984_t",0,0.667658292543958,0,0,0.719938866141515,0 -"Tfru11985_t",0,0,0,0,0,0.125952991447495 -"Tfru11986_t",1.63126945187277,0.900204557265571,1.14137658686486,2.00373547660001,1.14718443706086,1.79024446096246 -"Tfru11987_t",1.75387007873585,1.54857735947146,0.906209385813368,1.08850326297225,1.2144274625189,1.66815402451547 -"Tfru11988_t",0.613214428988667,0.984430730174958,0.924124109073061,0.792872662657707,0.265378993862478,1.4581127331075 -"Tfru11989_t",0,0,0,0,0,0 -"Tfru11990_t",35.8501864885868,36.7503934796934,40.1714001258759,38.8699198610476,29.7210828961767,22.1211012228609 -"Tfru11991_t",5.18125671718178,2.97063898753236,7.01147908054426,9.18754295971292,11.8520362985806,9.20622041452354 -"Tfru11992_t",1.07627507103861,1.47845356069207,1.08960469187299,0.78769800423572,1.20147707124955,1.21076714560635 -"Tfru11993_t",1.33740859543988,1.10176233584516,1.45479445598526,3.85893483271561,4.84352796255246,5.07273430490004 -"Tfru11994_t",0,0,0,0,0,0 -"Tfru11995_t",0,0,0,0,0,0 -"Tfru11996_t",8.61799417382854,7.35286424862386,6.22775173320808,7.16884292692807,3.18188271407279,9.92083103366929 -"Tfru11997_t",9.32129268771537,8.53045752511678,10.3277983218528,9.21189157179696,7.75956925234359,11.033304025371 -"Tfru11998_t",0.1234538967986,0,0.31893776326569,15.7069181348362,19.661054158076,15.1743277749176 -"Tfru11999_t",0,0.389789046340952,0,0.502305455649044,0.420311238834214,0.357195870396852 -"Tfru12000_t",0,0,0,0,0,0 -"Tfru12001_t",0,0,0,0,0,0.653883615174231 -"Tfru12002_t",0.383609026353641,0.307915548022761,0.247759301258335,8.33276584645195,7.1385737572779,8.0690432420473 -"Tfru12003_t",1.35500607695883,1.47150912276152,1.20118598617656,1.40159425527878,2.44909058187887,1.89526987130671 -"Tfru12004_t",0,0,0,0,0,0 -"Tfru12005_t",0.115082707906092,0.184749328813656,0.297311161510002,0.476158048368683,0.597648035493033,0.336794848363713 -"Tfru12006_t",0,0,0,0,0,0 -"Tfru12007_t",0,0,0,0,0,0 -"Tfru12008_t",0,0,0,0,0,0 -"Tfru12009_t",17.7424238165676,21.931910818618,16.5012403896153,19.5453576929373,17.8905234700827,14.2142007412637 -"Tfru12010_t",0,0,0,0,0,0 -"Tfru12011_t",14.5756802406134,19.2850824643426,19.6554137757089,0,0.346586483881406,13.1836400962202 -"Tfru12012_t",23.3813972137378,22.3581563100844,22.5161158601452,31.2095557211255,31.6759244368282,31.0002867081731 -"Tfru12013_t",2.58228617125351,4.14550235760151,2.81673894135501,3.73949942699381,3.57609070417963,4.28240170921484 -"Tfru12014_t",5.09747910398514,7.16038384661096,7.42873162792787,6.38812970959035,5.68474628859671,7.2438401895731 -"Tfru12015_t",0,0,0,0,0,0 -"Tfru12016_t",7.08200553788903,7.45550788800521,7.60910113037109,7.94169222380372,7.86204166945891,7.0947803882365 -"Tfru12017_t",0.194019345892488,0,0.25062026316663,0.100345085250906,0.587756247376713,0.141951639321888 -"Tfru12018_t",0,0,0.0323839373175622,0.155593274534082,0.13019488687255,0.0825403668214562 -"Tfru12019_t",7.80185519794274,6.96378692225918,8.43854190704838,11.2335801084306,10.7504123472106,6.66708672708109 -"Tfru12020_t",8.12642070170772,7.37764831406636,8.25291356266257,10.1449617543528,10.0897128873985,7.79076809006789 -"Tfru12021_t",93.2919764714091,99.5265045718101,108.416101265645,57.6043327353672,58.2946683911736,43.8787395927682 -"Tfru12022_t",4.23173656734789,2.78420747386394,2.03117617084455,0.932852989062511,0.540400164215418,1.06586808947476 -"Tfru12023_t",21.4220279637935,18.9670022519919,21.5805278448158,18.9252054246514,11.0820973577425,6.52509043773823 -"Tfru12024_t",0.904959175275915,1.57385200219174,1.03907671048379,1.40411058248754,1.95818252203732,0.772451380223777 -"Tfru12025_t",0.365262507701946,0.879567456743278,0.629093182325512,1.51128424047452,0.948441447630249,1.06895756219787 -"Tfru12026_t",54.6431736838968,67.9283472819524,54.1506960076456,192.870215752752,131.263284006252,71.2240219602522 -"Tfru12027_t",2.64964595399889,3.13324614458538,3.23652746355088,1.36634053982724,1.4307971384533,1.06309155965214 -"Tfru12028_t",2.01624904202125,3.77627628002688,9.26025164156505,2.7807630017925,4.65368603523341,3.4420433494347 -"Tfru12029_t",15.1772200330989,15.550553229209,15.1457024926509,4.80206150799022,6.95456534394125,8.36081578934787 -"Tfru12030_t",136.344709756157,123.812337002245,128.087497041852,70.5162748645331,84.0381314951965,87.1594700266726 -"Tfru12031_t",22.0554946932956,20.1055041343516,22.7154094990096,16.9670565784144,17.842711138796,20.4342942958406 -"Tfru12032_t",68.7009687037577,85.4823360864508,74.5704703308971,4.25586592775995,14.9899838514986,33.6027661920971 -"Tfru12033_t",176.68379541319,179.234728626633,167.399543989032,187.348312195041,133.832976036584,76.5839804778358 -"Tfru12034_t",0,0,0,0.735540395152349,0.351699367924155,0.0743229260294773 -"Tfru12035_t",179.204996510172,192.858792466326,170.374991390789,92.6832351149463,120.559220074826,98.5698281530893 -"Tfru12036_t",0.529199223757149,0.530972480448697,1.36716313639245,0.957940010694476,1.25960990157718,1.64552128669043 -"Tfru12037_t",0.675169503329658,0.541945505302976,0.996726281985312,0.947805988931348,0.584382216105894,0.846820571660772 -"Tfru12038_t",47.4264023389295,56.9543738598237,44.3982927666693,83.0078508200928,94.5471496360233,55.0973012139874 -"Tfru12039_t",60.5686660277388,69.1154006994035,64.0003021223987,61.3642653994699,57.0149083275362,49.2007922382618 -"Tfru12040_t",2.97083431190247,2.58442468812108,2.48228156669299,2.88195534818577,2.47406370804947,2.74339892372344 -"Tfru12041_t",116.809783667702,135.552110955767,104.056029787702,64.7011710934645,103.846767502505,156.561944840773 -"Tfru12042_t",11.475644249708,11.5575466072925,13.331749205339,13.8858977249785,16.6792065575526,14.6533969946906 -"Tfru12043_t",0.0454110144710527,0.874813038058178,0.860327433126241,0.0469723480147484,0.353743026413444,0.232570496640348 -"Tfru12044_t",2.39766168612254,2.96085642226057,2.6206461327391,5.24636268990193,4.46978625886484,3.64337346940109 -"Tfru12045_t",11.7196251296946,8.9636833817786,10.5681153902639,9.38785067180623,9.52896315867121,11.0862296727708 -"Tfru12046_t",0,0,0,0,0,0 -"Tfru12047_t",4.86233691924776,7.37215167388256,4.18721185663605,17.0444677603356,20.5749784566305,24.3093323429082 -"Tfru12048_t",0,0,0,0,0,0 -"Tfru12049_t",11.6662454574875,14.7998514602321,10.4505782842023,15.3962835831262,8.87886526791925,11.4787102947904 -"Tfru12050_t",19.7107415380061,26.1695022640422,20.1393591057092,19.5618830429208,20.1957284790258,21.1639362623482 -"Tfru12051_t",0,0.0225530117113661,0,0,0,0 -"Tfru12052_t",0,0,0,0,0,0 -"Tfru12053_t",5.15974696576491,5.33686437067644,5.81509258600561,4.11927742792157,5.66484607426311,5.32055340624044 -"Tfru12054_t",11.4455554184533,10.8408087084526,10.9405646762741,10.7735623818568,10.6990397634584,13.3146383002644 -"Tfru12055_t",344.248762347044,451.173152291385,351.127036656053,873.11524903805,985.928692364942,1259.9086279472 -"Tfru12056_t",0.032880773687455,0,0,0.136045156676767,0.028459430261573,0.0360851623246836 -"Tfru12057_t",0.032880773687455,0.0791782837772813,0,0,0.028459430261573,0.0360851623246836 -"Tfru12058_t",5.94820330395478,6.54569614744235,4.57152221187439,6.71506101900981,6.39394672155756,8.1657045601088 -"Tfru12059_t",45.6679784675957,49.7932003650461,47.5146260713759,14.5100110286746,8.09430548997986,4.56141445835827 -"Tfru12060_t",0.146871288061971,0.117890743036686,0.126478524418591,0,0,0 -"Tfru12061_t",21.3181590471786,18.1248652883715,20.1698406787337,12.3312215781623,13.5959107907375,20.009493599572 -"Tfru12062_t",2.1329812913697,2.41250854648185,2.29602676180546,8.37397975715899,8.3077560155956,9.57620666654471 -"Tfru12063_t",5.48526625646146,5.84185936222281,4.75003788952694,4.69123796696631,3.89893675535032,5.4369057114341 -"Tfru12064_t",280.096135301727,304.117697351324,259.331566467878,186.784767611174,189.215805874483,144.138942493945 -"Tfru12065_t",0.725896112656516,0.738039513434739,0.625106992806169,0.25028468844264,0.376972695198659,0.601904387700703 -"Tfru12066_t",10.1037778323823,8.84940781430018,8.88646541447383,4.5780261185188,7.83349420680885,10.8759299406774 -"Tfru12067_t",0,0,0,2.07608159314332,0.744510351382106,0.62933508354653 -"Tfru12068_t",2.99756228687713,1.43857956378815,1.55411129303481,1.08850326297225,2.44837562029212,1.3083793719167 -"Tfru12069_t",0,0,0,0,0,0 -"Tfru12070_t",7.64420568339309,9.09692575353559,7.89839279560006,7.23373142179954,8.61150659050977,8.32451574416783 -"Tfru12071_t",1.45732286236184,1.10095518395077,1.77173181961063,2.66016868859035,1.03876920454741,1.12895007844367 -"Tfru12072_t",1.93713247409891,2.29142978213054,2.45834957170892,3.16379285778949,2.64734870090967,1.64105742254892 -"Tfru12073_t",0,0.784110523453309,0,18.4407430214877,4.43892654268808,0.357354998990568 -"Tfru12074_t",8.57783270230679,6.51734576937341,6.48461210931792,6.02805697632762,6.97100767821765,8.00051830943498 -"Tfru12075_t",35.2301580009296,38.5122437010491,30.709801719314,21.7884197866066,15.9927810084279,19.4218774084815 -"Tfru12076_t",0,0,0,0,0.08034678930201,0.135834386356636 -"Tfru12077_t",0,0,0,0,0,0 -"Tfru12078_t",0,0,0,0,0,0.349233294468055 -"Tfru12079_t",0,0.949767676295558,0.509476873010098,0.61196368892454,0,1.7314101359543 -"Tfru12080_t",50.7779190236681,47.354742454459,49.5614507030094,19.1481085152729,24.6216156498321,24.0236524839541 -"Tfru12081_t",0,0,0,0,0,0 -"Tfru12082_t",0,0,0,0,0,0.267239390549468 -"Tfru12083_t",2.6577009273541,4.30272766596309,3.80154432429411,5.03221186774624,6.39413966123556,8.33815556894024 -"Tfru12084_t",0,0,0,0,0,0 -"Tfru12085_t",0,0,0,0,0,0 -"Tfru12086_t",0,0,0,0,0,0 -"Tfru12087_t",128.734651012497,113.191954849938,130.561409284978,60.9067789325165,53.8861524858972,34.0939003724439 -"Tfru12088_t",6.63526065998053,6.91215254274227,6.61946127971342,5.13817073989555,3.79731340635158,5.09334980002785 -"Tfru12089_t",1.47645653376885,2.25173391093622,1.39859907845654,0.152722045390658,0.127792345023408,0.216045904486389 -"Tfru12090_t",1.57914242051593,1.26754708678543,1.08790550326968,0.653374765618682,0,0 -"Tfru12091_t",2.2382871253494,1.07797787771379,2.05600613761801,0.463048901388728,0.258308505571293,0.218348347518216 -"Tfru12092_t",0,0,0,0,0,0 -"Tfru12093_t",24.5969768217604,28.4861486117938,23.1169584510347,15.5522199324785,15.5764046430641,15.0306820147569 -"Tfru12094_t",7.07822235229046,8.58752646763257,6.85485651293641,4.80104109543009,3.79638579451997,6.63890563318057 -"Tfru12095_t",0,0,0,0,0,0 -"Tfru12096_t",0,0,0,0,0,0 -"Tfru12097_t",0,0,0,0,0,0 -"Tfru12098_t",0,0,0,0,0,0 -"Tfru12099_t",0,0,0,0,0,0.0665926975367039 -"Tfru12100_t",0,0,0.0914610821332919,0.988735264785792,0.919264782785323,1.32099370044048 -"Tfru12101_t",0,0,0,0,0,0 -"Tfru12102_t",0,0,0,0,0,0 -"Tfru12103_t",0,0,0,0,0.31140832684505,0.263233660926671 -"Tfru12104_t",2.93653292666154,2.97199338220753,3.02356715669367,2.24510690739185,1.76811779497432,2.28859265310981 -"Tfru12105_t",0.950849803671509,0.808124560789429,1.1078238796611,1.67780723767727,1.16187234596515,1.67780789139913 -"Tfru12106_t",0,0,0,0,0,0 -"Tfru12107_t",0,0,0.146448817747842,2.99044604263935,3.09107435361275,2.36404076255299 -"Tfru12108_t",0,0,0.163308613921973,0,0,0 -"Tfru12109_t",0,0.53946804000384,0,0,0,0 -"Tfru12110_t",4.61595476766195,4.81667892978462,3.577535404983,5.2521279236271,3.99526617133621,5.06580163404212 -"Tfru12111_t",4.0980671595828,7.4012383555227,3.97019172992015,3.17922599368115,6.20727939302724,11.9931824051469 -"Tfru12112_t",7.85228711071991,8.44439777729832,8.45904437872558,10.1606731865898,12.3070346392247,12.7987511800144 -"Tfru12113_t",4.53124784818098,4.34785153240322,3.54328057125064,3.93280570328071,2.11875429817793,4.34408978314139 -"Tfru12114_t",4.47392539019543,2.39408893551425,2.35444637763838,3.08516605303969,1.07564858459052,3.45513649911591 -"Tfru12115_t",0.531711245388907,0.426794335550535,0,0,0,0 -"Tfru12116_t",6.72581222484531,5.49865496802691,6.59638477686758,6.69939196296338,5.87532174254765,6.83451369455645 -"Tfru12117_t",0,0,0,0,0,0 -"Tfru12118_t",0,0.225530117113661,0,0,0,0.205568761961129 -"Tfru12119_t",0.181971935245013,0.0973769025516023,0.15670552195112,1.50582834068941,1.10252038316585,0.665686568516726 -"Tfru12120_t",0,0,0,0,0,0 -"Tfru12121_t",0.150018529949013,0,0.129188778513275,0,0,0 -"Tfru12122_t",8.64572809492566,12.3082514011584,10.9572152339026,30.0349401966149,26.6852749051695,19.8120387013179 -"Tfru12123_t",9.61950879029204,10.8099511855561,14.9109490920104,31.8407977371437,28.8635107207802,27.682736867414 -"Tfru12124_t",0,0,0,0,0,0 -"Tfru12125_t",0,0,0,0,0,0 -"Tfru12126_t",0.0934486949626779,0.225028381591717,0.241420631704451,0.0966616727778472,0.404415151937258,0.410222868696625 -"Tfru12127_t",0,0,0,0,0,0 -"Tfru12128_t",0,0,0,0,0,0 -"Tfru12129_t",0,0,0,0,0,0 -"Tfru12130_t",8.28933738612602,8.98956102570718,8.98625933115431,7.51015200326778,6.207899934804,6.83900945583908 -"Tfru12131_t",0,0,0.12199952102434,2.05157472779424,2.32978590564597,1.65841645400007 -"Tfru12132_t",18.8876769311679,20.4048542100247,18.1765906518378,17.5010632633215,14.7892564715225,15.5347883010835 -"Tfru12133_t",10.5350633250368,14.7443033477651,13.2595042126808,8.38252512803389,9.35226293483204,12.4511214439286 -"Tfru12134_t",0.739094223795725,1.38426549888238,1.69726019864948,1.01934127656639,0.213237080112373,1.98274386536702 -"Tfru12135_t",0.280190250488429,0.299871061776474,0.160857623051548,0.289823825994279,0.16167614078559,0.375828603718819 -"Tfru12136_t",0,0,0,0,0,0 -"Tfru12137_t",22.9491760936637,22.5326589934802,27.1737567292313,33.4878471334414,43.8056574307922,55.0187242836113 -"Tfru12138_t",6.79051289180976,7.02016175801024,5.57212031573126,5.51621945581578,5.26198365570569,5.2543131971766 -"Tfru12139_t",39.1030117336192,15.2031902220111,40.513600941763,2.21197057014906,3.1729677520721,5.58773271148888 -"Tfru12140_t",0.222839195680232,0.0766580201026729,0.13707032203,0.263429613724243,0.165321358813912,0.279492503947151 -"Tfru12141_t",3.87893215558775,2.10230737819328,3.65440080656335,3.01779725998463,2.84083290746392,5.1423017692155 -"Tfru12142_t",3.72276411099472,3.78504164053975,3.01885742404728,1.02686964640809,1.55738662129339,1.33915750729553 -"Tfru12143_t",4.89774569369374,5.23342092408087,4.88931314744633,5.22748336428522,5.13020067600469,4.77021815956663 -"Tfru12144_t",0,0,0.164422081744168,0,0,0.279386635574444 -"Tfru12145_t",6.22133317593564,5.85597299827836,5.08771151182806,5.83338003315816,5.38477589784036,7.72815882739752 -"Tfru12146_t",12.3317984251666,11.3832705716745,13.6726765956802,13.8719255283922,16.2772275354769,13.8719309332926 -"Tfru12147_t",4.02012845900178,5.29539180501474,2.30796149098562,15.1406574521159,16.6840354448168,20.9659958671571 -"Tfru12148_t",347.605688503722,487.732618270619,299.487832294337,690.79303584969,521.508401659523,190.118646588472 -"Tfru12149_t",0.423226079453136,0.339715390513776,0.182231022587995,0.76611071384256,0.732633192124121,0.619295313112118 -"Tfru12150_t",19.643935808418,18.721431311993,20.6214540796661,13.585263994562,14.8465598574465,13.6681062956231 -"Tfru12151_t",0,0,0,0,0,0.63584544647977 -"Tfru12152_t",0,0,0,0,0,0 -"Tfru12153_t",8.40861300417553,9.36407553887793,10.0462040207257,9.1678672026982,8.4581478061886,10.0317185108876 -"Tfru12154_t",0.199076722207221,0,0.171435345894393,0,0,0 -"Tfru12155_t",63.6425669782306,60.6954275725149,71.887447246022,82.0517229776959,69.9830666074782,55.0024022394879 -"Tfru12156_t",25.7935045191326,23.3796316317455,29.9813605642076,44.4145941639547,31.1268765725265,25.364978920411 -"Tfru12157_t",99.7242110250013,100.905563430612,101.340452141431,114.821864467497,85.9010858465435,76.8798122331258 -"Tfru12158_t",0.840103767714474,0.674335050169846,1.01284002354407,1.73797687654569,1.59970457500302,1.35223131618031 -"Tfru12159_t",18.0236803562104,22.1027579018722,20.4361557619569,17.5040579342206,18.8067988284568,18.6080157281286 -"Tfru12160_t",207.413179014674,162.937416428599,261.690723786507,317.65893150261,237.624668274698,142.928320935979 -"Tfru12161_t",80.6774096649956,73.4136058119564,88.6382751059575,37.5175871833084,33.2600081362673,32.0593719281107 -"Tfru12162_t",35.1935362150658,33.6466553099299,38.4289613922648,27.6414201779097,26.1527963972333,21.0207948886468 -"Tfru12163_t",14.5238278486231,14.6296417663967,17.0441602024971,13.4030420140388,16.3914259226041,15.5225320578479 -"Tfru12164_t",5.9856513206815,5.08718814042633,5.27584014179945,5.97292975174966,5.85123977750095,6.23409240485474 -"Tfru12165_t",11.9164270635624,13.596700424821,11.1104955135554,12.3242879819156,10.7359438330315,11.1422737743159 -"Tfru12166_t",25.8672727368396,26.7489354158912,23.4295765303687,23.3819357870918,14.018341692436,12.3185868861464 -"Tfru12167_t",60.0950140406221,62.0191360007464,48.5825245910534,60.892620491841,38.2145751160269,27.3676543751267 -"Tfru12168_t",0,0,0,0,0.420311238834214,0 -"Tfru12169_t",20.4874362220935,21.7568478451026,18.5641837199453,17.7896689721894,14.885758695354,16.7579266885124 -"Tfru12170_t",1.65849631099412,1.57328708761809,1.92160193165474,1.62194539806849,1.22668725160122,1.41197553082849 -"Tfru12171_t",0.642936556924343,0.172024247492308,0,0.221680724049196,0,0.313597244012131 -"Tfru12172_t",0.238665843100703,0.383144914869231,0.513819005450525,0.740615146255267,1.3427272388326,2.18270809042534 -"Tfru12173_t",0,0,0,0,0,0 -"Tfru12174_t",0,0,0,0,0,0 -"Tfru12175_t",0,0,0,0,0.188134137951666,0.0795149544972545 -"Tfru12176_t",7.97036229173893,8.07308539778296,6.37072591520686,6.49335385904016,8.41509717224604,11.5436183059055 -"Tfru12177_t",4.29491812904418,12.2899899657119,6.33242535543135,8.86189866521817,11.6596044798757,10.3312192820109 -"Tfru12178_t",0,0,0,0,0,0 -"Tfru12179_t",1.31266213693194,3.68776980527382,1.69560271782924,6.11007495603843,3.40846145210462,4.32176201864077 -"Tfru12180_t",0,0,0,0,0,0 -"Tfru12181_t",0,0,0,0,0,0 -"Tfru12182_t",0,0,0,0,0,0 -"Tfru12183_t",0,0,0,0,0,0 -"Tfru12184_t",29.5296178931973,30.6193402951406,26.4180638431883,16.194303417265,14.7021902032168,15.8716110635713 -"Tfru12185_t",38.834985488688,37.8518259293451,29.0065370624146,16.8059084760315,12.6906237725368,25.8037279459793 -"Tfru12186_t",0,0,0,0,0,0 -"Tfru12187_t",0,0,0,2.56746584035159,3.30517474174178,1.67631981344666 -"Tfru12188_t",23.6238732831882,21.6119707912678,21.7928928684643,13.7243936707191,13.6099198359108,9.8022090786288 -"Tfru12189_t",0,0,0,0,0,0 -"Tfru12190_t",19.6989848981325,21.8577567986088,28.688818400879,14.3832569093437,16.2979306230715,12.9288574117553 -"Tfru12191_t",1.08051931538839,1.08413995204155,1.39573728554535,0.279417504267796,0.935226293483204,0.395273696632654 -"Tfru12192_t",3.15449654630728,2.5935963468071,2.41466796449323,2.70779969683455,1.98138115547962,2.84486261256377 -"Tfru12193_t",59.4705035566299,49.6878458019887,67.586129390629,19.8952616130889,29.4682421711082,24.5860239305511 -"Tfru12194_t",0.584882369927799,0.72555037043591,0.457884278274898,1.92497438857909,1.88687823863992,1.63388133715688 -"Tfru12195_t",3.8499026998372,4.30426627767987,4.38100080326523,6.68452644825266,6.54543606793379,5.93525127619687 -"Tfru12196_t",0,0,0,0,0,0 -"Tfru12197_t",0,0.0800872981199342,0,0,0,0.0729988834042491 -"Tfru12198_t",10.7726224759559,11.5830757421519,10.6614739320429,9.43829547789168,9.01095008538021,11.3225110206485 -"Tfru12199_t",0.99617047555076,1.33267796476254,0.285951446511596,1.88910530059314,2.01184549497325,4.13006330849178 -"Tfru12200_t",37.4535425854131,35.0737735072861,39.6445564279746,18.8325667737149,23.4125071489325,22.264433435561 -"Tfru12201_t",0,0,0,0,0,0 -"Tfru12202_t",0,0,0,0.483667034289154,0.404715274498993,0.228070722917914 -"Tfru12203_t",6.22200183971623,5.95884119349069,6.50789498372021,8.59044514630818,8.02024919849228,8.26437390545384 -"Tfru12204_t",0.292719082827343,0.939839791177486,0.252075665391756,2.42226742375706,2.02686674058032,2.35580368672528 -"Tfru12205_t",0.756093390943027,0.8766355652208,1.30222288741381,3.82354912840052,2.94491069489192,1.90541685461771 -"Tfru12206_t",1.41193910315561,2.83334054242334,1.8238415761086,0.730242383941173,2.44416283033973,0.516513106962742 -"Tfru12207_t",0,0,1.23316561308126,1.48123029251053,1.23944052815317,2.44463306127639 -"Tfru12208_t",21.4277479214623,20.7487707744568,21.2350785734371,8.26770376494408,12.5114914312897,13.1888589910851 -"Tfru12209_t",0.755589664500027,0.786200091803617,0.747074348764307,2.66312246239513,2.6886198265601,2.06794505078752 -"Tfru12210_t",0.628349863660789,0.756546428761981,0.919878213497664,0.38997237319649,0.271929111138067,0.275834225099676 -"Tfru12211_t",236.313957176638,127.44262578955,274.350765601668,10.6465470914223,13.3027811211494,8.19194919871425 -"Tfru12212_t",2.91091555291881,3.42329638684128,2.79822269656473,2.66088321147205,3.51557667937078,6.14155311722066 -"Tfru12213_t",0,0,0,0,0,0 -"Tfru12214_t",38.7910710686103,36.0297751080195,48.0077772184951,29.0044953671544,31.0808516611285,44.1121273687988 -"Tfru12215_t",0.203785025522007,0.1635742996167,0,0.0526979040796147,0.132287163708282,0.223644850793369 -"Tfru12216_t",15.5875827134274,14.661126304205,14.4114972046681,10.0895641097132,9.51860227274524,10.7397685638577 -"Tfru12217_t",174.757434699096,220.749304159374,193.14941149796,153.302677317946,226.373288915522,251.658829855169 -"Tfru12218_t",0,0,0,0.480104109543009,0.16069357860402,0.203751579534954 -"Tfru12219_t",2.55544872308585,2.94861333724457,2.33816952746459,0.0826034637141489,0.138239247753458,0.350561177716983 -"Tfru12220_t",59.0609863544236,63.4734837492087,43.5773691817261,0.291606858480821,1.58604022841971,4.74394757049224 -"Tfru12221_t",67.3095187385693,62.1525678771003,54.6951045416443,10.9932272311625,16.2073026492639,32.5838871368749 -"Tfru12222_t",7.45318675310816,8.32351845918421,7.04620763038652,10.5585866173943,14.3744822422907,15.7070789334524 -"Tfru12223_t",7.50930742091151,6.02757586743997,6.46665617586002,9.22389962412519,8.53067447309889,9.95802645231818 -"Tfru12224_t",4.49999000435516,5.0110903388706,4.42097547594277,12.259587925841,6.03434392683145,3.45465632370059 -"Tfru12225_t",0,0,0,0,0,0 -"Tfru12226_t",36.1110322889703,35.5732699645549,40.4776208343547,16.0523619148092,20.5355261929178,17.5770419752164 -"Tfru12227_t",0.330749514848218,0.265486240224349,0,1.02636429717265,0.572549955262355,0.241988424513298 -"Tfru12228_t",1.30065326458258,2.27783831162228,1.62917868469943,0.24461321274394,0.358196277430143,0.346038338220283 -"Tfru12229_t",72.1326209981647,79.8476259700377,84.8650408955245,5.50316684031405,5.56865965324388,5.43137494783897 -"Tfru12230_t",0,0.227815895327651,0.244411202592682,0,0.245654879453781,0 -"Tfru12231_t",15.3938488250064,14.683548750617,14.8614864353808,14.0666164617708,12.7264164665587,15.5556601696995 -"Tfru12232_t",0,0.0221529254326493,0,0.570951667721975,0.52860605149592,0.807688039768432 -"Tfru12233_t",0,0,0,0.0923473366921197,0,0 -"Tfru12234_t",2.46552192698813,1.97902677767237,2.59500937709274,6.611868552076,5.13739117466385,3.94178101060466 -"Tfru12235_t",1.16951800609904,0.938749489795609,0.839277447418027,4.83891473748221,8.9416096261506,11.2662174623755 -"Tfru12236_t",8.85456413272325,11.2678093216041,10.2288287357554,13.8502013297986,16.449404370211,10.5865270137977 -"Tfru12237_t",3.92148975952896,2.90557292712321,4.67584519717706,2.18417201720285,0.652727507345773,1.3242023660979 -"Tfru12238_t",27.6513444255134,26.8836236717121,31.9455565329571,46.727410844997,40.390604351374,30.1869820449074 -"Tfru12239_t",5.33215223385523,5.00110506335001,4.79143755286213,4.90098688022112,3.54915797552333,4.70687936580057 -"Tfru12240_t",4.08561102839866,6.35391688609885,6.81676958963663,5.01847426358179,1.32608834623074,1.68141501044802 -"Tfru12241_t",14.3493394286881,9.10720623863943,15.5180483107902,25.0254863057721,16.8967622348428,10.8036897609423 -"Tfru12242_t",0.107430149324102,0.0862321036022821,0.0925137032831636,0.111123841211361,0.0929844556500244,0.235799462249531 -"Tfru12243_t",3.69317375682651,4.43168683060112,5.26851572764616,6.63703425323843,3.64860764119452,2.75664788741747 -"Tfru12244_t",0,0,0,0.173105266588216,0,0.122440358219876 -"Tfru12245_t",19.5786895018204,23.8588884276195,24.5239715143844,18.3187181373195,10.3986959565393,4.62290174541612 -"Tfru12246_t",5.45142653441606,3.59436990820544,6.79026998072091,52.9649963535941,18.7050677157205,7.05103235551726 -"Tfru12247_t",0,0,0,0,0,0 -"Tfru12248_t",21.3114558721687,25.7833989770823,13.830798640833,36.1013579135411,28.6043431693388,25.987065735417 -"Tfru12249_t",31.6498177028819,44.1458663827094,27.8510527759344,62.7478527481628,58.0812590746429,42.7376715519487 -"Tfru12250_t",0,0,0,0.20303468183945,0,0.430829858596105 -"Tfru12251_t",18.9541625618307,14.9764188580612,21.8482361969806,18.9931668059635,14.6965701794957,15.0954142229294 -"Tfru12252_t",6.09103962911999,5.90389100011903,7.22467478197356,4.27956002432592,6.76407854123898,5.21317880880358 -"Tfru12253_t",113.74059053507,129.714584047417,107.451814064232,80.142633449292,77.0025965301234,69.7043439854096 -"Tfru12254_t",15.370824784218,15.4931208287373,18.9218549260955,14.648215426195,15.3977126840832,13.6425147785001 -"Tfru12255_t",2.68833205602834,3.23680824002304,4.05136009318471,2.7807630017925,6.39881829844594,5.40892526339738 -"Tfru12256_t",1.36176421200601,1.89183773426702,1.08247954065986,1.19187940411488,0.589326668415304,0.651437666489041 -"Tfru12257_t",0,0,0,0,0,0 -"Tfru12258_t",0,0,0,0,0,0 -"Tfru12259_t",0,0.0768911117639505,0.0824922645010649,0,0.373104104255913,0.315385141640479 -"Tfru12260_t",1.82326360271923,4.84080253043462,0.724664934565281,2.17609792555805,2.54923327326327,4.41234987067486 -"Tfru12261_t",0.411143768865159,1.65008576713665,0.767124231302317,0.77967967544872,0.652408064846256,3.60969356239739 -"Tfru12262_t",46.2057072242961,42.4620351903825,47.8159966472258,32.5870664352317,30.9033838352856,25.5464154903382 -"Tfru12263_t",0.423581731620743,0.340000865631855,0.303973596501823,0,0.0611040708557303,0.103302621556937 -"Tfru12264_t",0,0,0,0,0,0 -"Tfru12265_t",0,0,0,0,0,0 -"Tfru12266_t",0,0,0,0,0,0 -"Tfru12267_t",4.04773662290394,4.45946655757102,5.05770711534257,2.54498267231537,2.507373942011,2.00334866699105 -"Tfru12268_t",84.2811397789147,88.7126977809144,84.0889115859391,2.36788528448212,1.98136171157447,4.19612040420334 -"Tfru12269_t",0.0980284443074066,0,0.0844174048628167,0,0,0 -"Tfru12270_t",0,0,0,0,0,0 -"Tfru12271_t",67.5558556584878,52.8744935912103,69.2124496650305,35.8380493612202,34.7823172563388,33.6925473385703 -"Tfru12272_t",6.56758645770273,6.89710767926162,6.40978330395506,4.86859971931367,4.78442884439754,5.84618810074993 -"Tfru12273_t",12.567590056106,14.7681193601887,13.065129298701,15.8689937177858,18.374455269117,22.9458511750763 -"Tfru12274_t",0,0,0,0,0,0 -"Tfru12275_t",3.28252465530821,4.4434660590662,2.92257528080362,5.29449909411271,6.74168093017528,7.06237607938843 -"Tfru12276_t",24.5188656188161,21.5115932294001,20.9835311923643,25.8730494291191,25.8611229114022,29.1472319900651 -"Tfru12277_t",4.87992173534697,3.61311218668871,4.77070329310321,2.26276408563786,2.05715983888426,1.84672187760774 -"Tfru12278_t",0.360250329208608,0.173499584091727,0.372276411496229,0.0745273103149954,0.249447150320134,0.0527144595423479 -"Tfru12279_t",0.185726698831498,0.273311921586894,0.239908416988543,1.12065568679254,1.0716852515596,0.792659209256897 -"Tfru12280_t",11.5099392604593,12.6361442891559,10.4362431877632,14.4568935544486,12.966731208631,14.5921037282629 -"Tfru12281_t",1.60785410088895,3.22648349363563,2.07691050624212,2.07891970878671,1.39165252283864,2.35272956273216 -"Tfru12282_t",0,0.137339114087545,0,0,0,0 -"Tfru12283_t",5.97741288668947,6.7996749075861,12.7566293711714,6.80365726826552,7.9607054039879,5.40973368716699 -"Tfru12284_t",0,0,0,0,0,0 -"Tfru12285_t",1.09021099627069,1.02951916056465,0.773160323316087,4.97512464660027,5.38415488463889,3.56591186778985 -"Tfru12286_t",16.7357446589947,15.1331187997424,16.7627638272554,12.5083668308937,11.8355968887395,9.87398015431333 -"Tfru12287_t",10.5478316478184,15.2397729211206,8.22839014696072,1.41194576381112,1.28887168658763,2.36054882641923 -"Tfru12288_t",6.97994164448966,10.5201104658894,7.04862624189583,9.14177914740113,7.1714191945742,7.20092751104007 -"Tfru12289_t",0,0,0,0.539744371598041,0,0 -"Tfru12290_t",9.919592592547,8.35546344962637,9.91326137163088,14.6942651369752,16.9594972171007,16.7550527515053 -"Tfru12291_t",33.6846718364749,35.8711775889071,34.9016073836502,36.9250678243733,48.553333746098,44.576896423603 -"Tfru12292_t",18.42808264664,23.0579081670978,21.4703415129158,45.4116538710324,60.0475617596438,41.6376211727073 -"Tfru12293_t",0,0,0,0,0,0 -"Tfru12294_t",7.09992094320837,7.32356230394785,6.36310312524275,5.18402280575771,5.08857878021124,6.2757823990986 -"Tfru12295_t",0.46033083162437,0,0.198207441006668,0,0.199216011831011,0.168397424181857 -"Tfru12296_t",84.3448129847096,68.8831106184643,85.6513372958393,29.7504003548825,34.5043401383106,46.4413549165863 -"Tfru12297_t",6.57202947437153,5.87243807527984,4.16455043945376,10.774173994822,9.33742355083949,8.80016354709762 -"Tfru12298_t",0,0,0,0,0,0 -"Tfru12299_t",0,0.162099771675444,0,0.208891451507896,0.174792894995959,0 -"Tfru12300_t",0,0,0,0,0,0 -"Tfru12301_t",0,0,0,0,0,0 -"Tfru12302_t",0,0.10520047584553,0,0.271135238150654,1.92844828925339,10.6437155081559 -"Tfru12303_t",16.4300878835343,19.0953290707844,21.6581972790644,14.7458686007025,16.1071919253822,14.8412472464604 -"Tfru12304_t",0.238279026499243,0.0546462763508789,0.146567495882159,0.492943198371955,0.441939896586218,0.199238443521484 -"Tfru12305_t",0,0,0,0,0,0.316830205290607 -"Tfru12306_t",0,0,0,0,0,0 -"Tfru12307_t",0,0,0,0,0,0 -"Tfru12308_t",10.2383926344041,11.2123730590357,10.1154142306851,6.56769721887838,5.87343759019015,5.74873965310476 -"Tfru12309_t",0.207946477157048,0,0.179073554374836,0.430192296174677,0.359969526328312,0.152141237194004 -"Tfru12310_t",0.743454654646386,0.596756675909071,0.640227568863781,0,0.643485341849581,0.543938577377859 -"Tfru12311_t",1.08400486156706,1.30516461323195,0.933493109257207,1.12127540422302,0.469121576247217,1.98274386536701 -"Tfru12312_t",21.0025941928619,17.0075654246377,16.3258031607926,13.2655314692094,18.6610750905421,22.301481883907 -"Tfru12313_t",1.91658654231439,0.256401159760398,1.92555137555908,0,1.38239247753458,0.467414903622644 -"Tfru12314_t",0.92586842149507,1.09520773809488,1.46873553298155,0.907296513277914,0.801370674041799,0.67739915121878 -"Tfru12315_t",12.4229762323767,10.6572360054569,10.7649355552281,7.54943744895079,7.79556926148337,9.54355827248748 -"Tfru12316_t",0.181056846490188,0.290661659555968,0,0.374563982014158,0.156710871375688,0.132467801349952 -"Tfru12317_t",8.87824325193632,9.08615259145631,10.1303116149907,3.38641465377133,4.75473618726128,5.27771319513151 -"Tfru12318_t",0,0.337167525084923,0,0,0,0 -"Tfru12319_t",33.1730211912914,33.0198274744607,36.6098374769211,29.9779332946584,28.3495886258878,26.8553682634138 -"Tfru12320_t",2.00656446690587,2.19631431658161,2.11353453675093,3.48212895715333,3.01419409925918,4.58622041341705 -"Tfru12321_t",17.0496611934016,14.0467649432567,18.5588809213176,12.7467158728569,19.822193327231,20.9549333232594 -"Tfru12322_t",11.6851914982248,13.2299995201697,12.8167373822247,12.3414170589262,16.608140137127,12.6889801398525 -"Tfru12323_t",16.7812291069517,15.059591691138,15.2590219782429,7.65486093267644,8.93135308624514,8.54105049696564 -"Tfru12324_t",0,0,0,0,0,0.763541115855624 -"Tfru12325_t",10.3397386795628,11.7576367721922,12.4286229995335,6.23889135170249,7.27138443183191,4.25527337259538 -"Tfru12326_t",0.366457477738048,0.44122249738485,0.631151284339663,0.473821394914311,0.0792953591257569,0.603255767107306 -"Tfru12327_t",0,0,0,0,0,0 -"Tfru12328_t",0,0,0,0,0,0 -"Tfru12329_t",2.19550561893099,1.96961813270209,1.66823326596696,2.40457984456745,2.68275520928464,2.12600130068178 -"Tfru12330_t",24.4393817862404,36.781911003788,32.2267273002031,30.0195999226506,33.0517466772893,20.1158373109056 -"Tfru12331_t",0,0,0,0,0,0 -"Tfru12332_t",0,0,0,0,0,0 -"Tfru12333_t",95.0517405756948,80.149537391616,81.2339039291472,65.7948388978012,69.5975367046768,46.5378310114003 -"Tfru12334_t",99.7975616680896,86.8941809614786,97.1083435804427,92.7309809968958,74.1778814522408,65.1777144467593 -"Tfru12335_t",324.888405341994,631.026462896007,285.01717411308,2405.22515410571,1909.11451944718,960.656495389852 -"Tfru12336_t",11.8669366291506,12.7004807655307,10.7058682821763,8.7678205655332,9.45606047188903,11.4385649452676 -"Tfru12337_t",0,0,0,0,0,0 -"Tfru12338_t",46.534917009523,37.9884683537049,42.5889040963267,29.0345577195465,33.0361661575863,49.331415134665 -"Tfru12339_t",0,0.984430730170578,0.528070919467971,2.53719252049337,0.530757987722596,2.24325035861694 -"Tfru12340_t",107.476962461796,78.3584862767196,100.637336736822,10.6803048279344,23.9671330434683,38.1152046968041 -"Tfru12341_t",1.29541985884014,1.77152554584882,0.826335990490393,0.744421848891644,1.2873381918149,2.66781527515974 -"Tfru12342_t",37.298096837697,35.7318412389892,38.8366009942575,29.4454460140479,23.3584494555112,16.8258141360362 -"Tfru12343_t",0,0,0,0,0,0 -"Tfru12344_t",0.734071253342744,0.392816534079522,0.456550634745942,6.07448228695582,6.00065705539526,9.60764527383185 -"Tfru12345_t",0,0,0,0,0,0 -"Tfru12346_t",1.28400139170335,1.58277331644669,0.987250490821969,0.521772533897451,0.714437335005318,1.10717629599916 -"Tfru12347_t",0,0.0611364506047004,0.065589951013086,0,0.065923702917787,0 -"Tfru12348_t",23.9764128396388,25.4367535517608,20.1671686103909,32.2025582767039,34.5069017838041,34.8460654436046 -"Tfru12349_t",7.95001058647706,8.02947521614398,7.02752411214889,13.0157658291546,12.5468216851747,15.3309549681836 -"Tfru12350_t",32.4288760076313,29.5239957198715,32.4243752911038,17.5598699961871,19.779672677263,22.9299705051772 -"Tfru12351_t",7.8759728223232,11.8674096000285,9.63816281802984,26.8700372360683,23.2014569042005,19.207831195743 -"Tfru12352_t",7.54108893853938,10.7256441050637,10.1397932615773,10.6741886905956,10.4204091857749,10.7442860483904 -"Tfru12353_t",2.84974141015765,4.94085382756739,2.8467106690035,4.00890188619766,2.66387217991128,3.66955581053001 -"Tfru12354_t",0,0,0,0,0,0 -"Tfru12355_t",0,0,0,0.0754985611010292,0.12634899099621,0.0534014420733082 -"Tfru12356_t",21709.1808533355,19434.030046381,24575.73541526,17753.4940369658,17003.7020309122,10717.3368209935 -"Tfru12357_t",0,0,0,6.20706027337747,7.04879103085746,2.66557657410312 -"Tfru12358_t",0,0,0,0,0,0 -"Tfru12359_t",2.57442680537894,3.20509467247707,3.1218601636979,5.05415414380079,7.7761522066495,12.1085014667348 -"Tfru12360_t",0,0,0,0,0,0 -"Tfru12361_t",0,1.02344274056132,0.609997605121702,3.51698524764727,7.11197802776139,7.25557198625032 -"Tfru12362_t",1.2793458391591,0.68460411184756,1.10171141067158,4.85221970609204,15.8715497750646,12.7922205730025 -"Tfru12363_t",0,0,0,0.271558886960264,0.227230763494747,0 -"Tfru12364_t",0,0,0,0,0,0 -"Tfru12365_t",0,0,0,0,0,0 -"Tfru12366_t",0,0,0,0,0,0 -"Tfru12367_t",40.4003389955715,47.858745877918,43.4134383608563,34.4997071008655,42.2754908827436,48.1663487925144 -"Tfru12368_t",0,0,0,0,0,0 -"Tfru12369_t",0,0,0,0,0,0 -"Tfru12370_t",0,0,0,0,0,0 -"Tfru12371_t",0,0.170717734220214,0,0,0.184085681818529,0 -"Tfru12372_t",0,0,0,0,0,0 -"Tfru12373_t",0.497102821132825,0.399014822585708,0.642121739355922,2.31387453977977,1.93616745226293,2.7277393414073 -"Tfru12374_t",0,0.0809040252153384,0,0.1563866415608,0.305337078721196,0.147486646254056 -"Tfru12375_t",0,0,0,0.0800911003016448,0.0670173680353171,0 -"Tfru12376_t",0,0,0,0,0,0 -"Tfru12377_t",0,0,0,0,0,0 -"Tfru12378_t",0,0,0,0,0,0 -"Tfru12379_t",0,0,0,0,0,0 -"Tfru12380_t",0,0,0.0635168709108287,0,0,0 -"Tfru12381_t",0.118324474325982,0.284930302888667,0.203790749204039,0.122392737784908,0.512069326185345,0.0865705067977151 -"Tfru12382_t",0,0,0,0,0,0 -"Tfru12383_t",1.66769978702625,2.0079455588184,1.97469696189026,9.37990001609648,10.194372714603,4.65182214566878 -"Tfru12384_t",0.156735777558671,0,0,0,0,0 -"Tfru12385_t",0,0,0,0,0,0 -"Tfru12386_t",0,0,0,0,0,0 -"Tfru12387_t",1.91310758984484,1.3353169310294,0.716294217499346,0.172076918469871,0.503957336859637,2.43425979510407 -"Tfru12388_t",3.30548336660133,3.25567577918914,1.73266683366217,1.28836909685007,0.594315777549462,3.84375683004719 -"Tfru12389_t",9.49458775763066,9.68646672372611,8.50865388407186,6.29451043343118,5.65675848601931,8.05728808750066 -"Tfru12390_t",8.22585738106648,8.62023953526276,9.96967255398908,13.3145100696384,19.3815686578294,17.3863088538802 -"Tfru12391_t",0.437934196897206,0.527281967986847,0.439982634033047,0.377492805505146,0.442221468486736,0.907824515246239 -"Tfru12392_t",31.1674247718692,25.2449209338458,32.9398706765719,50.8497450389001,68.7899943719679,58.2518779467526 -"Tfru12393_t",0.930576481160648,0.746955747880445,0.667806608930159,2.08557225185483,2.23734905594828,1.28603817482883 -"Tfru12394_t",0,0,0,0,0,0 -"Tfru12395_t",0.371727330847113,0.149189170391559,0.320113787466522,0.769016317055616,0.482614010962295,0.271969291267158 -"Tfru12396_t",3.26010417322035,4.02588089653639,4.15717920111374,6.48498834531975,5.31787816656363,5.77955040158477 -"Tfru12397_t",202.852022114428,235.865731593116,194.032835971084,68.9332401596213,84.3970799784535,94.5456931486641 -"Tfru12398_t",0.302631040242966,0.242916084355132,0.521222737517535,0.751286834241654,0.681037446785409,0.752814133320188 -"Tfru12399_t",24.4587172878898,17.5839266246821,28.2056715417337,15.8397892545937,20.0653393182197,18.6729295675072 -"Tfru12400_t",1.45024078273769,0.956208764112605,1.65030301528672,3.26808228943549,3.90018770388025,4.50945876654682 -"Tfru12401_t",5.72537778996688,5.22755946193107,5.2919855841694,6.98176854436057,7.43326441236792,7.51208591244689 -"Tfru12402_t",0.157396490438309,0,0,0.0407020345795244,0.340580067064726,0.172735531127994 -"Tfru12403_t",18.0159867617668,24.050252362709,23.3132410399644,26.0098603657354,32.5211000964959,30.0981428278249 -"Tfru12404_t",3.40879801035978,5.3840887513561,5.39752069390541,11.4879361604133,19.5109137241563,19.9520089488765 -"Tfru12405_t",23.2472790734577,23.9117979679117,23.7356284367057,26.9624001767341,26.1155356354526,22.9921081289226 -"Tfru12406_t",10.753876194959,10.501263316954,8.90681052676928,9.35234193656875,10.5232020925411,11.5012076886699 -"Tfru12407_t",25.7839604930918,20.2414230911016,27.6938912725253,20.0761241219865,22.071655948225,16.5841645400007 -"Tfru12408_t",11.6364182926231,13.1497166219975,10.9638537506323,4.48418803019665,5.17409755877229,6.41026153539626 -"Tfru12409_t",5.32332747306003,5.37227862177761,4.94024882952025,4.38370051912479,4.18255579437886,4.17833842560119 -"Tfru12410_t",31.4415030743902,29.5982338573297,26.9159370055094,25.3544774914738,24.7699612826564,26.8489915201549 -"Tfru12411_t",5.27167918325504,6.5722908761547,6.18174342044829,4.29273327317695,5.82487404419111,7.22152905837282 -"Tfru12412_t",84.7376063516143,69.4094764805446,63.44805878283,11.9068989478574,13.6244677344271,21.9173799793604 -"Tfru12413_t",201.933199212103,205.393795097605,222.678786303432,163.832223912908,98.3971746509364,62.3109092735297 -"Tfru12414_t",0,0,0.116592612356864,0.0700232424071593,0.351557667937078,0.990573083422686 -"Tfru12415_t",19.8504583059106,19.5786333806337,17.5588879803218,16.440321805162,15.9359482196155,16.9740277604554 -"Tfru12416_t",3.53911117614523,4.75015021528483,3.49737577190634,3.54076780787969,3.26408831539416,3.65054913333459 -"Tfru12417_t",520.318814055887,489.111851324492,478.797102039017,145.019499114365,108.69303222128,86.4502075220351 -"Tfru12418_t",0.591622371629912,0.712325757221668,0.509476873010098,0.30598184446227,1.28017331546336,0.432852533988575 -"Tfru12419_t",8.28159164382041,6.90314553728373,8.36604487964638,10.790282977606,13.3021535103655,14.5069193334294 -"Tfru12420_t",450.05558984704,387.742653847661,470.482042476526,228.532673701625,332.406145455173,386.351804622946 -"Tfru12421_t",11.7511447263129,16.1343969059043,16.7771046844724,15.1406574521159,14.1858911001383,12.0667602113134 -"Tfru12422_t",1.24179862836972,0.736741378720269,0.883398845360697,2.62483654234086,1.77578797178414,1.18505899408183 -"Tfru12423_t",35.9819514381926,30.5883940283229,35.6643360814154,26.2243933574374,30.1895342390022,38.0772301267438 -"Tfru12424_t",18.3046912325349,18.3651848497759,16.9498777044578,18.3823977301911,18.7235663129073,19.7007663330891 -"Tfru12425_t",7.20456523614251,5.98949967991594,4.91222148694853,5.72228221221017,7.01527135077198,9.73431168059728 -"Tfru12426_t",0,0,0,0,0,0 -"Tfru12427_t",0,0,0,0,0,0 -"Tfru12428_t",0,0,0,0,0,0 -"Tfru12429_t",0,0,0,0,0,0.117975162814545 -"Tfru12430_t",0,0,0,0.159447419866577,0.133419897831778,0.225559852573863 -"Tfru12431_t",0,0,0,0,0,0.148825810717622 -"Tfru12432_t",0,0,0,0,0,0 -"Tfru12433_t",0,0,0,0,0,0 -"Tfru12434_t",2.80885758202408,3.68937108671215,4.17802007106761,4.75434403918275,4.19927976306402,2.92690761077695 -"Tfru12435_t",0,0,0,0,0,0 -"Tfru12436_t",0,1.04414463733399e-08,0,0,0,1.00131049842834 -"Tfru12437_t",0,0.247917297856561,0,0,0,0 -"Tfru12438_t",10.8466503505157,12.3203724147962,11.719829748683,19.0521216673706,15.2335946683933,10.6309847689959 -"Tfru12439_t",31.841605284737,35.6788299898441,34.8433808143307,28.2121820695013,21.3798745928289,20.3314746133194 -"Tfru12440_t",2.89690954384302,2.98966278400424,2.138297023668,1.28421936690568,0.716392554860287,2.42226836754198 -"Tfru12441_t",2.16203175514754,2.97500757427873,4.52160724796462,3.83377252179197,4.27728495990112,1.3558469079348 -"Tfru12442_t",1.64269485810059,1.37152891559969,1.28781774556945,3.24029587152587,6.03894639253836,7.04558038201901 -"Tfru12443_t",417.00312018408,327.10688119126,443.700943493819,602.335131206058,521.311351604723,322.195878122141 -"Tfru12444_t",108.493400859126,98.4914507562358,118.068208458852,87.792660506651,78.7802564728759,58.7254743026877 -"Tfru12445_t",94.5541892407384,97.7376307533623,97.0955661668192,159.021366032116,195.915236412313,266.514490178342 -"Tfru12446_t",10.5647874053574,12.801765765014,12.8595166229901,14.6057307037395,14.8592982947955,24.2292738856096 -"Tfru12447_t",14.9143636292364,17.2342920197782,16.1319778315033,11.8498423400843,7.35869093444395,4.84973027789601 -"Tfru12448_t",0.69621859202857,0.37256080119881,0.799400176435734,18.7240602721774,25.7109725766432,20.0355719876038 -"Tfru12449_t",25.9116342813139,21.8062081283839,22.9065712725803,33.5450476653759,29.0855377273276,31.162044789084 -"Tfru12450_t",16.2357132636955,16.4871131367369,17.5255464748076,13.278924450012,12.7453479928739,14.4477421524474 -"Tfru12451_t",4.90132187919397,5.59070000652585,3.99863732061559,3.64672732540294,2.53047155253106,0.880768513376958 -"Tfru12452_t",0.371492506254032,0.212992751159143,0.137104957613583,0.219580148647592,0.183736814449322,0.310625697164259 -"Tfru12453_t",15.9482315716825,17.7249283046981,18.9738472367861,14.0601517173819,14.5682526876071,15.6175823741088 -"Tfru12454_t",16.5522303676086,17.5477522349031,22.0533409268758,11.9526290766154,15.1374545792783,14.1666680640722 -"Tfru12455_t",247.488317264753,191.609056446251,244.826316493365,357.463012012588,287.464068911464,198.207499643763 -"Tfru12456_t",1.81780109525436,1.52645750371337,1.69786051121974,0.809975907844198,1.00453546578237,1.14582002339452 -"Tfru12457_t",2.82892085046711,2.95881705686769,2.80524204771682,2.30547953011163,3.33890101461669,3.26141133772616 -"Tfru12458_t",141.738177569705,142.778203359984,166.516396528395,203.896728533294,251.045563065482,194.009825708958 -"Tfru12459_t",0,1.8390955501894,0,1.5799789432974,1.98310480063736,1.6763197759088 -"Tfru12460_t",3.32391715697736,4.02822334081289,4.20940938522695,7.28089614689429,5.5282829660165,5.05453556368971 -"Tfru12461_t",0,0.23772093425494,0.595088145443052,5.82048660182752,2.30701973747898,1.01117607234934 -"Tfru12462_t",2.01624904251474,5.52954741139274,3.76197723030656,4.34494219136423,5.23539679091897,3.56497346992991 -"Tfru12463_t",165.912385013882,138.381883847596,175.696738778054,180.172506313714,110.474508645786,48.0566587445617 -"Tfru12464_t",29.2710684766312,28.4824335822456,27.3054917773165,22.4934208440405,21.8581941957841,24.5899426465107 -"Tfru12465_t",24.1013375831591,33.1640188398869,30.8358789174828,16.3825689079218,19.0724837435907,24.1829743426606 -"Tfru12466_t",0.788089838381308,1.5182027395944,0.678665252977804,4.07593076112967,5.45694891694702,4.38212434034213 -"Tfru12467_t",0.215656985437258,0,0.247617966802398,1.51193082528932,1.03699150482486,0.280502269601267 -"Tfru12468_t",0,0.163277251857106,0,0,0,0 -"Tfru12469_t",0,0,0,0,0,0 -"Tfru12470_t",3.12400396034528,3.25307360885956,3.78088163849906,3.58075637881273,3.36164506396249,2.10031360210738 -"Tfru12471_t",0,0,0,0,0,0 -"Tfru12472_t",0,0,0,0,0,0.0571236615486782 -"Tfru12473_t",0.577322494400942,0.271651560494962,0.428588364735983,1.35908144374426,0.603076907853357,0.087391080321864 -"Tfru12474_t",18.9700850774235,35.67449942834,23.8040742860588,22.4255080844604,18.2957414736415,13.8792070575691 -"Tfru12475_t",14.9475940611989,15.284520362266,17.6543152157122,22.8005654525108,18.1574764343248,13.6628129174754 -"Tfru12476_t",16.4396393138599,15.9288227946124,16.7511487270927,11.5899183337056,10.9565219710327,8.47128696306252 -"Tfru12477_t",17.2322333599669,14.705579286554,13.9692838357846,15.4391530057113,13.8385076941403,16.7976690333654 -"Tfru12478_t",2.05417222199777,1.01467342972265,2.13181733571749,0.326892202485083,0.775006491167037,0.500969139650727 -"Tfru12479_t",11.6789217013134,10.3414119633493,9.28547100415195,7.08720876441246,6.19988292612174,8.34602080503262 -"Tfru12480_t",0,0,0,0,0,0 -"Tfru12481_t",0,2.30395975595637,0,0.7899894716487,2.64413973418314,1.11754651727253 -"Tfru12482_t",0,0,0,0,0,0 -"Tfru12483_t",0.14921914168996,0.479101278983905,0.257000767202252,0.617398535184971,2.71223930849858,3.49357356029145 -"Tfru12484_t",0.420051883857237,0.337167525084923,0.36172857983717,0.434494219136423,0.363569221591595,0.614650598263777 -"Tfru12485_t",0,0,0,0,0,0.203526688166814 -"Tfru12486_t",57.8694950617194,70.7971550585997,46.5067192984764,45.7451839325628,25.8980815380314,7.45760021376794 -"Tfru12487_t",0.473137825660246,0.384871052248742,0.411251304629074,0.485468401269747,0,0 -"Tfru12488_t",34.9155321996455,35.9206768188035,34.3730377328198,50.8676158988983,66.8967367728535,59.4861847295285 -"Tfru12489_t",0,0,0,0,0,0 -"Tfru12490_t",0,0,0,0,0,0 -"Tfru12491_t",0,0,0,0,0,0 -"Tfru12492_t",0,0.376723491714998,0,0.485468401269747,0.40622259395709,0 -"Tfru12493_t",0.267123614535604,0.107207480154189,0.230034073028407,0,0.115602296213544,0 -"Tfru12494_t",0,0,0,0.234703156859648,0.147293405101254,0.0415024036639958 -"Tfru12495_t",357.550187885709,278.467877645439,399.644708085162,430.568066553865,294.57867653054,192.911422708089 -"Tfru12496_t",59.2344351473256,55.6612151580873,56.7729940557998,27.6898010839483,47.5721083167308,56.4645125862656 -"Tfru12497_t",0,0,0.120979458139522,0.145315792353319,0.0607975286942467,0.102784380980565 -"Tfru12498_t",0,0,0,0,0,0 -"Tfru12499_t",0,0,0,0,0,0 -"Tfru12500_t",0,0,0,0,0,0 -"Tfru12501_t",0.140251046363017,0,0.241554978188427,1.16058556029762,2.18505709136852,2.56531969225283 -"Tfru12502_t",0.789468867910556,1.04886851614234,1.03150081094203,0.844771650945735,0.777562171906847,1.27471284150621 -"Tfru12503_t",20.1596807135497,20.9743008915705,19.7801414058118,6.9751580329593,6.5053355702844,8.1713582879549 -"Tfru12504_t",0,0,0,0,0,0 -"Tfru12505_t",152.330099515543,108.890679307582,157.077468909837,218.068409072165,190.697008056603,121.255974054372 -"Tfru12506_t",11.778774475172,11.9572813019808,10.6281077581024,4.52411506523492,3.82309903116935,2.75642278602828 -"Tfru12507_t",0,0,0,0,0,0.0387547665992293 -"Tfru12508_t",0,0,0,0,0,0 -"Tfru12509_t",21.3945196607857,22.4284873986239,23.9034692713475,30.1427383638002,28.8939754590906,28.8096383598938 -"Tfru12510_t",0,0,0,0,0,0.0712225490456289 -"Tfru12511_t",0,0,0,0,0,0 -"Tfru12512_t",0,0,0,0,0,0 -"Tfru12513_t",0,0,0.866415760089029,0,0.870824482854121,1.10416275137206 -"Tfru12514_t",7.65642892959611,5.67292380713741,7.93375653323386,4.91716041686688,3.67756548630457,5.41705084098271 -"Tfru12515_t",55.8600722318801,65.948341298729,55.9190274441518,92.7315926526084,98.3371811730177,84.9938976204289 -"Tfru12516_t",0,0,0,0,0,0 -"Tfru12517_t",0.92319095353239,0.741027527659172,0,0.954932349750381,0.799053234267243,0.337720108936141 -"Tfru12518_t",0,0,0,0,0,0 -"Tfru12519_t",0,0,0,0,0,0 -"Tfru12520_t",0,0,0,0,0,0 -"Tfru12521_t",3.52139303832415,0,0.866415760089029,1.04070471649443,0.43541224142706,0.368054250457352 -"Tfru12522_t",6.69556386298754,3.65053560994202,5.65710861700235,2.61349906247473,3.77530469875089,6.19272031333429 -"Tfru12523_t",0,0,0,0,0,0 -"Tfru12524_t",0,0,0,0,0,0 -"Tfru12525_t",0,0,0,0,0,0 -"Tfru12526_t",17.1454978828854,16.8892335628262,16.3980680182439,17.9470766537742,16.9029741825989,17.7757403036626 -"Tfru12527_t",103.249394352695,82.361532845172,91.6747240503361,4.47761218194024,3.33040508328179,1.05569759243779 -"Tfru12528_t",2.21914202792503,2.18840808734365,1.58341567023063,1.83635292616149,1.09756746140859,1.53082790510978 -"Tfru12529_t",0,0,0,0,0,0 -"Tfru12530_t",0,0,0,0,0,0 -"Tfru12531_t",14.5861088217538,16.6613668489378,15.821851071342,12.7664411632739,10.0755410324215,8.92731252903983 -"Tfru12532_t",18.1452987697095,19.2937377608203,19.2786620390076,21.3286082325032,13.461749579268,11.8102569371862 -"Tfru12533_t",167.697636709159,176.623911217564,185.59458673184,343.584659440187,279.948300625528,332.620535291206 -"Tfru12534_t",0,0.0535611636354127,0,0.138044231655734,0.173265713228719,0.0488205399732944 -"Tfru12535_t",4.28528267163773,3.25071829117751,3.40641263523792,5.01714176805511,6.19534996434109,5.03021229520804 -"Tfru12536_t",21.9157504621167,15.2766979329096,26.3225831551991,33.2084826525321,28.7860299017602,30.3808991361501 -"Tfru12537_t",0.198700039667567,0.0956956078765155,0.34222192983649,1.64425437705364,1.23826792595056,1.54098778183445 -"Tfru12538_t",0,0.481667892977717,0,1.24141205467358,0,0.439036141616305 -"Tfru12539_t",2.96631847364505,3.20003103839654,3.24508167734995,1.15061520830579,2.75923946892665,3.03965084004799 -"Tfru12540_t",0,0,0,0,0,0 -"Tfru12541_t",0,0.0421986889968614,0.0452726633087822,0.326278512492934,0.500533346371408,0.15385496827629 -"Tfru12542_t",16.6030482771501,18.7502139885132,13.9369240859957,17.7698383886218,12.0131974715427,10.9978006048444 -"Tfru12543_t",0.801188879291733,1.12542293795376,0.936354634455888,2.75258599316671,2.40233068762839,4.45914773263571 -"Tfru12544_t",10.4874977572766,11.3422978215165,10.2671975354571,3.76828100696504,5.92412397862783,5.65381627837903 -"Tfru12545_t",5.04377496564037,4.6811251137494,6.51518642858692,5.70630306558154,7.91257592957318,8.4182914959204 -"Tfru12546_t",0.594613384631074,1.09093638045678,0.950954810492053,0.263596088454857,0.0735225928395541,0.186446086429862 -"Tfru12547_t",0,0,0,0,0,0 -"Tfru12548_t",74.7881850356344,66.6222748814419,76.2621757792048,53.7074057338556,48.6581364235368,42.7020415635887 -"Tfru12549_t",0.0709547101110198,0.0569539738319127,0.0611028006481705,1.54128016923393,0.429896039044116,0.571043630143712 -"Tfru12550_t",53.4971738874783,46.7581379127205,54.9417937299852,18.4455093029614,16.4635119211288,15.3662649565944 -"Tfru12551_t",0,0,0,0,0,0 -"Tfru12552_t",0,0,0,0,0,0 -"Tfru12553_t",6.3640705654898,6.22692581577906,5.34042194174865,5.59785198002691,5.166562894611,5.23396141181209 -"Tfru12554_t",0,0,0,0,0,0 -"Tfru12555_t",0,0,0,0.242058060800236,0,0.342423731623274 -"Tfru12556_t",1.37047922955053,1.54008004932754,1.82929624387476,0.992319586934735,0.830337537077053,1.30350045308795 -"Tfru12557_t",0,0,0.0193282703626593,0.0232163622301054,0.0194266215117069,0 -"Tfru12558_t",14.4793468044146,17.7966341786297,14.2873047691521,23.0898184675729,29.5032833320289,32.0015571806994 -"Tfru12559_t",11.534498645107,9.97071280406776,9.17941092965952,8.16337109883886,9.5793113415462,10.6940320876355 -"Tfru12560_t",0,0,0,0,0,0 -"Tfru12561_t",19.9886758525168,18.602346211582,22.7015867346086,27.8675602618534,35.103235188154,40.6941085747053 -"Tfru12562_t",15.6298375388739,14.7412778409222,14.2167744168562,14.5505040827081,11.1607295930443,15.2233229569982 -"Tfru12563_t",3.90409668301047,3.24980747069805,3.98461774691546,1.79481260916939,1.62698791073692,6.03013495714893 -"Tfru12564_t",9.10885991237379,12.5739270404598,8.19385180846627,12.9628109576612,10.9472500423989,10.9516474000038 -"Tfru12565_t",0,0,0,0,0,0 -"Tfru12566_t",0,0,0,0,0,0 -"Tfru12567_t",82.3512849501083,83.172025038902,79.6192529408204,58.1925830297615,69.1891157786519,70.6241261918882 -"Tfru12568_t",0,0,0,0,0,0 -"Tfru12569_t",0.975833309911216,0.213622507973552,0.53476242003383,0.183524485379693,0.153566725065088,0.843765340805607 -"Tfru12570_t",0,0.481667892977717,0,0.620706027336788,1.55815380681871,0.87807228323261 -"Tfru12571_t",0.0636924767031444,0.766870792460022,0,1.71294157658029,2.92178449497415,4.24057653085699 -"Tfru12572_t",10.9292496426805,14.1631499565454,13.3805556178013,18.1152762210484,14.3604143951539,13.3912904637406 -"Tfru12573_t",8.79531020350894,10.5897381524868,9.79409512194502,12.5485695057451,14.0440096427078,8.9867686749758 -"Tfru12574_t",0,0,0,0,0,0 -"Tfru12575_t",0,0,0,0,0,0 -"Tfru12576_t",0,0,0,0,0.289696590909638,0 -"Tfru12577_t",0,0,0,0,0.0679568638488963,0 -"Tfru12578_t",44.176700547829,52.0185761641521,43.3022419481975,59.7341810153629,50.9819199259297,39.9175348145458 -"Tfru12579_t",1.30047022866018,1.46140722947025,0.895922179163268,1.07614667278371,2.4763228715217,1.71264872581238 -"Tfru12580_t",24.9371171155352,30.1582562015274,27.964768837016,33.8194708826504,34.6302081779857,25.218513992089 -"Tfru12581_t",16.8249664651264,17.2717969253312,18.82565633485,15.5091941980576,17.6336025731073,11.3048815756962 -"Tfru12582_t",17.7503835146618,21.4694227261022,18.4266946603015,17.0402219082447,16.5737054705286,17.7457010642002 -"Tfru12583_t",16.6205539460055,15.4354883192152,16.022548843564,19.363010440921,22.437695377091,23.4903604738216 -"Tfru12584_t",3.90409668301047,4.64258210099722,4.98077218364433,8.22622445869304,6.75825747536872,6.45330232256289 -"Tfru12585_t",7.67919348916338,10.1088618124182,9.45652411640132,20.5729438311396,24.7918317465567,28.9908326054944 -"Tfru12586_t",3.38090540665581,2.91937735134506,2.95558717671834,2.01350979599806,1.99519694775875,2.32367909099721 -"Tfru12587_t",23.8609354143756,28.7290672261709,32.748208707152,25.7097171086641,33.5602358392242,23.6404076255299 -"Tfru12588_t",19.6050457507876,16.6213793996879,19.1204235265383,16.4513275099452,19.0814211894371,19.8738946955017 -"Tfru12589_t",0,0,0,0,0,0 -"Tfru12590_t",0.624612466702212,2.00545739827463,0.26894318203507,1.61522014548856,2.97342857807253,1.37096787716828 -"Tfru12591_t",0,0,0,0,0,0 -"Tfru12592_t",0,0,0,0,0,0 -"Tfru12593_t",0,0,0,0,0,0 -"Tfru12594_t",21.1741439703998,22.5827490546961,19.8380901427619,29.3042775566922,35.6357230031435,61.3216174463862 -"Tfru12595_t",3.78735305117181,3.04003506224111,2.5202401054229,13.177283695121,11.6222947885838,8.0609914526397 -"Tfru12596_t",0,0,0,0,0,0 -"Tfru12597_t",0,0,0,0,0,0 -"Tfru12598_t",0,0,0,0,0,0 -"Tfru12599_t",11.9723702494179,9.73267082719365,10.3977772494129,2.47680149174189,2.68983899540174,2.42281921692817 -"Tfru12600_t",0,0,0,0,0,0 -"Tfru12601_t",0,0,0,0,0,0 -"Tfru12602_t",0,0,0.516755114052301,0,0,0.439036141616305 -"Tfru12603_t",116.242929491921,105.966936455262,134.651618290408,63.1346702092109,86.9598219806836,69.2422714778786 -"Tfru12604_t",0.116357862564332,0.233495515986789,0.350706379343516,0.932778448284565,0.402846782926975,0.297960816332856 -"Tfru12605_t",5.38627415647195,5.0388504671363,4.83862030224996,4.16857922418709,4.46076627967548,5.35834700515931 -"Tfru12606_t",0.163635326785055,0.157616295326026,0.225463859656981,2.70818367985305,2.03950011333034,1.05354991521645 -"Tfru12607_t",2.33996058609276,2.26303854567504,2.80025919491784,2.60211670638132,2.3563637390699,1.77967327185857 -"Tfru12608_t",0,0,0,0,0,0 -"Tfru12609_t",0,0.119669041733779,0.0641931818699502,0.539744371598041,1.16135687464928,0.436309209060356 -"Tfru12610_t",3.87144593416809,5.28280914879603,3.66729435779619,3.60409951357402,3.85349866203073,4.6736105397937 -"Tfru12611_t",84.0103767714475,153.276770606091,89.6554271498261,597.096350224287,692.119812637252,763.599669622177 -"Tfru12612_t",2.36648948651965,2.13697727166501,2.03790749204039,2.44785475569816,2.56034663092673,2.59711520393145 -"Tfru12613_t",2.80619402869535,3.37434009335826,3.57058965358532,3.80914177739052,3.32072438904881,3.41325292286349 -"Tfru12614_t",212.684498155563,117.368442276397,214.747726510927,5.49992682451168,2.76128522727794,5.05725175786651 -"Tfru12615_t",0.790685899025388,0.476001211884597,2.04270256849225,35.5774090022295,21.7286075962977,12.8715066459944 -"Tfru12616_t",0,0,0,0,0,0 -"Tfru12617_t",0,0,0,0,0,0 -"Tfru12618_t",0.98910811998286,1.05004698279391,0.769342972688245,2.37626918175636,2.0159934049515,3.03473519841591 -"Tfru12619_t",2.26181783615435,1.55615780808426,2.782527537209,4.0107158689516,4.19502947990302,4.72808152510598 -"Tfru12620_t",26.9899209172055,26.4020046255556,28.8489516727706,23.3666680336088,19.1808501405998,21.9583500933919 -"Tfru12621_t",8.33301308056867,9.24821855243058,10.3246416512229,9.0592924232898,9.34682006925761,9.70500944627016 -"Tfru12622_t",8.4698986417115,8.67791826857917,9.96236088731877,14.2457121028335,12.933528046783,7.85946666632371 -"Tfru12623_t",9.00111179692688,11.5600294314652,18.6031841058828,209.798637239834,125.691073750043,17.1224095230359 -"Tfru12624_t",15.0323136101194,13.6920822369512,11.6597790962742,6.28583007380105,4.706099061211,3.74406455795194 -"Tfru12625_t",3.0735503696871,5.09863086713786,4.58777711012995,2.75532919452366,1.24145587860545,2.39863648102937 -"Tfru12626_t",0.611302117879555,0.841166382748248,1.05284825732232,0.632320069429306,0.529102817285066,0.255571974330053 -"Tfru12627_t",0,0,0,0,0,0 -"Tfru12628_t",0,0.174698199525867,0.749696538522631,1.12563269206327,2.07215618523707,1.59235906285953 -"Tfru12629_t",19.3402755685172,17.5560109485761,16.8583829895989,7.68089419124251,4.41132603136447,4.17340100870142 -"Tfru12630_t",0,0,0.0810142396051892,0,0,0 -"Tfru12631_t",6.92869086774825,7.64709850708073,15.6624745908878,15.6776264636854,16.4917997422992,13.6236988274961 -"Tfru12632_t",0,0.143781460590585,0,0,0,0.131055564661786 -"Tfru12633_t",249.837647892111,214.449109949575,265.015768935535,387.981783145318,322.181184877774,216.652299649112 -"Tfru12634_t",0,0,0.298025606456988,0,0.0748855245296798,0 -"Tfru12635_t",0.138745461224521,0.0556841494772788,0,0.215273766706733,0.180133388071806,0 -"Tfru12636_t",4.92387102527517,6.76372316182443,4.06534838971079,7.03591847302486,10.7642851105669,8.72766710525605 -"Tfru12637_t",37.0519754200083,35.626718835563,34.4164880006925,32.1475491615388,20.0908772162754,19.8606754005463 -"Tfru12638_t",49.9560408113706,46.1601866667691,51.8362995133991,53.4762115860213,45.3754499549061,25.6591390632156 -"Tfru12639_t",0.349073587692995,0.186796412789431,0.601210936017456,1.08322658510466,1.00711695731744,0.595921632665712 -"Tfru12640_t",0,0,0,0,0,0 -"Tfru12641_t",0,0,0.0754387027814743,0,0,0 -"Tfru12642_t",0,0,0,0,0.460214204546323,0 -"Tfru12643_t",0,0.107721254020742,0.115568236369703,0.277632088905063,0.464625203311943,0.0981869965277599 -"Tfru12644_t",0,0,0,0,0,0 -"Tfru12645_t",0,0,0,0,0,0 -"Tfru12646_t",0,0,0,0,0,0 -"Tfru12647_t",39.6972110018927,31.9077735439126,37.7394911349187,12.9758454583728,9.6356419426344,8.78072283233967 -"Tfru12648_t",26.4430252187237,21.6315309768339,21.082674758582,6.73989526672464,6.3515104976845,5.27636808750532 -"Tfru12649_t",25.4753688820824,27.4729094513641,28.8043128388857,29.1674360068432,28.6142442919311,23.3339578970508 -"Tfru12650_t",0,0,0,0.342346068919046,0.190975296962099,0.0807157712756109 -"Tfru12651_t",29.1059573066432,25.4866790615375,32.4701244893207,23.2642574025801,18.6078735460265,28.5546340925692 -"Tfru12652_t",24.4537246940363,36.2494663119471,30.6535251927742,38.8596942467083,32.3457124373743,31.2014534916765 -"Tfru12653_t",0,0,0,0,0,0 -"Tfru12654_t",0,0,0,0,0,0 -"Tfru12655_t",0,0,0,0,0,0 -"Tfru12656_t",0,0,0,0,0,0 -"Tfru12657_t",0,0,0,0,0,0 -"Tfru12658_t",6.57666372779575,5.42808399517523,6.07947193003646,5.11169669572262,6.88224798059278,7.33992311062449 -"Tfru12659_t",0,0,0,0,0,0 -"Tfru12660_t",1.12488072431905,1.52462978059807,1.56285095481088,0.335976159929202,0,0 -"Tfru12661_t",0,0,0,0,0,0 -"Tfru12662_t",0,0,0,0,0,0 -"Tfru12663_t",6.68117414036652,6.78140943218521,5.56791041309137,10.2102797518975,10.2597779310096,10.6278733512003 -"Tfru12664_t",0,0,0,0,0.152760177139326,0 -"Tfru12665_t",0,0,0,0,0,0 -"Tfru12666_t",3.86447733148658,14.1610360535668,3.61728579837169,85.8560577013572,91.3285884638087,91.9517295002611 -"Tfru12667_t",0,0,0,0,0,0 -"Tfru12668_t",9.08484306947048,8.93885996736772,11.3565949483763,8.38674888100538,9.21605701243811,13.4365479620454 -"Tfru12669_t",0,0,0,0,0,0 -"Tfru12670_t",0,0,0,0,0,0 -"Tfru12671_t",0,0,0,0,0,0 -"Tfru12672_t",20.0551087405523,10.3305087573012,15.7746297974104,19.8462585056674,26.7209709853973,44.8856686889995 -"Tfru12673_t",15.0829440921711,17.8347300913647,16.7596253206411,11.4075702321532,15.5815380682112,12.2218169152836 -"Tfru12674_t",0,0,0,0,0,0 -"Tfru12675_t",0,0,0,0,0,0 -"Tfru12676_t",0,0,0,0,0,0 -"Tfru12677_t",0,0,0,0,0,0 -"Tfru12678_t",227.558788598047,316.773777950656,186.181675650513,111.392246875029,95.7832062547783,86.0635176867655 -"Tfru12679_t",0,0,0,0,0,0 -"Tfru12680_t",53.3511276255651,60.4715825302371,58.7971785233526,52.6817720681617,46.1772192609733,33.0568388982199 -"Tfru12681_t",4.97250051996615,6.55159645899613,5.64899967058517,3.91250718653651,3.44615375916204,2.47608060911948 -"Tfru12682_t",0,0.215442508041484,0.115568236369703,0.138816044452531,0.464625203311943,0.39274798611104 -"Tfru12683_t",0,0,0,0,0,0 -"Tfru12684_t",0.145346672614961,0.116666963697205,0.125165598559574,0,0.125802498820621,0.106340933955671 -"Tfru12685_t",1.55052708806363,1.13143464793598,1.45662515370672,0.437410287721231,1.22003094493824,1.13442224511771 -"Tfru12686_t",0,0,0.191898450842,0.230500912008713,0.192874918616231,0.326074587938343 -"Tfru12687_t",0,0,0,1.39038150089625,1.74513226321253,2.95032287094403 -"Tfru12688_t",0,0,0,0,0,0 -"Tfru12689_t",0,0,0,0,0,0 -"Tfru12690_t",0,0,0,0.447932184676725,0.1874068152534,0.158415102645303 -"Tfru12691_t",0,0,0,0,0,0 -"Tfru12692_t",0,0,0,0,0,0 -"Tfru12693_t",27.6363098795226,38.9812275723928,28.9727777891034,31.6937380347427,39.5202777224714,41.5383658183029 -"Tfru12694_t",0.339337932717907,0.272379997183435,0.250475646742414,0.0501435913602335,0.167833454860517,0.141869728393255 -"Tfru12695_t",3.93997228428876,4.13170492161555,3.7759866881641,4.92996466493672,4.67524717629132,5.20732730752973 -"Tfru12696_t",0,0,0,0,0,0 -"Tfru12697_t",0,0.148531949376618,0.159351797285097,0.0957035724970095,0.160162652683522,0.0676927971656142 -"Tfru12698_t",0,0,0,0,0,0 -"Tfru12699_t",0,0.103743853872284,0,0,0,0 -"Tfru12700_t",0,0,0,0,0.0951751888983234,0 -"Tfru12701_t",0,0,0,0,0,0 -"Tfru12702_t",87.4498986912926,78.4951525276572,88.3211106605581,71.2697381757754,95.8813467667425,80.6591153359062 -"Tfru12703_t",56.6652270085893,58.8976183059739,54.2265809556987,48.2422152892882,54.0422965910111,59.797833972136 -"Tfru12704_t",6.59900240500795,7.13043104409203,8.0869833558763,11.026439398024,7.79861472296171,8.72766710525605 -"Tfru12705_t",0,0,0,0.380024098370049,0.741978003248154,0.268797637724684 -"Tfru12706_t",8.56983750682462,10.109814507956,11.5171696207816,12.2222485135748,13.8234974515506,12.2550119282886 -"Tfru12707_t",6.67951356297574,4.97460282912181,5.09977997803223,2.35054249696754,1.96684988729879,2.7205846152659 -"Tfru12708_t",0,0,0.320113787466522,0,0,28.2848062917844 -"Tfru12709_t",31.9166060223403,31.2137621475999,32.3818160989606,29.5987328320009,34.2929920802553,89.6477291790837 -"Tfru12710_t",0,0,0,0.45676133417758,0.382201547008247,0.484612823861059 -"Tfru12711_t",0,0,0,0,0,0 -"Tfru12712_t",0,0,0,0,0,0 -"Tfru12713_t",127.187024594223,130.568459913365,144.979661878961,291.16305840138,313.741407955138,309.529225579846 -"Tfru12714_t",130.040853282898,119.983473521507,137.646297448576,164.620926526235,172.198673275421,182.303950124815 -"Tfru12715_t",1.838301461082,2.21335355635617,1.66221010428459,1.90150642948106,2.86400262085283,2.689936972708 -"Tfru12716_t",0,0,0,0,0,0 -"Tfru12717_t",17.1462290557673,20.1264594344767,16.6707392317057,14.1758903975746,15.2129915691582,15.827140496624 -"Tfru12718_t",0,0,0,0,0,0 -"Tfru12719_t",0.0878769631500496,0.0705371391391052,0,0.0908983722042726,0.0760605066091204,0.0642939956342863 -"Tfru12720_t",37.1584358796787,38.9039452021065,41.1814075506932,29.0776900498991,25.1701768794181,24.8224280068064 -"Tfru12721_t",0,0,0,0,0,0 -"Tfru12722_t",7.76974582857318,6.23662474145523,4.60001662220678,4.01844364519236,2.9421786718395,6.39520853684855 -"Tfru12723_t",0,0,0,0,0,0.591010121455652 -"Tfru12724_t",0,0,0,0,0,0 -"Tfru12725_t",112.684577226373,75.9131673245096,98.7713966501493,59.8405211984296,82.7283258711415,75.0830670932998 -"Tfru12726_t",42.4795255193141,38.7509978642145,39.4860557664162,26.1677823319301,30.1073633940342,31.3109338638762 -"Tfru12727_t",1.47151933835338,2.41600933579961,1.8432029545843,3.5977228336137,3.24201853648556,2.83835467351107 -"Tfru12728_t",0,0,0,0,0,0 -"Tfru12729_t",7.71826783059234,8.38315658258048,9.17974873341998,11.640481167998,12.8469689608338,12.3009098206981 -"Tfru12730_t",0,0,0,0,0,0 -"Tfru12731_t",0,0,0,0,0,0 -"Tfru12732_t",0,0,0,0,0,0 -"Tfru12733_t",5.28392910946695,5.49068519640976,4.19753300834941,2.88109282313767,2.65896554065038,4.22553556095527 -"Tfru12734_t",5.01318203095949,5.37943161881724,4.63521547027529,3.76634436186095,4.20205632995311,3.39756612105605 -"Tfru12735_t",0,0,0,0,0,0 -"Tfru12736_t",0.871476937463148,0.69951768689818,1.95123300327104,9.19469094438074,8.44808149756404,4.59075135632697 -"Tfru12737_t",1.45682734285747,0.877025354267141,1.77727914948898,7.28342910691114,5.56912391455334,4.44111703947816 -"Tfru12738_t",0,0,0,0,0,0 -"Tfru12739_t",0,0,0,0,0,0 -"Tfru12740_t",0,0,0,0,0.126458859684033,0 -"Tfru12741_t",5.88920325747799,6.05218393407881,6.64673864172388,7.56846011028926,8.03211875635176,7.11597612434962 -"Tfru12742_t",3.81865348961125,2.77780063280192,1.95251222071199,2.09840958105659,2.3755943456269,3.92887456276562 -"Tfru12743_t",0.730525015403891,0.586378304495518,0,0.755642120237258,1.26458859684033,0.267239390549468 -"Tfru12744_t",2.71836350107919,3.37687043613559,2.56386974923109,3.61520613765283,2.24079643507917,3.45681769439566 -"Tfru12745_t",0,0,0,0,0,0 -"Tfru12746_t",0,0,0,0,0,0 -"Tfru12747_t",0,0,0,0,0,0 -"Tfru12748_t",0,0,0,0,0,0 -"Tfru12749_t",0,0,0,0,0,0 -"Tfru12750_t",1.60715503388856,1.29003226989014,2.13891681990674,0.151128424047452,1.1381297371563,3.63445571147277 -"Tfru12751_t",37.6410129690252,38.3144914869231,36.172857983717,13.8953508392655,20.1851743156373,29.5351586178698 -"Tfru12752_t",0,0,0,0,0,0 -"Tfru12753_t",9.79214382349896,14.2227929175509,7.22787911608035,17.9264034907349,28.9913662360736,38.3801252384875 -"Tfru12754_t",14.9757628157798,21.6959972663342,15.412782966975,28.9977663641048,65.1263127372771,70.8852483432465 -"Tfru12755_t",34.7172219465603,32.3340465696582,27.1581709783111,33.717847920366,52.5282976305838,51.7702554373592 -"Tfru12756_t",0,0,0,0,0,0 -"Tfru12757_t",22.5918475369084,21.3918860502076,21.1394350498555,9.96453564259317,7.44914819559031,7.15542023589962 -"Tfru12758_t",0,0,0,0,0,0 -"Tfru12759_t",4.34536429870177,6.39455648512207,1.87100988836269,15.7316871828217,35.1032350503157,87.9586197509849 -"Tfru12760_t",1.45292807263776,1.62440191208301,1.42993385482266,2.57637091025921,2.91933284786333,3.26497538299474 -"Tfru12761_t",6.37822817136803,5.26595700783394,5.96342127280366,12.0640477330721,8.51745681819789,8.13312071455323 -"Tfru12762_t",0,0,0,0,0,0 -"Tfru12763_t",0,0,0.0911155112939974,0.109444387691794,0,0 -"Tfru12764_t",0.372946281181726,0.128071068646635,0.198207441006668,0.412502555134166,0.398432023662022,0 -"Tfru12765_t",2.74176125028155,3.92186493613425,3.20863844876485,1.67253004855862,2.00799737448078,2.8289358079086 -"Tfru12766_t",0,0,0,0,0,0 -"Tfru12767_t",0,0,0,0,0,0 -"Tfru12768_t",2.38838165009079,6.27745579559022,4.68162266133726,24.7946728676474,41.0449704866395,54.5431825792454 -"Tfru12769_t",5.98877561232153,15.3863436132851,6.9820690246769,148.616653736566,200.239601524536,171.849519236891 -"Tfru12770_t",16.7066090170492,13.4100720204231,8.63215929156882,7.40615146255267,7.02349632620128,8.03236577276527 -"Tfru12771_t",11.6484976195704,13.8833686799674,16.4145742110985,8.03266623613555,10.8459725768921,11.2341600943169 -"Tfru12772_t",2.93742576123788,1.41468891643949,1.51774229302229,0,1.01697684361232,1.28947677957368 -"Tfru12773_t",14.559387147689,13.2834568547989,15.3413412761943,13.563328692095,13.5408988881262,11.9754314624051 -"Tfru12774_t",9.78955638953846,8.09843520418007,7.09693408717396,4.39143978913151,4.97151729881492,7.12585414158362 -"Tfru12775_t",0,0,0,0,0,0 -"Tfru12776_t",0,0,0,0,0,0 -"Tfru12777_t",6.32764088425397,6.74015611491414,6.44291549117839,7.12150638660362,7.37127554908587,7.1335573933977 -"Tfru12778_t",0,0,0,0,0,0 -"Tfru12779_t",0,0,0,0,0,0 -"Tfru12780_t",0,0,0,0,0,0 -"Tfru12781_t",0,0,0,0,0,0 -"Tfru12782_t",93.8797906615029,95.8753730356096,88.2659193665712,54.4300494574339,59.8795382724496,69.8482599631559 -"Tfru12783_t",0.420051883857237,0.337167525084923,0.180864289918585,0.260696531481854,0.290855377273276,0.645383128176966 -"Tfru12784_t",0.561942319541455,0.225530117113661,0.241958916279043,0.581263169413275,0.729570344330961,0.822275047844518 -"Tfru12785_t",0,0,0,0,0,0 -"Tfru12786_t",3.94209275778429,3.16424163270522,3.31930292238487,3.71517476216754,3.03290278699975,4.35831498247517 -"Tfru12787_t",11.198967395331,10.7346692628418,10.8924309200321,14.7330654116147,13.4887631824319,14.1067350421195 -"Tfru12788_t",0.407817362968192,0.65469422346587,0.351192795958417,0,0,0 -"Tfru12789_t",0,0.0836643982841,0.448794764065967,0.107814942713753,0,0 -"Tfru12790_t",0,0,0,0,0,0 -"Tfru12791_t",0,0,0,0,0,0 -"Tfru12792_t",0.558002502540979,0.547430668034561,1.38818347981792,36.2987052444599,41.5354357951136,38.1038009255773 -"Tfru12793_t",0,0,0,0.134796551955457,0.150390577700763,0.0317813132504538 -"Tfru12794_t",0,0,0,0,0,0 -"Tfru12795_t",32.7386462670366,28.6195950743977,30.2993256123407,27.7336735618993,32.1634585730527,33.9331181348311 -"Tfru12796_t",0.802646911829116,0.21475638540441,1.15200184661519,0.276747910277977,0.926291010424447,1.17449158903906 -"Tfru12797_t",6.93713774380613,7.71670798633894,6.2091251675561,4.7461007031807,5.48426914234396,5.79482033473652 -"Tfru12798_t",5.66870112005596,5.39460846909307,6.14562377488597,3.41776189719944,3.1213357912982,4.91069685130845 -"Tfru12799_t",31.6402717710646,25.8349142597538,25.1330896380371,33.5745532969054,25.0248944731877,14.5680174263817 -"Tfru12800_t",0.200502092533287,0.160939152785166,0.172662806604854,0,0,0 -"Tfru12801_t",0,0,0,0,0,0 -"Tfru12802_t",0,0,0,0,0,0 -"Tfru12803_t",0.131677706538319,0.845561191435543,0.113394539133909,5.85681862785774,15.8420444517968,32.5629940772973 -"Tfru12804_t",3.55262654154495,3.69227697966378,3.23619311220738,3.14373720030265,2.38172943990583,2.91474495387858 -"Tfru12805_t",10.2174782559869,11.3907947663825,13.9314385477829,10.8623554784106,12.7740537315966,13.0820904360196 -"Tfru12806_t",0.724227383116962,1.74396995048784,1.24733992557512,2.99651184434699,3.13421741520676,1.58961360995756 -"Tfru12807_t",12.1726166895152,11.6318143428561,11.3144174006106,12.5511669557348,11.4388844327806,11.9028473720814 -"Tfru12808_t",0,0,0,0,0,0 -"Tfru12809_t",0.0648478400397124,0,0,0.0335387278376243,0.0841920235256492,0.0237225240549509 -"Tfru12810_t",0,0,0,0,0,0 -"Tfru12811_t",5.89294345188938,6.3453255362432,4.33207880044514,1.93273733063251,1.80385071448353,2.62895893183823 -"Tfru12812_t",0.106612153263258,0,0.0918092842226318,0.220555441186002,0.0922764521806079,0 -"Tfru12813_t",7.42417283096512,8.54680470564107,7.23457159674339,4.14285185688217,4.81940596063277,3.57354998990568 -"Tfru12814_t",33.6216164833755,33.6466553099299,35.5712304081042,25.1121399001924,26.8330714480283,22.0430827859671 -"Tfru12815_t",6.81776519183669,7.18426188065567,5.70418145127844,3.6430669142977,2.60091827753987,5.10632804711445 -"Tfru12816_t",0,0,0,0,0,0 -"Tfru12817_t",12.9860107822983,10.5150550195976,11.5262666117607,6.24493386148622,6.06359515332423,7.75084822217373 -"Tfru12818_t",11.3912375283319,13.3887346522827,14.5392116835279,6.52267350761701,9.50737916026448,8.48307121090443 -"Tfru12819_t",0.0705969552701239,0,0,0,0,0.0516513107784687 -"Tfru12820_t",2.41622765050623,2.98378340783118,4.4815930245313,1.73028671337514,2.25219871782404,4.62347795154169 -"Tfru12821_t",13.5970552000031,14.4221947146152,15.0545998544949,0.502305455649044,0,1.42115745263301 -"Tfru12822_t",0,0,0,10.7662283367164,11.5827361532925,7.61514008329003 -"Tfru12823_t",2.7585496850326,9.66211415168734,3.88723249974272,43.5791216805487,66.2021567674248,49.5390034421552 -"Tfru12824_t",0,0,0,0.154349633796243,0.645771263928233,0.218348347518216 -"Tfru12825_t",9.43161404060609,11.8544113419781,9.62760623224887,3.56922962050731,8.16338339827788,10.9061770995325 -"Tfru12826_t",1.37248250959372,2.66718936438632,1.80397744028855,4.03485603325311,4.31406299051076,3.75238112439623 -"Tfru12827_t",1.9135354003783,2.18006922905755,1.91362657959414,5.29948863898944,2.99189954579417,2.25808449031513 -"Tfru12828_t",0.355976172760371,0.57147038149987,1.22619857571922,3.68215439946122,5.54597117682095,9.89691641272184 -"Tfru12829_t",0,0,0,0,0,0 -"Tfru12830_t",5.33512130216643,7.30862713139206,5.26818930838215,8.82968777245907,10.220574222558,9.78444644145555 -"Tfru12831_t",0,0,0.165550837454082,0.19885318953612,0,1.12521848652408 -"Tfru12832_t",0,0.0991669191426244,0,0,0.106932123997528,0 -"Tfru12833_t",0,0,0,0,0,0 -"Tfru12834_t",0,0,0,0,0,0 -"Tfru12835_t",2.0065569936398,1.33712222656481,1.76055370087491,7.20567249401549,4.52208675796666,61.9082508841614 -"Tfru12836_t",18.1746392564709,15.6521713053508,15.1212735909397,13.5611153465678,10.937800807319,10.9771402619503 -"Tfru12837_t",0,0.373592825578862,0.50100911334788,0,0,0 -"Tfru12838_t",183.964328695782,172.275377779851,196.442382042085,61.5269186219643,38.2145751160269,27.8163044468501 -"Tfru12839_t",0,0,0.0791528621087898,0.0950753214740532,0,0 -"Tfru12840_t",7.02157734850115,7.0326362480731,6.63525797334453,5.6561377639061,2.85046874916487,3.72791043325664 -"Tfru12841_t",9.80296742753402,10.4915365396563,9.25879928315967,6.54194558298253,6.84258258955323,11.1824763799558 -"Tfru12842_t",1.89943386011751,2.73164457440446,2.99878615409052,3.7248209082821,3.45930206130486,3.73480580197962 -"Tfru12843_t",220.73660381501,349.550382774296,247.174870083908,134.770714770962,110.32971551342,50.0491987673338 -"Tfru12844_t",4.02789477671323,2.42483494067924,1.73431510880835,1.78559268138256,0.747060044366291,1.89447102204589 -"Tfru12845_t",64.1499488311212,58.1287049343836,73.4541601093045,123.047775320091,93.6150029918754,61.1133365328711 -"Tfru12846_t",0.118994867948226,0.286544638882371,0.15370902825942,11.3239286573799,12.050311310543,9.53317854247643 -"Tfru12847_t",10.7750535379437,12.0241182042798,12.5228246617247,11.7798224166288,12.662369135724,11.280344660524 -"Tfru12848_t",3.65262507701945,3.81145897922087,4.16774233290652,3.11702374597869,3.00339791749579,4.14221055351676 -"Tfru12849_t",0,0,0,0,0,0 -"Tfru12850_t",0.115876381753721,0.0930117310579098,0,0.239720948489061,0,0.0847793928639692 -"Tfru12851_t",2.56800278340669,2.76801286969282,2.46417722509163,4.70543957842065,4.82642110759148,6.92488446952203 -"Tfru12852_t",14.1383317005607,14.4735327841333,11.2929898095507,39.8462991208037,41.3227456735813,49.7717069813595 -"Tfru12853_t",5.48579750082263,4.89043910987088,5.60203752651612,2.30993748399601,2.58416724968311,2.73493765191048 -"Tfru12854_t",50.6315682302353,43.0150019429382,46.8761428690917,35.619056690312,58.6342986037074,74.1908517602547 -"Tfru12855_t",1.27835836304551,1.1599544362829,1.22051985257662,1.20732763504663,0.769713204825078,0.792966368914565 -"Tfru12856_t",3.63598441607631,5.83706877140185,4.94389858547384,2.67228790812834,3.64397397494993,4.41036306271275 -"Tfru12857_t",0.322868473372204,0.362824392866174,0.500469979790089,0.33396942285659,0.16767220058029,0.283466840090904 -"Tfru12858_t",4.87409115837568,5.32512771286421,5.71303800548632,4.69155724127967,6.67959569080449,7.23118350898561 -"Tfru12859_t",0.235984204414178,0.757679831651512,0.203218303279309,0.244097875919339,0,0.345309324867291 -"Tfru12860_t",7.54236808030951,10.012571532218,10.492127315719,31.3267931476813,30.5819966780776,29.798668506987 -"Tfru12861_t",0,0,0,0,0,0.491720478490671 -"Tfru12862_t",0,0,0,1.35779443467521,1.70423072605231,0.480195779848974 -"Tfru12863_t",53.0744497670019,75.736594817695,45.4554210796535,78.2989582471391,35.8130326446957,21.8558152892413 -"Tfru12864_t",4.70458109804959,8.09202060005759,1.73629718279345,4.86633525313688,1.74513226321253,5.40892526339738 -"Tfru12865_t",8.9402934739885,7.80269441497203,7.33233607778046,2.42201169451047,2.94785855344537,3.37434872357648 -"Tfru12866_t",26.4889861452829,23.0512491639692,26.2068664984072,21.0153326398637,18.3268566802294,19.9447847191715 -"Tfru12867_t",5.93649343352841,9.09702530207715,6.19663520063674,11.9090492611268,12.767741400647,13.1616830463336 -"Tfru12868_t",12.1168798467322,20.7487683456428,13.9126360574565,32.5870626206481,11.8859154683811,11.2291923076574 -"Tfru12869_t",20.0866915889626,21.5990023588236,22.9548061189903,19.2092181091892,17.4950602871144,20.9813061362222 -"Tfru12870_t",19.1895550620037,18.7237498356267,19.7228457354114,17.5035048824462,15.0130037512756,14.4226823858394 -"Tfru12871_t",3.18988654487406,2.76980605681704,3.48987095532457,5.48889413547863,4.65368603637242,4.48419720046767 -"Tfru12872_t",7.03655741348613,8.00557998380808,9.32643242988769,6.58228678662608,10.1153272139832,6.17784286674445 -"Tfru12873_t",0,0,0,1.27792417393066,1.3366515499691,0.451948969311601 -"Tfru12874_t",118.246184448233,131.622089491798,105.309252716505,73.0472987961686,54.344031016849,29.2998856615966 -"Tfru12875_t",0.109531130080114,0,0,0,0,0 -"Tfru12876_t",0,0,0,0.111480235827177,0.0466413369585113,0.0394259524223077 -"Tfru12877_t",3.81040585788422,4.87909809518139,4.68762738449896,6.47518382730307,6.75312161055663,6.90320326343767 -"Tfru12878_t",0.222839195680232,0,0,0,0,0 -"Tfru12879_t",24.5548646058401,17.7124639054745,34.5094140078484,13.5461954524216,11.3916466936727,18.3005867916417 -"Tfru12880_t",0,0,0,0,0,0 -"Tfru12881_t",0,0,0,0,0.0958653188112314,0.0405175081254962 -"Tfru12882_t",0.0872835083339714,0.175151961083077,0.413404091242479,0.451422565336544,0.831015363637932,0.798247530212697 -"Tfru12883_t",0.808223827838618,0.648745638859285,0.850671165838346,0.139335398974802,0.194318130193263,0.427068828296585 -"Tfru12884_t",0,0,0,0.48592084153188,0.677668632975946,0.114566747113472 -"Tfru12885_t",0,0,0.141300226498894,0,0.568076908736868,0.120048944973394 -"Tfru12886_t",1.11394974724571,0.74512160239762,0.23982005293072,3.45674958870966,2.24971010045628,4.27878317023403 -"Tfru12887_t",0,0,0,0,0,0 -"Tfru12888_t",67.5476103435348,98.7040907391465,60.3331887088173,102.172761777481,97.2418501429727,87.2095875023474 -"Tfru12889_t",8.85036384140046,12.3500584552986,10.5528597035155,14.0840913820559,12.7278690216831,13.6478333812216 -"Tfru12890_t",0,0,0,0,0,0.582710271826148 -"Tfru12891_t",13.4191909404615,13.1259868606612,10.5347402151687,4.71293878112316,6.53668288448485,14.2018080282344 -"Tfru12892_t",18.7875810823059,21.5495889603197,18.3392253310077,7.89487590044581,12.9351184301965,21.0871234474231 -"Tfru12893_t",6.60343572876006,10.2475370069479,9.28805261765309,23.603092078852,41.9136569869787,29.5247012266443 -"Tfru12894_t",4.53619744986217,5.82578877036584,6.17204272292363,6.38134058342911,10.0511577459447,10.2884279407004 -"Tfru12895_t",0,0,0,0,0,0 -"Tfru12896_t",2.46055496820139,1.97503989589495,3.32971914494466,2.54515442171963,3.95514634367426,2.05740786029716 -"Tfru12897_t",3.84554541559443,4.74883838147779,5.60424560311108,5.20169135585859,5.88879725113147,5.19423040786291 -"Tfru12898_t",0,0,0,0,0,0 -"Tfru12899_t",35.609559702478,44.4191023369944,49.895206689798,11.7733917443418,24.300497649606,23.3567227340235 -"Tfru12900_t",1.23544671722717,1.23958648928281,1.59586138163457,2.55584834786131,3.74262433991348,2.71169381586961 -"Tfru12901_t",12.1647025565056,10.1959459585681,11.7489442731113,16.4065017145913,18.3238887682164,15.9317435069971 -"Tfru12902_t",0,0,0,0,0,0 -"Tfru12903_t",0,0,0,1.65679397192154,1.1090767484205,0.468751647865607 -"Tfru12904_t",0,0,0,0,0,0 -"Tfru12905_t",0.838241009914664,0.8223598172803,1.12288250947237,19.9424175967272,21.765784884641,15.6047657430604 -"Tfru12906_t",8.16469134863172,8.45074615302364,7.30858255936992,16.3352046580701,10.8791813110529,10.1393768767298 -"Tfru12907_t",4.82566132890821,8.45119645121478,4.72230521980639,4.53779863327857,6.07530814147835,7.0612601367118 -"Tfru12908_t",59.9335784409495,65.1082117405368,54.4805892213045,11.6960624061195,13.9927642570291,23.4046378458765 -"Tfru12909_t",0.541303974042831,0.173797693342744,0.0932290154219509,1.00784741552263,0.843330668640298,0.396037756613258 -"Tfru12910_t",71.5081371128315,86.003510571036,80.4959287537512,72.9998632429484,51.7795386522661,31.0317339596316 -"Tfru12911_t",1.21460785693659,0.974942241209416,0.522981079282655,1.46576363082167,2.80342532311592,2.66595440210795 -"Tfru12912_t",0.228911108369067,0,0.197127291464398,0.11839079540502,0.39626073197994,0.251219590571026 -"Tfru12913_t",8.51795072632966,8.31188332217305,9.20502151474308,8.29253380459178,9.39642123397761,8.67598259974715 -"Tfru12914_t",0,0,0,0,0,0 -"Tfru12915_t",0,0,0,0,0,0 -"Tfru12916_t",12.8550361008034,11.6264663822387,11.8497293394935,9.73866353236811,15.3576653948174,12.4519733268955 -"Tfru12917_t",8.13363064232846,9.30117310579098,11.0821355361255,9.91153921637464,7.95609039291953,7.4589561990896 -"Tfru12918_t",12.040575172455,10.6531758740187,16.3779389567969,20.6632429947615,23.0931590261762,20.2214040471145 -"Tfru12919_t",1.26489902290761,1.43835581592062,0.63540779394233,2.50774580680997,1.36851651791065,1.54241053516632 -"Tfru12920_t",0.647894936540726,0,0.185978704286462,1.11695172014505,1.30847534763042,0.316015731755155 -"Tfru12921_t",0,0,0,0,0,0 -"Tfru12922_t",5.61188357536931,5.13980754768338,5.47291314055666,7.11960267725683,5.66682258033146,5.33410739001394 -"Tfru12923_t",0.99268278898428,0.885341422542467,0.664884041713834,1.86347630089144,1.97297958325417,2.39404390571012 -"Tfru12924_t",0,0,0,0,0,0 -"Tfru12925_t",24.0376511571483,32.6448326310547,28.3319205595008,27.1244946050484,25.1135965203443,29.1337277789767 -"Tfru12926_t",0,0,0,0,0,0 -"Tfru12927_t",0,0,0,0,0,0 -"Tfru12928_t",0,0,0,0,0,0 -"Tfru12929_t",0,0,0,0,0,0 -"Tfru12930_t",0,0,0,0,0,0 -"Tfru12931_t",0,0,0,0,0,0 -"Tfru12932_t",0,0,0,0,0,0 -"Tfru12933_t",0,0,0,0,0,0 -"Tfru12934_t",91.2069374506968,86.9521300038665,87.8064325447845,71.7757808347996,67.8618835612806,63.9591334893056 -"Tfru12935_t",45.5173278828578,46.0081438911868,39.9232211860421,60.7420012036873,85.8461105162764,96.4117493597697 -"Tfru12936_t",22.441826635902,20.6341539517474,25.5607179881105,19.1930624385275,18.2731393242818,12.7394716248377 -"Tfru12937_t",0,0,0,0,0.0707333115936956,0 -"Tfru12938_t",9.33947534391292,10.1997230998432,9.20271533952393,10.3572646571269,9.28840662323798,9.78973160249094 -"Tfru12939_t",0.426448613053033,0,0,0,0,0 -"Tfru12940_t",0,0,0,0,0,0 -"Tfru12941_t",9.47129388629622,8.66676389169813,8.40091177524881,6.661918128811,4.59072748796603,5.33574927466864 -"Tfru12942_t",11.6741692396687,14.1873088477292,14.281232242922,8.91559566539673,5.76044740703566,6.8649287598292 -"Tfru12943_t",0.124644475922029,0.300149132123077,0,0.128930035352054,0.10788404201531,0.273583352342928 -"Tfru12944_t",0,0,0,0.502305455649044,0,0 -"Tfru12945_t",13.6496550266955,12.1302049643705,13.7135012858966,8.99243354885827,8.64971262200507,8.26271113720165 -"Tfru12946_t",84.3821041022946,108.012959363489,96.8344207086228,101.125645692814,103.922883693881,95.597205880406 -"Tfru12947_t",8.3743368928487,8.26114016966237,7.48331878542078,6.27700403259785,6.0087140927591,7.22804950862055 -"Tfru12948_t",0.710447160857907,0.855393298312701,0.61180309486202,0.183718485892779,0.153729057755431,0.649736361801033 -"Tfru12949_t",5.87671951978329,5.36037400770943,6.9010221908522,1.79600154174038,1.61843214698961,2.44296740168433 -"Tfru12950_t",14.825360606726,16.5157996244807,13.1537665395334,11.8033723701232,12.4430107924396,11.3726795186774 -"Tfru12951_t",37.3760451758685,16.2390889632738,33.9581932092037,6.73909401109555,9.49731844157637,10.7877451940173 -"Tfru12952_t",19.1257666266912,19.3691982495594,19.8565901272319,31.2466055464066,38.0587355368223,33.7403945429903 -"Tfru12953_t",4.64290924805705,5.48468549668905,4.67719957245141,4.53070092947261,4.01859619277467,3.33282910424571 -"Tfru12954_t",15.3103023088152,17.6461508455661,19.4386853650815,18.0700866837111,16.8193238026018,22.977592458459 -"Tfru12955_t",5.19498796289869,4.52733779265974,6.51878359423874,4.29888273350525,4.62490882590015,3.58365189800435 -"Tfru12956_t",4.4215987774446,1.95202251364955,5.71150389216583,3.88757985543116,4.20974888158689,1.45575141694053 -"Tfru12957_t",0,0,0,0.334226322412633,0,0 -"Tfru12958_t",13.1456651735633,11.8620077478064,12.1450839240666,8.37470722895075,8.25094917394397,12.1656232402468 -"Tfru12959_t",0,0,0.160411787067481,0,0,0.0681430818474254 -"Tfru12960_t",0.167752349783242,0.188512194536299,0.144460295462128,0,0,0.2454674913194 -"Tfru12961_t",7.2612907712739,6.78761757282558,6.64884041713835,3.61286221601402,2.14800196563962,2.4209432754372 -"Tfru12962_t",0,0,0,0,0,0 -"Tfru12963_t",19.1762816543521,18.1410787953301,15.8256253678762,9.56359558425279,9.68200644455879,9.10284174059126 -"Tfru12964_t",1.0065759428837,1.92667157191385,1.86698621851442,2.56291520965263,2.61367735337737,5.60833264775244 -"Tfru12965_t",30.9287695416181,35.5633089339067,32.9444487519045,35.6056114667576,28.5398151634782,25.8701823812847 -"Tfru12966_t",4.06501823087649,3.80673012192655,4.37574894964318,16.4687324995257,17.2988581241162,17.3490088219615 -"Tfru12967_t",17.7435709560385,18.3698168839372,19.0219339397132,13.0348265740927,13.9159253781611,23.6852428813714 -"Tfru12968_t",18.0781823432228,14.9378017442687,16.4838340178963,9.34987560166985,9.66449829547277,17.8948908355277 -"Tfru12969_t",2.98514029137123,3.76532261516158,2.20342282134317,22.9377658833442,9.2276452180608,5.61609683692792 -"Tfru12970_t",3.91025616343979,6.23266742115411,5.67234501448632,13.2255705405506,13.0220673569613,15.6422276736044 -"Tfru12971_t",74.2346238380427,105.686693317529,89.9717631304087,210.769195755632,197.781656545828,217.921575748066 -"Tfru12972_t",23.7958326083592,25.2961219327673,25.8902181507822,24.8345426775438,23.8442352434691,34.4141933951749 -"Tfru12973_t",29.6261379795901,22.0014022518628,23.7625796033187,25.7222299685727,26.338492227926,28.5391893036471 -"Tfru12974_t",60.0074119796053,64.9739242868818,65.9687379642255,71.3151605877412,52.1594749517425,58.8495253656808 -"Tfru12975_t",2.11859340063786,3.33570199405064,1.82443124651143,2.61286533331312,3.73795707940922,6.08092735430701 -"Tfru12976_t",0,0,0,0,0,0.100597479257574 -"Tfru12977_t",0.95933546068537,0.660034306854662,1.29821023758854,2.19727908535548,3.55858944461594,4.46198232018566 -"Tfru12978_t",0,0,0,0.765254006306812,2.27675442092584,0.902129058117089 -"Tfru12979_t",2.9705326593219,4.32170529390619,3.5973007939608,5.95329095833331,8.59710645531507,5.50129264744375 -"Tfru12980_t",1.41632400945652,0.299172604334448,1.92579545609851,1.23370142079552,0.903277569171665,1.19985032491598 -"Tfru12981_t",0,0,0,0.144230446186365,0.120686878536629,0.153025045210899 -"Tfru12982_t",0.0980284443074066,0.0786855367759447,0,0,0.0848469595312941,0.0717211899957733 -"Tfru12983_t",0.673880027578455,0.721213957400905,0.193437743228433,1.62644894863902,1.16653226179121,3.94428191399215 -"Tfru12984_t",0,0,0,0,0,0 -"Tfru12985_t",30.3921774306455,29.6851225436535,23.2520122911326,12.508668304156,29.1298416690296,47.9830055765706 -"Tfru12986_t",3.12932635538343,4.63726108999321,3.62765051412634,2.11644748576481,4.16698248242516,17.0834120434345 -"Tfru12987_t",5.02505202255499,5.05609262553633,6.03388869484074,3.88006632084759,5.02319733285776,6.57629536474302 -"Tfru12988_t",152.545157821839,133.203354482563,173.962889382218,239.829374904907,181.784610795798,114.539330235668 -"Tfru12989_t",4.98341857615214,4.46958830162009,5.26864992703027,5.35441598462347,4.47025861819089,4.28796142491335 -"Tfru12990_t",21.1226090168211,15.4133725753108,14.8825472847293,14.6486622451708,10.3876920454742,13.8735420750967 -"Tfru12991_t",0.70775380599366,0.908960472006532,0.914225559824354,21.0109251713822,19.5414627948979,14.2400096480656 -"Tfru12992_t",0,0,0.657688312249044,0,0,1.11754651727253 -"Tfru12993_t",0.382444810795664,0.281399300146749,0.137226320120322,1.41754563147695,1.24132131802897,1.09592481481022 -"Tfru12994_t",8.67586315599938,4.84448528665957,7.5176433526134,3.73458790021044,1.63244679354789,1.77416785900385 -"Tfru12995_t",7.88868010341762,8.12727141782631,8.15902798664671,7.65517404480436,6.93350790450574,6.3666615696248 -"Tfru12996_t",0,0,0,0,0,0 -"Tfru12997_t",6.09016021701995,4.99708615510478,6.58482956449459,3.63974214983391,3.68986886190423,5.02513376752101 -"Tfru12998_t",21.8519108874327,21.5842678841205,23.2805439662167,7.98111382649495,14.0045169660368,15.1450918489258 -"Tfru12999_t",8.89840076153471,9.01648154073253,9.49847096471343,9.02936033324182,7.2040296827654,8.41648020175933 -"Tfru13000_t",0.161662046385082,0.0865086658332066,0.232026029401648,0,0,0 -"Tfru13001_t",0,0,0,0,0,0 -"Tfru13002_t",12.7123715970732,11.7479973897186,11.6675022267041,8.13189777975585,7.63694432611514,8.2300154770013 -"Tfru13003_t",31.4452248250669,27.1240914034798,35.1624429562388,45.1485613180865,36.9662560500952,22.6630946845862 -"Tfru13004_t",9.42855808932873,8.46393970437644,7.48975346250117,7.48373002268873,5.96233537928498,5.54677818863784 -"Tfru13005_t",1.03973238578524,0.834573081893374,3.40239753312189,0.860384592349353,1.25989334214909,0.456423711582013 -"Tfru13006_t",2.63269188198643,2.17629178960334,2.57169055824367,1.46321720195615,1.70051085870718,1.58118722659063 -"Tfru13007_t",26.4628959661613,23.4551321798207,28.1808068409081,13.8791409839496,13.1620445793585,16.5797499442935 -"Tfru13008_t",0,0,0,0,0,0 -"Tfru13009_t",0.235984204414178,0.189419957912878,0,0.488195751838678,0.204252371680672,0.517963987300936 -"Tfru13010_t",0,0,0,0,0.0491974589433823,0 -"Tfru13011_t",0,0,0,0,0,0 -"Tfru13012_t",9.54663372402812,17.8392272363114,10.5887820643244,10.1908644124725,16.9885981725527,23.4684773882533 -"Tfru13013_t",68.0311821007963,64.5917741677495,67.5666140014758,42.2617383989186,64.1836325133226,57.054696763665 -"Tfru13014_t",0.902618453175122,1.18069009978007,1.06517767242143,2.35142116205943,1.9965201981552,2.66601333906692 -"Tfru13015_t",9.43936817656713,15.7218565067689,9.95769686068613,26.6066684752079,17.3614515928571,20.8912141544711 -"Tfru13016_t",20.6418820130325,17.8545532593454,17.2354169771261,22.1845982216296,20.957681274367,13.6558837793682 -"Tfru13017_t",0,0,0,0,0,0 -"Tfru13018_t",0,0,0,0,0,0 -"Tfru13019_t",1.19610004809654,0.815696534653554,2.35553189663385,0.920869288213378,0.373332304406455,2.11075525321516 -"Tfru13020_t",0,0,0,0,0,0 -"Tfru13021_t",0,0,0,0,0,0 -"Tfru13022_t",0,0,0,0,0,0 -"Tfru13023_t",34.7802959833792,27.5128700469297,37.7446080636592,22.593699395094,24.7227070682285,25.8153251270786 -"Tfru13024_t",0,0,0.397503933887,17.1887822955069,24.3711236451509,15.8728451199986 -"Tfru13025_t",2.79156737861236,1.8602346211582,2.72146893921381,2.12479931615304,2.14266500499122,2.73606222424628 -"Tfru13026_t",109.16856446771,83.0598074273375,111.03326461312,133.988413387881,105.117518256964,76.913497322847 -"Tfru13027_t",0,0,0,0,0,0 -"Tfru13028_t",1.35500607695883,1.63145576653995,2.04201617650015,1.40159425527879,1.75920591092707,1.23921491585439 -"Tfru13029_t",5.01609852441432,6.54890385286197,3.21688065266667,2.44323255055512,4.80003044451103,3.57757784644533 -"Tfru13030_t",10.1158651551347,7.49683697453312,10.2782017101202,5.36743939637336,1.72168075255476,1.79289918636544 -"Tfru13031_t",0.761135916389105,0.496396129796602,0.819317281624393,1.4761978000105,1.27640383571228,0.626484188490826 -"Tfru13032_t",10.6834005142881,10.5243042512057,11.7091332201627,11.553025479928,14.2905821203633,13.1457064368554 -"Tfru13033_t",12.6802645556314,11.9555740481151,10.8362271656837,8.84368900247178,10.9326977236534,16.4977414688697 -"Tfru13034_t",0,0,0,0,0,0 -"Tfru13035_t",21.1361795976221,19.5866929766648,16.8210180588592,15.2609784372532,11.9733750714971,13.7699109293016 -"Tfru13036_t",32.4134524551254,28.8849029364091,32.4701244893207,27.2328660183144,25.4212180136485,23.3276841230819 -"Tfru13037_t",79.9049829125328,76.2746081777335,85.6249057874396,79.1307707795536,95.594005105013,78.4613576567944 -"Tfru13038_t",0.138174961795144,0.110910370093725,0,0,0,0 -"Tfru13039_t",0,0,0,0,0,0 -"Tfru13040_t",0,0,0,0,0,0 -"Tfru13041_t",1.12765606404627,0.905147718348787,0.728312576853361,0.583213716961642,0.732018566962944,0.825034360085607 -"Tfru13042_t",0,0,0,0,0,0 -"Tfru13043_t",0,0,0,0,0,0 -"Tfru13044_t",0,0,0,0,0,0 -"Tfru13045_t",0,0,0,0,0,0 -"Tfru13046_t",0,0,0,0,0,0 -"Tfru13047_t",0,0,0,0,0,0 -"Tfru13048_t",0,0,0,0,0,0 -"Tfru13049_t",0,0,0,0,0,0 -"Tfru13050_t",0.370089765512984,0.074265974688309,0.239027695927645,0.382814289988038,0,0.406156782993685 -"Tfru13051_t",0,0,0,0,0,0 -"Tfru13052_t",48.3857233303906,33.168016934213,45.5267796684756,10.7641424994014,17.0936704545777,23.9524781059392 -"Tfru13053_t",0,0,0,0,0,0 -"Tfru13054_t",22.1722121295896,19.3163589671042,18.107319580654,11.5890861470239,9.9363742835695,14.0788026861308 -"Tfru13055_t",0,0,0,0,0,0 -"Tfru13056_t",226.525821683011,260.710543857032,221.721402892999,311.085357470912,292.424740819715,213.756905899791 -"Tfru13057_t",0.100131557534502,0.160747330195434,0.172457010649425,5.07514105785095,3.38002375257979,1.09889856662177 -"Tfru13058_t",0.168020753542895,0.101150257525477,0.542592869755754,1.82487572037298,1.19977843125226,0.368790358958266 -"Tfru13059_t",13.8908246740908,13.353169310294,16.403137580735,25.8975762297155,26.4217632324981,38.9481567216651 -"Tfru13060_t",13.45582430902,14.2825442659788,14.2556890262488,15.3377832887989,15.6691055459391,18.5884849000742 -"Tfru13061_t",4.22210916955304,4.96797381335866,5.28855033913851,5.80649042135483,8.34693472757403,10.671261100639 -"Tfru13062_t",2.85472154077734,4.91020667599402,4.56550634745942,4.64022952475792,5.38294235851634,4.80129510100932 -"Tfru13063_t",0,0,0,0,0,0 -"Tfru13064_t",1.59840672088932,1.39621694774954,1.05259575554185,1.65336356470491,1.01726139225404,1.54780508796139 -"Tfru13065_t",0,0,0.101466642310566,0.36563328398577,0.203965902716182,0 -"Tfru13066_t",0,0,0,0,0,0 -"Tfru13067_t",6.2634955462736,5.98522233878561,5.73628753824624,6.78736531668732,7.31441037521552,8.21958788210732 -"Tfru13068_t",0.501055925078215,0.268125268457195,0.431485383503582,2.07313345114794,1.44560326676579,1.34416631827069 -"Tfru13069_t",37.3504078302964,67.2534422532543,30.1359991746854,40.9549958224719,142.515251614543,181.112666270782 -"Tfru13070_t",9.76802266753216,9.54696003123228,9.38501440320651,8.12763049249427,7.94215916481319,12.3442000355986 -"Tfru13071_t",325.187069025054,320.458338001068,297.449731313892,298.685937544401,334.934123607832,275.776861344898 -"Tfru13072_t",0,0,0,0,0,0 -"Tfru13073_t",6.21822407429551,3.97550140812034,4.77605252924287,7.10157063017885,6.95267262801707,7.50668933032514 -"Tfru13074_t",1.41590522648507,1.51535966330302,1.21930981967585,2.19688088327405,1.63401897344537,0.863273312168226 -"Tfru13075_t",0.407817362968192,0.327347111732935,1.75596397979209,5.48390762016845,5.64767722860731,7.45935192067691 -"Tfru13076_t",5.26335171728722,5.86985950406912,8.89519815379678,8.06238295058716,7.53815787629015,8.61184036217641 -"Tfru13077_t",35.7622154329831,22.890272345215,33.1861082419422,22.0037439415877,29.485797420823,27.2927421614374 -"Tfru13078_t",167.10759727364,174.081059147107,158.649436917715,255.265353742649,205.298055018298,126.604661272811 -"Tfru13079_t",4.34931105901227,5.32853309398516,2.56265478903717,4.48916668527885,2.47662957487463,4.77317222084949 -"Tfru13080_t",0.284138816588886,0.456145467984112,0.652498001961072,0.399890748310346,0.40988638285411,0.277181780502267 -"Tfru13081_t",5.65454392847502,4.53879307560937,4.86942262010978,4.17782854110873,0.699171498140063,4.72808097164522 -"Tfru13082_t",0.305412951129645,0.297681014097309,0.338151879359597,0.225652671584743,0.22658170132948,0.430941733397091 -"Tfru13083_t",0.798514472283065,0.667658465514699,0.687642448799372,0.722723057573456,0.518356117912769,1.16844470164995 -"Tfru13084_t",0,0,0,0,0,0 -"Tfru13085_t",1.42069408294443,1.14036366996028,0.978747002941608,0.489846921236103,0.901750042279041,1.17802256713463 -"Tfru13086_t",6.36195086230379,4.71379840895426,4.63574490665111,3.54344800072423,4.94171757503139,3.22244002973242 -"Tfru13087_t",49.4749332025845,58.0115025838955,50.3746728964927,46.7608097269222,55.249087253411,55.7160184338412 -"Tfru13088_t",34.0582608532895,35.5908606285462,34.4942602904389,38.685716808373,43.6802185655175,50.2126597867706 -"Tfru13089_t",1.29081244719253,6.43251744400173,0.880005507926533,1.83589106677362,5.35345204648316,11.0967649622526 -"Tfru13090_t",9.67696319466331,8.22780820599727,9.44444926878617,16.0896323468607,16.3792277304063,10.9084747814732 -"Tfru13091_t",12.2129622619285,13.3678754438956,12.4294401882375,4.9765857698445,6.72683141270793,13.5385594331228 -"Tfru13092_t",0,0,0,0,0,0 -"Tfru13093_t",0,0,0,0,0,0 -"Tfru13094_t",0,0,0,0,0,0 -"Tfru13095_t",0.0516034255352871,0.0414210718777547,0.0444384004713967,0,0.133993570611153,0.22652970451982 -"Tfru13096_t",2516.62165821765,3027.21761711382,2240.27308296452,3227.5874629634,2780.56758053734,1961.69060871551 -"Tfru13097_t",4.12656933774958,3.48407526171983,3.66396006082171,4.41853683657275,5.43469715447008,6.25721637567387 -"Tfru13098_t",0,0.667658292543958,0.716294031928507,0.860384369448921,1.43987773228303,0 -"Tfru13099_t",7.93948530615671,10.6216148695721,9.15201376375984,9.59133503371928,9.84616389834148,7.09065567026375 -"Tfru13100_t",40.3571379323125,42.202404096754,43.4420447555644,34.884272713441,32.0775906514307,27.673981481637 -"Tfru13101_t",1.37030727481658,0.507654993854338,1.63390575585171,0.436129705532169,0.456172172636882,0.385602633791579 -"Tfru13102_t",0,0,0,0,0,0 -"Tfru13103_t",0.236982727140895,0.427998268796094,0.306117274897464,2.51258998372262,3.07674940698106,2.47073935832407 -"Tfru13104_t",17.8488500169369,20.7902020260032,18.8376225282615,14.2980525786107,13.5902871968743,13.1570575347198 -"Tfru13105_t",9.8923904851303,11.1286337449975,9.16422093432258,6.04648511911526,4.73515667728572,7.01831191594679 -"Tfru13106_t",6.02765035131461,6.04784798358606,5.6773543920632,10.7162251356517,13.8580196570787,10.7494947678418 -"Tfru13107_t",2.47089343445434,1.98333838285249,3.28844163488336,0.464699699611148,1.36095430542308,1.47910571774706 -"Tfru13108_t",0.936048766255682,0.187837061328648,0,0,0.607636582047234,0.342423731623274 -"Tfru13109_t",0,0,0,0,0,0 -"Tfru13110_t",0,0,0,0,0,0 -"Tfru13111_t",20.5108946632631,37.6635295579814,15.4853706418588,5.81263169413275,7.53889355808659,18.2956198145405 -"Tfru13112_t",0,0,0,0,0,0 -"Tfru13113_t",0,0,0,0.261743505503869,0,0 -"Tfru13114_t",0,0,0,0,0,0 -"Tfru13115_t",0,0,0,0,0,0 -"Tfru13116_t",0,0,0,0,0,0 -"Tfru13117_t",0,0,0,0,0,0 -"Tfru13118_t",55.9889553980333,48.4448528665957,59.6770947621039,68.7275653874547,55.0367776110433,49.0458848133508 -"Tfru13119_t",0.790685899025388,0.476001211884597,1.02135128424613,0,0.171091398396045,3.76021542467252 -"Tfru13120_t",113.007506818366,99.4100380411676,146.325044876068,69.0985967852441,79.3988267798419,53.3358099783729 -"Tfru13121_t",129.356886960581,96.169373632177,140.580879891264,65.1741328704635,72.3006974756014,51.3372942868041 -"Tfru13122_t",0,0,0,0,0,0 -"Tfru13123_t",0,0,0,0,0,0 -"Tfru13124_t",0,0,0.178852202638897,0.107415134520747,0.269643427632827,0 -"Tfru13125_t",0,0,0.441132414435573,0,0,0 -"Tfru13126_t",6.14710073937421,4.9341589036818,3.3277910942265,7.41819398525601,3.54701679601557,5.6218042524126 -"Tfru13127_t",3.05228012491418,2.10000534654969,2.73775772467715,3.0068804092486,5.40950744928671,3.19022801867012 -"Tfru13128_t",5.39516181101039,7.73320011662668,4.6460551538719,19.5323089336557,22.0142831422434,18.3267380216264 -"Tfru13129_t",5.22707283311764,7.74252559207199,7.23921211733142,33.6670312198075,34.8410787080079,31.3436321757346 -"Tfru13130_t",0,0,0,0,0,0 -"Tfru13131_t",0,0,0,0,0,0 -"Tfru13132_t",18.4132332649748,17.2794960478655,19.7624477944884,29.5498082958212,33.4565713986786,38.0875350576023 -"Tfru13133_t",0,0,0,0,0,0 -"Tfru13134_t",0,0,0,0,0,0 -"Tfru13135_t",0,0,0,0,0,0 -"Tfru13136_t",31.1178141901593,26.02114893283,32.9711052301624,43.9971372044893,31.5348098955503,22.5757108518762 -"Tfru13137_t",0,0,0,0,0,0 -"Tfru13138_t",2.8657040550404,2.42131077260268,3.24711472026184,3.12024573886121,2.61091002938309,3.08980552089511 -"Tfru13139_t",2.72352842401201,2.6906136665131,4.32991816263944,2.38375880822975,3.44529436919716,2.45247121501756 -"Tfru13140_t",10.7628952447406,9.5990754472576,7.20882579034929,4.94797687272795,7.24550761890724,6.78084289899541 -"Tfru13141_t",0,0,0,0,0,0 -"Tfru13142_t",20.5122067367243,18.1292211620045,21.0425164521689,16.4638236470639,17.8510304930897,27.2676883152376 -"Tfru13143_t",0,0,0,0,0,0 -"Tfru13144_t",0,0,0,0,0,0 -"Tfru13145_t",5.88448242661405,4.72336026199445,6.68470102828748,3.62618126253945,6.50198309850841,5.22132400909617 -"Tfru13146_t",22.1709144390366,16.9238033289716,26.3926156569422,31.2521068356858,32.4531387966625,34.9070650242947 -"Tfru13147_t",39.2571833753644,52.9384497967359,45.3005861583271,44.6676276927939,33.2988615624931,24.1264708326559 -"Tfru13148_t",14.873939883115,15.8946775866308,11.5025498218172,11.3601093055552,8.47851746098109,8.55299844708906 -"Tfru13149_t",19.5219935578559,21.3040577207706,22.1003884286939,13.8402858314996,13.4795899389051,24.7144104784913 -"Tfru13150_t",17.633577376942,16.2830050510296,18.827170110979,19.7227751348615,18.86092890168,19.5093875899424 -"Tfru13151_t",0,0.0773320011662667,0,6.57720606949631,9.75633002894877,4.93412177505326 -"Tfru13152_t",6.27165102483806,6.8448290722463,6.78841477652522,3.66672607474231,2.89653850191002,4.26210948928851 -"Tfru13153_t",1.41285239072292,1.83195809231135,1.96540754892123,5.05879427196353,5.54995706957416,7.31537581374741 -"Tfru13154_t",2.16894260167248,2.6694847080734,2.61490539641327,7.47838587153913,9.13616288336883,10.790767818056 -"Tfru13155_t",17.2771983077527,15.9482839628858,17.296019498641,15.4139337380016,15.3278540722421,18.8029360394317 -"Tfru13156_t",12.0993205676269,10.8113499891361,12.9750468854637,10.6262173158364,11.4603341588655,16.5354372902484 -"Tfru13157_t",2.78627380247012,1.96539863868598,2.54482417975898,2.53273012159925,2.26545645614863,4.81836649895222 -"Tfru13158_t",3.92484518843247,3.90049194758976,3.37988884386232,3.96312858389173,4.12503454976004,6.83704781161042 -"Tfru13159_t",4.98811612080469,5.05751287627384,3.6172857983717,4.6165010783245,9.99815359376887,10.3722288457012 -"Tfru13160_t",0,0,0,0,0,0 -"Tfru13161_t",0,0,0,0,0,0 -"Tfru13162_t",0.162182194539474,0.390541534847401,0,0,0,0.474633666612955 -"Tfru13163_t",0,0,0,0,0,0 -"Tfru13164_t",14.0377236250491,12.1345638848044,15.8546845404209,15.8607144260597,17.8980735050875,16.3143121518599 -"Tfru13165_t",4.45734692319453,4.56598770706212,3.8750105571238,5.62054169271977,5.32769450538467,6.27384642997893 -"Tfru13166_t",0,0,0,0,0,0 -"Tfru13167_t",4.94618621897394,3.31636116296787,3.49017311801365,3.32774613674349,3.10534496053629,3.84107784911678 -"Tfru13168_t",6.31005775455643,8.78919763476161,6.44612049488918,6.97494401853757,4.33712915300725,2.26307289493291 -"Tfru13169_t",15.7974451987904,19.9846262701982,16.9266406509594,18.3737590068089,18.3359867388482,18.0560271067089 -"Tfru13170_t",5.49298617351772,3.89039452021065,4.1737913058135,6.35030012584003,2.51701768794181,4.49167744885068 -"Tfru13171_t",0,0,0,0,0,0 -"Tfru13172_t",0,0,0,0,0,0 -"Tfru13173_t",0,0,0,0,0,0 -"Tfru13174_t",0,0,0,0,0,0 -"Tfru13175_t",0,0,0,0,0,0 -"Tfru13176_t",5.2041825825247,2.38702670363628,3.84136541318269,1.53803261953091,2.57394136739832,0.543938577377859 -"Tfru13177_t",7.05310999014018,7.54852668100574,10.6628947041554,8.75473426618166,6.57951762954939,7.39644843059956 -"Tfru13178_t",37.0137768788009,25.1582462929475,34.1182699204159,21.9519568873318,22.3070253783228,20.9974298357635 -"Tfru13179_t",92.4114144485922,80.0406385636383,103.80037508371,117.124528636775,141.950069995327,116.516374279568 -"Tfru13180_t",0,0,0,0,0,0 -"Tfru13181_t",0,0,0,0,0,0 -"Tfru13182_t",0.369276381412956,0.296411011063669,0.636006294219199,0,0.479431940560345,0.135088043574457 -"Tfru13183_t",0,0,0,0,0,0 -"Tfru13184_t",33.1263665752816,30.7445648466062,32.5041415815769,22.4042516786933,23.6406147878516,19.8086448729558 -"Tfru13185_t",0,0,0,0,0.0833874361448613,0 -"Tfru13186_t",26.721372852605,18.8488833300487,29.6355944926838,10.5744376223563,13.1410562021059,18.0692465031761 -"Tfru13187_t",0,0,0,0,0,0 -"Tfru13188_t",18.9159958075033,17.1615702952573,18.6173859953671,19.2143602216482,14.0340898778017,14.0897420089198 -"Tfru13189_t",4.77685702285115,4.66783223850573,5.63384438312526,4.2966053808299,5.48274969520082,4.78652505446452 -"Tfru13190_t",0.454110144710527,0.364505432524241,1.17317377244487,0.93944696029497,0,0.664487133258138 -"Tfru13191_t",0.145346672614961,0.583334818486026,0.87615918991702,0.751720102312151,0.629012494103106,1.16975027351238 -"Tfru13192_t",12.7426806664201,13.1601949020301,12.724839369766,13.7389476406774,15.0169895874789,18.0082907495267 -"Tfru13193_t",8.88704812127709,8.13660473758657,7.29436144465036,4.0217646729983,4.92771506950592,5.07975701044444 -"Tfru13194_t",3.82909648001128,3.68825004650782,4.22071633720672,7.44620904262968,4.57361463807112,3.13768764838391 -"Tfru13195_t",29.1338737794561,25.6123587862675,28.5400530880703,20.728164582655,29.8860571143183,25.6010432671335 -"Tfru13196_t",0,0,0,0,0,0 -"Tfru13197_t",0,0,0,0,0,0 -"Tfru13198_t",20.1536869425516,19.9877754391661,19.9275624820477,21.6271448896498,20.4643753470718,21.0250990573762 -"Tfru13199_t",0,0,0,0,0,0 -"Tfru13200_t",14.9156804711708,20.2476581643687,19.0781130880178,45.6048762644496,51.0705590643024,37.0716157177369 -"Tfru13201_t",0,0,0,0,0,0 -"Tfru13202_t",30.4119720790092,26.4020783442623,33.61893347909,27.6648437344886,29.776272577078,32.6656415508605 -"Tfru13203_t",211.553398587143,176.553172818183,237.425480721905,110.598526030818,99.1552400318679,70.4054305881696 -"Tfru13204_t",0,0,0,0,0,0 -"Tfru13205_t",0,0,0.138064343449301,0.663349952880035,0.138766878470075,0.234599464986174 -"Tfru13206_t",0,0,0,0,0.486380229553974,0.205568761961129 -"Tfru13207_t",0,0,0,0,0,0 -"Tfru13208_t",4.1293236040203,2.74305783119937,2.45239715143844,3.68215439946121,1.84865705894031,2.70862975506071 -"Tfru13209_t",0.280436128991512,0.363931827115133,0.160083336528829,0.863274624239544,0.785813259893126,0.326784280806192 -"Tfru13210_t",0,0,0,0.0814422153957682,0.204443798458254,0.115210983742039 -"Tfru13211_t",35.2974465208175,33.0929761719184,36.525076659313,38.4148735127431,43.0123275787525,42.1637143599641 -"Tfru13212_t",0,0,0,0,0,0 -"Tfru13213_t",0,0,0,0,0,0 -"Tfru13214_t",60.0230592839025,58.7295715141404,65.0828474804816,63.5596497876228,66.1724424174533,61.3047858763741 -"Tfru13215_t",0,0,0.100619910942189,0,0,0 -"Tfru13216_t",4.09618212409081,4.6217075655615,5.12476552851188,3.83729945143483,3.11057383698421,4.52364745732311 -"Tfru13217_t",231.02853612148,175.808780937138,231.432468936638,226.114338530179,211.834719927348,157.42581649409 -"Tfru13218_t",7.69340864655273,9.37860696612322,5.52690092601356,6.08547241297831,4.77162347632456,5.11707158201969 -"Tfru13219_t",0,0,0,0,0,0 -"Tfru13220_t",0,0,0.0408963911630491,0,0,0 -"Tfru13221_t",0,0,0,0,0,0 -"Tfru13222_t",50.7135810998372,116.158324190842,29.5558717671834,56.563729137577,202.401645922638,164.625167858149 -"Tfru13223_t",6.30889632298004,7.67051465129698,8.3091711326484,7.34153677834045,8.31130081385535,8.5189011686476 -"Tfru13224_t",0,0,0,0,0,0 -"Tfru13225_t",0.200981762611118,0.241986262022672,0.0865379377600884,0.311837956318007,0.0869782826774151,0 -"Tfru13226_t",3.58209973361763,4.69267754140721,3.69585918256802,3.3557075653336,2.9541827337692,2.84331531779302 -"Tfru13227_t",4.50528834421012,7.01989168946527,3.19507893862484,2.46715960392922,1.6056684865244,3.49012958004668 -"Tfru13228_t",22.5317578116586,55.7603945645645,8.49229058161557,3.1634794558224,73.9023321154981,170.147706473316 -"Tfru13229_t",142.36068030308,225.718845245137,91.7186273562028,27.6331051500989,111.961065728625,224.771808737465 -"Tfru13230_t",2.46759451131087,8.55298127718763,2.80110248739063,2.78447563665532,9.41687970477563,5.49820962398839 -"Tfru13231_t",4.9952115918158,4.73857062281514,4.30163716563121,8.45502264265473,5.50266929976469,4.65140993280696 -"Tfru13232_t",1.24475589899334,1.6792812065704,1.41507512894736,1.91219949742191,1.60006014392389,2.40450111790231 -"Tfru13233_t",4.70886188273081,7.98893753704403,4.70016753418997,10.8485180828967,11.3933794282207,13.5458029935839 -"Tfru13234_t",16.7951982624849,15.4669756458154,19.3684071399403,14.2434229268041,14.4098288594367,12.1960528689311 -"Tfru13235_t",0.175753926300099,0.0705371391391052,0.0756754351123786,0,0,0 -"Tfru13236_t",0,0,0,0,0,0 -"Tfru13237_t",7.57258403872061,9.7669483383614,7.24571885652266,6.29313660998826,9.35532511645553,20.7882598334205 -"Tfru13238_t",13.4178064053776,15.0184647375893,12.5176704646403,11.1804191259594,22.7754987083998,29.9962581228995 -"Tfru13239_t",0,0,0,0,0.109344126794465,0 -"Tfru13240_t",0,0,0,0,0,0 -"Tfru13241_t",8.13003646175294,5.22065845292781,5.60095865554324,7.84892782956115,3.75297260997774,4.36203650380743 -"Tfru13242_t",5.55051761423897,4.90837382542441,5.91403949117881,8.17413536561244,8.63120660441413,7.36479440248871 -"Tfru13243_t",0,0,0.0389164690518741,0,0,0 -"Tfru13244_t",0,0,0,0,0,0 -"Tfru13245_t",0.00921494795529629,0.00564438813233319,0.00198386804418883,0.007614690135584,0.00253674524005046,0.0016854981168283 -"Tfru13246_t",0,0,0,0.0206689188664699,0,0 -"Tfru13247_t",0.009070435842307,0,0.0039055126305028,0.0106670157524439,0.00678223085111406,0.006636262127659 -"Tfru13248_t",0,0.102076865888409,0,0,0,0 -"Tfru13249_t",264.392330166272,271.938930313725,234.187222259704,129.756311763902,124.128674292716,95.7984038710846 -"Tfru13250_t",0,0,0,0,0,0 -"Tfru13251_t",246.131428290557,281.531421767008,236.230302939247,207.511912735648,166.331052506381,120.405887216354 -"Tfru13252_t",71.3295651833044,71.40953715242,78.232336724218,85.0840916521277,95.6084155836388,100.243134127217 -"Tfru13253_t",0,0,0.463675101589066,0,0,0 -"Tfru13254_t",0,0,0,0,0.0439358575941505,0 -"Tfru13255_t",0,0,0,0,0,0 -"Tfru13256_t",6.87629418413983,5.03951460981024,5.14916127882092,8.34971097272842,3.36398568020693,3.93726361877153 -"Tfru13257_t",23.2147892738359,22.2749697363717,19.9782732839632,16.0455604479808,15.5635049040514,14.6413029516773 -"Tfru13258_t",19.3338949282235,19.5834288542476,18.4332920136201,8.80892389482064,10.9568806507056,11.6194222685481 -"Tfru13259_t",26.0771676822808,31.2525014653093,22.5186149442915,13.3748005546724,14.9429138366967,19.7660639510449 -"Tfru13260_t",1.7012226386118,3.05238021518215,1.68045439114349,7.76344644079374,14.0317364854886,20.683596665815 -"Tfru13261_t",11.1018037540356,10.4018044740279,9.38651768919133,4.42637070912646,5.55574303056835,6.2912338986153 -"Tfru13262_t",0,0,0.196591619476723,0,0,0 -"Tfru13263_t",0.428078352975528,0.515415324970583,0.368640590916861,0.885593312889525,1.01892011146689,0.469796635615626 -"Tfru13264_t",0,0,0,0,0,0 -"Tfru13265_t",16.0841176393726,16.0163929785069,16.5006044742593,18.8071859559606,22.0320527179812,28.1743282001043 -"Tfru13266_t",0,0,0,0,0,0 -"Tfru13267_t",5.27703371679946,6.18422847517572,4.31711244780541,12.4453118044101,10.9618860781385,10.5015680105369 -"Tfru13268_t",46.0123544558761,39.0025676115581,50.8688356435459,46.7247952800476,36.9147668620686,30.0969672532096 -"Tfru13269_t",0.744976055954172,1.19595575064229,0.444141503210713,3.37874085822321,3.1744106660112,1.50937391115252 -"Tfru13270_t",12.320228464173,11.9916394602952,12.8651735092203,15.6538332991413,18.1364784904814,22.5703106521803 -"Tfru13271_t",0,0,0,0,0,0 -"Tfru13272_t",2.72013673232582,2.62428023883035,2.11721584711668,2.46195354554262,2.37700923207456,3.02349920690152 -"Tfru13273_t",0.181056846490188,0.145330829777984,0,0.374563982014158,0.156710871375688,0 -"Tfru13274_t",2.33153239025503,2.7166586622778,2.94693829589816,2.83957726024699,2.01802074652452,2.6412917382866 -"Tfru13275_t",0.412320867589926,0.661923975626842,0.621374247573052,0.106624348254337,1.24907217233922,1.05584151848992 -"Tfru13276_t",3.89452077748432,2.9027667722543,3.11421956151206,7.48135741559404,5.29703501656629,4.68111382783671 -"Tfru13277_t",78.6401322607083,72.2891137544309,75.9603439511117,26.7528402377901,16.8828617226957,9.48395485932353 -"Tfru13278_t",0,0,0,0.100693909417479,0,0 -"Tfru13279_t",8.52867775234998,8.28947782667352,8.19385180846627,6.96150958837363,8.53684636333856,7.34354651240562 -"Tfru13280_t",0.155718956017511,0.124992595026848,0.268195425273156,0.483218779391759,0.134780063611342,0.455718701215034 -"Tfru13281_t",6.29308933292172,6.09579135749142,5.29706734765779,5.26140563865565,4.23874000954437,5.22738610745313 -"Tfru13282_t",0,0,0,0,0,0 -"Tfru13283_t",0,0,0,0,0,0 -"Tfru13284_t",1.74307044868385,5.36491949415823,2.98572337928295,5.91695007748849,7.33893503980255,5.42536218785575 -"Tfru13285_t",1.73769924280574,1.75903929620111,0.000425239606129262,2.07662973602619,0.983030937078078,1.49017618264825 -"Tfru13286_t",0,0,0,0,0,0 -"Tfru13287_t",3.3604150708579,1.68583762542462,1.80864289918585,3.04145953395496,2.54498455114117,3.99522888871455 -"Tfru13288_t",3.0899028236549,3.13535380717416,3.89090422448031,14.6841557751171,7.69525416970413,5.86498662465436 -"Tfru13289_t",0.681944987841909,0.715809919006393,0.70019269278503,2.08904494995345,1.407511191925,0.767593628802719 -"Tfru13290_t",3.34061881123576,3.02904551254496,3.1431496627972,11.0703239927248,10.5483264585485,10.2743509429954 -"Tfru13291_t",116.706307190605,192.914500163455,110.082805647744,281.951518958528,308.247742738604,237.304967464812 -"Tfru13292_t",0,0,0,0,0,0 -"Tfru13293_t",16.0318309617154,16.3910865073267,16.8909507429297,13.9890462877612,15.814098337886,15.4645566300908 -"Tfru13294_t",234.30586400652,237.721630873062,238.343358758645,169.786971785618,199.28387662625,175.074104472496 -"Tfru13295_t",1.87244524750626,2.15426501911615,2.68743372835936,3.22804026104326,5.29417291470674,6.07344201850538 -"Tfru13296_t",20.5816067814237,29.2862660986904,24.0078211116874,52.6425067283328,70.9324361056208,51.6087473375154 -"Tfru13297_t",0.465984657210881,0.854941426522784,0.630588649478425,0.688580378980068,0.518561488799423,0.0974089696139108 -"Tfru13298_t",9.83808071552343,9.17758937301445,8.77087058446882,5.23406163592911,3.59357995086673,3.75795583265807 -"Tfru13299_t",108.052223255717,62.1174727640258,68.8299954290597,1.59533514585728,0.23557400967058,1.85855472477168 -"Tfru13300_t",0,0,0,0,0,0 -"Tfru13301_t",0,0.0582830639731932,0,0,0,0 -"Tfru13302_t",5.39156443690736,8.41935243502608,7.17547941333942,7.30071966810326,7.21199156016,7.02867661958578 -"Tfru13303_t",17.0398405715672,7.63398170003599,15.0151485970146,21.7247109568212,31.555064515497,25.8037279459793 -"Tfru13304_t",0,0,0,0,0,0 -"Tfru13305_t",0.863613239226758,0.539159948736599,0.826335990490393,0.545909355853873,0.622905576684629,0.421233990814696 -"Tfru13306_t",67.5594283788962,65.0326217114263,72.4017111036316,29.3922560004051,44.3486914263432,49.6192394728421 -"Tfru13307_t",0,0,0,0,0,0 -"Tfru13308_t",0.270419667719251,0,0.0776241587633411,1.30534743946565,0.780191462642908,0.923294890095802 -"Tfru13309_t",0,0,0.0550995551922574,0,0,0 -"Tfru13310_t",41.0120198147122,39.5784966859075,43.8702811707944,38.0711207310079,35.0927732662819,34.1092612944711 -"Tfru13311_t",124.452801665932,149.615713498789,137.840202914277,134.903842108423,104.930914010652,57.6538103444715 -"Tfru13312_t",32.2890349974372,20.5215281038837,38.3702745902044,49.2359103460666,48.4192654923386,32.9584841826021 -"Tfru13313_t",29.7758297417788,20.4861281064257,26.0994038616692,44.5494072785446,28.0730664773257,24.8972394233428 -"Tfru13314_t",0.680245965760708,0.273010141769168,0.878692906487051,0,0.58877606735481,0.497692792116419 -"Tfru13315_t",0.404760915922391,0.0721986135085488,0.774579400079592,0.511716960439042,0.66174269454573,0.690988359932512 -"Tfru13316_t",1.26992430003351,1.41139894221596,1.5142126597835,6.56793587066686,3.88934516121241,2.50148499293398 -"Tfru13317_t",0.939413158786153,0.323163762062226,0.808977654587919,1.24934440007278,2.20696971573173,2.65104890624952 -"Tfru13318_t",15.1825982117074,16.0459243865716,14.1051395911349,17.2743916726203,15.5502498391586,21.2906080723899 -"Tfru13319_t",32.4813389903926,34.6019178488107,37.1225034200436,30.9019754898936,24.469336632179,29.9257093188092 -"Tfru13320_t",47.0552063743149,47.322860463923,48.8822405185364,46.8103744009045,45.6070989992812,41.6450125757471 -"Tfru13321_t",0.277190132983021,0.222506401362024,0,0,0,0 -"Tfru13322_t",0,0,0,0,0,0 -"Tfru13323_t",0,0,0,0,0,0 -"Tfru13324_t",0,0,0,0,0,0 -"Tfru13325_t",0,0,0,0,0,0 -"Tfru13326_t",0,0,0,0,0,0 -"Tfru13327_t",1.72455318885669,1.58201771300844,3.18236287246777,3.82252978712396,4.6912157624722,6.84947880763153 -"Tfru13328_t",3.52984775788903,5.66668108484667,5.4715247283258,2.19072715182352,0.611040707584934,1.54953932088823 -"Tfru13329_t",0,0,0,0,0.0679568638488963,0 -"Tfru13330_t",0,0,0,0.166792406578281,0,0.117975162814545 -"Tfru13331_t",1.60715503388856,1.52458359168835,2.13891681990674,1.66241266452197,2.52917719368066,2.13791512439575 -"Tfru13332_t",1.23848221284689,0.994105725066112,0.888768009427935,1.70808538235449,1.42926475318563,1.35917822711892 -"Tfru13333_t",0,0,0,0,0,0 -"Tfru13334_t",1.56541074729405,0.837683292136455,0.449352273089652,2.15897748639216,2.709832707515,7.25364060062843 -"Tfru13335_t",0,0,0,0,0,0 -"Tfru13336_t",0.275443858267041,0.12633911946976,0.304970231244452,0.244212207477146,0.238406046945308,0.287892551879989 -"Tfru13337_t",0.550286310730005,0.14723472711132,0.157960078531515,0.189735466871801,0.635055408893616,0.402609562181513 -"Tfru13338_t",0,0.395670188699826,0.121283681420677,2.18521820185963,1.76756201612008,1.54564274500531 -"Tfru13339_t",63.8929493836487,67.1751390973793,60.1495033139201,46.9453524124411,47.779403450543,47.2174118589606 -"Tfru13340_t",0,0,0,0.296988529826673,0.248509379078329,0.126039083717794 -"Tfru13341_t",0,0,0,0,0,0 -"Tfru13342_t",1.39500625635245,0.87091242641862,1.46827098826895,0.801649850805209,0.670791921755711,1.02063752479225 -"Tfru13343_t",0.731503615558484,0.496830914391715,0.872218946693778,0.349225092407038,0.584438132498211,0.329350621976572 -"Tfru13344_t",0,0,0,0,0,0 -"Tfru13345_t",0,0,0,0,0,0 -"Tfru13346_t",0,0,0,0,0,0 -"Tfru13347_t",0,0,0,0.0756958569924082,0,0.05354099288012 -"Tfru13348_t",0,0,0.716294031928507,0,0,0 -"Tfru13349_t",47.0805370619002,54.0057681276725,44.2528047988397,40.6172656362825,27.9757556836776,24.7472597790622 -"Tfru13350_t",0,0,0,0,0,0 -"Tfru13351_t",0,0,0,0,0,0 -"Tfru13352_t",7.31879093282304,4.87471120604708,5.83325049969115,3.70467730867015,3.77384178111758,2.39252318137893 -"Tfru13353_t",1051.12719432771,554.769574255826,1059.22527151264,178.956589992601,145.139902973109,134.282505372667 -"Tfru13354_t",1.5946025561014,1.95361802746509,2.02365639069745,1.82305266770527,2.68772451526254,2.82456818382954 -"Tfru13355_t",4.1316578713987,2.2109345893258,6.5229743863906,7.83514165161479,2.38406046794884,3.02287179283258 -"Tfru13356_t",0,0,0,0,0,0 -"Tfru13357_t",7.11300672893262,6.01809312508558,6.62203349816329,5.56788930701137,7.32130240275981,7.3139201624065 -"Tfru13358_t",0.226443064073982,0,0,0,0,0 -"Tfru13359_t",0,0.120416973244615,0,0.155176506834437,0,0 -"Tfru13360_t",4.57482249745506,6.00892618963229,5.37220663124509,4.08682681365943,4.4996190791039,6.23779072495417 -"Tfru13361_t",0,0,0.556505507441799,0.334226322412633,0.55933726398707,0.236404076255299 -"Tfru13362_t",1.98673188310855,0.911263581310603,2.44411202592682,3.52292610110613,4.42178783016805,2.90713120800435 -"Tfru13363_t",0,0,0,0,0,0 -"Tfru13364_t",0,0,0,0,0,0 -"Tfru13365_t",9.47298017007419,7.9639569723323,9.78921260568245,4.64148127267396,6.21412082008187,8.13454500966304 -"Tfru13366_t",1.0245167898957,2.05589954320075,2.20566207217786,0.529870998946858,0.886754199003891,0.74957390032168 -"Tfru13367_t",56.5025537531253,60.2724242668162,52.4986606468301,45.3719622761619,50.8353420061169,48.4105333866295 -"Tfru13368_t",1.30289045861426,2.0079455588184,2.37861224954963,3.66570805226759,2.7064706321955,2.32591107283439 -"Tfru13369_t",0,0,0,0,0,0 -"Tfru13370_t",0,0,0,0,0.313421742751375,0 -"Tfru13371_t",2.35244922817785,2.19883409664827,1.45705271213295,2.22765012905137,2.22094045552854,2.06659789275106 -"Tfru13372_t",3.95369181716695,4.07559859249506,2.48218788823342,2.70398972481157,2.34140273390181,2.51525292833618 -"Tfru13373_t",1.31266213693194,0,0,0,0.568076908684103,0.960391559697948 -"Tfru13374_t",0.763730680820012,0,0.657688312249044,0,0.661034933545786,0.558773258636267 -"Tfru13375_t",6.55164833656895,6.2574032296116,4.28503747092402,9.60776950508971,8.25477995716357,9.40482159238751 -"Tfru13376_t",3.3604150708579,3.37167525084923,2.53210005886019,2.60696531481854,2.90855377273276,3.07325299131889 -"Tfru13377_t",0,0,0,0,0,0 -"Tfru13378_t",0,0,0,0,0,0 -"Tfru13379_t",0.115319666124156,0,0,0.0596423087352674,0.0499065506645978,0.2109301984433 -"Tfru13380_t",0,0,0.198207441006668,0,0,0 -"Tfru13381_t",0,0,0,0.39231983669203,1.31311682741885,0.416241940133483 -"Tfru13382_t",12.7978424427532,10.4616465727284,11.6970176283795,10.2329479647083,9.10621975575211,10.1675846628681 -"Tfru13383_t",31.2163720728325,37.1895340576069,34.5222060548641,40.6736439817408,32.0433890216321,21.636983250485 -"Tfru13384_t",4.02846961541406,4.91772813810177,4.40867999401945,3.90654143079701,2.03395368722571,3.56141205787203 -"Tfru13385_t",52.6543910750621,45.4938716945572,50.6420011772037,44.1837783403518,47.417619604763,34.628202719086 -"Tfru13386_t",0.803927050444473,0.645296698727125,1.63185825490452,3.0886807101974,4.37376507177859,4.32734187431094 -"Tfru13387_t",22.8259705375798,20.978108072004,21.9247065271082,20.7467496918839,23.9067221271644,22.4317822839031 -"Tfru13388_t",0,0.980138154316637,0.210307313858819,0,0,0 -"Tfru13389_t",0,0,0,0,0,0 -"Tfru13390_t",13.437793292556,17.3045703323217,14.4025418439195,26.3996487576561,22.3413077479761,25.1094318047918 -"Tfru13391_t",1.04742886318211,0.753270401236593,1.22228975016704,2.10529554697916,1.6105272130663,1.10358163260504 -"Tfru13392_t",13.6738201068281,10.8967490542668,14.0625162184942,10.3790188177787,9.87682194487706,8.0609914526397 -"Tfru13393_t",0,0,0,0,0,0 -"Tfru13394_t",0,0,0,0,0,0 -"Tfru13395_t",1.36824717868807,1.86705144183834,1.17826898969762,2.97211029376706,3.31594078324582,1.80190729132703 -"Tfru13396_t",6.69313441310982,5.74296333935858,3.97503933886999,7.52009225428425,8.48994061408945,8.02085258723335 -"Tfru13397_t",27.8726016391251,30.502632175907,28.3973838376843,25.9884392754496,29.1534945911765,30.2729780640197 -"Tfru13398_t",0.888476370085813,1.50556591694795,1.3602014752984,4.49300720141072,4.10136842218486,4.47806546326136 -"Tfru13399_t",4.15071031479483,3.33169491190635,5.29010176046453,3.09126321915242,2.44295524389609,1.09325205224782 -"Tfru13400_t",0.298969312353906,1.1998844309072,0,0,0,0.218736867709529 -"Tfru13401_t",0.185044882756492,0.074265974688309,0,0,0.240243979025283,0.0676927971656142 -"Tfru13402_t",0,0,0,0,0,0 -"Tfru13403_t",0.0683566938742453,0.109737192867347,0.412058593793358,0.141413903705915,0.118330096531032,0.0500122537236596 -"Tfru13404_t",2.19585482322846,3.0693032927965,2.99946186074985,2.78044971236467,1.76951220963913,3.51782902115817 -"Tfru13405_t",2.91878952529198,2.03726601259772,3.60635744248538,1.96900703536143,3.62470825151741,2.78542567189023 -"Tfru13406_t",2.0866508269366,3.42265090258993,1.48441533842467,17.736373092178,16.647230016721,16.3951077506645 -"Tfru13407_t",30.0191320597203,27.9094969350502,28.8266991644017,19.6583502745528,19.0663550654718,11.5345742090632 -"Tfru13408_t",3.53006117630931,3.0373616225909,3.36796863935454,4.46578097056783,5.42935899232914,5.31408921110762 -"Tfru13409_t",32.9409108919623,23.4242701637946,31.9844217961287,38.8757985543116,54.5353832387393,45.9370447123454 -"Tfru13410_t",0,0,0,0,0,0 -"Tfru13411_t",0,0,0,0,0,0 -"Tfru13412_t",3.04490492267932,3.23550472811904,2.74698956037892,6.92911043289705,5.01994092635962,4.20092573200648 -"Tfru13413_t",7.80501811221218,5.29671956636788,7.08792487518778,8.29355519635402,8.04519730211131,5.50278407229395 -"Tfru13414_t",12.6328258867239,12.3153994274195,12.0276996769679,12.2477774922823,12.3054198077155,11.6219294262282 -"Tfru13415_t",2.68594455041928,2.27573107517355,4.36901304243828,6.63703425323844,12.1404997618508,11.2449398971881 -"Tfru13416_t",84.5084620092228,72.2311456901297,91.6474386069667,124.680949839148,106.052998235019,59.1570832716323 -"Tfru13417_t",37.3162371240615,31.521243042823,27.8446883549077,20.7142592844109,20.4613375872479,20.2262929428662 -"Tfru13418_t",32.3539554042124,31.0977079555023,33.0672569303316,23.8030357172039,23.6037581311306,22.0630917937693 -"Tfru13419_t",5.37359348852205,5.35308806245623,6.44542072582506,4.9628123259443,7.30875876643298,10.0394101144169 -"Tfru13420_t",7.10210081716352,6.67584198722094,6.03551579261128,12.3726941155644,10.8383260719185,10.9392764985767 -"Tfru13421_t",4.41290883880749,3.4819158388259,4.03285034515622,2.1581095751282,1.79283732641201,1.55941370293829 -"Tfru13422_t",2.68935657347621,2.05589954320075,1.87481276135118,1.45714524710386,1.77350839800778,1.59284453818357 -"Tfru13423_t",5.32748730745764,5.39468040135877,4.74658477932676,3.32758987338626,2.53611700915113,3.56797176553119 -"Tfru13424_t",68.7561561560711,72.475262401432,62.1072034273164,64.3909990976542,56.1129532923744,46.7758132190057 -"Tfru13425_t",42.8160993584211,35.7814186250244,50.2788759619232,96.1861916317949,81.3908527548089,51.1417775775459 -"Tfru13426_t",0,0,0,0,0,0 -"Tfru13427_t",37.894266561274,30.9669546251146,33.858158162927,34.0998913512964,25.4087900158743,26.7801029168252 -"Tfru13428_t",0,0.128689895070581,0,0,0,0 -"Tfru13429_t",100.505898187909,101.882593592125,127.846382517603,77.6880193729591,68.3548041289498,70.169494884327 -"Tfru13430_t",10.0110402902365,10.8143908944341,10.7494813819536,8.44394425868898,8.61615012284956,10.3443812046896 -"Tfru13431_t",22.6309162130706,19.4059626790008,28.9002597294348,59.264783109541,53.0304646473943,48.7843576020133 -"Tfru13432_t",10.5122473540914,13.7117137417226,11.2403667144397,22.7441186659525,24.263222295998,22.945246525384 -"Tfru13433_t",68.8043907319428,60.9411906700348,69.9310964357866,34.9157100358666,45.5511630646209,60.833839699791 -"Tfru13434_t",134.733623124019,131.777065060145,109.981088424886,56.9175715634236,53.702407933206,68.7547165173767 -"Tfru13435_t",869.996161472949,845.477419563711,774.818958025586,211.019114858836,291.223238205747,567.800333438275 -"Tfru13436_t",3.70534941654339,3.73128455988126,4.23515418253623,2.43902127823173,2.507373942011,3.05600137067796 -"Tfru13437_t",72.3956365317359,64.1389366845539,62.870081651533,83.5565806031583,84.4296924153455,72.2629757418224 -"Tfru13438_t",9.80938511092798,7.7613208443235,17.0757611499448,22.5400670811389,20.0129846747667,16.8144617373243 -"Tfru13439_t",0.1078438726206,0.346256765170653,0.0928699819864363,0.11155178925197,0.0933425472635675,0.236707547470004 -"Tfru13440_t",0.195259446302028,0.548558437093425,0.126111067926962,0.302959362558808,0.464760190297216,0.357147355179417 -"Tfru13441_t",58.4232610849945,59.7277173634579,55.4065604564023,40.3690524496154,39.0022952267103,40.135766677672 -"Tfru13442_t",62.3040471067473,63.81830593938,60.9794121184923,73.116674255273,62.4808461231126,64.9891176124024 -"Tfru13443_t",25.4498999399428,28.1473356381932,27.9376663252453,25.8994718138847,21.3607049277388,26.6339407893922 -"Tfru13444_t",0.342899497026316,0.137619397993846,0,0.0886722896196782,0.0741978003248153,0.0627194488024262 -"Tfru13445_t",341.058520218511,339.931193323324,352.071189181095,162.909893404546,116.39323791937,87.3753894955768 -"Tfru13446_t",1.23544671722717,0.856441574413574,1.25734533098481,0.755137011868115,0.583266130895607,0.862811668685783 -"Tfru13447_t",6.64989789747605,7.11699261392977,7.63543176437297,7.33710554742245,4.22085639842485,6.40598908480717 -"Tfru13448_t",6.04270442312109,7.47764141546982,9.54009441328799,11.9800603877775,12.6395693420455,11.4210800476586 -"Tfru13449_t",0.278180055534594,0.22328975171187,0.479110701771086,2.30195612787509,2.16696887041348,1.62821350533451 -"Tfru13450_t",0.768094873338948,1.15600294314831,0.826808182484959,3.27732782434331,3.82267067273449,3.37179756761843 -"Tfru13451_t",0.516457234250702,0.690917059600252,0.148249417966053,1.06842840771252,1.04302645538572,1.88929487171243 -"Tfru13452_t",6.59970612345012,9.84703677697187,8.89277284997108,17.82952248582,14.7174971402143,16.7580338713322 -"Tfru13453_t",16.1662046385082,13.192571539564,15.7313647934317,17.8925778502619,11.6603342396278,10.5267292967562 -"Tfru13454_t",1.99199862447762,1.52941970141615,1.82728870227024,1.92610839410992,1.91154951558468,1.48910196486585 -"Tfru13455_t",0.0776436014523544,0.0623230175757713,0.0668629537591811,0.401565821752702,0.201609549865949,0 -"Tfru13456_t",1.29246733494535,0.957635574205698,0.85616231914123,1.85109963182381,1.80708962211207,1.01835602079206 -"Tfru13457_t",0.782705373647026,0.628262469102341,0.78636647790689,1.88910530059314,1.24200665761104,1.71796751067515 -"Tfru13458_t",0,0,0,0,0,0 -"Tfru13459_t",0.0638376723187291,0.0512412652104746,0.109947896607042,3.76385569768634,3.53623558994865,1.82153292798536 -"Tfru13460_t",35.1267553114319,30.8757542844063,31.8597191144343,14.0917044044245,17.6871513206722,15.1463978904428 -"Tfru13461_t",0.152413600819027,0,0.052500519569981,0.0630615702665346,0,0 -"Tfru13462_t",0,0,0,0,0,0.0765442837190258 -"Tfru13463_t",1.83661613534194,2.0924359807809,2.29587956173098,1.89976315842442,1.38453723314148,1.47377435408804 -"Tfru13464_t",0,0,0,0,0,0 -"Tfru13465_t",0,0,0,0,0,0 -"Tfru13466_t",0,0,0,0,0,0 -"Tfru13467_t",0.587485152247576,0,0,0,0,0 -"Tfru13468_t",0,0,0,0,0,0 -"Tfru13469_t",0,0,0,0,0,0 -"Tfru13470_t",0.416686340339114,0.591747659439391,0.441637335169379,1.4256582543202,2.19168016068188,1.73537368452955 -"Tfru13471_t",84.2585610455138,85.0638305531829,96.069126521009,59.0450046684652,75.3989936653766,63.4624472948863 -"Tfru13472_t",51.0744904235505,34.4830423382308,42.3386860491233,30.1183492810475,33.0517474174178,37.0187292136139 -"Tfru13473_t",95.1792100073173,136.973541610962,89.2693051730378,61.6151627863638,62.5185868149151,50.0338536399972 -"Tfru13474_t",2.21565828847773,1.03743853872284,1.4310141619932,0.763945879800305,1.75791711538793,1.35088043574457 -"Tfru13475_t",0.997060367501864,1.05848916757135,1.05250275909743,0.765188900469964,1.08569675666709,0.941271972838862 -"Tfru13476_t",22.4063665553668,26.9127291873698,29.1986565729746,38.9257674470549,25.7021943284547,19.3559635700033 -"Tfru13477_t",156.122288163248,146.443577418859,158.663780512269,119.346051608288,153.541679848124,124.249112352892 -"Tfru13478_t",0.0561566689648713,0,0,0,0,0 -"Tfru13479_t",71.2840523694361,75.6457041428154,68.979133145187,68.4866135510085,62.274728054798,51.9714466254718 -"Tfru13480_t",0.241640585152773,0,0,0,0,0.0589310257204005 -"Tfru13481_t",1.12661825278565,0.780193063567531,0.741909787728089,1.23390417214656,1.70169133429671,2.1172555449002 -"Tfru13482_t",0.904553181926756,0.363033674384843,0.194739477705071,0.701740327003644,0.587191205800692,1.32360828697449 -"Tfru13483_t",1.38573817354965,2.08557232011293,2.23749637012682,3.40428460354311,5.09746537489247,3.16830205290607 -"Tfru13484_t",7.09431130458968,7.93551461926923,6.72020951917596,3.50341293555928,3.704028571922,4.83884562512208 -"Tfru13485_t",0,0,0,0,0,0 -"Tfru13486_t",0,0,0,0,0,0 -"Tfru13487_t",0,0,0,0,0,0 -"Tfru13488_t",0,0,0,0,0,0 -"Tfru13489_t",0,0,0,0,0,0 -"Tfru13490_t",0,1.16264663365856,0,0.749127961086748,0,0 -"Tfru13491_t",0,0,0,0,0,0 -"Tfru13492_t",0,0,0,0,0,0 -"Tfru13493_t",0,0.564297113112842,0.302701740449514,0.363593488817091,0.912726079309444,0.771527947611436 -"Tfru13494_t",126.787937786612,182.652280208664,152.877651563432,81.6136241885672,59.9606382426874,80.6783246377348 -"Tfru13495_t",0,0,0,0,0,0 -"Tfru13496_t",33.2297537674116,47.4495785983931,29.0090135523232,42.5214569824128,19.2066033383956,24.7066287935207 -"Tfru13497_t",0,0,0,0,0,0 -"Tfru13498_t",0,0,0,0,0,0 -"Tfru13499_t",12.7661471452167,12.5563539964125,9.17125474068556,9.85731040451089,8.39190070252579,10.5241459037591 -"Tfru13500_t",0.116762163685125,0.0937227310868445,0.201099974892103,1.08699040228709,0.505308160655448,0.854274632750211 -"Tfru13501_t",0.315235935352523,0.1265168949662,0.135733050595561,0,0,0 -"Tfru13502_t",0,0,0,0,0,0 -"Tfru13503_t",3.4441553178005,3.30662685372674,2.3843845294733,5.09936945288728,5.20219625750032,5.38560411661991 -"Tfru13504_t",0,0,0,0,0,0 -"Tfru13505_t",0,0,0,0,0,0 -"Tfru13506_t",0,0,0,0,0,0 -"Tfru13507_t",2.30069911490271,2.68614791768901,3.12197280523366,3.53364593156593,3.37923259902562,4.08066787229064 -"Tfru13508_t",0,0,0,0,0.0617265231904236,0 -"Tfru13509_t",0,0,0,0,0.0293912062725623,0.0496888115007095 -"Tfru13510_t",11.1812371961998,10.0058707983835,9.75886456395241,7.11132624845585,7.8468177321927,8.84389350019823 -"Tfru13511_t",13.2430150575681,12.6230206435735,11.404250792896,5.13687746762274,10.029495768044,6.3584544647977 -"Tfru13512_t",0.930727206214287,0.825716387963076,0.970234091691533,0.861387956305445,0.678379888684026,0.50175559041941 -"Tfru13513_t",28.5899187965659,31.4218950079143,30.6806439443044,13.6490330618772,19.0350377796647,19.9520089488765 -"Tfru13514_t",2.8515271489003,5.28199778200924,3.4000597582606,16.7898549431307,16.5172440096443,25.6773095880429 -"Tfru13515_t",151.020130769352,167.039863978557,160.720763389986,159.549871310657,197.949209865084,182.57937268958 -"Tfru13516_t",0,0.080373665097717,0.258685515974138,0.103574307303081,0,0 -"Tfru13517_t",0.523973243896761,0.70097198562354,0.902441363419134,4.78756623996475,4.61075312205557,3.89747260853331 -"Tfru13518_t",406.618406402712,484.678317309577,385.334893001868,461.297433953281,409.015374290545,372.876585920271 -"Tfru13519_t",0.0579381908768603,0.0930117310579097,0.0498935972189199,0.149825592805663,0.20058991536088,0.296727875023892 -"Tfru13520_t",0,0,0,0,0,0 -"Tfru13521_t",0,0,0,0.0951794565468616,0,0.0673220808613118 -"Tfru13522_t",0.409473810421352,0.465625339272436,0.440774061540012,0.988289044339549,0.383948000056112,0.773930485222465 -"Tfru13523_t",0.128652950645402,1.23920683032743,0.443159056462076,15.1707016788828,13.9191891880396,20.0490930214678 -"Tfru13524_t",0.0585438165654686,0.0939839791177485,0.0252075665391756,0.0302783427969633,0,0.171331177216384 -"Tfru13525_t",0.145978065632402,0.585868853318719,0.377127972028326,0.603988488808234,0.252697981992421,0.320408652439849 -"Tfru13526_t",0.196822436793707,0.0789927821362568,0.169494063180243,0.882221764744006,0.141963772585551,0.480008276660505 -"Tfru13527_t",0.0223550763095922,0.0179439874978671,0.0192511218646711,0,0,0.0490673708033883 -"Tfru13528_t",4.94178686890867,4.4333446204938,4.00529915390637,5.41238473664749,5.9127174445692,5.52972856569488 -"Tfru13529_t",0.872511331454202,0.800397685661538,1.28805429022138,2.06288056563287,2.37344892433682,1.18552786015269 -"Tfru13530_t",27.7997974043699,31.6324441716037,21.3091017940442,5.37192852750487,3.70179571075079,4.023167552272 -"Tfru13531_t",3.07643633247554,2.84930302888667,3.15875661266261,4.6509240358265,4.50621007043104,3.54939077870632 -"Tfru13532_t",1.80314955021643,1.57893084917818,2.33485244572689,2.45860143511342,2.48291175721089,2.69846604115805 -"Tfru13533_t",26.8890113629188,27.7499436395042,29.0975572265293,22.7364460140821,22.226670447852,19.4127580992709 -"Tfru13534_t",2.83725325175399,5.38801481601936,1.37063547549504,1.28845073220027,2.2161550574776,3.03781185303349 -"Tfru13535_t",3.38228031735392,4.05862494612189,3.2362866028539,2.93314519628492,2.12907555547742,3.52443002664467 -"Tfru13536_t",16.6526046127593,15.5900656161422,11.348913982622,74.2421518069817,100.612525326349,70.5426061049846 -"Tfru13537_t",0,0,0,0,0,0 -"Tfru13538_t",0,0,0,0,0,0 -"Tfru13539_t",0,0,0,0,0,0 -"Tfru13540_t",3.06779465738432,4.3566590319962,3.45471115574825,2.44097875919339,3.67654269025209,3.45309324867291 -"Tfru13541_t",1.36233043413158,2.91604346019393,1.17317377244487,1.40917044044245,1.17914342137815,1.99346139977441 -"Tfru13542_t",4.0980671595828,1.23353972592045,2.64679448661344,1.05974199789372,0.443377099501946,0.37478695016084 -"Tfru13543_t",4.07098742064283,4.45595848129854,5.73666470226348,4.9765857698445,3.52357835903749,2.16616950929966 -"Tfru13544_t",4.11621090438615,3.58265374942657,4.61235969568056,3.02658310850637,3.39102343633247,3.62839786460317 -"Tfru13545_t",0,0.037411098483764,0.0401363195381048,0,0.0201702758164547,0.0170499472472615 -"Tfru13546_t",1.77682224500087,1.78277607447415,1.43448214079512,0.54563054617264,0.792979795936725,0.853117155554482 -"Tfru13547_t",3.51338733352093,2.74525742112076,3.29330979422441,1.47940296671173,1.1840892487069,2.36579060767701 -"Tfru13548_t",0,0,0,0,0,0 -"Tfru13549_t",35.6468344822828,54.4933449362521,30.7835764009224,28.8972317375595,38.4802704139853,47.6921977913848 -"Tfru13550_t",0,0,0,0,0,0 -"Tfru13551_t",0,0,0,0,0,0 -"Tfru13552_t",12.7244632631452,11.1421970423933,13.9461621142041,17.6489906568323,19.3987020126325,13.3297720105397 -"Tfru13553_t",0,0,0,0,0,0 -"Tfru13554_t",0,0,0,0,0,0 -"Tfru13555_t",0.0802487181100393,0.0644140943445823,0.0604680611071089,0.249023552460278,0.17364500135718,0.278886241600281 -"Tfru13556_t",12.1252090185594,12.0078406309532,11.9333139740097,19.1389206180055,16.9006873392157,16.1871432157565 -"Tfru13557_t",5.77170527437425,7.43184144032607,6.52354022797949,5.6799339715353,3.29571336366427,2.40464451610829 -"Tfru13558_t",13.730902973283,7.17377712946645,18.261346100097,23.5316018100964,13.8536047685772,10.9376895629144 -"Tfru13559_t",0,0,0,0,0,0 -"Tfru13560_t",0.473742726154779,0.190132063017814,0.475958657680486,2.20513983396305,1.23012142643773,0.519911220335902 -"Tfru13561_t",0,0,0,0.692421066352866,0.579393181819276,0.244880716439752 -"Tfru13562_t",8.03040366197659,7.62345690908925,9.24269716863356,11.1818365218932,8.6214024973007,6.94871540316586 -"Tfru13563_t",0.545521927087321,0.437879902707692,0.234888688205954,1.97497372334738,4.48559429236384,4.39036141616984 -"Tfru13564_t",0.879689809125104,0.79437375020008,0.37877338202845,7.16574235748551,6.56708803398431,5.14890553519394 -"Tfru13565_t",20.9176398792728,23.0940812687381,17.3304569036594,9.84202635706774,5.91514868387225,5.58019868985541 -"Tfru13566_t",2.74035795700437,2.72491768082265,2.67686193453017,3.21534183586837,2.05326337412975,2.96253209484488 -"Tfru13567_t",9.19874099807123,9.74872741477365,10.335102281062,5.20352358247213,6.77999061650708,6.5198181509588 -"Tfru13568_t",13.1612156874742,12.1439547834394,14.5115125732627,13.3592658885284,12.6690299763982,15.4787559152811 -"Tfru13569_t",0,0.0618088955242755,0,0.079650635955348,0.0666488032248571,0 -"Tfru13570_t",3.32134047701071,3.37167525084923,4.62676090489403,3.13240018447189,2.19832552590267,3.144723991117 -"Tfru13571_t",0,0,0,0,0,0 -"Tfru13572_t",0,0,0,0,0,0 -"Tfru13573_t",0.467373445181905,0.375151627354573,0.603719465653134,11.7234879711358,9.10187202871866,7.09541024421328 -"Tfru13574_t",0.770737401572913,0.618656009330134,0,1.19585564899933,0,1.40974907858665 -"Tfru13575_t",0.839264503211263,0.673661388781065,1.08410163787363,1.82305266770527,1.9613124841105,1.90351334127643 -"Tfru13576_t",4.21761728703332,1.6469512758558,3.33752285331445,2.47608645912209,3.84781537098296,2.0849748923466 -"Tfru13577_t",0.329883678421914,0,0.0946933455071124,0.11374194218231,0.0951751888983234,0.402258244937027 -"Tfru13578_t",6.98323031097674,7.8983828294453,6.19585476799182,23.5305433537358,21.154783422584,14.9404994288298 -"Tfru13579_t",393.481160041151,450.779108313896,355.20581761041,146.095766420183,136.868527713301,159.127432165892 -"Tfru13580_t",11.4477659334483,17.5095581696462,12.1093687670812,17.8086686384242,17.710346201994,18.7956459769503 -"Tfru13581_t",42.768919083646,47.2034535118892,39.0854777174708,33.5181254762384,35.5070200827116,36.3202626246777 -"Tfru13582_t",21.6455507695169,21.7299014976598,16.9638230544328,12.4735461092172,10.6221477907012,14.9134659265255 -"Tfru13583_t",12.8401402019011,10.5038420035062,9.73740961902466,6.61089311044058,4.84341785734758,8.02960075872989 -"Tfru13584_t",0.029738186467769,0,0,0.492170442915594,0.386091208769836,0.0870301732054905 -"Tfru13585_t",3.21597815713398,3.55509076147299,2.64797953003704,2.21770051406099,1.90452647979479,2.53868447234535 -"Tfru13586_t",92.5249419847698,85.430960747869,97.0312474292948,88.6603068778377,80.8204553402938,60.8421031389482 -"Tfru13587_t",1.96796822213177,1.82537337890848,2.31611740343424,2.03563142750016,1.82076074868358,1.93578142607801 -"Tfru13588_t",5.95050962321907,4.51583034241236,4.33235774949862,3.46923909677505,3.18386440028699,4.70981462932321 -"Tfru13589_t",4.83930741771011,4.81667892978461,2.83381836738796,4.20478276583635,4.02104208211903,3.96548773073405 -"Tfru13590_t",12.5742212521255,10.093084265015,13.1822996556713,6.03202386653603,10.7256863636566,9.86640873568753 -"Tfru13591_t",0,0,0,0,0,0 -"Tfru13592_t",1.97516559807478,1.90251268072997,2.15449624354427,3.81374236232597,4.10297554147255,3.46824788988965 -"Tfru13593_t",13.472328999854,22.6829782195333,25.5615241553776,44.6390410273144,52.3312152069258,76.4506741517136 -"Tfru13594_t",0.809206781511315,1.18097206684737,1.07695023769385,0.608748468142099,0.573051312491131,0.80733441102948 -"Tfru13595_t",2.6781831521099,1.92343890149117,1.33523972423116,1.16642743392328,1.70804332291353,2.99074955531032 -"Tfru13596_t",0.102326890099205,0.328543264394566,0.176238041333578,0.317535361122843,0.708539286902013,0.449196539535038 -"Tfru13597_t",17.006786675382,18.0117609464298,19.1882264468452,14.9853676328213,12.062184109037,10.4841995205255 -"Tfru13598_t",0,0,0,0,0,0 -"Tfru13599_t",0,0,0,0.230500912008713,0,0 -"Tfru13600_t",0,0,0.217581100653937,0.130674953123736,0.109344126794465,0.184857322786098 -"Tfru13601_t",0,0,0,0.0979693842472206,0,0 -"Tfru13602_t",7.35703883319598,7.48011356735526,8.08534273530954,11.3787476904785,11.6439183562279,15.7891896801704 -"Tfru13603_t",6.22643279168913,6.75080996021804,5.44193438693087,8.45917948761178,5.91202163428811,6.93521692731253 -"Tfru13604_t",3.42433600970574,5.68053982480033,3.73524077005773,5.43117773920529,4.14943133338234,5.17776319189595 -"Tfru13605_t",0,0.130264336800357,0.0465844919300927,0.615510162331057,0.327750747088367,4.35361016155927 -"Tfru13606_t",41.6377960674812,52.9892687206086,42.1831902875647,20.6380510738554,22.8038461670265,19.958070488391 -"Tfru13607_t",11.7409346098495,10.8881778792689,13.5464162869822,7.19244161935463,7.69563074196592,11.1754654229778 -"Tfru13608_t",0,0,0,0,0.0828175903397711,0.0700057629002024 -"Tfru13609_t",6.71063676940783,10.6366297094536,5.04737553261167,8.17147874210058,10.5137307760562,12.5540364862773 -"Tfru13610_t",5.48888124096571,10.6473955289976,6.30234912238989,10.724358221879,10.9532651151007,12.0475979333009 -"Tfru13611_t",0,0,0,0.0637088297853993,0,0 -"Tfru13612_t",0,0,0,0,0,0 -"Tfru13613_t",0,0,0,0,0,0 -"Tfru13614_t",0,0,0,0,0,0 -"Tfru13615_t",0,0,0,0,0,0 -"Tfru13616_t",0.371316582415237,0.521585121678334,0.159880035287147,0.0960208219086018,0.16069357860402,0.135834386356636 -"Tfru13617_t",8.73786022201574,8.85530048450815,9.50036711716448,12.9262661358425,10.689484376836,10.8215648619363 -"Tfru13618_t",0.0807792084340841,0,0,0,0,0.0591010190638247 -"Tfru13619_t",0,0,0,0,0,0 -"Tfru13620_t",0,0,0,0,0,0 -"Tfru13621_t",0,0,0,0,0,0 -"Tfru13622_t",0,0,0.165550837454082,0,0,0 -"Tfru13623_t",0,0.361250919733846,0,0,0,0 -"Tfru13624_t",34.1396750226599,34.7913900386434,34.4434783191568,36.5252112501137,37.8054051137077,30.3652088385292 -"Tfru13625_t",13.9891914507227,13.9552308336721,15.066043059326,11.4353202438639,8.36556731656182,8.95556006081126 -"Tfru13626_t",0,0,0,0,0,0 -"Tfru13627_t",14.6252882638552,18.8376997820726,16.2558187700104,25.5067456578062,34.149011906579,22.5205988432679 -"Tfru13628_t",8.45454747126668,7.90303498288227,7.280651670608,12.6197047086757,12.8754450448998,10.6487237406209 -"Tfru13629_t",20.3815925450062,23.1083732127953,13.8219260225878,10.2117670911517,8.26920140087025,12.022733461111 -"Tfru13630_t",43.1105880800849,45.3148083525789,43.1082555670612,27.033380927473,27.3360316986162,23.5115407418569 -"Tfru13631_t",0,0,0,0,0,0 -"Tfru13632_t",7.05969552701239,7.77144835729954,5.73207353403438,5.73761874009683,3.49166119175602,5.16513107784687 -"Tfru13633_t",0.342899497026316,0,0,0,0,0 -"Tfru13634_t",13.6308227211951,13.620674854424,10.7799907898494,11.2220361233911,8.90864980058876,8.54812090300617 -"Tfru13635_t",23.834404645832,17.8054760438105,26.2151611230308,15.866361934757,15.523180247731,8.80538778411591 -"Tfru13636_t",16.9554411536694,16.6873988074485,16.5822837815822,15.599488192119,19.1002897347309,24.4364132372617 -"Tfru13637_t",24.3458642888684,37.4324762543262,26.5759772941594,32.2767134215629,37.9892737663055,24.8369017257608 -"Tfru13638_t",12.1365835110721,14.6759598160792,13.301838958365,13.2060156660601,14.1880671840623,11.762544281971 -"Tfru13639_t",0.209502186462462,0.336326708314138,0.180413256776643,9.96844592532442,32.2769683008997,35.1009942649389 -"Tfru13640_t",0,0,0,0,0,0 -"Tfru13641_t",5.45590719259715,5.69740836839592,6.06682233522617,1.64373601186541,2.47575510289359,2.86785272834297 -"Tfru13642_t",1.3099331097419,1.54213836837179,1.20325515122551,0.722651507919207,0.151172233510019,1.66121783314534 -"Tfru13643_t",2.98442457341925,3.28207828614135,2.85335551088341,3.01411374393938,2.62380025652116,3.35263962689333 -"Tfru13644_t",92.2160414793563,83.1157154860508,95.9001351196217,38.3971635515909,39.5698594662481,36.5931518966342 -"Tfru13645_t",0,0,0,0,0,0.104414031415138 -"Tfru13646_t",2.5598729764153,2.80194619184146,2.40484374406982,6.49935951062794,11.1789982262236,9.02395615179506 -"Tfru13647_t",0,0,0,0,0,0 -"Tfru13648_t",13.5750772131473,12.5705972069455,13.0059714098758,11.5391723161869,11.7723639677769,11.23824893659 -"Tfru13649_t",0,0,0,0,0,0 -"Tfru13650_t",12.5671260334337,13.4037909562449,12.3047016911824,31.8747808300901,30.9927861028901,25.3165512809466 -"Tfru13651_t",1.70785857909041,1.46878399117343,1.96096809979492,6.77188473194232,7.46143997845287,7.55669176955466 -"Tfru13652_t",38.6849253331757,39.7287469815139,36.7713060018299,51.3565777398383,44.1095011489803,34.8000706369933 -"Tfru13653_t",0,0.253509417357085,0,0.326687382809341,0,1.15535826741312 -"Tfru13654_t",2.83646568006784,2.83957475602629,3.10131483471928,1.58237651885799,1.18615148167212,1.84208639085123 -"Tfru13655_t",15.9757437794884,11.9390467898924,17.315532018435,11.6102553638093,13.2315356054646,8.51442222185068 -"Tfru13656_t",36.5571470349438,38.1531673122413,31.005306843186,13.7208700779923,11.8228337096515,17.0993023577141 -"Tfru13657_t",18.7207158880942,20.1104355316728,17.8859142580241,15.1254085153921,17.3320138896215,20.5792107179225 -"Tfru13658_t",0.146054201619345,0.0234469767096608,0,0.120860700733358,0.379244667863277,0.128230305618312 -"Tfru13659_t",22.0778123256022,22.0942542035171,24.6913706373495,24.3198129482503,28.0432232353927,35.4525430397878 -"Tfru13660_t",0,0,0,0.0730242385103232,0.0611040708557303,0 -"Tfru13661_t",11.6805871446932,14.6496585097059,11.7513429011273,9.06164414241738,8.55456991980224,7.51878739854754 -"Tfru13662_t",0,0,0,0,0,0 -"Tfru13663_t",0.220692758593995,0.472388826738946,0.380100083891947,0,1.33711972914597,3.22933764411792 -"Tfru13664_t",18.2950492750639,20.2840768914892,21.8143673783814,42.0253694838434,55.395980449353,65.4940877829502 -"Tfru13665_t",11.2561007258325,11.7173361822953,10.6019541892262,10.4302869073922,12.228915897219,13.6398388170189 -"Tfru13666_t",8.72835083339714,7.5315343265723,7.98621539900244,9.59272951340155,10.7654263016732,9.65879511557364 -"Tfru13667_t",7.24227383116962,9.88249638609775,10.6023893673886,14.2334312606482,8.14896527953757,14.8363936929372 -"Tfru13668_t",1.82203044580513,1.73919942599491,1.52663878946519,2.08842473441892,2.94094681006097,1.36909277456175 -"Tfru13669_t",0.190643820207521,0.612104432831933,0.492520002804013,3.28664310995782,3.3001744773821,1.85975975268919 -"Tfru13670_t",0.277490922449042,0.222736597909115,0.179221426839225,0.0717579222355777,0,0.101511246616644 -"Tfru13671_t",0.32138629216315,0.15478233745291,0.110704997654834,0,0.111268315712806,0.188110359070781 -"Tfru13672_t",2.76626866963964,3.13756465719685,3.10718894634648,2.55035976873205,2.60249979664707,4.26779585050726 -"Tfru13673_t",0,0,0,0.705451868708584,0.912277013587767,0.907233355370889 -"Tfru13674_t",37.8735304878214,27.6366823665724,37.9518509753635,36.3265658393049,57.8134663477593,51.8926324436259 -"Tfru13675_t",5.04350460892052,5.84115266442148,4.83959334945098,7.08009447992456,9.91552422522532,8.9087436626568 -"Tfru13676_t",0.76373069792225,0.919547795686154,1.31537665395334,0.592492117004213,1.15681115960962,1.81601313123389 -"Tfru13677_t",0,0.0939198497825836,0,0.224511014154143,0,0 -"Tfru13678_t",0,0,0,0,0,0 -"Tfru13679_t",0,0,0,0,0.0486055109079673,0 -"Tfru13680_t",0,0,0,0,0,0 -"Tfru13681_t",0,0,0,0,0,0 -"Tfru13682_t",0.414675063475485,0.625349351007585,0.70420747119712,0,0.112386158142688,0 -"Tfru13683_t",17.3814572630581,18.0297780720801,15.7657965630715,13.4580200022859,15.80228693686,22.9076876939126 -"Tfru13684_t",144.110539666098,110.09523726975,142.197271304209,199.881406648564,209.71609667819,161.338094200025 -"Tfru13685_t",1.48690930929277,0.596756675909071,0.640227568863781,0.769016309765456,0.643485341849581,0 -"Tfru13686_t",3.63096086714991,5.55994859822339,3.6665377986521,2.89224593676288,2.31012213416747,2.88262761666824 -"Tfru13687_t",141.20142369445,131.20787786384,173.74049778315,245.1052970756,252.880565770022,153.181837131782 -"Tfru13688_t",0,0.0865641912926631,0.0928699819864363,0,0.0933425472635675,0 -"Tfru13689_t",11.4014082761074,7.22501839466575,8.78483693888911,6.20706027336788,7.79076903409357,6.14650598262827 -"Tfru13690_t",1.72734341545509,2.15590728301974,1.66012054718082,0.984689448467814,0.853379799769831,0.522365947532955 -"Tfru13691_t",1.61904366368957,1.01078058911968,0.774579400079592,0.930394473525531,0.31140832684505,0.921317813243349 -"Tfru13692_t",0,0,0,0,0,0 -"Tfru13693_t",28.9517832300008,31.7689719850933,32.2096962524332,32.1110269521141,36.0672255682499,38.507492660151 -"Tfru13694_t",10.8216756519153,12.8009365455971,10.0548283208976,15.759620829694,15.8984507068867,14.6891075178292 -"Tfru13695_t",1.80451883279959,0.321878305570332,2.2446164858631,0.207395808657004,0,0.146694653523574 -"Tfru13696_t",13.2575655902611,16.4861962388213,14.4928049157983,13.2160138608953,16.7663974634227,20.6558786497475 -"Tfru13697_t",0,0,0,0,0,0 -"Tfru13698_t",0,0,0,0,0,0 -"Tfru13699_t",48.6484450950572,46.2032119345253,47.0815685937377,40.4055317994154,44.8211564928735,74.2652491025978 -"Tfru13700_t",1.83754754387308,1.70542698949312,2.4725125074311,30.530420866182,20.825085966764,23.2332044319801 -"Tfru13701_t",13.6933213239804,13.6649393426489,13.0668473773779,12.2500572796172,15.3756146576181,7.85236447121125 -"Tfru13702_t",0,0.712325757221668,0,0.61196368892454,0,0.432852533988575 -"Tfru13703_t",11.9405611654849,10.2690616777134,11.7515883804969,7.05777411795206,9.96585683550566,7.48812911590389 -"Tfru13704_t",0,1.05364851579252,0,0,0,0 -"Tfru13705_t",0,0,0,0.250068615330315,0.418496945716944,0.176877870003965 -"Tfru13706_t",0,0.0798029645171415,0,0,0.0860518867672415,0.654657441937751 -"Tfru13707_t",34.8235355183515,45.0057097152537,28.281183713004,29.6756069525945,18.7450204186584,23.8088165845719 -"Tfru13708_t",0,0,0,0,0,0 -"Tfru13709_t",0,0,0,0,0,0 -"Tfru13710_t",0,0,0,0,0,0 -"Tfru13711_t",58.6521309419977,55.9391575709077,55.6209073400193,40.6412561507578,39.171485025174,42.6719431678155 -"Tfru13712_t",4.03809226248087,5.22065845292781,1.88659728323201,3.92446391478058,2.8147294574833,0.793097546146805 -"Tfru13713_t",0.64130058601947,0.514759580264575,1.10451474755632,0,2.22027005544463,0 -"Tfru13714_t",0.64130058601947,0,0.552257373778162,0,0.555067513861158,1.40759678986851 -"Tfru13715_t",194.637852194021,178.264764109237,199.129740876125,227.141473534515,339.091205952654,251.945823521475 -"Tfru13716_t",0.669405392601175,0.537318765075575,0.576459888186725,0,0,0 -"Tfru13717_t",10.0611229666404,10.9024229668179,9.09736548093481,10.9273995231915,14.8040162085201,18.4027125228676 -"Tfru13718_t",6.91319737296347,6.63478135229723,4.65911587625692,2.79817386205925,2.34141180273657,3.57354998990568 -"Tfru13719_t",9.44279071760286,9.97565991549301,7.92182966720995,10.7757086979446,9.43856282304504,18.4974618041673 -"Tfru13720_t",0,0,0,0,0,0 -"Tfru13721_t",33.2627804957317,35.1202248626614,26.2423508861059,29.497377612334,42.3383384905971,44.0123941769652 -"Tfru13722_t",0,0,0,0,0,0 -"Tfru13723_t",44.5356214210083,31.5695582867811,40.9668512104746,20.7899127228788,21.401148672001,24.8610827180702 -"Tfru13724_t",87.4968844760404,58.3319520327146,83.6432298020114,93.4283432729432,89.5150729843662,69.6899459188361 -"Tfru13725_t",12.1314623496675,12.0503916907608,10.8387986016192,6.90171322815979,8.33452908702754,7.84955412042639 -"Tfru13726_t",6.07303928468295,5.26468810253084,4.21871403954675,2.93152726164334,1.89231209310324,5.09493507958408 -"Tfru13727_t",0,0,0,0,0,0 -"Tfru13728_t",1.51067610578027,1.0778582220497,1.08410163787363,1.82305266770527,1.67074767164969,1.78070602893602 -"Tfru13729_t",0,0,0,0,0.0553799271274326,0 -"Tfru13730_t",116.393687029407,154.465910506886,110.924158102777,143.190459409984,114.533259708288,105.217282215105 -"Tfru13731_t",0,0,0,0,0,0 -"Tfru13732_t",3.81431903616106,4.0567261814985,5.74824076926262,4.34001036140809,5.77749046797087,4.32557742251466 -"Tfru13733_t",609.857099669493,719.088737068153,534.7453562779,450.111469631699,405.946738049255,344.330579053033 -"Tfru13734_t",3.39172328580378,2.19891864185819,2.13442329717584,3.23846622958825,3.16147149210083,3.0541644634225 -"Tfru13735_t",1.70291304266448,2.73379074393181,1.46646721555609,2.05504022564525,1.47392927672268,3.94539235372019 -"Tfru13736_t",19.3148857309355,17.9872853784144,19.7820317098452,34.8177287209768,34.8149991211595,33.5451051954227 -"Tfru13737_t",3.67119508872982,2.18935797546406,1.84637015394691,12.0343135416069,13.0964256341881,12.9014525671658 -"Tfru13738_t",13.3044055520416,14.8978461748977,13.9507412805085,8.28730585217156,5.93349726634554,4.71844585838107 -"Tfru13739_t",0,0,0,0,0,0 -"Tfru13740_t",0,0.132482328127671,0,0,0,0 -"Tfru13741_t",0.737742057268474,0.0740214105565144,0.873548710913033,0.0953884125436714,0,0.0674698790629832 -"Tfru13742_t",27.0475611793256,2.40647108671939,52.0844254598748,18.8763974178741,6.14880452342651,2.33653059076222 -"Tfru13743_t",0,0,0,0,0,0 -"Tfru13744_t",0,0,0,0.597756449370831,0.187567956109164,0.105700876743556 -"Tfru13745_t",0,0,0,0,0,0 -"Tfru13746_t",0,0,0,0,0,0 -"Tfru13747_t",4.95035149086519,8.76518696061325,5.9556698586709,3.76511455057559,2.8354618668322,4.31427196354991 -"Tfru13748_t",0.0727992866303704,0.116869159474843,0,0.225906873034535,0.189030791122147,0.213050467335798 -"Tfru13749_t",0,0,0,0,0,0 -"Tfru13750_t",1.20195569176017,1.0663430763228,1.30745269820664,7.06707464860447,6.29675609684239,5.69292346283468 -"Tfru13751_t",5.47691959062475,5.14133905654358,7.43442164085232,5.1851243830645,6.74913030136884,5.77296142015702 -"Tfru13752_t",3.86889893026396,7.09826368599825,7.13937986520717,2.85851459958168,4.78380554725775,6.47000629751333 -"Tfru13753_t",0.201705586486068,0.0809525870552036,0.0868495990005209,1.8777661331226,2.44416283422921,1.03302621556937 -"Tfru13754_t",10.2627955106207,13.5284698640406,11.7505774042081,8.01407093796018,8.30729398268476,9.39108278145619 -"Tfru13755_t",0,0,0,0.0642742927716602,0.0537824292295259,0 -"Tfru13756_t",0,0,0,0,0,0 -"Tfru13757_t",0,0,0,0,0,0 -"Tfru13758_t",0,0,0,0,0,0 -"Tfru13759_t",0,0.0518320561237391,0,0.0667938845713179,0,0 -"Tfru13760_t",0.836444323797859,1.63653185791064,1.44061164340876,11.0854156718067,8.64240464517669,5.46951061305041 -"Tfru13761_t",7.95887779940028,5.60762831193872,7.08226482628563,8.87282931710169,5.97018932297777,5.8230056677621 -"Tfru13762_t",1.16843361295476,1.21924278890236,1.71053848601721,7.85594554766829,5.96678277438223,2.65009298277845 -"Tfru13763_t",0,0,0,0,0,0 -"Tfru13764_t",27.4399218247297,33.2470144704483,26.7656751025026,38.1359477167727,30.3349551761408,29.6859112474146 -"Tfru13765_t",0,0,0,0.17626540330078,0.147492584824177,0 -"Tfru13766_t",31.975005920247,32.4968989445092,33.1889898142931,28.044055243827,35.3572383371276,34.112663449227 -"Tfru13767_t",4.30241821740567,6.17988994764818,4.87504824578396,7.26108937640384,9.99570366639966,9.27774487945324 -"Tfru13768_t",2.70129828847098,2.63291131210091,2.89117009148679,1.75633859825472,1.83705164791343,1.63756245747814 -"Tfru13769_t",1.09757705090623,1.41327705125417,1.31931490740829,11.2112280822354,8.39158138023061,8.33140985126186 -"Tfru13770_t",8.42465821419389,10.1750649557025,9.08559132112103,6.84114609324453,5.86072222246995,5.35731074400481 -"Tfru13771_t",208.680075858924,274.168938610371,209.839176161866,141.998279373759,198.890144155672,219.94748221176 -"Tfru13772_t",29.906153298381,31.875612625786,28.829722578102,38.6498817689507,42.6462605068257,43.7096257039601 -"Tfru13773_t",8.8560261780346,6.71726403940949,9.7253912180593,7.56372915324528,10.2671385594532,9.80825422761347 -"Tfru13774_t",13.8426188998408,13.0269271055538,11.6857122382462,19.6086676818061,20.4212582257617,23.2988497880831 -"Tfru13775_t",12.6757229799616,13.4217570178268,14.6317178361102,17.2960780651417,18.9079338355822,10.9512385886484 -"Tfru13776_t",0.0427751409223256,0.0343347785218862,0,0.0442458471625686,0.148093369283746,0.125183421234985 -"Tfru13777_t",0.841707019179578,0.997346686797005,1.27709517690604,1.03648430137506,0.936676429673003,0.967722793067969 -"Tfru13778_t",33.6806977489174,36.9425010400565,36.6672478422643,40.777134005514,37.3507332432368,34.7228583985004 -"Tfru13779_t",3.01382517565731,2.25419788479117,2.59536200780032,3.57797930149032,4.56499471056711,5.76313239301544 -"Tfru13780_t",0,0,0,0,0,0 -"Tfru13781_t",0,0,0,0,0,0 -"Tfru13782_t",0,0,0,0,0,0 -"Tfru13783_t",0,0,0,0,0,0 -"Tfru13784_t",0,0,0,0,0,0 -"Tfru13785_t",5.33192793750673,4.64518726510188,5.43152821117731,30.2666251720419,31.2917162855924,25.2615687057326 -"Tfru13786_t",0.111715926557776,0.179344428236661,0.192408819062324,0.231113946349161,0.290081825737975,0.245206355690337 -"Tfru13787_t",6.18621865317022,7.172472806352,8.28687291990607,6.71491065938108,7.93241938018026,8.94037233838221 -"Tfru13788_t",2.64368318511548,3.18305006199053,5.31209802558081,7.29221067082109,3.30517474174178,4.19079953361666 -"Tfru13789_t",2.94199763012851,8.13400255068686,4.22251260510315,14.8776230677063,7.07333115936956,5.02243679515149 -"Tfru13790_t",1.06612153263258,0.770179625828504,0.826283558003687,1.54388808830201,2.49146420887641,0.936016139487985 -"Tfru13791_t",6.88609645233117,3.31640188398869,2.96498835745027,18.5194257219986,7.74819652083372,3.52668375830467 -"Tfru13792_t",0,0,0,0,0,0 -"Tfru13793_t",13.2647963323338,12.9059339745425,7.61533852288778,14.552437961507,8.69782826774152,11.4695566183193 -"Tfru13794_t",0,0,0,0,0,0 -"Tfru13795_t",11.956867219728,12.9638496102753,10.949829554285,11.0296461363362,9.42229315648956,5.94086080106253 -"Tfru13796_t",8.68130012202915,9.05331841155611,9.35961663044914,5.65655614823659,6.22191868218629,5.35131114843158 -"Tfru13797_t",23.8628696665979,19.6790384290811,29.557588235722,21.9783068045662,22.068793217233,21.5247291220778 -"Tfru13798_t",0,0,0,0,0,0 -"Tfru13799_t",0,0,0,0,0,0 -"Tfru13800_t",0,0,0,0,0,0 -"Tfru13801_t",0,0,0,0,0,0 -"Tfru13802_t",0,0,0,0.119860474244531,0.10029495768044,0 -"Tfru13803_t",50.1926403592123,43.71748418474,55.7920351952245,50.4455152726186,105.681561869421,114.074983915057 -"Tfru13804_t",0,0,0,0,0,0 -"Tfru13805_t",5.18026451941901,5.87557349343699,6.98242835074429,4.89242820475329,3.411507441208,3.79007071315466 -"Tfru13806_t",0,0,0,0,0,0 -"Tfru13807_t",43.044920771509,37.3888740688231,38.1426670818402,34.6304798420615,37.9767850276369,35.144625791815 -"Tfru13808_t",0,0,0,0,0,0 -"Tfru13809_t",12.3544671722717,16.739375951275,9.23471786172538,12.421422970606,32.1651828984564,33.9142506571425 -"Tfru13810_t",8.5481017940313,6.86139602470412,7.28206331400866,4.65869075222861,6.04622775513375,10.6252510421966 -"Tfru13811_t",11.1715926557776,8.60853255535974,10.7748938674902,23.5736225276145,22.4329945237367,14.7123813414202 -"Tfru13812_t",3.34037283385477,4.82625483222951,3.73953999036438,9.15633940923675,8.96274025394788,7.94280097159951 -"Tfru13813_t",0,0,0,0,0,0 -"Tfru13814_t",0,0,0.185978704286462,0,0,0 -"Tfru13815_t",0.0538873487950272,0.0432543329166033,0.417646852922967,0.78036165079024,0.932826739170225,1.81359381142615 -"Tfru13816_t",0,0.0552733647680201,0,0,0,0 -"Tfru13817_t",0,0,0,0,0,0 -"Tfru13818_t",0,0,0,0,0,0 -"Tfru13819_t",0,0,0,0,0,0 -"Tfru13820_t",0,0,0,0,0,0 -"Tfru13821_t",0,0.117890743036686,0,0,0,0 -"Tfru13822_t",8.73830561308851,14.2742455875369,10.0333474699361,7.45300302898244,6.63447484656196,4.03785064552846 -"Tfru13823_t",0,0,0,0,0,0 -"Tfru13824_t",0,0,0,0,0,0 -"Tfru13825_t",0,0,0,0,0,0 -"Tfru13826_t",0,0,0,0,0,0 -"Tfru13827_t",0,0,0,0,0,0 -"Tfru13828_t",0,0,0,0,0,0 -"Tfru13829_t",0,0,0,0,0,0 -"Tfru13830_t",0,0,0,0,0,0 -"Tfru13831_t",0,0,0,0,0,0 -"Tfru13832_t",0,0,0,0,0,0 -"Tfru13833_t",0,0,0,0,0,0 -"Tfru13834_t",14.385338488259,15.241819627124,18.3341882931136,13.6895438905972,15.4392409169007,14.3137810554553 -"Tfru13835_t",8.58500200580315,9.84430730170578,5.80878011414768,9.51447195185015,6.89985384039374,6.28110100412744 -"Tfru13836_t",3.09150335081845,2.95415471744967,2.40870666480358,2.0303468183945,1.61397551641129,2.47727168692761 -"Tfru13837_t",0,0,0,0,0,0 -"Tfru13838_t",0,0,0,0,0,0 -"Tfru13839_t",1.94243645714329,0,2.50909997574915,0.502305455649044,0,0.355289363158253 -"Tfru13840_t",1.15949077099865,0.0846091656423897,1.54313321385995,0.109032426383042,0.182468869054753,0.385602633791579 -"Tfru13841_t",0,0,0,0,0,0 -"Tfru13842_t",1.29460291370938,0,0.466746554628603,0,0,0.793097546146805 -"Tfru13843_t",0,0,0,0,0,0 -"Tfru13844_t",6.45220762037763,5.28475744647215,5.89651603496326,8.71712539960222,5.92652022657146,3.85360876654406 -"Tfru13845_t",9.67658790037615,4.2366600010671,7.19669425854055,2.2748388436462,1.52280302237317,2.25264617164735 -"Tfru13846_t",9.02836036948451,4.89930611626931,9.49035628230717,3.20061331957204,2.09116504850867,2.0467678852376 -"Tfru13847_t",0,0,0,0,0,0 -"Tfru13848_t",29.4120836181727,29.0357546753213,31.8786957683461,16.4355962168305,15.6546908290948,17.5614456646793 -"Tfru13849_t",0,0,0,0,0,0 -"Tfru13850_t",3.58898824123521,8.42355775203631,4.14193030347904,4.64344967016025,5.1682413787866,13.2927859366589 -"Tfru13851_t",3.66218519680588,7.03769432077489,1.64051093292579,2.85314843499046,2.96832410852344,12.3958627034382 -"Tfru13852_t",1.20014823959025,0.963335785955434,0.516755114052301,0,0.519384602272905,0.87807228323261 -"Tfru13853_t",0,0,0,0,0,0 -"Tfru13854_t",9.04417931750032,8.79216752015708,8.04802821168822,10.2906525584942,11.5681115960962,9.04330425675174 -"Tfru13855_t",17.7621939459632,25.8173990636455,24.5975434289275,29.2973244903417,27.2157531591423,21.7761926242024 -"Tfru13856_t",7.04603160018591,5.4381858884665,5.63985420176232,8.50300514869129,6.37223474402473,5.38645416758041 -"Tfru13857_t",34.41388927987,38.8102007558364,38.8883366646077,33.6642416309592,34.1667461254752,37.1980389866771 -"Tfru13858_t",0,0.230410609397442,0.0823983097578974,0.494868131134878,2.65016289087268,6.65054747551923 -"Tfru13859_t",0,0,0,0,0,0 -"Tfru13860_t",7.37430721153826,6.01027863757054,5.27571730214913,4.04862945582893,3.87872633433302,6.8063942008953 -"Tfru13861_t",0,0,0,0,0,0 -"Tfru13862_t",33.4180334070177,43.8906877824114,33.2762202621417,14.939279740188,14.4321461880094,19.0456550696612 -"Tfru13863_t",8.03194446508798,9.26110801274745,7.41702303318123,5.11994158189355,4.90368464687429,6.40924206134877 -"Tfru13864_t",0,0,0,0,0,0 -"Tfru13865_t",27.8297401960006,24.1790111041049,23.1578098258039,11.1049390995165,13.9834315996767,13.8792070575692 -"Tfru13866_t",30.2135973859645,33.9889056677537,35.1022711554993,20.0295989808181,23.9336151254019,22.4912505911768 -"Tfru13867_t",0,0,0,0,0,0 -"Tfru13868_t",0,0,0,0,0,0 -"Tfru13869_t",0,0,0,0,0,0 -"Tfru13870_t",0,0,0,0,0,0 -"Tfru13871_t",53.3182212219113,53.6066187156989,50.4477449829869,97.7877144126401,69.0456113258571,28.4069601150387 -"Tfru13872_t",0,0,0.0220096489100803,0.0264371292446865,0,0.373988803324476 -"Tfru13873_t",2.36062215721423,1.89482576080783,1.1957969581394,2.87268905214164,3.12489248310131,2.74306878564 -"Tfru13874_t",0,0,0,0.162124708632994,0.271320314620593,0 -"Tfru13875_t",1.59412479642215,1.40753046525015,1.64734078104214,2.47340162696256,0.827861605142152,1.16631992080413 -"Tfru13876_t",33.0081698638156,35.0507031534395,34.4456410267864,20.094616683117,20.3856684957907,23.6049308883019 -"Tfru13877_t",0.795050884272373,0.212723990589857,1.36931954512493,0.548257689762048,1.83504969888502,1.55116870224297 -"Tfru13878_t",1.63444312784917,2.36148461148973,2.25200672272168,11.8344728947664,14.1466623187391,8.13156433500717 -"Tfru13879_t",3.40971211346217,4.55052503293099,3.96221036105261,11.9831168505106,7.43139044622429,7.03316576986425 -"Tfru13880_t",0,0,0,0,0,0 -"Tfru13881_t",0,0,0,0,0,0 -"Tfru13882_t",53.7997486713703,46.1736807751767,54.882956940812,49.6564821870198,39.4015905173158,20.2864975781641 -"Tfru13883_t",33.8481009859552,35.4913184299919,34.7942191131942,26.9686067050194,19.5311233377699,16.1750157437836 -"Tfru13884_t",28.7867724601312,23.1065856351784,25.2957048837049,20.6612635673156,21.8650021376649,21.4912796595613 -"Tfru13885_t",15.5221765833793,11.2571329282811,12.7806856409243,11.4081140194652,14.6134792471176,11.3565912807246 -"Tfru13886_t",4.11326770542695,5.30263466750769,6.76228502366222,4.64148127267396,7.33611485704109,5.74525039920148 -"Tfru13887_t",0,0,0,0,0,0 -"Tfru13888_t",0,0,0,0,0,0 -"Tfru13889_t",0,0,0.623669962787562,0,0,0 -"Tfru13890_t",0,0,0,0,0,0 -"Tfru13891_t",0,0.204965060841898,0,0,0,0 -"Tfru13892_t",0,0,0,0,0.0817009486722686,0.0690618649734581 -"Tfru13893_t",0,0,0,0,0,0 -"Tfru13894_t",0,0,0,0,0,0 -"Tfru13895_t",9.99316981757137,6.38986841894814,7.14705661775053,2.10239138291818,2.93200985154512,4.33725220549036 -"Tfru13896_t",0.179126602924195,0.0718907302952927,0,0,0,0.0655277823308931 -"Tfru13897_t",58.6396155380303,61.7816502727672,54.2191840288085,37.4185265438108,29.8594323010037,31.972734002812 -"Tfru13898_t",0.517783524015084,0.831229645817992,0.557362988963281,3.2804648286109,3.19313491998782,2.32032968527928 -"Tfru13899_t",4.40888389957992,3.538925856391,6.50123256357242,3.93574921719549,6.42976481031865,6.00952418144311 -"Tfru13900_t",6.93934570871358,8.88842333264296,9.28161206612069,9.01060067804885,10.8623493269897,8.20974437048279 -"Tfru13901_t",12.8105710967697,12.5558372102251,13.5865951335309,10.0428840378242,14.1225925562064,9.86598071049402 -"Tfru13902_t",0,0,0,0,0,0 -"Tfru13903_t",0.262532427410773,0,0,0,0,0 -"Tfru13904_t",0,0,0,0.312585769162894,0.52312118214618,0.221097337504956 -"Tfru13905_t",0,0.313644209381324,0,0.404180668964115,0.676407854123899,1.42941999596227 -"Tfru13906_t",0,0,0,0,0,0 -"Tfru13907_t",217.583360759523,179.164333413327,231.869533184328,416.314544695569,307.892930753719,215.868380209317 -"Tfru13908_t",173.508868608366,151.979532663907,184.86329934392,255.388362263071,195.121572190866,132.018905390429 -"Tfru13909_t",0.177611790214477,0.142565549718783,0.152950773715505,0.183718485892779,0.614916231021726,0.909630906521446 -"Tfru13910_t",41.0853667420579,31.9939987305438,40.6614607990338,47.1357192730751,38.2145751160269,22.9475901992212 -"Tfru13911_t",20.3417738557403,22.9698259223381,22.7626739706016,34.9497401986617,25.5642380161532,16.9007893640245 -"Tfru13912_t",0.096342175196614,0,0.248895811814566,0,0.0833874361448613,0.140974907858664 -"Tfru13913_t",0.412179183956947,0.73762645964398,0.939395948817501,1.38760628865924,1.16109931047216,1.17041806089415 -"Tfru13914_t",1.90571743148841,0.892314811188832,2.18815019939309,34.8252455413693,23.9859467552867,26.1429838581002 -"Tfru13915_t",0,0,0,0,0,0 -"Tfru13916_t",0,0,0,0,0,0 -"Tfru13917_t",0,0.0310610340934982,0,0,0,0 -"Tfru13918_t",0,0.0252938878533326,0,0.0977856457171245,0.19092157172852,0.138330967351188 -"Tfru13919_t",0,0,0,0.302783427969633,0.25335834257254,0.856655886081919 -"Tfru13920_t",4.41391905746641,4.97772290616039,5.02618955917908,10.9048049787604,9.91408906467745,7.63309036489102 -"Tfru13921_t",0.397525442136187,0.265904988237321,0.0570549810468722,0.137518011260515,0.114690606180314,0.0484740219450928 -"Tfru13922_t",0,0,0,0,0,0 -"Tfru13923_t",0,0,0,0,0,0 -"Tfru13924_t",4.0486928564553,2.59984597655844,3.17275188098144,1.758916356986,1.75214082694745,2.10314180610738 -"Tfru13925_t",111.692879145993,102.309572797975,112.66446025301,107.316337219369,118.863175311178,110.337707682595 -"Tfru13926_t",1.5629837538874,0.627288418762648,1.68245851087056,3.23344535171292,1.69101963530975,3.144723991117 -"Tfru13927_t",14.6712508291093,13.7390509182214,23.914696130607,37.4875469733089,37.6418861439947,42.4249477387888 -"Tfru13928_t",0.742141137556956,1.07226421405099,0.511277144646176,0.460594578589848,0.385409068825013,0.54297756030369 -"Tfru13929_t",0,0,0,0.278076300247311,0.0581710754546552,0 -"Tfru13930_t",2.41756479917834,1.69796595366508,2.86260027209271,0.937757307488683,4.18496945716944,5.30633610011894 -"Tfru13931_t",1.63126945187277,0.572857445532636,2.0193585767609,0.738218333484214,1.32367435045484,2.38699261461661 -"Tfru13932_t",9.95565084802932,7.25355842479871,7.84789443949374,5.30740431761903,5.23645733924084,5.15477256520214 -"Tfru13933_t",3.02135221156055,2.49254713848994,3.75821901129527,7.986706925185,8.28109715513324,8.78072283233967 -"Tfru13934_t",0.651992001388066,0.503958358850704,0.457489436988659,0.774321402312683,0.773329186483991,0.494688610272658 -"Tfru13935_t",17.7076890175732,17.5554300963053,13.9595102785554,7.85150350047442,10.5349364256425,11.2952636740663 -"Tfru13936_t",0,0.225530117113661,0,0,0,0 -"Tfru13937_t",1.45682734285747,3.89789046340952,2.09091664645763,3.51613818954331,4.62342362717636,7.10578726316506 -"Tfru13938_t",14.5004211961676,15.1494449627198,9.31574972731341,14.2847414510605,17.331793029298,16.3345501456401 -"Tfru13939_t",46.2191274122788,49.2501573382833,40.2177462566566,35.592433797629,35.3579779720389,38.6464018333263 -"Tfru13940_t",0.828660362705682,0.886866200317317,0.475735097954004,0.367350678461983,0.683079796320517,0.606278185229653 -"Tfru13941_t",57.8432102360786,56.426895858831,63.6312284417772,77.4223483849649,73.8022197500259,67.0288963181453 -"Tfru13942_t",19.3031872507588,19.4095202828381,18.1869712160257,7.62176394285017,5.65901444355046,4.78356858438764 -"Tfru13943_t",0,0,0,0,0,0 -"Tfru13944_t",59.5624131941386,56.9775233401937,59.9900431280519,62.1961387842475,68.6287968847056,75.1393090911224 -"Tfru13945_t",0,0,0,0,0,0 -"Tfru13946_t",338.705683939007,34.6077871942347,225.640628923799,2.43426993807933,1.22983246204345,1.59185408641253 -"Tfru13947_t",0,0,0,0,0,0 -"Tfru13948_t",0,0,0,0,0,0 -"Tfru13949_t",0,0,0,0,0,0 -"Tfru13950_t",0,0,0,0,0,0 -"Tfru13951_t",18.6506337429736,27.6888065786833,31.4114012353691,84.5086988104242,96.9994111829836,74.7482751130212 -"Tfru13952_t",0,0,0,0,0,0 -"Tfru13953_t",0.0798577725964329,0,0,0,0,0 -"Tfru13954_t",0.0959570265807509,0.0770228498195141,0.123950398573559,0.148884369778329,0,0.0702056651357826 -"Tfru13955_t",17.2704258868132,11.9829573375129,9.83095095027848,8.78071941111935,9.88097536032907,10.708198576024 -"Tfru13956_t",12.390019595789,12.1283282404649,13.5322921953474,7.81464422907236,7.32369655004652,13.0447429127924 -"Tfru13957_t",5.15518221097518,4.59773897843077,6.08361702453421,1.97497372334738,2.47888105630633,3.35263962689333 -"Tfru13958_t",54.1428449389359,56.2625991178018,51.3315291811294,57.1218572510668,52.6927858222009,57.5130703519132 -"Tfru13959_t",1.46160262159099,1.12219146019188,1.53228445316804,1.57758869277975,1.32006979095284,1.95274774032365 -"Tfru13960_t",0,0,0,0,0,0 -"Tfru13961_t",0,0,0,0,0,0 -"Tfru13962_t",0,0,0,0,0,0 -"Tfru13963_t",0,0,0,0,0,0 -"Tfru13964_t",0,0.0907584185962108,0,0,0.195730401933564,0 -"Tfru13965_t",0,0,0,0,0,0 -"Tfru13966_t",17.924291890012,19.5169328064,18.9253171640226,15.9610121315421,22.7989604634433,20.0702236167764 -"Tfru13967_t",0,0,0,0,0,0 -"Tfru13968_t",0,0,0,0,0,0 -"Tfru13969_t",0,0.0564297113112842,0.0302701740449514,0.0727186977634181,0.0304242026436481,0.102870393014858 -"Tfru13970_t",0.0393491226095772,0.0947543396023202,0.135542324997534,0.407020345795244,0.476812093890617,0.201524786315992 -"Tfru13971_t",0,0,0,0,0,0 -"Tfru13972_t",26.6349943041776,21.2186475857973,26.2996941240374,29.8294005032872,38.826939516814,35.6043135585454 -"Tfru13973_t",0,0,0,0,0,0 -"Tfru13974_t",0.935527580973802,0.600743919973137,0.322252632371643,1.16123176606616,2.10530061500701,0.547572916047908 -"Tfru13975_t",0,0,0,0,0,0 -"Tfru13976_t",4.8878764667024,3.67819118274461,2.89382863869736,3.79194954882697,3.70179571075079,3.57614893535289 -"Tfru13977_t",0.129846022830676,0.104224891834598,0.223634361568575,0,0,0.0950000924673535 -"Tfru13978_t",0,0.162099771675444,0,0,0,0 -"Tfru13979_t",0,0,0,0,0,0 -"Tfru13980_t",0,0,0,0,0,0 -"Tfru13981_t",0,0,0.045701652537861,0.0548950371618981,0.0459342036123304,0 -"Tfru13982_t",0,0,0,0.184107719973061,0,0 -"Tfru13983_t",17.8284464732167,18.6128679006157,17.218935112611,12.0321476068548,11.7460825437285,10.2627181339065 -"Tfru13984_t",5.27791261447836,11.5920077839209,9.5682188093111,5641.33285538143,3780.85274281203,288.771823511644 -"Tfru13985_t",8.55999097137521,9.9500775421109,7.79924594256663,6.4630734553466,5.05144043337774,7.12151018220258 -"Tfru13986_t",3.85099018065927,4.03715325323009,3.74179946829735,5.34524537184824,4.79730859685049,3.67109333885251 -"Tfru13987_t",3.47971974792977,4.46896601295992,4.1095791318779,4.52491021112488,5.24916509280173,6.32835527206492 -"Tfru13988_t",0,0,0,0,0,0 -"Tfru13989_t",0,0,0,0,0,0 -"Tfru13990_t",2.23756451449376,1.79604977042816,2.62756837654118,6.1018558619643,4.75368958013224,5.35772918583438 -"Tfru13991_t",0,0,0,0,0,0 -"Tfru13992_t",0,0,0,0,0,0.135088043574457 -"Tfru13993_t",0,0,0,0,0,0 -"Tfru13994_t",0.0412624640331274,0,0,0.469492771169023,0.357140689186243,0.36226950781755 -"Tfru13995_t",22.2053859307791,11.8825559501294,21.0344372416328,13.7813144395694,10.8910603824795,13.5385594331228 -"Tfru13996_t",6.18964597780256,5.70947309545544,6.25090245130541,3.74811434996831,2.87348748478287,3.37584387525986 -"Tfru13997_t",0.330099712265019,0.529929312510684,0.568532149056455,0,0.285712551348994,0.4830260104234 -"Tfru13998_t",7.64213155722579,10.0106593044797,8.86612059234503,6.53250942226587,8.26815665021947,9.62939661209202 -"Tfru13999_t",0,0,0,0,0,0.823192765531845 -"Tfru14000_t",7.53939278718118,10.0038716233988,7.81757736644432,0.954932349750381,0.932228773311783,3.82749456794293 -"Tfru14001_t",0.0852032218777357,0.0683909787190513,0,0,0,0.0623377888705656 -"Tfru14002_t",0.220114524292002,0.29446945422264,0.505472251300848,0.379470933743601,0.508044327114893,0.21472509983014 -"Tfru14003_t",29.2587863928145,40.227573682546,29.4372223591628,22.1741877352382,29.8377499099309,24.5860239305511 -"Tfru14004_t",19.0879116928113,22.9822464503889,15.7273295581378,14.3815758367736,16.9291699254431,16.8102197281117 -"Tfru14005_t",15.7028741628874,14.9677172350784,15.2128841987595,21.3186415931423,20.0472748354244,20.8234431654784 -"Tfru14006_t",29.6767763287538,29.1540285310689,28.8619991645123,20.1593099915669,20.1911905136984,18.6879707380727 -"Tfru14007_t",0,0.25935963468071,0,0,0,0 -"Tfru14008_t",0,0,0,0,0,0.239163656911976 -"Tfru14009_t",15.8372229992578,15.5675957057772,12.3793423494159,11.3412064159739,7.38104568196394,10.1609872682817 -"Tfru14010_t",5.85402380925734,8.07883067440647,6.1025114935855,17.9534286146835,16.9784159716368,11.9473649295771 -"Tfru14011_t",0,0,0,0,0,0.0523106892139385 -"Tfru14012_t",0,0.0473549894782195,0,0.0610244689798347,0,0 -"Tfru14013_t",3.44031926012532,2.67239782101656,3.91832807749642,3.38641465377133,2.9777135718202,2.67945439137446 -"Tfru14014_t",0,0,0,0,0,0 -"Tfru14015_t",66.5475456447982,68.1154168654709,71.3702681116932,58.2905727695381,53.3507194829914,49.7245427808898 -"Tfru14016_t",0,0,0,0,0.276829356541824,0.0780013449573321 -"Tfru14017_t",14.3034908727249,13.6610979991305,17.3068415353129,14.9825592805663,23.6633415777288,18.0156209835935 -"Tfru14018_t",3.28632341566829,3.45320936075597,3.34457435126828,3.64653754325021,4.70623032216716,3.71588199519353 -"Tfru14019_t",23.7709501936784,23.4654375981774,30.0063075014313,74.681080196032,70.1579974178509,62.2212204920801 -"Tfru14020_t",2.6487507250962,2.78800035614541,2.88349968460325,2.48134711701943,2.24932772430255,1.71853528366434 -"Tfru14021_t",13.1455085955322,12.9773112172974,13.3371149040683,17.3485101885406,22.2980403889809,24.2654327911689 -"Tfru14022_t",1.40485579885364,1.1276505855683,2.17763024651139,1.74378950823983,2.18871103299288,2.26125638157242 -"Tfru14023_t",36.4902840024777,37.1843397467836,43.1383098492905,46.9672088081823,42.8009280560784,37.3228754963234 -"Tfru14024_t",24.0585787047055,22.8736448899132,28.1605196536814,31.1676112707684,26.2821124042117,22.159321846581 -"Tfru14025_t",0,0,0,0,0,0.0827255179359054 -"Tfru14026_t",22.5264417210506,21.0596750683958,18.0293740108116,4.66019036297741,5.7345303090157,8.1436356867756 -"Tfru14027_t",0,0,0,0,0,0 -"Tfru14028_t",0,0.040893574904175,0.043872477845624,0,0.0881914424721881,0.0372741417988949 -"Tfru14029_t",0,0,0,0,0,0 -"Tfru14030_t",0,0,0,0,0,0 -"Tfru14031_t",0,0,0,0,0,0 -"Tfru14032_t",0,0,0,0,0,0 -"Tfru14033_t",0,0,0,0,0,0 -"Tfru14034_t",0,0,0,0,0,0 -"Tfru14035_t",0,0,0,0,0,0 -"Tfru14036_t",5.5709798920058,5.05304115843452,5.18125817273399,5.64727234421346,5.97912247710316,6.92908499368979 -"Tfru14037_t",7.30525015403891,6.31873172947757,7.21287872838734,8.53354463371386,8.33974376364529,6.12807567984126 -"Tfru14038_t",7.26140111349846,6.39525437736108,6.68741912304011,7.61538487321942,6.11040708557303,4.79619314371495 -"Tfru14039_t",3.87740200483604,4.49556700113231,1.85501835813933,2.22817548275089,4.10180660257185,3.46725978507772 -"Tfru14040_t",0.127481603598555,0.102327018235181,0,0.263729419809665,0,0.0932701970051255 -"Tfru14041_t",0,0,0,0,0,0 -"Tfru14042_t",1.26015565157171,1.34867010033969,0.36172857983717,1.30348265740927,2.54498455114117,2.15127709392322 -"Tfru14043_t",4.45954638297257,3.55815697165271,3.56439477906937,3.17653116342585,2.86602565018168,3.73166764998034 -"Tfru14044_t",0,0,0,0,0,0.278122442653293 -"Tfru14045_t",0,0,0,0,0.298007558681636,0 -"Tfru14046_t",0.0785143708144369,0.0630219673055931,0,0.56849710915046,0.271827455395585,0.22977592458459 -"Tfru14047_t",0,0,0,0,0,0 -"Tfru14048_t",0,0,0,0,0,0 -"Tfru14049_t",0,0,0,0,0,0 -"Tfru14050_t",0,0.097994418966437,0,0,0,0.0445789038439432 -"Tfru14051_t",0,0,0,0,0,0 -"Tfru14052_t",0,0,0,0,0,0 -"Tfru14053_t",0,0,0,0,0,0 -"Tfru14054_t",0,0,0,0,0,0 -"Tfru14055_t",0,0,0,0,0,0 -"Tfru14056_t",4.80594280193273,4.60912515717874,6.34234359892808,4.26101314457711,3.29535252854195,3.33354336354054 -"Tfru14057_t",3.57441258232243,4.20052978971205,3.40000722983769,3.11733894708557,2.44671166922041,3.62363534015352 -"Tfru14058_t",0,0,0,0,0,0 -"Tfru14059_t",0,0,0,0,0,0 -"Tfru14060_t",0,0,0,0,0,0 -"Tfru14061_t",0,0,0,0,0,0 -"Tfru14062_t",0,0,0,0,0,0 -"Tfru14063_t",1.59311713220191,2.4722776807744,2.37798813546559,0.109859473865088,0.367705913114129,0.543938582534316 -"Tfru14064_t",0,0.498277130667374,0.356382837278,42.2722208273121,58.3859932211133,50.7162439454102 -"Tfru14065_t",0,0,0,0,0,0 -"Tfru14066_t",0,0,0,0,0,0 -"Tfru14067_t",0,0,0.712765674555999,157.102835884795,170.501428056748,69.3374320208892 -"Tfru14068_t",8.47930821450945,8.37683292136455,8.20067898388614,13.6285453828505,7.90367873025207,8.97160811130358 -"Tfru14069_t",3.71240617484301,2.5384134458112,4.73621708461106,3.41337520761838,2.49916649866563,1.71015714737876 -"Tfru14070_t",8.92068949222586,9.41983497917671,10.7399825766087,7.92839966877803,5.13494673794315,3.92869454560352 -"Tfru14071_t",4.49734351024879,5.19830017261551,4.02781288041388,7.07099799879404,9.80936229561906,8.02862665826347 -"Tfru14072_t",5.06959168181873,1.16264663365856,0.623669962787562,1.4982559221735,1.88053044912406,1.05974240663837 -"Tfru14073_t",1.72624061859109,1.84749328813624,1.48655580754975,0,1.99216011830976,2.52596136272741 -"Tfru14074_t",7.03624816280715,5.64786034799293,5.11904705040326,3.57634230913735,4.51508347391728,5.01483881615934 -"Tfru14075_t",0,0,0,0.236138162574143,0,0.334049238186835 -"Tfru14076_t",1.26677744274972,1.52522663849245,1.23964557860579,1.60813487548779,2.11812089343973,2.31705160414721 -"Tfru14077_t",0,0,0,0,0,0 -"Tfru14078_t",0,0,0,0,0,0.87807228323261 -"Tfru14079_t",0.0741486114487621,0.238070626714862,0.319266178144015,11.5813993097264,11.1028200062394,9.49372062631606 -"Tfru14080_t",1.14188861631094,0.523755378772696,0.140477118383367,0,0.423575792145548,0.238699261461661 -"Tfru14081_t",0.413165787400561,0.16582009430406,0.355798603118527,0.0712285605141677,0.119203023472654,0.352668376052987 -"Tfru14082_t",0.488432423089811,0.980138154316637,1.68245851087056,3.28396793533343,4.43892654268808,2.50148499293398 -"Tfru14083_t",24.0620853947777,26.7646001615618,21.38297023668,15.2271724933103,15.5559526198234,18.6860702638953 -"Tfru14084_t",24.2804557142912,26.1158661048437,24.4338545257477,16.4325641919473,18.9740502102302,15.8357544721964 -"Tfru14085_t",0,0,0,0.3729564112759,0,0.263798540027372 -"Tfru14086_t",0.467590223217704,0.375325630892308,0.402666322638779,0.161222344763051,0.134905091499664,0.228070722917914 -"Tfru14087_t",4.43188954263648,7.11478408247471,4.32166030216634,24.1934233606916,17.3095750432664,14.7750593830388 -"Tfru14088_t",1032.30311749891,936.503359918806,941.376572405512,581.374460044492,533.29397528094,462.637011278541 -"Tfru14089_t",34.573501209788,42.7943397223171,30.3295501555781,49.7997220394824,44.467312486972,39.4794807346349 -"Tfru14090_t",4.76015917387987,4.54375837786726,3.43448268758109,16.6345413145644,15.7008454041087,13.6484436061635 -"Tfru14091_t",16.8981787404913,19.0279480314847,15.3105328358154,10.9348402146821,10.7441810003236,10.781287900909 -"Tfru14092_t",0.616024760927204,0.679897850767031,0.530491042840945,0.955807631464176,1.06638085159771,0.676059319813504 -"Tfru14093_t",8.35431017953042,7.16047668307775,7.14555697908583,5.02381652330333,4.55916906900635,4.32006235422206 -"Tfru14094_t",4.52276590963378,5.80853879015749,5.25796589803692,9.70740785688375,9.68865489571142,8.35527731152645 -"Tfru14095_t",3.49595037781311,7.12325757221668,9.26321587291087,88.9572671445763,54.6052108741282,26.4040045733031 -"Tfru14096_t",6.57388448844468,2.48316704320312,3.49657085228104,1.39998137351207,3.01231115703048,5.23407874240731 -"Tfru14097_t",7.98514472283065,8.74632589824255,8.88204829699188,8.51780746425859,6.69543318970661,8.51990928286424 -"Tfru14098_t",8.72612874815442,11.1244682410911,11.934832980371,9.55710298711481,7.99704194132226,9.38875659262389 -"Tfru14099_t",9.36701065047498,7.98863822500863,8.06642129253619,8.17515255518009,9.88097536032907,9.63737871842159 -"Tfru14100_t",0,0,0,0,0,0 -"Tfru14101_t",0,0,0,0,0,0.253987850522222 -"Tfru14102_t",0,0,0,0,0,0 -"Tfru14103_t",0,0,0,0,0,0 -"Tfru14104_t",36.6679627033476,22.8920725081907,31.1556720558105,48.7172955695155,29.1983817146305,23.3698384596897 -"Tfru14105_t",0,0,0,0,0,0 -"Tfru14106_t",0,0,0,0,0,0 -"Tfru14107_t",0.0545167921943202,0.0875191499247042,0.0469472524123516,0,0,0.0398864762014132 -"Tfru14108_t",1.15346055063772,3.93490704332519,1.48995753708674,39.571784717688,35.899340758987,31.7170960888974 -"Tfru14109_t",0,0.0184446129696347,0,0.0237688303685133,0.0596667212677673,0.0840605303971249 -"Tfru14110_t",0.18274475991303,0.125730587352986,0.0899263094685319,0.567083816150708,0.497111427906469,0.248305089416691 -"Tfru14111_t",4.27247633473635,5.01780363884414,5.15095301052929,3.07030176263425,3.38656555443991,3.09299551588839 -"Tfru14112_t",3.50584261642826,3.54364632237631,3.24269824274433,2.95482931097413,3.59635706056601,4.37000425349826 -"Tfru14113_t",27.2054328923081,22.0119731402592,29.9878615409052,9.68044115174414,12.621314946444,18.1528933165986 -"Tfru14114_t",0,0,0.0810142396051892,0.19462227060982,0.325705909600533,0.344149271144332 -"Tfru14115_t",0,0,0,0,0,0 -"Tfru14116_t",2.01193075211994,1.93004774873379,1.77483648985527,20.658778877164,27.0977994597474,26.3165238625788 -"Tfru14117_t",8.63120309295693,8.66900696741003,7.28031177543724,4.07481406777046,4.09925255113811,5.73198924619012 -"Tfru14118_t",0.963001043777509,0.77298231733443,0.671330333758939,1.99222240215391,1.7860933375133,2.44920816993754 -"Tfru14119_t",2.00289639984908,1.07179080821697,2.20390922814699,0.460391225575018,0.866787548165393,1.05833877846743 -"Tfru14120_t",0,0,0,0,0,0 -"Tfru14121_t",0,0,0,0.524540304792463,2.04827730474138,0.494688610272658 -"Tfru14122_t",0,0,0,0,0.255584690046816,0.108022952243195 -"Tfru14123_t",10.5784314927321,13.5857638649119,12.6775808673258,12.1275406390649,14.0391892492872,14.318198616428 -"Tfru14124_t",0,0,0,0,0,0 -"Tfru14125_t",0,0.0540765878243661,0,0,0,0 -"Tfru14126_t",2.77646234532502,3.59453651476464,3.00797752956282,2.13078188489077,1.78296206750676,1.83477790526501 -"Tfru14127_t",6.36339679010158,6.84659277368256,7.40363088466084,16.4554619656824,18.6325564006652,15.7501120264207 -"Tfru14128_t",69.450118899092,78.7960969902729,66.3251990265401,44.4654331550893,64.4622732643145,74.9501726768691 -"Tfru14129_t",4.4400477292281,6.19000185135046,4.12541634862975,10.1522988616021,12.9448846630665,12.0536487281214 -"Tfru14130_t",11.075322982731,9.32360358755736,9.53753811789322,23.1916528542271,26.8877559376421,20.9495059215307 -"Tfru14131_t",0.9989908902607,1.18371384797651,1.06511246611171,1.1809582400084,0.90583498018291,1.56621047122707 -"Tfru14132_t",32.5701768406227,31.0194123078129,30.0512974018572,58.0216895708331,69.3578207343966,63.261730805918 -"Tfru14133_t",62.2633868350411,81.0055648874916,60.5323015879415,147.618035969894,104.974860057016,76.3255996071855 -"Tfru14134_t",0.448653547511068,0.360125527460532,0.482948704722523,0.116019818193971,0.0970812340698519,0.246188490626346 -"Tfru14135_t",5.18337793296523,5.61566950074012,5.73204425230848,7.03159896107495,6.52120114250602,6.90083105940114 -"Tfru14136_t",0.06427725843263,0,0,0.398923537080113,0,0.0470275897676953 -"Tfru14137_t",2.02042023267251,3.19118991934528,2.52564563113617,3.77527948357482,2.93337463502916,3.09947935509275 -"Tfru14138_t",9.34217534114119,10.8871227210288,10.3095624895931,24.5521445080384,15.3932932370741,13.8220439313024 -"Tfru14139_t",10.7176028837993,13.0386378471379,10.5273832537329,5.7162694610639,4.92811436575983,3.26724570505662 -"Tfru14140_t",12.8954980145788,14.4609096537552,10.2884426770843,5.68863763203443,3.61107127540185,4.57866134146832 -"Tfru14141_t",2752.45426263024,2385.49464482533,2788.70588406713,2815.52254000402,2203.67466964702,1210.23448409162 -"Tfru14142_t",17.5077092637803,21.3735356630696,22.8158438629467,18.8671023840539,21.6067286999759,19.1408625291335 -"Tfru14143_t",0,0,0,0,0,0 -"Tfru14144_t",0.283101522397464,0.454480236003266,0.243793482619828,11.4937813655296,7.59605450334588,4.34967567431822 -"Tfru14145_t",0,0,0,3.02256848094903,0,0 -"Tfru14146_t",11.8267035260776,12.1118431341186,12.9941334504614,19.4045961944422,11.6483342840026,10.7414667657748 -"Tfru14147_t",20.5891572993016,23.8273900601353,19.795382912349,38.317600427779,47.8079212644066,61.2835685079927 -"Tfru14148_t",0,0,0,0,0,0 -"Tfru14149_t",3.91205115824291,3.32837926046914,3.57583519466846,2.26662313353672,3.15132230593036,2.86294930416171 -"Tfru14150_t",64.9308751975426,96.2641239607999,61.9659052410321,98.0822927264701,55.7542706795474,34.6987324037878 -"Tfru14151_t",0,0,0,0,0.186925049661489,0 -"Tfru14152_t",0,0,0,0,0,0 -"Tfru14153_t",0,0,0,0,0,0 -"Tfru14154_t",0.209676481126741,0.0561010857046461,0.481502269334003,0.144590422341572,0.181482140561528,0.255678285467461 -"Tfru14155_t",6.76244518903292,6.4719463019397,6.71941634372451,6.45688003670226,8.32944965875482,6.66030060038149 -"Tfru14156_t",40.434900969435,44.7455967869711,39.28304764213,40.0384392587396,30.2408044127589,39.0044631982341 -"Tfru14157_t",133.870866134816,159.291744134609,127.886718383377,258.985924319899,224.153307485212,191.831172296209 -"Tfru14158_t",0,0,0,0,0,0 -"Tfru14159_t",10.5328114925189,11.5124890192384,8.49139447166947,8.6638060367983,6.10999958926856,9.71471769179827 -"Tfru14160_t",0,0,0,0,0,0 -"Tfru14161_t",6.70371427548053,6.12511463227279,8.22947872634647,7.30304375118946,7.16027669008914,9.86154185669388 -"Tfru14162_t",31.5738333251396,34.3583653059898,32.6622666284942,28.1532410306284,33.0014307705406,37.019393786962 -"Tfru14163_t",0.211081348671979,0,0,0,0,0 -"Tfru14164_t",0,0,0.676128151616823,0,0,0 -"Tfru14165_t",0.121402278571456,0.0974472615852378,0.104545832322881,0.251152727824522,0.525389048542768,0.0888223407895632 -"Tfru14166_t",0,0,0,0,0.509676478866722,0.143609952865368 -"Tfru14167_t",0,0.0623230175757713,0,0,0.336015916443249,0.227227577916369 -"Tfru14168_t",73.5795581790194,61.0974709885431,78.657758300163,60.6542265640107,73.9338752632573,74.1499631126939 -"Tfru14169_t",5.16500434353943,5.01309306431159,4.76555845456748,5.09726593340722,5.38283163711521,5.49483753153 -"Tfru14170_t",1.4190942022204,2.96160663925946,3.17734563370487,0.880731525276534,2.94785855344537,2.07652229143168 -"Tfru14171_t",6.13609626257618,6.33773543392712,5.78921142811367,5.32033737718069,4.60807391490959,5.74378110085377 -"Tfru14172_t",4.32671468350802,4.77533404626715,6.13230854230395,5.40786796350055,4.91520621465032,4.88027299050638 -"Tfru14173_t",5.13301691067907,5.35622544941425,6.18843191574791,4.60156810490713,6.5161082484848,5.25770369186938 -"Tfru14174_t",14.326376891466,15.9379114325857,15.2591562474318,19.5636140553573,20.8297699131759,18.8026996776279 -"Tfru14175_t",35.2750753294475,33.5304721078929,37.9715083806974,30.7266630107526,36.3569221591595,34.4679755379963 -"Tfru14176_t",12.2609739071842,14.3979645847075,13.7847918262273,14.3265661444983,16.0166981403865,13.0405599901909 -"Tfru14177_t",30.6145328231533,27.2877408572523,28.3320232652936,32.9478519278687,32.1571130871297,29.4259788282238 -"Tfru14178_t",0,0.0323112146703328,0,0,0,0 -"Tfru14179_t",0,0,0,0,0,0 -"Tfru14180_t",5.35566151917977,3.37167525084923,7.77716446649914,5.97429551312582,2.27230763494747,0.845144572612693 -"Tfru14181_t",10.7946294175603,10.5482577680199,13.3374783627113,15.0495204393622,11.3742326307985,8.24112533984953 -"Tfru14182_t",5.58253719226798,5.68321274049141,7.26974779575511,9.8588639674391,7.07103834537949,6.37563019268748 -"Tfru14183_t",1.69617150251141,1.76192055863855,1.20289789019486,2.99295305343379,2.07260363852691,3.13895198638271 -"Tfru14184_t",2.57995582713951,2.49693828596427,2.60051502116994,2.50966904111718,3.24985259140082,3.40869458131395 -"Tfru14185_t",30.1506394899289,29.7514619211998,29.8915544637434,23.9414635049009,13.5570163842849,7.02199221773201 -"Tfru14186_t",30.7824281289345,39.6364876803723,45.8373620235875,23.2172483500006,19.9824304990017,17.8295593383344 -"Tfru14187_t",594.262875688555,788.97200869872,603.705961401929,217.018428400245,207.4258085291,137.972884294474 -"Tfru14188_t",2.8453980278221,3.54011626676803,3.67548091282475,2.35458340598908,1.41610365734237,1.1970333412419 -"Tfru14189_t",4.26052625055198,4.67217856189107,6.92451852831153,4.34494219136423,4.51864603978126,5.22453008524211 -"Tfru14190_t",4.94178686104464,7.36668541030068,6.079471920362,0.730242383941173,2.44416283033973,6.19815728355291 -"Tfru14191_t",143.080172925582,115.374512479281,149.213039168973,111.339143643367,122.704612275766,111.405420924962 -"Tfru14192_t",0.824979149965114,0.551829009958957,0.355216281345829,0,0.238015857015774,0.301792437772722 -"Tfru14193_t",0.272760963543661,0.437879902707692,0,0,0,0 -"Tfru14194_t",0,0,0,0,0,0 -"Tfru14195_t",4.96484341728616,5.83095315543444,4.45550599115145,4.43278705681949,3.21162236180445,3.00155968670025 -"Tfru14196_t",38.3685199710741,40.1173115629241,40.51130242815,40.5850041067858,36.0970235893164,36.0295585002913 -"Tfru14197_t",73.7847700522498,78.5383065591611,79.5975538448378,56.8264515720191,57.0951188084176,63.9588689362785 -"Tfru14198_t",7.12588017257813,4.21459406356154,7.42835476451331,6.59500154046357,5.19384602273708,3.84156623914861 -"Tfru14199_t",0,0,0,0,0,0 -"Tfru14200_t",0,0,0,0.0236523799203279,0.0395829310388236,0.0167297386571523 -"Tfru14201_t",0,0,0,0,0,0 -"Tfru14202_t",0,0,0,0,0,0 -"Tfru14203_t",0,0,0,0,0,0 -"Tfru14204_t",0,0,0,0,0,0 -"Tfru14205_t",0,0,0,0,0,0 -"Tfru14206_t",0,0,0,0,0,0 -"Tfru14207_t",0.0239794297993859,0.0386163227288994,0.020617188933438,0.0496482871776014,0.0414441973886116,0.0175307787362218 -"Tfru14208_t",0.145179222531303,0.466130219011414,0.416737995204112,0.100113875377056,0.209429275110366,0.177030702264913 -"Tfru14209_t",6.24612466702212,9.02455829223586,8.60618182512225,12.9217611639085,15.9483896460254,13.2526894792933 -"Tfru14210_t",0.370089765512985,0.297063898753236,0,2.29688573992823,0.640650610734089,1.35385594331228 -"Tfru14211_t",27.9563942869691,31.393413260008,26.506497614959,19.3514232052357,16.4980991310472,19.9890572712674 -"Tfru14212_t",10.9719301487382,12.6533217879312,11.4626530505214,9.36257348614474,8.32802291196683,10.809948276391 -"Tfru14213_t",38.0997473168031,35.3189948797636,32.8844163488336,37.7938153422385,27.6432796582039,18.6681070133833 -"Tfru14214_t",5.37317880819975,7.51851525254193,5.56505507441799,5.70813494457531,6.34753524299933,7.9686767277067 -"Tfru14215_t",0,0,0,0,0,0 -"Tfru14216_t",0.987067090003951,1.67263263096959,1.65280682693224,3.8004063553708,2.84780069131798,4.0120796231317 -"Tfru14217_t",4.85193619856488,5.33698328476669,4.56513074019102,18.0303483449125,15.9426075778133,17.2891023896656 -"Tfru14218_t",0.260901791215675,0.31413123455117,0.224676136544826,0.13493609289951,0.112909696146458,0.190885278963906 -"Tfru14219_t",0.308294960629165,0.247462403732054,0.398233298903306,0.478342259599732,0.133419897831778,0.225559852573863 -"Tfru14220_t",0.389839335366346,0.469374744897805,0.503566468450816,5.0405361848773,10.1225769352648,11.2662174623755 -"Tfru14221_t",0,0,0.0525768284647049,0,0.0528443636034295,0.134008124621463 -"Tfru14222_t",21.438849858589,21.2105386700308,17.775149205055,14.5948800018526,13.550235677123,14.4452010037066 -"Tfru14223_t",0,0,0.151986798250912,0,0,0 -"Tfru14224_t",0,0,0.539893402735283,0.648498834523854,0,0.458694476310507 -"Tfru14225_t",5.92340033339243,5.62371914470683,5.75913584274493,6.5223544646711,6.39484908333966,10.7179406823858 -"Tfru14226_t",0,0.0974472615852378,0.104545832322881,0,0,0 -"Tfru14227_t",0,0,0,0,0,0 -"Tfru14228_t",8.11018950190405,9.56280730267491,5.77995067649272,5.78554219888713,4.79272342710625,5.07434581789004 -"Tfru14229_t",17.2962540411804,14.0636721693176,15.8618949447315,1.85879879844459,4.66612904716486,3.94428191399215 -"Tfru14230_t",4.11406387312269,6.36526342601771,3.95359838856807,7.1541986401455,6.50244455933868,10.4695630648195 -"Tfru14231_t",6.377751116157,7.23762750182295,8.04893436810456,15.2414202524295,16.5604828683083,14.7226517646952 -"Tfru14232_t",12.5319346565143,11.5493848371631,10.5920523377735,1.20026027385752,2.00866973255025,3.73544562480749 -"Tfru14233_t",130.65062042732,137.192303310417,150.179727628949,260.696531481854,294.867175580494,219.36667903552 -"Tfru14234_t",22.2160157787816,23.9991146940605,19.6568254345322,16.811727462129,13.8273933071482,17.5527490095136 -"Tfru14235_t",5.4289290575196,5.8718112254658,6.57688326976672,5.71076739281169,6.29177842403856,5.85702103493413 -"Tfru14236_t",19.1364509285526,18.683111648486,19.0506489542677,8.98469467681134,15.5060217286238,13.8023316896066 -"Tfru14237_t",14.071150453079,11.9887142162548,13.1174320041131,7.55882708186227,7.08539286902013,5.41432226828791 -"Tfru14238_t",0,0,0,0,0,0 -"Tfru14239_t",19.8005995713627,21.0392535652992,25.4656920205367,46.8451613493547,49.3111731931001,45.238284032214 -"Tfru14240_t",28.9690954384302,30.7944244718755,27.3066309103548,24.1340684627501,31.7148920232743,24.1163002673858 -"Tfru14241_t",0.222839195680232,0,0,0,0.385749837232462,0.163037293969172 -"Tfru14242_t",5.62041253048416,4.98628030055168,5.85898403961613,7.95552795601902,6.14483191422415,6.49278800982863 -"Tfru14243_t",9.1462910194721,9.24491601039305,7.00119831942909,9.1103626593121,10.2620344804079,10.9050912595186 -"Tfru14244_t",0,0,0,0.168735619082106,0.282383861430365,0 -"Tfru14245_t",21.0870776771453,21.2391128030165,19.7888523161122,24.2589692743908,23.1654725261901,26.01015403755 -"Tfru14246_t",0,0,0,0,0,0 -"Tfru14247_t",0,0,0,0,0,0 -"Tfru14248_t",0,0,0,0,0,0 -"Tfru14249_t",0,0,0,0,0,0 -"Tfru14250_t",23.0003595627371,24.8204381576163,30.159008145233,20.1254559732338,21.4111898902577,21.0984283109568 -"Tfru14251_t",0,0,0,0,0,0 -"Tfru14252_t",0,0.481667892977717,0,0,0,0.439036141616305 -"Tfru14253_t",0,0,0,0,0,0 -"Tfru14254_t",15.8109416957499,10.7969376010341,13.4124080164344,10.4962086645316,12.6636470442016,8.11476913438133 -"Tfru14255_t",4.30266852292969,4.6463026669772,3.9185041441462,3.36196706037763,3.16147149210083,3.57829014464542 -"Tfru14256_t",6.60523846851675,4.63916005030852,4.79934725091085,1.70808538235449,1.60792284733384,4.53059409039639 -"Tfru14257_t",0,0,0,0,0,0 -"Tfru14258_t",78.5643259363236,66.7858843205429,84.2441110305053,28.6880937004841,36.837025573026,35.7869796107961 -"Tfru14259_t",63.7320099645464,82.3818189370058,73.0584816419899,104.877914963964,106.742490674183,79.0265054910571 -"Tfru14260_t",0.291298116405851,0.607930350361165,0.551874393648941,72.7973670897086,60.6621045179874,73.2666536066592 -"Tfru14261_t",3.14538510716788,4.08548805072269,3.15188959967037,6.09297543513296,9.45428472756905,10.842323918157 -"Tfru14262_t",6.10456024982836,4.90001247528262,3.7049017173634,2.70619236832374,5.13274195188135,7.52893812406149 -"Tfru14263_t",1.54620325346222,0.601749068751675,1.37186522191453,0.145396838528641,0.283880039168005,0.205683412692842 -"Tfru14264_t",33.5780199537512,41.7395567601242,29.8721424406745,125.685730574455,186.929991692351,222.010266635711 -"Tfru14265_t",0,0,0,0,0.0511708967757347,0.0432547922775353 -"Tfru14266_t",0,0,0,0,0,0 -"Tfru14267_t",1.92390175805841,3.60331706185202,4.4180589902253,2.65339981142865,9.43614773563969,11.2607743189481 -"Tfru14268_t",0,0,0,0,0,0 -"Tfru14269_t",0.76373069792225,0.459773897843077,0.657688326976672,16.3922819037832,17.1869086570572,8.66098570280777 -"Tfru14270_t",0.393675617485696,0.0631991612155432,0.135605840613747,0.570095507770377,0.613331395374763,0.921687869936311 -"Tfru14271_t",1.20878239958917,1.57668267126043,1.30118194186032,0.468878653744342,1.438583250902,1.38185835940597 -"Tfru14272_t",0,0,0,0.0539744371598041,0,0.0381770557927812 -"Tfru14273_t",1.3772192913352,1.98984113164873,1.89759254996548,26.4970245112704,33.6152526192885,33.0500649558228 -"Tfru14274_t",319.087605749383,329.855458275852,334.707890740899,147.361593598678,113.670136148216,109.785483364584 -"Tfru14275_t",327.640469408139,286.110728428764,305.919027518962,129.727559713389,93.4892284091228,95.2708427307382 -"Tfru14276_t",11.1955066631415,11.1799515138337,10.4001711306804,9.57437418873545,6.94329468307139,9.02949462297259 -"Tfru14277_t",10.7876961081518,12.6437821906846,11.9617064468882,18.5647529994654,18.0545170267644,15.3313416271476 -"Tfru14278_t",3.06515894400665,0.853588671101071,1.88540585172017,0.711755236113277,0.32485708556211,0.686504763511292 -"Tfru14279_t",0,0,0,0,0,0 -"Tfru14280_t",0,0,0,0,0,0 -"Tfru14281_t",0.698469645212958,0.809825002513441,1.13614519302206,0.561932477405074,0.873237853245402,1.5330777046764 -"Tfru14282_t",0,0,0,0,0,0 -"Tfru14283_t",0,0,0,0,0,0 -"Tfru14284_t",2.03798757666584,3.36258717739681,5.36255307036235,1.99094386127202,1.37195932676074,4.43177992009597 -"Tfru14285_t",0,0,0.0480702431677302,0.866101433494531,0.386518773785085,0.530927427071701 -"Tfru14286_t",4.62769024588482,3.95947335753481,4.11652378991452,1.57806617119766,2.11275092450322,2.90210330899362 -"Tfru14287_t",4.40268284684591,7.21213957400905,4.41038054560827,16.0786096065457,13.1429301495144,8.41446808318326 -"Tfru14288_t",0,0,0.149166424675121,0,0.14992545220272,0 -"Tfru14289_t",0.117826615387724,0.472885729431869,0.202933284621133,0,0.101982951358091,0.862062550159575 -"Tfru14290_t",0.350335182533142,0.449931643149188,0.241353514486852,3.62380499696767,1.33419897831778,0.871481248580835 -"Tfru14291_t",0,0,0,0,0,0 -"Tfru14292_t",150.225452059288,138.188857571752,156.095682727764,121.144693611436,130.741641262002,104.460323350248 -"Tfru14293_t",3.16449175522976,3.57819450139257,3.86254559537888,6.6319785822985,6.93079878697374,6.74444645982199 -"Tfru14294_t",6.7508338477056,10.8375275920154,7.75132671079649,20.5608871555629,27.2676916193697,26.8909636740403 -"Tfru14295_t",0.0830142062958967,0.299852542071572,0.178719654069748,1.41682897544486,2.40702943148586,2.39908089243273 -"Tfru14296_t",65.9967665718771,95.3281996919422,72.6202727642743,41.7180407747685,27.4574099038814,27.2918861468167 -"Tfru14297_t",0,0,0,0,0,0 -"Tfru14298_t",18.7048055767522,19.6734985846097,20.5511822709793,43.3660257103532,56.9369278164983,46.2462638233015 -"Tfru14299_t",0,0,0,0,0,0 -"Tfru14300_t",0,0,0,0,0,0 -"Tfru14301_t",4.89001028937412,5.02414938426893,3.32672384250715,11.5325590178236,12.4011387574316,12.1642144010293 -"Tfru14302_t",0,0,0,0,0,0 -"Tfru14303_t",3.92571833753644,4.41153748306133,1.35225630323365,7.30924816791173,4.7569802232133,5.16995803556912 -"Tfru14304_t",0,0,0,0,0,0 -"Tfru14305_t",0,0,0,2.65028731907261,7.05888265199578,2.88399107689749 -"Tfru14306_t",0.492729482530484,0.395504428252109,1.48510267381829,3.97543097860892,5.73534215474657,6.12848103840716 -"Tfru14307_t",0,0,0,0,0,0 -"Tfru14308_t",11.1969666201693,11.1680095059675,10.2128416073901,15.5568119469981,10.5515357685889,5.08977230423475 -"Tfru14309_t",10.2713416855602,11.0748457144683,10.4294006595388,12.5273880699918,8.49212780359931,5.04731330691058 -"Tfru14310_t",27.7392753490628,25.8283047517884,28.1192782816819,29.0209346366592,26.6160109391583,24.0061648755853 -"Tfru14311_t",0,0,0,0,0,0 -"Tfru14312_t",0,0,0,0,0,0 -"Tfru14313_t",3.86571988430654,3.49080592939197,5.17179727951253,2.71335749008777,2.74842796930376,3.28285036048854 -"Tfru14314_t",109.358334850661,121.496573217319,160.906850399191,102.630530668885,145.427688065594,103.324884647241 -"Tfru14315_t",9.46361951773222,9.06221016038528,9.29342201162689,15.9715266322875,15.5199509612222,8.01718171648405 -"Tfru14316_t",17.3792458817269,14.825075912131,17.1752043250931,2.98507478796016,2.66432406662543,3.51899197479262 -"Tfru14317_t",1.27772436154293,1.28200579880199,1.37539383968506,0.991241564569787,2.21182796405533,1.86965961449058 -"Tfru14318_t",4.76476763778359,3.62329280688275,5.83084874961408,8.56018461582207,9.33341882294842,6.23824487790102 -"Tfru14319_t",3.42646778406952,3.569373701487,3.22864755062484,3.7429372425675,2.05951577280759,4.79431027212327 -"Tfru14320_t",4.0121623039053,2.81370679489407,4.56281876628528,3.74525211658429,5.13122775580566,4.80123110703943 -"Tfru14321_t",15.7519456446464,14.1489943562423,9.68915838849562,5.81911900629138,7.14153828126348,8.50632524382906 -"Tfru14322_t",3.91303085722521,2.49991130766388,2.33816952746459,1.56946581056883,1.45151210141131,2.74606255878303 -"Tfru14323_t",13.9702649013193,13.2593970539015,14.7942924787337,11.9119763448637,11.8466375574789,11.5333314505675 -"Tfru14324_t",8.45742048034706,9.05147718348786,9.74818372096037,7.40232794605161,7.28264625593903,6.50507860836728 -"Tfru14325_t",11.9617423879876,9.15487982018665,6.7075498247952,4.60391225575018,4.09316342189213,7.5304874621721 -"Tfru14326_t",0,0,0,0.871364887967303,0.795411241403672,0.336180819469705 -"Tfru14327_t",0,0,0,0.682451653093858,0.761401511186587,0.321806595949622 -"Tfru14328_t",17.2184697200689,18.4730767260192,15.3607447834404,7.39193112261564,8.18213385497495,9.46883038182644 -"Tfru14329_t",24.4249723203436,17.3499584091727,17.7451756146536,38.6796740534826,35.6085807081991,30.9433877513582 -"Tfru14330_t",7.66518036235834,8.67529580966681,8.68016573879339,18.4342894067917,17.8467373372517,15.0858586617661 -"Tfru14331_t",106.289564949387,79.196468631521,87.4353095143466,1.70035206489691,2.11905458046725,11.2080333904885 -"Tfru14332_t",30.3582952424094,21.91588913052,30.7469292861594,32.5870664352317,41.8104604830335,25.7035704728489 -"Tfru14333_t",21.9518023459938,20.5978706233698,23.1506291095788,19.2306012833368,22.3618679669843,25.7355003740574 -"Tfru14334_t",0,0,0,0,0,0 -"Tfru14335_t",3.62872046264105,5.91367125148949,4.5452805843414,18.1987107491696,15.89425654602,9.81510117646346 -"Tfru14336_t",0.032461505707669,0.0781686688759481,0.111817180784287,0.40293126967829,0.337158474428064,0.617500601037798 -"Tfru14337_t",0,0,0,0,0,0 -"Tfru14338_t",0,0,0,0,0.451638784585833,0 -"Tfru14339_t",3.66314271401622,2.84324733206126,2.26173361313245,2.87756352451518,1.57033189087279,3.57766596685827 -"Tfru14340_t",9.12463070335137,7.65887108076117,9.0616969781107,9.79356312914799,8.72566131819828,8.29105332548511 -"Tfru14341_t",0,0,0,0,0,0 -"Tfru14342_t",118.108046382289,121.182239990469,123.151919704243,85.1585465543751,86.9847857265873,81.9807673785732 -"Tfru14343_t",11.8334220987788,11.5536812549694,9.71363402198659,9.59179989526865,10.7812948742153,11.2905340537745 -"Tfru14344_t",7.04316602842195,5.72981066043109,6.61165531122319,6.16955537746583,4.42104567041139,4.78164740341156 -"Tfru14345_t",0,0,0,0.103205277704614,0.172716969877242,0.218996650212747 -"Tfru14346_t",10.9459774295046,8.29190493287025,19.1468710825863,121.467317125028,126.449848975383,60.1386558480397 -"Tfru14347_t",5.01423191201309,4.37788200110266,4.35589389332717,6.50603909282812,7.23331435627258,6.40395125939747 -"Tfru14348_t",9.02798078737943,12.278936734436,10.3659533326472,17.3797687654569,21.2715126662545,15.4121344042261 -"Tfru14349_t",8.58063230682242,7.60829332139375,8.76397034284829,6.60513777309527,6.47688637039659,8.24887382468014 -"Tfru14350_t",0,0,0,0,0,0 -"Tfru14351_t",3.44069802476918,1.15074240643318,2.96296447648193,0,0,0 -"Tfru14352_t",11.9216499187863,10.9285502990638,10.0476110263177,11.8410841417546,11.0661061198006,13.0834717147057 -"Tfru14353_t",0,0,0,0.163037230445187,0.818542337542053,0.115319061587951 -"Tfru14354_t",3.56119885385627,2.85850546095413,3.0667340236498,4.10462847306916,3.84558482264828,4.739534286168 -"Tfru14355_t",15.1512657972732,12.8876954406619,15.1896792609955,11.6956721167274,10.765172106346,11.2506704392831 -"Tfru14356_t",2.32882974623109,2.07700734138556,2.6739689679955,2.94421134117083,1.94102664504753,1.32522202911081 -"Tfru14357_t",0.488432423089811,0.588082892589982,1.26184388315292,15.4093880042569,23.6742748943364,34.1274024035993 -"Tfru14358_t",3.86604112340167,3.44313829288126,3.22854719330782,1.26190754956819,1.09215563553182,1.05139850126751 -"Tfru14359_t",18.8669975631561,22.8395850935361,20.7987318033661,7.2468677368767,6.11711199459158,6.6096296960333 -"Tfru14360_t",0.329883678421914,0.529582500133387,0.37877338202845,1.47864524837003,1.90350377796647,2.33309782063476 -"Tfru14361_t",18.0509491626346,21.132968874393,19.8763031349667,13.8951305557682,12.299892986662,11.0017867609692 -"Tfru14362_t",0,0,0,6.20706027337747,1.64016190191697,0 -"Tfru14363_t",2.85875047191533,2.29466372725195,3.49419484365213,6.96335411568801,7.74230834124802,6.67951802723534 -"Tfru14364_t",4.47991114664255,4.07926306152057,3.60898927131121,7.29970219076674,6.96285091809592,6.69630812328656 -"Tfru14365_t",27.3382936287133,23.8660148397404,25.5186195277053,25.1820877599257,22.1941306292257,16.0597543489348 -"Tfru14366_t",8.67634477083469,8.90631198337532,7.61533852288778,5.86804506480174,7.07642179066064,5.79859054965827 -"Tfru14367_t",11.8314209044809,12.4603101365255,11.2724063819406,13.8465190713805,10.008235030346,7.54489196164007 -"Tfru14368_t",34.5925080273125,30.600077858172,38.3006730982806,27.0189682058234,22.6085061806425,17.5614456367332 -"Tfru14369_t",3.21216146479064,2.89567403896463,3.48961688784093,2.40249744698963,2.69468952473771,2.38629055796525 -"Tfru14370_t",1.59930168545869,0.906161321616814,2.75448414657643,5.06017903585532,3.33848557340547,4.06096139950312 -"Tfru14371_t",9.86515141957351,4.58774078866717,16.7210974463407,7.77473346451009,7.65765555262819,8.99348964840755 -"Tfru14372_t",4.53379803162565,5.22983223326864,3.72329631855271,2.42248385222595,2.41686473252454,3.69053968936078 -"Tfru14373_t",1.2120523249262,2.18900467142601,1.43517200296082,6.66041634384057,10.6218600356787,10.9185002577064 -"Tfru14374_t",24.7340195570759,21.9073315791219,22.4014653503222,22.0555441186002,24.3609833756805,25.5844411460049 -"Tfru14375_t",125.399653304008,104.808673486809,158.057355999232,154.430203399808,119.839239023153,81.1122490377419 -"Tfru14376_t",7.1469501908294,4.76255894180951,6.15461147074478,6.13731802311481,7.00293845762302,7.00484630445075 -"Tfru14377_t",7.48422064779042,11.9022389144678,6.28392633124704,19.6441707092859,19.6764634402578,17.933013000569 -"Tfru14378_t",7.01625124684616,8.29950830978272,8.74508654551399,2.10085116945084,1.91772776224138,1.75614456646793 -"Tfru14379_t",39.1585557843771,38.2308962327698,39.3417199227864,15.9434242393861,18.6291667261809,13.8169390684089 -"Tfru14380_t",0.314253279693694,0.0420408385392672,0.180413256776643,0.216705346202705,0.0906656412946622,0 -"Tfru14381_t",14.2996385993953,13.1084473002069,13.0138328529427,15.5476654816708,13.080053233276,14.3259955688172 -"Tfru14382_t",15.0841574252973,13.7893950408796,14.2526472853548,14.7359635417839,20.3091036500043,24.3714326992371 -"Tfru14383_t",0,0,0,0,0.049097801700418,0 -"Tfru14384_t",0,0,0,0,0,0 -"Tfru14385_t",5.60998368320325,5.70569681603685,6.00130368871289,5.19014247661924,6.15247790996976,5.68507189601088 -"Tfru14386_t",6.53121424430062,6.63765535276902,6.62224108542028,10.5695145470177,8.93536895698466,8.01550623441164 -"Tfru14387_t",0,0,0,0,0,0 -"Tfru14388_t",29.4303867670676,31.7839450398526,29.0304465347028,23.24682446335,24.778284528854,19.1833626209714 -"Tfru14389_t",28.6851220686718,29.1049872614385,28.2243484004528,20.1239427810554,18.0353616203209,19.9774259315385 -"Tfru14390_t",0,0,0,0.312024573886121,0.130545501469155,0 -"Tfru14391_t",1.34685974783884,0.743255065317465,1.66728603932964,1.48024082671727,0.947174324787723,0.184764708896927 -"Tfru14392_t",0,0.648399010801338,1.39126360574565,0,0,0 -"Tfru14393_t",3.98355723895094,3.76851086462403,3.49170686718352,6.40152363503282,4.86400821434988,5.51676235528877 -"Tfru14394_t",3.55231322878396,4.5269223071559,4.1313377470505,2.87895036219426,2.75767413064244,3.18846648619832 -"Tfru14395_t",32.4528664986028,32.4109398492756,33.9098092717267,27.0965610345257,21.3014737576009,18.6775653494256 -"Tfru14396_t",1.01625455771912,0,1.45858298321439,0,0,0 -"Tfru14397_t",3.55808654561424,4.60134504821777,6.12810770547676,7.36084324184058,4.9616505534853,3.61559175449281 -"Tfru14398_t",0,0,0,0,0,0 -"Tfru14399_t",0,0.327347111732935,0.351192795958417,0.421839047705265,0,0 -"Tfru14400_t",1.37400148925265,1.26043934611186,1.35225637322306,5.6849710915046,4.07741183093378,9.04742703051821 -"Tfru14401_t",0,0,0,0.254835319141597,0.213237080112373,0.180249442306093 -"Tfru14402_t",0.166028412591793,0.133267796476254,0,0.343473691016935,0.287406499281893,0.485889800999033 -"Tfru14403_t",0,0,0,0,0,0 -"Tfru14404_t",0,0,0,0,0,0 -"Tfru14405_t",0,0.146276583550943,0,0,0,0.399989543338684 -"Tfru14406_t",0,0,0,0,0,0 -"Tfru14407_t",27.0497807561317,22.5474258261125,25.0858210165715,23.9442634694376,20.7110640163633,21.6935505269568 -"Tfru14408_t",6.9483946948102,6.33088382805261,5.91732385224388,8.0965494604369,9.02029143464171,6.86345262641629 -"Tfru14409_t",0,0,0.284825653415094,0,0,0 -"Tfru14410_t",0,0.0703164807267827,0,0,0,0 -"Tfru14411_t",2.53043303528456,1.21867780151177,0.653726349103319,1.30871752751935,1.75214082694745,0.370271444737215 -"Tfru14412_t",11.6663466610916,10.738467591384,10.7017059091449,8.52592430003547,10.7012827487337,10.4838517137822 -"Tfru14413_t",3.11871468293076,5.31958044217512,4.19638723709013,5.44377907966748,5.56741731439566,7.84356911937535 -"Tfru14414_t",19.2469593841706,20.6684736739365,23.0699961134542,37.9341702156258,43.2230901211061,36.9170947564002 -"Tfru14415_t",0,0.636165141669666,1.36501350881951,47.9583241876996,46.9896069415553,11.8871106267995 -"Tfru14416_t",7.76360485728357,8.26519614021406,8.93765168080166,8.96038662032312,8.91239726080564,7.95219159232319 -"Tfru14417_t",24.4587172878898,34.5703411795934,27.2441145573564,40.9744548426121,41.3042248580325,45.0289916133115 -"Tfru14418_t",10.1863950974506,11.5173261502281,9.05500486684961,15.8615881822945,11.6607599102389,16.2678059253646 -"Tfru14419_t",18.0842382799585,20.6601513093039,18.2100264564953,27.1187735861913,24.6796419212518,24.3620054892704 -"Tfru14420_t",1.94550346207562,3.33618393241924,2.28460155686633,3.29300881871815,4.05666710407464,5.88770573073723 -"Tfru14421_t",0,0,0,0,0,0 -"Tfru14422_t",5.0105076380993,6.23072249693399,6.41632276967044,11.4665656100898,10.6733856771327,10.9026404018358 -"Tfru14423_t",0,0,0,0,0,0 -"Tfru14424_t",1.20878239958917,0.727699694427891,2.08189110697652,3.43844346079184,2.35404531965781,2.21097337504956 -"Tfru14425_t",11.7483989713678,10.7399644505408,11.1609928074066,12.9239124005063,14.5669799106066,12.893336633946 -"Tfru14426_t",0,0,0,0,0,0 -"Tfru14427_t",0,0,0,0,0,0 -"Tfru14428_t",0,0,0,0,0,0 -"Tfru14429_t",0,0,0,0,0,0 -"Tfru14430_t",0,0,0,0,0,0 -"Tfru14431_t",0,0,0,0,0,0 -"Tfru14432_t",0,0,0,0,0.191352221890313,0 -"Tfru14433_t",0.103844717888069,0.66683317692939,0.268278303958346,1.71864215233196,4.58393826975806,9.72500328526124 -"Tfru14434_t",0,0,0,0,0,0 -"Tfru14435_t",31.6987607199482,34.3424242045262,33.7116119765774,22.3966092338362,29.6852395361385,21.417721877645 -"Tfru14436_t",30.8997442682311,35.3513720547993,27.030267504316,27.1874857223049,27.5908381479336,39.0563373040267 -"Tfru14437_t",0,0.443641480374891,0,0,0.478380554725775,0 -"Tfru14438_t",0,0,0,0,0,0 -"Tfru14439_t",7.02104013363682,6.31581819323343,6.56740649272095,3.69382693502147,2.77653728304821,3.36552200778437 -"Tfru14440_t",4.31738025911998,5.44575059835772,6.20585353352794,8.42797905743757,4.21448093035079,10.2362599633573 -"Tfru14441_t",2.98340401563385,2.22693773636728,2.27461083905752,1.02210809296964,0.855263493452294,0.528313113187594 -"Tfru14442_t",2.87108271284293,1.70337234069649,2.20369565725467,0.581047246987787,0.810332588985725,0.776304618906702 -"Tfru14443_t",1.6617437163583,2.22308258297751,2.7030267504316,10.8862287871543,10.5475026923276,42.012381551656 -"Tfru14444_t",0.799011735598005,1.37432415116137,1.32699343146788,5.37214319856175,4.00123735719011,27.3920375313205 -"Tfru14445_t",2.11790865810372,2.32632171221796,1.79184435832654,1.57578619943329,1.09344126794465,1.8757581282707 -"Tfru14446_t",4.59301264655031,4.18945731964368,3.70358287507241,4.66455026508287,4.91505110700367,3.91030201678745 -"Tfru14447_t",0,0,0,0,0,0 -"Tfru14448_t",0,0,0,0,0,0 -"Tfru14449_t",0,0,0,0,0,0 -"Tfru14450_t",0,0,0,0,0,0 -"Tfru14451_t",0,0,0,0,0,0 -"Tfru14452_t",1.96576004760776,1.41178520355756,1.5146270584315,4.70880434532084,6.35798392438504,7.34250098911162 -"Tfru14453_t",0.904417931750032,0.725958786068016,1.73075875520177,5.19729927196678,6.3494146354513,6.2494379010073 -"Tfru14454_t",17.3308119913126,18.8625188858698,16.9481222720912,16.2555529537053,14.1105537051283,12.57239860085 -"Tfru14455_t",0,0,0,0,0,0 -"Tfru14456_t",0,0,0,0.951447195189248,0.530757987724957,0.112162517931346 -"Tfru14457_t",0.103844717888069,0,0,0.429660538082989,0.179762285088551,0.151953176332207 -"Tfru14458_t",13.6761078465147,14.8268171707535,13.3067173132489,18.1881301033852,20.4459646814724,21.7011944841545 -"Tfru14459_t",0.467763790486901,0.750929899966421,0.563942106650376,1.93538627677694,1.78140821269824,1.40315559737277 -"Tfru14460_t",308.203749102352,325.197080407352,325.769762433238,497.48302605265,520.398785224893,399.886587450309 -"Tfru14461_t",0,0,0,0,0,0 -"Tfru14462_t",0,0,0,0,0,0 -"Tfru14463_t",0,0,0,0,0,0 -"Tfru14464_t",0.295811185814956,0.415523358379306,0.700530700388885,1.60640468342692,1.2161646496902,2.00194296969716 -"Tfru14465_t",0.151188440500505,0,0.0867974996609885,0.1563866415608,0,0.0737433231270278 -"Tfru14466_t",12.9272697081014,21.1322354010639,14.0389637654763,2.05987616946958,3.15512060521433,3.35847655138102 -"Tfru14467_t",0.518983022526316,0.416577637170561,0.558654177354702,4.16040796702058,5.3903699263001,3.89199606622623 -"Tfru14468_t",102.116061019492,222.065507028785,94.1741643809218,240.470075508846,202.470445022357,77.3611956846011 -"Tfru14469_t",1.63656578126196,2.03017045800839,1.87910950564763,2.61619895820042,4.54998081330686,6.05942443388729 -"Tfru14470_t",28.9216051180393,23.0766297906484,27.7226411596519,23.8615677722462,28.7577294127778,28.8432350414764 -"Tfru14471_t",3.34008412401606,3.55526690236479,4.50206702649545,2.70385339479883,2.19964092579185,1.96560692616765 -"Tfru14472_t",0.0862529535641144,0.138467156092371,0.445661494665917,0.802966729410228,0.970513322523766,0.50484648728031 -"Tfru14473_t",0,0,0,0.160329970161042,0.402475153053427,0.340212508264083 -"Tfru14474_t",50.3802568583023,49.19414894593,45.5095925792049,68.3640054220833,61.3628423459076,40.1850391136905 -"Tfru14475_t",0,0,0,0,0,0 -"Tfru14476_t",0,0,0,0,0,0 -"Tfru14477_t",0,0,0,0,0,0 -"Tfru14478_t",0,0,0,0,0,0 -"Tfru14479_t",50.9625861739377,66.0044506060286,42.0659196155013,27.8536691472886,28.1224404515883,31.5873420034895 -"Tfru14480_t",54.7893761552918,69.2377459538939,44.0365227627859,29.3537900553704,23.3462510185907,33.302139437703 -"Tfru14481_t",0,1.11644875855935,0.479110701771086,0,0.240774318934831,1.83174019350132 -"Tfru14482_t",0,0,0,0,0,0 -"Tfru14483_t",30.676820157593,26.8768385151227,28.3167002831961,30.4871838725796,35.9230686727734,40.9278083330773 -"Tfru14484_t",0,0,0,0,0,0 -"Tfru14485_t",0,0,0,0,0,0 -"Tfru14486_t",7.91429024870336,8.58949555280476,8.51126070205105,8.30170290433148,9.45505096399195,9.46034534258268 -"Tfru14487_t",27.0541891297882,32.2880765547426,25.7501700901036,20.2518491970367,20.9514466679902,17.1893811378853 -"Tfru14488_t",0.352984776350619,1.13333621877285,1.21589438600729,1.27792417393066,3.81900442848314,5.68164418563155 -"Tfru14489_t",43.553766759391,46.3022684218005,31.8387828335942,13.0148037990173,9.54997494503269,14.304080743005 -"Tfru14490_t",58.0747889247461,58.8543313359981,46.8573676372704,18.9414739659117,17.0140044979697,19.9050549615672 -"Tfru14491_t",57.5194160262015,55.3822431990167,55.5091037526141,24.5718732347207,26.1631226975366,24.9961164663268 -"Tfru14492_t",1.0545235578006,3.38578267867705,5.44863132809126,4.72671535462218,5.17211444942019,5.14351965074291 -"Tfru14493_t",0,0.0737784518785389,0.0791528621087898,0.760602571792426,0.397778141785115,0.403490545906199 -"Tfru14494_t",0.439844904562552,0,0,0.454967768729239,0.380700755593294,0.321806595949622 -"Tfru14495_t",2.19276676728085,12.9256718425705,0.94415290006439,6.02479749210375,16.1915819730025,25.1675856711596 -"Tfru14496_t",0,0,0,0,0,0 -"Tfru14497_t",0,0,0,0,0.228300924076355,0.0964914596960404 -"Tfru14498_t",4.95545079573515,4.97205566945509,3.06719164470227,0.881002103318093,1.54139946481229,2.49259228788997 -"Tfru14499_t",0,0,0,0,0,0 -"Tfru14500_t",0.375046324872533,0,0.322971946283187,3.10353013668874,2.59692301136854,0.823192765531845 -"Tfru14501_t",0.268510832005733,0.734348408327097,0.511638726785247,6.51434048493081,3.62188787965253,2.35691422840277 -"Tfru14502_t",0.2193482422231,0.528199778200924,0.188892208792256,0.226889931663929,0,0.160483184925268 -"Tfru14503_t",3.26606216390076,3.13136146407164,3.51572053837422,3.94141624270621,4.24033217407044,4.77914072084146 -"Tfru14504_t",0.151643279370844,0,0.261175869918534,0,0.131252426567363,0.554738807097272 -"Tfru14505_t",0.81961343191656,0.49341589036818,1.76452965774229,0.847793598314972,0.354701679601556,0.599659120257344 -"Tfru14506_t",330.541276140215,320.052115291374,338.110785566187,471.513905968674,349.61338061929,171.661162600305 -"Tfru14507_t",0,0.149189170391559,0,0.576762237791712,0.482614010962295,0.271969291267158 -"Tfru14508_t",1.53379940993514,1.11922829903709,1.6810622797412,26.1778259828252,26.1890526424485,22.0356065103694 -"Tfru14509_t",0.407098742064283,0.475302238005178,0.637407189140387,0.995317153968899,1.02504097717454,1.00185339805109 -"Tfru14510_t",0,0.278650847177622,0,1.07725839455312,2.10329301747204,0.761963551566666 -"Tfru14511_t",0.495149568397529,0.927376296893698,2.13199555896171,3.92666681341365,6.99995750805036,6.03782513029251 -"Tfru14512_t",0,0.0265486240224349,0,0.205272859434531,0.229019982104942,0.483976849026596 -"Tfru14513_t",0,0,0,0,0,0 -"Tfru14514_t",2.39540789165023,1.78540848313808,1.91546702154102,3.89363455030603,4.59089444779611,4.75697000692944 -"Tfru14515_t",0,0,0,0,0,0 -"Tfru14516_t",17.0557979686999,16.7735186556509,16.1139157628806,24.5678778270092,20.4965198749624,24.5189898887941 -"Tfru14517_t",0,0,0,0,0,0 -"Tfru14518_t",1.0663148456938,0.550228055442304,0.983849265196291,0.078784083252298,0.065923702917787,0.167176046671925 -"Tfru14519_t",2.82337340597642,2.78461559866347,2.806403354475,2.23693841814962,2.23574923538628,3.34025351934552 -"Tfru14520_t",4.4037697501162,2.99100223865658,4.66746554628606,4.20478276583636,6.45042167339927,3.96548773073405 -"Tfru14521_t",0.299324382796131,0.160174596239868,0.429606389355308,0.722436943932295,1.03630181926345,1.16798213446798 -"Tfru14522_t",81.9144837958604,100.309091142729,90.3945432358166,80.6659745714815,90.6277539892563,94.1782725406245 -"Tfru14523_t",0,0,0,0,0,0 -"Tfru14524_t",6.95258290522324,5.6737155945325,5.68787008295687,5.27386086675934,5.41592771474376,4.74764600038228 -"Tfru14525_t",5.58208483531212,3.80853682820179,4.68684870885369,4.1861569285569,4.71069755550572,3.87985427475474 -"Tfru14526_t",5.89002641571034,5.47430668034561,5.07220886856548,4.16857922418709,7.37871113931282,4.082550099169 -"Tfru14527_t",10.0114877495446,10.0234323192853,10.9204578946229,8.52953797689647,9.14979435169007,9.9711386135564 -"Tfru14528_t",0,0,0,0,0,0 -"Tfru14529_t",0.228289067313716,0.226695570365788,0,0.423896799157486,0,0.167024619093418 -"Tfru14530_t",0,0,0,0,0,0 -"Tfru14531_t",0,0,0.0303463573688901,0,0,0.0257823237526752 -"Tfru14532_t",0,0,0,0,0,0 -"Tfru14533_t",1.33832606008099,1.17190740072964,1.36204823689593,0.283160606243867,0.2632651858013,0.244792055789339 -"Tfru14534_t",361.621377904476,368.470253613657,422.974835054289,106.179311143803,115.678515508766,120.36706050972 -"Tfru14535_t",83.2812104510505,86.0790990886369,76.7860295946974,70.8443767097826,58.6038422900278,55.7872582677105 -"Tfru14536_t",23.974775755093,23.0057935495408,20.81585485851,13.7262413326715,12.6811578171114,16.3497780982672 -"Tfru14537_t",26.7305744272787,30.6515931895385,35.7859824972601,29.5084309253079,51.9106856497091,46.0166223299085 -"Tfru14538_t",10.5365758100808,21.6723582753355,10.6128653882798,89.3316222099074,76.7851681883257,34.4149271144332 -"Tfru14539_t",0,0.0768035364658139,0,0.0989736262269757,0.165635180679542,0 -"Tfru14540_t",2.01222459332808,1.51422541205804,2.38264334024483,1.56105707474164,1.19738366392442,0.368054250457352 -"Tfru14541_t",0.377857766588219,0.758247807537308,0.705018221571695,1.69368061432489,0.436065033393218,0.645060597878027 -"Tfru14542_t",0.0524736894262632,0.168478463502772,0.18075132034337,1.73689131947102,0.227088832974138,0 -"Tfru14543_t",37.187691931023,40.840010080709,43.6694462580084,47.2086274313216,39.7951019206897,42.5432204834486 -"Tfru14544_t",0,0,0,0,0,0 -"Tfru14545_t",0,0,0,0,0,0 -"Tfru14546_t",35.4398858003982,28.1399300146749,31.068038875241,30.9882068276356,32.1088447596826,29.5666524506248 -"Tfru14547_t",0,0,0,0,0,0 -"Tfru14548_t",10.5758705425644,11.3622626271356,11.6294921083867,11.3321926747008,9.43543105744489,9.16619032917576 -"Tfru14549_t",0,0.199507411292854,0,2.82806888195305,2.15129716918104,0.727397157708612 -"Tfru14550_t",14.6912618675697,14.8421483404217,15.0508172917174,20.5238475370974,21.7045344347143,15.8758998747528 -"Tfru14551_t",0,0,0,0,0,0 -"Tfru14552_t",0,0,0,0,0,0 -"Tfru14553_t",16.2716344088042,12.6006293504434,13.3950685707621,85.5642199459782,57.8856798199588,50.1370283225402 -"Tfru14554_t",1.63126945187277,1.96408267039761,2.45834957170892,1.68735619082106,2.4708587875157,1.49187038413538 -"Tfru14555_t",1.1251389746176,0.602084866223077,0.645943892566374,0.775882534172185,0.649230752842135,0.54879517702123 -"Tfru14556_t",2.60259937150726,1.90472770435218,2.70266456005903,2.25659867797504,2.38514660178541,2.71622360052785 -"Tfru14557_t",0,0,0,0,0,0 -"Tfru14558_t",0,0,0,0,0,0 -"Tfru14559_t",13.0580090442552,10.5277892976998,10.8966380996341,15.18040325456,12.8024375140919,12.766470472879 -"Tfru14560_t",4.88603845850484,7.03242368690539,4.60662117215548,6.66609330938809,7.80183639213852,11.0017680411215 -"Tfru14561_t",21.9583715248591,18.0976734584673,20.5134293816645,16.1224226003947,15.0179118370391,12.8380930092434 -"Tfru14562_t",12.5558987022544,9.52864744805217,13.9580049828473,18.4187766807832,17.1905012382983,15.0322157184076 -"Tfru14563_t",22.7691663577114,18.2763695726826,22.3122290033552,40.6069342661763,46.8902336288168,31.0197482134147 -"Tfru14564_t",1.66527746163498,3.68740970701214,1.68130850505315,4.69241877126144,3.47913130709661,15.7548854647243 -"Tfru14565_t",48.7926121187827,40.9124009096949,50.619944556482,45.0390349104829,46.0003740733268,44.6933438066801 -"Tfru14566_t",10.1909943828505,8.28498739711008,9.61984248089518,7.70331897069242,6.95474560742865,6.88255724338911 -"Tfru14567_t",29.2808797157789,24.2722167024784,33.2594346393406,18.7052393698075,16.7920780891913,9.59433221808747 -"Tfru14568_t",778.561282405158,818.415358854392,662.67834596914,1174.90268209506,942.109314321942,897.675757464307 -"Tfru14569_t",1.07323405385809,1.19647808759731,1.02690867235534,1.85022378624453,1.54820108555683,0.654347691551218 -"Tfru14570_t",21.3043179070629,20.8913294743438,23.0006055136938,23.0138099829911,23.4809853295259,32.0954341129617 -"Tfru14571_t",64.4828811673819,71.831342300701,67.5670273709228,69.0250013678264,73.0786294904845,74.981205925322 -"Tfru14572_t",5.35462178679399,5.17435310773892,5.19313307687025,5.7538219613363,5.57952765808884,6.31386134355118 -"Tfru14573_t",128.196603784891,119.110912227116,138.639434541438,128.342907806451,136.68804388684,112.823845392841 -"Tfru14574_t",62.3888456180887,65.5787524231972,65.5233301787564,89.2889888441451,80.4280832047419,81.9936652693722 -"Tfru14575_t",49.3206987225632,51.5222285523028,52.4303222460617,102.277010010203,123.164180123445,130.008960812535 -"Tfru14576_t",10.5257528418814,8.41741003472374,9.06427461352572,8.29728131560007,6.84126527820235,7.09982991939528 -"Tfru14577_t",1.53039037263423,0.775840901441817,1.17917274347687,0.416581226401173,0.976024755950591,0.707172308644806 -"Tfru14578_t",5.77571340303701,5.50907652594115,6.49173612029206,7.6036488348874,8.31015363637932,7.9026505491057 -"Tfru14579_t",428.872973418239,353.351566288999,443.117510300533,300.669999642405,362.842083148412,284.275901696997 -"Tfru14580_t",0,0,0,0,0,0 -"Tfru14581_t",4.97102821132825,5.90541937426847,4.28081159570615,5.14194342173282,4.73285377219828,3.49150635700134 -"Tfru14582_t",4404.56990456681,4529.67130252021,4693.11648840466,10112.4783864182,9444.65079606994,4502.18316448082 -"Tfru14583_t",3.38413893140797,2.57636314848944,3.09452190392263,1.73220286698906,2.05338098573326,2.29728213636794 -"Tfru14584_t",36.6495268665439,33.8853362710348,37.6197723030656,57.8963546999284,66.442275245864,65.2297947407433 -"Tfru14585_t",12.0974942521275,17.2629772801229,12.7328460071519,41.7114450268876,36.6477775274631,46.7134454566137 -"Tfru14586_t",24.2077294203981,31.5754990316497,20.915112199116,75.696717987938,72.9206135438688,61.8146241476652 -"Tfru14587_t",21.6468455484711,19.9404597657586,21.6593309154035,13.4346678800465,13.5613550139687,19.3068163381015 -"Tfru14588_t",0.0833849893513126,0.836643982841,0.14361432450111,4.1400938002081,5.01599223833566,4.24002149670794 -"Tfru14589_t",47.75932378102,34.6404991525545,40.6325254063599,40.473434111331,34.3647620408434,36.2054461990929 -"Tfru14590_t",21.9719446940709,23.6535986828807,22.0376180946953,25.000128916465,38.1468014039182,52.7653898201827 -"Tfru14591_t",17.9538305197045,16.5864669598228,12.2520970590009,18.9215224462636,21.4036719162794,49.3207536510047 -"Tfru14592_t",0,0,0,0,0,0 -"Tfru14593_t",3.95766228901894,4.40411542402148,3.91162597040194,3.34942010469191,4.78790302524264,6.58084152316678 -"Tfru14594_t",9.69350501209009,10.8375275920154,9.44071842981623,14.9208179648497,14.4828398710938,21.6985169991471 -"Tfru14595_t",32.1492223957774,32.4924011604185,29.6051603051091,19.2973689504724,17.2644602431763,18.456686959038 -"Tfru14596_t",7.5474563088787,7.86123213566986,8.20176031288555,4.27523723642256,2.41083334103518,3.48411569069307 -"Tfru14597_t",0,0,0,0.812138685323525,0.679568603316185,0 -"Tfru14598_t",1.45262899316624,0.582998602452316,0.625467285021042,0.500857889494436,3.35279973802048,7.08530949007236 -"Tfru14599_t",12.0014823959211,12.1380309030572,11.3686125091682,8.44160197179337,14.7505227045733,19.3175902311473 -"Tfru14600_t",5.74171639804857,5.38497773876639,6.11555512674351,1.96929034572623,2.45866955608705,2.91848485506542 -"Tfru14601_t",0,0.1301805116158,0.139663544338675,0,0,0.237316833306478 -"Tfru14602_t",82.7839479131018,105.334088128252,83.4352052759395,295.582928637478,198.503487408251,79.8597127667632 -"Tfru14603_t",84.8207662579888,80.0095284606666,85.1399744182663,187.768562867959,168.340732826977,63.2437914612247 -"Tfru14604_t",0,0,0.39569215661313,1.42586981667377,0.530274160935782,0.336180819469705 -"Tfru14605_t",5.85729718526028,6.313495489638,5.98077133993726,4.93350009776417,7.02514232955871,8.14228382162175 -"Tfru14606_t",11.499094760743,12.0080925877421,10.7677344695716,11.08609834873,9.13150603067263,11.4353599676982 -"Tfru14607_t",13.7358006612276,17.2064021884791,13.561087964168,25.9046099270436,25.0385409419811,21.8756736458867 -"Tfru14608_t",0,0,0,0,0,0 -"Tfru14609_t",0.421950661835497,0.677383274906927,0.763063804779564,0.392812453262462,0.25564887505185,0.37045741733628 -"Tfru14610_t",0,0,0,0,0,0 -"Tfru14611_t",3.3091762133607,1.88505350746336,3.17144498205396,0.662507068568879,0.692952773046242,0.741954343520442 -"Tfru14612_t",25.5767788176876,26.5803846462654,25.742647399455,30.8098508679206,32.8996688250063,29.2241848867747 -"Tfru14613_t",0,0,0,0,0,0 -"Tfru14614_t",28.0303853266272,24.9633648380183,30.6773660977292,21.3904846344085,19.2272184495555,15.7208710709774 -"Tfru14615_t",0,0,0,0,0,0 -"Tfru14616_t",0,0,0,0,0,0 -"Tfru14617_t",0,0,0.475958657680478,0,0,0 -"Tfru14618_t",0,0,0,0,0.195994189537248,0.165674015704522 -"Tfru14619_t",0,0,0,0,0,0 -"Tfru14620_t",0,0,0,0,0,0 -"Tfru14621_t",0,0,0,0,0,0 -"Tfru14622_t",0.710614089232168,0.50701883471417,0.883923221406617,0.571702919916346,0.273360316986162,0.40437539359459 -"Tfru14623_t",0.763730680820012,1.22606370012627,0.657688312249044,0,1.98310480063736,0 -"Tfru14624_t",0.6177623236921,0.409841498517826,0.863610384143708,1.62577420056916,2.31141776889258,1.65578399432833 -"Tfru14625_t",0,0,0.475958657680478,0,0,0.808750787189166 -"Tfru14626_t",0,0,0,0,0,0 -"Tfru14627_t",10.5768459964053,16.2519598422229,10.8648692145337,8.67425509427032,7.25830640227825,5.96962811263381 -"Tfru14628_t",1.15170356579288,1.90025870954184,2.53457953884384,2.25023662614446,2.76899635637163,2.90238667877793 -"Tfru14629_t",4.53915414802846,6.70865058488011,5.27391582952991,7.60178565212953,7.79522344750419,8.11802676952158 -"Tfru14630_t",2.89299744452655,2.54981517957538,2.44246171395793,3.57922314210963,3.63323732583093,3.27868988945566 -"Tfru14631_t",8.16494294148728,8.68581446354602,9.91153251544469,9.87024338553467,7.4076164586578,7.12534065902974 -"Tfru14632_t",6.46233667472673,3.35641880175037,2.94620562763306,3.9320743813251,3.94826303990873,3.33746931183952 -"Tfru14633_t",14.5046884576427,13.3616794413724,15.0056583524573,10.5728604888353,9.0997626725127,10.1848245135249 -"Tfru14634_t",84.0103767714474,133.736642218074,81.6305249836839,433.196881761317,347.51427901424,204.502528804211 -"Tfru14635_t",0,0,0,0,0,0 -"Tfru14636_t",1.04145095171216,1.08673830399273,0.956637566511523,0.287268905214164,0.721129034561842,1.34613560776778 -"Tfru14637_t",0.142390469104148,0.342882228899922,0.613099287859609,0.441858527935346,0.492975215717417,0.625068405014011 -"Tfru14638_t",6.93865108723925,6.69752532839889,7.37449796845249,6.45041078069755,6.99390870599619,8.22532949061824 -"Tfru14639_t",0,0.0252938878533326,0,0.22816650667329,0.19092157172852,0.0922206449007918 -"Tfru14640_t",1.35646464108903,0.580697567422903,1.16812243219753,3.27390692567811,1.72196402045535,2.05104074770475 -"Tfru14641_t",15.0944678124587,14.8652193645479,16.4326320485144,10.5017531124995,11.5401995205253,11.9923092847039 -"Tfru14642_t",0.319026747233345,0.256076601330321,0.228942139137449,1.09998536490234,1.97892107954919,2.33411619593839 -"Tfru14643_t",0,0,0,0,0,0 -"Tfru14644_t",8.81227728371826,10.8459483593751,10.1182819534873,11.8064363241865,14.8914466386168,14.3684555438286 -"Tfru14645_t",86.5299007233559,96.6947166597811,83.1263802962268,143.664067958135,129.821812020991,76.4424877128427 -"Tfru14646_t",0.492568984327705,0.483236843769922,0.424176836291143,1.47190224072274,1.94219388732969,2.00211921258559 -"Tfru14647_t",16.3381525053715,13.4381294511638,12.7668910530766,11.5795578209227,12.2208141711461,12.3225270000061 -"Tfru14648_t",13.4776005515691,9.01517446751131,12.1865778233913,6.73814564436164,8.94341400706598,7.88856382798431 -"Tfru14649_t",0.241872485906279,0.226504095546493,0.555437358675116,3.04396142005364,2.82620987993467,1.65165227940362 -"Tfru14650_t",1.12286044287475,1.10613890368079,0.747191477184919,1.90058224652627,1.85539578455006,1.82976180528099 -"Tfru14651_t",0.652688831742655,0.711008099513156,0.802949122835005,5.25636735692232,5.68959603156658,2.14888943899101 -"Tfru14652_t",23.292244434614,19.4223015795891,22.4924096749357,14.3856767035747,10.9609025082796,10.4234152599241 -"Tfru14653_t",4.06314581345093,3.5098968525653,3.43233935727577,3.7225207166916,2.51199370054073,2.80287467655983 -"Tfru14654_t",23.3680740848907,22.6120882864121,25.1851980500964,14.3101338384522,14.6420369105148,10.8560301911776 -"Tfru14655_t",36.6428239109505,31.851570454831,28.1686511107243,29.0279116614547,19.4934986895919,14.5162162568679 -"Tfru14656_t",0,0,0,0,0,0 -"Tfru14657_t",0,0,0,0,0,0 -"Tfru14658_t",0,0.0263875973457189,0.0141549043176353,0.0170023173209322,0.042680792986687,0.0601301700512402 -"Tfru14659_t",56.9592140065712,8.02609198926915,47.5129144185698,0.184694673384239,0.0772729482660139,0.391913240125681 -"Tfru14660_t",0,0,0,0,0.546720633972324,0.184857322786098 -"Tfru14661_t",0,0,0,0,0,0 -"Tfru14662_t",0,0,0,0,0,0 -"Tfru14663_t",1.92988661642952,2.22680633939791,2.20724546203585,2.58887438537854,3.81056039859102,3.13282070902571 -"Tfru14664_t",2.23431853115552,1.79344428236661,1.53927055249859,1.84891157079329,1.54710307060253,0.980825422761347 -"Tfru14665_t",1.50752715250558,1.48507719042299,1.29821023758854,1.84287923287879,1.77929472230797,2.35632774212052 -"Tfru14666_t",0,0,0,0.454967768729239,1.14210226677988,0.643613191899243 -"Tfru14667_t",5.56114585865716,5.65417738447797,6.06605738473629,13.3454535092211,13.6057678689176,9.60222029061682 -"Tfru14668_t",0,0,0,0,0,0 -"Tfru14669_t",0,0,0,0,0,0 -"Tfru14670_t",56.4725335542034,52.5372675666768,58.8560753416772,57.5885449591744,56.6511661197355,42.5583490246772 -"Tfru14671_t",0,0,0,0,0,0 -"Tfru14672_t",0,0,0,0,0.379706758842397,0 -"Tfru14673_t",0,0,0,0,0.286274977631177,0 -"Tfru14674_t",173.263210751722,185.67883986736,171.327296160007,176.780175274226,150.645842831088,103.368696556685 -"Tfru14675_t",0,0.10876371776933,0,1.26143482975091,1.05552354655624,0.495685966341756 -"Tfru14676_t",34.7519205620029,33.14094459089,37.8888379639692,46.3350571450986,47.0501345589123,41.5209891806271 -"Tfru14677_t",28.6218318338054,27.0159468049118,38.1127273393106,32.3472036959609,50.4638667193381,42.0754510483406 -"Tfru14678_t",54.4242173858766,49.5265674450219,54.695909089835,32.7012121758455,39.8986501627357,50.659359163916 -"Tfru14679_t",0,0.0592561555509531,0.0635726853843883,6.10888181562634,8.56208711656832,5.83323942113251 -"Tfru14680_t",0.562255728531717,0.225655900781878,0.726281588072398,0.678518579800326,0.48665149571658,1.40550332006776 -"Tfru14681_t",0.754236808030951,0.279420600899107,1.39895030876253,1.38029931493615,1.45628555609893,1.7403780751944 -"Tfru14682_t",0.504945915981653,1.01327580791863,0.760961700634166,0.391730325292042,0.764833824535287,0.738873746973736 -"Tfru14683_t",28.2192020588221,33.4050413913105,29.4845021161576,30.1267178137736,30.4748315170767,29.8801639063516 -"Tfru14684_t",14.0239897631192,17.1531968246702,12.996925126105,10.637855285693,12.4850479910627,11.6285248320174 -"Tfru14685_t",9.19358840140368,11.8581182407226,8.57228483538651,19.2817057246956,13.1708095369031,10.5766291625767 -"Tfru14686_t",0,0,0,0,0,0 -"Tfru14687_t",13.4357544572965,12.3252803545982,11.5702287399587,16.7994249929724,14.8239120227153,19.984246164991 -"Tfru14688_t",16.8669482321053,22.2608674863019,21.6478493724947,30.3642678238195,33.1283151720527,29.0713120800435 -"Tfru14689_t",4.69821064409043,4.4742609963876,3.29155864117235,3.45948003862176,3.17046145842908,4.42781473630778 -"Tfru14690_t",0,0,0,0,0,0 -"Tfru14691_t",3.21766763400391,5.72903037052376,1.91444095178446,11.9213594944116,7.39291174824135,20.0745912664144 -"Tfru14692_t",4.7660502156517,10.4445794573318,4.24394977961947,27.5391669600333,23.0482156592372,30.9650880892055 -"Tfru14693_t",0,0,0,0,0,0 -"Tfru14694_t",4.11239606573303,2.82937783287899,2.02365639069639,0.607684222568105,1.01697684361232,2.14912796595613 -"Tfru14695_t",0,0.313644209381324,0,0.404180668964115,0.338203927061949,0.285883999192455 -"Tfru14696_t",0,0,0,0,0,0 -"Tfru14697_t",0,0,0,0,0,0 -"Tfru14698_t",16.1953908708727,16.0949002182521,16.2490071970919,14.146323413744,8.27709610967402,7.89942629347571 -"Tfru14699_t",0.4675235008685,0.288670826271338,0.65036816580313,1.85999237644017,1.74314010352135,1.23666858383551 -"Tfru14700_t",0,0,0,0,0.432294292314147,0 -"Tfru14701_t",12.9834215739402,13.4867007013889,12.4960779327318,22.1197052061636,11.8986288038241,12.2930116899979 -"Tfru14702_t",0,0,0,0,0,0 -"Tfru14703_t",0,0,0,0,0,0 -"Tfru14704_t",0.454110144710527,0,0.391057924148292,0,0,0 -"Tfru14705_t",0,0,0,0,0,0 -"Tfru14706_t",5.58352457773205,3.76107104633415,8.34758163447391,6.57334742834422,2.79668599256025,4.13707085018956 -"Tfru14707_t",0,0,0,0,0,0 -"Tfru14708_t",0,0,0,0,0,0 -"Tfru14709_t",6.63886879852414,6.11835704056543,6.28172558156255,11.0213167780946,12.2726781142138,12.5928415254042 -"Tfru14710_t",0,0,0,0,0,0 -"Tfru14711_t",19.18156001429,25.3362880121618,17.2500623332754,101.830221861715,98.142674267789,89.7105641974588 -"Tfru14712_t",0,0,0,0,0,0 -"Tfru14713_t",0.107430149324102,0,0,0,0,0.0785998207498436 -"Tfru14714_t",0,0,0,0,0,0 -"Tfru14715_t",0,0,0,0,0,0 -"Tfru14716_t",0,0,0,0,0,0 -"Tfru14717_t",0,0.19321921208305,0.207294315092934,0,0,0 -"Tfru14718_t",0,0,0,0,0.270311688915684,0 -"Tfru14719_t",0,0,0,0,0.679568603316185,0 -"Tfru14720_t",2.58052351857688,0,1.97530965098796,2.9658308473476,2.23353105414632,0.62933508354653 -"Tfru14721_t",0.664113650367173,0.852913897448026,0.400332025116235,2.74778952813548,5.51820478621236,7.96859273638414 -"Tfru14722_t",0,0,0,0,0,0.698466588936111 -"Tfru14723_t",0.126776222492124,0.101760822460238,0.109173615645021,0.961657225452848,1.60936073943966,0.896623106119192 -"Tfru14724_t",59.2691008898039,54.8117887638055,60.1302743970164,71.5436816326728,91.844057286882,62.1891246672644 -"Tfru14725_t",43.0798483777945,44.4806100946294,37.7420920897959,51.1340248994812,42.8680061053494,38.9028020480633 -"Tfru14726_t",103.949284465962,169.353857187641,115.164034454614,1063.41057843459,627.563079414609,178.474513338956 -"Tfru14727_t",1.0436071648627,0,0.449352273089652,0,0,0.763541115855624 -"Tfru14728_t",2.98023388355087,5.81880676081363,3.53751823043061,26.7445147349553,56.7488679531272,43.9036141616984 -"Tfru14729_t",0.521803582431351,1.25652493820468,1.34805681926895,2.15897748639216,1.3549163537575,4.19947613720593 -"Tfru14730_t",0.807792084340841,0.648399086701775,1.1130110148836,1.33690528965053,0.978840211977372,2.83684891506359 -"Tfru14731_t",37.874808080634,43.4126646398769,29.7973078752696,12.2528982019919,20.910289182448,24.4035673522168 -"Tfru14732_t",1129.46651453361,1168.4484450125,1148.79389681092,4907.30740633341,4179.59513992318,1874.00019154607 -"Tfru14733_t",382.886995751089,500.537261003237,398.651778438902,2120.97351571381,2109.68007448649,651.380862551543 -"Tfru14734_t",0.161042255791912,0.172481481859767,0.13894371491728,7.55801932846495,4.55332699245704,0.864593453727983 -"Tfru14735_t",105.543722442107,104.680170242972,122.491482991792,114.19198250228,127.052348917207,114.054298739199 -"Tfru14736_t",300.564984343595,534.524234782725,254.589029797421,183.48142978195,211.744420551586,242.075001017083 -"Tfru14737_t",3.18381923085324,2.31706838865839,2.85142286278921,12.9975026644145,8.37734032570831,6.08749455582114 -"Tfru14738_t",0,0,0,0,0,1.63181573213358 -"Tfru14739_t",3.61452729264376,4.04425193061446,3.01833495561654,4.64517939624338,3.88691997007964,2.0835613500467 -"Tfru14740_t",25.0803421259227,25.6219163112551,21.7490252595208,9.79652936675025,10.3226334314106,12.8319540347344 -"Tfru14741_t",34.3339545739183,34.3491496433998,34.2088824762101,14.8405725391118,19.3807877255145,15.4724484261859 -"Tfru14742_t",10.7521167206359,9.42063386897937,9.32441404537453,6.14831837804582,4.78423671495024,5.4290904578504 -"Tfru14743_t",1.44845476623392,3.48793990097568,1.24733992557512,4.49476776652049,1.2536869660827,2.11948481327674 -"Tfru14744_t",80.8656033094147,70.8592713146389,104.843256829811,135.45996243665,107.12654604116,45.5235870906594 -"Tfru14745_t",138.277949344308,145.966313654777,156.037576830382,117.394400822574,138.201468083265,101.837296327244 -"Tfru14746_t",19.0650855034835,16.1740879192029,17.8862102207309,22.927185733029,32.1980122442741,33.2274216404588 -"Tfru14747_t",36.7900972768867,40.7949872337514,43.4400913032447,48.4514998314657,40.3783424431298,23.5870432742307 -"Tfru14748_t",5.71589588793076,2.34736884552794,8.35638807851689,142.860599266691,25.0816741477746,7.78038731979465 -"Tfru14749_t",0.442936960130654,0.711073866611437,1.14430833691899,100.491105867053,14.8239120227153,3.24068856729584 -"Tfru14750_t",0,0,0,0,0.0594553101539812,0 -"Tfru14751_t",2.04280551419933,2.45958073010278,2.63874951856902,2.64130224399042,2.4311619680897,3.36283002089605 -"Tfru14752_t",0.347150317237386,0.835952541532867,0.597898479069702,11.8498423400843,1.50235215533717,0 -"Tfru14753_t",0,0,0,0.347827260149238,0.145524705106709,0.0820080851586093 -"Tfru14754_t",0.153921540438709,0.123549844296417,0.0530199457438138,2.73847584065463,2.95758032954687,2.13967778801974 -"Tfru14755_t",24.0029647918421,22.8567869711518,26.4475909304195,28.375132678297,25.8724503741313,18.8703732918604 -"Tfru14756_t",0,0,0,0,0,0 -"Tfru14757_t",0,0,0,0,0,0 -"Tfru14758_t",4.90071332110329,5.09020108357853,4.97555135332789,3.2874033202249,2.53728466593202,5.17083627073297 -"Tfru14759_t",3.75190234051923,5.45112503478282,4.44301340175432,4.07517760678042,3.33635943393729,4.21041725687288 -"Tfru14760_t",7.74020948785613,7.18694013459382,8.24739126588159,5.93194320903061,4.61923360311314,3.92763270322832 -"Tfru14761_t",0,0,0,1.35779443467521,0.568076908684103,0 -"Tfru14762_t",2.72650310008754,3.35115795723351,3.00829042055253,2.99651185611326,1.99114989512638,3.55325396562224 -"Tfru14763_t",7.57175069613904,6.72887979246735,8.92677825778422,7.36588912269902,7.95795291895766,6.33116496065693 -"Tfru14764_t",27.5997671790871,27.0143328140879,23.3559196844788,13.7139298301026,12.2752885893976,14.9698666193226 -"Tfru14765_t",33.7267935942267,45.7760289529319,42.2456735574377,24.7376270748104,22.291835484349,19.7406031558291 -"Tfru14766_t",0,2.6341212894813,3.39120543565848,8.82566382538885,27.8357685255211,36.975075048371 -"Tfru14767_t",14.7781159903885,15.2144428145395,12.3112212640566,8.64003800959618,6.04790100926746,10.9884953991708 -"Tfru14768_t",19.9047313145986,20.7664543859123,18.9496449210154,15.1579233266911,13.7164751782284,14.5979517087647 -"Tfru14769_t",13.0069453974685,12.6835914980612,12.2408357201572,8.42222880625839,6.62935254154695,6.53776201028001 -"Tfru14770_t",3.69166738781895,3.20349192479737,3.69461494845565,2.37372138720611,6.13145243064211,5.18292072170168 -"Tfru14771_t",11.6560522753005,10.3016498439231,11.4792095446482,11.6720218277238,14.0597986799997,11.9754802908957 -"Tfru14772_t",12.8151422193733,12.2457938892829,13.4881843329114,11.5724852554495,11.6201300847677,10.2689809395159 -"Tfru14773_t",10.2608093763115,6.69187454343947,7.17934585911611,0,0.555067513861158,0 -"Tfru14774_t",0,0,0,0,0,0 -"Tfru14775_t",9.9165923583223,8.11004291963734,9.18420002259183,16.6443219802817,15.0609967073578,19.1650520616768 -"Tfru14776_t",6.7208301417158,7.89935344484677,12.6088247828956,19.1177456420026,20.9831379318578,15.1028432716242 -"Tfru14777_t",7.39656578096439,9.96843117642381,8.49275796139441,4.34494219136423,3.08243470479831,6.34693552554987 -"Tfru14778_t",0,0.292341784755713,0,0.125576363912261,0.105077809708554,0.177644681579126 -"Tfru14779_t",0.480975439531188,0.514759580282325,1.51870777794231,0.829187441100044,1.1101350277606,0.117299732493087 -"Tfru14780_t",0.914325483428045,1.68367906252394,1.6210627777594,4.39501194773078,3.49138176944554,2.75451612538184 -"Tfru14781_t",14.3210966405108,13.923844973495,14.8512814290891,8.03266623613555,10.3004005156803,11.6584387185686 -"Tfru14782_t",6.32185109484136,5.9201655742336,7.13778803023177,5.0133948361895,3.89104183643179,3.28910019137807 -"Tfru14783_t",15.3249698286377,9.33694684850556,18.285180958802,8.0214317379032,9.10920687064656,8.51054674519076 -"Tfru14784_t",2.97381861858554,4.1772967313635,3.84136541318269,3.07606523906182,3.2174267092479,3.26363146426716 -"Tfru14785_t",4.0389604217042,4.66847342425278,3.26946985622057,3.92715928834844,4.75436674389009,3.60516216289331 -"Tfru14786_t",9.08598084882543,11.1641160552246,9.9309843050138,14.3144518118156,16.9988271659298,15.0850188425802 -"Tfru14787_t",299.963431171671,338.82233502399,314.237833772658,388.645749387058,390.112005253804,255.853025105505 -"Tfru14788_t",9325.15182162904,7026.01697478213,9112.58710027998,504.727531270716,642.471638154899,772.944176994588 -"Tfru14789_t",0,0,0,0.0688580378980068,0,0 -"Tfru14790_t",10.6417550434328,9.7622068631984,9.73337327335263,9.43512230382791,15.4466860471645,19.924157866615 -"Tfru14791_t",0,0,0,0,0,0 -"Tfru14792_t",0.926098641575011,1.06194496089739,1.48109339775849,0.684242864781769,0.916079928419767,0.483976849026596 -"Tfru14793_t",5.86305688749107,6.05998993460473,6.15561063202831,5.64925562165904,4.51854673106189,5.64115271829088 -"Tfru14794_t",6.19870818320719,6.41084758586444,5.59466693185548,5.79531133009206,5.59734097803307,7.36970210050219 -"Tfru14795_t",2.80702929546602,1.93126983342199,3.62591893870194,1.65916646925603,2.77666231287137,3.08058772399506 -"Tfru14796_t",0.324051597961224,0.520219903699013,0.97670204777635,0.754184758385305,0.701194255721495,0.829807943654087 -"Tfru14797_t",29.1663932645058,15.7942262581309,30.5246044115087,7.21751194578776,12.1994987975917,15.0089099576039 -"Tfru14798_t",0.835000983923829,0.70747465230409,0.958750515305584,0.575806806144349,0.481814539933644,0.339398452934167 -"Tfru14799_t",86.7392521190119,111.554731037378,82.920611804901,117.142060936548,136.823498241663,130.345857729256 -"Tfru14800_t",1.00353692389101,0.920593925146547,0.716049748483134,1.72018189146161,1.83645886674253,1.19573665873841 -"Tfru14801_t",0.346434543387412,0.83422892804517,1.34249782207609,1.07503724322414,0.899552713216318,0.253464164232485 -"Tfru14802_t",55.2015086307962,70.8648559359904,50.898092207177,36.143766901614,43.9178749975688,53.9859043165309 -"Tfru14803_t",74.5963028823206,99.630744927652,74.1080963807697,273.503791047142,256.314087036803,200.940585352007 -"Tfru14804_t",5.28736637022818,1.41468891643949,2.02365639069639,5.46915800311294,6.61034948348008,3.86843033872104 -"Tfru14805_t",2.59062835859089,1.18825559501294,1.91222156742116,2.67970002991627,4.16422896977158,2.70771188662457 -"Tfru14806_t",0.457822216738133,1.01058386265236,0,1.65747113567028,0.990651829949851,0.334959454094701 -"Tfru14807_t",0,0,0,0,0,0 -"Tfru14808_t",0.384486850212574,2.16034112182559,1.32440669963266,0.994265947680602,1.16475265498452,1.26587079733959 -"Tfru14809_t",18.0817036097486,18.3097596403733,13.1755442987049,12.660758703313,10.3532957141977,12.008074601842 -"Tfru14810_t",2.52031130314342,3.37167525084923,5.42592869755755,8.68988438272847,7.27138443183191,4.30255418784644 -"Tfru14811_t",6.66666350077202,8.98834691794897,8.34240742091922,10.8286841967044,10.3683720974664,10.9745426100414 -"Tfru14812_t",0,0,0,0,0,0.106895756219787 -"Tfru14813_t",0.808439872700376,0.594842466068028,0.522142296477069,4.32055197858191,3.96514948969182,5.07690550290048 -"Tfru14814_t",0.322290447972305,0.344928414409128,0.555082219698981,3.33371523634084,2.23162693560058,4.16579049974171 -"Tfru14815_t",0.752706212984596,1.27549685945516,1.26037832695878,2.7250508517267,4.92239065569507,4.3444691365583 -"Tfru14816_t",10.2307718784901,10.265053456918,8.47139531234589,8.64918234814894,7.8333415424887,5.68587789962979 -"Tfru14817_t",7.12084249614399,6.49660446666641,6.60125337914983,3.82371012672165,3.30058209504181,3.38783794318617 -"Tfru14818_t",0,0,0,0,0,0 -"Tfru14819_t",11.7633052370163,9.99978657638856,11.4460972892247,11.6408043274698,9.90094793088468,8.03044056166015 -"Tfru14820_t",2.52874043793655,4.96166257650054,3.62938374418565,11.6252633882655,6.32294298420166,6.37263162079502 -"Tfru14821_t",56.7386665230278,59.2330486279844,55.404457856467,71.877134140558,55.1017473527764,46.3304471053098 -"Tfru14822_t",38.9212631624681,36.0214419204652,47.6199649405894,97.898697476308,124.441920909326,121.99647317438 -"Tfru14823_t",9.13749227871263,8.8123330419923,9.86532490465008,13.260537856761,10.1516081353497,10.2275464808502 -"Tfru14824_t",1.34570397574401,0.925860480782397,0.662203349816329,0.397706379072241,0.665572945705438,0.562609243262039 -"Tfru14825_t",73.1452934014681,73.4293247471322,61.7361248267132,63.2174037080708,53.7377140458709,37.7591360596223 -"Tfru14826_t",10.8400486156706,6.09076819508245,6.53445176480045,10.6521163401187,8.91330994869713,8.72407300761486 -"Tfru14827_t",2.88727458970606,3.66323918606679,4.01029467668702,6.06943144248219,6.12666537493597,4.63372956562493 -"Tfru14828_t",0.298261692679695,0.558620751619991,0.513697391484738,0.205677736869313,0.430259433836207,0.145479431541722 -"Tfru14829_t",154.146585388098,123.159899213715,171.922290995595,290.956084929711,196.482977617333,136.781226927055 -"Tfru14830_t",0.658617936361522,0.528659882537336,0.320595415441118,0.0756958569924082,0.325708627041047,0.2677049644006 -"Tfru14831_t",1.86559957473915,1.15919473674042,1.25821517858889,1.13140031862487,1.02714745531059,1.2841755084907 -"Tfru14832_t",0,0,0,0,0,0 -"Tfru14833_t",0.0798577725964329,0,0,0.0826034637141489,0.207358871630187,0.525841766575475 -"Tfru14834_t",0,0,0,0,0,0 -"Tfru14835_t",0,0.996554261334748,0.356382837278,4.28073122301895,3.58196277430143,1.21113418377099 -"Tfru14836_t",4.86129484103961,6.09878678036166,5.01093913462294,6.1458676517368,5.3608149261684,4.50515440647689 -"Tfru14837_t",0,0,0,0,0,0 -"Tfru14838_t",19.9014873128477,23.0452366659986,26.5501753744563,33.5783881973391,52.8057820874783,51.5590404757188 -"Tfru14839_t",11.4149975589333,11.0111921183872,12.8480472933822,18.3326523926453,21.3201498239648,24.6153278923277 -"Tfru14840_t",0.0452642116225471,0.072665414888992,0,0,0,0 -"Tfru14841_t",0,0,0,0,0,0 -"Tfru14842_t",0,0,0,0,0,0 -"Tfru14843_t",0,0,0,0,0,0 -"Tfru14844_t",0,0,0,0,0,0 -"Tfru14845_t",8.09701194141351,7.47047692211794,8.28182125181112,6.77092173100334,4.91382330511536,5.67439621735392 -"Tfru14846_t",0,0,0,0,0,0 -"Tfru14847_t",0.285600130237661,0.0881714239238815,0.28378288167142,0.36359348881709,0.285226899784201,0.176808487994287 -"Tfru14848_t",110.917614883299,87.831540342407,115.59867070953,84.4248553909207,99.6257297599745,103.462538426607 -"Tfru14849_t",0,0,0,0,0.185968911300049,0 -"Tfru14850_t",0,0,0,0,0,0 -"Tfru14851_t",0,0,0,0,0,0 -"Tfru14852_t",0.129896214567371,0.10426517977114,0.139825504382362,0.0671811703341976,0.0281074002003553,0.154434823684366 -"Tfru14853_t",0.154241817817835,0.0412689749185952,0.132825671910833,0.159545000906887,0.311503617030743,0.225697894099306 -"Tfru14854_t",0.92319095353239,0,0,2.38733087437595,0.399526617133621,0.47215546185942 -"Tfru14855_t",15.5361655673198,21.2461728135668,13.3790022679478,131.538660861826,119.529607098586,82.93573140955 -"Tfru14856_t",0,0,0,0,0,0 -"Tfru14857_t",9.87233388898738,7.56645848560555,10.4212934297289,11.792943931072,10.8602178398096,6.6171633778208 -"Tfru14858_t",0.451972437237108,0.181394768034928,0.291912774582786,0.350634205086555,0.342297854894575,0.372014484490517 -"Tfru14859_t",0,0,0,0,0,0 -"Tfru14860_t",0,0,0,0,0,0 -"Tfru14861_t",17.6299148334242,17.7197531431492,18.7465176411964,18.8703693712534,18.4438400734422,13.5716646696929 -"Tfru14862_t",12.4259721269665,13.8769913861319,12.0963898080597,15.3679627347288,13.7945878288773,21.5424164664797 -"Tfru14863_t",28.1689151065267,21.913398971546,20.731268681953,17.0717078715345,20.8367589331668,18.8843906113539 -"Tfru14864_t",2.19544153653468,1.89607936700089,2.36924441970756,2.61587654260103,2.81426390514169,3.21253041765388 -"Tfru14865_t",6.71907352118738,6.48602452855471,7.14759033865395,6.04158192839982,6.72783609218111,10.1531410899819 -"Tfru14866_t",187.718577355038,203.111338758573,192.607782891254,316.68446392769,227.904714456615,100.696766348825 -"Tfru14867_t",0,0,0,0,0,0 -"Tfru14868_t",246.531269314575,220.952335587566,247.348937243812,107.805766973947,164.825980983424,153.511753347058 -"Tfru14869_t",0,0,0,0,0,0 -"Tfru14870_t",0,0,0,0,0,0 -"Tfru14871_t",0,0,0,0,0,0 -"Tfru14872_t",32.3116833736336,26.6769909957302,37.8423745060424,40.107158689516,47.9431940560345,40.6615011159114 -"Tfru14873_t",0,0,0,0,0,0 -"Tfru14874_t",0,0,0.196591619476723,0,0.197591968256302,0.167024619093418 -"Tfru14875_t",16.8883135511464,22.3816937096578,16.8951073217361,19.5503814598596,17.6652966521836,16.2469661987602 -"Tfru14876_t",8.61956177857336,6.4315192646257,7.52729992724746,3.26498546171879,2.10155619417107,2.93113724605558 -"Tfru14877_t",35.7400077451412,42.9745726887902,37.0311969867204,74.3795188691165,47.0791331010133,22.1899283779974 -"Tfru14878_t",373.877706799369,486.376106244272,328.30111808074,658.9527006486,435.919193461282,209.668135687977 -"Tfru14879_t",0,0,0,0,0,0 -"Tfru14880_t",0,0,0,0,0,0 -"Tfru14881_t",14.7523231755473,13.3279146939882,13.5738830810641,10.905891973314,9.92711551940979,10.8395295886197 -"Tfru14882_t",0.190212173822145,0.254466056667866,0.382203782469462,0.524672264617568,0.768297222986013,0.463887243972662 -"Tfru14883_t",3.23513945781076,2.65203460943487,2.43029443233494,2.66997676650813,2.32350670087214,2.215864508284 -"Tfru14884_t",1.51978571043825,2.23648810609095,2.25398713064367,3.40608533594382,3.50780354500434,2.22386146105487 -"Tfru14885_t",2.54255869169576,2.46604242811167,3.14744918143313,4.65725203361866,3.57609070417963,4.18551479271677 -"Tfru14886_t",1.66592815127516,0.382059518509828,1.22967222607536,0.246172362116954,1.23592936518389,1.56709784259887 -"Tfru14887_t",53.4812118326115,63.5362971963883,54.6077120524764,47.8628483076725,32.4092353397762,18.0842908070603 -"Tfru14888_t",1.50535478708314,1.67305732640348,1.74507240445223,2.63511311399071,3.0568880106254,2.92287327913168 -"Tfru14889_t",57.9846902274838,63.5368658827768,59.3397445575581,55.6543157096093,53.4557635598557,49.8232025879948 -"Tfru14890_t",14.2171406843988,13.9313175199924,15.7411557819252,22.3454169841589,25.4098928496983,28.6386652377848 -"Tfru14891_t",24.1990337217841,25.1643518292101,22.0831721138771,36.2389847431067,33.8872774037222,39.3735765869746 -"Tfru14892_t",34.9349991117473,45.4007638929891,35.0984075644968,20.6492248667741,35.2770044409343,46.8594889158299 -"Tfru14893_t",36.1379618250478,29.5907222262417,37.2012581488906,26.3167079575831,39.5477027194813,44.9021636061672 -"Tfru14894_t",9.59357197072833,9.89309946720234,8.80655622601198,6.23659426357594,6.19884081222783,6.04414545477465 -"Tfru14895_t",0.263149183309154,0.158418570909126,0.396570095357899,0.272196848323523,0.22776458674493,0.721985824115635 -"Tfru14896_t",19.2164498186889,15.0291682735801,20.7914374334561,1.78384723399118,2.3456078812361,2.5234921922853 -"Tfru14897_t",65.2371082191687,66.6800580335546,68.7082218685127,32.526382885073,36.153810862181,28.5005584669796 -"Tfru14898_t",9.80575032255894,10.9317863621791,9.34898321209544,7.60717067316202,6.87059946314826,7.65822190518555 -"Tfru14899_t",4.5943174792618,11.5901336737177,4.52160724754464,2.03669165201281,0.568076908684103,2.40097889924487 -"Tfru14900_t",6.38630918443582,5.43129587919604,5.56505507441799,2.31992388498181,1.38189206396805,3.2262203347782 -"Tfru14901_t",0.594413043194204,0.715685784378374,0.682506754409754,1.94702598197925,2.57242373767638,2.46440098360477 -"Tfru14902_t",36.0044471877632,32.5541058702684,35.4600923091609,15.1965958417173,18.8948536344401,20.1351058051927 -"Tfru14903_t",4.68622671124867,5.91659457150765,3.95148012837814,21.1566621520234,21.7542130645586,16.535922544807 -"Tfru14904_t",0.250777244093873,0,0,0,0,0.183477790526501 -"Tfru14905_t",0.589251139679491,0.337843211507939,0.289962789448633,0.174145979613797,0.655736071006885,1.17017648968054 -"Tfru14906_t",6.45492573817314,7.42387211196161,8.21356178988068,8.76960809266175,10.5902043903974,15.5777273183824 -"Tfru14907_t",41.5332199768954,37.5051516667498,37.636029767328,30.4634149147335,30.8829585981175,32.6662621324457 -"Tfru14908_t",5.54343564198213,6.14171328221607,6.18569318680662,5.65327050920997,4.39256494487987,5.08400587783236 -"Tfru14909_t",12.4550267887902,7.05699471107978,6.94014135734104,31.3240018447189,21.9832552590267,17.1530399515473 -"Tfru14910_t",0,0.148205505531834,0,0,0,0 -"Tfru14911_t",0.173217271693706,0,0.298332849350243,0,0,0 -"Tfru14912_t",2.71908585532587,3.08568493939327,2.5837755702655,3.10353013668874,3.08384607600014,4.52756021042514 -"Tfru14913_t",6.65428554509473,4.67360804780771,4.29776419157104,2.58115310834676,4.31963319684909,6.69421270226142 -"Tfru14914_t",0,0,0,0,0,0 -"Tfru14915_t",0,0.0631991612155432,0,0.0814422153957682,0.136295865638836,0 -"Tfru14916_t",6.01028132705109,5.78920392832618,5.75085182571017,2.7630792949852,4.27728495990112,5.27680958763815 -"Tfru14917_t",7.91323548943956,6.87386696302165,10.2217495463665,5.77456833174859,7.6935938504544,8.20855960261947 -"Tfru14918_t",22.6669507138056,16.9219927684131,21.5672134393482,15.2482876904481,19.6190183726785,16.12008172805 -"Tfru14919_t",23.022074403714,20.7487707744568,29.2165391406945,15.8757503146001,16.9549108146081,16.6960378855305 -"Tfru14920_t",669.006337097549,502.287002781649,741.04680984343,415.045851240184,233.601546650307,241.170636572064 -"Tfru14921_t",0.378766351539438,0.182417055952168,0,0.470147036035805,0.262268149029104,0.277119295880873 -"Tfru14922_t",0,0,0,0,0.166774872289723,0 -"Tfru14923_t",3.51374199424305,4.48702029580696,5.70788443469298,15.3642442508317,14.4460013902364,12.0943606312359 -"Tfru14924_t",0.379279353369966,0.456660304855426,0.326617227843945,1.17695951007609,1.31311682741885,0.832483880266967 -"Tfru14925_t",11.0290004681109,15.1217093536831,12.6332343209464,12.9365741124789,13.4739849710453,16.6789609579115 -"Tfru14926_t",0,0,0,0.718172263035411,0,0 -"Tfru14927_t",0,0,0,0,0,0 -"Tfru14928_t",0,0,0,0,0,0 -"Tfru14929_t",0,0,0,0,0,0 -"Tfru14930_t",40.1504138336268,36.7819118274461,45.3804945613903,49.5436265456857,35.6014536467614,33.6860457749758 -"Tfru14931_t",0,0,0,0,0,0 -"Tfru14932_t",0,0,0,0,0,0 -"Tfru14933_t",4.87364884641027,8.71655324304647,3.9937733894492,7.91983712696867,9.1626038910957,4.31939682157493 -"Tfru14934_t",4.51062425618484,4.07316473256931,1.45662515370664,3.49928230176965,0.488012377975268,3.71265462038502 -"Tfru14935_t",0,0,0,0,0,0 -"Tfru14936_t",70.3239180391454,64.7540279964421,77.8075779676243,288.550200629142,264.357886327575,135.304542293298 -"Tfru14937_t",21.2932346077667,20.5296468296428,23.1843518031106,20.759519865513,20.866172368112,20.2794407147481 -"Tfru14938_t",0,0,0,0,0.0494988729192097,0 -"Tfru14939_t",0,0,0,0,0,0 -"Tfru14940_t",51.1885089234933,50.5068762272962,49.9390468520141,43.6253305043858,45.3357571863204,36.7048434185859 -"Tfru14941_t",3.00617402373651,2.48851595959403,2.93860741840641,1.34834669543107,1.34676423775204,1.6644310204435 -"Tfru14942_t",0,0,1.61968020820585,0,0,0 -"Tfru14943_t",0.0919150730541,0,0,0,0.079555628357023,0 -"Tfru14944_t",2.97797977361474,2.64198433835201,3.50930711782329,0.972748251797963,2.98452346082653,2.86684047697657 -"Tfru14945_t",0,0,0,0,0,0 -"Tfru14946_t",0,0,0,0,0,0 -"Tfru14947_t",5.52842479399202,3.78497737837268,4.24739364712031,4.2608465360475,3.94062124047664,3.29135481650926 -"Tfru14948_t",0,0,0,0,0.358196277430143,0 -"Tfru14949_t",0,0.309328004665067,0.331861082419422,0,0,0 -"Tfru14950_t",17.4567016667943,17.1320511934385,19.7306498093002,34.7736444860806,36.7110480243461,32.9277106212738 -"Tfru14951_t",17.0065849197805,17.6899553519892,14.4135282933196,11.7460961227143,12.6934801900973,17.3645684711291 -"Tfru14952_t",0.106612153263258,0,0,0,0,0 -"Tfru14953_t",0,0,0,0,0,0 -"Tfru14954_t",0,0.0933982063947155,0.100201822669576,0.361075528368219,0.604270174390463,0.425658309046937 -"Tfru14955_t",0,0,0,0,0,0 -"Tfru14956_t",6.75870501037296,7.10240181096106,6.72002569615884,6.24807077654398,6.89552196411576,6.71266296588112 -"Tfru14957_t",0,0.627288418762648,0,1.21254200689234,1.3528157082478,3.144723991117 -"Tfru14958_t",0,0,1.73629718279345,0.695190750448126,0.581710754404176,2.45860239245335 -"Tfru14959_t",5.36908422975416,5.5138298275166,5.77949798612019,12.1691050096479,10.9344126794465,9.30063405267557 -"Tfru14960_t",0,0,0,0,0,0 -"Tfru14961_t",0,0,0,0,0,0 -"Tfru14962_t",2.85377268697797,5.91494448380716,2.50802970664208,9.09829681765428,14.1604205896773,20.7362347017794 -"Tfru14963_t",0,0,0,0,0,0 -"Tfru14964_t",73.4360976874737,70.2974762725322,75.4741793606202,77.1017540984942,77.1496695701702,93.1705887561231 -"Tfru14965_t",0.0817221563924586,0.131193589527207,0,0.59172364473832,0.919533050718043,1.49477285569985 -"Tfru14966_t",0,0,0,0,0,0 -"Tfru14967_t",27.9356867579789,24.4797331862238,27.4535533971288,20.5680225709304,23.4401840832529,21.7775526587166 -"Tfru14968_t",0.261307548278219,0.0524366290956334,0.675076665325977,3.10835677764782,2.60096177188389,1.43386609237273 -"Tfru14969_t",2.59024799911965,2.77218931210625,2.82542364518241,5.04602741648672,3.32555608650072,5.3695067679775 -"Tfru14970_t",4.3566314661079,3.4387007744184,3.56413639597557,8.7875235330962,7.47877914769228,6.90618649734581 -"Tfru14971_t",0,0.769203479281193,0.275078767937011,0,0,0 -"Tfru14972_t",5.99150455168353,5.77803762844352,7.20116413426484,7.89178827985089,9.43899569652885,9.6817718659302 -"Tfru14973_t",1.68020753542895,1.41965273719968,1.52306770457756,5.85423789994339,6.42943465551453,6.0171058566875 -"Tfru14974_t",0.531711245388907,0,0,0,0,0 -"Tfru14975_t",0,0,0,0,0,0 -"Tfru14976_t",0,0,0,0,0,0 -"Tfru14977_t",116.148574596766,120.158359610801,116.408626867062,97.2508873033538,127.249227557058,156.344011236223 -"Tfru14978_t",0,0,0,0,0,0 -"Tfru14979_t",1.1700609578196,0,0,1.21029030400118,2.22800080083986,0.856059329058185 -"Tfru14980_t",0,0,0,0,0,0 -"Tfru14981_t",4.2620822488333,4.78952741383318,4.40436151323724,4.11471413838326,4.34479565825356,3.81124948190617 -"Tfru14982_t",0,0,0,0,0,0 -"Tfru14983_t",55.2682695905255,46.8738716021863,61.8502552336014,36.8763906699183,42.4775211572492,44.6801870111062 -"Tfru14984_t",12.8606193515762,11.288428152623,10.1188391276036,15.4082751720185,14.5748013942005,13.2000954472948 -"Tfru14985_t",8.21673703340482,8.19804037226595,7.60489701668638,10.9616457478659,9.30524515956551,10.4501838461666 -"Tfru14986_t",40.3156593105698,39.7960560121039,45.5547226757489,17.6569772825204,30.2049880351409,35.3786405380676 -"Tfru14987_t",0,0,0,0,0,0 -"Tfru14988_t",10.4586666616687,9.35309102062371,8.71281288376403,5.87948875692048,7.28122392362058,7.94304900327344 -"Tfru14989_t",1.16429492269175,1.75332703133838,1.00999156008785,1.40931221876271,1.46958761841165,1.94767478729736 -"Tfru14990_t",7.60907294233073,7.10482400363793,8.89277284997108,10.4407113655702,7.19074061188553,8.18019280498927 -"Tfru14991_t",6.5553847178835,4.66678692407371,5.44356989629554,5.4891977522112,4.59316434151946,5.48132442483257 -"Tfru14992_t",20.3860796862221,18.9368062033998,16.1397487676858,27.9742853416601,27.0364587484944,22.0720909552648 -"Tfru14993_t",9.41558523328994,10.3698787037413,6.85115815851459,45.6011309050217,53.1929252094046,45.7650358568251 -"Tfru14994_t",2.45615063353277,3.17854826750703,2.80577060732888,6.63666587702413,8.50352833316857,11.1121200044108 -"Tfru14995_t",6.08294313217917,7.32399124939852,7.00804880702148,21.5121403995137,21.8426127257573,14.3739229926656 -"Tfru14996_t",6.69059648396399,6.94333657122567,6.83439202824642,11.7129564572265,10.9276720385078,9.81065100194432 -"Tfru14997_t",6.15097231911873,7.26255982232994,5.84370214002418,4.67948426845085,4.49953406032111,5.08095676410775 -"Tfru14998_t",0,0,0,0,0,0.0610377952595608 -"Tfru14999_t",1.59826036749554,1.8427004138159,1.60156548665367,1.50292016304539,1.23243803929354,2.33869131127691 -"Tfru15000_t",1.07095381153403,1.71926783329422,1.89574468186619,123.886241235357,131.677974448967,89.716351488785 -"Tfru15001_t",5.88726778264871,7.12589875040438,5.31125389749793,2.51320349222403,1.13236242542432,2.39296673406365 -"Tfru15002_t",1.47181615244675,0.627896846304942,2.29937399986025,0.880683477967245,2.84135129994329,1.57066890922325 -"Tfru15003_t",11.3501865734177,11.5502272584208,10.2649941819253,4.4702062115788,5.46689728340104,5.80252401978806 -"Tfru15004_t",1.69963190000038,1.94894523170476,1.46364165252034,24.2362382350664,41.9260460737129,42.5459012382008 -"Tfru15005_t",2.51193817589045,2.6883789375542,2.40351215838651,3.60875597289388,4.3483362050822,6.12608569698117 -"Tfru15006_t",3.43979495442147,3.61061286705114,4.10148940917736,5.74764006416686,8.70275931998779,7.84042495423086 -"Tfru15007_t",9.75757917175452,6.8770713331769,5.12363427531402,6.40048141504079,5.76767037085817,9.40258705559319 -"Tfru15008_t",7.69750250221144,7.50737543538843,7.23457159674339,7.3200503913624,8.20269475315028,9.38628992422517 -"Tfru15009_t",13.5361988148368,13.1935118511492,17.2075488106684,17.5575669113951,22.4092538116559,18.7067573384628 -"Tfru15010_t",38.5993623003948,38.500886310373,32.262278742234,31.1191805597709,39.3047807126049,36.9620967874839 -"Tfru15011_t",1.30973861336332,1.95241773991269,0.644505264743287,0.387077255355388,0.809731005771927,0.95825260308384 -"Tfru15012_t",8.6608635846853,7.64709850708073,9.62801468357602,5.94528172389108,4.70220736453985,3.28351303664811 -"Tfru15013_t",0.66373886839744,0.913320609710852,0.89819737657085,0.833679652970564,1.23104702570518,0.79779705192251 -"Tfru15014_t",22.9700877844247,20.0811123089421,23.5826096222861,17.4724255677099,19.1060748589643,20.3167067514455 -"Tfru15015_t",24.9261557453745,15.5615780808426,16.695165223254,8.59439114775343,6.39242587413794,7.42984239659511 -"Tfru15016_t",4.9576360891425,5.57980894624183,4.96535702919527,1.9509041269756,3.03168690230323,3.15407619378462 -"Tfru15017_t",8.58446644738808,9.36412864427995,11.8785979055699,8.19657216886178,9.2718089698468,8.21323506850287 -"Tfru15018_t",0,0,0,0,0,0 -"Tfru15019_t",0,0,0,0,0,0 -"Tfru15020_t",12.5852120844386,12.3977942103211,12.2452865547991,21.0484553628345,27.7981914563224,26.5471659172293 -"Tfru15021_t",0.426948748252078,0.448150737016707,0.395949970111053,0.883256426704222,0.739077385565401,1.24948518802644 -"Tfru15022_t",214.666741778599,231.050493818818,211.196204828444,61.2969181671215,38.0048279794047,23.506467638983 -"Tfru15023_t",0,0,0,0,0,0 -"Tfru15024_t",0,0,0,0,0,0 -"Tfru15025_t",0,0,0,0,0,0 -"Tfru15026_t",25.3906361938705,30.9471621238661,23.8030324410709,21.4531520698609,17.7564610902324,18.1376806005516 -"Tfru15027_t",0,0,0,0,0,0 -"Tfru15028_t",23.7751540819972,26.2112113978874,18.6014006542669,21.2561020060701,20.1076679068346,24.8193684199696 -"Tfru15029_t",0.573449670794863,0.230148481286637,0.493827412746989,0,0.992680468509475,0 -"Tfru15030_t",0,0,0,0,0,0 -"Tfru15031_t",0.515401084487408,0,1.3315162447994,0.533121741271685,0.223048602203433,0 -"Tfru15032_t",0,0,0,0,0,0 -"Tfru15033_t",34.9543738125286,35.3500461899025,36.8384494374166,34.6551153378056,36.5617114315543,39.9765240778393 -"Tfru15034_t",7.0485895560732,7.49654067309949,7.28388959923823,5.6504754245324,5.60510493696534,7.2198077614623 -"Tfru15035_t",20.9664451495007,16.2490373534903,19.4250115162129,33.9518718567876,30.7876173877909,17.6672375060328 -"Tfru15036_t",0,0,0,0,0,0 -"Tfru15037_t",0.101339417094629,0.406715953057808,0.610880593211143,0.157235543716438,0.263138157967379,0.148287237216834 -"Tfru15038_t",1.06067620600967,1.37382463592709,1.18327282930954,0.772988280816592,1.25188828094667,1.48151076769461 -"Tfru15039_t",22.8305286785639,20.002478397578,21.2025632941858,16.0523619148092,17.6941326316336,19.7605254503985 -"Tfru15040_t",12.6331393641274,12.3989151398283,11.3241072840344,13.8990631958883,12.9721895878888,12.4778692880616 -"Tfru15041_t",14.856131384241,17.4672092696548,16.2169724460001,21.1024589617939,20.3743648463534,17.4520966879379 -"Tfru15042_t",62.3824864292359,63.8197304924316,62.3364137582793,57.435417969207,47.1684902548255,38.4075890473758 -"Tfru15043_t",0.274095845910106,0.11000571780911,0.118019112508049,0.496159793467367,0.237239296307729,0.0501346328110748 -"Tfru15044_t",0,0,0,0,0,0 -"Tfru15045_t",0,0,0,0,0,0 -"Tfru15046_t",0,0,0,0,0,0 -"Tfru15047_t",11.5430449269777,9.38071563520196,11.8376399559028,18.8264313878952,18.0748210506198,13.5615610905406 -"Tfru15048_t",0.196690917243892,0.587239519181361,1.09570803387153,0.215537110337778,0.168425189585969,0.409344910414429 -"Tfru15049_t",0,0,0,0,0,0 -"Tfru15050_t",0,0,0,0,0,0 -"Tfru15051_t",37.5698579350572,49.4233142360508,46.7326364013238,193.768229403697,211.818589970755,259.603979390912 -"Tfru15052_t",0,0,0,0,0,0 -"Tfru15053_t",1.32415655156397,2.95243016711841,1.14030025167584,1.8262454044263,3.11994603467394,2.5296478212257 -"Tfru15054_t",0,0,0,0,0,0 -"Tfru15055_t",0.385368700786456,0,0.331861082419422,0.398618549666444,0.667099489158891,0 -"Tfru15056_t",5.40951223586512,7.32404243784161,5.44416947156019,4.51685223927701,3.94877354715464,2.19347769745025 -"Tfru15057_t",0.521803582431351,2.09420823034114,2.69611363853791,1.61923311479412,0.451638784585833,1.90885278963906 -"Tfru15058_t",0,0,0,0,0,0 -"Tfru15059_t",0,0,0,0,0,0 -"Tfru15060_t",0,0,0,0,0,0 -"Tfru15061_t",0.556974873622856,0.521585121678334,0.71946015879216,0.384083287634407,0.88381468232211,0.543337545426543 -"Tfru15062_t",27.81933576293,25.1515284701724,29.1026101889319,20.1534676658616,12.3869967906282,6.64983611988904 -"Tfru15063_t",0.341783469371226,0.274342982168367,0.529789620591461,0.353534759264787,0.650815530920675,0.600147044683916 -"Tfru15064_t",16.6095014247274,15.4188931242274,17.4127224678064,11.1549232190898,12.8759758706937,7.32649423718428 -"Tfru15065_t",3.7866879420485,2.51844384480689,3.1677454512463,2.18226330281011,1.40464605895014,1.38523959685977 -"Tfru15066_t",8.18029943833259,8.02531667126401,6.48539648548866,3.49207100387852,4.27067400942214,4.84500471583503 -"Tfru15067_t",13.9228020128554,13.4562913055313,12.3974620372604,12.9319587206331,10.9849550604901,10.6022031042117 -"Tfru15068_t",0.609506965693694,0.733859183981694,0.524878229509799,2.83708438130192,2.54982041745012,4.53369848779811 -"Tfru15069_t",0.260094045732035,1.67017969082315,0.895922179163268,8.87821005046561,22.0617855826479,39.0103320879487 -"Tfru15070_t",0.507104889968496,0.407043289840953,0.582259283440112,0.349693536528308,0.146305521767242,0.123672152568164 -"Tfru15071_t",0.591622371629911,1.13972121155467,0.713267622214137,0.367178213354724,0.409655460948276,0.737022451352344 -"Tfru15072_t",0.276349923590288,0.665462220562348,0.475958657680486,0,0,0.101093848398648 -"Tfru15073_t",0,0,0,0,0.181331282589324,0 -"Tfru15074_t",30.7964692832261,28.7594854479731,32.6828293529527,37.2160855207197,34.9579099929702,33.0283650258854 -"Tfru15075_t",0,0,0,0,0,0 -"Tfru15076_t",105.825225988343,91.2773962937084,121.908526906449,161.795084915994,129.157463802981,101.875789767477 -"Tfru15077_t",0,0,0,0,0,0 -"Tfru15078_t",0,0,0,0,0,0 -"Tfru15079_t",46.3737279664888,39.9206349602841,54.4039783941947,22.9412947647882,36.6477775274631,27.5363467954776 -"Tfru15080_t",21.9180486017126,24.4903798994028,24.4731992296085,20.0897491638366,21.1324610050115,19.0986352134358 -"Tfru15081_t",17.2132508084827,20.1308891761542,21.5353834059358,24.8008307159651,28.0842284532316,23.3998165163208 -"Tfru15082_t",25.007326136416,23.2874180461197,24.7538837473317,23.0134649966326,27.3447189968255,22.7238409739468 -"Tfru15083_t",99.8966549151027,104.038121755904,95.5220966110612,80.325850078391,82.8242231167505,82.1813146955573 -"Tfru15084_t",0.0940765697328639,0.151026886936136,0.0810142396051892,2.14084497670802,1.54710307060253,1.58308664726393 -"Tfru15085_t",22.2171306694589,21.3523580766051,22.5506392507798,20.9586774251984,21.0757334378203,21.9765763977246 -"Tfru15086_t",48.1538677334028,38.8599859419911,42.471059759002,36.7545957328038,32.435528397771,29.0751515665608 -"Tfru15087_t",1.11518199254134,2.5362158966565,1.92068272479913,2.88381118895856,3.86091208769836,2.71969291267158 -"Tfru15088_t",2.37706203820923,1.85781063710233,1.23898098827325,2.07056068687499,2.27399959893477,3.47829080179055 -"Tfru15089_t",0.254687153486415,0.350455634562068,0.219324387948046,0.413983231745401,0.472372310426499,0.505775719662701 -"Tfru15090_t",7.77583375291871,10.1267173445085,7.29439334107496,8.36769341735123,9.17408598628032,4.57422024314734 -"Tfru15091_t",46.2077980748877,56.3232560569936,47.3902250936501,58.6102206998361,54.544431750974,52.164224491774 -"Tfru15092_t",14.5315246307369,16.4027444635909,17.9886645108214,19.7283861661944,30.6577289558318,16.9444218980825 -"Tfru15093_t",16.3463586878406,13.2799473323543,15.0151485970146,13.7316569255379,17.4924814161994,25.5137984184964 -"Tfru15094_t",3.28087861947665,1.99507411292854,2.82533565316606,13.163375159636,12.133316034181,7.92862901902387 -"Tfru15095_t",11.697647398556,12.3770357309655,12.477346582991,9.48737377228266,7.82364147728749,7.39136795380491 -"Tfru15096_t",48.1224488302466,56.8813745917112,46.0269146703149,70.9682162610034,68.5196134353092,69.4685056518569 -"Tfru15097_t",3.64901932669663,2.19674794231046,3.21377810319302,4.80388475254486,6.60382396573085,4.55072012534879 -"Tfru15098_t",2.88162242223962,4.37695045756681,4.04677883511767,6.87853645070855,5.64059900516776,4.80043739013398 -"Tfru15099_t",0.671009399132967,1.07721254020742,1.38681883643643,2.49868880014556,2.32312601655971,1.57099194444416 -"Tfru15100_t",0.146871288061971,0,0,0.151921055642106,0,0.214912796595726 -"Tfru15101_t",0,0,0,0,0,0 -"Tfru15102_t",0.0791803739598939,0,0.0681863486969217,0,0,0.0579312533707613 -"Tfru15103_t",0,0,0,0,0.107405973882303,0.0907903394776628 -"Tfru15104_t",0.109531130080114,0.527511121384495,0.377291869452067,3.17231763645889,4.07652582227864,16.3479429003664 -"Tfru15105_t",0,0.145644719259146,0.31250849229993,0.0938432438739575,0.314098679560773,0.531015635649051 -"Tfru15106_t",0,0,0,0,0,0 -"Tfru15107_t",0,0,0,0,0,0 -"Tfru15108_t",46.8588549466989,50.7915701126503,46.5448186894617,59.6267387744992,58.7104648846913,60.9389680161662 -"Tfru15109_t",8.53419533485165,7.72473148249319,7.14075150399023,43.2616002050819,21.321710833974,17.580424172242 -"Tfru15110_t",175.464710978339,157.829241244373,201.01119816268,298.096033888533,225.044746023152,128.765410142601 -"Tfru15111_t",94.797701415252,80.2904767906509,117.948852102548,138.632396767263,97.8949032456747,68.639969533737 -"Tfru15112_t",16.1947714258212,18.338199298939,19.9230887345773,36.3449553356801,46.4317319141074,46.9715775609496 -"Tfru15113_t",0.33604150708579,0.674335050169846,0.289382863869736,0.521393062963708,0.290855377273276,0.245860239305511 -"Tfru15114_t",9.2206511090613,11.5130374419242,10.366611739236,9.40521023130672,9.64345191416731,11.8057889300665 -"Tfru15115_t",0,0,0,0,0,0 -"Tfru15116_t",0.0852031368199627,0,0,0,0,0 -"Tfru15117_t",0.0943936817656713,0,0.0812873213117235,0,0.0817009486722686,0 -"Tfru15118_t",8.25462246088895e-08,0,0.284825653415094,0,0.143137488815589,0.181491318384974 -"Tfru15119_t",6.1047747045279,8.15868301201436,6.19114942989475,143.025688364937,84.7031797702883,23.1485894809043 -"Tfru15120_t",0.0986423210623649,0.184749328813656,0.226522789721907,0.272090313353533,0.142297151307865,0.336794848363713 -"Tfru15121_t",20.0272415213667,13.778982449291,32.2531984498777,96.3151272141421,118.413257310947,63.3680028550581 -"Tfru15122_t",0.224626675859485,0,0.580313229685299,0.232349849805574,0.194422043631869,0.328690159499346 -"Tfru15123_t",4.32752220771174,2.79399740831851,4.53679741789059,2.62740065323257,2.1985148898036,2.68436431492579 -"Tfru15124_t",0,0,0,0,0,0.0743229260294773 -"Tfru15125_t",1.3734666502144,2.29678150602809,0.78850916585759,7.45862011051626,6.73643244365898,3.85203372208907 -"Tfru15126_t",1.15082707906092,0.115468330508535,0.743277903775006,0.44639817034564,0.62255003697191,0 -"Tfru15127_t",7.37395156614586,2.2195981275183,10.2055085220518,5.17579320601382,2.16545931355496,0.289020657490804 -"Tfru15128_t",0.108680953132532,0,0,0.786923553416549,0.188134137951666,0 -"Tfru15129_t",7.6251456623766,8.69763360887858,5.47200877142215,15.2211350652887,12.7943945814877,8.07462967464357 -"Tfru15130_t",0,0,0,8.82861983731484,6.22658463683719,3.74678158593304 -"Tfru15131_t",0.272466086826316,0.473857062281513,0.586586886222437,8.73685673074321,7.1927748704067,3.48855744960522 -"Tfru15132_t",10.0494340544158,9.51729330704429,9.74363558425422,9.3479823394239,9.19873934147409,8.80717079267804 -"Tfru15133_t",8.38632482657181,9.03443631138235,9.05905199942474,11.4140337776644,11.5883709859318,11.6256155188245 -"Tfru15134_t",29.2705837619975,23.8000605942299,31.7535495422674,24.7720686023481,34.5473015992014,29.480978921249 -"Tfru15135_t",2.53722614410412,4.52573859174393,5.58372975587577,6.9985646035397,7.44218876412326,4.95020616051364 -"Tfru15136_t",9.29079064353632,14.1259185465655,9.69407194648471,18.9662192788632,14.2959927975162,13.4870669601472 -"Tfru15137_t",20.2100434686029,27.0370185209608,26.7030767662816,31.7672660217668,36.0139323274693,36.82104999033 -"Tfru15138_t",1.08400486156706,0.870109742154635,0.933493109257207,0,1.40736472874165,0.396548773073403 -"Tfru15139_t",5.11502293995898,4.60339425392699,3.4704586995448,5.61154895563646,6.30544406450368,3.28872091321947 -"Tfru15140_t",0,0,0,0,0,0.150403898433224 -"Tfru15141_t",17.2962540411804,20.329218424238,18.0864289918585,21.0058786089852,23.79239758945,29.6026574899099 -"Tfru15142_t",0.137047922955053,0.0550028589045551,0,0.212639911486015,0.0593098240769323,0.200538531244299 -"Tfru15143_t",121.893040037087,117.874482244543,127.420571359088,76.98730461091,83.3219648422118,78.0948638112332 -"Tfru15144_t",13.9470352061973,12.6437821906846,14.2713228763883,6.11007495660595,9.08923053978988,9.60391559787152 -"Tfru15145_t",90.7536846059449,101.03749246692,83.7177850325489,11.3346318035589,24.3190114776987,23.845976387491 -"Tfru15146_t",33.2088077590663,40.3411027072196,31.6618898116299,90.7326163490766,123.228579694751,106.696112675083 -"Tfru15147_t",13.1093115401599,17.1918386416928,16.2181605025896,19.0986469950076,21.4146266783621,22.1544391462109 -"Tfru15148_t",0.23519142433216,0.18878360867017,0.263296278716865,0.316261189740957,0.1832095741503,0.258111953358249 -"Tfru15149_t",98.9281072261904,153.773600225647,82.4876387666069,110.85693628434,124.530953003103,86.8840214835479 -"Tfru15150_t",1.57791510775387,1.48493469596987,2.34280168288322,0.731661249841127,0.847700257596984,0.557325672000834 -"Tfru15151_t",16.9991671473017,14.0404072029499,12.9416090147023,37.970462552098,35.3973552986539,32.6251490574028 -"Tfru15152_t",0,0,0,0,0,0.180249442306093 -"Tfru15153_t",8.21338095985015,8.05534585667443,7.49453839740332,7.70808779821171,7.90930776657663,10.8046382278158 -"Tfru15154_t",0,0,0,0,0,0.173875699650291 -"Tfru15155_t",12.3926909381085,12.2758783995008,12.2508077038776,13.7309775329301,14.4624220743618,15.9944989934939 -"Tfru15156_t",21.3939468796854,14.2406159663197,24.2650227468412,7.55642120237258,9.03277569171665,9.16249339026748 -"Tfru15157_t",10.8249538580365,10.3166000991451,10.7994718971067,8.06710395723028,8.58633586826047,10.7501088667746 -"Tfru15158_t",10.8664326004793,11.1607609137986,11.4706698474095,23.0843938400714,30.8452329862132,67.1071932735834 -"Tfru15159_t",0.553914572119434,0.148205505531834,0,0.763945879800305,0.799053234267243,0.675440217872283 -"Tfru15160_t",2.00066128157309,2.09464190361311,1.96257792332446,2.33937661991033,1.6864672941917,2.29109769491571 -"Tfru15161_t",17.1839407032506,20.2300515050954,17.0998965013935,13.2323239464274,11.7333703331833,5.86711934706333 -"Tfru15162_t",3.96275362129469,4.45315599168766,4.77754728086828,6.39444322502661,12.0732420754945,9.16177306846008 -"Tfru15163_t",4.46388824502909,7.45279970432136,4.99731300518938,25.487864927025,38.2501093916769,40.8896147197794 -"Tfru15164_t",13.3485875628102,12.9755432394198,11.8115454640708,17.2277591261089,15.6875349258181,12.0958936976108 -"Tfru15165_t",20.7218108480375,17.9852730626851,20.9396357044779,70.7505292657973,83.6500842726117,93.4301778376891 -"Tfru15166_t",11.5281289406999,11.3035620570788,11.1163918536649,7.85445589235934,9.20125885375607,10.5051211535633 -"Tfru15167_t",0,0,0,0.158574532531541,0,0 -"Tfru15168_t",28.9143794134677,28.4932388074479,28.4676217080669,21.5412748600448,21.8980832312252,18.7039531475861 -"Tfru15169_t",14.054666057227,12.7473544455547,17.5052015951447,8.13136629385745,11.958609557077,11.5610084172487 -"Tfru15170_t",58.0529452161851,60.4289684043048,55.2782407215956,71.982228909749,78.6666502352237,60.3288219246577 -"Tfru15171_t",35.5578804009382,26.0324693786499,36.6775955369781,32.7386341860933,25.0270906025842,25.4436759281285 -"Tfru15172_t",0,0.367151569965433,0.787793640298736,2.99651185611326,2.11147279327242,0.669310996294494 -"Tfru15173_t",1.3150329897999,1.42093478362099,1.3502210686276,0.941709325039809,0.875542977944841,0.777101900273288 -"Tfru15174_t",32.388047765654,29.8819076884717,39.6458797989926,10.1403377582799,13.9627766046994,16.2514707665016 -"Tfru15175_t",4.49077633328467,5.09927417338345,4.33885649869877,3.62550587023873,5.6881755659702,6.4109580001437 -"Tfru15176_t",11.9058530541209,11.8593927434537,11.5291977637345,8.45742873902429,7.24241477274094,9.09556946776221 -"Tfru15177_t",2.66578711423451,1.10045611088461,3.93539706078516,4.64826091188558,3.09841403713599,3.39924628232914 -"Tfru15178_t",47.8307254609033,33.4706448257997,44.3579572353096,33.6178008965372,57.3218626740403,38.5839061682114 -"Tfru15179_t",0,0,0,4.40979207481743,1.51939376187532,2.20173348631801 -"Tfru15180_t",0.318522755531554,0.191754042702326,0.0685741383577573,5.27158863028077,4.34215373654417,2.50521096922677 -"Tfru15181_t",0.0647229405018855,0,0.0557362988963281,0.200844785425157,0.224079643507917,0 -"Tfru15182_t",0.304937846720317,0.856686996586011,0.525195760199157,0.315422300643501,1.05573639663621,1.33862199258899 -"Tfru15183_t",0.530033922848249,1.91451591530871,0.456439848374977,0.822386534643072,1.6056684865244,1.16337652668223 -"Tfru15184_t",9.23321593761663,9.95598446713027,11.2272361100404,12.0510660779348,16.1205220894387,22.3535665689326 -"Tfru15185_t",9.72957386794903,10.0993435420786,9.65731185239699,9.21531925238181,6.22295225793986,6.00356398304154 -"Tfru15186_t",0,0,0,0,0,0 -"Tfru15187_t",0,0,0,0,0,0 -"Tfru15188_t",0,0,0,0,0,0 -"Tfru15189_t",210.561039869838,293.04007168229,235.808849758969,234.405480005446,124.817713654694,86.9123775888908 -"Tfru15190_t",0,0,0,0,0,0 -"Tfru15191_t",16.2663948803191,4.71929661860701,28.690758276354,464.90205717863,226.396759448328,139.849739542754 -"Tfru15192_t",10.9615133038442,2.28360475157119,15.9967618971816,234.471083593739,105.015014204744,81.3616180371075 -"Tfru15193_t",0.334702696300588,0,0,1.38484213270573,0.289696590909638,0 -"Tfru15194_t",6.16407498204703,9.89556760012555,6.93491478504396,9.25549815911907,8.86334433702587,10.3290396394623 -"Tfru15195_t",5.92449289811351,5.44094989654196,5.51555649052863,5.46568331569325,4.20391348981387,6.20898634840791 -"Tfru15196_t",1.68020753542895,1.01150257525477,1.08518573951151,0.868988438272847,0.727138443183191,1.53662649565944 -"Tfru15197_t",4.37353792116803,3.62628688306439,3.2282413303546,1.78967870582508,2.0383171462229,1.58233849667448 -"Tfru15198_t",0.103461055137251,0.0830461884445623,0,0,0,0.0756958864856868 -"Tfru15199_t",65.4884039399472,61.3273214918246,66.649202899132,55.7657934797142,54.3922457499237,57.8352334586783 -"Tfru15200_t",33.3026452780779,29.5915380906507,29.2097303457421,24.5953497618824,28.5280253810045,29.3788948272898 -"Tfru15201_t",0,0,0,0,0.280748433661464,0.474633666612955 -"Tfru15202_t",8.04630797090073,6.04193093355063,7.22712095658197,9.12840583973536,12.2812260228675,13.3564651116022 -"Tfru15203_t",89.3727412462207,87.897648196831,81.9864104804514,67.4366167663026,60.4184462308989,67.1779377273736 -"Tfru15204_t",6.45543983729372,4.92977064425127,6.79447492543669,5.70360607831164,6.13062294679531,8.26531220717566 -"Tfru15205_t",11.1518198196958,11.9351335181814,11.5240962395481,21.5324566734328,16.0871335462395,14.1424030118243 -"Tfru15206_t",87.7369701480015,113.212856542498,98.8562001213634,135.418063283406,83.6524747075744,41.6089411746549 -"Tfru15207_t",25.1604681701289,31.149487089064,27.175548129899,16.3211026477641,19.9317136710113,24.648425006517 -"Tfru15208_t",3.72742286016661,1.84118785029309,1.97530965098796,0.59316616946952,0.744510351382106,1.46844852827524 -"Tfru15209_t",4.30539381614514,4.60780848999106,4.1829323292603,2.74056800506548,3.2487131495701,4.28074661077269 -"Tfru15210_t",0,0,0,0,0,0 -"Tfru15211_t",0,0,0,0,0,0 -"Tfru15212_t",0.0470910183696454,0,0.04055253137188,0.0487101142529622,0,0.034453508871288 -"Tfru15213_t",0.701060167772858,0.924480795980913,0.776210741554029,7.57969251742061,7.15147087970752,8.97612139328186 -"Tfru15214_t",0.872835083339714,2.27697549408,0.751643802259053,1.80569026134617,2.26640553719436,2.15526833157428 -"Tfru15215_t",0.583810818425625,0.374890924347378,0.502749937230256,0.301941778413081,0.555838976720993,0.896988364387722 -"Tfru15216_t",1.59177555988006,1.49063537405966,1.06614739320429,2.83564648278508,3.21471732775726,2.13510207817944 -"Tfru15217_t",0,0,0,0,0,0 -"Tfru15218_t",16.4004321187288,11.5523534491249,14.1232672605747,12.4635791943516,8.69089772728913,14.6928429863851 -"Tfru15219_t",11.1330026097245,11.8159746999187,11.2399973164051,9.19000135921712,10.1389745757856,10.496564027511 -"Tfru15220_t",5.46489805459964,5.23460711186607,5.14083983346753,4.50399778906002,3.69031870121823,4.44431342425822 -"Tfru15221_t",0,0,0,0,0,0 -"Tfru15222_t",0,0,0,0,0,0 -"Tfru15223_t",7.52741767016893,8.22919799790791,8.09098589302237,5.71770732962674,4.56542122600303,6.55252109332869 -"Tfru15224_t",1.3892766586718,1.57432307432649,1.54825462187115,3.80393771617491,2.75859915215413,2.57100931180374 -"Tfru15225_t",12.712096485153,11.5346784897472,12.3749250996924,4.57362335933069,9.08923053978972,7.27875708470249 -"Tfru15226_t",9.61531454218659,8.51188127421715,7.75977594418519,5.51287629250923,5.3263247636702,6.07012690240879 -"Tfru15227_t",0,0,0,0.0595197560460854,0,0 -"Tfru15228_t",0,0,0,0,0,0 -"Tfru15229_t",38.7588857704336,21.4776503098593,31.8863319556699,203.876491208838,135.244344631403,139.138470323599 -"Tfru15230_t",20.7666099884477,13.6382369697272,10.9737883770827,91.0485077179134,50.0418310617645,83.0468926305834 -"Tfru15231_t",0.063260825882114,0,0.16343158727583,0.327179381879837,0,0.0462839305921519 -"Tfru15232_t",0,0,0,0,0,0 -"Tfru15233_t",0,0,0,0,0,0 -"Tfru15234_t",0.612349325162208,2.77471511356038,0.578357475403892,0.858159285385834,1.79519248846073,4.0899628334975 -"Tfru15235_t",0.12825600536249,0.586474868340022,0.202435306547693,2.73796914400075,3.53704845133268,3.54320907266235 -"Tfru15236_t",0,0.139038154674195,0.298332849350243,1.7917287387069,1.94903087863536,2.6613737244411 -"Tfru15237_t",0,0,0,0,0,0 -"Tfru15238_t",0.788430827634081,0.63162111464623,0.553226693697192,2.25764233050499,1.79437431742408,1.29456869019669 -"Tfru15239_t",0.061696727127134,0.0330151799348762,0.0354201791762222,0.233999334663435,0.053400620062413,0.376163156832177 -"Tfru15240_t",4.82602833656391,3.87375963008891,4.59978339112519,5.81587354114565,10.8685500710036,15.5633782270917 -"Tfru15241_t",57.9702599862017,59.0976289355492,54.459505746703,67.0179275273155,72.7138443183191,73.485901785042 -"Tfru15242_t",0.939976243596615,1.46184521365491,0.607096917209236,1.94458951221896,1.52546526541928,1.67631981344666 -"Tfru15243_t",58.6624180324739,74.4093845541478,91.055814566984,58.4319809647664,73.3406875158382,69.4131276348134 -"Tfru15244_t",2.27474250950381,2.65584265913047,2.35958335155323,2.29947709819892,2.01361415035345,3.02597217606783 -"Tfru15245_t",15.0018529949013,13.8806388749666,13.678811842582,8.57293523780834,9.75330292903349,5.80808890439233 -"Tfru15246_t",0,0,0,0,0,0 -"Tfru15247_t",0,0,0,0,0,0.0330635071685733 -"Tfru15248_t",2.75867835473198,3.18311054980122,2.82107460929963,4.99367393979265,5.6708590745944,9.20872112329517 -"Tfru15249_t",0.540091925566964,0.667210632128041,0.315559535914638,0.741977782985168,0.637405728277808,1.07679747330339 -"Tfru15250_t",11.602366183925,10.4847511892202,9.66188285260655,9.27300264736327,9.85385648045305,11.7062926892186 -"Tfru15251_t",3.86889893026396,2.21820740187445,0.475958657680478,1.14340583983267,0.478380554725775,2.4262523615675 -"Tfru15252_t",0.100490881305559,0.403310436704453,0.173075875520177,0,0,0.07352279883538 -"Tfru15253_t",5.37479461959191,6.09621394451182,5.33285527993602,4.95528873006769,2.52829778575518,7.18089711462549 -"Tfru15254_t",16.4321736106726,13.8749718197521,14.211859529589,11.110690447011,9.66644670446748,11.8662435566589 -"Tfru15255_t",0.423226079453136,0.169857695256888,0.637808579057982,0.437777550767177,0.366316596062061,0.541883398973103 -"Tfru15256_t",0,0,0,0,0,0 -"Tfru15257_t",0,0,0,0,0,0 -"Tfru15258_t",0,0,0,0,0,0 -"Tfru15259_t",0,0,0.0369487824144198,0.443814319853343,0.297094358808249,0.156958784030587 -"Tfru15260_t",31.3272339549603,34.6620820180762,28.0593197443786,26.232080893657,21.610282703949,25.3902396665971 -"Tfru15261_t",23.6079792952675,23.0468941197289,25.4583658720843,38.4994877715818,51.7280765910067,44.0369922300377 -"Tfru15262_t",0,0,0,0,0,0 -"Tfru15263_t",0,0.268125268457195,0.287656922335721,0.172761120928995,1.59016359344237,2.93272651259059 -"Tfru15264_t",0,0.0355287170795493,0,0.320490994094306,1.41749854572066,1.16582832125901 -"Tfru15265_t",0.741268030336301,1.15033626205444,1.53202692636919,1.32904114088788,8.29793282220817,19.673314874531 -"Tfru15266_t",0,0.14707416579495,0.0788939105424579,4.83297822812597,11.3392363549832,9.9202059479868 -"Tfru15267_t",0.868442414938793,1.54091796012696,0.787222154161414,1.08741752340998,1.38464883087115,1.1704445559974 -"Tfru15268_t",5.96998919318793,7.64876107469726,8.84857065812823,12.3801905965076,13.9614555882799,13.3765777620098 -"Tfru15269_t",15.5431419681412,8.55182422984552,11.6307491965103,4.95180123652083,4.91929257148667,7.55644649174915 -"Tfru15270_t",0.393491226095773,0,1.27070929685188,5.39301958178699,5.02355598920471,1.58340903533994 -"Tfru15271_t",7.7477924328098,7.743268659274,8.96144944623729,13.2783947620354,15.0555789773011,15.227329468741 -"Tfru15272_t",0,0,0,0,0.236852913088987,0 -"Tfru15273_t",17.2266765365279,16.9435810439788,16.1406687609654,13.6151979137334,11.3927106260471,15.1332746576136 -"Tfru15274_t",0,0,0,0,0,0 -"Tfru15275_t",0,0,0.184555397876107,0,0,0 -"Tfru15276_t",0,0,0,0,0,0 -"Tfru15277_t",68.6962680128513,65.2976021431435,65.4244710009308,51.3978294130352,55.3696888215771,47.956255468932 -"Tfru15278_t",45.7508739742596,33.0724833522791,30.8736494892871,29.6120263997435,42.8409592321307,47.3711607579089 -"Tfru15279_t",0,0,0,0,0,0 -"Tfru15280_t",0,0,0,0,0,0 -"Tfru15281_t",0,0,0,0,0,0 -"Tfru15282_t",6.93289517045926,4.58285956426109,7.37504871512676,5.48390762016845,4.23575792145548,3.58048892192492 -"Tfru15283_t",1.70675709016485,2.58774172751408,2.93955505059551,1.56927934676812,1.96967524112828,1.66496776053393 -"Tfru15284_t",2.06552110971373,2.29099078287476,2.00511148412199,2.25307686275481,1.75527384586018,2.9949448015535 -"Tfru15285_t",2.06160433794963,1.90303142992717,1.06521299583952,1.27949217905204,1.24907217233922,4.07253157131828 -"Tfru15286_t",71.8110677426266,83.8949022385562,65.1338588811983,90.3775259585182,70.2025341534791,63.4913804799945 -"Tfru15287_t",0,0.219891864185819,0.078636647790689,0.377821060118629,0.237110361907562,0.267239390549468 -"Tfru15288_t",14.4452231552715,16.3244005357859,12.0303396461683,16.6130142610985,33.395724879228,40.7449378487074 -"Tfru15289_t",1.48353339404675,1.4970102021934,1.56955892361234,0.920724379602915,0.990551865083055,1.33350028886692 -"Tfru15290_t",9.31247101004252,7.87254362816212,8.70196111872436,12.8093814603898,15.863279715671,15.0038530472408 -"Tfru15291_t",0,0.0836643982841,0,0.107814942713753,0,0 -"Tfru15292_t",34.7131223373255,33.0329132517027,35.1158992595451,38.2964310026053,30.1703712933005,25.6509393706506 -"Tfru15293_t",0,0.0424376998218909,0.0455290849385991,0.546877557125769,0.228803789547889,0.348134385423159 -"Tfru15294_t",4.97363084389963,4.26381807799701,3.43809685225824,2.76480413304691,2.28420453355976,3.44085514130749 -"Tfru15295_t",0,0,0,0,0,0 -"Tfru15296_t",4.99778445382548,3.05647614807862,4.09890742025121,4.92344724233907,4.53174100567428,5.04953749281857 -"Tfru15297_t",0,0,0,0,0,0 -"Tfru15298_t",2.68118223738662,2.86951085178658,3.07854110499719,2.77336735618994,1.54710307060253,5.23106892139385 -"Tfru15299_t",1.17497030449515,2.35781486073249,0,1.21536844513621,1.52546526541848,3.86843033872104 -"Tfru15300_t",5.40358005932854,8.0200042374569,5.44348833735546,20.1428145279264,15.7958472487611,13.9489880916658 -"Tfru15301_t",0,0.0757679831651512,0.24386196393517,0.0976391503677355,0,1.03592797460187 -"Tfru15302_t",0,0,0,0,0,0.183477790526501 -"Tfru15303_t",0,0,0,0,0,0 -"Tfru15304_t",0.9095611658326,1.19468808100957,0.925683373599056,7.78326258689262,7.15687444077943,4.77927138413764 -"Tfru15305_t",0,0.121611370634778,0,1.41044110810742,1.11463963337369,0.554238591761747 -"Tfru15306_t",85.267574311161,122.876193120738,77.8862769614187,180.146810927161,119.248144335412,78.995587452915 -"Tfru15307_t",0,0.446579503423739,0,0.575489031968773,0.240774318934831,0.610580064500441 -"Tfru15308_t",75.2986897911285,95.1332807916462,70.1939543188848,75.0934542719702,73.1814574650606,62.6508809162757 -"Tfru15309_t",0.615686161754836,0.617749221482087,0.583219403181951,0.700540331330253,0.719411431511401,1.37389836914952 -"Tfru15310_t",5.79496095191301,7.68162512806801,5.27550550018733,3.69928069899359,2.83747362535025,2.56811050122035 -"Tfru15311_t",18.7743279918133,19.6363931087833,19.4337250567148,10.3964756723388,5.90902572338485,4.71740865484615 -"Tfru15312_t",7.77821670208638,8.18883891853352,8.00875084510338,7.31687682007663,7.58604682421913,8.51562217654948 -"Tfru15313_t",0,0,0,0,2.15981659842455,1.82569437334402 -"Tfru15314_t",0,0,0,0,0,0 -"Tfru15315_t",29.2846629165863,26.1506838627958,28.8437168236174,24.0439066798805,22.6537684913282,27.0499827558351 -"Tfru15316_t",1.8036834397824,1.69781348486112e-05,2.14756837956584,0.708673168326596,1.60874518052724,1.97854510917292 -"Tfru15317_t",0,0,0,0,0,0 -"Tfru15318_t",0,0,0,0,0,0 -"Tfru15319_t",197.38608280951,147.574843806167,150.628618351648,259.375880359859,340.804704981301,400.176772486629 -"Tfru15320_t",0,0,0,0,0,0 -"Tfru15321_t",12.6844195580562,11.3582990241051,10.9781056096258,10.6810415022914,8.66166430802435,10.5395322615792 -"Tfru15322_t",0,0,0,0,0,0 -"Tfru15323_t",2.87378711874963,2.42207002056444,5.85695077957561,14.7638856673494,7.2962580387823,5.71197534304422 -"Tfru15324_t",6.1786423053117,6.53574449993579,5.77445851507454,10.3049940228479,7.54499410828624,7.84958574749635 -"Tfru15325_t",8.11785663184773,8.10717419867118,9.83576587871854,11.9119763448637,11.4381328141176,9.80678482623105 -"Tfru15326_t",1.09341054366309,1.17021266840754,1.09852497130594,0.565502237487753,0.788653409092398,2.26660741225254 -"Tfru15327_t",2.44690417780915,2.29142978213055,2.1071567757505,1.2655171431158,1.76489913393978,3.87886299875199 -"Tfru15328_t",30.6076022377503,28.0901352108968,30.1363683074534,8.85593312889525,12.0417831355178,13.7807013113917 -"Tfru15329_t",7.9975573084311,7.74964808943048,7.69371250425541,11.7753150297693,12.9088900290669,11.4917521802319 -"Tfru15330_t",1.78999382325527,2.29886948921538,2.67185882834273,1.35779443480132,1.96244750290918,2.00809144319132 -"Tfru15331_t",8.5724874256579,9.82995699956043,7.93060909730471,11.9580916287109,8.98853352506335,11.2178214143768 -"Tfru15332_t",13.2194648332139,13.4133705040581,16.1933772940246,7.40234827346149,6.65527709664724,5.8485104501764 -"Tfru15333_t",0,0,0,0,0,0 -"Tfru15334_t",0,0,0,0,0,0 -"Tfru15335_t",0,0,0.0643358968140808,0.115916643611318,0.064663267512956,0.109319804048693 -"Tfru15336_t",1.13815921112884,1.54166353552801,1.10264427384743,2.57532560030056,3.38633483277523,3.17474060068505 -"Tfru15337_t",0.133561807267802,0.107207480154189,0,0,0,0.0977186960673732 -"Tfru15338_t",302.092950733053,281.680512171972,289.276940420296,293.903849547624,235.601372586296,187.814904623207 -"Tfru15339_t",62.8386302416336,53.060228051213,65.7157888170423,94.685162916429,106.893394813441,79.2184019968775 -"Tfru15340_t",0.683608720791372,1.00238993944166,0.587453088910571,0.944084229152632,0.988924681522983,0.6651787690253 -"Tfru15341_t",3.304976751161,3.16629401729496,3.85598993735054,9.04277308862607,5.99796939173952,5.14808876718392 -"Tfru15342_t",73.9335128040769,69.2797939418303,65.7431082520227,64.3527291967375,83.0473632631649,170.291071878817 -"Tfru15343_t",0.304753482846847,0.489239455987796,0.524878229509799,17.5478922843489,9.58380777593322,5.72286530426975 -"Tfru15344_t",0,0,0,0.310353013668874,0,0.109759035404246 -"Tfru15345_t",0.89850670343794,1.08182093610136,1.54750194582746,42.0553228148089,18.6645161886594,8.545944146983 -"Tfru15346_t",17.724895300071,12.5562722000815,15.2638315671411,9.48728167705787,8.76657198747316,10.4568822477562 -"Tfru15347_t",34.9134033335886,29.5568934327692,32.8844163488336,26.5210757135219,30.6909083161736,25.7434828493595 -"Tfru15348_t",5.23996926303265,5.2575275097988,6.86671202402762,4.24184186817932,4.23958685516979,3.95876656508873 -"Tfru15349_t",20.5662685414661,22.3011423105019,20.676007539261,22.8835248483978,16.1677048568525,12.5622020083108 -"Tfru15350_t",17.4195597483543,19.7996248773274,15.8964667967127,9.21094127995203,11.3641752822441,13.6483343676367 -"Tfru15351_t",0,0,0,2.33285486784644,0.488012377975268,0.41251718004278 -"Tfru15352_t",0,0.169430917128102,0.18177315569707,1.31003282151685,0.913490506511546,1.23547858947493 -"Tfru15353_t",10.7533282267453,9.84529173247975,12.009388850594,10.7754566345833,13.2339196659341,9.46561921326217 -"Tfru15354_t",20.709534739008,17.5640757253541,21.198977236969,14.5505040827081,21.3068474049028,12.8647799636605 -"Tfru15355_t",11.3156834018684,6.01593368373099,13.414540919909,6.6377542515302,6.31741271336999,7.49049417126119 -"Tfru15356_t",0,0,0,0,0,0 -"Tfru15357_t",0,0,0,0,0,0.0534014420733082 -"Tfru15358_t",2.16968948273366,1.95055593024336,2.20475064156952,1.07725839455312,1.57746976310403,1.80966343497083 -"Tfru15359_t",49.5380337193337,57.4926995661525,47.992256868974,23.6396550837142,20.2781009611118,14.478851478858 -"Tfru15360_t",1.7550914367294,0.70438897998243,2.16634107701926,6.23299506560607,2.88627376472436,2.01173942328674 -"Tfru15361_t",5.66941192936148,2.89591739336744,5.32606497919759,6.39746089526022,9.14499269034074,7.73026826037266 -"Tfru15362_t",21.7946920309926,21.8099221940647,24.9696071110458,18.1742724804492,18.0330333909431,20.1605396230519 -"Tfru15363_t",0,0,0,0,0,0.247842983170878 -"Tfru15364_t",0.120704564326792,0.0968872198519894,0.415779976824333,212.128068480685,58.8188137230081,23.4026449051582 -"Tfru15365_t",3.10731050600512,4.48952050886447,3.94082245686762,5.90234245229035,6.5525589365533,7.68829934613736 -"Tfru15366_t",0,0,0,0,0,0 -"Tfru15367_t",0,0,0,0,0,0 -"Tfru15368_t",0,0,0,0,0,0 -"Tfru15369_t",0,0,0,0,0,0 -"Tfru15370_t",0,0.16447196345606,0,0,0.177350839800778,0 -"Tfru15371_t",0,0,0,0,0,0 -"Tfru15372_t",0,0,0,0,0,0 -"Tfru15373_t",0,0,0,0,0,0 -"Tfru15374_t",0,0,0,0,0,0 -"Tfru15375_t",0,0,0,0,0,0 -"Tfru15376_t",12.9483883464249,11.2595393698084,11.4160212352281,12.7557935893262,15.4767081484863,10.4885331446846 -"Tfru15377_t",13.5097768051382,13.4867010033969,11.2429153192634,10.6862091733553,11.1036005513109,11.0470985904165 -"Tfru15378_t",0,0,0,0,0,0 -"Tfru15379_t",0,0,0,0,0,0 -"Tfru15380_t",9.03765216959414,10.767460882279,14.8313612571938,1.05830797624569,1.08234409675441,2.49519863977176 -"Tfru15381_t",0,0,0,0,0,0 -"Tfru15382_t",0,0,0,0,0,0 -"Tfru15383_t",16.0449002846756,15.9177801542238,16.7668182928817,13.2399526002944,12.0929676709651,14.9046175115465 -"Tfru15384_t",7.4712785666307,6.53012202733645,10.0083006279059,75.7359488692342,26.0102881850114,17.7349777364647 -"Tfru15385_t",0.573449670794863,0.920593925146547,0.493827412746989,2.07608159314332,1.73719081989158,2.09778361182177 -"Tfru15386_t",0,0,0,0.0660124678708489,0,0 -"Tfru15387_t",0,0,0,0,0,0 -"Tfru15388_t",0,0.176066592733641,0.188892208792256,0,0,0 -"Tfru15389_t",2.76805195293072,2.27740832429684,2.02615678986223,2.57690146440053,2.75521980118837,2.98718165548294 -"Tfru15390_t",0,0,0.367237136890528,0,0,0 -"Tfru15391_t",1.18324474325982,2.03521644920477,1.31008338774025,1.39877414611323,0.438916565301725,0.371016457704493 -"Tfru15392_t",5.33712981842137,7.14001817826896,3.2342790667794,1.63574294263124,1.56769442592819,1.73548404215655 -"Tfru15393_t",8.43668564465738,9.82411742114486,5.73035373999477,3.93318670788276,2.15981715796987,2.95588689405494 -"Tfru15394_t",211.056744097593,245.532424709082,214.817954160969,166.867105018037,147.881223260876,73.7203631659929 -"Tfru15395_t",17.7486711488973,20.6574469594284,15.2843061903029,5.50767320032086,4.09655460948276,4.54495160688004 -"Tfru15396_t",7.14457749669201,6.72357528028585,5.5160956456108,1.27417659570799,1.70589664089898,1.44199553844874 -"Tfru15397_t",12.5821992860463,12.7408926529787,13.5023110446132,14.6166258050502,14.4087341275932,13.8792070575692 -"Tfru15398_t",19.163657374132,18.9559622397975,19.6700333736341,17.820269817116,14.9113643878581,14.5873298666288 -"Tfru15399_t",13.4467828673811,14.3912968024052,14.447086572765,22.5195174552414,19.5085923780856,18.4582572954214 -"Tfru15400_t",0,0,0,0,0,0 -"Tfru15401_t",102.339913521581,85.3646870328646,105.065710234523,71.8890435298446,66.4340123090097,59.9284333307183 -"Tfru15402_t",2.31846819012111,2.49591544543384,2.67773104554788,4.37315610169777,4.95776211261266,5.50790795846761 -"Tfru15403_t",17.8669956232233,19.5652141316885,19.3601211743837,17.5021615032418,23.8624306002371,22.1620497402151 -"Tfru15404_t",2.81667443985902,1.57279311992967,3.26926704809104,8.36053016414109,10.8116794759017,7.34713543114136 -"Tfru15405_t",0.808656033094146,0.793335353140995,0.928501167496478,0.278819819766689,0.699919357074729,0.723118350898561 -"Tfru15406_t",1.90068725727257,1.22051592790922,0.654712361696235,0.78641487626502,1.64510959996197,1.11248977061317 -"Tfru15407_t",0,0,0,0,0,0 -"Tfru15408_t",0.177611790214477,0,0.152950773715505,0,0,0 -"Tfru15409_t",8.1105118785115,10.3482251935286,7.55772969400426,5.44682954825199,7.4914119146395,9.07805278415521 -"Tfru15410_t",18.0171757240254,17.0163415280994,14.709236437494,10.2661502980132,15.293091313567,14.2056438489628 -"Tfru15411_t",0,0,0,0,0,0 -"Tfru15412_t",1.47534596753088,2.3266900285855,1.4091544541555,2.51697347247611,2.57250277584033,1.20541770358331 -"Tfru15413_t",0,0,0,0,0,0 -"Tfru15414_t",0,0,0,0,0,0 -"Tfru15415_t",0,0,0,0,0,0 -"Tfru15416_t",78.6205446850733,68.288405387926,75.6531075156954,33.0502709907844,49.5839699058841,63.2360469516095 -"Tfru15417_t",1.17992102207089,1.51535966330302,1.82896472951378,0.732293627758017,1.02126185840336,2.58981993650468 -"Tfru15418_t",144.598505641178,140.149819182765,144.024651142541,193.219779477718,172.904809531118,131.427593361471 -"Tfru15419_t",22.3663990105802,24.7402145029846,22.5493140677716,29.06032764354,25.733146203561,29.5351586178698 -"Tfru15420_t",1.09737792589699,0.880844042311845,1.07626065118461,1.8287855377295,2.13709048976192,2.34173849120815 -"Tfru15421_t",0,0,0,0,0,0 -"Tfru15422_t",0,0,0,0,0,0 -"Tfru15423_t",0,0,0,0,0,0 -"Tfru15424_t",0,0,0,0.30598184446227,0.256034663092673,0 -"Tfru15425_t",4.65521417676835,4.77943656692545,4.56822175567559,19.9329822181143,23.8006655371818,21.3068313057933 -"Tfru15426_t",17.8011176726526,15.0540743632512,19.4355788301701,10.3808889112594,10.4943764502655,8.33931352238962 -"Tfru15427_t",0,0,0,0,0,0 -"Tfru15428_t",8.06780236218493,8.02444631726122,6.34346570069358,4.89826468337513,7.28656477511339,5.38942069458844 -"Tfru15429_t",0,0.169218331284779,0.0907725419917615,0.109032426383042,0.0912344345273765,0.154241053516632 -"Tfru15430_t",0,0,0.117826898969762,0,0,0 -"Tfru15431_t",3.63612846395049,4.61908088561957,4.7649605925107,4.67690427824678,5.88388277321738,5.4363150392167 -"Tfru15432_t",0,0,0,0,0,0 -"Tfru15433_t",0,0,0,0,0,0 -"Tfru15434_t",0,0,0,0,0,0 -"Tfru15435_t",2.48837101842926,3.01095667847721,2.014933733841,4.72526869617861,4.01822747117148,3.64116623197817 -"Tfru15436_t",31.9954953514936,30.3460955829982,28.8421459006381,23.2272657164442,22.0711004348869,27.1589799232832 -"Tfru15437_t",4.2031133529878,4.87320573624904,3.97700353372552,4.29395151709868,4.947505629666,5.27711137484033 -"Tfru15438_t",31.9997552655146,18.9634620614395,35.1480236022265,61.1848102918237,46.2377645927611,39.8587691214076 -"Tfru15439_t",2.94036318700066,1.34867010033969,1.08518573951151,3.91044797222781,2.90855377273276,3.38057829045078 -"Tfru15440_t",40.6686596643598,47.81648537568,42.5853191717395,30.6120927118844,33.0517474174178,26.9608103329339 -"Tfru15441_t",84.7961590673983,96.5568813195619,100.001256028185,69.9714155258331,81.0527235772722,79.0122220866937 -"Tfru15442_t",13.5500607695883,12.4301391736377,11.5019686676335,29.4334793608545,35.5192050587181,28.6040631895733 -"Tfru15443_t",0,0,0,0,0,0 -"Tfru15444_t",0,0,0.0756754351123786,0,0,0 -"Tfru15445_t",0,0.21752743553866,0.233373277314303,3.08350736161333,2.58016866935971,3.17239018458724 -"Tfru15446_t",0,0,0,0,0,0 -"Tfru15447_t",0,0,0,0,0,0 -"Tfru15448_t",0.591622371629911,0.332418686703445,1.09537527697171,0.214187291123589,0.153620797855604,0.389567280589718 -"Tfru15449_t",0,0,0,0,0,0 -"Tfru15450_t",0,0,0,0.342121432390885,0,0 -"Tfru15451_t",4.29122771714619,4.8446828770508,4.44649749301504,4.11398180909902,5.31463313954491,4.90086855758493 -"Tfru15452_t",32.9430107014224,37.9713766377864,34.2586904649042,41.150198773029,36.1102673276863,43.7010737435847 -"Tfru15453_t",0.472410740982835,1.20078406309532,0.813635043682481,8.06277932418105,11.1081130495651,10.0233555855574 -"Tfru15454_t",0,0,0,0.102113800032062,0.170890350924369,0.650041760796004 -"Tfru15455_t",8.44797084852545,3.76723491714998,6.46665617586002,4.85468401269747,6.49956150331344,6.86760444987461 -"Tfru15456_t",13.5432753000195,11.7411187471791,15.5225592426274,12.8875403981142,11.0779373759226,10.2047152485242 -"Tfru15457_t",12.3290837645212,13.8944292697162,12.6769569804984,14.5894155178183,13.2536828064796,12.5383670617354 -"Tfru15458_t",37.1185683502517,32.7262486157634,36.9804776096754,26.447474208304,25.7189978141176,29.2518792358202 -"Tfru15459_t",0,0,0,0.108623554784106,0,0 -"Tfru15460_t",85.3845923129651,90.5976861296892,84.8109538331422,92.6794648452392,92.0619119450037,83.8525516279155 -"Tfru15461_t",0,0,0.148249417966053,0.712285605141677,0.894022676044906,1.00762393157996 -"Tfru15462_t",0,0,0,1.21029030400118,1.21527316409447,1.3696949264931 -"Tfru15463_t",14.9404941346064,13.6507897808133,16.143413710569,22.2252285015162,21.2513409876734,22.8326070025504 -"Tfru15464_t",1.87732685522788,4.14395840886498,3.63749409892126,2.42734200634873,2.03111296978545,2.40366155745611 -"Tfru15465_t",0.278180055534594,0,0,0,0,0 -"Tfru15466_t",0,0,0,0,0,0 -"Tfru15467_t",1.2991295377028,0.695190773370975,0,0.447932184676725,0,0.633660410581214 -"Tfru15468_t",0.420051883857237,1.01150257525477,0,0,0,2.15127709392322 -"Tfru15469_t",0,0,0,0,0,0 -"Tfru15470_t",0,0.0596756681566235,0.0320113787466522,0.115352447558342,0,0 -"Tfru15471_t",0,0,0,0,0,0 -"Tfru15472_t",0.148690932338845,0.0596756681566235,0.0320113787466522,0.115352447558342,0.321742673974863,0.652726299041179 -"Tfru15473_t",0,0,0,0,0,0 -"Tfru15474_t",0,0,0,0,0,0 -"Tfru15475_t",0,0,0,0,0,0 -"Tfru15476_t",0,0,0,0,0,0 -"Tfru15477_t",0,0,0,0,0,0 -"Tfru15478_t",19.8285361323913,24.5919880762916,19.6431136522048,14.2646726779482,14.9685997177019,13.2528922252083 -"Tfru15479_t",0.0810128994903061,0,0,0.0837983064872562,0.0701194255721495,0.118543991950584 -"Tfru15480_t",0,0,0,0.262798922864772,0,0 -"Tfru15481_t",106.789703679394,93.7844439005447,98.056270411245,86.3640817114244,117.23709053169,102.788492355804 -"Tfru15482_t",8.83040604444337,7.54318860363569,8.0926741101469,5.36309161518439,5.46931519462766,5.0973916538751 -"Tfru15483_t",0,0,0,0,0,0 -"Tfru15484_t",0,0,0,0,0,0 -"Tfru15485_t",0,0,0,0,0,0 -"Tfru15486_t",0.401963525222237,0,1.03845525312106,0.415783941757343,0.347913130709661,0 -"Tfru15487_t",29.3811692024207,29.497650857697,29.7120373598873,30.1125405348024,32.7406721476068,34.183776587932 -"Tfru15488_t",0.275443858267041,1.54765421350456,0.711597206237055,1.70948545234003,0.953624187781234,0.604574358947978 -"Tfru15489_t",7.26823992332866,5.51872020793716,8.45818970780599,8.33091020323929,8.04783000249517,8.24005478576537 -"Tfru15490_t",0.935180446435408,1.50130252356923,1.61066529055511,2.09589048191967,1.75376618949564,1.02631825313061 -"Tfru15491_t",13.6106197004021,6.02757586743997,14.9541424066763,9.22389962412519,11.7804552247556,12.0183077872806 -"Tfru15492_t",11.6036432004762,5.96097281918096,10.1923522495556,12.2426547933467,7.03034406392588,5.43337545426543 -"Tfru15493_t",11.1554762598152,8.95428509241926,12.3343515747756,16.9523974023719,11.6818963003201,7.50679829027072 -"Tfru15494_t",19.0273022246272,13.5038404572187,16.940839439591,18.5139571301892,29.3088431993225,25.2466848423125 -"Tfru15495_t",0.228289067313716,0.183243220154849,0,0.236138162574143,0.197591968256302,0.167024619093418 -"Tfru15496_t",0,0,0,0,0,0 -"Tfru15497_t",0,0.0387103932359269,0.041530261749388,0.0498845257332288,0.12522476059412,0.105852571457597 -"Tfru15498_t",13.1231162646987,11.9741737880627,12.7498458046746,12.182080910367,14.1738601741984,9.76547679484506 -"Tfru15499_t",0,0,0,0,0,0 -"Tfru15500_t",323.421114162725,305.718715570275,318.418476332002,199.711468437145,244.390252540718,216.230221676203 -"Tfru15501_t",44.5855071008467,41.5679391640412,50.02189504034,146.859046068111,140.753227216175,105.412577602238 -"Tfru15502_t",0,0,0,0,0,0 -"Tfru15503_t",0,0,0,0,0,0 -"Tfru15504_t",7.07455804391136,5.46566303821875,4.18843618758828,5.03098569526385,5.89364843422165,8.21690799784207 -"Tfru15505_t",6.6606692580943,6.27769714224613,6.88301952426737,6.84522861861986,7.14120619392187,9.05469935038198 -"Tfru15506_t",10.3243992892935,11.3852127536333,10.3865403858299,11.4778335070495,9.52072540461911,9.53037872499348 -"Tfru15507_t",3.35010704916815,3.93017360528438,3.99454873439819,0.533121741271685,0.446097204406865,0.188543128301772 -"Tfru15508_t",10.2068682058768,10.1465367362005,8.78966642594991,9.09595374640736,11.8924511735569,8.04215736046063 -"Tfru15509_t",0,0,0,0.583213716961609,0,5.36272334055614 -"Tfru15510_t",0,0,0,0,0,0 -"Tfru15511_t",0,0,0,0,0,0 -"Tfru15512_t",0,0,0,0,0,0 -"Tfru15513_t",0.0983728065239431,0,0.0847139531234589,0,0,0.0719731379699973 -"Tfru15514_t",4.82728763654286,6.81209642896323,3.28539395959616,4.02682316159799,4.51513213097996,4.78504636275786 -"Tfru15515_t",1.93038549566745,2.47917297856561,1.46287293316502,1.75714573915465,2.07180990245211,2.3727320888859 -"Tfru15516_t",0,0,0,0,0,0 -"Tfru15517_t",1.75631449696406,1.40975968676623,1.00830266156702,1.51391713984816,1.52015005543524,1.92747574368432 -"Tfru15518_t",11.613756067578,13.1219217125462,13.2624753539097,11.6213329836639,14.36794970377,14.1771400200586 -"Tfru15519_t",0,0,0,0,0.134158384351142,0 -"Tfru15520_t",0.436795719782222,0.409042058161952,0.25076504668088,3.38860309551803,2.14234896605099,0.852201869343192 -"Tfru15521_t",0,0,0,0,0,0 -"Tfru15522_t",0.338751519239707,0.32629115330799,0.187958304679296,0.560637702111514,0.499636198615051,0.214221113997075 -"Tfru15523_t",166.533844219506,179.474571981045,177.823208937653,139.960969704122,129.179683600908,120.210426740084 -"Tfru15524_t",7.76674720464257,3.55221371701125,8.56565635578324,2.4424224510309,2.74632341460151,1.78677499495284 -"Tfru15525_t",0,0,0,0,0,0 -"Tfru15526_t",0.915644433476266,0.0918712602411234,0.689945520125391,0.5919539770251,0.19813036598997,0.586179044665727 -"Tfru15527_t",0,0,0,0,0,0 -"Tfru15528_t",0,0,0,0,0,0 -"Tfru15529_t",0.0374044420175634,0.0300238223584081,0.161054576953326,0,0.0323748193759212,0 -"Tfru15530_t",12.2980969798507,10.320146680356,11.5533082533545,6.93869095198851,8.15611561745404,7.47863845796231 -"Tfru15531_t",58.0672759653424,64.3588167053293,69.1220208517866,7.92445415212544,5.4252816486207,4.96816027612172 -"Tfru15532_t",0,0,0,0,0,0 -"Tfru15533_t",0,0,0,0,0,0 -"Tfru15534_t",76.1954580020104,46.0365907329197,69.6937050943667,21.7504004061197,25.0786810321361,27.40125449887 -"Tfru15535_t",37.1929435026991,33.3894053967594,41.0193185679431,29.3599977202865,30.4974570344794,34.3726936504792 -"Tfru15536_t",1.07820804412553,1.37030651906172,1.47012684853609,5.76227627517823,5.83266130895607,7.82282579608443 -"Tfru15537_t",16.6987839074393,31.0912676820113,16.3074359762658,7.65707025527303,15.496393051445,20.4043846144942 -"Tfru15538_t",19.1720928641262,17.2450362600775,22.3176577927061,3.98618549666443,3.41888488193931,4.79314686719459 -"Tfru15539_t",0.684867201941148,3.66486440309699,1.17954971686034,0.944552650296572,1.97591968256302,3.00644314368152 -"Tfru15540_t",21.823924692024,19.8015285332696,21.1681948256668,14.9584951141241,12.9229562702599,15.2160361092534 -"Tfru15541_t",85.7708624540008,81.3950102468213,77.1364213835506,47.8562786207259,40.5929759564128,47.8118822454975 -"Tfru15542_t",18.1787159820569,14.1667027346606,19.9102705708694,7.48498444730813,4.88832566845842,7.7476966167703 -"Tfru15543_t",0.244216211544905,0,0,0,0,0 -"Tfru15544_t",13.3455721638519,13.7652190543011,12.0671964679596,13.0451798914669,12.8794180166681,13.767392272469 -"Tfru15545_t",0,0,0.0670488563182891,0,0,0 -"Tfru15546_t",0.0399099177061508,0.096104757743921,0.137474044593699,0.371538999736609,0.276347151803588,0.175197320170198 -"Tfru15547_t",0.0481434823905143,0,0.0414588630185868,0.248993821854684,0.25001894894551,1.30327060949913 -"Tfru15548_t",0,0.370107052782572,0,4.19709015192154,3.51197491767951,21.9277106954695 -"Tfru15549_t",22.9169653940606,22.4926816602227,21.88529584748,37.3653549085616,38.5181658806419,33.7773644488416 -"Tfru15550_t",10.875365889614,11.1315082130557,10.6852925408026,16.2321906367213,18.8259996584353,18.9575119360244 -"Tfru15551_t",2.16580347171981,2.0129404482682,2.25773604783037,13.4416122066628,9.96485519151998,4.50354576746865 -"Tfru15552_t",0,0,0,0,0,0 -"Tfru15553_t",0,0,0,0,0,0 -"Tfru15554_t",0,0,0,0,0,0 -"Tfru15555_t",0,0,0,0,0,0 -"Tfru15556_t",0,0,0,0,0,0 -"Tfru15557_t",2.52874043793654,1.18403311484672,2.29860970465091,1.52581581970985,1.51993821735617,0.668098476373671 -"Tfru15558_t",0.137047922955053,0.330017153427331,0.0590095562540244,1.55935935089744,1.00826700930785,0.451211695299673 -"Tfru15559_t",23.2070649573798,32.4620260315541,20.7441676032575,36.1940318040169,46.5215960070925,54.5443756092856 -"Tfru15560_t",19.5512334706623,20.0827380077333,20.5457962867835,14.5670821574048,14.4260636298047,16.1952074709716 -"Tfru15561_t",5.08468991891746,4.39882312484701,5.20577781339302,3.38946398250337,2.5916837584875,3.5548050740205 -"Tfru15562_t",0,0,0,0,0,0 -"Tfru15563_t",0,0,0,0,0,0 -"Tfru15564_t",15.2233984149567,13.4367039653862,14.616650677387,16.9931937419435,16.6453378560007,18.5135722368608 -"Tfru15565_t",19.555784146268,21.0059707149804,17.9905887171098,62.2303605303643,59.8884652674725,58.6035146489952 -"Tfru15566_t",22.5811331194591,20.7884181071468,19.0771505799475,20.4793453605703,20.84154773455,20.9842497241646 -"Tfru15567_t",199.816888721699,172.524681666831,216.768703687209,339.695480415749,243.368785065394,163.412672970685 -"Tfru15568_t",3.44069802476918,3.45222721929955,3.82716244878917,3.63314278800081,4.21889199116527,4.72001312659897 -"Tfru15569_t",0,0,0,0,0,0 -"Tfru15570_t",99.019851368209,89.0738931638408,90.7843785467714,29.653034769175,30.4770134949771,36.7957640112185 -"Tfru15571_t",0,0,0,0,0,0.463092916500106 -"Tfru15572_t",0,0,0,0.382814289988038,0.640650610734089,0.270771188662457 -"Tfru15573_t",33.2726985392227,42.875020640541,42.8146118775406,32.1749892167791,34.9776762502385,33.8570815128606 -"Tfru15574_t",14.9871212243662,12.692067229056,13.6166241182568,7.82231818412546,9.04460256659942,9.75795548798468 -"Tfru15575_t",6.37898212525957,5.72749896591083,4.9298613947144,3.10881724083982,2.70752450248304,4.68205493445028 -"Tfru15576_t",4.65875725732572,2.57473382792123,3.94612996186003,4.10794534456255,4.49503764876881,4.63781815053577 -"Tfru15577_t",7.20088943754151,1.92667157191087,10.335102281046,88.1402558818239,105.954458863673,72.4409633666903 -"Tfru15578_t",2.49356218155942,1.34648660854206,1.99116649451653,20.6343719827335,22.6029003385601,24.0486607523604 -"Tfru15579_t",26.6649814248433,29.0331707560057,23.8270804642557,21.8382830081264,21.6403786115386,28.6209595233357 -"Tfru15580_t",44.1483102421382,48.30440869584,46.7294267422303,40.5232363561929,37.2472957630573,21.5754903880346 -"Tfru15581_t",0,0,0,3.64610533540863,5.0848842180616,5.15790711829472 -"Tfru15582_t",1.02660338213581,0.412017342262635,0.736718085208085,53.8029501496834,83.3765669067487,68.0997811518319 -"Tfru15583_t",13.5280209830405,14.5001778842638,13.3677185001635,15.3500560176368,17.0075647576029,16.4360049373072 -"Tfru15584_t",2.55280150410476,6.89237482217798,3.99700088217867,25.685569860551,29.7283120417437,25.2991544589234 -"Tfru15585_t",1.31582517834797,2.92482672362825,1.04596215856531,13.8200570906043,16.9957660213902,13.9222063221193 -"Tfru15586_t",0,0,0,0,0.0379508582037156,0 -"Tfru15587_t",0,0,0,0,0,0 -"Tfru15588_t",0,0,0,0,0,0 -"Tfru15589_t",0.801625732551979,0.514759580282325,0.966450404145109,0,0.416300635410224,0.234599464986174 -"Tfru15590_t",8.67334021890094,10.3619311430661,10.0745534840604,14.6048477020646,16.5853906608411,15.6429684071934 -"Tfru15591_t",8.57477494731918,7.60257661632448,7.14287255715825,9.04350876388019,9.36208936186496,13.8183623492257 -"Tfru15592_t",0,0,0,0,0,0 -"Tfru15593_t",0,0,0,0,0,0 -"Tfru15594_t",7.40878913260009,5.62830829275619,6.38009463649811,7.42403508288219,13.3404139576129,13.3819598755854 -"Tfru15595_t",8.27741134992099,5.725486275027,8.53133443012193,27.0310291381375,25.7242373767638,16.5196405244921 -"Tfru15596_t",13.2697146847003,14.551835342931,13.0367141120404,9.08619724111764,9.13978243378204,7.45238211465536 -"Tfru15597_t",8.36568969252843,8.22821169211453,6.29093182325512,5.60637702111514,4.38526690839792,1.98274386536702 -"Tfru15598_t",0.824641735179852,1.4893289451604,0.623734089509839,6.39746089526022,6.15614142081474,11.0109186928235 -"Tfru15599_t",0,0,0,0,0,0 -"Tfru15600_t",6.69796618711645,6.92922792306419,6.26020152125736,6.60989112154503,5.25183732515424,6.48750195306324 -"Tfru15601_t",0,0,0,0,0,0 -"Tfru15602_t",0,0,0,0,0,0 -"Tfru15603_t",0,0,0,0,0,0 -"Tfru15604_t",0,0,0,0,0,0 -"Tfru15605_t",0,0,0,0,0,0 -"Tfru15606_t",0,0,0,0,0,0 -"Tfru15607_t",14.739064737801,13.799489430488,11.5279394611136,4.8843552055718,5.77345939880787,6.12134975078523 -"Tfru15608_t",0.247089343445434,0,0.106390758775638,0.894546921751459,1.39011761196786,1.53662649565944 -"Tfru15609_t",8.54800334875491,13.1448388929931,9.99564158493285,35.7088787023222,25.7263190715652,14.8121797153891 -"Tfru15610_t",5.24311533652506,4.25692140709802,4.51512000657586,1.99480846662346,1.408374316065,1.8077958772464 -"Tfru15611_t",5.06507469100203,3.85534592092947,3.00813787806378,0.812982946409108,0.453516700530056,1.34175286523278 -"Tfru15612_t",11.6734236516134,11.2901198604746,11.9477549148951,15.6378329438622,11.594462647568,13.161083425238 -"Tfru15613_t",6.73526284781826,9.26788329510454,6.16259141025385,7.96209879018785,5.67344955669061,9.94352435272825 -"Tfru15614_t",2.19157504621167,1.31935118511492,0.78636647790689,1.51128424047452,1.34362538414285,2.40515451494521 -"Tfru15615_t",3.753714734036,2.58581296330551,2.62943749264765,3.53506467053309,2.61857125254367,3.56616219066013 -"Tfru15616_t",6.59205511162817,5.41436901596227,6.99693968298175,8.56302475670323,9.95171226984293,6.95407611174346 -"Tfru15617_t",0,0,0,0,0,0 -"Tfru15618_t",0,0.237441919073889,0,0,0,0.216426266994288 -"Tfru15619_t",11.9594702055036,11.409402832512,12.1561063002456,12.6748605349015,11.8785743343812,13.6270260991969 -"Tfru15620_t",1.01156383830762,0.690168323473051,1.39377658697043,0.575489031968772,0.656657233458631,1.03613586703105 -"Tfru15621_t",1.28190220686677,1.10245512289348,1.61644379000806,2.60459749891044,2.53606868467162,2.61268374193867 -"Tfru15622_t",4.63505527014883,7.20840915698801,3.742019791419,10.1881403107851,2.0058991536088,2.54338178591908 -"Tfru15623_t",0,0,0,0,0,0 -"Tfru15624_t",6.63124249476663,8.14278079400075,6.8450468322559,6.04158192839982,3.87705808701963,4.30544590524548 -"Tfru15625_t",0,0.984430730170578,0.528070919467971,0,0,0 -"Tfru15626_t",0,0,0,0,0,0 -"Tfru15627_t",0,0,0,0,0,0 -"Tfru15628_t",0,0,0,0,0,0 -"Tfru15629_t",0.470382848664319,0.226540330404204,0.0810142396051892,0.77848908243928,1.13997068360187,1.37659708457733 -"Tfru15630_t",0,0,0,0,0,0 -"Tfru15631_t",0,0,0,0,0,0 -"Tfru15632_t",0,0,0,0,0,0 -"Tfru15633_t",38.8283253367793,30.600077858172,19.4543101451584,37.972603964941,34.2182796247563,42.8705878779076 -"Tfru15634_t",84.5148270707679,69.115449252974,90.0896305996313,107.610069423072,93.335692083422,64.5312152357305 -"Tfru15635_t",26.5911105607016,22.3996512317288,35.4808554831589,26.7497310563989,25.9240662352268,15.2860931394296 -"Tfru15636_t",1.50916844499606,0.403793443215477,0.866415760089029,0,0.43541224142706,0 -"Tfru15637_t",8.02290877973901,7.07326001743713,7.70177485054482,8.1286981114368,7.1717764259164,7.6259976379498 -"Tfru15638_t",23.0351033083001,21.344879612231,24.2854066705196,21.6371113158662,23.5293790586496,20.5709676031829 -"Tfru15639_t",0,0.414550235760151,0.444748253898159,0,0.447011338022453,6.54955555526976 -"Tfru15640_t",0.267548970609705,0,0,0.276747910277977,0.926291010424447,5.48096074884897 -"Tfru15641_t",1.76088823263324,1.67041837885061,1.95752508905785,0.728572623551929,0.748198855409533,0.609028794011364 -"Tfru15642_t",11.9119190943098,9.5614671291542,9.71808124923509,14.9154731940486,13.0233751016254,14.2195287656257 -"Tfru15643_t",0,0.42769664915635,0,0.918592429463897,6.61034948348355,12.8647799636604 -"Tfru15644_t",14.6900826421581,11.4523941481359,10.3870664824751,22.1373590979004,6.17458342814776,6.59290027187962 -"Tfru15645_t",43.9014663923891,45.9666596685733,47.9598434470722,39.0033047049981,31.5126230860382,31.3662057224181 -"Tfru15646_t",47.321682255579,45.6539944452755,46.6902179000559,50.8036803926569,62.166220511618,57.2102708609675 -"Tfru15647_t",0,0,0,0,0,0 -"Tfru15648_t",3.38580863562509,3.87275545185705,3.71751286079509,9.80621713718476,10.5132863069811,10.9924918077401 -"Tfru15649_t",27.1539416293994,24.7487850342075,30.6379769973185,26.8676290519069,29.1363109573668,33.6035765636437 -"Tfru15650_t",165.821529020082,161.699190040728,168.175381620632,87.3538115960139,86.4190715196777,92.3584930375414 -"Tfru15651_t",0.278180055534594,0,0,0,0,0 -"Tfru15652_t",0,0,0,0,0,0 -"Tfru15653_t",0.866086358468531,0,1.86458030843902,0,0,0 -"Tfru15654_t",6.68413294125401,5.57562521981308,7.67474053944697,7.45621904914299,6.35253554106999,5.3698024185291 -"Tfru15655_t",0,0,0,0,0,0 -"Tfru15656_t",21.5876246717717,18.5958690715361,23.2755715716953,17.488694892817,22.0774624810495,18.876108205733 -"Tfru15657_t",0.22107993887223,0.177456592149959,1.14230077843317,0.914724671866154,1.33946555323219,1.94100188925403 -"Tfru15658_t",2.30582598078028,2.58419439215788,2.959767768735,1.21505374590196,2.25936336566501,0.891259282826813 -"Tfru15659_t",0,0,0,0,0,0 -"Tfru15660_t",5.6580927254562,10.5642533481952,8.15610560687029,11.4507993330243,12.1367177925159,12.9589584407004 -"Tfru15661_t",8.59948738605367,12.637145034679,10.7094445684075,16.6955259006752,17.0619886668182,14.1321239915766 -"Tfru15662_t",9.16476837506699,6.57615999339189,11.1209117106965,15.5125208815649,19.8310484504506,19.3030766396889 -"Tfru15663_t",8.0772211534263,6.92149878260084,9.11762812755447,7.4893330106668,10.2032419052124,12.6443929915675 -"Tfru15664_t",2.83818840444079,2.96160663925946,4.1549904440756,6.75227502712009,7.12399150415964,4.5683490411497 -"Tfru15665_t",0,0,0.117253996705728,0.422522741461676,0.942805112717265,0.597715330564451 -"Tfru15666_t",4.24955213240785,6.82206665541478,0.844502521020629,60.1867478648119,25.1810589273556,7.89240067809519 -"Tfru15667_t",0.513301691067907,0.137339114087545,0,0,0.148093369283746,0 -"Tfru15668_t",3.8877142442106,5.27272619015784,3.46335874312184,6.93341839047484,7.65816019948254,7.32349648995139 -"Tfru15669_t",18.4312001626758,17.9527162083016,19.3793783117366,18.7792899971864,16.4308193817073,13.4849391730837 -"Tfru15670_t",2.75640323215876,0.769569244131065,1.96086819312588,2.35531816364965,2.2820322039986,2.01668527247744 -"Tfru15671_t",80.2786048888588,67.2873869129391,77.048579410604,35.8704869969615,34.8994940769397,31.4317532373242 -"Tfru15672_t",8.4541527731014,6.75045624511437,8.91933484530007,5.4483468996032,5.05702183878721,3.65940556395189 -"Tfru15673_t",1.66008528949567,2.14010524904203,1.94943546020031,10.4070471649443,10.9723884839619,7.50830670932997 -"Tfru15674_t",16.8573453390075,17.186077341841,18.9142456168482,33.8733980050435,34.2703506082501,26.2717740669416 -"Tfru15675_t",0,0,0,0,0,0.114035361458957 -"Tfru15676_t",0.302195599897293,0,0,0.312585769162894,0,0.442194675009912 -"Tfru15677_t",0,0,0,0.797237099332886,0.416937180724306,0.140974907858664 -"Tfru15678_t",1.10134211813644,1.76805204554233,0.948423124900811,1.73159730751799,2.59283765791594,1.77272065571619 -"Tfru15679_t",104.566107258078,139.314751854238,102.053637630657,68.7795104335104,84.0076967337176,98.0825422761346 -"Tfru15680_t",0,0,0,0,0,0 -"Tfru15681_t",0,0,0.314546591162756,0,0,0 -"Tfru15682_t",0,0,0,0,0,0 -"Tfru15683_t",0,0,0,0,0,0 -"Tfru15684_t",8.65342936701605,11.8659815695123,10.5568855918144,9.3239102818975,10.6106038919436,10.0243445210401 -"Tfru15685_t",7.7619522640986,9.39481635204997,6.9135671469281,11.8870606790337,9.04249226003438,6.68207065050328 -"Tfru15686_t",0,0,0,0.0903314384899008,0,0 -"Tfru15687_t",15.2001036464526,13.0979490897735,14.7996464594063,9.17158529086197,7.64220891505171,8.83134340742633 -"Tfru15688_t",2.94428890554138,2.67843361048771,4.22580116632207,3809.5397353536,2704.8530733457,726.80997145163 -"Tfru15689_t",2.87403920533899,3.01676206654931,2.47498501993853,18.5231746052896,19.7092788547023,15.5280151140323 -"Tfru15690_t",9.07631555439147,8.68417653200579,8.253789548575,2.25321116233236,3.70796613204911,4.40933445599771 -"Tfru15691_t",5.26952822737405,5.30739132574749,4.65347993238388,3.68009486443954,4.06709476810414,5.00953743690813 -"Tfru15692_t",0,0,0,0,0,0 -"Tfru15693_t",0.420051883857237,0.337167525084923,0.723457159674339,0.868988438272847,1.45427688636638,0.307325299131889 -"Tfru15694_t",16.9503912779717,15.9017218640304,15.9197067292777,19.4508761404073,19.0724837556247,18.2147403016378 -"Tfru15695_t",83.5811266711554,120.986536738502,89.9304775857956,62.858944695503,54.9865275283055,51.1461081766939 -"Tfru15696_t",8.94512244438024,13.5459181318421,9.68844933921727,14.0220966439197,14.2075348942489,11.942168594148 -"Tfru15697_t",4.17773121376999,3.90211963931918,3.53225014669207,3.45709686112163,2.76128522727794,4.11249044046289 -"Tfru15698_t",0,0,0.702385591916834,0.421839047705265,0,0.298374076827076 -"Tfru15699_t",10.9949064530374,9.07400159675553,7.06787639866175,6.16701472322665,5.62945891496664,8.04427511091764 -"Tfru15700_t",0.0648728778157895,0.364505432524241,0.446923341883762,0.738136897374619,0.280748433661464,1.85107129979053 -"Tfru15701_t",0.424723846165053,0.204550571335646,0.219451110113551,0.263596088454857,0.294090371358217,0.372892172859723 -"Tfru15702_t",12.9080321391323,12.7921069603035,14.2207458854441,14.6198913220153,15.5726215943524,17.568982765823 -"Tfru15703_t",34.9988924175852,41.0669522407548,36.706049839179,18.2696560722996,16.1335604926604,16.4987670286475 -"Tfru15704_t",1.87732685522788,1.63246846409832,2.4249960659475,0.485468401269747,1.48948284450933,1.25906081581034 -"Tfru15705_t",0,0,0,0,0,0.960391559697948 -"Tfru15706_t",74.3105485336482,61.9570070557226,70.5052183009434,22.7025355204354,34.2936134651955,35.5438848898133 -"Tfru15707_t",0,0,0,0,0,0 -"Tfru15708_t",48.5232346688365,54.063068465123,47.3989171718547,36.7072700932507,31.3421741520676,42.3896962655349 -"Tfru15709_t",0.6109845583378,0.490425491032615,0.263075330790669,0.947987387206742,0,0.670527925378666 -"Tfru15710_t",10.6621484742756,11.4799271123007,10.7014669571084,8.44268854689592,9.19663063807186,8.06981091812399 -"Tfru15711_t",0,0,0,0,0,0 -"Tfru15712_t",17.1155469094068,18.418405101654,16.9526528461002,22.6974592086191,19.209478275138,9.31149786921991 -"Tfru15713_t",46.0631308668511,41.9038490706066,45.1452379013491,86.6719538956207,82.5862200482214,61.4650598263777 -"Tfru15714_t",66.5226437666737,71.1303954404219,57.703611045748,40.3686067969143,46.5176778161711,57.4619767873968 -"Tfru15715_t",0,0,0,0.0880962290078726,0,0 -"Tfru15716_t",2.98660743109503,3.63460405481454,3.1526802829845,4.78342259599732,4.16937180724306,5.92094613006391 -"Tfru15717_t",3.14057467002915,1.26043928087466,0,1.62427737064705,2.71827441326474,4.02107847210931 -"Tfru15718_t",50.1827401754474,38.8129968416985,51.5255461968786,174.953536846952,196.072397617716,154.888977845431 -"Tfru15719_t",42.5347373242993,39.0559934460591,48.6619821920031,53.0439872243815,40.866422467636,28.1204523402501 -"Tfru15720_t",3.06060108684084,2.93298144497665,2.71632613855421,5.10409565974386,5.40623377831368,7.17473189051398 -"Tfru15721_t",2.0758377981317,2.05829012406494,3.41749385020582,34.6079697800523,35.5114123415047,28.454391794624 -"Tfru15722_t",1.44653628877989,2.23289751711869,1.62897638602169,0.920782451150036,1.63726536875685,1.95385620640141 -"Tfru15723_t",0,0,0,0,0.104174562060629,0.264176474898472 -"Tfru15724_t",0,0,0,0,0,0 -"Tfru15725_t",0,0.0865641912926631,0.464349909932182,1.22706968177167,1.30679566168994,1.10463522152669 -"Tfru15726_t",0,0,0,0,0,0 -"Tfru15727_t",0,0,0,0,0,0.871283064549169 -"Tfru15728_t",0,0.105695148929443,0,0,0.113971542818682,0 -"Tfru15729_t",0.114925276021132,0.922482968768599,0.692777033887876,68.9484670585843,191.781520992776,296.898941514281 -"Tfru15730_t",0.427171407312445,0.457176305199895,0.980958860575375,2.06200646369828,9.48977290256028,28.4406124281375 -"Tfru15731_t",0,0,0,0.107415134520747,0.449405712721379,0.455859528996621 -"Tfru15732_t",1.77893862935834,0.999543748266579,1.37874313119514,4.73826411551631,5.04262234287972,4.7506081178672 -"Tfru15733_t",0,0.0687746099102341,0,0,0.0370799818043442,0.0313437327008555 -"Tfru15734_t",0,0,0,0,0,0 -"Tfru15735_t",3.21862173496615,2.77554421374593,2.97772944313279,2.63193495412692,2.31524795525582,2.99131018569998 -"Tfru15736_t",15.981628134548,14.8175351817586,17.2216658559303,15.4702926447353,18.0490112041402,15.5694810750438 -"Tfru15737_t",0.110831631624601,0,0,0.687853645070855,1.7267139811738,1.05415010256321 -"Tfru15738_t",1.72387914031698,1.8449659375372,2.67213998785324,5.23057336306501,6.86355028449249,12.9488634928347 -"Tfru15739_t",11.7871702102796,14.1059882943692,16.4254304109735,25.0499218175591,28.0096696226178,19.7566263727643 -"Tfru15740_t",60.7839784875767,34.1134201850628,70.2179007919212,30.6701801743358,39.7787501270805,31.0940890886382 -"Tfru15741_t",13.1917120550207,12.2606372758154,14.1253515680217,8.16920949202779,9.91552422522532,12.6993925261111 -"Tfru15742_t",56.9442721212322,72.2300304784438,69.3186985629388,51.2666819232098,28.9029925114657,20.3169026204345 -"Tfru15743_t",0.0711349506955525,0,0,0,0,0.0520449278800827 -"Tfru15744_t",0.330099712265019,1.72227026565972,2.55839467075405,0.170724644061463,2.42855668646645,0.845295518240951 -"Tfru15745_t",4.52670809861999,3.6623122425648,4.93411912234974,3.40035359306711,3.65907749868036,2.20983337080699 -"Tfru15746_t",3.38994945532518,2.57909293635508,2.1373398629591,2.06623315768789,1.53936806477194,2.18029484518685 -"Tfru15747_t",1.63880611771817,2.14624091943175,1.2627075682201,1.60593345882046,0.522584096743566,1.26211621820077 -"Tfru15748_t",0,0,0,0,0,0 -"Tfru15749_t",0,0,0,0,0.0741599636086885,0.125374930803422 -"Tfru15750_t",3.24201118413304,3.73373433818874,3.03463573688901,16.7673943626472,16.8364270401477,10.7254466811129 -"Tfru15751_t",33.8608216599371,35.420419203986,29.9244324565649,29.5108882092659,35.3743026413444,27.9517957142282 -"Tfru15752_t",0.260901791215675,0.942393703653511,0.674028409634477,0.13493609289951,0.112909696146458,0.286327918445859 -"Tfru15753_t",4.03120809843798,5.17723646963413,4.44349886940093,5.33735701050501,6.69916415984513,6.25268362917086 -"Tfru15754_t",0,0.129430911740853,0.138859339668779,0.166792406578281,0.279131839993547,0 -"Tfru15755_t",4.67314358779227,5.88231586115289,5.85350925653068,4.83381685006387,4.68825039220515,3.88527558953083 -"Tfru15756_t",0.190715951808053,0.153084006849,0.164235450550361,0.295909797368733,0.412677890569348,0.209302133347484 -"Tfru15757_t",22.8107645538367,14.9604133646953,18.6853173690723,16.40143741111,15.4095564118292,14.8574482361774 -"Tfru15758_t",13.4316491163883,11.7857963088275,13.1472353744195,14.2386387601807,13.7195932676074,11.2309543277592 -"Tfru15759_t",163.706383266472,175.26939535085,189.584993198539,190.780771255622,223.846613464954,269.709734701766 -"Tfru15760_t",98.2561934347515,66.8991666254078,92.8685101959136,111.274589243179,58.5398302911348,48.1687354740789 -"Tfru15761_t",4.59367084809392,2.92322583324859,4.73989173579739,13.0134229179776,11.5339201332506,7.20624839343739 -"Tfru15762_t",44.2319694567741,45.1723238427029,40.0952160783369,48.4748972193166,47.1325882448863,45.3952791247826 -"Tfru15763_t",0.0770030951159005,0.0618088955242755,0.132622760710236,0.079650635955348,0.266595212899428,1.07042725637138 -"Tfru15764_t",0,0,0,0,0,0 -"Tfru15765_t",22.0778123256022,26.9273723105365,34.0740914795423,362.424529545877,428.589792278966,308.374190937799 -"Tfru15766_t",0,0,0.0469472524123516,0.338347218016683,0.0471861416731467,0.0398864762014132 -"Tfru15767_t",0.651702499637462,1.28399480638828,1.68364501193605,0.919240237947299,1.28197891957544,1.56046696315204 -"Tfru15768_t",2.27347669097989,2.37371579021489,3.91561864772194,1.23181350786099,1.874068152534,1.90098123174364 -"Tfru15769_t",0,0,0,0,0,0 -"Tfru15770_t",0.0656331068526933,0,0,0,0.0568076908736868,0 -"Tfru15771_t",7.42993246853763,8.31801962583441,7.29630960106005,4.04494230383016,4.96417245928012,6.72348598566273 -"Tfru15772_t",0,0,0,0,0,0 -"Tfru15773_t",8.05388735990736,7.13346168774713,7.17478174883642,0,0,0 -"Tfru15774_t",14.0622905754975,16.2750414357601,15.3640772231877,18.5299005219945,16.7946335925529,16.5626004635957 -"Tfru15775_t",7.70939482695506,7.77942900038627,7.96675424916682,8.02002963482019,6.52022411034743,8.25120887024263 -"Tfru15776_t",5.11367508082487,4.10464810979435,7.54911814804361,3.02256846498859,3.79376577048831,2.13791511310665 -"Tfru15777_t",9.6410671951777,8.2858789008505,7.40788822695903,8.36082384582452,7.50177605602441,8.81125857634704 -"Tfru15778_t",14.8483456619303,8.46839365329574,18.170551917402,14.5505040827081,16.5719924260355,17.4389239507397 -"Tfru15779_t",123.167755775088,131.72392293572,102.081031428625,93.894937186261,76.1030489263763,70.5806407328321 -"Tfru15780_t",316.413922268841,344.092660388336,263.936488805452,295.054482571461,238.396865711151,197.887509684923 -"Tfru15781_t",11.6003965852802,11.1108054898451,10.7019180874106,22.8278309950432,18.7624323681466,16.5605342537391 -"Tfru15782_t",0,0,0,0,0,0 -"Tfru15783_t",1.89497090461912,3.04211300828502,1.63185825490452,2.28681167966539,1.09344126794465,4.62143306965246 -"Tfru15784_t",14.1256384382813,21.4832403327265,24.3286476168237,29.2226197710873,24.4524429902841,26.6529902915151 -"Tfru15785_t",5.07755024442815,6.29873398510296,2.782527537209,4.77466174875191,7.59100572553881,6.07896196085055 -"Tfru15786_t",0.342899497026316,0.825716387963077,2.79232421221727,1.06406747543614,3.26470321429188,1.75614456646793 -"Tfru15787_t",0.180279778479501,0.0723535461555629,0.39797249598425,0.745912822551799,1.32632548649294,0.725445985075273 -"Tfru15788_t",83.6674772744211,103.09658901139,100.946529626863,66.4788822748673,52.4472451438838,40.5346837688823 -"Tfru15789_t",0,0,0,0,0,0 -"Tfru15790_t",31.883058701599,29.7714330128595,41.2615819111517,30.5207871902832,25.0209034202309,18.4569403437071 -"Tfru15791_t",4.30621688949637,4.52489502443885,4.18027436158518,4.45427438070891,4.26931238774846,4.86908675232256 -"Tfru15792_t",0,0,0,0,0,0 -"Tfru15793_t",0,0.114294076299974,0,0,0,0.104178067502335 -"Tfru15794_t",0,0,0,0,0,0 -"Tfru15795_t",836.096280596588,1131.49378815645,749.654831316176,6834.11537494797,5189.18996703694,2092.70848305928 -"Tfru15796_t",0,0,0,1.51391713984816,0,0 -"Tfru15797_t",320.845495142622,415.468585188585,373.011250068897,2907.84229457506,1813.62752985596,573.14027019971 -"Tfru15798_t",4.67029563477635,4.76312527261892,4.25841362790651,5.11503985902918,5.51655064808699,5.82892980694883 -"Tfru15799_t",0.205404344184468,1.15411866777235,0.707537564473681,0.849866443298627,1.15559899283392,1.57795385862339 -"Tfru15800_t",0,0,0,0.512173932184389,1.57141903241947,1.32832152866435 -"Tfru15801_t",0.29843828337992,0.119775319745976,0.385501150803378,2.1608948731474,2.32477655014164,3.27522521277324 -"Tfru15802_t",40.7392785987567,43.4160922712093,34.4880947351603,38.330722893679,45.6204667093015,55.9079448283764 -"Tfru15803_t",3.74593412450485,5.01131481779727,3.46103518097803,4.60123929229468,3.34355345448843,5.73826150724659 -"Tfru15804_t",3.18934993782889,3.52004059838444,3.15225078201502,3.44896187752812,4.54853642198286,3.42061808352145 -"Tfru15805_t",20.3545141434821,23.3512594515958,22.1584592905969,30.2904541340821,30.3320607727845,21.635701058885 -"Tfru15806_t",34.9134033335885,32.9504626787538,33.0605828649881,17.3515548551234,20.8344050684794,20.554873902977 -"Tfru15807_t",0,0,0,0,0,0 -"Tfru15808_t",43.8524528845223,51.8967223123065,42.9509460953886,62.1418118382494,69.7941679690175,58.8207694896789 -"Tfru15809_t",4.0980671595828,0.2530337899324,2.85039406250678,3.7498563002393,0.409271168771027,0 -"Tfru15810_t",12.7695772661346,5.93414844004224,13.3116117347498,13.9038150089625,2.3268430176167,0 -"Tfru15811_t",0,0,0,1.26859626024669,0,0 -"Tfru15812_t",0,0,0,0,0,0 -"Tfru15813_t",1.51605533688362,0.839247106620841,1.35057341569572,4.43416626872268,4.47957099409682,6.31097378428894 -"Tfru15814_t",0,0,0,0,0,0 -"Tfru15815_t",5.8521160289708,6.57633253261614,5.37553307497961,9.41628338685747,13.5634957281075,12.0836882321207 -"Tfru15816_t",11.2415742661667,11.756031056148,10.8411689187163,7.81319279662796,7.98041347520597,9.7814806055485 -"Tfru15817_t",0,0,0.203790749204039,24.1113693436269,20.1755314517026,7.79134561179436 -"Tfru15818_t",1.89173826916258,2.27769259525127,1.99931866030779,23.3924216239262,35.2831264825558,32.3996988849381 -"Tfru15819_t",35.0800086788882,23.6017267559446,41.2566109976447,452.343711382028,453.177023823667,398.193914604939 -"Tfru15820_t",0,0,0,0,0,0 -"Tfru15821_t",0.61321442898594,3.93772292068231,2.11228367787189,6.34298130123344,5.83833786494855,6.28110100412744 -"Tfru15822_t",2.52662787282549,2.78860359092793,3.80766926144389,1.30674953123736,1.77684206041005,1.38642992089574 -"Tfru15823_t",0.355976172760371,0.428602786124902,0.383187054912256,0.0920538599865303,0.308109509823386,0.911558090645432 -"Tfru15824_t",3.82610113050255,4.05718052237238,3.685198907979,0.727808748267355,0.923427199286922,2.25750165436843 -"Tfru15825_t",0,0,0,0,0,0 -"Tfru15826_t",0.360044471877632,0.433501103680615,0.361728579837169,19.0556750392688,22.2296609773147,16.2004336256667 -"Tfru15827_t",10.2510278615303,7.71403298573704,8.55182915153651,8.36680955820376,6.23855670986531,7.91018405773212 -"Tfru15828_t",31.4485241692765,34.6055948417566,30.3877436137376,36.3478468029767,19.6800211336048,9.28997389291473 -"Tfru15829_t",0.0501255231333219,0.080469576392583,0.172662806604854,0.207395808657004,0.130156045915846,0.146694653523574 -"Tfru15830_t",0,0,0,0,0,0 -"Tfru15831_t",0,0,0,0,0,0 -"Tfru15832_t",2.28710797238748,2.4586839456849,2.56744641012284,0.464699699611148,0.42419354974226,0.627499395407842 -"Tfru15833_t",1.32059842566967,1.38617845863209,0.699837639346398,0.210154398614957,0,0.297291704117909 -"Tfru15834_t",0,0,0,0,0,0 -"Tfru15835_t",0,0,0,0,0,0 -"Tfru15836_t",0,0,0,0,0.363569221591595,0 -"Tfru15837_t",0,0,0,0,0.0704402699221023,0.0589274354406373 -"Tfru15838_t",1178.45370517279,1093.23013040293,1170.59486248386,379.318996411935,540.679880667226,641.130638758163 -"Tfru15839_t",0.58440650462681,1.12615756544632,0.750993591357445,1.80909630310312,2.61669197546892,3.0317370140992 -"Tfru15840_t",1.09362620649222,1.11724150323998,1.28424347871184,10.5924034487696,8.51913678995691,19.8579424054451 -"Tfru15841_t",0.407817362968192,0,0.702385591916834,0,0,0 -"Tfru15842_t",0.0301869841075988,0.024230508450228,0.0259955860465088,0.0936746430046187,0.0522557271421625,0.0662577001362318 -"Tfru15843_t",0,0,0,0,0,0 -"Tfru15844_t",1.15214231000842,1.92667157191385,1.65361636496992,0.0993129643740396,0.0831015363637932,0 -"Tfru15845_t",11.6656896242217,13.0674253245348,13.4195680395551,28.6360956860897,30.9693160775431,28.5987687689571 -"Tfru15846_t",129.575326884775,109.232481492404,148.545198887128,185.790990555672,175.358326733767,130.073758567201 -"Tfru15847_t",20.8550349830759,21.7934981085337,18.7217836402844,16.7895892640538,12.7717525149272,13.6748962142995 -"Tfru15848_t",32.6841523462404,35.7572476170754,32.1073206310802,24.2916076404801,26.193747953285,21.2559284702171 -"Tfru15849_t",28.7413470423267,22.8079630359823,21.6880893656152,8.33328005600742,11.0876833884953,14.8153362346085 -"Tfru15850_t",0,0,0,0,0,0 -"Tfru15851_t",1.93713247409891,3.6417366180289,1.53646848231807,31.6379285778949,46.5050921793133,61.9126209416183 -"Tfru15852_t",0,0,0,0,0,0 -"Tfru15853_t",0,0,0,0,0,0.527597080054744 -"Tfru15854_t",0,0,0,0,0,0 -"Tfru15855_t",16.2077897308259,21.6827990408311,35.8239236623306,27.382915418244,24.0820770571925,20.9495059215307 -"Tfru15856_t",0,0.145330829777984,0,0,0,0 -"Tfru15857_t",0,0,0,0,0,0 -"Tfru15858_t",4532.6869046633,3304.36552627773,6106.47512745065,5152.94306713828,4467.54441304501,2478.8916116058 -"Tfru15859_t",0.590182900404022,0.335134561520006,0.288148026464512,0.173327752428381,0.286788518765055,0.30608004117001 -"Tfru15860_t",3.52689469993293,3.37753785994335,4.35850314352745,0.508924414801081,0.429855999335894,0.63367738255536 -"Tfru15861_t",12.5370738414733,11.2540117794356,13.4177725336656,16.9673993618353,15.6394435239972,14.42831574887 -"Tfru15862_t",0.793479206654682,0.56116647725646,0.551874393648941,0.482101768806017,0.469363436522718,0.194425607239413 -"Tfru15863_t",0,0,0,0,0,0 -"Tfru15864_t",6.88609645667602,5.33225401291488,10.0460782056996,19.1060138790944,13.7434074121413,12.9212951226136 -"Tfru15865_t",1.56188306110297,2.43140525131663,1.50805154410989,5.09153789185217,3.64593360243966,7.58357639547984 -"Tfru15866_t",59.438171707862,50.6417626609766,54.3307748372033,43.6211587591508,58.1998161045834,56.7276342666371 -"Tfru15867_t",2.34447563083109,1.88186525628794,0.672983404348223,1.61672267585646,1.3528157082478,2.85883999192455 -"Tfru15868_t",0,0,0,0,0,0 -"Tfru15869_t",4.91520025495355,5.07905350497799,4.67060439332458,4.20761046103866,5.57456506542594,9.54837176858994 -"Tfru15870_t",6.3988247663756,6.95874007546278,6.22137606599554,4.27021345588622,5.00242663614971,4.6816138934096 -"Tfru15871_t",9.24884881887495,5.87723208863627,5.30977731871075,3.98618549666443,6.00389540243002,7.04874539293323 -"Tfru15872_t",43.8804200100864,41.5438557693923,29.7134190580532,32.5870664352317,38.9538451705281,49.3915659319107 -"Tfru15873_t",4.29624212809304,4.23501287564052,4.89401308446484,11.7258084618909,12.4342891863194,11.3930390814011 -"Tfru15874_t",0,0,0,0,0,0 -"Tfru15875_t",0,0,0,0,0.067390031805671,0 -"Tfru15876_t",0.200981762611118,0.403310436704453,0.346151751040354,8.52357080602552,10.8287961933382,12.2783074055085 -"Tfru15877_t",17.2521309441365,10.95794456526,13.4356329653806,5.43117773920529,8.18030748581089,9.98807222178638 -"Tfru15878_t",0.0473297897303929,0,0.122274449522423,0.0489570951139632,0.0819310921896553,0 -"Tfru15879_t",43.9713886931406,39.5992497546548,47.8713141827063,96.5131839954097,84.0076967337176,72.7118580073745 -"Tfru15880_t",11.5755425196566,13.0925176755315,10.5724428344893,3.08409257842138,4.25049611881615,4.61950345250438 -"Tfru15881_t",57.1441141491064,55.880810629557,65.092782513846,54.1463608111634,66.1622162134959,60.2950396520177 -"Tfru15882_t",0,0,0,0,0,0 -"Tfru15883_t",0,0,0,0,0,0 -"Tfru15884_t",0,0,0,0,0,0.543938577377859 -"Tfru15885_t",24.2147556576525,16.2633747393904,25.5337821061532,17.3797687654569,23.5250672794562,13.3776894916234 -"Tfru15886_t",0.205404344184468,0,0,0.106233305412328,0,0.225421979803341 -"Tfru15887_t",0,0,0,0.142925729979087,0.119595138681446,0 -"Tfru15888_t",0.557590996270669,0.745945851957794,0.640227574933043,1.34577855484733,1.28697069589945,1.08787716506863 -"Tfru15889_t",0,0,0,0,0,0 -"Tfru15890_t",15.0832826771284,9.99536295658853,15.7076293540984,14.6947940501254,13.5105055205227,13.8585103575131 -"Tfru15891_t",5.42002430783532,3.2629115330799,4.95918214292894,3.50398563819696,2.63880886639061,3.96548773073405 -"Tfru15892_t",0,0,0,0,0,0 -"Tfru15893_t",0,0,0,0.849866443298627,0.533353381307964,0.450843959606682 -"Tfru15894_t",0,0,0,0,0,0 -"Tfru15895_t",384.693519734834,360.268725824836,420.266059641162,808.598703410818,759.165748184734,564.215157655836 -"Tfru15896_t",41.8204486896897,42.0578952401149,40.1699687339792,32.1750254632634,32.5793200216768,42.4240696052871 -"Tfru15897_t",0,0,0,0.132065112199521,0,0 -"Tfru15898_t",30.4202677615185,34.0330447459078,34.8833940030591,28.2054408670173,26.056931078422,23.5250885639419 -"Tfru15899_t",24.8378505237323,20.5232406573431,20.1309818344164,10.9568107434402,13.2781802668235,14.6981664802208 -"Tfru15900_t",9.99480366734262,13.6601633957236,11.8637669271355,30.4565079651898,40.6823437665193,33.7959010620919 -"Tfru15901_t",0,0,0,0,0,0.41251718004278 -"Tfru15902_t",0,0,0,0.35253080660156,0.958701801357148,0.249351155482262 -"Tfru15903_t",0,0,0,0,0,0 -"Tfru15904_t",0.0574233607460338,0,0,0.0593977059653347,0.0994037516313316,0.0420130279059314 -"Tfru15905_t",1.60115071869346,2.44993675165936,2.49913729964929,8.69506001368899,10.740341507411,8.31004680201771 -"Tfru15906_t",289.338670053237,295.506651735667,299.908733511034,384.959047573639,250.985136903297,112.585837054397 -"Tfru15907_t",0,0,0,0,0,0 -"Tfru15908_t",1.3697344038823,1.28270254108395,1.37614133633706,0.944552650296572,0.395183936512604,1.16917233365392 -"Tfru15909_t",1.15823129740047,1.67344176053179,1.66235560586935,0.878572869577326,1.40348412746756,1.129872423279 -"Tfru15910_t",0.423226079453136,0.849288476284441,0.637808579057982,0,0.18315829803103,0.309647656556059 -"Tfru15911_t",0,0.564297113112842,0,0,0.304242026436482,0 -"Tfru15912_t",0.878157248482029,0.939839791177486,0.882264828871145,0.756958569924082,0.696735442074486,0.42832794304096 -"Tfru15913_t",0.280502092726035,0.112576803033363,0.966219912753708,0.290146390074406,0.728352363789506,0.307838363070339 -"Tfru15914_t",4.29598517581266,4.21459406356154,5.75477286104588,3.94994744669476,2.89202789902406,8.03236577276527 -"Tfru15915_t",32.7291132759171,33.920931469989,40.8021660098931,48.0276613643733,37.9568028678185,30.6208654928341 -"Tfru15916_t",0,0.0411933445430572,0,0,0,0 -"Tfru15917_t",0.292210006161556,0.117275660899104,0,0.151128424047452,0,0.213791512439575 -"Tfru15918_t",0,0,0,0.0878653628182858,0,0.0621486954766205 -"Tfru15919_t",0,0,0,0,0,0 -"Tfru15920_t",0,0,0.0709967772006221,0,0,0.0603189988482608 -"Tfru15921_t",0,0,0,0,0,0 -"Tfru15922_t",0,0,0,0,0,0 -"Tfru15923_t",32.8404200106567,40.7228309518154,24.0526016722897,30.2453118775484,34.4682508781642,48.2141508248469 -"Tfru15924_t",5.68856391020536,6.57072963831889,7.16885707356901,22.3167138152647,27.6204528376769,34.4630682263505 -"Tfru15925_t",0.575413539530362,0.461873322034061,0.495518602516584,2.97598780230375,0.996080059154882,1.68397424181827 -"Tfru15926_t",0,0,0,0,0,0.120048944973394 -"Tfru15927_t",0.308294960629165,0,0,0.159447419866577,0.133419897831778,0.451119705147726 -"Tfru15928_t",0.350408245136381,0.773481287994609,0.226316108344423,1.08736822307343,1.06151597544991,1.66641455212286 -"Tfru15929_t",0,0,0,0,0,0.0932701970051255 -"Tfru15930_t",5.83912262529609,4.97988525320911,5.53121025641545,7.85185035450704,7.13871799128588,7.42280044818984 -"Tfru15931_t",1.54493949927059,2.25972513747149,1.24173276282477,3.48021524114176,3.17955919168784,3.44123955709593 -"Tfru15932_t",3.51507852600199,3.10363412212063,2.72431566404563,1.45437395526836,1.82545215861889,2.05740786029716 -"Tfru15933_t",0.507615569615997,0.977887686046906,0.48084765899805,0.0525068542763049,0.087871715188301,0.4085290985439 -"Tfru15934_t",0,0.332184753778249,0,0.428073122301895,0,3.33061900537022 -"Tfru15935_t",0,0.0377990498974129,0,0.194840457011849,0,1.65376842582182 -"Tfru15936_t",0,0,0,0,0,0 -"Tfru15937_t",0,0.0459043601204796,0,0.0591551013119705,0,0.585780011960033 -"Tfru15938_t",0,0,0,0,0,0.199130863368394 -"Tfru15939_t",0,0,0,0,0,0 -"Tfru15940_t",0,0,0,0,0,0 -"Tfru15941_t",0,0,0,0,0,0 -"Tfru15942_t",0,0,0,0,0,0 -"Tfru15943_t",0,0,0,0,0,0 -"Tfru15944_t",0.569347432939026,1.0663430763228,1.03506671941359,2.02851216765499,2.29968483536852,3.70271444737215 -"Tfru15945_t",0,0,0,0,0,0 -"Tfru15946_t",7.39817407967737,8.11577408717133,5.0259743969548,21.9372815141286,25.1865957814921,36.265588136307 -"Tfru15947_t",0,0,0,0,0,0 -"Tfru15948_t",5.37582084735736,5.58420493239772,6.71716810739035,6.86904286213166,8.30233354199126,8.02053478286485 -"Tfru15949_t",0,0,0,0,0,0 -"Tfru15950_t",0,0.347595386685488,0,0.89586436935345,1.1244408915204,0 -"Tfru15951_t",82.7839479131018,72.8478740326228,65.4807940140284,66.6013036629511,55.1988307231499,78.0651124798697 -"Tfru15952_t",0.86608635846853,0.608291926699603,0.279687046265853,1.45577960019936,1.6866613372806,0.838743861674503 -"Tfru15953_t",22.7149521220636,27.265127652458,25.3390569237019,17.206260258647,17.6037676344683,17.4372590688809 -"Tfru15954_t",31.5652601619773,26.101796716784,30.1171062346382,25.9292528161166,25.6960577377903,25.6086808214403 -"Tfru15955_t",1.2855451686526,1.4962292620448,1.32845997185801,1.26325786742036,1.7802930514049,1.12866215442469 -"Tfru15956_t",80.0193850008323,80.8080838030136,71.5724244665944,80.7065271650078,89.2946734265343,104.899395451906 -"Tfru15957_t",0,0,0,0.614126104786464,0.642348448041688,0.651573072364428 -"Tfru15958_t",1.276957726926,1.56445731639404,1.27328460102684,2.29412947704031,1.33793473545707,1.81936577086078 -"Tfru15959_t",0,0.116666963697205,0.125165598559574,0,0,0 -"Tfru15960_t",33.9554136079718,40.5305909945291,36.2988958164128,55.7121507464125,37.3070159438065,18.1503965863607 -"Tfru15961_t",7.52570719490095,6.34063452510401,6.9863715546696,5.46568331569325,4.98925996593295,5.54513246210015 -"Tfru15962_t",26.8891344337678,18.78338115525,25.283450909034,17.8909384350292,21.5122272983262,11.8038436690795 -"Tfru15963_t",27.4633729272138,24.3853079858912,26.4407197219455,32.5975412235426,34.4286379559254,31.7105178467812 -"Tfru15964_t",16.8856628279946,15.18504434141,14.268351981098,14.8331016189703,17.1677175027886,11.9605897325655 -"Tfru15965_t",4.2768919083646,2.20691470964677,1.07222988430035,2.52796636588464,2.90855377273276,1.34105585075733 -"Tfru15966_t",0,0,0,0,0.546720633972324,0 -"Tfru15967_t",1.94451793641584,1.90767738153493,1.89159394514079,6.77907825827938,9.50609623535675,8.79954135534083 -"Tfru15968_t",19.4165273963242,20.2670126223398,19.8267796500276,23.5240780031839,20.4590719092956,17.7245467891534 -"Tfru15969_t",6.65428554509473,8.0118995105275,7.87923435121357,4.3019218472446,5.75951092913212,4.25995353780272 -"Tfru15970_t",0.360044471877632,0.86700220736123,0.671781648269029,1.42762386287682,1.66203072727586,1.18539758236586 -"Tfru15971_t",0.306327718400902,0.368825004650782,0.39569215661313,1.18822484722814,1.06054832187156,1.0645725949874 -"Tfru15972_t",1.44167573242734,1.0520047584553,0.451455325849822,1.22010857167794,0.794066942633749,0.863003960120748 -"Tfru15973_t",69.8374770227191,76.3367061683713,60.8482305447366,11.1544970682945,12.4449122305192,13.8258814279383 -"Tfru15974_t",0,0,0,0,0,0 -"Tfru15975_t",0,0.923746644068282,0.396414882013336,7.85660779808327,7.37099243774741,5.72551242218313 -"Tfru15976_t",2.93902726551633,2.66547702702302,2.56381910288952,2.09252100083875,1.7839834589683,1.81518804575854 -"Tfru15977_t",4.6033083162437,4.87066412326912,3.6037716546667,6.81771751073341,6.24813855288171,5.74082127892693 -"Tfru15978_t",3.79144218208433,5.89442514162715,5.08653964996685,10.1966814372158,8.04861079627949,7.7378816408504 -"Tfru15979_t",0.677503038479415,1.01965985408747,1.53151213237511,2.45278994673787,2.41890812752473,2.2305868485379 -"Tfru15980_t",2.06661681989259,1.65883336140179,3.51795529589925,12.8260307250798,10.6907654403936,4.99315703395059 -"Tfru15981_t",9.71501029220565,9.08837588415266,8.30591414601155,8.96460618517745,8.95311893436874,7.51694159274336 -"Tfru15982_t",12.6668312729734,11.4418882935161,10.9080688921918,10.1461060831521,7.024016880812,6.19555411941648 -"Tfru15983_t",51.6641354476816,56.9759026346715,47.9725603206514,110.366178657648,100.516196557676,70.0110039733607 -"Tfru15984_t",15.018614841823,9.79481078458995,11.7208143187463,22.3315464584084,22.3422426676399,12.3616880097743 -"Tfru15985_t",3.85621401573857,3.97968226329745,3.32078696243959,0.569828484113342,1.19203023472654,1.00762393157996 -"Tfru15986_t",0,0,0,0,0,0 -"Tfru15987_t",0,0,0,0,0,0 -"Tfru15988_t",0,0,0,0,0,0 -"Tfru15989_t",0,0,0,0,0,0 -"Tfru15990_t",0,0,0,0,0,0 -"Tfru15991_t",36.6141481650961,29.5697722534371,38.6875486456866,18.5879879844459,13.0262769233352,12.8189162204745 -"Tfru15992_t",1.76938451498415,1.24982064900898,1.09707067178923,1.39096717162461,1.3476870893033,1.60523745123649 -"Tfru15993_t",1.20957348754702,1.50048375037793,1.98856025564936,1.47864524837003,2.09385415576311,2.65490441658438 -"Tfru15994_t",0,0,0.131298940049789,0.157711150321751,0,0.223103665431498 -"Tfru15995_t",1.96196792979053,2.4934867245982,2.65165939160559,2.39584875942887,2.02834596541532,1.91392985511912 -"Tfru15996_t",0,0,0,0,0,0 -"Tfru15997_t",10.5246852859553,10.1000071545484,10.8357447634965,9.14470015777104,8.25925625887366,9.13762303654947 -"Tfru15998_t",8.14691376164392,8.21920835171431,8.30302256209873,6.18497109090994,5.69289884342711,10.0618959146383 -"Tfru15999_t",0,0,0,0,0,0 -"Tfru16000_t",0,0,0,0,0.143987810531325,0 -"Tfru16001_t",1.92684350393228,4.63992006997601,2.65488865935537,1.19585564899933,0.333549744579445,0.845849447151987 -"Tfru16002_t",4.98433337150847,4.3009450247345,3.79349368090122,5.24436567175117,3.11768178820327,2.14732973078497 -"Tfru16003_t",16.3047326314119,17.139201477594,16.6748982677167,30.9511623637421,35.0001651832142,39.6082795280075 -"Tfru16004_t",0,0,0,0,0,0 -"Tfru16005_t",0,0,0,2.67148417798497,1.01225769352648,0.0356525869062516 -"Tfru16006_t",0,0,0,0,0,0 -"Tfru16007_t",0,0,0,0,0,0 -"Tfru16008_t",0,0,0,0,0,0 -"Tfru16009_t",0,0,0,0,0,0 -"Tfru16010_t",0,0,0,0,0,0 -"Tfru16011_t",1.41488616302409,1.19406952033803,0.53939024020454,0.32394722768792,0.745435496273541,0.744683856237568 -"Tfru16012_t",0,0,0,0,0,0 -"Tfru16013_t",0.873646128806538,0.511524189908792,0.890094255579106,0.360974422647219,0.480811812994103,0.543775099900887 -"Tfru16014_t",0,0.203112966918628,0,0,0,0 -"Tfru16015_t",0,0.206851242383388,0.221919374133233,0,0,0 -"Tfru16016_t",18.4420648945343,18.1019122567659,17.0022411177466,11.2350309833366,11.3607358762964,13.8772266366777 -"Tfru16017_t",2.98601475879376,4.51707689108988,2.42306225728248,22.6305259727925,18.439395927612,14.2004034322048 -"Tfru16018_t",23.3972825027022,16.3857114994542,26.3689992778497,7.47167629169176,9.71783153039217,10.1101406817219 -"Tfru16019_t",5.10560300820951,6.89237482217798,4.1968509262876,6.24135342405912,7.63294498369095,12.394887755043 -"Tfru16020_t",11.1339053552521,17.8739410888393,11.9538532407464,16.6020166348169,18.8980903477903,23.2742050977678 -"Tfru16021_t",0,0,0,0,0,0 -"Tfru16022_t",0,0,0,0,0,0 -"Tfru16023_t",17.014759852445,16.6449790864709,14.1944126265218,23.6496853454002,34.5160653409742,32.6776267431375 -"Tfru16024_t",9.35684435897558,8.96421443938358,9.57389414898377,10.1468709858207,14.368603967093,20.2429837751543 -"Tfru16025_t",0.705969551577806,2.26667243393867,1.2158943840724,1.46048476788235,2.44416283033973,3.6155917487392 -"Tfru16026_t",15.8109416957499,16.1006964225946,13.2091897131551,8.7875235330962,11.4381328141176,15.5389196190281 -"Tfru16027_t",0,0,0,0,0.277887303127334,0.078299439269271 -"Tfru16028_t",0.540259657694196,0.216827990408311,0,0,0,0.395273696632654 -"Tfru16029_t",0,0.113715860062369,0.12199952102434,0.146541051985303,0,0.207302056750009 -"Tfru16030_t",0,0.121721128189503,0,0.156857118821813,0,0.332843284258363 -"Tfru16031_t",156.088736539292,128.952317029363,168.978462139429,89.2976542980289,112.63199660883,177.608298429738 -"Tfru16032_t",0,0,0,0,0,0 -"Tfru16033_t",2.07616112056534,1.96408267039761,1.59633089072008,3.29801437296844,4.1715797711304,3.1464902647219 -"Tfru16034_t",0.73371508097334,0.68709539318616,1.21102726874162,1.39139342372654,1.74640237445744,1.25256308234249 -"Tfru16035_t",0,0,0,0.254835319141597,0,0 -"Tfru16036_t",0,0,0,0,0,0 -"Tfru16037_t",5.98751399473211,7.53114824583516,5.26247309388388,3.51170933908939,4.59470287389819,4.78713911946807 -"Tfru16038_t",0.260094045732035,0.260965576691117,0.167985408593113,0.201777501146946,0.168840195785571,0.190294302868042 -"Tfru16039_t",29.3720490215963,32.1956960043498,35.3569288562647,49.3297948042105,57.405666567094,55.2261251823469 -"Tfru16040_t",0,0,0,0.443361448098391,1.29846150568427,0.940791732036394 -"Tfru16041_t",5.04500957113131,2.28886570553734,4.72230521980639,18.8318643281061,22.022992012859,16.5297680473026 -"Tfru16042_t",57.9491501815659,39.9668945245684,53.7803273175312,27.1216441957793,40.2539440803809,56.620714001474 -"Tfru16043_t",71.2969420300056,61.1881501334503,69.7619403971684,32.2977543038455,32.3514985314555,35.7181945722292 -"Tfru16044_t",10.4135425245945,8.07699363713186,9.57220475892231,16.7625207104163,17.6214608793698,20.8022416961139 -"Tfru16045_t",10.6284998876394,10.7094933943529,9.54223440754848,10.8769750685565,9.10146368991073,11.5815725110268 -"Tfru16046_t",12.8514457384084,12.6079641108243,7.58297872746474,14.5241693649003,20.3928345255342,24.7253215165599 -"Tfru16047_t",5.52877278913217,7.46855834056491,6.73523519439995,6.55577152469082,11.7882797369988,11.0498983957533 -"Tfru16048_t",7.05310999014018,7.54852668100574,10.6628947041554,8.75473426618166,6.57951762954939,7.39644843059956 -"Tfru16049_t",4.11264187542232,5.03164925858951,4.32485111667244,3.13599384104741,1.42385268372273,1.3768806449681 -"Tfru16050_t",13.0812005353465,10.8733610165795,11.6654337857523,7.7577514558614,8.35328592168925,9.14532032018769 -"Tfru16051_t",0.928131314887062,0.768315372716701,1.03557171381706,1.57798014806347,1.81449988562386,1.26091591293689 -"Tfru16052_t",16.7505352458407,16.7549506330545,16.200114311726,16.2602131087864,16.8401694663592,19.6084853433843 -"Tfru16053_t",0,0,0,0,0,0 -"Tfru16054_t",0,0,0,0,0,0 -"Tfru16055_t",9.57224655073799,8.24806507645762,8.37057870697582,4.0217646729983,3.00470431067434,2.94625906605777 -"Tfru16056_t",51.868754889254,46.1387139589895,44.6668894130918,54.1798459489953,38.2704443780627,39.0688841811389 -"Tfru16057_t",0.029151575896795,0.0470020880266719,0,0.030567937263341,0.0258511792150575,0.0214872440986716 -"Tfru16058_t",49.1448389759017,36.6171358690863,50.2758311163609,55.0025274973543,58.7491197770933,41.8095157479804 -"Tfru16059_t",12.7537831556349,14.2863257362203,15.2151026333261,12.6254986705088,13.3304109072043,10.671227905729 -"Tfru16060_t",8.15331078666927,7.4639422988809,7.78035269689147,6.82663817641854,6.34735169999167,6.76812823963407 -"Tfru16061_t",10.6033060981283,14.1885724925818,10.5489721113137,16.8637760491015,16.2877558421488,10.9194811117742 -"Tfru16062_t",0.152468923360159,0,0,0,0.131967049579526,0 -"Tfru16063_t",3.23632219779852,3.74930671700796,2.67642090943836,3.59708805031376,2.19341704545868,4.33788697693275 -"Tfru16064_t",13.1266213705387,10.5364851589038,13.1126610190974,7.33208994792714,8.63476901280039,10.9484637815735 -"Tfru16065_t",0,0,0,0,0,0 -"Tfru16066_t",0,0,0,0,0,0 -"Tfru16067_t",0,0,0,0,0,0 -"Tfru16068_t",33.6523402172433,25.5293192989731,27.9423224195443,5.15079189033618,12.1653181220897,15.9832660351575 -"Tfru16069_t",8.08493495702063,6.14806196247472,6.59591911135794,5.34471904871143,5.89287305618794,7.69425133861313 -"Tfru16070_t",0,0,0,0,0,0 -"Tfru16071_t",0.631656968206372,0,0,0,0,0 -"Tfru16072_t",0.443326526498403,0.0889624076741221,0.572657382327973,44.2519178328916,27.7233522532905,15.0824553135966 -"Tfru16073_t",57.0699862183659,58.4064424073183,69.0211376112881,90.2845130673087,68.8638605532132,47.0352006263789 -"Tfru16074_t",2.58962176811352,3.97386928930553,1.77092867735332,5.19974949465166,3.62580366047828,3.3435209334385 -"Tfru16075_t",0,0.0941808729287494,0,2.18460780571386,2.23422426676399,0.772605500610893 -"Tfru16076_t",0,0,0,0,0,0 -"Tfru16077_t",0.0878769631500496,0,0,0,0.0760605066091204,0.128587991268573 -"Tfru16078_t",0,0,0,0,0,0 -"Tfru16079_t",0,0,0,0,0,0 -"Tfru16080_t",0.0778594780087557,0.187488892540272,0,0.16107292646392,0.60651028625104,0.512683538866913 -"Tfru16081_t",174.814045465114,122.507230138673,201.04698965613,3.04497296429838,2.54792446398423,4.97022047113566 -"Tfru16082_t",3.5785353188649,3.21437599979541,3.5952739172457,2.90837915446287,1.99114989512638,2.24416039934036 -"Tfru16083_t",4.25205894702111,4.55072733243454,4.93770607446443,3.53193153592491,4.85130709792466,4.94925711792152 -"Tfru16084_t",20.2978091528329,19.5899827614059,17.8956804598255,23.3285486784657,21.7514088468989,21.5687554136666 -"Tfru16085_t",294.751300630036,308.041989939289,317.08973381471,423.955423182901,299.51915446865,167.394205484603 -"Tfru16086_t",0,0,0,0,0,0 -"Tfru16087_t",16.6472175169228,13.828529830672,18.6698621851442,15.8179923095749,22.2832748717429,23.2264281371566 -"Tfru16088_t",32.8264443143546,29.615575938568,39.7161626947161,30.4005643098681,37.3353108071455,39.9622132778602 -"Tfru16089_t",0.0852032218777357,0.0683909787190513,0.220118811259941,2.73211375116209,3.31858315854397,3.42857838788111 -"Tfru16090_t",0.442795469327226,0.355423361373661,0.381314267197783,0.499657942466419,0.975557087164798,0.824639039357247 -"Tfru16091_t",14.0750369460017,14.4752550036459,19.6962158654794,15.9238719055234,14.8473294681385,21.8828485245743 -"Tfru16092_t",0,0,0,0,0,0.0796179531429763 -"Tfru16093_t",0,0.230148481286637,0,0,0,0 -"Tfru16094_t",11.2313337929743,13.558822399137,11.1420140099577,6.87755555424499,7.77688174527476,7.42839760468522 -"Tfru16095_t",18.2663736065975,18.799825542752,19.7189523735158,18.5853018590146,20.2072710977988,13.1183764858432 -"Tfru16096_t",4.37492461723231,3.8438521508626,3.30926920329571,1.52883257964962,1.07458883229043,1.77344648337895 -"Tfru16097_t",33.8865385296595,36.9750941374642,34.5010032029569,29.7573771929567,25.9692301136854,15.8827780643791 -"Tfru16098_t",114.42792653248,206.369777474394,130.3470222226,37.4563980543374,50.7743221263495,92.7274605808576 -"Tfru16099_t",0,0.581323316829279,0,1.4982559221735,0,0.529871203319186 -"Tfru16100_t",0,0,0.0446854329632081,0.107348787927467,0.0898256260881026,0 -"Tfru16101_t",20.3926901172687,22.9464719231288,19.069533471684,20.9644269546092,25.5554240642194,29.2451029255811 -"Tfru16102_t",252.844790137795,272.019901593938,276.420193212133,350.330690005881,278.002809149215,126.055461677826 -"Tfru16103_t",7.31551033683952,6.33203859308764,8.33195043445166,9.62443053624822,8.43270505938772,8.83005273589214 -"Tfru16104_t",1.43679718824407,2.03521644920477,1.16451856688022,0.786810457188694,0.841256750161639,0.803868991693068 -"Tfru16105_t",13.1372256809361,12.5683912986071,10.4364852809339,14.6419286771882,10.8252578385034,8.72498829618518 -"Tfru16106_t",2.06357366523752,3.27597267822687,2.21144109944121,1.94478853543596,1.50825659612234,2.11370020145294 -"Tfru16107_t",3.48880302207008,3.248457882878,3.00439019798314,2.45395406156784,4.46912332189004,2.72810826939949 -"Tfru16108_t",18.7151829441343,17.8138774192658,18.1938731244834,16.003153417698,12.3829517056939,12.5972944396635 -"Tfru16109_t",140.075332875916,145.945101738322,138.46895066513,76.2728712142073,78.9679884410346,98.5351788097475 -"Tfru16110_t",2.3699425353813,1.7055166638537,0.844502521020629,3.29674602068492,2.90006577534152,3.58745485367963 -"Tfru16111_t",23.417892525041,22.0844728930625,18.7194540065735,18.9004985324344,23.1775378764642,29.1959034175294 -"Tfru16112_t",14.6268066700288,14.4500367893538,11.3040181199116,11.2502967454967,15.2569226917902,26.6165660855296 -"Tfru16113_t",1.03930363016224,1.52941970141615,1.78999709610146,1.7917287387069,1.79910542643264,2.53464164232485 -"Tfru16114_t",0.214860298648203,0,0.0925137032831636,0.444495364845446,0.371937822600097,0.157199641499687 -"Tfru16115_t",0,0,0,0,0,0 -"Tfru16116_t",0,0.0905755608018597,0.145760341102956,0.612785668358958,0.488340123024305,0.660470757032937 -"Tfru16117_t",0.492729482530484,0.593256642378164,1.90941772348066,10.7030834039471,11.9412764862929,23.4324274997921 -"Tfru16118_t",0,0,0,0,0,0 -"Tfru16119_t",0,0,0,0,0,0 -"Tfru16120_t",0,0,0,0,0,0 -"Tfru16121_t",0,0,0,0,0,0 -"Tfru16122_t",0,0,0,0,0,0 -"Tfru16123_t",0,0,0,0,0,0 -"Tfru16124_t",17.5835672312332,14.8980999456129,13.2493607731056,5.55748419825658,69.754559956527,103.096917208779 -"Tfru16125_t",8.17221563924586,7.0844538344692,6.47451932782483,0.676255593986651,24.8981256809809,51.6593498929867 -"Tfru16126_t",0,0,0,0,0,0 -"Tfru16127_t",0.785143667507288,0.630219640437332,0.676128151616823,0,0,0 -"Tfru16128_t",52.3343330707378,42.610739384801,55.2026923626321,26.9373465217216,9.4278754928372,6.22894794067613 -"Tfru16129_t",8.41323076521027,7.14462389875163,7.14007066151742,4.79267934025663,5.3823019742152,6.86909957421057 -"Tfru16130_t",0,0.581323316829279,0,0,0,0 -"Tfru16131_t",19.4668741231469,18.1952402826467,20.3402476406894,14.7665388583954,18.1971824607122,15.0022854571076 -"Tfru16132_t",2.97525481160954,2.69212962720737,2.88823849966574,3.63710550468352,2.3410767649169,1.50397441944775 -"Tfru16133_t",11.4173138552039,10.2043954579919,11.819372391788,13.0662357947532,14.8581542125143,12.7965811301182 -"Tfru16134_t",54.6383277498512,54.7580341491304,49.771676774588,44.102796679261,47.291334838606,31.887888180602 -"Tfru16135_t",37.5708594774419,36.1112243756981,38.325177748583,25.5192382064771,22.0514153594902,16.5165227940362 -"Tfru16136_t",17.7460121719462,17.9570120101408,19.0212331869433,12.4978112470701,9.80411384067223,12.4311356952225 -"Tfru16137_t",0,0,0,0,0,0 -"Tfru16138_t",27.2079061134802,37.1650567423154,37.4060235967982,45.9181390678266,55.3616769241748,49.5911278144639 -"Tfru16139_t",0,0,0,0,0,0 -"Tfru16140_t",12.2166746856953,12.8148320867329,13.2294816357238,12.6774020236463,12.5154746579135,11.4983120348648 -"Tfru16141_t",0,0,0,0,0,0 -"Tfru16142_t",0,0,0,0,0,0 -"Tfru16143_t",86.4863806369968,90.4459731199886,84.129015103805,74.1381035755014,77.7143310268694,80.2160346441455 -"Tfru16144_t",0,0,0,0,0,0 -"Tfru16145_t",0,0,0,0,0,0 -"Tfru16146_t",7.11378190403385,6.66177771337146,6.49069427530405,7.18317055830377,4.91111650133808,3.96548773073405 -"Tfru16147_t",10.5012970964309,8.8274174874596,12.247503096849,10.5202340460197,9.94805547268341,7.01766431088564 -"Tfru16148_t",2.90138930086958,3.85115949036638,4.01829227393793,3.49387104047845,3.56072948981459,2.8452022816294 -"Tfru16149_t",0,0,0,0,0,0 -"Tfru16150_t",17.5021618273849,14.3296198161092,16.5792265758703,9.05196289867549,9.99815359376887,5.63429715075129 -"Tfru16151_t",0,0,0,0,0,0 -"Tfru16152_t",1.04586666616687,0.675247546854785,1.07686451372364,0.540912965636684,0.688764425207352,0.898271510317834 -"Tfru16153_t",0,0.471562972146498,0.505914097674097,0,0,0 -"Tfru16154_t",14.9551546198199,9.31474485643172,14.6380436976909,2.11329873120828,5.09279843474608,6.33783690816735 -"Tfru16155_t",13.472328999854,12.0448372716126,15.9405814843498,64.1261350798476,73.5670706532146,41.4308160759286 -"Tfru16156_t",0,0,0,0,0,0 -"Tfru16157_t",0,0,0,0,0,0 -"Tfru16158_t",0.316721495839576,0.0635565551526716,0.272745394787687,0.900930520358276,0.137066624539715,0.46345002696609 -"Tfru16159_t",0,0,0,0,0,0 -"Tfru16160_t",8.21154058668283,5.57720718185587,6.5274330196181,6.20706027337747,5.46720633972324,4.15928976268721 -"Tfru16161_t",2.52031130314342,4.72034535118892,2.53210005886019,3.91044797222781,3.63569221591595,1.84395179479133 -"Tfru16162_t",33.2762112355331,34.2974084070312,26.7870188283553,25.4411081239467,28.7182117629182,34.6137908666341 -"Tfru16163_t",16.0131199655883,16.7980000559619,15.5458363002047,24.3787046948809,28.9640104109182,31.5029833093412 -"Tfru16164_t",0,0,0,1.11567702488668,1.34847357509008,2.8058229877947 -"Tfru16165_t",0.249288951844058,0.200099421415385,0.214675715036896,191.847892603857,156.539744964215,93.6567009520622 -"Tfru16166_t",11.146339915622,9.52684653188357,9.24318729805052,4.11008045129049,3.57316188296408,3.69998517382372 -"Tfru16167_t",5.93159806574574,6.03413320205917,5.12574452429232,8.20202374932694,7.8792643267215,9.10147000125818 -"Tfru16168_t",12.2552135247989,11.1913956529245,13.6508565541088,9.64522050937092,9.87709196078647,10.6231895154469 -"Tfru16169_t",2.0872143297254,3.76957481461405,1.79740909235861,4.31795497278433,4.06474906127249,4.19947613720593 -"Tfru16170_t",5.74396529553617,7.15108797389418,5.78765727739471,7.80068691100741,8.01543307136819,11.1494759685057 -"Tfru16171_t",0,0,0,0.980062148428022,1.09344126794465,0 -"Tfru16172_t",17.3548597768101,16.5101159949771,9.40992480066087,10.9703972697031,14.1867102533828,9.54660072284214 -"Tfru16173_t",10.9371999947733,9.28801106837712,9.6915959126185,8.0340440519565,5.62503323971902,6.84233684859676 -"Tfru16174_t",10.5731253939441,11.4387888127306,12.0741140191887,8.32136671396706,6.36619156822492,8.49243644659938 -"Tfru16175_t",29.4713821738545,33.7167525084923,33.3286211664489,42.5734255040931,36.9433241294686,33.0250775075195 -"Tfru16176_t",3.94024572637167,4.41045299594736,4.29591600839323,13.8724057917051,15.5815380682112,15.6836404806549 -"Tfru16177_t",0,0,0,0,0,0.0304584042747164 -"Tfru16178_t",0.0339985336994931,0.163739793647069,0.117111640578606,1.37153173179446,1.94217471671755,2.1392129279921 -"Tfru16179_t",3.88091414433317,4.58108050387124,7.27388992063874,12.9875989415779,18.968828952605,23.7174959112653 -"Tfru16180_t",2.87487981347159,6.15362783424955,4.67633905492919,11.5644849199808,20.1829301720049,23.1370377293209 -"Tfru16181_t",11.8104773710523,14.4883657994052,15.159977616518,17.2875684006534,15.4299934892985,11.2495732838728 -"Tfru16182_t",3.91961322417329,3.82787392398124,3.71292165929288,3.17592975107494,3.44910148010689,3.5368696945194 -"Tfru16183_t",0.101954340742048,0,0.0877981989896042,0.105459761926316,0.0882449566969891,0 -"Tfru16184_t",33.0435898100162,27.8259414907662,31.3773342299494,36.7736986169896,27.3873917581728,26.3884234021938 -"Tfru16185_t",46.0312447805215,40.8802159008716,42.0090539203869,31.5806501129509,29.4165831846874,32.0335076171817 -"Tfru16186_t",6.1057339780056,5.44550511577264,4.28426850951156,4.21044196202187,4.20820364157163,5.04625659409023 -"Tfru16187_t",6.24401448976974,6.59326002948259,6.87226793172365,3.86831101297928,3.81487577504694,4.78821610730128 -"Tfru16188_t",22.5577089785009,16.3525022304554,26.3128844893759,26.4443999930061,18.2228348657789,11.75287962506 -"Tfru16189_t",0.82503785898518,0.345517532110937,0.710483120090085,1.40997270086969,1.11771921240798,0.577383140982199 -"Tfru16190_t",0,0,0,0.484116121600472,0.607636582047234,1.02727119486982 -"Tfru16191_t",27.4833946866592,32.1754152509612,25.9411067254656,17.5659805736583,24.6707686080011,25.9909395837254 -"Tfru16192_t",5.81181976836442,5.81034343145517,4.07581498408078,3.49179281327531,3.1025376821818,2.97904391039196 -"Tfru16193_t",1.45812402941097,0.630219673055931,1.06248715038955,0.116019818193971,0.0970812340698519,0.749081376276976 -"Tfru16194_t",0.487388445391603,0.61771149633879,0.397625309133988,0.451077967958424,0.399648609993815,1.01346968874027 -"Tfru16195_t",1.75143245527687,1.35897960075924,1.25687484307564,0.664271912508778,0.808493057048718,1.49498060731287 -"Tfru16196_t",25.9056806253653,23.694655756303,30.6238857509178,17.0475756559449,18.0749935020454,18.8990697970825 -"Tfru16197_t",290.004570707686,299.386699729425,318.934796954647,123.656278883692,132.037304359269,110.021192154416 -"Tfru16198_t",7.0441180876324,8.27295427834145,7.53468180419877,5.90574666787371,9.11329734616179,10.7957165979251 -"Tfru16199_t",6.80690454760813,9.87003732606152,6.35341363435907,7.35891934135918,7.64008505383279,10.1531410899819 -"Tfru16200_t",6.02172281054081,4.47984823539408,5.4385765499994,9.11526333852636,8.13581474890283,10.5307270331906 -"Tfru16201_t",22.7610428129604,20.934201933777,23.718233315758,17.8212116221524,21.2395565953321,23.3601920694794 -"Tfru16202_t",22.0315397296879,20.210618218347,24.3932241158207,21.787318193008,25.5650980024061,23.0272558427352 -"Tfru16203_t",39.7889637224279,34.9164897143159,36.7498483564634,24.0971027054802,23.8215907153266,24.6614411818718 -"Tfru16204_t",11.4127304293287,10.6875743800504,11.684515635495,6.29606717541081,7.40858036450798,7.56136207675439 -"Tfru16205_t",0,0,0,0,0,0.917388952621014 -"Tfru16206_t",0.456578134627432,0.137432415116137,0.540626953560987,0.590345406435357,0.839765865089282,0.668098476373671 -"Tfru16207_t",10.657842139852,9.7652413714891,9.1560139465934,9.78173782053401,9.26896889850188,11.0513691382383 -"Tfru16208_t",18.8844710847118,18.9272656852047,20.7015991620057,21.1175805169586,19.6141840081006,21.7330891974191 -"Tfru16209_t",0.967224732566007,0.110910370093725,0.713937986520729,0,0,0 -"Tfru16210_t",0,0,0,0.211948399578743,0.532052519402335,0.599659120257344 -"Tfru16211_t",0,0.106698583887634,0.572355347843623,5.2249304832861,4.83224914773639,4.37646786738449 -"Tfru16212_t",0.990413595779893,0.888513588989395,1.35460078441104,14.6438412274828,16.9430316858219,11.5939641281378 -"Tfru16213_t",0,0,0,0.522228628769739,0.349585789991918,0.0738762738297809 -"Tfru16214_t",0,0,0.0547244447560014,0.52586289759325,0.220011631825474,0.0929879876344595 -"Tfru16215_t",0.231539853297512,0.0929262816035616,0.199391040792193,1.51683788031089,1.30263662306589,0.705845886844025 -"Tfru16216_t",2.29241798573773,2.38127947090475,2.20637014988964,13.251027549907,9.68739819971185,9.07670225365449 -"Tfru16217_t",0.343536856686216,0.501364349568658,0.457203409459619,1.61522014548856,1.45968312014469,1.11962376635409 -"Tfru16218_t",4.16025827462439,7.54048778145195,4.96943416389722,7.35725035598416,3.60084532566756,10.211447638887 -"Tfru16219_t",8.75361378805241,9.61244608418666,8.89925594389563,21.2531180995819,21.8878142086981,25.1286243139677 -"Tfru16220_t",0,0.242566564809297,0,0,0.26156059107309,0.442194675009912 -"Tfru16221_t",6.8588451936782,6.75007815434398,5.46141587116977,7.25361150670051,6.06956266175527,6.51034970226182 -"Tfru16222_t",213.703815566078,169.826776459825,241.198897679532,226.858041604409,187.4810870788,144.598677609981 -"Tfru16223_t",2.64789153147829,3.18811699937033,3.52400335657987,1.74295675298279,1.97931667915195,2.11341179918777 -"Tfru16224_t",0,0,0,0,0,0 -"Tfru16225_t",210.902710566651,194.623076149589,249.023014734203,434.164432252828,345.080312410087,228.59870447761 -"Tfru16226_t",0.745654231699238,0.399014822585708,0.642121739355922,1.02838868434656,0.215129716918104,0.181849289427153 -"Tfru16227_t",52.5358187142676,56.932337685429,48.1715364350197,24.9712808903126,19.1686286523502,18.6712995980966 -"Tfru16228_t",5.78922992405222,5.71515646480582,7.85058462379283,5.64412292581175,4.34843187804601,3.31059332134153 -"Tfru16229_t",0.132195714825252,0.4244437766608,0.113840623080148,3.76037483123576,4.23353617588954,3.04665520775908 -"Tfru16230_t",1.13681159365964,0.319373839728614,1.12581290071108,24.4586732287892,16.9239258765235,9.73127469510987 -"Tfru16231_t",0,0,0,0,0,0 -"Tfru16232_t",7.29763523032031,3.98321607119089,11.1107736127887,2.89864107276557,5.8615746636032,4.74122421176367 -"Tfru16233_t",24.5790359468463,20.8080529766695,26.2925002030217,7.24984639930489,13.4624488909345,16.648250490116 -"Tfru16234_t",1.63656578126196,0.875759805415384,3.38239711016574,2.03140154401445,2.83300692149295,3.35263962689333 -"Tfru16235_t",144.908728492235,113.959678784162,155.748637432074,313.822462205958,261.1665369075,155.809900564246 -"Tfru16236_t",4.16025827462439,5.14368987949044,4.33380886386385,7.87781052268115,9.17634776541087,10.3096346354148 -"Tfru16237_t",5.0072409996227,7.14527205477983,8.14488193010845,0.863233547953159,1.92619455147865,2.23879356983495 -"Tfru16238_t",0,0,0,0,0,0 -"Tfru16239_t",4.44760818201781,2.47917297856561,4.14923959224989,3.96156493918503,4.27728495990112,3.79637134221745 -"Tfru16240_t",0,0,0,0.0572833512374981,0,0 -"Tfru16241_t",0,0,0,0,0,0 -"Tfru16242_t",0,0,0,0,0,0 -"Tfru16243_t",14.5479646149398,9.86272509171565,11.1450461712665,7.56956827833185,4.70930431404364,5.53394691178902 -"Tfru16244_t",6.85153637408292,5.7534232636825,5.80944268747273,4.03419977617256,4.47048729184145,3.23906212384926 -"Tfru16245_t",45.8989277585577,39.2099312879658,48.0103241497367,56.9968540271656,48.356748995399,33.0633678560431 -"Tfru16246_t",0,0,0,0,0,0.289247340359425 -"Tfru16247_t",10.4585741627595,8.39489525435203,10.0071372778387,8.90907593347263,9.22974752942048,9.25226693887704 -"Tfru16248_t",76.1601557102022,65.1010089735473,79.0312519293186,62.8076310574076,50.1526566903842,48.2010458834629 -"Tfru16249_t",0.365262507701946,0.730366142433074,0.629093182325512,0.755642120237258,0,0 -"Tfru16250_t",0.548063967754084,0.754149170739809,0.53939024020454,0.4049340346099,0.542134906380757,0.343700241340416 -"Tfru16251_t",15.6564793074061,16.1840412040763,13.5483795357194,5.21393062963708,3.37127823657661,2.96149833708911 -"Tfru16252_t",0.0550346392213871,0.0441752407579329,0,0.199243991742873,0.142903067772654,0.161061407995749 -"Tfru16253_t",7.99373770820297,8.06635492726956,7.60498690731521,4.13429025911413,4.77730286640519,5.347209554447 -"Tfru16254_t",0,0,0,0,0,0 -"Tfru16255_t",0,0,0,0,0,0 -"Tfru16256_t",0,0,0,0,0,0 -"Tfru16257_t",0,0,0,0,0,0 -"Tfru16258_t",2.32455896891869,1.9968173815709,1.51012902262119,1.05459761926316,0.847151584291096,1.01447186121206 -"Tfru16259_t",3.84780351611682,3.08855748158745,2.76128686889081,0,0.555067513861158,0.46919892995617 -"Tfru16260_t",6.43298147892978,5.86378304495518,7.0890351142651,2.76316894713624,2.07619023361845,1.39602666704946 -"Tfru16261_t",0,0,0,0,0,0 -"Tfru16262_t",58.1610300725405,53.6550244245719,59.998250021069,77.2898370579214,75.6853235332504,56.5892257536122 -"Tfru16263_t",32.9531342930231,30.766353181454,28.314670724738,32.8376998006456,27.8889407246143,33.8231761517377 -"Tfru16264_t",6.02442833426827,7.18699198207336,5.75909975793388,2.40115226364865,3.06163555024501,5.37819273480805 -"Tfru16265_t",0,0.753446983429996,2.02083005495626,0.970936802539494,2.43733556374254,0.686760444987461 -"Tfru16266_t",0.43528692627693,0,0.187424134630658,0,0,0 -"Tfru16267_t",0,0,0,0,0,0 -"Tfru16268_t",0,0,0,0,0,0 -"Tfru16269_t",0.153583869783268,0.246557605180931,0.661295392755337,0.238296646692737,0.199398110562118,0.168551352357526 -"Tfru16270_t",1.92390175805841,1.54427874079372,4.97031636400346,1.32669990571432,3.88547259702811,3.28439250969319 -"Tfru16271_t",0,0,0,0,0,0 -"Tfru16272_t",46.6042966029314,46.7604596831025,39.6053189600978,39.9607821977706,30.7839632879105,30.9568549489138 -"Tfru16273_t",0,0,0,0,0,0 -"Tfru16274_t",38.0599496975618,32.7853505054953,38.7423585508318,24.5881890387384,23.7023028440929,23.6254807698863 -"Tfru16275_t",0,0,0,0,0,0 -"Tfru16276_t",0,0,0,0,0,0 -"Tfru16277_t",0,0,0,0,0,0 -"Tfru16278_t",5.81661145231107,5.4647136245078,5.80587177708754,8.34119508019569,7.89497286855077,7.97933506794046 -"Tfru16279_t",199.646426154448,193.217143723956,220.263986259458,169.379102375216,216.973960075626,193.38739162144 -"Tfru16280_t",0,0,0,0,0,0 -"Tfru16281_t",1.11394974724571,1.19219456383619,1.1991002646536,4.22491616397848,2.65144404696633,1.63001263627963 -"Tfru16282_t",0,0,0,0,0,0 -"Tfru16283_t",0,0.100948360803869,0,0.650440447809017,0.87082448285412,1.47221700182941 -"Tfru16284_t",0,0,0,0,0,0 -"Tfru16285_t",16.0332303883008,16.933636862524,16.7137982201549,10.571399528096,10.8746151101058,13.3082830427648 -"Tfru16286_t",0.582058037677465,0.778677887032155,0.33416035088884,1.10379593775997,0.587756247376713,0.354879098304721 -"Tfru16287_t",2.93530232093009,4.06225933837257,3.31221350212348,4.08319868586036,3.41667461254752,3.18433442474005 -"Tfru16288_t",0,0,0,0,0,0.0827255179359054 -"Tfru16289_t",11.6815265139598,13.2893002568757,11.0428379835289,19.6692103383242,21.095757238195,19.8885896667683 -"Tfru16290_t",0,0,0,0,0,0 -"Tfru16291_t",0,0,0,0,0,0 -"Tfru16292_t",0,0,0,0,0,0 -"Tfru16293_t",0,0,0,0,0,0 -"Tfru16294_t",9.35760287884334,6.46739184657981,5.20712520127177,8.06791410625032,4.76668171698388,4.38229768341358 -"Tfru16295_t",0,0,0,0,0,0 -"Tfru16296_t",0,0.196027630863327,0,0,0,0 -"Tfru16297_t",0.132927811347227,0,0,0.137498170612792,0.345160653409742,0.291764524492299 -"Tfru16298_t",0,0,0,0.0884016722556304,0,0 -"Tfru16299_t",130.397191205752,127.832917021071,139.056716922105,100.193520907954,129.954260159897,111.132931535871 -"Tfru16300_t",16.9450717402834,19.5700640091845,17.9171092310836,31.9491919433081,27.3527822882528,20.0349939689384 -"Tfru16301_t",30.696099204952,31.3825157963659,30.0512974018572,50.8024010067203,72.154507054332,49.6448560136128 -"Tfru16302_t",6.44463164274117,2.58649060339119,4.75697858416004,12.6181882817701,9.56236856788854,6.90429439145613 -"Tfru16303_t",5.98476052899126,7.31801685603761,7.12860583434102,5.4384096669539,5.18001420909463,5.23803439266068 -"Tfru16304_t",0,0,0,0,0,0 -"Tfru16305_t",0.121402278571456,0,0,0,0,0 -"Tfru16306_t",4.61032555453065,2.05589954320075,3.08792690104901,4.76883899052172,4.8771480945214,3.37308255144756 -"Tfru16307_t",0,0.645296698727126,0,1.24735182527203,2.43539191496762,0.29409119534152 -"Tfru16308_t",1.92925708660944,2.11169639927927,1.9634536692623,3.44692699941213,2.12524805940807,2.43807126659953 -"Tfru16309_t",2.69371949567767,2.16219655365081,1.95724882877827,2.69926268401385,2.40436559369191,3.88005888683547 -"Tfru16310_t",14.0029442989901,16.7531336304218,11.8846939296149,17.461238969544,13.4867563468694,12.7446793616038 -"Tfru16311_t",2.22377590482586,3.47990160957197,3.37745660912856,12.4797960527881,9.27498869464336,4.49967463772942 -"Tfru16312_t",30.7760706460631,23.3680402390385,33.6658195006398,29.2530685612633,25.9177991810946,18.8655085245549 -"Tfru16313_t",6.0590008212417,7.71603906227632,7.02385591916834,13.137273199964,12.555996695743,13.0858345122732 -"Tfru16314_t",0,0,0,0,0,0 -"Tfru16315_t",0,0,0,0,0,0 -"Tfru16316_t",0,0,0,0,0,0 -"Tfru16317_t",0,0,0,0,0,0 -"Tfru16318_t",0,0,0,0.30598184446227,0,0 -"Tfru16319_t",0,0,0,0,0,0 -"Tfru16320_t",0,0,0.485541717902214,0,0,0 -"Tfru16321_t",0,0.564297113112842,0,0,0,0 -"Tfru16322_t",0,0,0,0,0,0 -"Tfru16323_t",1.59756041020754,1.86365417009415,1.32071286755964,5.17779622196042,4.4247775447253,4.02078738215148 -"Tfru16324_t",7.65538344544551,8.459114238817,11.3869588445784,33.3197933728287,20.9106084844397,14.9843814487974 -"Tfru16325_t",0,0,0,0,0,0 -"Tfru16326_t",0,0,0,0,0,0 -"Tfru16327_t",23.6970059478672,21.1006979103311,22.6972784881382,19.0448535197133,19.7032990977682,21.6593570194102 -"Tfru16328_t",26.1583330588647,27.2093209747833,28.8539182050873,12.9714892243644,15.1787500093051,11.5403785796464 -"Tfru16329_t",5.3720040616565,10.1825631612704,3.67859572715766,2.8118269959522,11.6521414624117,19.8411864924902 -"Tfru16330_t",0,0.154664002332533,0,0.0996546374166108,0.0833874361448613,0 -"Tfru16331_t",0,0,0,0,0,0 -"Tfru16332_t",5.1173833566364,6.16143700662804,4.77408277957686,8.38110676506806,9.2276452180608,11.8562044335145 -"Tfru16333_t",58.117541938794,47.2851360886258,57.8376248784061,14.8535035882438,18.7901185856222,25.5621850421948 -"Tfru16334_t",1.37619381159482,1.05443306430132,1.29284972689383,1.9411506439453,1.78671397059161,1.18994159008624 -"Tfru16335_t",0,0,0,0,0,0 -"Tfru16336_t",0,0,0,0,0,0 -"Tfru16337_t",38.7630247667094,39.755573852799,31.8537107613817,35.6674358988119,33.1010783832979,27.9803630549409 -"Tfru16338_t",1576.24161461502,1558.08969509918,1561.26722523269,1853.92694675512,1963.27379659461,1331.3223808728 -"Tfru16339_t",5.79031617409009,6.68627256516655,5.51122140985288,13.1346499134348,14.8592982947955,20.4388046581063 -"Tfru16340_t",1.18882608638841,2.8627431375135,3.75378714925365,4.9188024807897,4.4588678119724,11.0173220443507 -"Tfru16341_t",5.4477718725512,4.02759842251614,6.72839849867773,11.715031847023,10.609272507195,12.6915908515217 -"Tfru16342_t",0,0.0875759805415384,0,0.338566924002408,0.849902076447885,0.399123765106349 -"Tfru16343_t",0.0821617376737872,0,0,0.127479966494794,0.284455136697581,0.0901687919213365 -"Tfru16344_t",0.344304822833801,0.13818341192005,0.444748253898159,0.712285605141677,0.447011338022453,0 -"Tfru16345_t",5.15294523270766,5.34448868156666,5.73380932891447,6.10867130970574,6.01355018483686,6.82003765130724 -"Tfru16346_t",40.455181434221,25.6297085488908,33.236316007179,20.3619062104523,23.3435588770987,23.3612589008004 -"Tfru16347_t",3.78046695471514,4.383177826104,6.87284301690622,10.4278612592742,13.8156304204806,10.1417348713523 -"Tfru16348_t",0.0855502818446512,0.137339114087545,0.147343617041617,9.64559468143994,7.03443504097791,3.56772750519708 -"Tfru16349_t",0,0,0,0,0,0 -"Tfru16350_t",34.5126898955736,37.0434405193372,31.2575152731487,51.702981343165,47.1312347653149,52.0985443893524 -"Tfru16351_t",0,0,0,0,0,0 -"Tfru16352_t",0.210025941928619,0.758626931441077,1.35648217438939,0.217247109568212,0.363569221591595,0.921975897395666 -"Tfru16353_t",0.154430839653396,0.12395864892828,0.132988448469548,0.159740521741332,0,0 -"Tfru16354_t",0,0.500743849136024,0.179073554374836,1.50567303661137,0.359969526328312,0.456423711582013 -"Tfru16355_t",4.23581730946684,5.10001297636201,12.158943840724,2.19072715182352,3.6662442455096,5.16513106962742 -"Tfru16356_t",124.670203251579,145.06602769668,123.19368359579,26.9819363840946,32.0872480265892,46.9737423406214 -"Tfru16357_t",0,0,0,0,0,0 -"Tfru16358_t",5.50596549664878,4.56209759100107,8.25934178063727,12.8602940124946,6.14916231021726,22.0910363012351 -"Tfru16359_t",3.17481075008377,1.96027630863327,5.04737553261167,7.57838754307715,4.43892654268808,12.3287474651746 -"Tfru16360_t",0.104664090662102,1.624228941439,0.751097549495784,0.360875597289388,0.452951688029396,23.1770242202454 -"Tfru16361_t",0,0,0,0,0,0 -"Tfru16362_t",11.4689934158973,13.7513717568765,11.4197589197741,17.7208393129019,18.0543760210161,15.995600040141 -"Tfru16363_t",0,0,0,0,0,0 -"Tfru16364_t",14.1463754274235,11.1460338871049,10.4632233837198,7.27149416323353,10.8920531261945,11.8739320119139 -"Tfru16365_t",0.0625542641634009,0,0.0538687386205762,0.129410042929687,0.10828569518737,0.137300952702258 -"Tfru16366_t",0.150691258782865,0.0604784798358606,0.259536200780032,0.233808548414219,0.326071050754794,0.496130527746547 -"Tfru16367_t",11.6771180068421,16.272563951975,12.5697189904808,36.2358113256631,46.1831173373108,40.225203245448 -"Tfru16368_t",0,0,0,0,0,0 -"Tfru16369_t",2.74122150693782,3.62406552874389,2.49946811403802,6.00452663681813,4.32654351989998,5.42685748946905 -"Tfru16370_t",245.388449360321,210.455264494868,255.733693652325,263.929976833567,310.471205042869,317.617123102817 -"Tfru16371_t",11.2448418956933,11.9038777042592,11.2974396418592,13.7386144945174,20.7350826669115,21.2236288052284 -"Tfru16372_t",0.0836756740751469,0.0671648456344468,0,0.0865526332941082,0.0724241477274094,0 -"Tfru16373_t",0,0,0,0.0464451329916006,0.0388636260386526,0.065702896661013 -"Tfru16374_t",50.1500968653945,58.8398449264054,48.6127920708001,43.3434477138529,54.1363438491875,58.9914659553162 -"Tfru16375_t",0,0.332184753778249,0.712765674555999,0.85614624460379,0.358196277430143,0.605567091885495 -"Tfru16376_t",0.828028354215498,0.941576661428121,0.831901456709712,1.71299568940849,1.40351157411129,2.09511292221329 -"Tfru16377_t",0,0,0,0,0,0 -"Tfru16378_t",0.216469591589083,0.232078508837121,0.124927837599789,0.14829154236738,0.189274197261008,0.10598929828206 -"Tfru16379_t",8.76630018484669,7.32972880619398,8.17821137023166,4.53385272142355,6.32294298420166,9.08613927868192 -"Tfru16380_t",7.47736337756338,6.35499000160064,9.37464120520413,5.23212934038625,7.13813916737425,7.07974511089167 -"Tfru16381_t",0.324991786349893,0.260864622889689,0.209900529886172,0.504248610216352,0.492260067918988,0.594439650158392 -"Tfru16382_t",4.32671468350802,3.18355603084477,4.03645625569374,7.0861718142421,5.61737853102894,3.95697810041058 -"Tfru16383_t",173.309969289261,169.326734003824,195.8572373515,351.881047565049,309.396263075324,229.088677759092 -"Tfru16384_t",1.12227602557277,1.80165853098814,2.20902949518882,3.31674976440018,3.60793884022194,3.51899197479262 -"Tfru16385_t",0.659335854321366,0.132309035350526,0.662419897674346,42.6821659347879,41.1363475051314,29.1848485506542 -"Tfru16386_t",0,0,0,0.409900206732475,0,0 -"Tfru16387_t",28.775207791795,28.8716286243979,27.6280883812641,26.1722895779027,27.7686728302242,31.0350154438305 -"Tfru16388_t",0,0,0,0,0,0 -"Tfru16389_t",77.416539059735,39.7936090652554,58.8860478804695,0.505225836205143,2.11377454413718,1.25074249646699 -"Tfru16390_t",0,0,0,0,0,0 -"Tfru16391_t",3.08574068844944,3.73273928443732,2.88185211044615,2.89962515616133,2.46391971176922,2.40073047950932 -"Tfru16392_t",0,0.461873322034061,0,0,0.498040029577441,0 -"Tfru16393_t",114.009805682706,154.380910986853,130.407922795182,224.46287243769,265.25264092741,196.399047185781 -"Tfru16394_t",0,0,0,0,0,0 -"Tfru16395_t",0,0,0,0,0,0 -"Tfru16396_t",0,0,0,0,0,0 -"Tfru16397_t",0,0,0,0,0,0 -"Tfru16398_t",0,0,0,0,0,0 -"Tfru16399_t",0,0,0.629093182325512,0.755642120237258,0,0.267239390549468 -"Tfru16400_t",30.0982058511879,22.5663304190697,27.6280883812641,17.4481930519351,16.0313987473459,9.43754855601863 -"Tfru16401_t",26.2920479890175,32.9883633127432,26.1374090376943,10.4733114788996,32.2437740581517,42.5957407210656 -"Tfru16402_t",15.1517444981527,19.2422448693682,13.6605373926653,13.0973701958143,11.328829258739,11.293749349978 -"Tfru16403_t",0,0,0,9.94869941013305,1.18924511735569,3.15941896303811 -"Tfru16404_t",0.853462308190499,1.16161956522191,1.1503735754539,0.614126104786464,0.321174224020844,0.271488780151845 -"Tfru16405_t",0,0,0,0,2.77533756930579,0.46919892995617 -"Tfru16406_t",0.463779682492218,0.63817197176957,0.741714753609338,0.753854323422816,0.745488940172041,0.872532395011671 -"Tfru16407_t",2.91606266479404,2.45212745516308,2.63075330790669,1.43634452607082,3.24508065552829,2.23509308459555 -"Tfru16408_t",0,0,0,0,0,0 -"Tfru16409_t",41.933138319882,50.1413798025091,39.0269771385214,32.642961917968,42.1565684041026,43.0677134460983 -"Tfru16410_t",8.95192539367882,7.89619496686002,6.86183020300017,5.80003992758223,6.21558622393125,4.67825396804983 -"Tfru16411_t",1.10758571880616,1.02239328634848,1.57376969474312,0,0.239663297028079,0.162070032501985 -"Tfru16412_t",0.140134073013257,0.224965821574594,0.543045407595417,2.75409179769543,2.91097958905698,2.7169709514579 -"Tfru16413_t",0.304661384483944,0.427955154232903,0.983849265196291,2.83622699708273,5.86720955968304,4.62520395792325 -"Tfru16414_t",28.0648027549742,17.7631521977928,22.97947166545,7.99507434993637,11.0305229332828,17.604724145233 -"Tfru16415_t",1.47756944070385,0.84715458564051,1.27241208987949,2.83840444661985,2.92316962083695,9.5749590684307 -"Tfru16416_t",0,0,0,0,0,0 -"Tfru16417_t",21.3568548178017,21.9362004272119,17.9556837220378,14.4482415038136,14.6303759050112,16.9584321689645 -"Tfru16418_t",0,0,0,0,0,0 -"Tfru16419_t",0.275443858267041,0.221093459072081,0.237199068745685,0,0.238406046945308,0.604574358947978 -"Tfru16420_t",181.965667551766,166.356198065467,215.256812514881,281.231282113749,208.193215163379,146.079185171082 -"Tfru16421_t",67.7279532322391,59.7864065099039,81.8923671466417,43.5390083505777,48.4259210614785,41.0611946056626 -"Tfru16422_t",1.73199797460981,2.31582723866655,2.37761299572073,3.79062470670349,3.93995999591477,3.59841762316739 -"Tfru16423_t",0,0,0,0,0,0 -"Tfru16424_t",3.42899497026316,3.61250919733846,3.460413710177,3.76857230883632,3.89538451705281,4.5471600381759 -"Tfru16425_t",0,0,0,0,0,0 -"Tfru16426_t",18.9729317288458,15.2631203479788,17.7391519757756,11.0905562237553,11.6479635068736,14.1381992087645 -"Tfru16427_t",0,0,0,0,0,0 -"Tfru16428_t",0,0,0,0,0,0 -"Tfru16429_t",20.9610048974304,18.6276711878601,19.0534261854826,14.1103073145294,18.4304397480096,20.4477822788742 -"Tfru16430_t",16.6067023850536,17.6424867776995,20.1895021304467,9.09406505169258,20.292235623717,17.5103949505378 -"Tfru16431_t",19.4248820025616,17.7116238536885,17.9997066365432,12.6852867387725,12.1641700138264,14.1137137907133 -"Tfru16432_t",0,0,0,0.356142802570839,0.298007558681636,0.755717948684972 -"Tfru16433_t",0,0,0,0.341449288122926,0,0.36226950781755 -"Tfru16434_t",0.867203889253651,1.0876371776933,0.886818453794351,4.0365914552029,5.95784401833969,10.3499229772159 -"Tfru16435_t",248.068376693048,345.119589355794,260.035073430116,267.254934789574,216.083593964816,153.662649565944 -"Tfru16436_t",38.0054845528674,36.1545896120301,34.9580444994752,43.1575846269841,41.4563719286189,30.3075443158117 -"Tfru16437_t",17.2947446377384,14.6236373127853,19.9757260948565,21.0744294437581,19.7220200838935,12.4281825305626 -"Tfru16438_t",0,0,0.2782527537209,0.334226322412633,0.55933726398707,0 -"Tfru16439_t",4.58983521873274,6.24993461133028,4.87010185536872,3.39117439325989,3.33419578825463,3.95775019369847 -"Tfru16440_t",1.50371847259303,2.38224817535273,2.01054980785615,4.70719125771914,9.45314226653606,6.97742789362083 -"Tfru16441_t",45.4177221541355,41.0378198921679,46.4850612198431,79.710756302428,96.0209406507788,63.6440279738416 -"Tfru16442_t",0,0,0,0.207395808657004,1.21478976188123,0.733473267617872 -"Tfru16443_t",6.88923363046038,6.22108645373092,4.11991548789487,4.15689230153298,4.3065146976681,5.8104783207168 -"Tfru16444_t",0.379279353369966,0.456660304855426,0,0.78463967338406,0.328279206854714,0.277494626755656 -"Tfru16445_t",0,0,0,0,0,0 -"Tfru16446_t",0,0,0,0,0,0 -"Tfru16447_t",17.1181018499815,12.894808169392,19.0502825744967,2.17928134990056,0.911772342549455,0.67438153414521 -"Tfru16448_t",0,0,0,0,0,0 -"Tfru16449_t",193.60573192329,210.453838839371,187.506942021049,117.708433911504,121.762637485767,97.7294451239406 -"Tfru16450_t",23.7842972779711,25.8014672314461,22.1549249318631,36.1114326486193,27.0065434398802,17.9183355905908 -"Tfru16451_t",46.1195918039153,57.0650275940997,51.4989435986859,173.500766775888,168.119708389735,121.459998631851 -"Tfru16452_t",0,0.103664112247478,0.055607775532232,0.534351076570543,1.6767220058029,2.45671261412117 -"Tfru16453_t",0,0,0.576459888186725,0.346210533176433,0,0 -"Tfru16454_t",2.24401674180828,4.39049531830117,1.08699740184792,3.91697626600448,2.18505709136852,3.07838363070339 -"Tfru16455_t",25.5335779431351,22.5054660259512,23.6335267588759,51.0604146889269,58.836985891252,65.9606603914293 -"Tfru16456_t",0,0,0,0,0,0 -"Tfru16457_t",5.13221286667677,7.47852781203401,4.69159248285051,6.45207581048448,7.17570832088675,4.5636651562818 -"Tfru16458_t",0,0,0,0,0,0 -"Tfru16459_t",0,0,0,0,0,0 -"Tfru16460_t",7.353205844328,7.37784518785389,9.18173200461962,6.27497121728751,5.40978272827757,5.91786133995759 -"Tfru16461_t",2.37989735896452,1.91029759254914,3.07418056518841,1.96937889693563,1.02994113765324,1.04473189506591 -"Tfru16462_t",37.1634688521668,100.309964628069,31.3272726463343,76.6117532807525,107.032060562012,149.162871042829 -"Tfru16463_t",143.255479608641,115.647362838575,144.455778136928,25.8998182742558,24.7511294177992,19.2203444408217 -"Tfru16464_t",12.8151422193733,11.3414891097666,13.6768302676374,15.0685087731797,15.7372857325176,19.1527370254293 -"Tfru16465_t",0,0,0,0,0,0 -"Tfru16466_t",15.7733768632105,15.6886113712985,18.012606832708,19.1532145578505,16.3235160714594,17.0596900742599 -"Tfru16467_t",6.11726044452287,4.25551245252816,5.61908473533467,2.10919523852633,6.00065705539526,7.45935192067691 -"Tfru16468_t",464.948117597444,607.720575578169,461.899571176693,258.761536983676,422.888410377592,765.202667878994 -"Tfru16469_t",2.46847336253029,2.37767500549603,2.30287538583898,2.55334506838251,2.56385739026394,2.949841264929 -"Tfru16470_t",0.0940765697328639,0,0,0,0,0 -"Tfru16471_t",0,0,0,0,0,0 -"Tfru16472_t",1.45382605043296,2.91739514906608,3.3087657488196,4.51143564987139,4.49405712721379,3.19101670297635 -"Tfru16473_t",0,0,0,0,0,0 -"Tfru16474_t",5.24038134338907,5.28760960340454,5.51717427205695,4.92777956783585,4.57838440956174,5.70901513835147 -"Tfru16475_t",7.89766971715053,10.3797440573664,7.10004443895271,51.7084029385495,57.4649699416468,42.0349892614277 -"Tfru16476_t",2.14919191375105,2.34122721849741,1.42113558090437,0.079395928576779,0.0664356732008397,0.0842371765551088 -"Tfru16477_t",0.198137681064735,0,0.597193410108535,0,0,0 -"Tfru16478_t",0,0,0,0,0,0 -"Tfru16479_t",10.81547914918,12.2884265715448,9.3793629948713,14.6538394849274,18.9201027374049,32.8222304965879 -"Tfru16480_t",2.32240224247992,2.10729703178077,2.17384963844453,1.93224592644804,1.96642006870454,2.91811281627635 -"Tfru16481_t",38.2954879972877,36.9993255722701,43.2934425437689,76.6840842400052,87.8478712860958,80.6571399504678 -"Tfru16482_t",10.8967434306062,9.59305092291831,8.4756487325864,22.5427963066596,20.9926998241172,16.4592628823773 -"Tfru16483_t",4.64879555257021,4.21126236864963,4.68960372279018,5.70166327088113,4.54102268865392,5.00466495029004 -"Tfru16484_t",0.860174506192295,2.99193025672628,5.18518783384339,2.37266467787808,2.23353105414632,5.24445902955441 -"Tfru16485_t",0.120358705976286,0.19321921208305,0.414588630185868,0.871478376491393,1.56261843090944,0.0880588249661572 -"Tfru16486_t",10.0310897637549,7.57040646848691,7.46461313356391,2.48121293212234,3.25584377544712,2.87182628650175 -"Tfru16487_t",1.34499371678426,1.24569282666843,1.960105605029,1.17720108633021,1.52233417907811,3.55770666482728 -"Tfru16488_t",0,0,0,0,0,0 -"Tfru16489_t",6.013958689586,7.79792734227245,6.77245138461661,6.89065721978468,7.04715671807497,6.29543013640212 -"Tfru16490_t",0,0,0,0,0,0 -"Tfru16491_t",38.9596685711637,38.0062983132663,80.3621359309936,495.953456152437,390.227648783537,1212.90490833858 -"Tfru16492_t",0,0,0,0,0,0 -"Tfru16493_t",0,0,0,0,0,0 -"Tfru16494_t",0,0,0,0,0.159810646853448,0 -"Tfru16495_t",0,0,0,0,0,0 -"Tfru16496_t",29.8727527159062,42.4164537334049,34.1761533710086,20.3024256438585,32.8565766367757,41.266015775604 -"Tfru16497_t",0,0,0,0,0,0 -"Tfru16498_t",0,0.262387179054415,0,0,0,0 -"Tfru16499_t",18.9964984512435,13.6707300619228,21.999866843898,25.0702317474427,20.6943884414709,12.8201976635915 -"Tfru16500_t",29.4633548866688,21.0929446972558,39.0872588639216,41.8020504666796,29.4646146408354,20.8282074767109 -"Tfru16501_t",0,0,0,0,0,0 -"Tfru16502_t",1.04577232495578,0.979324761657453,1.05066392483825,0.180288057732956,0.301717196341573,0.382562613027247 -"Tfru16503_t",34.40187535448,35.5176473012307,30.4839515352392,41.3865413480094,34.1992413188533,20.8835292288435 -"Tfru16504_t",0,0,0,0,0,0 -"Tfru16505_t",0,0,0,0,0,0 -"Tfru16506_t",0,0.159511543505581,0,1.85000495433604,1.93502246855373,1.3085405994971 -"Tfru16507_t",18.7433509928329,19.8807943077963,18.0864289918585,23.196105722821,21.4375477273132,20.753640718269 -"Tfru16508_t",9.13156269254864,7.32972880619398,5.66183864092961,8.31206332260984,5.69064868578149,7.48270293538512 -"Tfru16509_t",23.3768004929245,27.5597803112894,28.6237397958108,32.4926111702021,43.3121594417814,42.223823706816 -"Tfru16510_t",5.77170527437425,4.95794753640345,5.08658107444794,6.21454166382349,4.29446971265283,5.11179886864612 -"Tfru16511_t",63.3564422450283,64.1284636643735,66.5123064585973,59.4209485459298,53.6300527660013,39.2598959207219 -"Tfru16512_t",0,0,0,0.114642274178476,0,0.243265408283817 -"Tfru16513_t",13.9522533860708,14.43982474922,13.8044829054468,10.3787311708912,9.66092065854698,12.9011468328157 -"Tfru16514_t",152.268807898248,115.135046918204,160.619821103834,202.434806643106,164.535730112333,102.499971926374 -"Tfru16515_t",547.32760466598,546.54855816266,529.570640881616,535.73137219521,575.530077779496,535.667996386882 -"Tfru16516_t",1.74232521708142,3.52672974840857,2.2179930954849,7.36563689789428,4.39299149623749,3.82424628315605 -"Tfru16517_t",9.75412516142823,8.73651781812968,7.70834000219384,10.1817760378164,9.06027369913214,7.87623067509689 -"Tfru16518_t",17.642179122004,17.0269600167886,17.4534039771434,22.593699395094,21.541476379302,15.6735902557263 -"Tfru16519_t",0,0,0,0,0,0 -"Tfru16520_t",0.390141068598053,0.365351807367564,0.615946498174747,0.403555002293891,0.450240522094855,0.333015030019074 -"Tfru16521_t",0,0,0,0,0,0 -"Tfru16522_t",0,0.0204034810943978,0.0218897779024006,0.657328621991563,0.616032569111326,0.334756755484054 -"Tfru16523_t",26.0445524172214,23.0496082331505,25.6487991426673,18.7889392058994,19.1899811714483,21.8889879190916 -"Tfru16524_t",6.30794637874349,14.2692058397715,6.91358377845785,8.8974925420428,6.45242304531159,6.71290755782965 -"Tfru16525_t",0,0.230148481286637,0,0.88974925420428,1.24085058563684,0 -"Tfru16526_t",19.0096472985641,18.2119685081557,13.2017729866993,10.7830682120968,12.7381917053423,15.2541024385952 -"Tfru16527_t",14.3432350585398,12.6643411861166,16.5865787827775,15.684181568827,16.1389264218708,13.1925006456616 -"Tfru16528_t",2.13036236575887,2.37913137876903,2.55243981362501,1.91618178229955,1.16245947366662,2.27020893515287 -"Tfru16529_t",3.96237603638556,2.63437227793842,3.48114212134865,2.19420615666798,1.45496972909452,2.66475485669384 -"Tfru16530_t",5.13893262165769,5.47000506121816,5.96467339093205,4.27560800745948,4.44792132798228,2.45206355690337 -"Tfru16531_t",0,0,0,0.382814289988038,0,0 -"Tfru16532_t",0.246004031541574,0.394925358811037,0.423693797759496,0.381693311100811,0.638774620658733,0.449963834746543 -"Tfru16533_t",2.97758297417788,2.390048279083,2.85902128804219,15.3997951086327,29.3926480196433,126.152124260447 -"Tfru16534_t",1.26417803623245,1.10697956252232,1.68245851087056,6.06271003446172,12.1355526769288,77.5250138986597 -"Tfru16535_t",1.17497030449577,0.825235201256804,1.64422081744168,5.62107905875792,5.21200632351588,5.15790711829743 -"Tfru16536_t",19.1037295124113,25.3106580474709,24.1813078028135,39.5211180146007,49.6047869459218,53.2135860414667 -"Tfru16537_t",58.2596917011623,53.416205676989,62.3626019026383,53.5272385054736,61.3563090343068,63.0531177432072 -"Tfru16538_t",45.7372183557219,46.8465275874137,50.1223155048479,41.3139115738414,49.4151739743586,46.5345112674183 -"Tfru16539_t",139.860475249106,120.463213362341,124.029495454569,111.578115474233,113.08457068385,124.061076753561 -"Tfru16540_t",8.8287268679812,15.3503178693209,7.10303393134805,25.2164644996993,20.7564973781383,24.8989369623945 -"Tfru16541_t",8.81307767220906,9.83022484580021,9.16641905309448,7.1034477243012,8.12334500558878,6.02927017370463 -"Tfru16542_t",356.609564847075,247.87626326933,499.684376147483,95.2890770244018,92.7728358544071,76.7253505418922 -"Tfru16543_t",30.684830069977,33.0967234515828,30.2778519584695,33.3378570168086,34.120637156345,32.8567187277339 -"Tfru16544_t",9.52967894628851,7.95835120796266,8.45518536657491,7.19386017361365,6.62360426617744,7.51806947747444 -"Tfru16545_t",2.59825907540559,2.08557232011293,1.64083067142634,5.01684046837932,5.39731627929791,7.35046076274208 -"Tfru16546_t",16.5777152976298,17.0084508203077,18.6767872082099,9.41189258069997,11.6514765376535,12.5848342077747 -"Tfru16547_t",3.88630679946656,3.78317892319697,3.56032066768868,6.0726554249382,6.22648076347811,4.59778006575266 -"Tfru16548_t",1.84132332649748,0.554247986440969,1.38745208704668,0,0,0 -"Tfru16549_t",205.422633612339,180.130595593284,206.135738646899,244.030999788907,233.58077387182,185.23716660001 -"Tfru16550_t",0,0,0,0,0,0 -"Tfru16551_t",35.3458292514017,39.6494911903002,28.862663687356,50.6405283279211,46.87129337592,36.4614161513617 -"Tfru16552_t",0,0,0,0.174964115088493,0.0488012377975296,0.288762026029962 -"Tfru16553_t",84.5754689918832,69.5502518112397,117.602340978452,178.279018165842,189.936387064667,165.652470653153 -"Tfru16554_t",5.72378391190081,3.40872662723219,7.15507080996599,32.467699891513,40.5919043007759,48.6316956868043 -"Tfru16555_t",41.0199920696406,33.9324246993782,37.9467934498694,25.3840972373944,29.6126743385905,36.761085887631 -"Tfru16556_t",21.5353702805313,17.6461508455661,27.1417172054058,9.7456647282936,19.7074905161799,37.0923992543695 -"Tfru16557_t",0,0,0,0.0911367003956839,0.152519862230349,0.161156423246926 -"Tfru16558_t",0,0.23997688618144,0,0,0,0 -"Tfru16559_t",3.60399545321298,2.94273431656959,2.40795652258471,3.79218327352795,4.08746462144397,3.95522204504058 -"Tfru16560_t",6.54514467927217,5.13268861866848,5.24701117857094,4.89947351153322,5.03145514247723,6.66317793607324 -"Tfru16561_t",7.64284326554306,6.69691206040369,7.02742003598125,6.36229302396212,6.53607589378149,7.06213264406007 -"Tfru16562_t",20.7748003295987,21.6123652196518,21.4212369404658,15.3628107850839,18.7699511363991,18.4328514555243 -"Tfru16563_t",0,0,0,0,0,0 -"Tfru16564_t",0,0,0,0,0,0 -"Tfru16565_t",0.765034734401343,0.805978147613362,0.988216951177242,0.593503771159599,0.53800795454647,0.734642149319255 -"Tfru16566_t",21.3610002371087,18.9297125858259,22.9012462661416,28.0271015074348,31.9519025801487,29.8934164684601 -"Tfru16567_t",8.02879360978212,6.6789049278334,8.23396072261846,17.1381733699336,9.53934882021388,8.490829289656 -"Tfru16568_t",7.22459951317503,6.73943222714779,7.14629384919452,12.017388048166,11.4922519782584,10.0001259450237 -"Tfru16569_t",0,0,0,6.68452644824915,0,0.429825593191227 -"Tfru16570_t",0.34313292078195,0.504947961325276,0.640227574933043,0.473240810495764,0.593986475030516,0.543938582534316 -"Tfru16571_t",2.01624904202125,1.07893608000768,3.47259436558689,5.56152600358501,2.90855377202088,3.4420433494347 -"Tfru16572_t",4.41104603573232,0.965634916710997,7.07917507079902,6.42927006836712,0.347082789108922,0.146694653523574 -"Tfru16573_t",0,0,0,0.730242383941173,0,0 -"Tfru16574_t",0.381215549728633,0.382492938269907,0.615533601538008,2.95741952900572,2.22719659284698,1.56887560532445 -"Tfru16575_t",17.8558640524679,23.0260748838484,37.3071984779799,102.038015225766,34.4567345898655,12.8498382912288 -"Tfru16576_t",0.763730680820012,0,0.657688312249044,0.7899894716487,0,0 -"Tfru16577_t",0.752331732281619,1.61035235861456,1.72765888877454,1.55639720287674,0,0 -"Tfru16578_t",13.4789292121287,12.4895327221846,11.8213702246232,13.9102400655136,13.8169744841464,15.3151387515632 -"Tfru16579_t",14.8168986429094,19.7450845169595,16.7237528349376,13.5407445004844,13.9451208281708,13.6822907147759 -"Tfru16580_t",12.970723254499,15.5369358352672,15.8095151282753,8.66924332718754,9.93122576794144,15.3297655148923 -"Tfru16581_t",0.749137117707175,0.429512770808819,0.921601477292151,1.54978829755667,10.9302339230085,16.6777805643547 -"Tfru16582_t",0.194693804800573,0.234415428796007,0.251491480767441,0.226479857678422,0,0.142445098091258 -"Tfru16583_t",11.0211632893235,10.7659927564245,10.2519609879594,7.04439884986033,6.92941338182001,6.77028505513319 -"Tfru16584_t",0,0,0,0.0616741262081509,0,0.0436231794367478 -"Tfru16585_t",3.60750441430333,3.60967585679153,3.19172276326914,8.12759774619897,5.60324329747047,5.96572639491313 -"Tfru16586_t",0.197361887481866,0.211224761212168,0.283264353827071,0,0,0.0481323882743756 -"Tfru16587_t",0.803927050444474,0.645296698727126,0.692303502080708,3.32627153405874,7.30617574490288,4.70545912546432 -"Tfru16588_t",174.021494740855,174.858120622049,178.348508442274,23.0314604880585,21.9371654381395,28.4218133783626 -"Tfru16589_t",52.0333268369221,62.1730567439717,52.1550823921245,22.9665404331694,15.1100053089177,14.6325697232937 -"Tfru16590_t",3.72892011779271,3.4961794842823,3.66990577082097,5.44535835993428,3.71570185438631,3.94330111530659 -"Tfru16591_t",0,0.0613031863790769,0.0657688326976672,1.02698633614064,0.859345432852862,0.502895944034 -"Tfru16592_t",3.33080788961686,4.2779689788523,3.88147830672472,3.50855429206424,2.92755416131449,4.06156782993685 -"Tfru16593_t",12.2620582867217,13.3581201675594,13.5740774280728,11.5503454427845,10.902059183176,9.53793890018274 -"Tfru16594_t",12.5859412040496,11.5313800400791,11.0266704634379,6.13783655285653,7.1902909251572,9.50537728170005 -"Tfru16595_t",8.23770389305824,7.32477210032335,8.83681822256483,8.48420664585915,6.9148837580819,8.23517496405821 -"Tfru16596_t",0.803927050444474,1.29059339745425,1.03845525312106,1.66313576702937,5.21869696064491,3.23500314875672 -"Tfru16597_t",106.019083260973,113.667854265157,98.0132828600714,96.6554505444199,56.8212975062314,61.7411005142207 -"Tfru16598_t",38.8728703225436,31.0735654093562,33.8904405583581,15.3692983824547,11.6091892936513,11.6936394889571 -"Tfru16599_t",9.65457527308571,12.374266907658,9.65503530983363,5.87916181593307,11.1867452797414,19.9376931781577 -"Tfru16600_t",4.30297051756194,4.81080493108975,3.83785200558948,3.02026469399709,4.21208244526848,3.63543341656014 -"Tfru16601_t",44.9706438885173,46.8215570133446,45.0687431511632,32.2247070205136,28.5439916408607,32.2345852929646 -"Tfru16602_t",0.873288739827936,1.61223556693414,1.05284825732232,3.70358897808593,5.74454487338071,7.47548024915405 -"Tfru16603_t",0,0,0,0,0,0 -"Tfru16604_t",22.2271968636682,20.1243563561659,22.1799718545926,19.1776758791249,19.0104533421561,14.7978576635292 -"Tfru16605_t",3.88594253788634,4.60449043067516,3.82444313484232,4.40236433486244,3.36341570635396,2.30155510363088 -"Tfru16606_t",2.65451161243895,2.84096685852714,3.51357192820188,3.76273519205328,3.61654579699071,5.57465434352753 -"Tfru16607_t",0,0,0,0,0,0.101010780322724 -"Tfru16608_t",0,0,0,0,0,0 -"Tfru16609_t",5.76071155004211,6.59885013380492,5.83933278880002,4.59322460229933,6.59618444887609,5.4879517702123 -"Tfru16610_t",0,0,0,0,0,0 -"Tfru16611_t",4.28491875341231,2.18872272852655,2.6836123388229,2.28327719484365,2.02295084656838,3.13500305142266 -"Tfru16612_t",34.4743777189605,35.0600494211812,35.3802256374602,14.8005002932925,17.8887644886701,16.8355492552329 -"Tfru16613_t",19.8338157639168,19.9571334409457,14.8839415649695,5.64183050143416,4.93546751064476,10.624230408438 -"Tfru16614_t",13.440092925656,16.7011152817252,9.41439121031439,3.56674358992586,1.86532716301658,7.19576959721119 -"Tfru16615_t",38.4633307851523,49.8269759703902,32.5876782723131,8.61275523140247,15.1666450427263,22.7766235007509 -"Tfru16616_t",0.188364073478582,0.907177197537909,0.64884050195008,0.389680914023698,1.79339077915137,1.24032631936637 -"Tfru16617_t",0.330749514848218,1.59291744134609,0.284825653415094,3.76333575629973,5.72549955262355,4.59778006575267 -"Tfru16618_t",97.4386088228276,94.7167912626177,94.6782097076308,52.5212792362709,55.2073143675549,46.1141457838258 -"Tfru16619_t",0,0,0,0,0,0 -"Tfru16620_t",15.5749574913358,14.017076885553,15.6478093525068,6.34654477390281,6.33182352210082,8.28742379681497 -"Tfru16621_t",18.8191561827129,22.5334732111211,26.9505699334129,11.8840621818254,10.0791467371927,12.6277226871024 -"Tfru16622_t",2.72087174041372,3.95373806623586,2.61111432384258,4.94545113571285,4.8862291304161,5.39056039141933 -"Tfru16623_t",0.997046674106825,1.20956959671721,1.16791290351014,13.2729667404254,7.08112708956523,4.34710979294596 -"Tfru16624_t",5.75044290200282,5.69759026346715,6.03525758872711,6.31991591471161,8.08795701508575,9.92644281688025 -"Tfru16625_t",0,0,0,0.212466610824657,0.0888922302179939,0 -"Tfru16626_t",4.54929838112531,3.77335497387459,3.65646217885948,4.07828508936715,5.11884463612715,3.8831716496809 -"Tfru16627_t",0,0.0587399869485928,0,0.302783427969633,0.633395856431351,0.2677049644006 -"Tfru16628_t",18.3772699187541,16.9943309014578,17.8676415443763,15.1547378852019,16.7124561538072,14.5607752612891 -"Tfru16629_t",17.8108303474176,17.4593315053356,17.916762678614,16.6297975054091,14.1880671840623,16.7212639302528 -"Tfru16630_t",160.383446563672,122.28372440879,192.460373578437,231.59165555884,179.871088576895,104.990556736923 -"Tfru16631_t",0.59687656675984,0.838427238221833,0.514001534404504,3.85874084490607,5.16617011142586,1.4192642588684 -"Tfru16632_t",16.147053377649,14.4282023427093,12.7900404475518,3.54528374635341,3.49395625464271,7.85727419358047 -"Tfru16633_t",1.0245167898957,1.46849967371482,0.441132414435573,0.151391713984816,0.12667917128627,0.42832794304096 -"Tfru16634_t",21.4383326615934,21.6850482938436,23.8650805784689,3.42547309692616,8.9006572920764,7.77877313155402 -"Tfru16635_t",2.49535707941052,2.67063317017583,6.44664628735656,6.88307495559137,4.31963319684909,24.342591644587 -"Tfru16636_t",2.28681541354943,2.02880172687203,2.69482609620814,2.48993821854684,1.35426930678818,12.5924119701605 -"Tfru16637_t",0.240258465504616,0.128567216428951,0.206899092375883,0.579877890172538,0.485221077433969,0.527345603848808 -"Tfru16638_t",1.00611229666404,0.403793443215477,0.433207880044515,0,0,0.736108500914703 -"Tfru16639_t",5.77571340303701,5.79506683739711,7.40413186854206,6.44952356530628,7.15776905008453,9.94005264379702 -"Tfru16640_t",7.70737401572913,5.25857607930614,5.97349948354959,12.3571750396597,11.0071415711217,12.9696915229971 -"Tfru16641_t",0.315038912892928,0.0842918812712307,0.0904321449592924,1.08623554784106,0.454461526989494,0.153662649565944 -"Tfru16642_t",1.28412600363965,1.45449305997912,0.798653454124185,0.752690393205081,0.456931426592698,0.814245018080411 -"Tfru16643_t",2.86864701170796,2.91937735134506,3.79373876414592,2.54338079494492,2.34989862736031,1.42419041061119 -"Tfru16644_t",47.5530434555363,41.259853474004,38.0253763171149,1.40537213736848,8.03576177102717,17.8927936960884 -"Tfru16645_t",16.6464379265212,19.68960577419,14.4807977590877,17.6737479390974,13.6466578543442,12.0553701713435 -"Tfru16646_t",129.933959596138,142.667154271008,133.353670477285,131.483138701358,152.346356659463,130.154557654736 -"Tfru16647_t",0.06427725843263,0,0,0.199461768540057,0.445073262851226,0.0940551795353905 -"Tfru16648_t",6.56331068526933,7.22501839467692,8.80098553621685,4.26735393794701,3.97653836115807,4.66475900468045 -"Tfru16649_t",62.6762385384786,68.2665888126646,70.6574837485645,56.0041279024161,54.5478598764054,51.0872940629673 -"Tfru16650_t",7.90778010616607,7.16441712202818,7.07949690268458,1.6197361384396,1.82970530903506,3.6661359076311 -"Tfru16651_t",1.67319092831023,2.25283794467279,1.71975039562805,5.22007189068494,6.0964707250502,6.53547536220078 -"Tfru16652_t",10.7669285575548,12.96360804711,11.2239559342393,6.15472418338272,5.51791398705625,5.70080656062525 -"Tfru16653_t",27.5749438675983,32.297914415174,28.3404793996375,43.6821273102724,57.7482558549466,64.0045496738333 -"Tfru16654_t",0.419352962253481,0.246844777100443,0.337051588533802,0.925378702986059,1.16148569959378,0.449993782422732 -"Tfru16655_t",1366.20991111621,1960.01885045392,1003.12850788334,356.008874220386,772.201980938931,1189.48402727614 -"Tfru16656_t",5.74931349413537,8.1937359448012,2.32395456319969,0.606835501587183,0.710889539424907,1.45936594559835 -"Tfru16657_t",0,0,0,0,0,0 -"Tfru16658_t",0,0,0,0.573211370892379,0.383714218038623,0.243265408283817 -"Tfru16659_t",18.154526669972,17.604105733223,16.8929082969643,24.8912569338488,20.6171958872101,22.9546815160149 -"Tfru16660_t",0,0,0,0.323044029097712,0,0 -"Tfru16661_t",5.21443717891743,5.02263347712713,3.19319022201088,4.3149770728031,4.81415796866112,3.89985207174259 -"Tfru16662_t",4.18151196599965,3.96667676570498,4.91034271272176,3.53886694319259,3.29021919992394,5.00620396775927 -"Tfru16663_t",1.62600729235059,3.04538409754122,4.20071899165743,3.92446391478058,2.34560788123609,2.77584141151382 -"Tfru16664_t",25.4973127944471,23.3524589358429,30.6835915970829,44.632869203119,58.2842487532052,49.5068769807789 -"Tfru16665_t",0,0,0,0,0,0 -"Tfru16666_t",37.2812006341378,24.8007723618697,36.9424932599663,53.0901751042073,61.6631080997295,36.0570107796076 -"Tfru16667_t",0,0,0,0.45103206138729,0,0.106340933955671 -"Tfru16668_t",0,0,0,2.38079024184341,1.77871439134831,0.721703246493672 -"Tfru16669_t",6.56980025089072,6.91004006466179,6.4379558478885,4.53045657706293,3.62752212104872,4.69620681819515 -"Tfru16670_t",0.312306233351106,0.0626705436960823,0.201707386526303,1.04989309456757,0.675779222289211,0.514112953938103 -"Tfru16671_t",0,0,0.100340798845262,0.0602627211007522,0,0.0426248681181538 -"Tfru16672_t",0,0,0.146448817747842,0.175908590743491,0.147194016838703,0.124423198029105 -"Tfru16673_t",2.09046038622575,1.46822561467774,1.74394805209211,11.8252703497471,12.3828397400559,10.8495867656203 -"Tfru16674_t",0,0,0,0.213904846344085,0.178987924475862,0.0756493044016956 -"Tfru16675_t",16.5809954154173,18.4554855835958,21.8940982533024,18.2944934373231,15.6908821950057,13.7487633822161 -"Tfru16676_t",7.66728659445006,7.47790585566169,6.88668738846034,13.9004038703115,17.7681523407865,18.5782516452643 -"Tfru16677_t",5.33712981842137,5.07734626010237,9.53261198629717,14.3127507480234,28.5722635321395,30.3709707377396 -"Tfru16678_t",13.2022370772714,14.0387084724597,14.5495679408988,25.1607061713159,41.813216187088,57.4274358862923 -"Tfru16679_t",0,0.173350912640063,0,0.223390344029009,0.186925049661489,0.158007865877578 -"Tfru16680_t",1.91113653318933,1.66186837008682,1.9200758740172,1.07079144052578,2.55015378177991,2.6799931298705 -"Tfru16681_t",0.421315831351291,0.777818763987285,0.580507249487935,1.17666438482281,1.60451812939119,1.38712522175877 -"Tfru16682_t",2.09502186462462,1.17714347909948,1.80413256776643,1.30023207721623,0.906656412946622,0.306558901877196 -"Tfru16683_t",1.26296223431463,1.05130185995299,0.563942106650376,0.580615883033082,0.769244455483331,0.684466145059885 -"Tfru16684_t",3.92148975952896,2.30024523397254,4.80572978598753,1.71613515637366,1.30545501469155,6.51066163331469 -"Tfru16685_t",96.392663624148,102.979313700451,107.741061138809,110.824932864684,129.128474812982,127.082314072961 -"Tfru16686_t",3.774535541721,3.02974669524321,3.71479927945745,6.02379661960638,4.94715500496907,4.49744340193008 -"Tfru16687_t",0,0,0,0,0,0 -"Tfru16688_t",7.07646802178499,8.06871744695669,7.1876953228984,5.7432065250862,6.31338345917154,5.84117199213957 -"Tfru16689_t",19.2576849118297,18.6065765813996,20.4445746760608,26.0327646153297,22.0037648968109,23.5572576169016 -"Tfru16690_t",13.2142156027539,13.8209757661122,8.82769460803769,12.922992980988,9.91237343900822,15.1172406436658 -"Tfru16691_t",40.9207170848875,56.5234370796411,48.1889708767589,50.1051853393121,26.1569594880012,14.0703149000142 -"Tfru16692_t",27.7325669390631,28.2128086286296,27.5561070492644,9.56202513698053,7.38568672640726,8.99307404956675 -"Tfru16693_t",131.653845477403,149.915090851518,126.483617513534,181.08785911659,177.758508677501,126.436515683119 -"Tfru16694_t",8.34460076376661,9.15723700566537,7.81083785636882,15.3449014052019,14.1659408796725,13.537649932969 -"Tfru16695_t",13.7610526157477,17.1140644684157,14.5569236375322,46.1293154796,43.0842394039787,27.2211286187598 -"Tfru16696_t",3.33025427740218,4.14530819556404,4.86994348322292,4.2896961051614,3.97016502261577,3.31001070119611 -"Tfru16697_t",8.71340502717556,6.26828079903477,7.22041392238577,6.63220138799237,8.32438335151011,6.31490340681963 -"Tfru16698_t",0,0,0,0,0,0.205568761961129 -"Tfru16699_t",2.81000225752772,2.60432846962147,2.04563748597572,1.34843033525097,1.45427688636638,1.73797755371137 -"Tfru16700_t",11.14904065565,11.15488821309,10.2771484364953,14.0499999832899,13.8632002251748,11.7185721538141 -"Tfru16701_t",51.0873912799343,60.013215854884,52.3738291270033,274.788235886278,289.030512454477,136.101203901265 -"Tfru16702_t",2.83446444589701,2.59116560983727,2.3052992904337,3.5834574774138,4.63405943172043,4.32041189032646 -"Tfru16703_t",42.2677208131345,49.1000208404919,58.7808942235401,74.950252801033,88.3927669994566,64.730391129654 -"Tfru16704_t",0.69814717538599,0.840583857552439,0.200403645339152,0.361075528368219,0.100711695731744,0.170263323618775 -"Tfru16705_t",0,0,0,0,0,0 -"Tfru16706_t",3.9327566815319,3.35824228172234,3.96316173128373,5.02005273105827,5.86635596592016,6.06079773188386 -"Tfru16707_t",0.672083014007084,0.53946804000384,0,0,0,0 -"Tfru16708_t",0.235543112443311,0.504175738444745,0.338064093305766,0.56849710915046,0.407741183093378,0.459551849169179 -"Tfru16709_t",1.24275705283206,0.399014822585708,0.428081159570615,4.11355473738625,2.79668631993535,0.909246447135765 -"Tfru16710_t",15.5900071896831,14.8050559890923,14.7868138752047,15.8080489555123,14.2538900258074,12.7235565558001 -"Tfru16711_t",21.2651266202726,33.2952931021361,23.0601969646196,17.3797687654569,5.45353832387393,3.64948792719118 -"Tfru16712_t",0.466148823022828,0.0831485881837048,0.223013920984691,7.12549089335934,9.63839490039371,10.1557558776012 -"Tfru16713_t",3.55307044616084,3.2956224256421,3.05973422794598,0.980062148428022,0.751740871711945,0.924286613930492 -"Tfru16714_t",10.0620793471505,9.89708476675135,10.3704695512253,6.11265631484702,6.635483892166,8.24987304893967 -"Tfru16715_t",10.5350633250368,3.03559186571635,6.28081778495407,0.838252512803389,0.935226293483204,1.18582108989796 -"Tfru16716_t",20.697101913693,25.8086414655914,17.6918159956725,66.9911086959431,39.0671654473878,20.2275924155898 -"Tfru16717_t",0,0.0760242446640187,0,0,0,0 -"Tfru16718_t",0.554262617719257,0.953348327290074,0.750049835666139,3.276110983121,6.57919797790634,8.68968800561419 -"Tfru16719_t",1.97671474756347,3.96667676570498,2.97894124571787,6.13403603486715,25.2359812634166,31.4556482640874 -"Tfru16720_t",1.17314723187436,0.470831299575532,1.34701100327263,1.34831410127672,1.29745416549367,1.62126612420236 -"Tfru16721_t",6.11912932041236,5.79153385255652,4.49042374970279,2.99651185611326,2.7581113362121,2.96727875023892 -"Tfru16722_t",0.70221439550602,0.563653917315221,0.93455712115986,0.858423229296885,0.497283129836528,1.07423736778624 -"Tfru16723_t",0,0,0,0.129570840696746,0.0361400816691447,0.0305492345061519 -"Tfru16724_t",0,0,0,0,0,0 -"Tfru16725_t",1.23620419528801,1.73648510773351,1.06455989161153,6.12714104238978,5.97403748537998,4.63531720333811 -"Tfru16726_t",0,0,0,0,0,0 -"Tfru16727_t",0,0,0,0,0,0 -"Tfru16728_t",4.49896503388981,5.07717800233924,4.37296480397002,3.45568042791429,3.62263939795451,5.37737798056857 -"Tfru16729_t",0,0,0,0,0,0 -"Tfru16730_t",3.86539935335068,5.20908882148931,3.90892851153716,8.65687089203848,7.45861720951943,8.40636529495415 -"Tfru16731_t",0,0,0,0,0,0 -"Tfru16732_t",0,0,0,0,0,0 -"Tfru16733_t",10.5012970964309,11.6306586177131,10.8257711994537,15.2490759600764,17.7414788420899,15.6248319149987 -"Tfru16734_t",0,0,0,0,0,0 -"Tfru16735_t",0,0,0,0,0,0 -"Tfru16736_t",3.59199297061018,3.4598679636481,3.56633811107069,3.36580028908497,3.69421442462285,4.76137787387433 -"Tfru16737_t",110.263619512525,107.663721078254,87.5547585287695,102.204890183227,93.3711864542052,112.453120818714 -"Tfru16738_t",0,0.301042433111538,0,8.14676660880794,10.7123074218952,12.6222890714883 -"Tfru16739_t",0,0,0,1.30229874945522,0.693456280964896,0.586179044665727 -"Tfru16740_t",35.7018888080341,29.9524572104253,29.2683148631755,27.8535309746519,29.1553709511627,32.3189630299561 -"Tfru16741_t",8.10252364800763,8.21524934217071,8.07921701159161,2.64666529423202,12.5495974965627,23.712408867029 -"Tfru16742_t",0,0,0,0,0,0.357354998990568 -"Tfru16743_t",0,0,0,0,0,0 -"Tfru16744_t",0,0,0,0,0,0 -"Tfru16745_t",0,0,0,0,0,0 -"Tfru16746_t",0,0,0,0,0,0 -"Tfru16747_t",0,0,0,0,0,0 -"Tfru16748_t",0,0,0,0,0,0 -"Tfru16749_t",0,0,0,0,0,0 -"Tfru16750_t",0,0,0,0,0,0 -"Tfru16751_t",0,0,0,0,0,0 -"Tfru16752_t",0,0,0,0,0,0 -"Tfru16753_t",0,0,0,0,0,0 -"Tfru16754_t",5.71448675918856,6.49315551841989,6.45487395115797,12.3592878588276,11.1768629959254,10.7509556940131 -"Tfru16755_t",0,0,0,0,0,0 -"Tfru16756_t",1.44017788751053,0.385334314382769,1.0335102281062,1.24141205467549,3.32406145455173,2.98544576299549 -"Tfru16757_t",1.57914242051593,0.760528252071255,1.63185825490452,0.980062148428022,6.01392697369556,6.23893464403082 -"Tfru16758_t",0,0,0,0,0,0 -"Tfru16759_t",0,0,0,0,0,0 -"Tfru16760_t",0.390745938471849,1.2545768375253,0,0.80836133792823,0.338203927061949,1.14353599676982 -"Tfru16761_t",3.18522755531554,3.03610567612016,2.91440088020468,2.67697860131446,2.75692300732963,2.62173240965592 -"Tfru16762_t",20.3934635259322,16.7445307226971,17.8747815758924,17.1922027382072,18.4016586664983,15.806255178625 -"Tfru16763_t",18.0744367987881,15.7549368927267,15.4799022425181,18.3898052243828,13.7872449162413,18.5639995777349 -"Tfru16764_t",17.2221272381467,16.6406853063095,14.2058071933299,14.7728034506384,17.4513226363966,17.5175420505177 -"Tfru16765_t",0.142452999693705,0.354954659498368,0.818690298974811,0,0.113197604166654,0.0998119510344666 -"Tfru16766_t",22.863583551723,33.2899581729417,26.0994038616692,25.8496560752049,28.533280681872,47.849382016737 -"Tfru16767_t",10.1625455771912,12.3595133828784,11.5625851032996,15.3538279782812,15.6729253882594,18.2051936729154 -"Tfru16768_t",6.07969831898633,6.65462220562348,5.59251422774571,8.71846952872428,6.93651804352386,8.18860172029045 -"Tfru16769_t",3.91573790036408,8.57205572249804,4.90479430287688,12.5193249581681,13.2487089224056,9.11558090645432 -"Tfru16770_t",1.06955319934824,1.08528581218784,1.09483067642285,0.647096843297099,0.663734346407909,1.00399329046209 -"Tfru16771_t",3.28282111717912,3.11415831339538,2.9555088228259,1.54349633796243,0.516617011142587,1.63761260638662 -"Tfru16772_t",0.807791989782145,1.94519703240402,1.39126360574565,2.50669712466524,2.09751449442019,0.591010121455652 -"Tfru16773_t",0.401004185066575,0.321878305570332,0.517988419814563,0.622187425971012,0.520624183663382,0.146694653523574 -"Tfru16774_t",3.23116833736336,2.85295598148781,3.3390330446508,1.0026789672379,1.39834315996767,0.236404076255299 -"Tfru16775_t",0.0633308101452984,0.0504059877345122,0.0548923231748512,0,0,0.046335351559639 -"Tfru16776_t",0,0,0,0,0,0 -"Tfru16777_t",0.459910821741501,0.246107682543739,0.26403545973516,0.475723597594624,0.265378993862478,0.224325035862692 -"Tfru16778_t",0,0,0,0,0,0 -"Tfru16779_t",7.60252112328515,9.20166606452795,6.17176943233578,6.69607538821163,3.29146980155487,6.856275897759 -"Tfru16780_t",7.74115773801851,7.50819380768217,7.46488350647814,11.2185837415803,9.91076553498765,10.8357856228873 -"Tfru16781_t",6.5202083464407,8.05176179307279,6.04680611071089,11.6729790215755,20.4032876594686,43.4842363547806 -"Tfru16782_t",0.497102821132825,0.239408893551425,0.342464927656492,0.205677736869313,0.60236320737069,0.509178010396028 -"Tfru16783_t",121.529574164521,98.5314806316134,135.560419239949,137.519529551917,188.138247677981,167.089483023163 -"Tfru16784_t",0,0,0,0,0,0 -"Tfru16785_t",21.5467596012576,20.5237844067208,20.8449717327167,19.0443894751354,18.4705726017848,20.1048131267016 -"Tfru16786_t",324.756531097499,243.565794237402,334.733909695875,533.714540813132,431.399300241341,345.396940661812 -"Tfru16787_t",1.66908033320756,1.25042260958647,0.67075498247952,0,0,0.0814106752667254 -"Tfru16788_t",10.7485803875557,12.1740236686864,10.9597513200273,37.1741521867112,27.9097879683344,26.6316428761071 -"Tfru16789_t",0,0.160683490906238,0.114925680647234,0,0.115510475485813,0.195282159893178 -"Tfru16790_t",0.987631174388802,0.693658391063765,0.265781469388075,0.957738910660742,3.52616732182884,6.05166643404454 -"Tfru16791_t",0,0,0,0,0,0 -"Tfru16792_t",7.42141137556956,8.24452040136985,7.05562459611723,10.1944933394553,10.5345145478837,12.7273940135185 -"Tfru16793_t",0,0.145174391855726,0,0.0935401978765174,0.0782710918388795,0.661626047646692 -"Tfru16794_t",25.4497583435064,27.6553138552802,23.8894237298049,19.2837321976278,23.6932751149579,25.8735344132705 -"Tfru16795_t",17.4640179709296,17.1268667394353,17.6467756467085,19.2299201763647,24.3192153252383,24.936369619419 -"Tfru16796_t",2.85992771987906,4.4477418202692,5.6953010442448,4.25249661282457,4.33188859768709,4.96951547532416 -"Tfru16797_t",2.87611450018208,2.12242395691227,2.95614742219222,0.911694109728552,0.963629079867287,2.07033056289842 -"Tfru16798_t",0,0,0,0.697582461916276,1.25081154217292,0.140974907858664 -"Tfru16799_t",28.9720424471217,26.5480838673174,31.4994572065735,44.3776394723264,29.1447148132428,13.0683596172054 -"Tfru16800_t",30.9139307782573,32.7696527189279,31.9052736148515,29.2917451103207,40.441969592773,26.761472677215 -"Tfru16801_t",4.48962337402067,5.13259066526037,4.80352122212922,3.58853525116722,4.18031007821915,6.56954485593673 -"Tfru16802_t",16.1999148575056,13.5624487223248,13.3701229562709,17.756276192577,15.2078700874366,23.5076318672694 -"Tfru16803_t",15.1020618361246,15.4341912268737,10.3757117202803,6.65826111839705,3.71426316753693,8.87560294152998 -"Tfru16804_t",0,0,0,0,0,0 -"Tfru16805_t",29.4865628279602,26.5634333457692,26.7980684028539,16.9658350687553,16.908076616795,17.3550670333959 -"Tfru16806_t",23.5137739333127,26.112158872066,26.8839039634418,24.9125761515721,20.3519727303991,26.8074513644935 -"Tfru16807_t",13.3747863516732,23.1488151550843,25.1950254612954,16.4286371414767,16.6409792967297,13.4550379719434 -"Tfru16808_t",5.20693362043199,6.05092505702822,5.82245817684251,4.70266638658293,5.78482017703556,6.42511726214679 -"Tfru16809_t",0.167240298815091,0.089493702743178,0.192025788898298,0.230653865500424,0.386005809254514,0.244718220941119 -"Tfru16810_t",3386.20430279704,3041.72154258008,3096.060151704,52.947667634299,77.7869032242483,123.216003651948 -"Tfru16811_t",2646.32686663087,2193.24711261119,2246.86817727582,51.2845635378423,59.0054965817337,79.6022905445912 -"Tfru16812_t",0,0,0,0,0,0.202187696797295 -"Tfru16813_t",20.2765121913161,17.8297295595484,20.1474945235811,22.642656490208,19.8776002073766,25.4202488142382 -"Tfru16814_t",6.17723358613584,5.43434716901582,5.7025446703742,5.87845120008102,5.56047044787146,4.48333377557108 -"Tfru16815_t",1.60274168721362,1.60811220231283,1.95528962074146,1.65784757699112,0.693613777281263,1.56349913707797 -"Tfru16816_t",0,0,0,0,0,0 -"Tfru16817_t",5.23272824600313,3.68237570058619,4.87654570087652,6.22824477942996,6.26629545746606,5.40179280044104 -"Tfru16818_t",0,0,0,0,0,0 -"Tfru16819_t",0,0,0.0897589528131934,0,0,0.762593794371932 -"Tfru16820_t",0.513301691067907,0.27467822817509,0.589374468166468,0.353966777300548,0.740466846418728,0.500733684939941 -"Tfru16821_t",2.33871682060252,3.16554663289338,4.06747202218651,2.08709013558981,2.89744030307712,2.98602091951289 -"Tfru16822_t",3.67035626671372,9.82041335198805,2.80954236766734,29.1068942916633,39.5337406002512,54.3040819825279 -"Tfru16823_t",1.96133175341901,2.49267820101694,3.16688445382736,10.6510256052898,14.8539954346761,13.8714921008946 -"Tfru16824_t",0.614897542700439,0.832893245863945,0.49642531542155,2.26588934041867,1.23074667876386,1.82764359044581 -"Tfru16825_t",0.064425135560926,0.310276863575082,0,0.399841305953764,0.334572903305149,0.47135782075443 -"Tfru16826_t",0.0722359215575644,0,0.0622061186306396,0.37359778085677,0.312613260181939,0.0528504383717779 -"Tfru16827_t",0,0,0,0,0,0 -"Tfru16828_t",3.00729986133357,3.27044712553505,3.92638412294387,6.92381088231252,6.96910979032388,4.89733155660515 -"Tfru16829_t",15.2097994720584,17.8360190073212,13.8142456232017,10.5704392774349,18.4098700607908,36.4269590767359 -"Tfru16830_t",0.104231236689141,0.0836643982841,0.179517905626387,0,0.27064706321955,0.152518758874386 -"Tfru16831_t",9.41321089125857,8.61198979734984,10.8082756385082,6.28184413209287,8.58549005204249,8.73840609579828 -"Tfru16832_t",0,0,0,0,0,0 -"Tfru16833_t",0.118826558375456,0.190759561575628,0.102327745357049,0.737472507728017,1.33702966921944,1.21712989755203 -"Tfru16834_t",6.45079678780757,11.4396124582385,7.36376037525667,11.7934145194172,17.2695380256008,15.5857830274029 -"Tfru16835_t",34.321312461506,53.4533881232195,29.5558717671834,76.3014238483475,63.8463023282802,56.5928294742868 -"Tfru16836_t",7.74051817202139,12.7723171621255,5.22561351289651,40.0320516507716,55.5566450971426,82.8742379681497 -"Tfru16837_t",0.287460656189726,0.403793443215477,0.185660520019078,4.01414676362136,15.8614459377001,25.238005745647 -"Tfru16838_t",3.24503601263102,4.55827340780046,3.57071130311369,4.19575962685387,6.31955084740756,5.01217226052007 -"Tfru16839_t",0.342201127378605,0.27467822817509,0.589374468166468,2.12380066380329,1.48093369283746,0.25036684246997 -"Tfru16840_t",3.34642999030141,2.88657096386617,3.95707840012124,2.6348638734789,3.11260213491021,1.75405640408212 -"Tfru16841_t",17.8860802158565,15.2269204877061,14.9358897481153,20.1829572760144,26.7399298460914,30.534255526652 -"Tfru16842_t",9.23097889928203,7.81739221467059,10.13715173334,21.8123105977761,19.2046645276206,16.9152836014124 -"Tfru16843_t",163.905959578579,133.215577258043,160.932306947965,154.28978393824,173.622852760068,138.986298546177 -"Tfru16844_t",86.69613050455,84.679925737441,85.2051207237937,138.682553831779,141.093253523511,140.61507932147 -"Tfru16845_t",122.84595403321,139.841639922987,166.976496228408,302.218212253703,347.560572802522,326.642958788385 -"Tfru16846_t",0,0,0.28150084034021,60.5248756618053,48.098651883713,14.3498194147185 -"Tfru16847_t",63.4163933605479,73.4684101352362,66.7156991606297,59.172364473832,40.7423874779687,45.6802584701873 -"Tfru16848_t",101.020057565676,126.685817315268,102.840507330216,144.224337720614,160.378783965596,139.905524154444 -"Tfru16849_t",29.8828856972263,35.3007610156027,26.5834090551477,47.6777213616142,53.9253677662702,45.7894069847512 -"Tfru16850_t",0,0.232529327644774,0.498935972189199,0.599302371222653,0.5014747884022,0.847793928639693 -"Tfru16851_t",10.7820804412553,5.04849770180634,9.28501167496478,16.7291891860013,11.6653226179122,11.1754654229778 -"Tfru16852_t",0,0,0,0,0,0 -"Tfru16853_t",0,0,0,0,0,0 -"Tfru16854_t",0,0,0,0,0,0 -"Tfru16855_t",3.054922791689,2.29886948921538,3.28844163488336,4.14744481902949,7.10612569474482,7.68313247829721 -"Tfru16856_t",1.3772192913352,1.76874767257665,0.94879627498274,2.56422817851004,1.90724837556247,1.81372307684393 -"Tfru16857_t",0.880458097168008,2.35575563378112,1.26368062825212,6.67868843388738,14.7332854863319,17.1780079864112 -"Tfru16858_t",18.2535190476501,17.4484023703668,15.9532329363753,14.4860706683558,10.9004569370573,15.6802428567797 -"Tfru16859_t",1135.42036066142,1861.71281920621,1003.1799279432,1214.56584333346,1065.48472022895,813.765276830504 -"Tfru16860_t",1683.33558137257,2865.2065855089,1542.34909360359,2074.01655453737,1939.29369900028,1323.46043711264 -"Tfru16861_t",0.893727412462207,1.17045837375505,1.07343867476876,1.04609470452778,1.05854420620173,1.32497469390568 -"Tfru16862_t",0,0,0,0,0,0 -"Tfru16863_t",3.05651058939778,4.20583191374124,2.55691719635421,2.52928027771722,3.2502030204654,4.08915158928084 -"Tfru16864_t",16.7136433787406,16.7519022989562,17.2106650617264,12.8061454061262,16.9920773038598,14.3634139804798 -"Tfru16865_t",29.2210006161556,24.7378347209047,29.6853345409851,24.0860925825626,21.9327084764495,20.0429542912101 -"Tfru16866_t",1.46464224143337,1.2359292381298,1.06723675767784,0.582692292091761,0.715111566831926,0.686913945310435 -"Tfru16867_t",50.8035724394902,48.2969698094619,47.660184505573,40.2200729876284,43.4809136633192,43.3993158909221 -"Tfru16868_t",0,0,0,0.128930035352054,0.323652126045931,0.547166704685855 -"Tfru16869_t",3.78029112722085,3.64123991092131,3.49766856184119,6.60198415849818,8.0353515697096,9.09497641214923 -"Tfru16870_t",26.4160970810754,24.1606675729303,30.2536630409269,53.8122252149709,80.6462636984993,67.2500066335662 -"Tfru16871_t",1.45881144546947,1.44647967860743,1.21930981967585,1.64211298345737,1.0769670506799,1.60097959711198 -"Tfru16872_t",0.326253890374553,0.130938844693174,0.4214313551501,0.506206857246318,1.41191930715183,0.716097784384983 -"Tfru16873_t",0.293486032389336,0.353363345067168,0.126368062825212,0.0758941867487202,0.444538786225531,0.161043824872605 -"Tfru16874_t",32.6857092904988,35.9934464077796,31.4040889247703,33.2506830078678,29.9272413914625,23.1235112530103 -"Tfru16875_t",6.71009399132967,8.1868153055764,8.6676177277277,6.52435408926898,7.78247215547504,10.4078216319426 -"Tfru16876_t",0,0,0,0,0,0 -"Tfru16877_t",1.35344680644449,1.78477631230224,2.16454386093588,1.29998270397549,2.42658398760789,1.62680825777524 -"Tfru16878_t",50.9626760544079,62.5312308235043,52.5353785579346,48.2225409606983,66.2530019313925,65.7348458886301 -"Tfru16879_t",20.0008113922898,19.6622787336956,17.703845881703,13.4439107206873,13.7525976811089,16.4943565772154 -"Tfru16880_t",18.9100848083332,26.9982852189772,17.6192518592274,74.5534361248844,66.2742418694642,64.073355723069 -"Tfru16881_t",17.8056122781805,17.6293736665564,16.9629716278591,24.3791295651973,22.4842126117396,21.9218387435374 -"Tfru16882_t",0.961217125531435,0.771550400651998,0.496652512362247,0.795412758144482,0.499179709279078,0.562609243262039 -"Tfru16883_t",0,0,0,0,0,0.153406971280477 -"Tfru16884_t",0,0,0,0,0,0 -"Tfru16885_t",43.4484046232079,44.9963170908993,45.6576037479827,43.2922811472277,48.6512159091827,45.9042851867884 -"Tfru16886_t",0,0,0,0,0.953624187781234,0.403049572631985 -"Tfru16887_t",9.51793864000214,7.95169654535541,6.56547826987695,7.23319856134624,6.68294869746401,7.35448981737583 -"Tfru16888_t",0,0.396667676570498,0,0,0.427728495990112,0 -"Tfru16889_t",0,0,0,0,0,0 -"Tfru16890_t",0.743454654646386,0,0,0,0,0 -"Tfru16891_t",6.12841654259799,6.14895182525695,7.2565611760648,11.0934694247597,11.0507362185895,8.40707505224011 -"Tfru16892_t",0,0,0,0,0,0.0372064526794054 -"Tfru16893_t",41.6403488803468,38.9685222970183,41.4301755019063,25.3601721418364,29.5149999230699,35.1635663627453 -"Tfru16894_t",9113.43212210585,8851.73517065692,8862.35020601066,5018.75862958951,3086.81997170671,1999.1015022563 -"Tfru16895_t",67.9125800248228,84.7966230752501,79.2770420481462,83.7767296778014,51.3786444883931,40.854021800766 -"Tfru16896_t",0.347150317237386,0,0.298949239534851,0,0,0 -"Tfru16897_t",0,0,0,0,0,0 -"Tfru16898_t",0.242104832194373,0.388665734968211,0.416978190014028,6.26072361868045,6.49604949241467,8.14810591358321 -"Tfru16899_t",0.205404344184468,0,0,0.424933221649314,0.533353381307964,0.676265939410024 -"Tfru16900_t",0,0,0,0,0,0 -"Tfru16901_t",9.75510440846963,12.0375234259089,10.7828970072778,16.5665040225326,15.2484838171865,13.6352299094911 -"Tfru16902_t",55.244177721302,45.9177563345226,61.3671831941657,62.5536424437652,54.606116550333,62.6608781109376 -"Tfru16903_t",0,0.242131077260268,0.519538355241895,0.312024573886121,0.130545501469155,1.21385216892308 -"Tfru16904_t",1.28998659150015,0.258861823481707,0.277718679337558,0.333584813156563,0.418697759990321,0.825826139701812 -"Tfru16905_t",7.27414192059374,11.2468940234147,5.95607029966099,8.32600703810037,5.31549039374511,5.97637558283445 -"Tfru16906_t",0,0,0,0,0,0 -"Tfru16907_t",0,0,0,0,0,0 -"Tfru16908_t",1.70951348081434,1.37219341604329,1.26184388315292,1.51567750861543,1.47964218089603,2.32280749343869 -"Tfru16909_t",0.447961371594924,0.535300096893657,0.913291274611429,0.94029407207161,0.828637381783931,1.41646041711576 -"Tfru16910_t",0,0,0,0,0,0 -"Tfru16911_t",11.2441940392978,11.3362799696071,10.0273089234414,7.72654026074519,8.59261347816944,6.16614223158836 -"Tfru16912_t",0,1.26043928087466,0.676128151616823,0.812138685323525,0.679568603316185,0.574439781729902 -"Tfru16913_t",6.58145808808574,4.19517197110273,2.33373277314303,2.20250525829523,3.01578156158927,3.68223860711019 -"Tfru16914_t",0,0.0506637903959313,0.0543544071881547,0.261153550194695,0.382416912267643,0.461796091858585 -"Tfru16915_t",0.106747619785829,0.128526375508865,0.229814853772026,1.26980521475702,1.24731499148324,2.46016440219936 -"Tfru16916_t",44.0018475645967,50.4995306629436,42.2395166769502,51.9054977479566,40.0415250326887,19.7900954956678 -"Tfru16917_t",10.5012970964309,12.8736691396061,12.0028119673243,44.6344061476507,38.3400270042046,22.2112375281683 -"Tfru16918_t",6.46233667472673,10.0227113063054,7.73448332376738,16.6546675914092,17.0645266979106,18.1910933254077 -"Tfru16919_t",0,0,0,0,0,0 -"Tfru16920_t",0,0,0,0,0,0 -"Tfru16921_t",2.21412890587399,1.01556483459314,2.07013343882717,0.196307629127902,0.383280805894754,0.462839305921519 -"Tfru16922_t",0,0,0,0,0,0 -"Tfru16923_t",0.422030775394619,0.398525349223366,0.209163249099744,0.638862142875129,0.532332774992116,0.677074287807477 -"Tfru16924_t",0,0,0,0,0,0 -"Tfru16925_t",0.519914324826374,0.698527164042304,0.573026835482365,0.415953322681992,0.385434562376251,0.50203261705379 -"Tfru16926_t",49.1271753438568,54.016804191806,57.0755129431658,65.0989608602323,76.3621167841171,62.5284691659344 -"Tfru16927_t",0,0,0,0,0,0 -"Tfru16928_t",0,0,0,0,0,0 -"Tfru16929_t",0,0,0,0,0,0 -"Tfru16930_t",0,0,0,0,0,0 -"Tfru16931_t",22.6485655245909,19.1308219562292,25.0601931485939,20.2945575709489,15.6141013661594,11.368145861305 -"Tfru16932_t",2.37561476731599,0.866754563200316,2.78968056429694,0.893561376116037,0,0.474023597632733 -"Tfru16933_t",0,0,0,0,0,0 -"Tfru16934_t",0,0,0,0,0,0 -"Tfru16935_t",0,0.50701883471417,0.271976375817421,0.326687382809341,1.09344126794465,0.462143306965246 -"Tfru16936_t",0,0,0,1.14261455551447,1.05674099009322,0.595509230151756 -"Tfru16937_t",0,0,0.149166424675121,0,0,0 -"Tfru16938_t",0,0,0,0,0,0 -"Tfru16939_t",2.49991724143696,2.11224761212168,2.43607344291281,1.36098424161761,1.42352866715582,1.5883688130544 -"Tfru16940_t",0,0,0,0,0,0.164345079749673 -"Tfru16941_t",0,0,0,0,0,0 -"Tfru16942_t",0,0,0,0.219997072980468,0,0.622430985583572 -"Tfru16943_t",137.290116909159,143.596525529042,129.912972141045,95.4648818767676,90.4173337307364,84.8977013991417 -"Tfru16944_t",0,0,0,0,0,0 -"Tfru16945_t",289.493834567983,208.347885592841,328.050907481791,153.401377177827,104.610726273374,89.8515059900219 -"Tfru16946_t",194.203359756418,206.080420040695,185.243963306748,142.428374075662,154.883749108527,127.202354752795 -"Tfru16947_t",8.26030652887502,8.93874574879184,6.84992212364633,3.8607643652326,5.61374180461895,7.07318241264944 -"Tfru16948_t",219.719446940709,203.412056342443,190.80188826576,110.294686396169,139.434789379634,107.057274532757 -"Tfru16949_t",0,0,0,0,0,0.178677499495284 -"Tfru16950_t",0.375046324872533,0,0,0,0.649230752842135,0.54879517702123 -"Tfru16951_t",0.556360111069188,0.178631801369496,0.287466421062651,0,0.192619455147865,0.488464051600353 -"Tfru16952_t",17.0592499770592,14.9317046823323,17.2005630820532,13.4781880221911,14.468571063339,14.9899482637799 -"Tfru16953_t",74.5145230140365,71.1997380099545,84.275062749298,157.735268383303,159.641698097799,124.237886883104 -"Tfru16954_t",0.232072864009523,0,0.5995501323268,1.20026027385752,1.6069357860402,0.679171931783179 -"Tfru16955_t",226.668503909291,233.883295881693,232.971520786268,391.099796491026,273.781430284608,116.277888494331 -"Tfru16956_t",0,0,0,0,0,0.0378246522008478 -"Tfru16957_t",0,0,0,0,0,0 -"Tfru16958_t",0,0,0,0,0,0 -"Tfru16959_t",0,0,0,0,0,0 -"Tfru16960_t",0,0,0,1.34466296057694,0.773551535301267,0.237775860063357 -"Tfru16961_t",0,0,0,0,0,0 -"Tfru16962_t",22.2284265387487,25.4515563682782,14.0750420170105,4.05753356391991,0.848799739124347,5.02243679515149 -"Tfru16963_t",138.444746169793,174.373140133013,116.292222697112,73.6200248191196,64.586540984684,73.1142153334288 -"Tfru16964_t",0,0,0,0,0,0 -"Tfru16965_t",0,0.169430917128102,0,0,0,0 -"Tfru16966_t",0,0,0,0,0,0 -"Tfru16967_t",0,0,0,0,0,0 -"Tfru16968_t",0,0,0,0,0,0 -"Tfru16969_t",0.183428770243335,0.14723472711132,0.157960078531515,0.189735466871801,0,0 -"Tfru16970_t",0,0,0,0,0.0269111192887931,0.136487919673674 -"Tfru16971_t",15.3942054091331,14.1527109294906,13.4831438799109,13.7858042367976,10.1889152223817,11.4583012762753 -"Tfru16972_t",658.276294869308,535.711298909304,658.567687413855,191.709984153787,208.8244386969,231.820866308957 -"Tfru16973_t",7.88545052728387,6.52425247095735,8.40986301137679,6.52525614298744,5.82760773959091,5.54738807097272 -"Tfru16974_t",10.1018612559532,10.7562646039362,9.23184596394248,12.1551757009944,12.2230634007481,12.1421774626341 -"Tfru16975_t",7.90503545266387,10.917509345462,9.04321449592923,7.17476616470662,8.04950306106853,9.15738668077491 -"Tfru16976_t",0,0,0,0,0,0 -"Tfru16977_t",15.1555468117756,15.7695278992948,13.0512316110516,14.5153970758271,10.2026106727263,10.8145650919462 -"Tfru16978_t",25.5934125731752,31.1745145051863,27.0538815993984,29.3192595700587,29.572881086049,30.6623108806378 -"Tfru16979_t",17.2227224935324,24.686332729411,18.6246647152818,7.42970747885617,9.30819641486276,11.6426494994697 -"Tfru16980_t",0,0,0,0,0,0 -"Tfru16981_t",0.553771386240638,0.522943040069675,0.504933263828542,0.404337388882286,0.648475540644179,0.857984549728421 -"Tfru16982_t",0.798409071745541,0.712075026578507,0.840340945767448,2.20229382455632,2.30350087597632,2.8558211534959 -"Tfru16983_t",4.27966329680088,4.18812417760756,3.18058625676785,4.60873142419653,3.34899771459111,4.33215006452488 -"Tfru16984_t",10.329144685014,10.916489541684,8.59846624203108,8.54742726170013,9.83424943649397,8.94266239277217 -"Tfru16985_t",0,0.471562972146498,0,0,0.50848842180616,0 -"Tfru16986_t",1.75792638618668,4.60449043067516,1.91222156742116,5.93362149481459,6.08618080197384,3.92618223560562 -"Tfru16987_t",2.61408646852215,2.70888627331976,2.72755498132077,3.59097955229642,3.57942697582769,3.89595785860313 -"Tfru16988_t",0.608036502567774,1.0574614779503,0.959955217903224,4.35018337615478,3.3769396939147,1.51994418147255 -"Tfru16989_t",0,0,0,0,0,0 -"Tfru16990_t",1.70291304266447,2.18703259514545,2.22414194359341,2.17247109568212,1.59675671644957,1.88963528520283 -"Tfru16991_t",0,0,0,0.40893573565781,0.34218279679209,0.144623670179712 -"Tfru16992_t",0,0.0354913184299919,0.0190383463072194,0.0228681167966538,0.0765408887561253,0.0647000629751344 -"Tfru16993_t",3.05998061088054,3.12605652396617,3.65321910100453,2.30195612787509,2.52813034881573,2.69672861821028 -"Tfru16994_t",0,0,0,0,0,0 -"Tfru16995_t",0,0,0,0,0,0 -"Tfru16996_t",12.5815063064638,11.869262517906,11.4389109375716,12.0808058542705,7.80936275495073,9.46180515227055 -"Tfru16997_t",4.1252333302945,5.08276111962049,5.06224626828349,3.09362444266051,3.05280318645533,2.61071822979704 -"Tfru16998_t",15.0803079151573,14.2968561873466,12.5262900438313,15.6602156720548,11.7164356922804,13.9002255437745 -"Tfru16999_t",0,0,0,0,0.120188172426974,0.101595140208889 -"Tfru17000_t",0,0,0,0,0,0 -"Tfru17001_t",0,0.0853588671101071,0,0.274996341225584,0.322149943182426,0.155607746395893 -"Tfru17002_t",0.37793871298209,0.736741378720269,0.976388197503928,0.72601861809428,0.514043886569094,1.18505899408183 -"Tfru17003_t",3.8882783077949,3.02646866836396,3.55133248086983,3.29069955587193,5.91501117876929,13.1895570174415 -"Tfru17004_t",1.98244989673435,2.3477816060072,2.63075330790669,6.588848506827,14.4865105701874,23.3258118722153 -"Tfru17005_t",0.150826529212652,0,0.389653766431421,0.624049147772242,0.652727507345773,2.86910512654546 -"Tfru17006_t",50.2685041337349,45.7387093455367,48.4775596748994,54.6679201946237,73.4588632150232,63.1024487151952 -"Tfru17007_t",9.07666946433997,11.5694201946281,8.42760005664502,10.1370219119399,9.2265657859638,10.0261446085594 -"Tfru17008_t",2.73098748018637,1.82675903683782,3.30371303566455,4.03555002293892,3.54564411149698,2.94956169445466 -"Tfru17009_t",12.0399898260684,10.2412381950928,9.90401245329576,4.36817717634479,4.19951614244837,7.16544547708574 -"Tfru17010_t",0,0,0,0,0,0 -"Tfru17011_t",0,0,0,0,0,0 -"Tfru17012_t",3.48393645423533,3.74983675400763,3.88662187572454,4.66845815094743,6.6477312901762,7.06761291123288 -"Tfru17013_t",0,0,0,0,0,0.116631992080413 -"Tfru17014_t",0,0.0601547769999862,0,0.155038079977314,0.32432579981409,0.657966742120011 -"Tfru17015_t",6.76354728244704,8.44959778360521,8.71476844886159,12.6771315752879,11.7961926618096,9.82250350736302 -"Tfru17016_t",3.5053418077848,2.57722722540369,4.26159897704379,3.16882179454334,2.14164197851992,2.025846992875 -"Tfru17017_t",32.1760624570601,58.8716434146182,34.9961962864502,135.591375415711,88.9657318732004,49.5332276460211 -"Tfru17018_t",33.1183361179401,38.1869566492515,34.6422716092296,39.8950263269128,31.0238898537257,23.5803896654087 -"Tfru17019_t",23.9609133468669,18.7604074924617,24.8926044428942,9.74338823571517,13.5542274622795,10.2513554580784 -"Tfru17020_t",0,0,0,11.3606286654936,12.5915028578741,7.68313247829721 -"Tfru17021_t",24.9222984015575,20.6620767461513,25.1900125234798,21.543167411221,22.8370082086086,16.992777681805 -"Tfru17022_t",59.1123063249537,48.8380046148524,62.7611510453499,54.1518801082686,38.7474165503898,25.3942985151178 -"Tfru17023_t",11.0113074293764,13.8891713083549,12.4033322284717,14.695006358154,15.4022303354192,18.3424110658002 -"Tfru17024_t",10.5291028257242,7.61826005487558,9.76954505120687,13.3454535092211,12.5789174637163,14.37620551985 -"Tfru17025_t",2.73321431276969,2.54030327118778,1.85819475943751,2.52958963195863,2.86373017007078,2.84170653306883 -"Tfru17026_t",2.78818558143451,2.69817684466222,2.35617251134633,3.55789310955384,2.7064706321955,3.77483928214106 -"Tfru17027_t",0,0,0.0695631884302249,0,0,0 -"Tfru17028_t",0,0,0,0.137498170612792,0.115053551136581,0 -"Tfru17029_t",0.873453822765522,0.764841266733285,1.16245479342758,18.4803779405851,20.8932029043185,28.7572822439102 -"Tfru17030_t",1.90068725727257,2.44103185581845,2.29149326593682,4.71848925759012,4.27728495990112,4.44995908245269 -"Tfru17031_t",1.0545235578006,0.846445669669263,1.21080696179806,1.09078046645127,1.52121013218241,3.34328777298289 -"Tfru17032_t",2.04349565119737,2.15058205189302,2.34634754488975,3.33503670904714,4.0483924133983,3.68790358958266 -"Tfru17033_t",0.863859915387634,0.173350912640063,0.371957408572925,1.11695172014505,0.373850099322977,1.10605506114304 -"Tfru17034_t",0,0,0,0,0,0 -"Tfru17035_t",0,0,0.0483594358071082,0.0580874624513935,0.0486055109079673,0.0826659252619602 -"Tfru17036_t",4.47874383434211,4.08522849456692,3.27250411484354,4.2817685569179,4.17018008610715,6.80127228729775 -"Tfru17037_t",17.1300985173884,14.0791211667782,13.8884942800822,15.2685604121693,16.5222889204857,17.7328697546816 -"Tfru17038_t",10.1852649396166,8.98726851043217,11.1971013535151,8.51802940353435,9.62848841360373,9.88303197552247 -"Tfru17039_t",11.6812786583182,12.8708383100658,11.8782088812616,11.4141118623832,12.6101997842955,17.7551712069013 -"Tfru17040_t",7.73606525912623,6.28886136130185,8.44789316547621,6.12922879659531,6.83829256912091,5.41913732795258 -"Tfru17041_t",17.3592870369573,13.7189337375115,16.4254304109735,17.5681973808987,22.4448345982566,20.0702236167764 -"Tfru17042_t",13.6881772191316,15.2571559613718,14.9160665353705,16.104805033628,14.8235172973253,15.6154476315662 -"Tfru17043_t",0,0,0,0.369782314158658,0,0.130776723034846 -"Tfru17044_t",0,0,0,0.0700232424071593,0,0.148585962513403 -"Tfru17045_t",12.58639218778,13.3284635367506,11.8508550975535,8.27421301785066,11.5502135379279,15.8100560022722 -"Tfru17046_t",70.907840944708,86.3025133015537,58.4075505058182,21.5254016819879,9.33939284822447,7.33069520865056 -"Tfru17047_t",27.3292711282336,25.6587852325344,27.103092652509,35.0554936637373,28.4792332121661,19.1649716781013 -"Tfru17048_t",4.33601944626823,6.52582306615977,4.66746554628603,1.12127540422302,6.56770206746104,11.1033656460553 -"Tfru17049_t",0,0,0,0,0,0 -"Tfru17050_t",3.81462112056203,4.48607266744459,3.28496915163639,4.95516110525171,3.68560140156211,5.64673728077599 -"Tfru17051_t",3.5652939335163,3.82915898183714,3.28647603916615,7.6354632651589,7.64951380754582,12.3811865878597 -"Tfru17052_t",5.15928618862523,7.10916173669336,7.18273740925393,5.87034154820961,6.4750301491236,3.20851387015892 -"Tfru17053_t",11.0468190235183,10.5638526528231,9.57171404439264,12.2025162192534,14.9913282929002,12.7719604834032 -"Tfru17054_t",5.04746662883442,5.69957323463312,4.86233936237336,3.18570099570494,3.77638091673551,4.81956171754693 -"Tfru17055_t",0,0,0,0,0,0 -"Tfru17056_t",7.32474815267068,6.47937592689888,6.05026450261458,10.746387270456,13.003098494646,11.7571066393872 -"Tfru17057_t",0,0,0,0,0,0 -"Tfru17058_t",42.2137543657919,50.7592818300639,51.511299253873,22.5229376751949,44.2637403844385,23.62162676545 -"Tfru17059_t",38.121307246457,32.8278221601436,33.6341761571583,36.2374309758784,28.7831258980052,29.214733226054 -"Tfru17060_t",0.585438165654686,1.17479973897186,0.252075665391756,0.908350283908899,0.506716685145081,0.21416397152048 -"Tfru17061_t",0,0,0,0,0,0 -"Tfru17062_t",0,0,0,0,0,0 -"Tfru17063_t",1.08167867087701,2.31531347697801,0.931489905160094,2.6106948789313,0.93622975517149,1.84658978019161 -"Tfru17064_t",0.656331068526933,0.921942451404086,0.847801358993366,1.01834582610099,0.568076908736868,0.840342614813758 -"Tfru17065_t",0,0,0,0,0,0 -"Tfru17066_t",1.65326543209117,1.79396715241978,1.66099858088496,1.23507831970266,1.00697014726535,0.985591338323841 -"Tfru17067_t",26.7025647439808,22.999936307749,25.1175835388157,31.6575250128739,34.1346164037097,35.0906881893868 -"Tfru17068_t",176.238109153451,153.878757708493,192.644403623293,296.296057836875,334.784914979971,230.582387841187 -"Tfru17069_t",315.935127487428,453.268253574277,300.791743011168,529.615402546623,516.551595352215,348.834170702949 -"Tfru17070_t",45.2530641814884,46.927859486584,39.5669351347998,28.5220579371141,30.2691342803916,34.3407039206104 -"Tfru17071_t",0,0,0,0,0,0 -"Tfru17072_t",0,0,0,0,0,0 -"Tfru17073_t",16.8612375914525,20.0638421617437,17.3858982914696,17.8234424399272,20.546781713187,20.8310281982002 -"Tfru17074_t",0,0,0,0,0,0 -"Tfru17075_t",63.3465340978253,42.1459406356154,64.7610844547191,139.458628400239,99.3951339673797,74.8485809176051 -"Tfru17076_t",0.0437782057172733,0.0351399192376157,0.0376996956578603,0.0452833995973344,0.0378915290871908,0.128118936584425 -"Tfru17077_t",1.26154314876626,0.571512280928662,1.97013337113983,2.87900792964474,3.06696348288156,3.95155965750635 -"Tfru17078_t",3.19026747233345,5.67385410790712,3.55533674895803,9.44693313386713,9.4208554813012,9.33646478375358 -"Tfru17079_t",0.587485152247576,0.943125944292995,0,0.607684222568105,0,0.429825593191227 -"Tfru17080_t",9.53447240718222,13.4710823571857,8.25252231938881,2.56620789530487,3.28412267332304,4.73355701036956 -"Tfru17081_t",9.45535117049159,8.19411116740251,10.376277987361,6.66455276364633,7.09756647728612,3.36710985104659 -"Tfru17082_t",105.332807424099,110.221262007457,108.702192519596,97.9266158865848,85.2634418148818,62.4010759658657 -"Tfru17083_t",0,0,0,0,0,0 -"Tfru17084_t",0,0,0,0,0,0 -"Tfru17085_t",0,0.663280377216242,0.47439813749137,0,0,0.201524786315993 -"Tfru17086_t",125.619289795042,152.04346885905,128.311269829034,104.114652510049,115.244583447902,108.43364327861 -"Tfru17087_t",0,0,0,0,0,0 -"Tfru17088_t",13.6058971484184,14.7016026750014,12.028731883421,14.2818895221651,11.497637098728,11.3093353968994 -"Tfru17089_t",0,0,0,0.730242383941173,0,0 -"Tfru17090_t",21.7591198841999,29.0322637380157,19.978834083631,13.1168066154392,11.0380364016659,8.59245690540271 -"Tfru17091_t",0,0,0,0,0,0 -"Tfru17092_t",0.484209664388746,3.692324482198,1.66791276005611,4.00686311595549,8.80109931230375,6.19964580381331 -"Tfru17093_t",1210.89904119098,1428.66753208089,1164.30910676431,1995.10598180727,1538.01261866558,814.056192353141 -"Tfru17094_t",17.3264277737585,13.724593965465,14.2335533450175,8.72525704643021,10.2608409892879,11.8426573885287 -"Tfru17095_t",11.9861938833148,10.909624378544,7.55713211379564,5.97775486200429,6.0208915677589,9.94402878719741 -"Tfru17096_t",0.323116833736336,0.51871926936142,0,0,0.279668631993535,0.236404076255299 -"Tfru17097_t",4.67590223217704,3.50303922166154,3.22133058111023,1.93466813715662,1.21414582349698,2.05263650626122 -"Tfru17098_t",14.8350474049014,14.2108333733991,8.27449404606377,7.86608383551946,4.90285914175597,8.29365702219378 -"Tfru17099_t",19.1511834587734,18.2536707337593,15.8958865881625,11.3396069076444,11.3889565939047,13.6115765191206 -"Tfru17100_t",38.072260531586,38.4014179581856,39.9998879218756,23.1286702151655,26.3378570362356,21.643098703364 -"Tfru17101_t",19.1101891031062,18.1283573310062,21.7998907789609,13.7343815207082,13.3183407614056,14.6172446559037 -"Tfru17102_t",10.3858982272394,10.0965000643562,11.527614082723,9.42995695378501,8.39005895980604,10.6381834314885 -"Tfru17103_t",13.1897479796756,14.2115873373843,15.5538172942715,12.2912084621336,15.7358107223519,16.0835022176519 -"Tfru17104_t",0,0,0,0,0,0 -"Tfru17105_t",3.85147859124114,4.92708990811778,7.66988965843855,6.22484554636709,5.93795003745585,6.34023539756332 -"Tfru17106_t",3.54746312662542,4.78894373441157,3.88806151072581,2.6686785052525,4.46610943989676,3.77520521006543 -"Tfru17107_t",0,0,0,0,0,0 -"Tfru17108_t",0,0,0,0,0,0 -"Tfru17109_t",3.05492272328005,1.8390955501894,3.28844156124522,2.3699684149461,0,1.6763197759088 -"Tfru17110_t",11.0148881094718,8.98177798353177,11.3298962050976,5.01861168825629,6.80982933262093,7.38731988548036 -"Tfru17111_t",9.52344352064991,9.55535496192089,7.3224408873921,6.15680067602219,6.77092477458032,7.09212228765897 -"Tfru17112_t",0,0,0,0,0,0.129400125950269 -"Tfru17113_t",0.115796522083318,0.0929476292446376,0.149577634667334,0.11977786881776,0.451016263862765,0 -"Tfru17114_t",4.83281170305546,4.84900563401136,4.71669097390748,6.24871839601759,8.22649437158356,7.60210231793166 -"Tfru17115_t",9.12329883490832,8.69617598635321,6.46528457175032,7.56924318405081,4.11277399990492,9.66475488220192 -"Tfru17116_t",12.036677358959,12.5713907551563,13.6690062426949,9.31969167146412,10.0221427652815,10.3772178927651 -"Tfru17117_t",6.26518064058252,6.85764457799843,5.39527373316456,5.00772998326725,5.05299596110353,5.10472530761442 -"Tfru17118_t",83.2185730318485,102.071827575191,69.1409575786786,30.8773460159155,31.3882570195948,31.2828768202111 -"Tfru17119_t",5.47603409797988,5.68199644817199,7.0160392273664,10.3615473561945,9.71059288193768,10.749056567411 -"Tfru17120_t",1.15876381753721,1.802102289247,1.4968079165676,0.374563982014158,1.06563392535468,0.847793928639692 -"Tfru17121_t",9.99345226742065,10.6454226930648,11.4611056424228,8.98453860582265,7.47752151133353,7.24324218076269 -"Tfru17122_t",5.57590996270669,6.86270183801171,6.56233264306369,4.9986060608615,1.76958470686175,2.71969291267158 -"Tfru17123_t",11.2885230456683,7.24886333987387,10.7444132624902,6.26851631568814,3.70254369937692,5.47708453898415 -"Tfru17124_t",0.0892777649005817,0.0716615356184746,0,0.0923473366921197,0,0 -"Tfru17125_t",5.61629259753409,12.3972460476908,7.65776380713785,3.63087091200354,3.44327396493433,4.6227203769142 -"Tfru17126_t",3.38029918370321,3.48081902179294,3.39361999715901,3.18800492147435,2.92576415008621,3.22737655444383 -"Tfru17127_t",0,0,0,0,0,0.117299732493087 -"Tfru17128_t",8.97725199098469,9.48493137167328,6.22058094550997,8.59486576621751,7.84239772220439,12.1585953334485 -"Tfru17129_t",15.792280495672,15.784254676366,15.9533255273871,18.0630222144378,17.9073859708468,17.2202155862423 -"Tfru17130_t",65.2996577946224,79.9189571981257,66.0688515230322,117.367848103041,113.623511649466,84.7206236068408 -"Tfru17131_t",7.31564464771284,7.52246271105804,9.84099380547337,7.41879713949499,5.62839090910153,7.87116588556345 -"Tfru17132_t",0.742359735830169,0.744847257183188,1.06547446196515,0.5119224967734,0.535448043581142,0.588398952682555 -"Tfru17133_t",1.50798031049362,2.86679992986708,1.70868483626438,3.89957022370904,4.53388164856784,6.41652254210178 -"Tfru17134_t",0,0,0,0,0,0 -"Tfru17135_t",0.226138295481689,0.0907584185962107,0.170397042991937,0.263152622626367,0.293595602900346,0.703166902455196 -"Tfru17136_t",172.162110144304,181.168184253378,191.308565815292,185.424997744136,208.668250420528,174.872423731384 -"Tfru17137_t",12.6309307733295,13.6753261922556,9.35941080697572,15.6478687311369,13.9834315996767,14.936439363403 -"Tfru17138_t",0.134920305307464,0.216595840525646,0,1.11647336823064,0.817446857968255,1.08583885132252 -"Tfru17139_t",0.120936242953139,0.0647154558704267,0.0347148349171948,0.0416981016445703,0,0.176962744221817 -"Tfru17140_t",0.117332928451742,0,0.202083005495625,0.121367100317437,0.101555648489272,0.0858450556234325 -"Tfru17141_t",0.277995952254955,0.26777037068293,0.19151744796144,0,0.433106948289127,0.488140779560908 -"Tfru17142_t",2.36574903298819,2.19433182783679,2.12781517551276,2.01205082703976,1.77461822804408,1.03852103586495 -"Tfru17143_t",0,0.255752863528387,0.0914610821332919,0,0.183852956557065,14.7640472402171 -"Tfru17144_t",2.19005153210238,2.10949442180348,2.71579330013308,2.89964859486247,2.19885452057482,2.11506462384824 -"Tfru17145_t",3.43031584659993,3.58467784759009,3.67859572715766,4.08384397031153,4.64965260278928,3.40946402734915 -"Tfru17146_t",0.662990572040735,0.380121223320094,1.87593175563808,1.37157137946109,0.819772765708219,1.0394316768835 -"Tfru17147_t",15.315287858785,18.1222364978049,16.7453213935273,16.8386534741113,12.868652497138,11.633288668491 -"Tfru17148_t",3.89452077748432,3.57263602738991,4.37188515366115,5.17940128771895,2.76890466775056,3.30730868271072 -"Tfru17149_t",17.7605830087288,12.8983549864702,13.4737826717872,16.1841806456856,10.8582754099503,10.7254466811129 -"Tfru17150_t",873.238295198865,1053.38673986159,783.10867392699,1910.56013936417,1696.12945551209,1130.42262202425 -"Tfru17151_t",255.442719218767,284.453008472661,292.32076096486,184.825459713869,203.37730060606,209.04360448565 -"Tfru17152_t",13.6516862253602,14.5978212565177,12.8249223760451,9.43049952898373,7.51927253746254,8.62606237336096 -"Tfru17153_t",2.23897875520659,4.14133924206278,3.10172826279844,4.73261374262153,6.90907906616705,9.54382157211427 -"Tfru17154_t",58.0742872983831,53.2905719177848,54.5020578345265,22.016317815302,26.9626838831351,27.0198752928036 -"Tfru17155_t",382.688152751704,389.512317653356,355.733078513901,299.825016409609,190.622757619019,131.249975817099 -"Tfru17156_t",0.206076149071416,0.661653360755368,0.41408014045138,0.852646055541632,0.47564248123185,0.452318510578413 -"Tfru17157_t",0.205070081622736,0,0.176596540197154,0.212120855558872,0.650815530920675,0.500122537236596 -"Tfru17158_t",0.135064914423549,0.325241985612466,0.348934321386337,2.23534003414237,0.818323006797803,0.148227636237245 -"Tfru17159_t",15.9915449916966,10.0227113063054,18.4873016031513,1.81275293511937,0.56881755659702,0.961643700021555 -"Tfru17160_t",2.86399011720844,0.613031863790769,2.30190914441835,1.38248160634316,0.991552422522533,0.838159906723332 -"Tfru17161_t",2647.77532307252,3625.25460183869,3073.18299080537,7998.16327741726,6983.43232964938,2809.20980328071 -"Tfru17162_t",8.29215084782981,7.4291149594983,8.22274339011711,7.49426718949165,10.7657087550054,11.8272747223239 -"Tfru17163_t",25.2198148956035,28.6894037249199,28.90952069474,24.1865569300593,23.9970142283121,20.6512825261587 -"Tfru17164_t",44.5884897776006,48.9702454293519,46.2598133271123,74.4533480811697,66.5267354083357,65.5040443811018 -"Tfru17165_t",0,0,0,0,0,0 -"Tfru17166_t",66.0925386006622,70.7524978420393,67.7110685382702,49.8310557572085,37.2090375222648,22.3771233430406 -"Tfru17167_t",6.37988887997019,4.91617290524796,7.20820013284275,5.86012859345601,6.75894178657522,5.04118048393742 -"Tfru17168_t",22.6991825817003,20.286402623494,23.3763316217892,26.6263866880259,36.6607404501831,39.7211528682998 -"Tfru17169_t",31.8660049822732,35.2115839004944,29.579775494074,40.2388734963781,55.5204230016722,61.7678433723205 -"Tfru17170_t",5.81290910115452,6.49894570592026,6.13806321634736,7.7307043932016,7.6666985772198,75.185843362579 -"Tfru17171_t",0.672083014007084,2.15787216001536,0.578765727597816,40.3210635259913,49.445414124355,57.0395755049178 -"Tfru17172_t",0,0,0,0,0,0 -"Tfru17173_t",3.84225456185854,4.58447809138956,2.41450473562511,3.86694484274691,3.6851268443153,5.09043140712893 -"Tfru17174_t",99.0468760781153,110.494392169863,109.855215354706,112.486840566266,111.253861110592,83.2546364622876 -"Tfru17175_t",168.533011937843,115.130374419242,175.084850624197,244.800401513448,150.748213830662,104.190772144713 -"Tfru17176_t",0.20194802108521,0,0,0,0,0 -"Tfru17177_t",0,0,0,0,0,0 -"Tfru17178_t",0.295811185814956,0.474883838147779,0.254738436505049,0,0.256034663092673,3.02996773792003 -"Tfru17179_t",0,0,0,0,0,0 -"Tfru17180_t",1.630683086146,0.484784363889178,1.19622679169733,0.0624722097967539,0.104549021305994,0.132563033414186 -"Tfru17181_t",3.50408245136381,3.53340315652083,3.92281254463667,2.92230209950983,3.12768099909349,3.25271302000904 -"Tfru17182_t",0,0,0,0.0661834301807194,0.0553799271274326,0.0936253767347718 -"Tfru17183_t",49.8185541108901,42.8829920616754,49.8023768106501,36.6108006585539,30.4477732209932,23.1593309679674 -"Tfru17184_t",1.76288055453833,1.61020670445766,2.61742821879283,3.20683142922686,3.05166640409733,2.13482118065567 -"Tfru17185_t",2.47574784198765,3.57702285944712,3.55332593160284,2.56086966092194,1.57141903241947,1.81134753908775 -"Tfru17186_t",58.910615697377,73.8331698164875,53.7824918351925,34.8206263490701,44.0883590330757,54.7676367872997 -"Tfru17187_t",6.46233667472673,3.89039452021065,6.07096917209236,5.62107905875792,8.51718106525765,9.67107584680768 -"Tfru17188_t",15.6163867320419,13.4634880928919,15.8139516830707,14.2089331559243,22.7778307503168,15.1282333135491 -"Tfru17189_t",4.44760818201781,4.98667936260054,5.34993529843209,9.93129643740396,7.69911292782202,9.60714380479517 -"Tfru17190_t",75.8803403096945,69.6087793723712,76.8464863156383,85.4972495720059,79.7506679620274,67.2716668606668 -"Tfru17191_t",0,0,0,0,0,0 -"Tfru17192_t",0,0,0,0,0,0 -"Tfru17193_t",0.0700378297385973,0.0281090058428448,0.0603132271508411,0.0724458889764774,0,0.102484468239062 -"Tfru17194_t",0,0,0,0,0.0599454611033133,0 -"Tfru17195_t",0,0,0,0.284914242056671,0,0 -"Tfru17196_t",3.77189446728948,4.26620133780923,4.06021875327435,3.81290845364616,4.22927461851448,2.6342168497019 -"Tfru17197_t",0,0,0,0,0,0.163037293969172 -"Tfru17198_t",1.29081244719253,1.1224527083493,1.38948238093663,0.556330626295036,0.744828110815048,0.511552994713771 -"Tfru17199_t",133.587181014284,156.453801467978,126.672641046943,49.3315052093561,55.419152849938,71.3491195591161 -"Tfru17200_t",0,0,0,0,0,0 -"Tfru17201_t",0,0,0,0,0,0 -"Tfru17202_t",0,0,0,0,0,0 -"Tfru17203_t",0,0,0,0,0,0 -"Tfru17204_t",0,0,0,0,0,0 -"Tfru17205_t",21.1619461973601,20.9770387382122,19.9801522095189,22.2851359739167,24.0540486515835,29.8464630416402 -"Tfru17206_t",219.24659303768,217.267463725455,237.505691932112,639.02442472991,657.084861461883,297.880667987835 -"Tfru17207_t",45.724080245708,59.1144223951505,53.3405278831008,58.8995066289433,64.3765530249269,72.4377773280388 -"Tfru17208_t",7.2764893266608,7.22122573410229,4.78507097737358,199.251522224451,38.2463370115253,9.48594624092128 -"Tfru17209_t",7.70012854074371,6.65618615913831,8.58627181282118,4.2887796013466,4.52859429949578,5.7059221225427 -"Tfru17210_t",4.15892846568421,6.67658292543958,10.7444104789276,2.58115310834676,2.15981659842455,7.30277749337609 -"Tfru17211_t",2.64013271078683,6.4118884705916,1.16592612356864,0,0.351557667937078,2.37737540021445 -"Tfru17212_t",28.0839864836255,27.5357518689053,33.5463600280337,22.5524677366281,23.5758043045017,18.249510933353 -"Tfru17213_t",16.1411767775701,19.7403679588298,15.8153645344844,9.39979929447935,11.0005815912737,14.3201500957068 -"Tfru17214_t",0.132822730073435,0,0.285951446511596,4.39646324501677,2.58665849353704,0.485889800999033 -"Tfru17215_t",0,0,0,0,0,0 -"Tfru17216_t",8.95192538803052,8.84373835730318,8.89496507235082,5.69828483753803,4.17210581891046,7.05336751660935 -"Tfru17217_t",9.15797210634243,8.77610688207697,6.35740996821722,8.11958051333916,7.68388788680791,10.4606831517639 -"Tfru17218_t",13.0104565796489,11.9351336313247,11.2039825613283,11.7274988350981,12.3870929480322,14.2783877915258 -"Tfru17219_t",0,0,0,0,0,0 -"Tfru17220_t",0,0,0,0,0,0 -"Tfru17221_t",2.97661309801752,3.83871794657075,2.63831869351238,2.17654383453652,2.54458136703735,3.8983127851993 -"Tfru17222_t",0,0,0,0,0,0.514351965074291 -"Tfru17223_t",0,0,0,0,0,0 -"Tfru17224_t",2.72822052225305,2.03886297363783,2.91651262578681,1.65428930018347,0.9771177288016,1.51425679303506 -"Tfru17225_t",1.39090027767297,1.33973851027122,1.91644280708434,1.15097806393755,1.44464591360899,1.4246868171677 -"Tfru17226_t",18.0859210150781,19.9969581281416,23.4279031695632,31.8295340640873,27.6039214937949,25.3836905650474 -"Tfru17227_t",32.2930061000072,27.5775750286223,31.9910246908017,22.2270164124702,19.9647838446252,22.1167628566012 -"Tfru17228_t",4.39954591571171,4.58245140078012,3.96909164908615,5.03839929921289,4.98661027120642,3.6403869597917 -"Tfru17229_t",75.3656384001183,71.4144644465842,71.1086988224359,44.2224950848712,41.2725065461121,32.2331655540472 -"Tfru17230_t",32.9730138188884,30.5212451638888,28.9609817709026,12.3521804430212,9.43088687049963,10.533946643167 -"Tfru17231_t",0,0,0,0,0,0 -"Tfru17232_t",0,0,0.124519304591108,0.448703152292348,0.500611664842128,0.63475104812094 -"Tfru17233_t",180.945426892348,172.573910768319,199.485820359907,24.4242312532309,22.5886202764009,17.821230363861 -"Tfru17234_t",0,0,0,0,0,0 -"Tfru17235_t",0,0,0,0,0,0 -"Tfru17236_t",0,0,0,0,0,0 -"Tfru17237_t",0,0,0,0,0,0 -"Tfru17238_t",0,0,0,0,0,0 -"Tfru17239_t",754.572076273121,994.678119274676,704.242603320815,2395.75041875544,2033.06153047759,1205.92715969217 -"Tfru17240_t",0.370089765512985,0,0,0,0,0.541542377324914 -"Tfru17241_t",0,0,0,0,0,0 -"Tfru17242_t",4.4215987774446,5.02235638160263,4.81346868899511,4.74621292006023,4.11587798028221,6.47000629751344 -"Tfru17243_t",0.454110144710527,0.364505432524241,0.195528962074146,2.11375566066368,2.45654879453781,1.16285248320174 -"Tfru17244_t",10.3678867884908,10.6473955289976,11.816904604481,13.4054477773488,11.4811333134188,15.0594974166261 -"Tfru17245_t",21.8679725016586,24.9623046694658,23.3266435395323,30.8607404828094,35.0966756748983,32.1194132120836 -"Tfru17246_t",1.5730098285916,2.71230464007289,2.65903116939944,0.301313605503761,0.45383120587023,0.68199788989046 -"Tfru17247_t",0,0,0,0,0,0 -"Tfru17248_t",3.41805282436683,4.35749015267312,3.14546591162756,2.32238633283928,4.61168777288102,6.74227820193613 -"Tfru17249_t",0.732222923632604,0.822837655640137,0.63055533963481,0.302959362558808,0.295756484734592,0.285717884143534 -"Tfru17250_t",8.69072863152904,9.36956408451003,8.80475245039763,11.0165877062988,14.8967510672418,17.8909454058523 -"Tfru17251_t",2.21635416105577,3.21918742543394,1.99950471266777,8.18770513448034,10.3224427235805,9.42052424474633 -"Tfru17252_t",2.17556752595382,5.10452826821796,4.03521921730707,19.214684591292,34.8360150568839,37.3443092570622 -"Tfru17253_t",0,0.648399010801338,2.08689540861848,0,0.699171498140063,1.77303036436696 -"Tfru17254_t",14.3950364692649,11.5546174326856,16.6639008689033,13.4253831755636,14.7061707610083,8.80538778411591 -"Tfru17255_t",28.9118927111892,31.3865397117136,28.6729847487291,48.5971672461472,40.61309217215,45.5136197586013 -"Tfru17256_t",0,0,0,0,0,0 -"Tfru17257_t",1.44845476623392,1.74396995048784,3.74201977672537,0,1.2536869660827,0 -"Tfru17258_t",22.8217165245271,22.6327019791257,21.7891624862547,20.6128163015508,20.8265046226681,19.2380797488072 -"Tfru17259_t",16.9821894851931,17.0390939170022,20.3853165972555,17.9653046197296,17.0370875661605,12.7071716333246 -"Tfru17260_t",31.9522002209645,29.3113294769817,32.7567924820205,21.0221006412707,25.398108623475,26.9555695745693 -"Tfru17261_t",1.40889467513208,1.19551494280231,1.94123626937053,3.95562537785915,4.21580026953359,4.35880635088831 -"Tfru17262_t",0,0,0,0,0,0.0539640560372061 -"Tfru17263_t",51.2438661831703,55.5683721694213,47.098970512523,49.6928872326114,49.2577655059581,32.0844007304846 -"Tfru17264_t",62.223070268083,54.3914205301832,72.3457159674339,11.6501746669546,9.42882816435346,15.400036967488 -"Tfru17265_t",23.8173748578846,19.1177462677018,24.2395440097073,35.3866425894613,34.8576676371323,22.4949445756331 -"Tfru17266_t",39.2888266250724,40.6370606615943,43.1226573151715,26.1429511420416,36.3909961255692,43.0313024276515 -"Tfru17267_t",6.83557006785478,8.0587080096578,6.07041786722747,2.11486470629425,2.85255909421666,3.54992535866112 -"Tfru17268_t",22.4849037738429,22.1893934932149,20.3575937690213,8.12436486744549,9.33083245147999,9.85919841394693 -"Tfru17269_t",11.6449997039158,4.00594975526375,6.44664628735656,6.88307495559137,7.91932752755667,3.04282395557337 -"Tfru17270_t",2.19947486140386,2.26441479567564,2.01760960865353,1.23646618991583,1.36571250000258,1.22440358219876 -"Tfru17271_t",27.8532697243219,27.4863043365183,23.1746150124837,25.7603593598191,22.3707634153385,24.8137832941203 -"Tfru17272_t",22.1514036928922,24.4954807845708,23.2358610891197,12.3096538941876,16.8271869740851,14.3964445876649 -"Tfru17273_t",10.9578752310584,9.96843117642381,10.0654909172082,7.93424226249121,7.90367873025208,10.6895756219787 -"Tfru17274_t",10.8036377038138,9.06016382185974,9.16471641813942,5.67094182366157,7.25742783983223,8.96611237390539 -"Tfru17275_t",18.3530361562239,29.1520229381118,16.1386597158122,27.4065584378359,50.8996910228233,75.932989293202 -"Tfru17276_t",0.959509379369323,1.45478373767606,0.826283558003687,1.32333264711601,2.12235840015398,3.35405783316528 -"Tfru17277_t",0,0,0,0,0,0 -"Tfru17278_t",0,0,0,0,0,0 -"Tfru17279_t",6.22045914255632,4.49922490756122,5.12129966571745,3.39393368894196,3.49073784766544,4.55111508885303 -"Tfru17280_t",0.118882608638841,0,0.102376013161463,0.450890227405722,0.85747457922546,2.14547850337356 -"Tfru17281_t",3.79673869196642,4.20854730019918,2.75059034883357,2.6181861124433,2.92107265554223,2.42509203045249 -"Tfru17282_t",4.54110144710527,3.83359161792736,4.65224082176416,4.8592084153188,4.40484611434365,4.86908675232256 -"Tfru17283_t",13.3726402049544,15.2352976675087,16.9023367215314,18.9638041728349,18.2017967163957,11.9142798893235 -"Tfru17284_t",8.59300915834174,10.4195404922871,10.8243046197194,16.6422160104484,12.7783306391823,9.43043899403619 -"Tfru17285_t",3.26510918124323,2.72709027642217,3.30571286195733,3.74249222365406,2.6733030999382,2.7116938158696 -"Tfru17286_t",18.0829127313597,12.2919518473737,13.4037080262078,4.8632597090629,5.55483331811699,4.22279036960553 -"Tfru17287_t",1.95041078574708,1.94740020150975,2.25312252446708,1.72223076667891,2.30576176773832,1.91425724261086 -"Tfru17288_t",0.148428227511391,0.238280936455776,0.127819286161544,0.153531526196616,0.128469689608338,0.108595512060738 -"Tfru17289_t",0.0539912447117271,0.130013184480047,0.0464946760716156,0.0558475860072523,0.280387574492233,0.237011798816366 -"Tfru17290_t",6.39814127729567,6.47540279964422,4.55155166682531,3.45293419181264,1.92619455147865,4.07053376333627 -"Tfru17291_t",0.600074119795126,0.963335785955434,0,0,0.519384602272905,0 -"Tfru17292_t",3.43536856686216,1.75477522349031,2.15154545628056,0.323044029097712,0.540623377831369,0.228494646194713 -"Tfru17293_t",1.50197336301753,1.04485764627032,0.948513558571839,0.621445843818484,0.260001827121522,0.879118853297416 -"Tfru17294_t",1.40485579885364,2.25530117113661,0.967835665116173,0.290631584706638,0.729570344330961,0.616706285883388 -"Tfru17295_t",0.683789490244566,0.998933575866124,0.270869520958974,0.763883699604976,0.142042346055645,0.990565020806022 -"Tfru17296_t",0,0,0,0,0,0 -"Tfru17297_t",0,0,0,0,0,0 -"Tfru17298_t",0,0,0,0,0,0 -"Tfru17299_t",21.5524003235651,28.7739825072474,23.7680297222852,11.4879361604133,11.1354971011038,14.5617484667204 -"Tfru17300_t",13.4507794559441,19.9464098964758,13.939066034431,6.24917058730812,5.9197159553584,10.3414754660391 -"Tfru17301_t",0,0,0,0,0,0 -"Tfru17302_t",0,0.0522943040069675,0.0561036959809491,0.101084347220571,0.0563891774473199,0.0238329041591228 -"Tfru17303_t",195.905804606568,182.483903640043,182.470273042598,103.066070585849,118.217645413927,143.201894140948 -"Tfru17304_t",14.8914714678485,9.47226491877375,16.2717371197657,5.23136852471948,4.80300476684549,5.34478781098937 -"Tfru17305_t",6.92617073285454,8.43736386730457,7.57840671627824,41.9744172899978,44.4323200005247,51.2705639676865 -"Tfru17306_t",11.3197601462188,10.4223515019646,11.1337858787398,14.3492146346243,15.2727889651423,11.6109690292893 -"Tfru17307_t",10.3911233554965,10.2770002124173,10.466359792086,12.4758141331276,15.0968555845875,18.0220578508043 -"Tfru17308_t",0,0,0,0,0,0 -"Tfru17309_t",371.012333780124,263.765025604712,395.305299688084,73.385865720171,61.2327110049002,38.8200377850807 -"Tfru17310_t",1323.60404801379,1514.66026653455,1321.44762312474,1084.1086530615,1263.0852397665,939.168921122831 -"Tfru17311_t",0.579381908768603,0.380502536145994,0.453578156535636,0.70826643871768,0.82059510829451,0.192680438327203 -"Tfru17312_t",0,0,0,0,0.150650229941269,0 -"Tfru17313_t",1.45179222531303,0.971104622940446,2.12536377554097,0.300341626131168,0.502630260264878,0.955965792230529 -"Tfru17314_t",1.63610386599771,1.94135408177602,1.16390228906117,0.588645851497271,2.58592841775563,4.00745944676637 -"Tfru17315_t",0,0,0,4.7646885649425,4.93618786495116,1.92579821910322 -"Tfru17316_t",0.0629762944313699,0,0,0.130283124178838,0.218032516696609,0.598984840886739 -"Tfru17317_t",0,0,0,0,0,0 -"Tfru17318_t",0,0,0,0.653374765607185,0,0 -"Tfru17319_t",10.5806839810426,9.56344537434707,8.40059114952967,6.64814257281615,6.45343613771595,7.63898989677691 -"Tfru17320_t",1.72034901238459,0.920593925146547,2.22222335736145,1.18633233893904,0.496340234254738,1.67822688945741 -"Tfru17321_t",0,0,0,0,0,0 -"Tfru17322_t",2.81914016011553,9.05147718348735,3.88433374321771,2.91606858480805,4.39211140177741,4.53768898047058 -"Tfru17323_t",0,0,0,0,0,0 -"Tfru17324_t",0,0,0,0,0,0 -"Tfru17325_t",2.21866869887386,1.4659457612388,1.4001676176637,18.0501373644918,6.26435226537945,51.3256464487596 -"Tfru17326_t",2.15255014207721,0.917660830774388,1.74336750699679,2.36309401270716,1.85682820102203,1.90928665268694 -"Tfru17327_t",14.5193534715903,13.7110638666697,11.834742815375,9.39664022901322,8.80361701081312,10.2820479007157 -"Tfru17328_t",20.4371397338233,16.1451372588742,19.7559455141839,14.5388450249495,15.5915262336396,11.7611027937011 -"Tfru17329_t",0,0.100948360803869,0.108301970011129,0,0,0 -"Tfru17330_t",14.8654725131295,15.6542065218,14.4456543246662,5.99545594587597,5.25286700026818,3.04331870893591 -"Tfru17331_t",0,0.206851242383388,0.221919374133233,0,0.669145806610298,1.50834502641418 -"Tfru17332_t",0,0,0,0,0,0 -"Tfru17333_t",8.17800120111024,7.75783678681792,8.32295839522916,6.9211467878891,5.79136807664623,9.24695581542361 -"Tfru17334_t",0,0,0,0,0,0 -"Tfru17335_t",0,0,0,0,0,0 -"Tfru17336_t",0,0.492215365085289,0,0,0,0 -"Tfru17337_t",1.83657912991921,4.67527736220193,3.47946291660987,9.33579084215675,9.5377309849138,7.140850173458 -"Tfru17338_t",0,0,0,0,0,0 -"Tfru17339_t",0.852897226106066,0,0,1.76444352948801,1.47642323488973,2.1840376588053 -"Tfru17340_t",0.0394600172716991,0.0633475857369512,0.033981078425286,0.367350678461983,0.683079796320517,1.90544572500748 -"Tfru17341_t",0,0,0,0.448317337028124,0.56270386832749,0.211401753487112 -"Tfru17342_t",0,0,0,0.375025836492597,0.268978462336569,0.189473057417934 -"Tfru17343_t",36.9000802023842,37.9583055959146,38.3324315946851,34.9262943740792,45.1166923169101,49.1458367481698 -"Tfru17344_t",0.575413539530362,0,0,1.78559268138225,2.4902001478872,0 -"Tfru17345_t",0.0236183235230384,0.0379159432201206,0.0813558796372605,0.439746749758539,0.327079423416673,0.46656075774872 -"Tfru17346_t",14.733163090515,20.2552132606987,13.2273883671801,28.2096993021409,21.2986446977166,11.3526882888272 -"Tfru17347_t",11.5632260162947,21.783295159981,10.5673517705241,28.5594514825627,12.0508899291596,11.3952077206206 -"Tfru17348_t",3.92635121091374,2.98859208375032,4.13903773866866,4.48148751405819,4.9218073511191,4.20993560454642 -"Tfru17349_t",1.2793458391591,1.46700881110191,1.04924896254436,1.57539600847144,0.896399821183048,0.624010759658657 -"Tfru17350_t",0,0,0,0,0,0 -"Tfru17351_t",0,0,0,0,0,0 -"Tfru17352_t",0.0497691805518054,0.0399487588963179,0.0428588364735983,0.205921430870343,0.430769219895255,0.32771655120699 -"Tfru17353_t",0,0,0,0,0,0 -"Tfru17354_t",0,0,0,0,0,0 -"Tfru17355_t",0,0,0,0,0,0 -"Tfru17356_t",0.199234095110152,0.159921355771505,0,0.137389476406774,0.0574812998563787,0 -"Tfru17357_t",0,0,0,0,0,0 -"Tfru17358_t",6.47894936540726,6.93403650560253,4.4634889028751,7.59527169698632,8.41162723476699,13.5886764654717 -"Tfru17359_t",6.21088388582685,9.57713203548614,10.9081575631831,10.9891534022831,15.3491286158319,15.6652195277344 -"Tfru17360_t",1.10539969436115,1.10910370093725,0.475958657680486,5.85995492914255,20.5703638532087,28.5084652484186 -"Tfru17361_t",43.655288825411,50.7958793821944,44.923149611756,31.1422458926175,33.6758810350864,24.3996378084036 -"Tfru17362_t",19.6133175341901,26.5011050844959,16.6085495800724,19.9495400226062,13.2978625796148,11.4798555317748 -"Tfru17363_t",0,0,0,0,0,0 -"Tfru17364_t",2.19430088582139,3.14521945041906,2.29454696165369,3.08036946402688,3.52716409006772,2.98151409605564 -"Tfru17365_t",16.325903178257,16.5444145912116,13.2389731244049,12.3136013520444,13.0119510885413,14.8312452050693 -"Tfru17366_t",0,0,0,0,0,0 -"Tfru17367_t",13.5016676954112,14.3574083483964,11.527614082723,10.026789672379,12.8847334025593,14.1842445753179 -"Tfru17368_t",7.35574727491936,8.39034394220546,6.6678079232658,4.80546601809869,12.3982130865337,9.06397195596354 -"Tfru17369_t",0,0,0,0,0,0 -"Tfru17370_t",0,0,0,0,0,0 -"Tfru17371_t",0,0,0,0,0,0 -"Tfru17372_t",58.5362625246214,64.8231757905207,55.3094667234898,58.866958721709,45.5047928959803,36.4812305361062 -"Tfru17373_t",0,0,0,0,0,0 -"Tfru17374_t",0,0,0,0.72516420440015,0.303395734290622,0.598408092885457 -"Tfru17375_t",0.845742048034706,0.113143464793598,0.485541717902241,0,0.244006188987648,0.103129295010701 -"Tfru17376_t",6.27350216150419,14.231096838,11.5095457220918,18.6211808201324,19.8310484504507,18.359693194892 -"Tfru17377_t",11.0672352633045,12.5175967396798,16.8951073217361,22.8955037628774,25.2539100027695,21.3471465265264 -"Tfru17378_t",0.426448613053033,0.68460411184756,0.367237136890528,0,0,0 -"Tfru17379_t",30.0394672603507,25.6391991661717,27.9380357252069,13.0503627201882,16.4667823843631,21.0255925746965 -"Tfru17380_t",10.6361761417062,10.3934209567462,9.2921103077438,9.08850293239491,8.13861376773846,7.55625506122442 -"Tfru17381_t",5.3509794121941,5.36890963511024,6.22080997172202,4.84308842986459,3.82095041800084,5.48096074884897 -"Tfru17382_t",9.18863495937707,7.79699901758884,5.87808942235401,2.98714775656291,3.63569221591595,6.3385842945952 -"Tfru17383_t",33.0905382928775,33.3849667268017,36.201835433946,19.5135744094867,18.451439384357,11.5798984517153 -"Tfru17384_t",11.2110863564877,11.3324274186152,10.036295600353,5.4452854070921,3.18332498167756,5.8653421800869 -"Tfru17385_t",0.0931378899905182,0.224279950167354,0.160411787067481,2.79386526717434,3.62763081410683,2.11243553727019 -"Tfru17386_t",0,0,0,0,0,0 -"Tfru17387_t",65.075395478401,63.4154464278897,69.9092022172353,42.7740422984044,44.6455469001078,54.6179158560818 -"Tfru17388_t",5.44888213328846,5.90777560894202,5.81286972439207,18.9696895286086,17.2457810822732,19.5462460338481 -"Tfru17389_t",0.164082767131733,0.0329265161215745,0,0.212155380437707,0.213028840776325,0.39015907116353 -"Tfru17390_t",1.36069596450455,1.49672446648376,1.86614624271125,2.71070178705387,3.05337078721196,3.76090947947842 -"Tfru17391_t",7.4803760138947,12.4705796949196,12.8834836654312,20.4222411745426,23.9059214197172,19.7866973413647 -"Tfru17392_t",0.628506559387387,0.168163354157069,0.180413256776643,0.43341069240541,0.725325130357297,0.459838352815793 -"Tfru17393_t",0,0,0,0,0,0.082062830208782 -"Tfru17394_t",14.286648375377,16.7603624388145,17.1400460794938,9.34667796979515,11.0444719931168,8.66585872552128 -"Tfru17395_t",6.88320313883708,7.00239878027511,5.99262233103594,6.20706027337747,5.4338977296703,6.32728557036241 -"Tfru17396_t",0,0,0,0,0,0 -"Tfru17397_t",0,0,0,0,0,0 -"Tfru17398_t",0,0,0,0,0,0 -"Tfru17399_t",0,0,0,0.0911845160831948,0,0 -"Tfru17400_t",0,0,0,0,0,0 -"Tfru17401_t",0,1.25652493820468,0.449352273089652,13.493609289951,3.16147149210083,4.96301725306155 -"Tfru17402_t",0.642432292958127,0.991669191426244,0.97879498073587,13.2904114088788,9.75220970857455,5.71263497209863 -"Tfru17403_t",35.0395038795484,33.3778906742361,34.7186727381404,30.5674325020599,35.2607335513457,34.9022701526667 -"Tfru17404_t",7.23653740506527,9.28045267065431,9.45508367099136,8.7759228419634,10.4391162635211,10.5890301087027 -"Tfru17405_t",0.160325146510396,0.514759580282325,0,1.8242123704201,1.52643566317082,1.75949598739631 -"Tfru17406_t",0,0,0.0829652706048554,0,0,0 -"Tfru17407_t",9.48504253871181,9.17693868678722,9.69957683837571,7.00797127639392,5.79071945680162,6.50587830823554 -"Tfru17408_t",0,0.0231809917555808,0,0.0298724110784753,0.024996165114582,0.0633878238154462 -"Tfru17409_t",0,0,0,0,0,0 -"Tfru17410_t",0,0,0,0.0703634362973965,0,0.597231350539702 -"Tfru17411_t",17.402460232304,14.8067354361478,18.6203111526746,14.9856628661242,12.6900909038185,13.6235347517813 -"Tfru17412_t",19.5310748545085,22.7641768528674,34.0992546598096,3.5977228336137,6.0208915677589,10.1789271050052 -"Tfru17413_t",56.7399926885693,97.4431800245432,64.3914749448365,9.09935537458478,24.7455491135641,31.2152398071133 -"Tfru17414_t",42.3611645584841,61.147330820486,38.0121558472958,5.89144703913794,12.9405994125822,17.9707166441528 -"Tfru17415_t",24.5589440082666,28.5461323154967,22.8825108012011,12.0769958673702,13.1256619935624,8.44408170138735 -"Tfru17416_t",0.866086358468531,2.7807630934839,1.49166424675122,0.447932184676725,1.4992545220272,1.26732082116243 -"Tfru17417_t",0.220644456392508,0.0442767596959846,0.0950042232008324,1.02703820675714,0.811645012088919,0.645726170204887 -"Tfru17418_t",0,0,0,0.0769016317055616,0.0643485347949726,0 -"Tfru17419_t",2.51472302974399,2.39231946845178,2.80720627368092,3.37190635693455,3.38578875983304,3.33901101052384 -"Tfru17420_t",0,0,0,0,0,0 -"Tfru17421_t",3.11791089048671,3.33691571218068,2.98332849350243,10.3920266845,19.3403833341508,18.1226877426227 -"Tfru17422_t",0,0.0581323319111936,0,0,0.062684348550275,0.105974241079962 -"Tfru17423_t",0,0,0,0,0,0 -"Tfru17424_t",0,0,0,0,0,0 -"Tfru17425_t",0,0,0,0,0,0 -"Tfru17426_t",0,0.0663715600560872,0.142412826707547,0.256591074293163,0.143137488815589,0.241988424513298 -"Tfru17427_t",0,0,0,0.07414577118369,0.124085058563684,0.104889180591088 -"Tfru17428_t",0.227055072355263,0,0.195528962074146,0.0939446960294969,0.117914342137815,0.0996730699887206 -"Tfru17429_t",0.540259657694196,0,0,0,0,0 -"Tfru17430_t",0.096342175196614,0.4639920069976,0.414826353024277,0,0.0833874361448613,0.0704874539293322 -"Tfru17431_t",2.35343160734955,2.23251841737046,1.47393648830086,2.06550732356874,2.71596702037864,1.93056639522579 -"Tfru17432_t",10.0518966093348,10.600900352015,11.1203895286187,4.70543957842065,3.55631028980425,4.02609562181513 -"Tfru17433_t",0.0437098734502848,0,0,0,0,0.0319797397639842 -"Tfru17434_t",0,0.116566127946386,0.125057417402651,0.675963348699708,0.251387534376211,0.690618649734581 -"Tfru17435_t",0.315828484103186,1.52105650414251,0,0.653374765618682,0.820080950958486,0.693214960447869 -"Tfru17436_t",22.4973505950076,22.9387797524604,21.9917013556011,31.0802258079492,27.9803574638646,29.6574474433668 -"Tfru17437_t",31.7235836971679,39.2186493613425,30.6485512205133,6.36288605429908,18.1784610795798,27.4535361358402 -"Tfru17438_t",23.4660181792072,14.43256395164,24.8442361967971,15.1311167002769,23.5638576509184,21.4793256225189 -"Tfru17439_t",111.807927909059,20.5771357220946,70.7498545857994,0.638962086965328,0.53466061998764,1.5818213925906 -"Tfru17440_t",2.0872143297254,1.25652493820468,1.79740909235861,0.539744371598041,0.903277569171665,2.67239390549468 -"Tfru17441_t",1.45262899316624,3.4979916147139,3.33582552011223,2.00343155797774,1.46684988538396,2.65699105877713 -"Tfru17442_t",9.05656012423201,8.30802936554225,7.57624540932059,3.41260859999347,3.47145149979655,3.87668286431839 -"Tfru17443_t",0,0,0,0,0.169892159622241,0 -"Tfru17444_t",1.15011094522206,0.377661197979378,0.945401390987002,1.18965436477925,1.26694937206779,1.46392069154126 -"Tfru17445_t",0,0,0,0,0,0 -"Tfru17446_t",0,0.495834595713122,0.106390758775638,1.66130142610985,2.35250672794562,2.44052443428264 -"Tfru17447_t",0.322290447972305,0.517392621613692,0.370054813132654,2.8892198714954,4.09131604860107,4.40158996199124 -"Tfru17448_t",23.2720297146839,17.8851142972356,20.4671573660324,11.438551152118,14.1427712917752,15.2153193283371 -"Tfru17449_t",1.11026929653895,1.78238339251942,1.27481437828077,1.1739869911113,1.60162652683522,0.82277875174 -"Tfru17450_t",91.7498813736549,87.6670271090597,88.3191138830433,33.7219393956627,46.2180122146804,51.9431951800886 -"Tfru17451_t",3.44304822833801,5.02987619388983,4.92188067647296,6.05442764370426,9.65544490128499,9.27014017053566 -"Tfru17452_t",11.4213503163599,11.3068263699174,10.7097887685929,11.6827750764778,12.5217194143329,15.3198411953963 -"Tfru17453_t",27.1001215391765,29.5837312332576,20.0701018490299,16.8191310633453,16.8883767448998,14.6723046037159 -"Tfru17454_t",15.547799122554,27.896286678877,13.7828152504054,13.3118757651439,5.37155148541237,5.87885097872819 -"Tfru17455_t",10.8039952389001,10.3916376910874,14.517266729607,6.64747253224239,9.02877002622143,9.81260378602926 -"Tfru17456_t",350.504122968432,355.058046824123,309.505355638163,43.5352338068226,39.755660109522,35.3656762924648 -"Tfru17457_t",10.6166959656225,10.5966936455261,12.9983786381049,25.7831734432603,29.0855377273276,25.8693603445084 -"Tfru17458_t",0,0,0,0,0,0.152141237194004 -"Tfru17459_t",0,0,0.298949239534851,0,0,0 -"Tfru17460_t",2.10845898199394,2.25655900781878,1.89640192441126,3.24719606047299,2.59547464382176,2.67388436500695 -"Tfru17461_t",13.5860434835084,11.096432604318,16.9784008255335,14.7129085374523,18.9151941864807,17.3214447578576 -"Tfru17462_t",9.69877901177811,7.66423150932019,10.6485665786143,8.3225443534289,7.65408887561253,12.6110292239669 -"Tfru17463_t",0,0.113143464793598,0,0,0,0 -"Tfru17464_t",123.029414324063,111.85652490969,92.4379385062568,46.7029805213937,54.1735370940273,57.7363737326448 -"Tfru17465_t",49.3104385397626,48.5856309439144,46.2832841282341,31.7099818313849,28.2274240366145,25.6740700206453 -"Tfru17466_t",0,0,0,0,0,0 -"Tfru17467_t",1.7429538749263,1.538938911176,1.05066392483825,2.16345669279547,1.96116177622022,2.80545916219981 -"Tfru17468_t",0.776077383569953,1.0122812531418,1.25310131583315,0.301035255752718,0.335860712786693,0.425854917965665 -"Tfru17469_t",0,0,0,0,0,0 -"Tfru17470_t",1218.53802546439,2358.93650072925,900.006825339971,7674.44515946423,4553.37637272739,2884.88582965892 -"Tfru17471_t",0,0,0,0,0,0 -"Tfru17472_t",0.143853384882615,0.230936661017071,0.247759301258335,0.148799390115213,0.373530022183146,0 -"Tfru17473_t",21.1338604065672,18.3967030874461,19.0133584776912,14.6370240071583,11.5205997091837,11.8896475101649 -"Tfru17474_t",0,0,0.0569203115400739,0,0,0.0967192129447328 -"Tfru17475_t",0,0,0,0,0,0 -"Tfru17476_t",0,0,0,0,0,0 -"Tfru17477_t",22.78510218709,23.6390515742197,23.0918982700481,14.5900272846548,12.7450465133585,15.1961587024624 -"Tfru17478_t",23.8238381886196,20.6326395944906,24.835096525823,22.048960373811,13.0233751016254,21.0999459102833 -"Tfru17479_t",0,0.540910468050679,0.193437743228433,0.232349849805574,0.194422043631869,0.164345079749673 -"Tfru17480_t",0.0934486949626779,0,0.160947087802968,0.289985018333542,0.242649091162355,0.273481912464417 -"Tfru17481_t",2.19848981528844,2.70334763987911,1.8932342151834,5.46746623189486,5.74909014098068,4.7570397081662 -"Tfru17482_t",0,0,0,0,0,0 -"Tfru17483_t",0,0,0.498935972189199,0,0,0.211948482159923 -"Tfru17484_t",0,0,0,0,0,0 -"Tfru17485_t",0,0,0,0,0,0 -"Tfru17486_t",0,0,0,0,0,0 -"Tfru17487_t",0,0,0,0,0,0 -"Tfru17488_t",0.595006754578489,1.46953974430912,0.945953246101015,10.1551631713171,10.8545864032794,12.7584787762734 -"Tfru17489_t",8.17398260478948,8.38362494805755,5.08375301392779,0,0,0 -"Tfru17490_t",0,0,0,0,0,0 -"Tfru17491_t",1.090627136376,1.4422206113831,1.62633656959576,0.886321720113904,1.16514914152495,1.04507352246033 -"Tfru17492_t",0,0.0393887295659957,0.0422580116632207,0.0507586704598625,0.0424730399055602,0.0359024882163421 -"Tfru17493_t",0,0,0,0,0,0 -"Tfru17494_t",20.9267725531764,18.6233326129939,21.8081851381976,23.8422820609156,29.2692911245219,26.7384105020885 -"Tfru17495_t",14.6609017904718,12.9721921177154,13.6235439159453,15.1649768042745,14.5191604726514,18.1102408417006 -"Tfru17496_t",34.2123706309062,39.0565096930952,47.466646222977,22.4128239735531,32.573170079247,32.5403257904353 -"Tfru17497_t",3.17159455765781,3.90747263487356,3.30287728736309,5.11169669572263,5.93712688463887,3.88541203467884 -"Tfru17498_t",1.47472867357719,1.73614641354437,1.69328767624187,4.98308174082732,4.42495015161216,3.84830977262868 -"Tfru17499_t",9.32094825673057,10.6113637336372,9.70555290353537,7.56190084066291,8.22578659438562,10.2070331401309 -"Tfru17500_t",7.99628733077232,7.52782958473976,8.67128440502733,11.2325180035268,15.1237960568067,32.2131805905575 -"Tfru17501_t",37.3190111824482,38.9828578698592,37.0093094665047,37.050987773824,109.026518702031,170.680865927609 -"Tfru17502_t",29.8473914578731,31.1794570954075,33.7648240224275,21.9447876235328,26.7810034428541,27.574773583469 -"Tfru17503_t",9.19008541477712,9.46304435044977,9.83262217015952,18.820081094086,21.2918991650326,24.8576927032644 -"Tfru17504_t",167.469865826361,108.999075322536,155.365390028424,38.7483369197073,66.9920991916317,89.6785299106167 -"Tfru17505_t",6.76679326578528,6.50764068173028,6.81676958963663,7.06548350267436,10.0009162778235,8.87413477736456 -"Tfru17506_t",4.38515702927885,4.81667892978461,2.9812795041525,8.71375769147222,8.88946723122307,10.8914735131906 -"Tfru17507_t",3.08294960629165,1.23731201866027,5.17703288574298,13.8719255283922,9.33939284822447,2.81949815717329 -"Tfru17508_t",13.5675339827391,13.9132070529363,13.7716745163675,10.0852818442473,11.5422344220359,10.8323439792265 -"Tfru17509_t",33.5352897440122,33.7720258732603,33.3264691587687,13.6758836187202,16.032806657072,15.2655025634364 -"Tfru17510_t",20.1453454502961,16.6863520067538,17.1636520024779,8.86722896196782,8.71824153816581,10.3487090524003 -"Tfru17511_t",2.23431853115552,2.38436537643201,1.15445291437395,0,1.1603273029519,1.35243696791368 -"Tfru17512_t",1.20878239958917,1.29835024976474,1.04094555348826,0,0.52312118214618,1.35689184174749 -"Tfru17513_t",0.797728987109116,0.653636559130707,0.66026128560899,0.393080392110496,0.530252607402309,1.03476848794001 -"Tfru17514_t",7.26314496583119,6.21865175949138,6.46316194521744,8.51458412140541,6.49604949241467,6.90817675282055 -"Tfru17515_t",1.25360007584732,1.11460338871049,2.01897264421637,0,1.33116519291102,0.253987850522222 -"Tfru17516_t",13.433416624694,14.5273786454967,14.4885042236297,5.13563639924853,7.29733049581703,13.4197800111561 -"Tfru17517_t",0,0,0,0.0957035724970095,0.0800813263417611,0 -"Tfru17518_t",0,0,0,0,0,0 -"Tfru17519_t",0,0,0,0,0,0.158551315115334 -"Tfru17520_t",0,0,0,0,0,0 -"Tfru17521_t",0,0,0,0,0,0 -"Tfru17522_t",0,0,0.0716294217499345,0,0,0 -"Tfru17523_t",0,0,0.0615708220999438,0,0,0 -"Tfru17524_t",7.18805362750352,5.69759026346715,7.5053844372632,15.0562702674012,17.1091398396045,14.1336768584719 -"Tfru17525_t",7.23440792989191,5.80691936143157,4.88291488686327,10.5842656950223,10.7745106786648,11.6349686560405 -"Tfru17526_t",28.2315930087349,18.1287630595559,30.6474723446563,19.4681727515302,14.5131501898071,21.9070987161224 -"Tfru17527_t",0,0,0,0,0,0.0944163745412868 -"Tfru17528_t",0,0,0,0,0,0 -"Tfru17529_t",0,0.16447196345606,0,0.211948399578743,0.354701679601556,0 -"Tfru17530_t",0.221858389361217,0,0.127369218252524,0.0764954611155675,0.0640086657731682,0.216426266994288 -"Tfru17531_t",11.697647398556,19.6325394353246,14.6522969047967,10.9998536490234,5.98278465910219,6.22430985583571 -"Tfru17532_t",14.7610423394517,16.6755305248075,13.0253675169133,23.9395947203149,27.6028693182339,31.9991634670947 -"Tfru17533_t",18.7151829441343,24.2026193749078,19.698090981232,33.1248068054501,48.7758708174863,49.5980433252454 -"Tfru17534_t",16.433733061531,14.4419142279208,17.567931027505,17.5849262382363,25.2597840296353,26.6383142923762 -"Tfru17535_t",2.26036888174298,2.17722527409098,2.4007098572153,1.94840457011849,2.02164051467972,3.74854176519613 -"Tfru17536_t",0,0,0,0,0,0 -"Tfru17537_t",0.536807519306373,0.215442508041484,0.346704709109108,0.555264177810125,0.348468902483957,0.29456098958328 -"Tfru17538_t",7.61871341384398,7.22355257637814,7.88185219608683,8.03933308688208,7.56790467342213,7.8561549382467 -"Tfru17539_t",0,0,0.366307422619919,0,0,0 -"Tfru17540_t",0.596641066043028,0.492215365087479,0.727881537648279,0.874302828011741,0.659861282036432,0.679037946395177 -"Tfru17541_t",0,0,0,0,0,0 -"Tfru17542_t",0,0.581323316829279,0,1.4982559221735,0.626843483041352,1.05974240663837 -"Tfru17543_t",0.439844904562552,0.353055000088925,0.37877338202845,0,0,0 -"Tfru17544_t",0,0,0,0,0,0 -"Tfru17545_t",65.9617795979835,53.7800441866523,58.368568369398,55.8731360620563,44.1677601500763,49.3050479905565 -"Tfru17546_t",7.2632563039927,5.24086564629588,6.82035951865898,7.23324476097426,7.28977606870248,8.56468757295582 -"Tfru17547_t",0.676291047355123,1.38727246457124,0.452969599080534,1.01045167241029,0.910549034397555,0.824665382285926 -"Tfru17548_t",0,0,0,0,0,0 -"Tfru17549_t",22.6661660101182,24.7033632240439,20.9516058618559,15.0567303661137,12.2389638951626,15.9748299053704 -"Tfru17550_t",0,0,0,0.279717308456925,0.390095731321454,0.725445985075273 -"Tfru17551_t",0.644580895944609,0.258696310806846,0.277541109849491,0.77786688847953,0.557906733900146,0.628798565998749 -"Tfru17552_t",96.9350501209009,90.3181786652825,98.3705323448592,96.8273316401305,80.3636039581422,37.6160603688578 -"Tfru17553_t",34.4406947145658,36.3598030229292,44.9095228357164,73.1828186892916,59.7732449057368,48.3776900963969 -"Tfru17554_t",54.2744523361177,40.2138954868022,53.6356170103389,43.3612892119919,22.7876043553353,16.5195140506999 -"Tfru17555_t",87.4594831491608,65.6537350898501,92.7128383512276,84.8601612741519,83.1624612438253,53.7143338072157 -"Tfru17556_t",0.949940656072904,1.52499799331697,0.613532573575411,3.86899446015472,3.18604830228677,2.86692151840348 -"Tfru17557_t",0.0542002430783532,0.043505487107732,0.0466746554628606,0.168191310633454,0.0938243152494439,0.0396548773073405 -"Tfru17558_t",0.585438165654686,0.704879843383114,1.00830266156702,0,0.506716685145081,0.42832794304096 -"Tfru17559_t",8.34332763946371,9.42458100258809,7.29435636535269,5.31872337049651,5.31610127297423,7.66456800591453 -"Tfru17560_t",12.1419327457856,12.5870614981967,15.2395890861768,23.644214382497,28.5068903998091,29.8513748717926 -"Tfru17561_t",16.5374757424109,16.4601468939096,16.1780971139773,21.2115288082348,23.4745481657565,24.0052517117192 -"Tfru17562_t",0,0,0,0,0,0 -"Tfru17563_t",11.336855426828,12.7913332241002,13.4007659748716,13.1648152965587,11.5712673962952,8.21620786985316 -"Tfru17564_t",22.238040910089,17.8500454456724,21.2781517551276,17.8909384350292,15.8870584224899,14.8497518488097 -"Tfru17565_t",0,0.181761469048476,0.195001929831358,0,0,0 -"Tfru17566_t",24.9421291633672,25.270991066137,28.0791276680524,37.2130715406657,33.5690339086538,33.5483692642596 -"Tfru17567_t",3.98693313491615,3.10879887535929,4.26717104350288,6.95190750618277,6.40867780432642,4.66717742410461 -"Tfru17568_t",6.2510539649555,6.15796381778551,6.76966677034612,3.62486721714716,4.34479565825356,3.81124948190617 -"Tfru17569_t",0,0,0,0.276370698223986,0.0991101921649055,0.139629849673734 -"Tfru17570_t",0.203579265197369,0.108939426521784,0.0584375734793489,0.772122198788474,0.293674653951208,0.645432776852109 -"Tfru17571_t",26.0538510240565,23.0468941197289,24.0389246094322,16.2247841323095,18.4085681818529,24.5082200573531 -"Tfru17572_t",5.67863381755311,7.23938224834427,4.45868229620368,3.28246129765091,2.31296522682526,4.7656805829597 -"Tfru17573_t",13.8657903409185,16.6947026983797,13.9599136393471,10.7568957164843,9.79519019336579,9.17500286243259 -"Tfru17574_t",14.0957008005784,12.106350732915,16.1442621202495,52.1976276680669,61.2455534358996,50.7396131452648 -"Tfru17575_t",15.2148229330335,16.4008420344023,15.7453880785073,12.2456617084378,10.4744368642255,9.59188564096395 -"Tfru17576_t",0,0,0.112338068272413,0.13493609289951,0,0 -"Tfru17577_t",40.774910901623,35.2685695695526,44.7998575865281,46.1763730797705,56.893258943622,57.3502441057834 -"Tfru17578_t",18.6407930345702,19.3903135180914,20.0383983094704,18.4946973277693,19.8659710514955,19.6688191444409 -"Tfru17579_t",44.5424145298253,57.0243062559703,35.9300871247638,64.7367225827386,59.5375101129827,44.1393382645775 -"Tfru17580_t",0,0,0,0.208891451507896,0,0 -"Tfru17581_t",0,0,0,0.145073195037203,0,0 -"Tfru17582_t",12.2859105914313,11.4208190577899,10.6636748969339,6.12812655891834,6.55685532581374,6.7504979000068 -"Tfru17583_t",0.0849447692330105,0,0.365751850189251,4.83259495500572,4.04374260617548,2.7345426009713 -"Tfru17584_t",288.852699707785,251.225675073915,304.467715284222,344.267334481711,254.962586035297,172.625274405997 -"Tfru17585_t",126.471152883697,111.901586416471,150.184056791397,132.327523572134,155.995644318476,173.32880211343 -"Tfru17586_t",2.12684498155563,1.70717734220214,1.83153711309959,8.24989023676752,5.98278465910219,14.0046971756303 -"Tfru17587_t",13.4499371678426,16.5261915004679,11.6715379208545,19.0492539424343,20.7753840909483,16.5773991403654 -"Tfru17588_t",0,0,0,0.296920878680927,0.496905542038627,0.210017288700607 -"Tfru17589_t",17.4041654005798,17.5191188845917,18.7142893487987,16.25095959592,15.3896042286252,15.8308664726393 -"Tfru17590_t",6.8720976158638,6.36473062841819,7.80885511168333,6.4774549609883,4.99775696669957,7.11043044458096 -"Tfru17591_t",4.854373186086,4.13507342085283,5.11880065807315,3.68910186059227,3.00116102728911,3.62411909353642 -"Tfru17592_t",138.97958041862,198.659319967983,128.452901723014,138.743733712594,112.053997252846,100.250846651704 -"Tfru17593_t",0.866086358468531,1.39038154674195,0.745832123375608,0,0,0 -"Tfru17594_t",0,0.0256693966566367,0,0.165395591601227,0.138397115185228,0.0233974342696527 -"Tfru17595_t",0.236871363077389,0.316886771696356,0.271976375817421,22.2147420310352,16.8799995738955,10.3404564933474 -"Tfru17596_t",19.1282795521786,13.2929739413066,17.0472331940378,11.7653385744154,10.4226139930598,11.0268918453801 -"Tfru17597_t",1.3077968214977,0.749816586549124,1.23347032412971,0,0,0.0911268492607527 -"Tfru17598_t",16.2923699264237,20.6757117224341,18.4979295431359,22.3131375807871,19.2222947060345,17.7136575447632 -"Tfru17599_t",0.182631253850973,0.293189152247759,0.314546591162756,0.302256848094903,0.379376579052099,0.454306963934096 -"Tfru17600_t",0.238665843100703,0.0957862287173076,0.20552760218021,0.493743430836845,0.10328671067943,0.69846658893611 -"Tfru17601_t",1.61319778143104,2.68937169196246,2.7784174522205,12.3224357568971,14.9294303696401,28.0542148985978 -"Tfru17602_t",0.615742569099019,1.0193795994322,0.894793555254565,13.2159487634716,14.0231463389887,11.0090876738954 -"Tfru17603_t",0.112727778291107,0.0452422039697984,0,0.116603614662576,0,0.0206189398947929 -"Tfru17604_t",0,0,0,0,0,0 -"Tfru17605_t",0,0,0,0,0,0 -"Tfru17606_t",15.3331036926089,16.6402942575999,15.6770467993374,24.2328925060101,22.6971017210139,20.9463203515527 -"Tfru17607_t",0,0,0,0,0,0 -"Tfru17608_t",0,0,0,0,0,0 -"Tfru17609_t",15.3050819384153,15.5132930424712,14.7192746582678,27.271445669201,26.590834025981,28.0352600005952 -"Tfru17610_t",9.92430275047319,8.98495877286745,8.74508654551399,10.1461562160978,10.6873370083244,9.20287296850985 -"Tfru17611_t",242.35015614899,195.912077733555,247.648586910453,120.165935840943,124.439371246143,118.026535932535 -"Tfru17612_t",46.0198435588725,46.3083184895399,46.6085674551256,25.8389482530687,33.010798349821,41.2305445561011 -"Tfru17613_t",15.6473510520525,15.5150793415572,18.3746589359518,11.7711581279987,17.8163403409427,19.4680169569603 -"Tfru17614_t",2623.22401468845,2221.4742164118,2636.50808076773,1163.06202567927,1203.08360599401,1542.77300164208 -"Tfru17615_t",64.25700751199,71.8204430757104,74.9679119922758,62.6705416449562,67.9833897622946,68.2627755506704 -"Tfru17616_t",5.08483859406129,4.48077895178648,3.90286099297999,4.05909073140606,3.44433999402564,4.16506655402428 -"Tfru17617_t",44.8027915299247,48.2469886531902,45.2780729708034,39.704515813348,35.3598665073902,26.1873663315125 -"Tfru17618_t",96.2448976604932,102.459645972409,87.4470061936459,74.665511443832,63.5363688218322,50.4252189837759 -"Tfru17619_t",21.9157504621167,26.7011549368495,30.1066022970067,42.2349970775467,45.2767881547297,49.5347298911336 -"Tfru17620_t",105.754238994646,107.100272674034,103.41181752992,200.889680141899,331.917312888327,244.775561779163 -"Tfru17621_t",0,0,0,0,0,0.381770557927812 -"Tfru17622_t",2.11184883361701,2.02589929235576,2.66139972902884,1.81150256905437,2.18453609540014,3.05252596317388 -"Tfru17623_t",3.23116833736336,9.1194194129669,4.93674240472564,21.347358657323,22.1028434962632,13.6504289192576 -"Tfru17624_t",1.3772192913352,1.13242991232041,1.24384877512981,9.93725283270828,14.071771551406,11.6736918902557 -"Tfru17625_t",61.2951246830303,54.120452524361,48.1269784332715,51.8409411673501,35.5767306965166,35.3490043636679 -"Tfru17626_t",5.27813885475063,2.47138500062247,8.71178778665435,5.00464545602163,4.94910982271282,1.93083957569773 -"Tfru17627_t",7.09547101110198,4.55631790655301,6.4157940680579,6.01833208938965,6.14137198634451,5.24321878586499 -"Tfru17628_t",5.31434792401704,3.97355142214467,4.57646210192606,7.07841535508211,5.54490320624963,6.49803925374184 -"Tfru17629_t",0.415435929089575,0.185256881914793,0.755257474385299,1.0026789672379,0.639242587413794,0.810528261446739 -"Tfru17630_t",0.378595659177321,0.45583712269255,0.684659772562466,1.44896675151398,1.11413731718019,1.0525787622363 -"Tfru17631_t",0,0,0,0,0,0 -"Tfru17632_t",4.27469741129783,3.91562405665819,5.00205339373757,3.56334678369889,3.80871677812207,4.1577681893928 -"Tfru17633_t",18.5746467639376,18.834499582351,16.9313538986032,12.1883180307469,10.1987485765791,14.0867780604512 -"Tfru17634_t",3.09175244463449,5.13453083885669,3.58056208468264,1.76444352948801,2.76829356541824,2.02803496889063 -"Tfru17635_t",2.09208720364694,2.25652973986797,1.97050588238147,1.21726006917597,1.301492933324,1.79372742683982 -"Tfru17636_t",0.347629145261162,0.18602346211582,0.29936158331352,0,0.20058991536088,0 -"Tfru17637_t",0.132927811347227,0.106698583887634,0.114471069568725,0,0,0 -"Tfru17638_t",0.157617967676262,0.3795506848986,0.135733050595561,1.14126061311631,1.22781350631308,0.691914369527704 -"Tfru17639_t",2.24572088574951,2.44169920960649,2.44375565479303,3.73781175150167,2.70357671463009,3.22635550971995 -"Tfru17640_t",12.7227253283682,11.8332833323074,11.5648800765249,15.3535216858303,13.065768900948,11.8940800865947 -"Tfru17641_t",7.12136154215798,5.71617921185282,8.40505305989981,66.8193777622021,42.0513798467387,19.7301784124259 -"Tfru17642_t",0,0.0511635091175907,0,0,0,0 -"Tfru17643_t",0,0,0,0,0,0 -"Tfru17644_t",18.7344318466482,20.5232406573431,21.1050616005978,14.5034535981022,15.1954597523556,15.0860946277926 -"Tfru17645_t",10.3047210916702,10.7627860224153,9.05212406686119,4.92284090647179,8.56089103058042,13.776651340395 -"Tfru17646_t",3.65316894758644,3.21053829727367,3.43281423985033,1.90820428408975,2.37642580129428,2.68880770614564 -"Tfru17647_t",0,0,0,0,0,0 -"Tfru17648_t",0,0.403793443215477,0.649811820066772,4.55308313466312,2.61247344856236,1.84027125228676 -"Tfru17649_t",2.18445183371044,3.36071639304582,2.50819383635741,1.60052041718726,1.1816984450431,1.13207585812397 -"Tfru17650_t",16.7473157387948,17.7283087605761,17.3299623800317,18.1727620171128,16.2727343069785,17.1941910975473 -"Tfru17651_t",3.47847231299594,3.21514829441081,2.99549388572813,1.85355124851172,2.28086086318441,2.85345949005769 -"Tfru17652_t",9.15090336996099,10.5588014663508,8.92008449522823,7.8222106016996,8.69045945710621,9.76373870161824 -"Tfru17653_t",0,0,0,0,0,0 -"Tfru17654_t",45.556438300486,40.1376199802205,42.3200815010181,8.49694074997787,6.02326464464299,5.64260796868967 -"Tfru17655_t",0.177611790214477,0,0.458852321146515,1.28602940124946,1.53729057755431,1.29947272360207 -"Tfru17656_t",41.966473926382,32.3805125473262,54.0759222576856,15.3774912579158,21.3785404032662,20.393936900918 -"Tfru17657_t",9.0368442166751,11.0618926785449,11.2284553403163,19.1624803522326,20.6436922594075,23.0936721130224 -"Tfru17658_t",0,0,0,0,0,0 -"Tfru17659_t",0,0,0,0,0,0 -"Tfru17660_t",15.7978696844267,17.399023889222,19.0883011517573,20.6479760114393,18.3374563659901,18.2782393652785 -"Tfru17661_t",0.719061712737068,0.577176933098299,0.309610767335666,0,0.622372419272346,0.0876819683685845 -"Tfru17662_t",1.74067301925573,1.7648899895394,3.31354424278323,5.30679962304028,4.28194939279087,7.64123971669254 -"Tfru17663_t",0.0973845171230071,0.156337337751896,0.279542951960718,0.167888029032621,0.196675776749704,0.593750577920959 -"Tfru17664_t",0.0408412137926337,0.032782452609132,0,0.253472563424262,0.777688174527476,0.657380318998692 -"Tfru17665_t",0,0,0,0.0523171847244339,0.0875542977944841,0.259033966757763 -"Tfru17666_t",1.91444558326355,2.98298346589878,3.68517051844838,7.22215592130248,9.94210740009188,7.82731995108027 -"Tfru17667_t",0.743454661694225,0.852509545094622,0.640227574933043,8.2394605398816,8.8249419147391,8.15907873801474 -"Tfru17668_t",0.49808523777538,0.266535592952508,0,0.343473691016935,0,0.121472450249758 -"Tfru17669_t",0,0,0,0,0,0 -"Tfru17670_t",9.79457473259529,13.2949469606946,9.9432500618748,22.239514533997,22.1243071338203,18.8182126293081 -"Tfru17671_t",5.64523008921456,6.91763192619563,5.76752129283121,5.96025867205034,6.20163801442522,6.86746791698295 -"Tfru17672_t",1.67817338587032,2.32670083896375,1.44516260709765,1.99888381685037,2.68495429988951,1.74870327593205 -"Tfru17673_t",26.5504492626744,33.0010667241139,26.8737034548841,17.5232338378133,19.1216831167278,18.1930778495528 -"Tfru17674_t",10.9859723470354,11.671183560632,9.73884638023149,19.0509003775201,15.661443391638,7.32852636391427 -"Tfru17675_t",0,0.0444518820151513,0.143069972249375,0.0572833512374981,0.191730637622463,0.121552524376489 -"Tfru17676_t",0.0481434823905143,0,0,0.0497987643709368,0,0 -"Tfru17677_t",10.9914111919797,8.10027566003564,39.7984466569128,19.4142788045655,5.78595241706594,16.7418219572995 -"Tfru17678_t",0,0,0,0,0,0 -"Tfru17679_t",2.52705010341921,1.71288314882715,1.7409396890559,2.03306118579877,2.09003696904259,2.30083111649542 -"Tfru17680_t",5.68889165538935,5.30972480448697,4.89900123873962,9.03200581511935,7.9011893826205,7.25965273539894 -"Tfru17681_t",1.31503696826225,1.22529219373267,1.45681611638976,1.63366818805325,1.29835936917002,1.98227597961259 -"Tfru17682_t",0.279661706962208,0.134687426798238,0.144498766912318,0.694265063866455,1.35551773695934,0.654754299082585 -"Tfru17683_t",0,0,0,0,0,0 -"Tfru17684_t",10.6480999449365,11.689312146467,14.2938413654203,19.8417676958851,23.9894696073485,19.6481971299604 -"Tfru17685_t",0.622299087190374,0.513840461213084,0.535894192346598,0,0.576026335734777,0.929000400441228 -"Tfru17686_t",0,0,0,0,0,0 -"Tfru17687_t",262.689789505125,246.56006829387,307.595771386013,76.0473398528485,89.7118858472767,99.2283083710553 -"Tfru17688_t",1.37721929046623,2.76366823665724,0.592997671490055,2.13685681407676,0.596015116987209,1.51143589641629 -"Tfru17689_t",14.4845477192151,17.1713965029987,13.624790009782,9.45053739235722,8.48649641911416,9.29312575624278 -"Tfru17690_t",22.6375266749409,25.0351934793596,26.4256806827154,16.6512754639108,20.4643753470718,17.6666040219529 -"Tfru17691_t",31.1757257550293,32.0045736701704,33.7707541332358,40.054935826639,33.0904799339225,37.0951239967787 -"Tfru17692_t",2.162104646308,2.10910645527742,1.05146502833591,2.39009998026506,2.01038029250127,5.97313810816056 -"Tfru17693_t",7.57988361847646,10.1403766942834,7.34336214707036,6.20706027337747,5.7405666567094,5.77679133706557 -"Tfru17694_t",8.81876883236189,9.68658083116906,8.79340194079307,5.2811452049731,5.02167433137563,3.73544562480749 -"Tfru17695_t",15.7066380349303,15.8400850711038,13.2483525884754,7.91504330162228,4.46182745577413,3.53586154322403 -"Tfru17696_t",3.87946007384073,3.86561493727937,1.78560286225354,15.4978829755667,9.37869648054752,10.7661728995248 -"Tfru17697_t",0,0,0,0,0,0 -"Tfru17698_t",0,0.396667676570498,0,2.04467867828905,1.71091398396045,0.723118350898562 -"Tfru17699_t",0,0,0,0.860384369448921,0.719938866141515,0.608564791114674 -"Tfru17700_t",8.01566897635829,5.81536648770326,7.03545494729174,7.65347615359571,6.40415509592535,6.31567587206817 -"Tfru17701_t",35.4093323582134,39.8470711464,33.4823148279033,20.8269956280269,34.5540995727549,32.2564570163222 -"Tfru17702_t",60.0074119796053,74.6585234116615,72.6496895639357,45.8227096652278,68.1310390041393,64.9515233039243 -"Tfru17703_t",0,0,0,0,0,0 -"Tfru17704_t",35.7006121903981,36.5823716186173,32.6406078370249,21.4497146155956,18.2770784091254,22.1741038614147 -"Tfru17705_t",10.3777524247082,7.53668585483946,6.38344552653829,6.13403603486715,4.70501345589124,5.42338763173921 -"Tfru17706_t",7.04603160018588,8.70109742154635,6.53445176480045,9.53084093589569,5.16033733871939,7.13787791532125 -"Tfru17707_t",10.590860397893,9.21998616037129,9.04321449592923,6.5081490179816,6.02718698907175,5.96302819211127 -"Tfru17708_t",15.3480478058608,10.3743841728214,4.86942262010978,1.67113141644349,1.39834299628013,5.31909109310087 -"Tfru17709_t",0.826873787120545,0.477875232403828,0.825994394903773,2.25800145377984,1.63176737249771,1.45193054707979 -"Tfru17710_t",37.8611787691949,45.3588598768955,36.172857983717,46.5668692258319,36.0308511084047,29.2165755228522 -"Tfru17711_t",0,0,0,0,0,0 -"Tfru17712_t",5.11552856020412,3.83728172804153,4.90346099525558,2.39373400901545,1.52859839451341,2.76247459893832 -"Tfru17713_t",3.13946062674756,3.4769404195134,2.29288692990448,4.80944405288188,5.29703501656629,4.53573762200327 -"Tfru17714_t",1.96117601800902,1.09230070060861,1.2408031323619,3.51900987390147,3.46421364070124,3.27969828516165 -"Tfru17715_t",93.8679866553125,50.663701667752,79.3142175054529,45.6561351106574,26.2966880065375,26.911147034316 -"Tfru17716_t",24.3253926771057,17.9151699895869,19.2202051376168,10.8947804201372,13.6745438568779,13.0269231273815 -"Tfru17717_t",0,0,0,0,0,0 -"Tfru17718_t",29.8121929728465,20.4965060841898,29.0812186525627,21.6586784007214,18.1232073984868,19.8967442903016 -"Tfru17719_t",0,0,0,0,0,0 -"Tfru17720_t",0,0,0,0,0,0 -"Tfru17721_t",0,0,0,0,0,0 -"Tfru17722_t",1.23544671722717,0,1.86183827857367,1.59740521741332,0.53466061998764,0.451948969311601 -"Tfru17723_t",14.1091046878428,12.8247770277701,15.0905174410598,21.5914305215032,25.148729898437,18.3358192273473 -"Tfru17724_t",0,0,0,0,0,0 -"Tfru17725_t",0,0,0,0,0,0 -"Tfru17726_t",1.88210620058233,1.37339114087545,4.12562127716527,7.61028571196179,3.40614749352615,4.88215342816442 -"Tfru17727_t",1.75162658603227,3.00152481519021,2.89382863869736,3.69239471880804,4.0090876326857,4.95710505276027 -"Tfru17728_t",0,0,0,0,0,0 -"Tfru17729_t",37.5642906805405,35.6462271913255,35.155386711624,18.6272012471677,14.8107733335082,9.12139103146051 -"Tfru17730_t",0.0716812088493579,0.0575371203216592,0.0617284265933736,0.07414577118369,0.124085058563684,0.157333770886632 -"Tfru17731_t",0,0,0,0,0,0 -"Tfru17732_t",0,0.0795206427087082,0.0853133443012192,0.204950103366237,0.171494915845092,0.144964763741457 -"Tfru17733_t",5.67090296432143,5.52733647680202,7.8136163822108,5.11169669572263,4.90835979005047,4.56394369009748 -"Tfru17734_t",0,0,0,0,0,0 -"Tfru17735_t",0,0,0,0.174846768264154,0,0.123672152568164 -"Tfru17736_t",0,0,0,0,0,0 -"Tfru17737_t",0,0,0,0.476593293385473,0.598194331686354,0.505654057072577 -"Tfru17738_t",0,0,0,0,0,0.0549776921523951 -"Tfru17739_t",15.0466346456324,20.3662210060076,13.9101947294715,18.6920252306275,9.38449088217111,7.01532728483679 -"Tfru17740_t",0,0,0,0,0,0 -"Tfru17741_t",0,0,0,0,0,0 -"Tfru17742_t",0,0,0,0,0,0.0490543174991043 -"Tfru17743_t",0,0,0,0.363847217699726,0,0.128677724688858 -"Tfru17744_t",0,0,0,0,0,0 -"Tfru17745_t",4.89154689149833,5.11048744121325,4.81413267066104,3.45346606707323,4.30100373047359,4.54455155832737 -"Tfru17746_t",0,0,0,0,0,0 -"Tfru17747_t",32.6248162602601,33.9061724664052,35.6140076496988,50.4062113773435,49.6333263184032,44.28592091423 -"Tfru17748_t",0,0,0,0,0,0 -"Tfru17749_t",24.7089343445434,23.7008936750872,26.3849081763582,28.1143318264744,26.3053025033919,19.3434158865365 -"Tfru17750_t",0,0,0,0,0,0 -"Tfru17751_t",0.272495545804241,0.218726905666508,0.258126135466031,2.22673002346918,1.22644174653019,1.33576354471856 -"Tfru17752_t",14.4973659030374,11.9351336313247,8.64307226159609,15.5725804203762,6.27398214250983,8.02309409238116 -"Tfru17753_t",5.3290164369948,3.64845456248611,5.26396067673493,17.1852191150973,18.9924220234415,19.6091888625198 -"Tfru17754_t",7.45710085948803,6.13720663637725,7.64100820330201,20.5042215772245,30.5561548034285,25.2766425802857 -"Tfru17755_t",4.06116513302732,4.4742609963876,5.48593106862058,6.6718543601991,10.889845878952,8.62258659175725 -"Tfru17756_t",0,0.247917297856561,0.265976896939095,1.27792417393066,0,0.451948969311601 -"Tfru17757_t",0,0,0.404166010991251,0.485468401269747,3.24978075165672,3.4338022249373 -"Tfru17758_t",4.38403665190806,6.5469422346587,3.33633156160496,0.527298809631581,1.32367435045484,2.1632120569963 -"Tfru17759_t",39.8141576949632,33.7670010219178,41.5098370304949,52.3206153594978,59.2764125814017,41.4957855459748 -"Tfru17760_t",45.8880208525574,39.100099485442,46.8119337867874,44.5447854204116,41.5507681157755,42.3540747709449 -"Tfru17761_t",98.8357373781735,105.574627764148,105.408690233094,45.0962919401886,44.0889372789808,37.2684073155413 -"Tfru17762_t",1.59802347119601,3.29837796278729,3.53864915058101,1.652967138019,3.16147149210083,5.6788370491762 -"Tfru17763_t",0,0,0,0,0,0 -"Tfru17764_t",1.63444312784917,2.09909743243532,2.25200672272168,0.676255593986651,0.565866492749565,0.239163656911976 -"Tfru17765_t",0,0,0,0,0,0 -"Tfru17766_t",0,0,0,0,0,0 -"Tfru17767_t",0,0,0,0,0,0 -"Tfru17768_t",2.68833205602834,3.77627628002688,2.89382863798908,9.73267050627377,7.56223980725429,3.4420433494347 -"Tfru17769_t",0,0,0,0,0,0 -"Tfru17770_t",0,0,0,0,0,0 -"Tfru17771_t",0,0,0,0,0,0 -"Tfru17772_t",0,0.425447981179713,0,0,0.229381212360628,0 -"Tfru17773_t",3.13471555113416,4.02588089648598,12.4175482629115,66.7953799559569,21.7056251693757,55.9607261098819 -"Tfru17774_t",9693.18139297171,9219.95179792494,11880.7741974084,15264.6885813061,15236.0998614263,14717.7617191322 -"Tfru17775_t",5.24302786817451,0.195743120513743,9.66009560087651,0,0.211070665655498,0.0892090853793581 -"Tfru17776_t",0,0,0.1590015735548,0.190986469950076,0,0 -"Tfru17777_t",1.20129232752308,0,2.27589001613472,0.0828396985960769,0,0 -"Tfru17778_t",0,0,0,0,0,0 -"Tfru17779_t",11.5214231000842,8.67002207361231,13.8490370566231,9.93129643740396,12.465230454569,6.49773489593136 -"Tfru17780_t",0,0,0,0,0,0 -"Tfru17781_t",0,0,0,0,0,0 -"Tfru17782_t",7.08913945598053,7.97952241714076,6.87670239069692,36.5801146663836,29.8331291432095,28.7353625958429 -"Tfru17783_t",1.75753926300099,1.97503989589495,3.93512262584369,2.18156093290254,4.56363039654722,4.62916768566862 -"Tfru17784_t",1.28527697425024,0.56272744103186,1.50929866413284,0.483442802933433,0.809055291441658,0.341947481648833 -"Tfru17785_t",7.98288648054478,10.6795143692057,10.1480416062916,4.71848925759012,3.61924111991633,10.5686528208251 -"Tfru17786_t",19.250960831028,20.36655657598,21.6158454995815,16.9575881476725,16.6623627061411,22.8440991581436 -"Tfru17787_t",0,0,0,0,0,0 -"Tfru17788_t",0,0,0,0,0,0 -"Tfru17789_t",0,0,0,0,0,0 -"Tfru17790_t",0.563828032023105,1.3577215775231,0.971083435804427,0,0,1.23755154012834 -"Tfru17791_t",7.27012790803931,3.89039406480803,5.56505442298261,5.01339424933047,2.79668599256025,4.13707085018956 -"Tfru17792_t",4.94178686890867,2.97500757427873,4.25563035102553,5.43117773920529,2.94063340993202,3.84156623914861 -"Tfru17793_t",0.175387007873585,0.140779759951951,0,0,0,0 -"Tfru17794_t",4.52976569711249,6.05992556318384,3.72022403626844,4.59874061192819,2.79529007114856,5.95318103161122 -"Tfru17795_t",0,0,0,0,0,0 -"Tfru17796_t",7.11952345520741,8.83181498681616,6.96703736204102,8.03379141700628,8.73910609680876,9.66014807748926 -"Tfru17797_t",0,0,0,0,0,0 -"Tfru17798_t",0,0.20129404482682,0,0.25939953381279,0.217056251696475,0.733911162106002 -"Tfru17799_t",0,0,0,0,0,0 -"Tfru17800_t",21.5898837774825,25.5906110916653,19.844497322625,18.7451567243943,18.0090213624598,19.2743296792436 -"Tfru17801_t",7.20548990996123,8.0778036675832,7.79961001086374,7.07848751827426,7.00310623286158,5.53686212139866 -"Tfru17802_t",2.03360245008883,1.70488151468439,1.90690698354183,2.61771665106398,3.28561749474922,3.53779526703734 -"Tfru17803_t",0.209241287101986,0.251930902927713,0.450471456833337,2.59722571837463,2.35437104891195,0.995075688347335 -"Tfru17804_t",0,0,0,0,0,0 -"Tfru17805_t",1.61558397956429,0,1.39126360574565,1.67113141644349,0.699171498140063,0.591010121455652 -"Tfru17806_t",16.2342409185726,15.3920076837719,15.5361408015251,20.8978958094517,23.1247667806093,15.1265831808417 -"Tfru17807_t",8.35894228434588,11.8744754718527,15.6913041790497,14.6179157476105,18.3215985683954,20.0190423915547 -"Tfru17808_t",52.9257919323227,84.1871708597137,38.0023636670105,179.811982080947,172.461495885419,109.295456869619 -"Tfru17809_t",4.83597816444976,5.49125067179376,4.72316713581702,6.28331408508973,6.76348499275344,8.06877233242024 -"Tfru17810_t",18.9893277672739,21.7862093131796,23.5444637763838,22.6245510556244,20.308245277069,16.0754771853603 -"Tfru17811_t",0,0,0,1.36340052247598,2.22164511955227,1.01511246616644 -"Tfru17812_t",0,0,0,0,0,0 -"Tfru17813_t",2.71780514357666,0.872611855000519,2.75652260695471,2.24899955268314,1.93415689416089,1.19306730072768 -"Tfru17814_t",1.28814349663496,1.09036612517009,0.968105482697749,0.823685723481371,0.729773737234314,0.771097767545859 -"Tfru17815_t",0,0.0671648456344468,0,0,0.579393181819275,0.061220179109938 -"Tfru17816_t",10.161501658796,9.45523722117966,10.534160491406,7.83294663158113,7.73074770102314,10.7966360866056 -"Tfru17817_t",3.32084752586882,3.0973728614108,3.31609883955017,3.2523116487083,3.21066175501409,3.4118536152573 -"Tfru17818_t",23.0298716246053,16.4027444635908,22.6254941828654,32.0418516814891,27.0922238483312,22.4264407474621 -"Tfru17819_t",0,0,0,0,0,0 -"Tfru17820_t",0,0.290661659555968,0,0,0,0 -"Tfru17821_t",9.64053503326364,5.52733647331449,12.4529511012911,9.97199846569155,6.5561662868593,10.0762393094419 -"Tfru17822_t",12.8980025418813,15.4738047005544,11.6445849060253,14.3456613829607,9.42309001896499,7.43263001614885 -"Tfru17823_t",3.44597019288823,3.62443166993694,4.50242079571017,1.22912084621336,2.46836246625128,2.86894904422979 -"Tfru17824_t",0.833849893513126,0.1673287965682,0.359035811252774,0.970334484423774,0.721725501918799,0.22877813831158 -"Tfru17825_t",0.748607317765373,0.600892618963229,0.716294217499346,1.89284610316858,1.36788420004759,1.82569484632805 -"Tfru17826_t",6.00641438552587,7.04206828350142,7.05718101979962,9.12028018198187,8.24289859431966,8.61229321320427 -"Tfru17827_t",34.2797765367968,27.0665006696104,31.9201920042431,9.76742952530796,7.61357991242992,20.9424196478387 -"Tfru17828_t",0,0,0,0,0,0 -"Tfru17829_t",12.1153390033953,12.9878046464728,13.009110679497,11.2804815878036,13.0057102297987,10.0910559389303 -"Tfru17830_t",17.9108417482274,18.8266130758079,16.8929082969643,31.3188726484122,19.9317136710113,17.1602958906131 -"Tfru17831_t",3.60044471877632,2.82119765887384,4.42932954902656,3.99025303288552,3.78408781656558,2.50877795209705 -"Tfru17832_t",128.165170871149,120.043358947197,102.639174761651,28.5560732370961,28.3179116913956,32.8196119253172 -"Tfru17833_t",11.3644174057266,8.198251466106,11.5208075085126,7.58876889587588,11.7039406950719,13.6822907147759 -"Tfru17834_t",0,0,0,0,0.0566748591725012,0 -"Tfru17835_t",10.455915518659,12.9388402020489,13.5687297881877,57.0062424070087,74.9763321277049,87.7616930278098 -"Tfru17836_t",0.220692758593995,0.118097206684737,0.253400055927965,2.05452607997958,2.16486051385538,1.61466882205896 -"Tfru17837_t",0.118826558375456,0,0.204655490714099,0,0,0 -"Tfru17838_t",0.135719510131579,0.0544697132608922,0.0584375734793489,0,0.176204792370725,0.14894602542741 -"Tfru17839_t",0.235984204414178,0,0,0,0,0 -"Tfru17840_t",0,0,0,0,0,0 -"Tfru17841_t",47.8800399082026,49.985675047555,49.7060600965062,48.4628167498318,59.2389011404487,50.5045071999957 -"Tfru17842_t",9.35954533158408,9.41353627082738,8.44842589149899,10.2645614185249,8.54021661456767,10.5191880910915 -"Tfru17843_t",0,0,0.0544362046406576,0,0,0 -"Tfru17844_t",0,0,0,0,0,0 -"Tfru17845_t",3.12376612220593,2.77332161478303,2.64927973965251,11.5538744468953,12.822215927681,10.4923454238831 -"Tfru17846_t",0,0,0,0,0,0 -"Tfru17847_t",0,0,0,0,0,0 -"Tfru17848_t",0,0,0,0,0,0 -"Tfru17849_t",0,0.229756405509317,0,0.148038916230468,0,0.1047104937417 -"Tfru17850_t",16.7267297248981,19.3531135474754,16.221012548752,21.2765779056939,17.0861230595512,15.9313025020836 -"Tfru17851_t",0,0,0,0,0,0 -"Tfru17852_t",30.5698136499876,29.4453579858531,29.8840457466556,80.5161120367361,110.736717088545,78.1981354125344 -"Tfru17853_t",0.494178686890868,0,0.851126070205105,1.53350900871679,2.99409947193079,2.16935505269569 -"Tfru17854_t",0,0,0,0,0,0 -"Tfru17855_t",0,0.199507411292854,0,0,0,0 -"Tfru17856_t",0.591622371629465,0.474883838147421,0,0.611963688924078,0,1.29855760196475 -"Tfru17857_t",1.58510144851788,1.54742872298027,1.21744448083902,1.15215193243723,1.40903930856508,1.31643677343593 -"Tfru17858_t",1.19446033324333,0.767016170809303,1.4400569055129,4.77737719619195,4.54892296209389,9.67127955561962 -"Tfru17859_t",8.54972860948359,6.56432349722859,8.32295847412956,9.03594172540349,8.84792353430874,7.88710944674758 -"Tfru17860_t",0,0,0,0,0,0 -"Tfru17861_t",8.13363064232846,8.31739518114001,8.34758261162699,6.3387750802396,5.5933726398707,5.33947137749037 -"Tfru17862_t",15.2608777948133,14.7965604533671,12.4262875447661,11.4093805744456,6.01589359468107,6.41182278764372 -"Tfru17863_t",0,0,0,0,0,0.178677499495284 -"Tfru17864_t",0,0,0,0,0,0 -"Tfru17865_t",7.02253923476496,6.4719463019397,7.16737743330615,1.88325667737149,0.675360783142282,2.85441454302064 -"Tfru17866_t",10.9990383906933,10.438000279394,8.99225836519314,1.35374400393847,2.50654286016082,4.50241240358948 -"Tfru17867_t",16.6391743466994,15.1305094359439,17.4351171445062,10.7119073415905,13.5960789237854,9.53474612265139 -"Tfru17868_t",1.70170272777985,2.73184775122112,1.92819072407873,2.5939953381279,3.04773368056428,3.34191689887555 -"Tfru17869_t",68.5311564184643,61.324415187729,63.3919606527238,60.2976359952242,55.2158708283002,59.0825769611643 -"Tfru17870_t",0.212415617626921,0,0.0914610821332919,0,0.183852956557065,0 -"Tfru17871_t",25.283560724649,27.6751446809703,22.6637058229034,24.0130868031621,30.736768665336,39.8803543674466 -"Tfru17872_t",2.47089343445434,1.58667070628199,2.55337821061532,2.55584834786131,2.13864247995056,4.70026928084065 -"Tfru17873_t",68.5224302158175,59.1455881992547,58.1999055827402,64.5672973688763,55.6524953721213,55.6275960439843 -"Tfru17874_t",74.3852775647561,70.2047449491894,67.9310956904672,92.7426016936275,82.7651976425201,65.21572972861 -"Tfru17875_t",17.7185521917962,18.8813814047557,15.2583691858588,14.5358066038367,16.3936667190392,15.4221422837093 -"Tfru17876_t",6.0515949369263,7.14337976874837,6.4375425225259,4.78680071929958,8.93517578487819,6.51112921889595 -"Tfru17877_t",0,0,0,0,0,0 -"Tfru17878_t",11.4628162201616,12.8329470947942,13.2482280586683,4.05631946051957,4.56909255142041,3.86225690111889 -"Tfru17879_t",14.5829333263645,13.1050019183951,15.5611540005424,4.26296215001774,5.07624950901473,4.29095700674712 -"Tfru17880_t",10.2421027776709,9.07855714514377,9.41522406756432,8.25441523265905,8.86488902310098,8.73475046148973 -"Tfru17881_t",0,0,0,0,0,0 -"Tfru17882_t",21.6521589617133,20.4386087371067,20.2866337558165,14.5130027835259,18.4408306209345,17.742491496274 -"Tfru17883_t",10.9295053275475,8.38008606036313,15.1715287854036,12.3177001929937,20.3316380229863,22.3183809466653 -"Tfru17884_t",0,0,0,0,0,0 -"Tfru17885_t",0,0.145324488867407,0,0,0,0 -"Tfru17886_t",0.117992102207089,2.21078784074681,0.711264061477581,30.975855420877,17.4913802297557,104.265443669092 -"Tfru17887_t",0.117992102207089,0,0.711264061477581,1.13084455493237,0,0.00166302583888298 -"Tfru17888_t",0,0.289389039314108,0,4.30142629253592,1.47695420907048,13.0872798153747 -"Tfru17889_t",0.428624371282895,0,0.369110795752214,6.9630232116353,3.82031685327216,17.5025739140489 -"Tfru17890_t",0.276349923590288,0,0.118989664420122,0.142925729979087,0.239190277362892,1.81968927117566 -"Tfru17891_t",21.9430088579391,9.05823201709345,15.6569086793232,9.07898368333395,0.542640629234391,2.75216685786304 -"Tfru17892_t",0,0,0,1.66792406578281,0.139565919996774,0.235950325629089 -"Tfru17893_t",0,0,0,0,0,0 -"Tfru17894_t",0.111272022213838,0,0,0,0,0 -"Tfru17895_t",0,0.285735190749935,0.306549643929805,0,0,0.260445168755838 -"Tfru17896_t",77.2503581157858,59.6088592453345,96.2640955321774,64.8574461218218,40.6179958349561,27.9191146383372 -"Tfru17897_t",0,0,0.111817180784287,0.805862539356581,0.786703106998815,1.2350012020756 -"Tfru17898_t",0,0,0,0,0.530757987722596,0 -"Tfru17899_t",0,0,0,0,0,0 -"Tfru17900_t",0,0,0.176452965774229,0,0.177350839800778,0.438235090125902 -"Tfru17901_t",0,0,0,0,0,0 -"Tfru17902_t",0,0,0,0.254835319141597,0.213237080112373,0.360498884612186 -"Tfru17903_t",0,0.26973402000192,0,0,0,0 -"Tfru17904_t",0.0953579759040266,0.0765420034245001,0,0,0,0.139534755564989 -"Tfru17905_t",0,0,0.712765674555999,0,0,0.302783545942747 -"Tfru17906_t",0,0,0,0,0,0 -"Tfru17907_t",0.270129828847098,0.433655980816621,0.232622880924225,0.279417504267796,0.701419720112403,0.592910544948981 -"Tfru17908_t",0,0,0,0,0,0 -"Tfru17909_t",7.04248699451492,7.69752257030977,6.0646527654032,4.23644779657392,4.7121337875724,6.32191162304598 -"Tfru17910_t",1.80451883279959,1.60939152785166,1.20863964623398,2.90354132119805,0.694165578217843,1.1735572281886 -"Tfru17911_t",2.13585703656222,3.28595469362425,2.60567197340334,3.0377773795555,2.92704034332216,4.23223399228236 -"Tfru17912_t",0,0,0,0,0,0 -"Tfru17913_t",0,0,0,0,0,0 -"Tfru17914_t",6.47400856516874,6.82048696138074,7.49154915496606,14.7534460922903,12.6078188824057,12.7666740759183 -"Tfru17915_t",27.0317300652607,16.5924712660088,23.5066521913113,3.28954613857229,4.35824303485193,4.45961001894854 -"Tfru17916_t",37.4763271042441,39.5785598853056,41.3404091242479,29.8641579190803,20.7753840909483,20.6678334591391 -"Tfru17917_t",26.8486771125244,37.6035009232482,24.0700367089401,45.9334094832132,23.9199244196157,20.1619221548568 -"Tfru17918_t",34.1902696162868,53.7115708565517,32.1770190203994,82.6044242195409,30.8611083444029,25.3722049283303 -"Tfru17919_t",0.485354067482102,0.602084866223077,0.341970296064551,0.730242385103232,0.687420797126966,0.742487592440487 -"Tfru17920_t",17.4472961163272,15.8542723394164,15.1381709743768,13.1778419126799,9.20320208260856,11.8739320119139 -"Tfru17921_t",228.713964516553,168.721381940455,260.739866119364,297.938893122119,263.253795552445,159.809155548582 -"Tfru17922_t",11.0795212704795,10.3905089879634,10.6012816470929,9.29956543622362,5.71507568576486,6.55045042554647 -"Tfru17923_t",1.19658696885148,0.760377801378461,1.97501657833944,0.361004098985752,0.21576808403062,0.145911121249561 -"Tfru17924_t",309.528487130183,434.678193134221,272.842051748246,1096.59305621328,925.863163098364,784.198242167715 -"Tfru17925_t",17.7120523560692,20.9343859868975,17.2818102939615,17.5646599225363,15.5413535728709,12.5426766183421 -"Tfru17926_t",87.9817764006431,69.1499942355987,88.6563864764554,43.8444166583118,32.3246089742346,32.7441136893249 -"Tfru17927_t",69.9660888613271,56.570356792364,69.926862242079,24.5641108691109,20.7753840909483,30.0786462980146 -"Tfru17928_t",0,0,0,0.483667034289154,0.674525457498321,0.228070722917914 -"Tfru17929_t",34.0687242206791,31.2618000216988,32.8722930617004,51.8189418951642,52.8767033798652,58.1227201676162 -"Tfru17930_t",16.5793674335404,21.2033185878147,18.5925293612919,11.6462368015948,11.7798569587851,11.0890571851712 -"Tfru17931_t",3.69276381412956,1.48205505531834,3.577535404983,7.63945879800305,3.59573955420259,5.7412418519144 -"Tfru17932_t",3.75046324872533,3.53724858906058,4.68309322110621,7.37088407463575,5.11269217863181,5.4879517702123 -"Tfru17933_t",0.540259657694196,0.216827990408311,0.523401482079506,0.908106888870338,1.169032866854,1.13641187781888 -"Tfru17934_t",1.57287436311068,0.974176858803055,1.43633574014676,0.581738946941324,0.732955228755786,0.733364283973951 -"Tfru17935_t",11.7967155385888,9.84015427608521,10.4793536548715,4.99459444406756,6.10974565034693,6.93754076798153 -"Tfru17936_t",169.099671693578,124.124947614617,162.344572803187,34.1671917443905,41.8971100999354,44.7515426940384 -"Tfru17937_t",0,0.0606416412023243,0,0.0781464422907236,0.196170443304818,0.276371671881195 -"Tfru17938_t",0,0,0,0.0642742927716602,0,0 -"Tfru17939_t",0.664551431283698,0.977941404333329,1.00148980574562,3.0360176155874,5.08086189699527,6.19917874320092 -"Tfru17940_t",1.70728866599298,0.897853255306732,1.06465314317877,0.974338823571516,1.42676078550311,2.79973993602982 -"Tfru17941_t",28.1411163763907,23.1092348653711,25.9103336681119,32.1598951523729,25.8379250176049,18.8193582052673 -"Tfru17942_t",11.5118821726565,16.082467723716,12.8648239691044,11.6349916421469,11.1048339649316,10.2227453058515 -"Tfru17943_t",0,0.0833541471161738,0,0.322245403562242,0.269643427632827,0.607812705328828 -"Tfru17944_t",0.865400077677351,0.80150758736511,1.26117729895685,4.88892069075849,9.56457857118935,49.9220969271293 -"Tfru17945_t",11.8710315003132,10.6281067689813,10.4586741561616,8.31206332260984,11.6974445207731,12.0925824223634 -"Tfru17946_t",10.7820804412553,9.37578144621176,8.31782295882262,6.73814564436164,4.27728495990112,10.6824301837287 -"Tfru17947_t",0,0,0,0,0,0 -"Tfru17948_t",0,0,0,0,0,0 -"Tfru17949_t",0,0,0.0652350910436735,0,0.065567037257276,0.0610898612217826 -"Tfru17950_t",0.197671474756347,0,0.170225214041021,0,0,0.144623670179712 -"Tfru17951_t",0,0,0,0,0,0 -"Tfru17952_t",1.43362417698716,0.460296962573274,0.740741119120484,0.29658308473476,0.248170117127369,0.62933508354653 -"Tfru17953_t",0,0,0,0,0.219017603368431,0.536480672320946 -"Tfru17954_t",98.6847153956637,82.0294732871786,108.822451539221,94.4034547651257,82.1525529847297,63.2663098803314 -"Tfru17955_t",0,0,0,0,0,0 -"Tfru17956_t",1.80022235938538,3.37167525084402,2.0670204562092,0.620706027336788,1.55815380681871,2.19518070808152 -"Tfru17957_t",9.28535743263366,8.730864333778,6.1684242035391,6.86043503899615,7.57754798685641,5.88770573073723 -"Tfru17958_t",3.0779663903332,1.16264663822387,0.467752473927374,1.68553791906371,1.56710871375688,1.19221021214957 -"Tfru17959_t",0.138860126894954,0,0,1.72361343128498,1.92301075883158,6.90846953420444 -"Tfru17960_t",2.27824750566637,0.914352610399791,1.22619857571922,4.5658714553319,3.08109509823386,3.8545884975864 -"Tfru17961_t",0.875522638072877,0.798596696079874,0.78822902285693,0.782130759222363,0.482232979846739,1.71787708657332 -"Tfru17962_t",1.37721929046623,0,0,0,0.596015116987209,0.503811965472096 -"Tfru17963_t",5.08220427764943,9.45676101521415,6.03433561231575,1.831964626973,2.59930332576943,6.08453387832153 -"Tfru17964_t",39.6978219820076,46.7259296841713,38.6386451262205,29.1579839976395,20.1154115983173,18.3459576318308 -"Tfru17965_t",4.02891682562892,6.46786726628271,4.88301457684279,3.2413423097211,5.03701585864022,4.1486186028461 -"Tfru17966_t",0.584216806477381,0.937879068386434,0.603719465653134,1.69204981026702,2.62942969718539,2.99204046442729 -"Tfru17967_t",0.389387609601147,0.468830857592013,0.335321974356588,1.00693909417479,0.50554237069515,0.498557843319402 -"Tfru17968_t",0,0,0,0,0.143137488815589,0.120994212256649 -"Tfru17969_t",3.33080788961686,2.97063898753236,2.15124926334881,50.052968415936,58.4593682294856,47.3172652187643 -"Tfru17970_t",1.43969395676876,1.29156914851079,0.729291491607197,0.525597845729544,0.952903201752165,0.929411186890792 -"Tfru17971_t",4.82514359112169,3.6608275736994,5.06590772706658,4.99104295782201,5.72099483228317,4.25564536956824 -"Tfru17972_t",14.6105003080778,17.6705894462839,16.3224177035809,12.4578836039115,27.8551272006722,32.4298611774895 -"Tfru17973_t",8.30383014175515,8.27875546982395,8.03053054276674,5.58988444309656,5.87529002925033,6.75042822176339 -"Tfru17974_t",4.96940747553508,4.83686994532633,4.88594728238375,2.59037075218734,3.04808849028818,3.60717165259599 -"Tfru17975_t",0,0,0.0868495990005209,0,0,0.147575173652768 -"Tfru17976_t",19.0197644936274,21.6949223290207,19.097677542274,16.0894284629803,17.728581657812,17.6902188684533 -"Tfru17977_t",1.25558987022544,0.870405295735535,1.13040181199115,2.77462341024618,5.18678916672792,3.67454162005519 -"Tfru17978_t",19.5204139977823,20.6379546079345,19.8837841533154,25.6149256408799,25.6400953681255,23.9309474408028 -"Tfru17979_t",0,0,0,0,0.478380554725775,0 -"Tfru17980_t",0,0,0,0,0,0 -"Tfru17981_t",0.304070650155187,0.104602127740927,0.374072988456225,4.22362529460432,1.76708928798397,2.38359849378404 -"Tfru17982_t",8.88215437231163,7.12953357007767,9.879811431676,10.335985829677,8.32845793954315,5.6861949619116 -"Tfru17983_t",6.54311588316081,10.8282647479196,11.9648684099987,4.26138561076107,5.94295842986262,9.75166814553108 -"Tfru17984_t",0,0,0,0.105459761926316,0,0 -"Tfru17985_t",2.73522156930294,1.41139894221596,3.028425319567,0.808361337928229,1.01461178118585,1.42941999596227 -"Tfru17986_t",4.02064775480479,4.33137122905065,4.19131351952388,3.28333163075383,3.38842851357406,2.6320050807265 -"Tfru17987_t",1.38207435346682,1.1886046712747,0.425062961030751,0.714796600224433,0.683561403697476,0.938949210038672 -"Tfru17988_t",0.412827404282297,0.331368575022037,0.533260805656761,0,0,0.151019803013213 -"Tfru17989_t",0,0,0.237199068745685,0,0,0.201524786315993 -"Tfru17990_t",0.687875348877485,0.305408728712138,0.433722952610494,0.529354593574086,0.206099753428805,0.271474297728564 -"Tfru17991_t",1.35016676954112,1.02354427257923,1.58256253678762,0.698294280754966,0.941384591621095,1.23478914829777 -"Tfru17992_t",0.123544671722717,0,0.106390758775638,0,0.106932123997528,0 -"Tfru17993_t",0,0.396667676570498,0.425563035102553,0,0,0.361559175449281 -"Tfru17994_t",0,0.0882637500222311,0,0,0.190350377796647,0.0804516489874054 -"Tfru17995_t",2.91125068019867,2.33680462930145,4.29776530499607,0.215096148087338,1.43987810531325,1.21712989755203 -"Tfru17996_t",0,0,0,0,0,0 -"Tfru17997_t",0,0,0,0.403242894790184,0.506128846763242,0 -"Tfru17998_t",6.2599524808098,9.75819619036278,8.82836490747303,10.3227568261353,9.81558373627417,10.0229201228758 -"Tfru17999_t",18.4993780245266,19.7497838094802,17.0348924225644,19.3880414643724,19.4467258060621,18.1804355736451 -"Tfru18000_t",0,0,0.127145370768777,0.152722045390658,0,0 -"Tfru18001_t",8.31591414651117,8.6197153723971,8.17625005087912,12.1915759071795,12.8085181729853,15.3782417804109 -"Tfru18002_t",0.0767919348916339,0,0,0,0.0664660368540394,0.0561837841191752 -"Tfru18003_t",3.90745938471848,5.07365632822729,4.9484073849134,2.37753334684773,2.68573706784489,2.10208822935628 -"Tfru18004_t",173.881942619973,193.339251925773,178.821304583956,191.408416802291,122.115775092725,95.1585311597741 -"Tfru18005_t",0,0.087236099633874,0.0935908356629158,0,0,0.0795149544972545 -"Tfru18006_t",250.215581896885,288.943957646451,248.306416100407,79.5576841326417,89.4280285722352,67.2613719514585 -"Tfru18007_t",1.17646612919914,2.66128409360474,1.7038774607225,3.48480404908907,3.23995487096266,6.29909270022076 -"Tfru18008_t",17.4902149592433,18.8721754655042,13.0864264377952,8.30432637257328,9.18229433371265,10.698696420291 -"Tfru18009_t",0,0.692513530341305,0,0,0.280027641790702,0 -"Tfru18010_t",2.07311153020023,2.53568996538602,1.61523925191686,10.2113800032062,8.62996272168064,6.71709819489204 -"Tfru18011_t",11.7316265787347,9.97537056464269,12.6712023232902,18.9223517919768,17.9848443343535,14.2569842910888 -"Tfru18012_t",1129.79472209878,1645.41329615714,1185.16483240019,4274.17841137756,3691.04731755881,2065.35644000147 -"Tfru18013_t",50.7445228820823,43.266060937072,50.1564594593015,29.5689354499552,27.7191030689968,28.6286922949706 -"Tfru18014_t",20.2125746809941,20.8665778476971,23.5675540305551,39.1013960159677,35.9182651849184,29.402022940368 -"Tfru18015_t",21.5746492876091,20.4006031714807,21.464439075941,21.3020512105795,21.2199934781087,15.7848013561904 -"Tfru18016_t",1.52949620232209,1.37741617707873,1.99175594581745,10.4186002812464,13.4320422897072,14.8203940877989 -"Tfru18017_t",0,0,0,0,0,0 -"Tfru18018_t",0,0,0,0,0,0 -"Tfru18019_t",0,0,0,0,0,0 -"Tfru18020_t",1.34123968720743,0.58722936154123,1.05001039139962,0.630615702665346,0.738747329794243,0.802881768414223 -"Tfru18021_t",0.112158087340769,0.449870132889343,0.191644280708434,0.575489031968772,0.193907424467316,0.582398930892376 -"Tfru18022_t",0,0,0,0,0,0 -"Tfru18023_t",0.256120505077237,0,0.349780267423545,0.222571221310088,0,0.385500400227547 -"Tfru18024_t",0.428624371282895,0,4.65079602647789,0.354689158478713,0.741978003248154,0.752633385629115 -"Tfru18025_t",0,0,0,0,0,0 -"Tfru18026_t",0,0,0,0,0,0 -"Tfru18027_t",0,0,0,0,0,0 -"Tfru18028_t",0,0,0,0,0,0 -"Tfru18029_t",11.1622178927039,14.1468891643949,9.10645375813375,10.3306317836578,9.66128001431704,10.3158142365894 -"Tfru18030_t",2.15674561393691,3.95697828950521,1.68040171562499,2.86829924613287,2.31119798566784,2.47964177783675 -"Tfru18031_t",2.0872143297254,3.76957481461405,0.898704546179303,3.77821060118629,1.3549163537575,2.29062334756687 -"Tfru18032_t",3.31384215409761,2.37239409974466,2.31382886889447,1.94549650359592,1.47288170794036,1.96583346992679 -"Tfru18033_t",0,0,0,0,0,0 -"Tfru18034_t",8.53181735929451,7.8480802725475,9.3314711477639,11.1441808614679,12.6130760344601,10.4795876649866 -"Tfru18035_t",9.52401902485106,10.6113637336372,10.81309347511,13.576412713005,12.3445387139391,13.9015730346179 -"Tfru18036_t",0.683381589789431,0.694813771866978,0.35309731220548,0.424126678115814,0.315461363636959,0.733314162787587 -"Tfru18037_t",0,0,0,0,0,0 -"Tfru18038_t",0,0,0,0,0,0 -"Tfru18039_t",0,0,0,0,0,0 -"Tfru18040_t",0,0,0,0,0,0 -"Tfru18041_t",0,0,0,0,0,0 -"Tfru18042_t",0,0,0,0,0,0 -"Tfru18043_t",4.0980671595828,1.23353972592045,3.97019172992015,2.64935499473429,1.33013129850584,2.99829560128672 -"Tfru18044_t",7.78331431853116,11.6025295396871,8.51126070205105,10.3511858088383,5.88126681986404,8.58703041692042 -"Tfru18045_t",0,0,0.275078767937011,0,0,0 -"Tfru18046_t",17.4167854282269,14.3912968024053,9.7049131175826,9.53767798104344,21.7254778755953,11.618395454986 -"Tfru18047_t",0.919342320062739,1.3353169310294,1.73418600026157,0.769817793154684,0.757830581743815,1.50539750486699 -"Tfru18048_t",0,0,0,0,0,0 -"Tfru18049_t",0,0,0,0,0,0 -"Tfru18050_t",21.3344081444167,22.8855663603576,19.5574726605936,9.96616348165464,12.3813509049917,19.169617839356 -"Tfru18051_t",0,0,0,0,0,0 -"Tfru18052_t",0,0,0,0,0,0 -"Tfru18053_t",11.1519240757855,12.0552924936206,10.47315314544,8.17194047231764,6.89770264459076,9.49298731293267 -"Tfru18054_t",0,0,0,0,0,0 -"Tfru18055_t",0,0,0,0,0,0 -"Tfru18056_t",0,0,0,0,0,0 -"Tfru18057_t",0.36447018122103,1.0239360848566,0.941592832547947,0.754002983317003,0.630922727273918,0.399989543338684 -"Tfru18058_t",0.305770252125377,0.122717934516805,0.0329143384747197,0.158141663015987,0.165409109004365,0.307604939986422 -"Tfru18059_t",398.650000801393,423.574715924177,364.754446284477,487.030022058622,348.086425843208,199.118748943246 -"Tfru18060_t",6.64150974101739,6.8469388758347,6.42410441524235,6.05589544843572,5.85742844827223,7.13906652161 -"Tfru18061_t",1.66357138627368,6.67658292543958,0.716294031928507,2.58115310834676,0,3.65138874668805 -"Tfru18062_t",77.812889960439,85.9500822142713,89.246149615564,62.1469190486114,60.7935419710536,51.0109615362356 -"Tfru18063_t",0,0,0,0.151128424047452,0,0 -"Tfru18064_t",0,0,0.060948370654957,0,0,0 -"Tfru18065_t",0,0,0,0,0,0 -"Tfru18066_t",0,0,0,0,0,0 -"Tfru18067_t",21.5827763528857,18.7670805826476,21.2334977295319,5.34115821866598,2.4104036790603,0.63672368604673 -"Tfru18068_t",0.226901760355023,0.273849337118811,0.244802939658599,0,0.098195603400836,0 -"Tfru18069_t",4945.44321988683,4706.70273456699,4037.56004430968,777.066539889072,1299.60235047539,1044.19543832211 -"Tfru18070_t",27.731580681837,26.9734020067938,31.8883058730243,34.4220662927496,36.1451342630868,40.817573709944 -"Tfru18071_t",43.0482066074911,31.5095610350244,39.8473017969613,5.49247771368842,7.2221425508037,5.13365059497963 -"Tfru18072_t",658.98047834484,523.992278681668,729.762520240308,776.907553299898,684.777625621601,431.947117678948 -"Tfru18073_t",1.58800102433834,2.17925351579279,1.32339724330672,3.49714859304926,3.99039389551751,5.73424033746085 -"Tfru18074_t",12.4347489084092,9.00736348602321,9.92468305690429,6.58799899051616,5.90635919553133,11.6495149490427 -"Tfru18075_t",14.0896800238546,13.5968310995302,11.7698118313853,13.6461752241339,8.99788148913873,13.1655687190922 -"Tfru18076_t",25.4833238538941,22.9163579038211,21.8539607705275,22.2579165750188,19.9974512064855,25.0269941520871 -"Tfru18077_t",0,0,0,0,0.427728495990112,0 -"Tfru18078_t",74.8244080181714,71.9534217378251,65.096449912471,42.5374841483594,38.793845174567,47.1079537735 -"Tfru18079_t",0.273458561915895,0.172464207204564,0.21866875321475,0.626334377736764,0.659344321881991,0.871743466498266 -"Tfru18080_t",0.124644475922029,0.200099421415385,0.107337857518448,0.644650176760272,0.755188294107171,1.09433340937171 -"Tfru18081_t",0.950343628636283,1.06795143692057,0.654712361696234,2.55584834786131,1.89187603995626,4.17183663979939 -"Tfru18082_t",0.0517943136692031,0,0.0892055683938766,0,0.179318974891046,0.11368383445076 -"Tfru18083_t",2.49495276682487,2.23246267826434,2.28942139137449,11.1690821667007,7.92984475525972,6.10461158937734 -"Tfru18084_t",35.3707949132493,35.0252546365294,29.9699310731518,31.7243522817118,30.3521236437027,32.7018526783842 -"Tfru18085_t",18.1442529713481,10.1748779759355,16.695165223254,3.34226322412633,2.15129716918104,4.36438294625167 -"Tfru18086_t",9.06586799691879,3.39593190733016,6.24567332092955,7.81464422907236,4.96965123038871,5.96962811263381 -"Tfru18087_t",34.1982404083227,34.4198216904463,37.320682126446,12.3691010706108,16.7446205411179,14.4328653626762 -"Tfru18088_t",2.95477226160974,2.43030000712537,2.48168109484467,5.39580315558042,7.13561824400352,7.60640123774105 -"Tfru18089_t",88.9476954786302,63.8972090938516,90.9227352574441,47.927933756459,45.6926960228135,39.9022721115183 -"Tfru18090_t",0,0,0,0.232972771654919,0.292414923532114,0 -"Tfru18091_t",3.13862987946242,3.05419927371325,2.35450886644215,4.2465465994263,4.16002923394436,3.88277493539692 -"Tfru18092_t",10.7381684595083,11.4079237810688,13.8707951666885,9.14724671866154,11.2077729964326,9.47393779278754 -"Tfru18093_t",5.95721331485825,6.53249159575939,5.35360700443608,6.65993591564107,6.06320222396774,6.55727799496611 -"Tfru18094_t",11.1394974724571,8.56889842757263,11.5913025583181,12.0026027385752,9.44074774298618,8.99902809612712 -"Tfru18095_t",0,0.100497026850946,0,0.129506473662123,0,0.274806526794535 -"Tfru18096_t",8.48885340199295,14.0975968676623,10.335102281062,29.672775941024,54.4720436530962,76.4565378328113 -"Tfru18097_t",0,0,0,0,0,0 -"Tfru18098_t",0,0,0,0,0,0 -"Tfru18099_t",0,0,0,0,0,0 -"Tfru18100_t",0,0,0,0,0,0 -"Tfru18101_t",47.158241236017,57.1555358508271,55.9401818632946,155.384177996,130.830857435191,185.080663417717 -"Tfru18102_t",0.286724835397432,0,0.246913706373495,5.33849552522568,6.20425292818422,12.5867016709306 -"Tfru18103_t",0,0,0,0,0,0 -"Tfru18104_t",0,0.98085098206523,0.789225992372006,96.0627219036165,156.268661789551,283.409803126716 -"Tfru18105_t",17.0412508041726,40.3161168784819,17.7646064119322,339.864161445501,483.378865432811,612.681966454391 -"Tfru18106_t",0,0,0,0,0,0 -"Tfru18107_t",79.427992583914,166.989879696605,85.4994825069674,192.441439602969,288.475651459222,396.505513207251 -"Tfru18108_t",5.44568356348057,6.09013446620982,6.48108016314229,6.13924825291086,5.34894266289164,6.75981357158269 -"Tfru18109_t",7.90116787293843,7.47463515303428,7.25540049769371,7.46396019437809,5.72220271986772,5.89875814072723 -"Tfru18110_t",11.8336294952788,6.87134616556686,11.5637508039854,12.1536844513685,9.08015038940048,10.1316032680842 -"Tfru18111_t",7.56040520976525,4.75302238005178,7.51229901486884,7.38284702119788,5.03368337005355,6.88532451170247 -"Tfru18112_t",8.63178845769704,6.1739729923994,8.16925175217209,4.86209197405967,3.10679701054873,2.31353734850048 -"Tfru18113_t",1.27529983713772,0.511829260090965,1.2355055857816,33.1435818012983,28.1472945748332,24.6093503289672 -"Tfru18114_t",1.72734673431741,2.08486476225667,2.82085184790967,5.2226404054084,5.03153960425416,3.60745466098183 -"Tfru18115_t",0,0,0,0,0,0 -"Tfru18116_t",11.441711761783,14.4680094719277,13.0821904748661,11.9972284388415,11.9380938433061,10.2059520980366 -"Tfru18117_t",74.0959386668288,74.5941039969926,78.2232206421544,84.3759574014239,76.3929740224618,58.8053963801173 -"Tfru18118_t",7.05430644621417,3.60331706185202,5.52257373778162,5.97014957571445,5.49083374822196,5.13694963239679 -"Tfru18119_t",47.6208552822109,57.6971165920724,49.5200622664788,39.7318243167531,38.3011425954782,45.1948969311601 -"Tfru18120_t",28.9743817697145,27.9332219687144,26.2715282436484,29.3362885183351,25.4763834107979,23.7784538014454 -"Tfru18121_t",11.8012820750058,14.8602368386858,12.2587560857899,16.708381736765,13.5979357680439,9.28181763839944 -"Tfru18122_t",2.52391689871301,3.32826312315589,2.48397308042692,2.14449936483642,2.18453609540014,2.70393503528056 -"Tfru18123_t",2.27641020929083,3.78497737837268,2.56710605045733,9.02626700399537,12.1033366671783,12.9671448795003 -"Tfru18124_t",33.8886944611086,33.0802341379822,31.1315546222994,8.66093418489594,11.5066327766357,21.0059657541008 -"Tfru18125_t",36.6412164875468,52.1518114339989,35.9126215953449,46.5752796052713,52.6390689534594,46.6515382135457 -"Tfru18126_t",19.4262257369939,19.6420813080453,18.2308431486124,26.0890811873675,23.7579887376686,24.0481310403426 -"Tfru18127_t",8.35853664336492,12.96360804711,12.5659506655071,25.3516019934574,36.4182323145713,24.3579916681261 -"Tfru18128_t",1.55324651587081,1.13834694964363,1.68651588670063,3.9816994358161,5.31909954418572,7.06551732730869 -"Tfru18129_t",1.36804462544178,1.5223700244397,1.3119689424146,2.5407137906571,1.93760058879311,1.86533490220687 -"Tfru18130_t",3.0735503696871,2.17925351579279,4.27898442002505,3.76208409252269,2.83761343681245,2.36115778601329 -"Tfru18131_t",35.4876369410489,34.3390028965506,36.5931851099802,26.5507745665046,28.9761936005332,30.039314952741 -"Tfru18132_t",26.1788709486097,25.0248984623937,21.3143185853063,14.0318246406664,18.9509169328197,23.506467638983 -"Tfru18133_t",30.6110684592319,28.7752689424703,31.9844217961287,45.3844164118207,24.6108396154311,15.6773229516672 -"Tfru18134_t",7.58744425683366,8.29160616639745,7.75413821848992,13.7581956222741,12.8574534295178,12.0722995632875 -"Tfru18135_t",0,0,0,0,0,0 -"Tfru18136_t",1.02869849107895,3.30286555185231,4.1340409124248,10.2859855958827,7.41978003248154,63.2212043928457 -"Tfru18137_t",7.81949234760547,8.17480342149634,7.17847896504449,6.79722200544217,7.28998132296191,10.2161818367908 -"Tfru18138_t",0.11251389746176,0.0301042433111538,0,0.543117773920529,0.551846139915814,0.137198794255307 -"Tfru18139_t",0.454110144710527,0,0,0,0.393047807126049,0.332243566629069 -"Tfru18140_t",120.446955894907,103.854219674276,123.023238772772,69.5475198552245,92.2311445936125,95.0646178984074 -"Tfru18141_t",30.9670536798788,42.5768498044459,32.377141047309,16.3665983889953,47.2803023594451,59.2600352586153 -"Tfru18142_t",10.5802542174567,8.61932019014089,10.335102281062,5.88037289056813,7.44906863787291,6.64331003762541 -"Tfru18143_t",7.33825580232523,5.48405010680296,6.10144592496431,10.7314837256586,18.3974786829482,20.7352009052841 -"Tfru18144_t",0.384612581687464,0.485133129618594,0.378525655813912,2.50068615330316,1.94981531527213,1.16578596138977 -"Tfru18145_t",18.7560328204397,20.6958556639128,19.7364005087491,15.7790672411537,16.1492128739607,17.0188886141238 -"Tfru18146_t",36.0942786428225,43.8115885888792,34.7649323735723,21.4645347776976,24.2742324595586,20.703051588226 -"Tfru18147_t",175.180728835916,115.326619375638,169.765799400854,249.834176003443,185.502932380257,107.563854696161 -"Tfru18148_t",0,0,0,0,0,0 -"Tfru18149_t",0.65690129534581,0.468695082654975,0.62854662004721,0.0754985611010292,0.505395963984841,0.267007210366541 -"Tfru18150_t",0.454519621847326,1.21611370634778,0.587115819393061,0,0,0 -"Tfru18151_t",0,0,0,0,0,0 -"Tfru18152_t",0,0,0,0,0,0 -"Tfru18153_t",0,0,0,0,0,0 -"Tfru18154_t",0,0,0,0,0,0 -"Tfru18155_t",0,0.0974472615852378,0,0,0,0 -"Tfru18156_t",1.51461015813908,2.5935963468071,2.95643550828456,0.470005765892765,1.04875736997576,1.1450822443616 -"Tfru18157_t",0,0,0,0,0,0 -"Tfru18158_t",8.93651204624862,7.69066834024446,9.99360987996102,7.11344191636694,8.32388283925332,7.90096590818712 -"Tfru18159_t",0,0.589453715183432,0.252957048837182,0.455763166926318,0.76273263270964,1.39693317787222 -"Tfru18160_t",437.09313466141,437.477863508765,486.595740848577,562.832369272804,490.106836793225,412.537732500172 -"Tfru18161_t",0,0,0,0.0807610072744281,0.0675779222289211,0.0571236615486782 -"Tfru18162_t",0,0,0,0,0,0 -"Tfru18163_t",3.77327975518145,3.82999232392094,2.85394221734649,5.51378120291944,7.15388107124146,8.2381876763491 -"Tfru18164_t",0,0.119775319745976,0,0,0.129154252785647,0.218348347518216 -"Tfru18165_t",0.44151438887184,0.472526750483979,0.633685103364384,0.558182354511025,0.679370224287944,0.628110100415538 -"Tfru18166_t",1.60575872195642,1.05456393597369,1.44565722610858,1.43447266091956,0.758093945977262,1.12143028353947 -"Tfru18167_t",0,0,0,0,0.270311688915684,0 -"Tfru18168_t",0,0,0,0,0,0 -"Tfru18169_t",1.02922360516322,0.929405122745576,1.10789764115519,0.665381652582578,1.3362421620518,0.847144775554976 -"Tfru18170_t",0.215964978846909,0.52005273792019,0,0.670171032087028,0.186925049661489,0.474023597632733 -"Tfru18171_t",0,0,0,0.115097806393754,0,0 -"Tfru18172_t",0.0865194405473197,0,0,0.0894941748993663,0.14977104905936,0 -"Tfru18173_t",0,0,0,0,0,0 -"Tfru18174_t",0,0,0,0,0,0 -"Tfru18175_t",0,0,0,0,0,0 -"Tfru18176_t",10.775451277155,11.7109265239485,10.1825979341224,13.4145774807159,12.8755501857636,14.5813819565414 -"Tfru18177_t",1.72361715260568,1.48599669110376,2.08901003553381,0.858423229296885,1.43659570841664,0.887413477736456 -"Tfru18178_t",4.78937661968065,9.89444886697811,2.23122301581805,26.5569363846001,32.0756397366791,25.6200155911817 -"Tfru18179_t",66.4830319774045,56.2754430357569,61.1555512674351,19.3803176880995,19.8786049215549,15.4768136253469 -"Tfru18180_t",47.279382443124,36.2870879015164,37.3083288621296,14.6130342758887,10.5973091495308,13.7814035485152 -"Tfru18181_t",0.342899497026316,0.825716387963077,1.77173181961063,0.709378316957426,0,0.752633385629115 -"Tfru18182_t",12.4061835464812,12.7025904799436,12.6184388315292,13.8431879120209,12.0907903924647,12.578895964468 -"Tfru18183_t",0,0,0,0,0,0 -"Tfru18184_t",0,0,0,0,0,0 -"Tfru18185_t",1.38860126894955,1.95055593024336,1.79369543720911,1.43634452607082,3.00470431067434,2.2858906547 -"Tfru18186_t",20.2826841087548,16.3810153767042,21.8870049797155,33.9306960994763,47.2477438491611,31.6943527569697 -"Tfru18187_t",0,0,0,0,0,0 -"Tfru18188_t",12.4335357621742,13.8913020334988,12.009388850594,11.296849697547,15.8516180613936,23.9713733322873 -"Tfru18189_t",1.27772436154293,5.38442435496835,2.75078767937011,2.97372469370936,3.317741946083,3.03819687354719 -"Tfru18190_t",0,0,0,0,0,0 -"Tfru18191_t",1.45788072488412,1.17021266840754,0.784660693789956,2.07350820412176,1.73503750000327,1.06663878223649 -"Tfru18192_t",0.214312185641448,0.516072742476923,0.369110795752214,0.443361448098391,1.11296700487223,0.627194488024262 -"Tfru18193_t",3.3029448039399,3.64035046875381,3.58155110322008,1.60911415549234,1.65120675371039,1.70718025291307 -"Tfru18194_t",0.381865348961125,0.459773897843077,3.94612996186003,0,0.165258737087089,0.139693317787222 -"Tfru18195_t",101.95804817262,99.4942194944318,112.39738789325,71.097478614837,83.7531279557366,86.218386328294 -"Tfru18196_t",0,0,0.0971083435804482,0.116642743392328,0.0488012377975296,0.0825034360085607 -"Tfru18197_t",0,0,0,0,0,0 -"Tfru18198_t",0.250777244093873,0,0.215957361096818,0,0.217056251696475,0.733911162106002 -"Tfru18199_t",12.0641533222705,13.733194233224,9.44461043961278,17.4705247381225,23.1621122893862,20.3813644855091 -"Tfru18200_t",10.2004413815264,10.3956153709676,10.1165564620218,15.5896288721527,12.8960433306705,18.4898304116184 -"Tfru18201_t",0,0,0,0,0,0 -"Tfru18202_t",3.30997732120149,3.6689899540198,5.02212287203575,2.4455584566778,1.63708467508411,1.96042404699516 -"Tfru18203_t",0,0,0,0,0,0 -"Tfru18204_t",18.0739456002317,20.4181130728718,18.7349463660686,9.00147386258726,18.2508852273072,12.4889165384273 -"Tfru18205_t",2.7478783129435,2.05576896844412,3.00961854294501,1.37978475432335,1.17764562090641,0.66364307211713 -"Tfru18206_t",0,0,0,0,0,0 -"Tfru18207_t",0,0,0,0,0,0 -"Tfru18208_t",0,0,0,0,0,0 -"Tfru18209_t",0,0,0,0,0,0 -"Tfru18210_t",2.93742576123942,2.82937783288047,2.45729704584691,1.73624063590978,2.54244210903213,1.84210968510622 -"Tfru18211_t",58.0666893911577,56.491178823886,59.7532555800647,17.1748416772623,11.799158342501,12.5622020083108 -"Tfru18212_t",0,0,0,0,0.219017603368431,0 -"Tfru18213_t",0,0,0,0,0,0 -"Tfru18214_t",3.32026305254801,3.65678014338427,4.38861879949507,5.03182643485196,7.08425321483623,5.64936211639501 -"Tfru18215_t",0,0,0,0,0,0.0958893289023053 -"Tfru18216_t",0,0,0,0,0,0 -"Tfru18217_t",0,0,0,0,0,0 -"Tfru18218_t",0,0,0,0,0,0 -"Tfru18219_t",0,0,0,0,0,0 -"Tfru18220_t",0,0,0,0,0,0 -"Tfru18221_t",79.55503820936,87.0126340966966,74.3330839756961,24.6008935978043,17.3947273512347,12.8980476552872 -"Tfru18222_t",10.9926922811859,9.700140236412,11.1590445772992,7.90674055620874,9.57756008352209,10.1731598152844 -"Tfru18223_t",14.2186811698993,12.779412750537,13.192961314681,37.8046221656244,24.5268390251303,20.0732138169577 -"Tfru18224_t",0.286724835397432,0.230148481286637,0,0,0,0 -"Tfru18225_t",5.17443277878276,5.10579304365556,4.56950187161901,3.88641357250312,3.53727606727013,4.96736066074296 -"Tfru18226_t",5.46067449014409,5.05751287627385,3.97901437820887,3.04145953395496,4.72639988069074,3.99522888871455 -"Tfru18227_t",12.8696747394558,14.1753836078257,12.1294519536889,14.3475537893559,10.8916056170418,8.52664234187197 -"Tfru18228_t",4.13894771553141,5.18930474275655,3.15186954744113,4.06896052122872,2.45734897329824,3.20339074013695 -"Tfru18229_t",5.87306585332307,4.91916146020556,5.71729062356621,7.39564628317316,5.96739755803834,5.23106892139385 -"Tfru18230_t",8.88846989732038,8.05519684503229,6.91358377845785,8.30432637257328,9.18229433371265,6.2933508354653 -"Tfru18231_t",1.66274867434829,2.10208353095994,1.1455036669757,23.26188743719,26.2287939178895,33.1807918211668 -"Tfru18232_t",0,0,0,0,1.01697684361232,0 -"Tfru18233_t",0,0,0.374848269261316,0,0.753511340086208,0 -"Tfru18234_t",0,0,0,0,0,0 -"Tfru18235_t",0,0,0,0,0,0 -"Tfru18236_t",0.232072864009523,2.42164520779226,0.799400176435734,0.240052054771505,0,0.33958596589159 -"Tfru18237_t",0.542002430783529,1.30516461323195,0.466746554628603,0,0,0.396548773073403 -"Tfru18238_t",4.07624313328917,4.46896601295992,2.39725449359544,4.42207134269022,2.92576415008621,5.01904038818942 -"Tfru18239_t",16.5486981576178,19.0669665458015,16.9784008255335,22.1137491360668,18.0242611269726,14.8304008629149 -"Tfru18240_t",0,0,0,0,0,0 -"Tfru18241_t",4.59999181169309,7.38464896439601,6.88014013523147,25.293323419469,23.0504981988908,18.0675391996845 -"Tfru18242_t",0.164403868437275,0.131963806295469,0.0707883717880958,0.170056445845958,0.28459430261573,0.240567748831224 -"Tfru18243_t",4.2055254164491,3.21494660390868,3.70782572896264,2.6929319898801,2.42668371980087,3.51647541318967 -"Tfru18244_t",0,0,0,0,0,0 -"Tfru18245_t",0,0,0.336491702174111,0,0,0 -"Tfru18246_t",0,0,0,0,0,0 -"Tfru18247_t",5.86118907707773,4.70466314071986,4.71088383043756,1.61672267585646,1.3528157082478,0.285883999192455 -"Tfru18248_t",0,0,0,0,0,0 -"Tfru18249_t",0,0,0,0,0,0 -"Tfru18250_t",0,0.383144914869231,0.41105520436042,0,0,1.04769988340417 -"Tfru18251_t",27.7074392734583,22.2402257561302,21.7190098676017,18.7392855610635,19.2161322194289,26.1194017444015 -"Tfru18252_t",11.0672352633045,4.84552131858572,5.63170244057869,7.28493301546099,11.7561305185306,6.62497650823233 -"Tfru18253_t",9.81642989448978,11.5443228697555,7.07729830116201,5.43117773920529,4.14943133338234,8.5182555737643 -"Tfru18254_t",25.6989745061352,26.7514301968628,21.8022560605604,23.5988063401565,18.6530406537345,27.9767184907803 -"Tfru18255_t",0,0,0.214040579785307,1.54258302651985,1.07564858459052,1.09109573656292 -"Tfru18256_t",0.0887121190828378,0.0712075026578507,0,3.39520297952432,3.22490122636684,2.92072617971172 -"Tfru18257_t",3.22981807896914,3.18428168279116,3.234848143968,3.3771803075376,3.79825764303798,2.49147965029613 -"Tfru18258_t",0,0,0,0,0,0 -"Tfru18259_t",0,0,0,0,0,0 -"Tfru18260_t",0.0904309760726022,0.362935979639314,0.233624486439507,1.68372356177731,2.11331947964975,6.21928484787891 -"Tfru18261_t",0,0,0,2.57149639897067,2.67112081169335,0.815352834431541 -"Tfru18262_t",29.867086663054,29.1109614477876,33.9556074943473,46.9497256054594,47.1175523603819,41.819922491327 -"Tfru18263_t",8.51456521332238,9.62522157759324,8.73770049268838,3.44953180733309,2.51796251440125,2.33608757786064 -"Tfru18264_t",0,0,0,0,0,0 -"Tfru18265_t",20.8710539369567,20.9761842328407,20.2386762831652,22.4957341014265,25.0475664144523,22.5842391011325 -"Tfru18266_t",0,0,0,0,0,0 -"Tfru18267_t",0,0,0,0,0,0 -"Tfru18268_t",0.0698921603755802,0.28050542852323,0,0.0722952111707859,0,0.0511356570934923 -"Tfru18269_t",0,0,0,0,0,0 -"Tfru18270_t",0,0,0,0,0,0 -"Tfru18271_t",2.60209131592979,2.52927248143337,1.60056893733261,3.65282750601418,5.30345351133447,5.03143188844242 -"Tfru18272_t",4.690629483302,5.26145457899164,4.19470507756775,9.89041959093648,12.7522490035706,9.63553908516587 -"Tfru18273_t",4.42159877744452,1.33092444112467,1.90383463072191,4.00192043941435,5.26218610198352,4.852504723135 -"Tfru18274_t",0,0,0.201520100187838,0.242058060800236,0.607636582047234,0.171211865811637 -"Tfru18275_t",0,0,0,0,0,0 -"Tfru18276_t",0,0,0.488822405185364,0,0,0 -"Tfru18277_t",5.86578628048915,6.64121546681611,5.92779457303702,3.73499674765536,5.47285253469263,6.74860588592756 -"Tfru18278_t",24.8747802080284,28.8182268679212,26.5841309735898,30.1598791023328,31.4763837554661,23.8961331912868 -"Tfru18279_t",4.1349645229644,2.83334054693213,2.0843903760125,3.85985260697423,2.61874589381701,3.68937934131919 -"Tfru18280_t",3.65262507701945,3.1413123455117,3.37014204817239,2.96859404378923,3.83892966897958,3.53137766083226 -"Tfru18281_t",11.2599096536015,10.1104301025011,8.08589101680542,2.40837322738045,4.1295913402044,6.5626029346655 -"Tfru18282_t",13.0564382567315,12.0078692667308,14.1282299872968,10.8672772525286,10.6089070550515,9.21836647146852 -"Tfru18283_t",0,0,0,0,0,0 -"Tfru18284_t",17.9564164085452,9.26567244476235,12.7019195968977,0.663349952857161,3.33040508316695,0.46919892995617 -"Tfru18285_t",26.3109421756731,12.2269542063763,21.465212429898,0.477466174875191,1.59810646853449,1.01316032680842 -"Tfru18286_t",38.5505931910865,40.8367229890542,40.3142483072739,31.3708181384213,24.8462363790395,18.866688247865 -"Tfru18287_t",8.34038036539641,5.23400851214862,6.52939674796335,4.39199932701078,3.93757279702089,2.440850751228 -"Tfru18288_t",2.53122174168517,2.31200588629661,2.63075330790669,1.94111703094714,1.2465230454569,1.78807446767644 -"Tfru18289_t",1.60529382365823,1.34222740877756,1.15200184661519,0.83024373083393,0.636825069666807,1.07661728995248 -"Tfru18290_t",0,0,0,0.213510672794311,0,0 -"Tfru18291_t",0,0,0,0,0.223048602203433,0 -"Tfru18292_t",18.5414972522005,16.6652847200565,17.0825126689624,9.68520153669736,9.76992181369485,10.1539195748421 -"Tfru18293_t",0,0,0,0,0,0 -"Tfru18294_t",0,0,0,0,0,0 -"Tfru18295_t",7.81026148769118,10.5289501278009,8.27793651117241,18.4362266999483,27.386859123467,22.9303500901743 -"Tfru18296_t",17.1039090432887,13.3251836261107,18.1947309618696,9.88669480669706,12.6269550013848,9.9374647623485 -"Tfru18297_t",55.5850416342028,56.4508494767591,47.6020671837839,67.3324510599848,61.670577245545,58.6370664386005 -"Tfru18298_t",12.0427718995768,13.4557682029304,11.1173462610506,5.77996897016343,5.50357078556084,5.99143358399324 -"Tfru18299_t",24.439382333512,25.0576774324477,24.9099453842414,15.651666757528,14.873286337838,13.7947151314882 -"Tfru18300_t",0,0,0,0,0,0 -"Tfru18301_t",0,0.0506637903959313,0,0.914037425681431,0.382416912267643,0.138538827557576 -"Tfru18302_t",0.0950343628636283,0,0.163678090424059,1.37622603346378,1.31608767996958,0.20859183198997 -"Tfru18303_t",0,0,0,0,0,0 -"Tfru18304_t",10.1645208047087,6.09457333972747,9.06957955276868,1.5200963934802,2.5439245825651,2.59837716467194 -"Tfru18305_t",0.866086358468531,1.39038154674195,1.11874818506341,1.34379655403018,0,1.90098123174364 -"Tfru18306_t",0,0,0,0,0,0 -"Tfru18307_t",3.76165866136099,2.01294044824299,4.31914722188226,1.94549650357156,2.71320314617196,3.21086133417355 -"Tfru18308_t",1.58178533670089,1.12859422622568,1.66485957247233,1.90886581628972,1.74939165200977,1.54305589522287 -"Tfru18309_t",0,0,0,0,0,0 -"Tfru18310_t",3.60315385701468,3.80550254046188,3.10286366451748,2.35391902015218,2.62623365483771,4.30116671471266 -"Tfru18311_t",7.46954186775422,6.41887966165857,6.28106111432742,5.45390233225636,4.33544887671986,5.27210764201148 -"Tfru18312_t",9.85780170721026,9.40728166469016,9.24365080157565,7.70419997425731,9.38548968385083,7.93356052517783 -"Tfru18313_t",0,0,0,0,0,0 -"Tfru18314_t",4.5943174792618,3.16094554737756,4.52160724754464,5.43117773870083,7.38499981289334,6.72274091788564 -"Tfru18315_t",2.25603313580613,2.58696310806846,3.88557553789287,0,0.278953366950073,1.49339659424703 -"Tfru18316_t",0.750092649745067,0.301042433111538,0,0,0,0.274397588510615 -"Tfru18317_t",1.87483306291222,2.14984606855424,2.30645215624125,0.0923473366921197,0,0.587869860188522 -"Tfru18318_t",0,0,0,0,0,0 -"Tfru18319_t",0.318824959284431,0.127957315022741,0.274556796840356,0.494680325392512,0.965838539332511,0.933055936643305 -"Tfru18320_t",3.41351418032969,4.10994274369884,4.73594980373721,8.43487648887865,7.87870096451313,5.27239790835746 -"Tfru18321_t",7.11952345520741,8.28632053174811,7.66374109824512,14.7286175978449,17.2541325501096,11.4595874252569 -"Tfru18322_t",13.8871490244128,14.6786516649083,15.2743000978707,4.69339091047528,9.75865013764675,7.7460059028332 -"Tfru18323_t",0,0,0,0,0,0 -"Tfru18324_t",27.6489847602232,41.9965626181727,27.106749273874,31.0195872902459,26.6924238636867,26.6089246336977 -"Tfru18325_t",13.9822284459442,22.3995695634413,14.8117273638061,15.7942884672154,11.4438222952229,15.8230621200963 -"Tfru18326_t",4.90155522547115,4.20887548274259,3.43568529017664,2.35817758011627,1.77591478660752,1.83477790526501 -"Tfru18327_t",4.58983521873274,5.52625797212361,4.02312761965242,7.71492174466624,12.5564394578951,13.6722279418674 -"Tfru18328_t",1.44312303656474,0.496442981720132,0.976445246186224,0,0.0892194408813731,0.0754172513207088 -"Tfru18329_t",0,0,0,0,0,0 -"Tfru18330_t",0,0,0,0,0,0 -"Tfru18331_t",0,0,0,0,0,0 -"Tfru18332_t",0,0,0,0,0,0 -"Tfru18333_t",0,1.0994593209291,0,4.25048692633457,4.74220723815124,4.84371395370911 -"Tfru18334_t",0.683937938437835,0.914972931030999,1.17794924234628,1.17908879005814,2.76253411250059,1.66797991387728 -"Tfru18335_t",0.46033083162437,0.369498657627313,0.198207441006668,0,0,0.673589696727427 -"Tfru18336_t",1.25321819371365,1.61667966210139,1.85007691339202,2.45372334728081,3.37032736051878,3.14365782809391 -"Tfru18337_t",0,0,0,0,0,0 -"Tfru18338_t",3.05998061088053,2.88043779708312,3.32981937730904,2.50337728906416,3.92462139863775,3.6024223805526 -"Tfru18339_t",0,0,0,0.204147636242642,0.113882293372465,2.45475180199316 -"Tfru18340_t",0,0,0,0,0,0 -"Tfru18341_t",0,0,0,0,0.1804313754797,0 -"Tfru18342_t",0.248062136136164,0.530972480448697,0.284825653415094,1.6250768038567,1.71764986578706,1.14944501643817 -"Tfru18343_t",36.5213347202928,39.6614289265441,35.7346941588805,22.5726471852839,22.1175354184927,20.4332029301686 -"Tfru18344_t",2.18884661124021,1.71767342092152,1.25845745462758,2.40284006376386,3.68333992479373,3.07968727892388 -"Tfru18345_t",2.10376569544526,0.67546081820018,0.724664934565281,2.75639070570686,3.8845459402107,2.66793247994294 -"Tfru18346_t",0,0,0,0,0,0 -"Tfru18347_t",3.62113691558481,3.48793990097568,1.24733992557512,8.24040757195423,11.2831826947443,13.2467800829796 -"Tfru18348_t",0,0,0,0,0,0 -"Tfru18349_t",0,0,0,0,0,0 -"Tfru18350_t",0,0,0,0,0,0 -"Tfru18351_t",0,0,0,0,0,0 -"Tfru18352_t",0,0,0,0,0,0 -"Tfru18353_t",0,0,0,0,0,0 -"Tfru18354_t",0,0,0,0,0,0 -"Tfru18355_t",0,0,0,0,0,0 -"Tfru18356_t",0,0,0,0,0,0 -"Tfru18357_t",0,0.17264657860529,0,0,0.643485341849581,1.08787715475572 -"Tfru18358_t",5.80027100203757,9.4617167395769,12.5678526624941,96.188697955814,196.697152171746,194.251491967995 -"Tfru18359_t",7.46405993999627,5.22641532267745,11.3510291593516,139.875927256962,300.23097495658,160.692207447789 -"Tfru18360_t",53.3433497751864,30.5097606246511,80.7147576603247,14.5203723618856,26.5433570519314,32.549620370781 -"Tfru18361_t",0,0,0,0,0,0 -"Tfru18362_t",1.85772331927034,1.65684287511019,3.37731843582615,3.8431921102976,2.50121331807486,2.41631684821141 -"Tfru18363_t",526.435781335441,730.14816006641,1095.76370320387,829.509590163323,646.830463688024,845.906867741089 -"Tfru18364_t",0,0.10520047584553,0,0.135567619075327,0,0 -"Tfru18365_t",0,0,0,0,0,0 -"Tfru18366_t",0,0,0,0,0,0 -"Tfru18367_t",0,0,0,0,0,0 -"Tfru18368_t",0,0.154664002332534,0,0,0,0.140974907858665 -"Tfru18369_t",8.3744521148753,8.00239379157254,5.95249561757367,4.12494511838376,4.14192784091691,6.22430985583572 -"Tfru18370_t",0,0,0,0,0,0 -"Tfru18371_t",0,0,0,0,0,0 -"Tfru18372_t",0,0,0,0,0,0 -"Tfru18373_t",0,0,0,0,0,0 -"Tfru18374_t",0,0,0,0,0,0 -"Tfru18375_t",1.15832831850445,1.60713019740027,0.986475524938612,0.863293377268884,1.02119987075957,1.0923891943082 -"Tfru18376_t",25.8623493883933,24.8296406802981,27.6573159634053,9.09203194973602,11.4118306978448,10.2647886631576 -"Tfru18377_t",12.0014823768227,9.06668973575468,9.72715507257919,5.11169668758821,4.88832566067947,6.19815728355291 -"Tfru18378_t",0,0,0,0,0.488012377975268,0 -"Tfru18379_t",0,0,0,0,0,0 -"Tfru18380_t",0,0,0,0,0,0 -"Tfru18381_t",0,0,0,0,0,0 -"Tfru18382_t",0,0,0,0.477466174875191,0.799053234267243,0 -"Tfru18383_t",0.850737992622253,0.682870936880857,0.366307422619919,15.6197921816132,12.3337406818415,7.78038731979465 -"Tfru18384_t",29.7897958908134,25.935963468071,27.1466101191122,23.3143239536617,27.8304394764298,23.8710457487058 -"Tfru18385_t",0,0,0,0,0,0 -"Tfru18386_t",0.2156877452412,0.173128382585326,0,0,0,0 -"Tfru18387_t",0.0767919348916339,0,0.132259078551067,1.19148323346368,2.99097165843177,3.65194596774639 -"Tfru18388_t",10.6778488297267,9.56857401384247,9.43851304484343,6.77892796500674,8.11734913035707,65.6812239839369 -"Tfru18389_t",0,0,0,0.0870729898068984,0,0 -"Tfru18390_t",0,0,0,0,0,0 -"Tfru18391_t",17.6069651916207,29.8807147979453,19.9275624820477,4.68317122422492,5.66035913855179,12.51384451555 -"Tfru18392_t",0.253043303528456,0,1.52536148124108,11.5167142421703,5.03740487747391,1.29595005658025 -"Tfru18393_t",25.2031130313953,15.4133725752869,23.7707352464058,17.3797687654301,25.9692301136452,15.805301098187 -"Tfru18394_t",16.2742614688144,14.122200003557,18.9386691014225,11.374194218231,19.415738535258,14.1594902217834 -"Tfru18395_t",3.39889310602039,3.55184110394804,2.65083539422659,1.8573798680641,1.83172279580498,2.25215486386728 -"Tfru18396_t",14.6702227586504,14.0247577471557,14.2420277999984,22.449341603517,17.5007813663449,22.1097337504956 -"Tfru18397_t",31.6232242108431,29.8853033598,28.4655729019591,24.3168639687146,26.6479713552931,31.780229796593 -"Tfru18398_t",0,0,0,0,0,0 -"Tfru18399_t",0,0,0.0668629537591811,0,0,0 -"Tfru18400_t",0,0,0,0,0,0 -"Tfru18401_t",2.59937564570014,4.40476698005228,3.07787962216414,1.75515498920601,1.49989880845695,4.305459712806 -"Tfru18402_t",0,0,0,0,0,0 -"Tfru18403_t",7.65348771434796,7.50054875718578,8.50675261905208,6.71993177901671,8.16490201031972,10.9386970877452 -"Tfru18404_t",0,0,0,0,0,0 -"Tfru18405_t",6.56758645770273,9.33525720919168,9.3083250186112,6.65186589557391,6.94545718758663,5.00529803146398 -"Tfru18406_t",15.2632404558698,13.0046744597163,15.3525905068642,12.8762992715038,13.6981404412023,12.5401536801396 -"Tfru18407_t",1.4399207588036,1.42668636752592,1.54998855848814,2.07123650257856,2.10313207990853,1.94238807164236 -"Tfru18408_t",1.85829404840068,2.7346306182003,2.46708893160835,3.60409951357402,3.28385103373054,3.28568983403678 -"Tfru18409_t",3.20378555484334,2.57161671674941,3.06549643929805,2.20929263967673,1.54054754911693,3.90667753133757 -"Tfru18410_t",0,0,0,0,0,0 -"Tfru18411_t",0,0,0,0,0,0 -"Tfru18412_t",2.42504180371189,3.75403017620327,5.07165843895413,55.1852451521725,77.0616824321979,74.645196366467 -"Tfru18413_t",14.5627145343801,21.1177697641088,14.8477307504709,16.1292212173292,16.9447633938847,22.2138646306287 -"Tfru18414_t",105.810537832393,93.0411651500166,93.4083927680791,83.5988877325775,121.036335795683,95.698764033474 -"Tfru18415_t",7.90196613196783,9.34721851720578,9.02530714049175,1.63473072546377,3.67168916854878,5.65965402361696 -"Tfru18416_t",0.717546778027395,0.875460604935228,0.692066978848018,0.445330596996676,0.596218743983484,0.881972160132512 -"Tfru18417_t",0,0,0,0,0,0 -"Tfru18418_t",6.73689160514528,7.05491263321612,7.45356818782909,6.50702972896821,3.93882746705711,4.43932455464013 -"Tfru18419_t",20.7836097984339,21.3486167541923,17.8978501113746,22.4042516786933,27.5003069981131,18.1190839867331 -"Tfru18420_t",33.1308528112751,20.4200050403545,31.078089253616,5.20169135585859,9.72931719752156,11.4705921506973 -"Tfru18421_t",1.36824717868807,1.75722488643608,1.41392278763714,1.69834873929547,5.09233763141322,7.30773512593742 -"Tfru18422_t",0,0,0,0,0,0 -"Tfru18423_t",0,0,0,0,0,0.351899197479262 -"Tfru18424_t",17.4741583641842,11.3288288400806,15.0479089175432,11.8182427576181,16.2879011233169,14.7516143547201 -"Tfru18425_t",87.5166529305229,105.034157230128,82.1286925840652,59.6250831602905,73.0780205002138,70.2897595677274 -"Tfru18426_t",0.176245545674365,0.0943125944293491,0,1.15460002288001,1.01697684361285,0.81666862706376 -"Tfru18427_t",0.869405968888111,1.29232474160568,0.776420102371847,0.999220128332134,0.473796609203305,0.636089158801149 -"Tfru18428_t",18.1495412992325,20.8591365764486,16.8135706503693,19.9113553777739,21.7784509169434,17.4033639115603 -"Tfru18429_t",0,0,0,0,0,0 -"Tfru18430_t",10.8785091390135,10.0732527848381,9.96194106595815,8.88193822865713,8.00495772849459,8.89883521026141 -"Tfru18431_t",0.146105003080778,0,0,0,0.379376579052099,0.106895756219787 -"Tfru18432_t",5.0170131327211,5.84318427547642,6.1841185780125,7.22461113786558,9.36595184427997,12.3793797308395 -"Tfru18433_t",14.6821873422997,14.558074447592,12.2379201776687,9.66445085555782,9.31009034729879,10.512248549745 -"Tfru18434_t",15.3083221229182,17.3898509154771,15.2810938518855,16.3277777178631,14.946225250802,12.8665825109441 -"Tfru18435_t",14.9293165628381,14.6300006174996,14.037567493838,11.8411611369047,9.77127955046799,9.089495503367 -"Tfru18436_t",10.1450138711926,8.22076081863182,9.19402140816728,6.59611695526255,5.81208991388519,5.23106892139385 -"Tfru18437_t",3.86090242183673,2.98429128585804,3.38639521549691,3.99364899291351,5.07449807157631,5.12644754296597 -"Tfru18438_t",5.0280524750991,5.21306397886913,6.85570375751244,6.93457107848656,5.62126976026905,2.75903011689476 -"Tfru18439_t",2.96951845914499,1.9068600390407,2.51071250786724,1.73127516622482,1.40193787246116,1.97509832346972 -"Tfru18440_t",0.431929957693817,0.52005273792019,0.371957408572925,0.446780688058019,1.30847534763042,0.474023597632733 -"Tfru18441_t",0,0,0,0,0.300470431067434,0 -"Tfru18442_t",12.7019580221421,11.1701970511737,11.058961584794,11.1582173007797,8.73051160242185,12.0606815557039 -"Tfru18443_t",1.38099249487311,2.21699194576388,1.38745208704668,9.52316096737366,7.1717764259164,7.07269181563798 -"Tfru18444_t",1.74705123484927,2.7436778713963,2.74730566964939,17.2069139224008,11.7025897727494,7.55809053922909 -"Tfru18445_t",17.7088294209186,14.3078470054488,17.0519653410326,20.9631435985562,19.7883616917935,19.7890275640275 -"Tfru18446_t",10.2768038093338,10.0909995631117,9.45134056581678,11.1461699920983,9.93122576794144,9.92784814297787 -"Tfru18447_t",19.2271171580014,19.0482271903647,17.7508045363395,24.5466837202845,28.7856868229222,22.9385068630399 -"Tfru18448_t",0,0,0,0,0,0 -"Tfru18449_t",0,0,0,0,0,0 -"Tfru18450_t",0,0,0,0,0,0 -"Tfru18451_t",9.61950879062375,7.42724537264498,6.9426641277363,3.79057115931449,3.4889958015333,3.35142092837392 -"Tfru18452_t",0,0,0,0,0,0 -"Tfru18453_t",0.110539969436115,0,0,0,0,0 -"Tfru18454_t",3.39546503248353,1.75837040461498,2.64104308616447,1.92604999356433,1.5111438583445,0.320547900007185 -"Tfru18455_t",0.469331713806969,0,0,0,0.40622259395709,0 -"Tfru18456_t",0,0,0,0,0,0 -"Tfru18457_t",0,0.0846091656423897,0,0.218064852766084,0.0967227278057586,0.0771205267583158 -"Tfru18458_t",0,0,0,0,0,0 -"Tfru18459_t",0,0,0,1.65235485237706,1.31978455547511,1.32811278795112 -"Tfru18460_t",0,0,0,0.235817758011627,0,0 -"Tfru18461_t",0,0,0,0,0.156710871375688,0.132467801349952 -"Tfru18462_t",8.17398260478948,7.29010865048483,8.60327433126241,8.45502264265473,7.46790833539493,12.2930119652755 -"Tfru18463_t",16.2464013375277,14.3636389610169,15.896592297777,14.9052949614064,15.3660982668197,16.3654167138618 -"Tfru18464_t",0.550887716534082,0,0,0,0.476812093890617,0.604574358947978 -"Tfru18465_t",0.339207443222533,0.544550511577265,0.584218433115213,3.1578314715164,1.76157361740208,1.65451035871811 -"Tfru18466_t",0,0,0.306549643929805,0.0920538599865303,0,0 -"Tfru18467_t",0,0.476001211884597,0,0,0,0 -"Tfru18468_t",4.98099535523289,4.27290062730208,3.79525888619342,4.47091398777668,4.20493077347609,5.56408799416488 -"Tfru18469_t",42.6661484488041,41.3198162291894,38.9520894220055,35.4872026568911,33.7988001752664,32.3157338490739 -"Tfru18470_t",24.5790359468463,23.659526903102,23.8120756555668,20.2598447323041,24.7642578364104,21.2142263629326 -"Tfru18471_t",0,0.0852509545094622,0,0,0,0 -"Tfru18472_t",0,0,0,0,0,0 -"Tfru18473_t",0,0,0,0,0,0 -"Tfru18474_t",0.240947543321551,0.560080421141361,0.414984986428875,0.415386442769047,0.278064414219193,0.587620074821967 -"Tfru18475_t",0,0,0,0,0,0 -"Tfru18476_t",15.9944055700371,15.9522863874396,14.7320193756546,8.78198005370363,8.97226088106435,9.46869013979399 -"Tfru18477_t",0,0,0,0,0,0 -"Tfru18478_t",0,0,0,0,0,0 -"Tfru18479_t",0,0,0,0,0,0 -"Tfru18480_t",0,0,0,0,0,0 -"Tfru18481_t",0,0,0,0,0,0 -"Tfru18482_t",0,0,0.252075665391756,0,0,0 -"Tfru18483_t",0,0,0,0,0,0 -"Tfru18484_t",50.6894908647598,53.1928890506649,45.6413523095346,29.4546214214931,28.4532434289075,33.050422586322 -"Tfru18485_t",0,0,0,0,0,0 -"Tfru18486_t",72.5089561420231,59.0043168898616,80.0970426782305,25.8627511390728,19.476922585264,15.3662649565944 -"Tfru18487_t",113.05253966128,129.664425077169,106.693830373337,153.426742068945,135.610240813245,94.1126732059671 -"Tfru18488_t",21.169723589622,27.7246506038,21.300728043462,40.107158689516,28.9312377924346,33.259607969711 -"Tfru18489_t",0,0,0,0,0,0 -"Tfru18490_t",0,0,0,0,0,0 -"Tfru18491_t",0,0,0,0,0,0 -"Tfru18492_t",46.4113270275828,40.5544156046201,43.1291768267394,45.880158803916,36.2298000537079,19.3421516936154 -"Tfru18493_t",9.40188332099231,11.4417860498133,9.66350718698576,4.23514220818896,5.51260191582924,4.65980597961708 -"Tfru18494_t",0,0.218939951353846,0.234888688205954,0.28213910333534,0.236083910124413,0.199561882553174 -"Tfru18495_t",0.795887779940028,1.06473955289976,0.837687237517656,1.09766960623938,0.535786221292877,0.776400755701613 -"Tfru18496_t",0.604391199794586,0.727699694427891,1.30118194186032,1.87551461497737,1.56936354643854,1.10548668752478 -"Tfru18497_t",3.23116833736336,3.15437393530593,2.93293443111218,37.6682098502887,33.0311330219391,30.6686369196063 -"Tfru18498_t",0,0,0,0,0,0 -"Tfru18499_t",2.90217665210455,4.04601030101908,3.74882346376703,5.68792432324045,8.59345432852862,8.88449501126732 -"Tfru18500_t",28.1064128169181,21.3208876156643,27.3956203847268,28.4338128699571,26.4657006893882,22.8234229502358 -"Tfru18501_t",12.0492970668212,15.3135848046539,23.6348554156557,15.233263459763,15.9333125000301,10.5298708069093 -"Tfru18502_t",0.330324353007592,0.265154941605725,0.924517053176866,14.8427601468275,14.3171919392194,7.89380581725734 -"Tfru18503_t",0,0,0,0,0,0 -"Tfru18504_t",0.298969312353906,0.23997688618144,1.28729031970523,0.618497109090994,0.776304387740061,1.09368433854765 -"Tfru18505_t",6.92393215149292,10.744899151058,5.167551140531,3.81972939900152,3.19621293706897,3.03948098042527 -"Tfru18506_t",14.6852784592609,14.5486459642943,12.4183984888981,6.43188292894863,10.0768792126174,12.3898073350809 -"Tfru18507_t",17.7781295242482,16.6485209481767,16.5104331046011,9.55526705984665,10.1075260774427,10.839274035772 -"Tfru18508_t",0,0,0,0,0,0 -"Tfru18509_t",0,0.323680824081526,0.694518873287365,4.17114450370966,4.18831743273518,4.96637683397132 -"Tfru18510_t",3.33080788961686,3.43745368557316,4.6439666637371,7.76566131118591,6.72683141270793,6.18905574085616 -"Tfru18511_t",0,0,0,0,0,0 -"Tfru18512_t",373.464302920986,353.719377486428,405.136000345411,158.787883801389,202.276689665011,234.684768627232 -"Tfru18513_t",34.3678814065012,26.4369991259769,33.295471553194,10.8623554784106,10.7418179106608,7.33389918382916 -"Tfru18514_t",4.43288796581255,3.0990717199295,4.24838672489612,2.21869388495195,2.10406017601944,3.08633066362237 -"Tfru18515_t",17.2278203396958,14.583439211098,19.2694541056453,14.2356385291604,13.3258724708292,13.3288992434337 -"Tfru18516_t",46.5763412394642,46.7076189161761,54.2592869755754,53.9284001398737,50.1511661548406,34.167342079957 -"Tfru18517_t",14.3156695843722,11.9444997675825,11.0302885331514,4.67617096828438,3.58678155830273,6.47725966780213 -"Tfru18518_t",14.3150211710384,9.63335785956922,9.33894784433312,6.13227641466208,6.50795164294766,4.65484101955356 -"Tfru18519_t",29.3829396589792,25.5782260409252,21.026587399402,8.5614624460379,12.8950659874852,13.3224760214809 -"Tfru18520_t",66.606692580943,70.9690212646781,77.6189970545742,30.447932491913,36.6358755261096,47.6314913744052 -"Tfru18521_t",8.79689809125104,13.4160900033791,16.2872554272233,8.64438760585555,12.5631249345787,20.2738155448262 -"Tfru18522_t",15.0466346456324,12.0776426896092,12.687494964438,16.6988449891984,18.4497813942004,20.1825569579151 -"Tfru18523_t",3.29349952495407,3.06325193916607,3.46647176695234,2.10893273756322,2.03616863368037,1.95066462423476 -"Tfru18524_t",15.4002570814874,12.8369304497667,12.7518888309225,0.612682800192371,1.19623245647058,2.16680586932001 -"Tfru18525_t",0,0,0,0,0,0 -"Tfru18526_t",31.0123412124386,28.6233707465711,31.3626375071588,34.5746463738345,36.7823755035752,36.7482591727918 -"Tfru18527_t",17.008997464564,14.8154400185099,15.1819088680428,9.07515019280017,7.91613773120616,8.47793928639692 -"Tfru18528_t",1.81026045779133,1.52953796466084,1.7435173964366,1.47829051024584,1.3400623421295,1.02819351566665 -"Tfru18529_t",14.723468093965,23.5382457222096,17.154138837639,16.5734908330388,13.118477067738,11.7227175957525 -"Tfru18530_t",0.646233667472673,0,0.556505507441799,0,0,0.472808152510598 -"Tfru18531_t",0,0.402588089653639,0,0,0.217056251696475,0.183477790526501 -"Tfru18532_t",1.3496735736939,1.18990555184829,0.964415744218165,2.58723977875617,2.57605531438795,3.05780262050703 -"Tfru18533_t",303.298332288222,412.506666171445,337.632064192737,1772.89159058344,1574.29989337007,609.377392432399 -"Tfru18534_t",3.23282619695154,2.24893680148999,1.93020894320501,4.63698294409318,2.91004610406818,3.46903877932352 -"Tfru18535_t",0,0,0,0,0,0 -"Tfru18536_t",44.4107718615581,18.4179617227006,39.8379493212742,4.9765857698445,5.12520488587271,2.16616950929966 -"Tfru18537_t",0.17429538749263,0,0.150094846405465,0,0,0 -"Tfru18538_t",0,0,0,0,0,0 -"Tfru18539_t",0,0.250682174784329,0,0.646088058195425,0,0.228494646194713 -"Tfru18540_t",8.56776168837805,8.77304695921078,7.33826446417191,7.08987259450834,4.32915941917225,3.86274356130488 -"Tfru18541_t",6.99210269749844,6.07661121554805,8.19435205888957,6.79746901026945,6.41592743985168,6.07727124691344 -"Tfru18542_t",5.22006224599285,6.67788107935187,4.63574490665111,5.5682754297095,3.52979826787957,5.60943264434903 -"Tfru18543_t",1.77844547600846,2.27026297994764,1.8533871640716,3.10613586287938,3.73831256072003,3.40784101859957 -"Tfru18544_t",28.9865754192213,30.739025051626,31.4701880209408,10.0102891956828,10.7694667942656,10.1149303060413 -"Tfru18545_t",0,0,0,0,0,0 -"Tfru18546_t",46.0875340600396,39.2356071390383,50.0499134761915,19.4466722119882,22.781191634256,25.3877421021995 -"Tfru18547_t",16.4638979901671,17.572714231121,9.57967637280639,0.552323159919182,0.539191642190925,0.846446798456473 -"Tfru18548_t",0,0.0518320561237391,0,0.200381653713954,0.279453667633817,0.377955786787872 -"Tfru18549_t",1.63808534094744,0.70438897998243,1.10836055103311,1.08280237184294,1.62036421879263,1.58370975875764 -"Tfru18550_t",0,0,0,0.129379979207934,0,0 -"Tfru18551_t",1.73515408133799,0.580322762624652,0.996154436728866,36.1953876182494,25.9066536555801,9.20389019775363 -"Tfru18552_t",0,0,0,0,0,0 -"Tfru18553_t",2.15086807999188,1.82801670226765,1.52536148124108,4.44963959356578,4.9278960757897,6.61860207467772 -"Tfru18554_t",0.107774697590054,0,0.0928104117606593,0,0,0 -"Tfru18555_t",0,0,0,0,0,0 -"Tfru18556_t",0,0,0,0.183459909557955,0.102341793551469,0 -"Tfru18557_t",0,0,0.10631258775523,0.510794085685729,0.427414220827739,0.587101967481933 -"Tfru18558_t",8.35705318668849,6.70804500168957,4.92405396636985,1.36490330618772,1.52280302237317,4.5052923432947 -"Tfru18559_t",84.5210781499973,87.1101508578069,73.2252991402902,62.3347329581738,57.6848430610373,68.7511915383191 -"Tfru18560_t",33.6041499560805,26.3603695527148,40.1189870471917,39.499473582435,44.9503754811135,23.4684768627232 -"Tfru18561_t",62.4367150627676,45.9403485840786,57.0460177265868,4.33181547779516,5.05262362332731,7.7063443588963 -"Tfru18562_t",11.219107277706,9.94430801832747,10.6229152559776,9.23987706517963,8.9741769886533,7.93599506619054 -"Tfru18563_t",19.0025426589144,18.5338713175516,18.9075306761514,12.4750487457574,12.669160605155,9.3517391637679 -"Tfru18564_t",0.367392318242482,0.19772115194257,0.103390172273443,1.69009313253035,1.00080414619888,1.65239872432108 -"Tfru18565_t",1.61904366368957,1.15517781613678,1.39424292014327,1.11647336823064,0.31140832684505,0.658084152316678 -"Tfru18566_t",3.16933624780201,4.60863210886991,3.75770531268793,19.7648545829144,29.4194886799104,25.3051886545995 -"Tfru18567_t",0.13978432075116,0,0.240751134667001,0.0722952111707859,0.181482140561528,0.46022091384143 -"Tfru18568_t",92.6891347023821,95.8558914291021,105.828030795337,82.9488963805899,88.6387771648931,42.6699588877333 -"Tfru18569_t",40.4561901155343,53.683506163196,43.7840667134795,41.0931625907767,65.9314250001244,80.9312176021937 -"Tfru18570_t",1.57537358419012,1.12657406949616,1.80062641173634,0.296279726652863,0.768540461598326,0.943037058365836 -"Tfru18571_t",5.81139742229673,7.93816745952367,7.55064511310596,12.0224128596001,11.5600893273056,7.01179080543629 -"Tfru18572_t",537.29897032554,537.859288525133,573.300246215092,611.574368088643,424.573679449111,260.523871868464 -"Tfru18573_t",0,0.16447196345606,0.176452965774229,0,0,0 -"Tfru18574_t",0.615910058288828,0.312387470165874,0.240413404088657,0.280543794546633,0.341147690666982,0.231132476673423 -"Tfru18575_t",13.0216083995744,19.8928839800105,18.8098861515328,38.2354912840053,59.9889215626132,55.0112285446081 -"Tfru18576_t",1.67633906067355,1.57845119187876,1.27701570779047,2.13412356291106,1.39512364386644,0.731165331779627 -"Tfru18577_t",0.422162697343957,0.462084319440278,0.462695305410724,0.754261321479401,0.465049712405878,0.870450824402791 -"Tfru18578_t",15.4652487660387,18.1996823212767,18.3968045283802,33.4852019116058,33.4642497252794,25.2188935013063 -"Tfru18579_t",25.1939515944908,37.7245235264047,27.3761869582329,79.8862871825528,49.242418017095,21.1139518487557 -"Tfru18580_t",0,0,0,1.43577948101729,1.02977906981097,0.53195567119603 -"Tfru18581_t",13.4277294977855,14.3812587852897,14.0959179429869,7.12482459753877,6.59817012008699,8.66343081845766 -"Tfru18582_t",2.84284927616742,3.28862079704627,3.07815810660144,5.03792749732702,3.76324449320984,8.10561873798959 -"Tfru18583_t",8.8654166442231,8.4715458564051,8.07592163168411,10.6979667186611,22.2630686301242,19.0837317838538 -"Tfru18584_t",0,0,0,0.109955880205604,0.182774640096319,0.128749601647209 -"Tfru18585_t",0,0,0,0,0,0 -"Tfru18586_t",18.1417757147644,14.6740683674834,15.2623022057543,9.6714660073556,11.8371374471682,10.0059399717359 -"Tfru18587_t",4.95035435374484,5.40251899331535,5.10835381234617,6.56430115242078,10.2521003335523,7.81867812521118 -"Tfru18588_t",4.47587784736835,4.94088817597608,4.74058323932411,8.81142122724215,8.16332871230488,8.33300354325505 -"Tfru18589_t",6.59383771171245,5.29274603330984,6.30921941576459,9.59929088789772,9.93474035744476,13.222134962651 -"Tfru18590_t",0,0,0,0,0,0.34338022249373 -"Tfru18591_t",30.3397474968884,40.6913035988204,26.7885851125127,28.4035078109753,38.1436051909811,37.4410021570964 -"Tfru18592_t",0.590582613507539,0.237024622203812,0.508581483075107,0,0.383377035070224,0.324068856729584 -"Tfru18593_t",3.84640533183226,4.75367004843569,4.10099262024698,14.6515492499492,12.9997134464437,12.6861024641652 -"Tfru18594_t",0.0859881031437538,0.069020987734887,0.074048839270659,0.177889137824533,0.148851267795945,0.0629120366697827 -"Tfru18595_t",6.59706224820956,5.71708659629751,5.73134928442492,14.9763122092888,13.8959744180248,14.1809589036535 -"Tfru18596_t",3.86889893026403,4.65823554393643,5.23554523448535,4.00192043941442,5.50137637934651,5.96453705552021 -"Tfru18597_t",7.22937960347767,7.36365870808615,6.56907688012901,4.22890515954738,5.13528039992876,6.16474487279397 -"Tfru18598_t",16.2020012344684,13.9683688963538,17.5696738777782,13.6555326014093,24.4110763068265,14.4881926733381 -"Tfru18599_t",0.117551833169003,0.157260972520953,0.202460026028266,0.283718240107739,0.508725589913613,0.430026071546486 -"Tfru18600_t",3.67989704125803,2.98734790767129,3.13294041272611,2.89806995342363,2.96791201299261,3.64078751584816 -"Tfru18601_t",3.72936609863084,3.15344754061127,2.89284801225252,8.0979945959008,8.45165998006894,6.83176537548353 -"Tfru18602_t",42.6346609494291,34.9993494338874,37.5905838297646,7.26243939766932,17.2878736491681,19.6085940137752 -"Tfru18603_t",0.215964978846909,0.346701825280126,0.511441436787772,1.73127516622482,1.02808777313819,2.0936042228779 -"Tfru18604_t",0,0,0,0,0,0 -"Tfru18605_t",0,0,0,0,0,0 -"Tfru18606_t",0,0,0,0,0,0 -"Tfru18607_t",0.0690307122197596,0,0,0.142808288951988,0.0597484341152991,0 -"Tfru18608_t",11.7643816396972,13.0086715082155,10.0468484115146,14.9459952195678,17.7453890840755,19.6431045348679 -"Tfru18609_t",208.559903487235,356.711985567843,251.178578415908,454.669519751863,542.209151715053,527.442964063985 -"Tfru18610_t",29.927960308482,31.872498163708,32.4693255393813,46.5573048275214,35.6940329753319,19.3102011235745 -"Tfru18611_t",0.0413844220549002,0,0.1425531349112,0.642109683452842,1.11040846003344,0.726680510262594 -"Tfru18612_t",0.0624148415835419,0.0500991864910732,0.214994698268749,72.1789802369274,78.3321502686201,58.7251611714129 -"Tfru18613_t",0,0,0,0,0,0 -"Tfru18614_t",0,0,0,0,0,0 -"Tfru18615_t",5.86933810603439,9.00050953302818,4.30000605854404,12.232892509576,5.68669272562453,4.03785064552846 -"Tfru18616_t",10.3796604505263,9.95880913860873,9.32254158460659,4.94887238012528,6.42212042000598,8.21709535323679 -"Tfru18617_t",64.6774448784365,68.8442477997667,72.3457159674339,67.991982408796,82.753831190723,84.3537222721837 -"Tfru18618_t",41.7731155217142,52.3447925684328,48.3637106743619,49.6907753377014,64.277431441608,55.5223054232749 -"Tfru18619_t",2.15914519739701,2.67843361048771,2.57773871145646,3.90841762540941,3.69515447178374,3.23122393947079 -"Tfru18620_t",24.1125456156239,26.3148612273505,25.4459326507131,29.0812724678051,34.7259844045009,32.843180042201 -"Tfru18621_t",0.61321442898594,0.984430730170578,1.05614183893594,0,2.12303195089038,4.48650071723389 -"Tfru18622_t",0.185863665423556,0.149189170391559,0.160056893733261,0.192254079263904,0.482614010962295,3.2636314952059 -"Tfru18623_t",59.5434371447115,51.4441172294522,67.1248911038047,57.1113535462824,74.4005056555997,67.4056261755766 -"Tfru18624_t",56.4615194535377,45.3205699302461,73.5201594084637,43.167282810307,29.746572675676,22.3509308459555 -"Tfru18625_t",0,0,0,0,0,0 -"Tfru18626_t",0,0,0,0,0,0 -"Tfru18627_t",3.4561230950279,3.54239298506944,3.52570894271672,4.01494658189353,2.71526380682331,3.57897816710554 -"Tfru18628_t",5.28878885243979,6.40863213539139,5.25513675308236,5.78624262772476,6.4702997062911,6.06465178674308 -"Tfru18629_t",7.33546488353631,10.9083611056887,6.44993975077306,4.95195617398129,3.80945691741194,5.98832384337871 -"Tfru18630_t",3.21058764731646,4.5098840934926,3.91680627849165,1.10699164111191,0.463145505212223,0.391497196346355 -"Tfru18631_t",2.09734643812213,6.82705847748077,3.95954252199681,6.92797779356803,5.08869076171692,6.4347089556192 -"Tfru18632_t",0.88967116096843,0.45907832462395,2.13425334548406,0.854527208589032,0.495026171607316,0.139481981451689 -"Tfru18633_t",0.351018287345881,0.046959265332162,0.302280150281757,0.121029030400118,0.0506363818372695,0.0428029664529093 -"Tfru18634_t",0,0,0,0,0,0.41251718004278 -"Tfru18635_t",6.85281018981595,5.70434483527362,7.10343132610756,2.36280844243372,4.28374611542967,6.1279364781585 -"Tfru18636_t",3.95860414106297,2.11833000053355,1.13632014608535,1.36490330618772,1.52280302237317,2.57445276759697 -"Tfru18637_t",104.925338443338,120.892611915011,102.934168893859,95.7216749808198,97.3900307072896,62.7473628825608 -"Tfru18638_t",65.303612713028,66.0684543081388,67.0735585285116,64.7343613936047,87.1388579685119,79.2575771445397 -"Tfru18639_t",112.191072777059,143.82969108053,146.522969047967,122.64836818661,185.926538636714,166.889308009595 -"Tfru18640_t",15.1354727381758,10.7156480644399,27.4957655321573,56.5546119240324,50.3771522630459,34.3719084555402 -"Tfru18641_t",45.9245365920996,37.6834292741973,39.2545213413561,30.1413839644334,37.6843554225771,38.5870913108801 -"Tfru18642_t",2.87331907524495,7.90751198896236,7.65874843303453,84.4928497799494,118.781735914127,147.556185967558 -"Tfru18643_t",0,0,0,0,0,0 -"Tfru18644_t",0,0.285131099437567,0.152950773715505,0.183718485892779,0,7.01715270745116 -"Tfru18645_t",99.0967472480102,103.524676716216,101.640636165515,115.9671190512,109.582835803664,106.698149628184 -"Tfru18646_t",0.729697381322995,0.763974754724145,0.819626691473949,3.57702944757327,3.48740869653569,2.46045934350303 -"Tfru18647_t",5.61359660454372,6.99195328517121,3.83398955587783,14.216170303542,5.02630260264878,5.38173334885335 -"Tfru18648_t",5.05325574565097,3.54913184299919,7.8873148987052,19.6012429685604,16.6749793361559,22.1828787343318 -"Tfru18649_t",6.66549396539927,9.59009427636757,6.71472214068997,10.0167828962589,12.0826896996009,10.4895461380345 -"Tfru18650_t",0,0,0,1.67113141644349,0.699171498140063,1.1820202429113 -"Tfru18651_t",0.0670473876867099,0,0,1.04028943129231,1.45079497841818,0.588651809989252 -"Tfru18652_t",6.39720674183474,4.68183349502021,5.50896829315286,3.69782314158658,2.9313531864048,4.81808979602065 -"Tfru18653_t",7.71199308333097,7.72545203616841,9.68205543855868,9.37179615835416,8.75683144212782,7.3839124459784 -"Tfru18654_t",0,0.0688644216071435,0.0788644698435944,0.266854998275518,0.226843003750646,0.126697512065625 -"Tfru18655_t",6.14710073937421,6.16769862960225,4.41132414435573,2.64935499473429,2.21688549750973,2.99829560128672 -"Tfru18656_t",0.758672878730711,0.568373913448395,0.391999665085434,0.104634369448868,0.21888574448621,0.444058228727593 -"Tfru18657_t",18.8299120349796,27.758188487595,19.957438887568,8.42768959531855,13.0070023241821,12.5844411282454 -"Tfru18658_t",0.319431090385732,0.576902609460895,0.206309075952758,2.56070737513862,1.72799059691823,2.1033670663019 -"Tfru18659_t",0.268689904386292,0.0718907302952927,0.385638144815746,0.277928071942275,0.232560269674794,0.327638911654465 -"Tfru18660_t",3.59601612748631,3.73248182750837,3.84420040564962,8.465422424503,7.4592061699235,4.76297511569717 -"Tfru18661_t",78.6887735131209,71.078559342227,80.2890800516961,84.8438036016394,73.6350501162707,52.2245356295067 -"Tfru18662_t",0,0,0.0406208399592554,0.0487921638558589,0.0408275375173043,0.0345115439788757 -"Tfru18663_t",10.1931326218178,8.90487594468081,9.79851683531836,18.748815295063,19.655717510426,20.1877340964739 -"Tfru18664_t",23.8402695944279,23.7982681510461,21.9358226001573,23.8353358351386,27.6332322962975,27.4412467729151 -"Tfru18665_t",21.6589252613888,24.760740123424,20.9689536124359,10.8623554784106,15.3948842267691,22.3291037650513 -"Tfru18666_t",0,0.0830461884445623,0,0,0.0895490693575358,0 -"Tfru18667_t",42.1318371949269,46.2885265593975,39.4084201551248,47.0738460531723,53.8594002639207,49.1102739316284 -"Tfru18668_t",2.0490335797914,0.8223598172803,1.76452965774229,0.529870998946858,1.33013129850584,0.74957390032168 -"Tfru18669_t",8.33909015031384,8.75908828638087,8.78161271527558,8.42864565766629,8.66132008329382,8.40220046407092 -"Tfru18670_t",4.19531803109581,4.87035219891552,3.88152830200842,5.30789471169547,4.89160405443087,4.97199823605862 -"Tfru18671_t",23.4673614452473,19.9514006579178,22.8397219004626,17.523403218064,18.028225864046,23.2652871078355 -"Tfru18672_t",3.86090242183673,3.0990717199295,4.12524508069623,5.6206911752116,8.16870421278137,8.36971027423016 -"Tfru18673_t",10.9420172350655,13.1161214291079,10.4697128751713,5.09320285818383,4.15658010213257,4.93677398026623 -"Tfru18674_t",410.83474537717,387.260985954683,500.053588766903,84.7139586110557,116.508353982038,126.372163003033 -"Tfru18675_t",4.10856523567861,2.95237516143295,3.57179594436329,13.0732773899455,12.2262216110448,12.2243039337975 -"Tfru18676_t",0,0,0,0.153531526196616,0,0 -"Tfru18677_t",23.1275625464926,27.132069077422,25.3635568921121,24.7406120072975,54.5781560883383,54.2338763173921 -"Tfru18678_t",5.75340563812069,4.74642933220373,4.86280652666328,3.41644154552419,4.33424309823842,3.58578662271829 -"Tfru18679_t",9.41195092460199,9.83322005582585,9.71328077452506,15.6850610227671,16.5513433421663,18.8002198401961 -"Tfru18680_t",14.0069403772268,13.6021435501324,14.6199195274718,11.8689526180177,12.8541406963906,13.9766101800956 -"Tfru18681_t",115.915080927016,119.166842835358,68.3418500074042,86.7330063390646,35.8018546452792,15.7181641540737 -"Tfru18682_t",59.9563818283554,48.9188607308136,40.8245495996473,20.5337914509572,14.7373068152416,32.4434762542086 -"Tfru18683_t",0.206160433794963,0.330961987813421,0.266303248959879,0.426497393017348,0.178438881762746,0 -"Tfru18684_t",22.0877511197658,6.79186381466032,19.8252812232536,3.92153055858904,4.80320358152402,7.87910511835843 -"Tfru18685_t",0,0,0,0,0,0 -"Tfru18686_t",0,0,0,0,0,0 -"Tfru18687_t",0,0,0,0,0.0507423896150168,0 -"Tfru18688_t",52.6300301538774,53.847637094445,58.3021358090497,77.825582192377,74.6386225502745,63.4536352913487 -"Tfru18689_t",20.8660363632594,20.6948077815453,22.5315981459043,23.6175011182087,22.4571365742533,18.5833893493275 -"Tfru18690_t",13.759537384729,15.2363270795133,12.592065157575,12.3067551798641,14.621378425089,12.6252555319046 -"Tfru18691_t",9.45116738678784,12.8123659532271,10.6709931051965,5.6484248487735,8.36209209660669,7.52946982873127 -"Tfru18692_t",2.78940704123947,2.50241522523966,2.68470430347899,12.8990471306126,13.3498073553164,9.84401348781831 -"Tfru18693_t",13.5954292766293,12.418000365851,12.1921909721903,4.55830988826158,4.78807680221074,5.89954815297822 -"Tfru18694_t",32.3320692937432,24.6759829084234,31.0379096894985,25.2198537290542,26.3788394214722,22.6858422703034 -"Tfru18695_t",2.52031130314342,4.72034535118892,4.34074295804604,2.60696531481854,3.27212299432436,6.14650598263777 -"Tfru18696_t",69.0874808975707,43.0332235963644,65.2063361022255,45.7362335933069,51.1867193556579,61.4650598263766 -"Tfru18697_t",0,0,0,0,0,0 -"Tfru18698_t",0,0,0,0,0,0 -"Tfru18699_t",12.8676679738143,11.1938536796438,14.3879210584792,17.4912668810332,25.07373942011,20.5540737350437 -"Tfru18700_t",4.20051883857237,9.19547795686154,5.91919494279005,11.8498423400843,12.2291465444446,14.5281050498711 -"Tfru18701_t",0,0,0,0,0,0 -"Tfru18702_t",4.66329245681576,4.73886553460451,4.33141058439052,3.26933598115319,3.24812008652972,3.37987875643377 -"Tfru18703_t",6.91263032809663,9.53505718030639,4.69906980854306,6.51347416432425,8.30116753438048,4.33192470353633 -"Tfru18704_t",0,0,0,0,0,0 -"Tfru18705_t",0,0,0,0,0,0 -"Tfru18706_t",0,0,0,0,0,0 -"Tfru18707_t",0,0,0,0,0,0 -"Tfru18708_t",0,0,0,0,0,0 -"Tfru18709_t",0,0,0,0,0,0 -"Tfru18710_t",15.8784672964106,13.5070123000888,16.1252499445485,11.5167142421703,7.17282651031611,6.29461456053266 -"Tfru18711_t",6.28004226923373,5.08842386235356,7.09171686845791,2.81900339637172,2.10244542810372,2.86085609911208 -"Tfru18712_t",15.7848307086227,18.3013687937536,21.1448856689786,33.380766731149,42.5049611881615,38.1109034831611 -"Tfru18713_t",2.26874726785482,2.89230283631229,2.64329065488639,1.44946443238521,1.61714665680138,1.26933403930566 -"Tfru18714_t",0,0.182911858093087,0,0,0.0657448863637604,0 -"Tfru18715_t",40.830218081228,29.708467245245,40.7766762725537,47.034758826796,39.3207856930845,27.8526984388061 -"Tfru18716_t",1.93298212040499,2.56605373073481,2.88102408719869,3.84508158527808,6.1131108055224,5.98332440787748 -"Tfru18717_t",0.136159443713853,0,0.117253996705728,1.54925005202614,1.64990894725521,0.796953774085935 -"Tfru18718_t",11.7342429093722,12.2854563796126,12.1552518730709,12.8413271242749,16.338535869096,18.0413637142202 -"Tfru18719_t",5.66494697030598,4.40504516500555,5.0985859298051,5.34968000697086,4.69890447947929,7.22441115262037 -"Tfru18720_t",0,0,0,0.0738029997773651,0,0 -"Tfru18721_t",0.202434642822765,0.227486522948864,0.104596215856531,1.34012674817981,1.15641294578531,0.622056027158521 -"Tfru18722_t",750.477098345493,616.85690940328,737.966606887864,367.202078233958,472.943806360098,478.365953077714 -"Tfru18723_t",0,0,0,0.736430879892243,0.246487607858709,0.104178067502335 -"Tfru18724_t",2.9650721213452,2.77667373599348,2.55337821061531,3.32260285221971,3.10103159592831,5.06182845628993 -"Tfru18725_t",1.22642885797188,2.46107682542645,0.528070919467971,5.70868317111009,6.36909585267115,6.72975107585083 -"Tfru18726_t",3.27824050877136,3.2629115330799,3.27475405263619,5.74201517485179,6.20451116972129,4.60508252601373 -"Tfru18727_t",0,0,0,0.29658308473476,0.248170117127369,0.419556722364353 -"Tfru18728_t",14.7171462956626,18.704183873241,13.2017729866993,13.3202607325902,16.9842556071231,17.9460028689356 -"Tfru18729_t",10.0720887682389,13.9644315566508,12.5175830079892,12.9045966991472,15.6522989132076,13.3146383002644 -"Tfru18730_t",0,0.0326871085879712,0.0350682093879951,0.168490244938991,0.246726568215334,0.0893820550068507 -"Tfru18731_t",0,0,0,1.36848572956354,1.14509991052471,0.725965273539894 -"Tfru18732_t",0,0,0,0,0,0 -"Tfru18733_t",0,0,0,0,0,0 -"Tfru18734_t",0,0,0,0,0.070527492064325,0.0596169348461471 -"Tfru18735_t",0,0.256726541942835,0.183618568445264,11.6894383828581,2.03008194797337,1.71602958906131 -"Tfru18736_t",0,0,0,0,0,0 -"Tfru18737_t",1.27718478199836,1.05364851589038,0.9318177098846,3.26604607290048,5.43511420791489,6.83954529740309 -"Tfru18738_t",5.82453672558975,4.89525444250541,6.01897473791049,3.61487849526225,3.32135014830821,3.10834723428664 -"Tfru18739_t",117.116160838162,131.652489138032,125.838628833185,129.335673281075,75.0246656419944,34.0532058148258 -"Tfru18740_t",0,0,0,0,0,0 -"Tfru18741_t",2.84780938208296,3.60465932946071,2.8296890208905,1.24626764289456,2.65448193078609,2.00342437504491 -"Tfru18742_t",0.790516804521747,1.32674988485085,0.556981560057233,0.22300815353452,0,0.368054250457352 -"Tfru18743_t",8.54012770491204,7.83747028508662,6.99501624585785,4.74778451374237,4.47840233218786,4.86428784718684 -"Tfru18744_t",1.26120665711931,1.79972657259675,1.50845946554283,3.47885279708896,5.45808672948183,67.4116377578705 -"Tfru18745_t",2.59336380468381,2.8820713460871,2.04455284255791,1.66241266452197,2.84532434289074,3.60773177241782 -"Tfru18746_t",147.991574397718,119.165566868009,156.552083746737,248.944208696505,202.470705836027,144.305343628711 -"Tfru18747_t",6.87270244754976,6.70088630927887,6.82897204498089,6.7610084442281,7.3629007118664,9.00174789219262 -"Tfru18748_t",0,0,0,0,0,0 -"Tfru18749_t",14.4580547493254,13.5568857777693,11.7296399617947,6.77470121433318,9.34702869350973,8.71952215929888 -"Tfru18750_t",4.76356173638943,4.4856589191823,4.62397984243867,3.93491058003733,3.49655833227741,4.69208330872569 -"Tfru18751_t",0.505118417319443,0.626602670286274,0.71179168483947,1.13996843501221,1.3712094173173,1.32706742997645 -"Tfru18752_t",0.347150317237386,0.278650847177622,0,0,0.300470431067434,0 -"Tfru18753_t",25.9700127364018,28.9600322375847,30.0189692810929,38.0407801816537,47.6713170219685,37.2360943346521 -"Tfru18754_t",6.93802034378202,7.38499785643817,7.14365238457606,11.2328846599003,10.7047311204707,11.8074710977063 -"Tfru18755_t",0.486257746228324,0.960762315469059,0.515374646250642,2.51488194513513,2.62236036944962,3.47553989223062 -"Tfru18756_t",0,0,0,0,0,0 -"Tfru18757_t",2.21322617180542,3.1088992433736,1.50885686430433,4.10170173937787,2.79361641179052,1.82168673470055 -"Tfru18758_t",0,0,0,0,0,0 -"Tfru18759_t",0,0,0,0,0,0 -"Tfru18760_t",0,0,0,0,0,0 -"Tfru18761_t",2.26443064073982,3.08994497382409,2.92502894747037,4.21611641210545,3.52789541167047,2.65078425127235 -"Tfru18762_t",34.099138198558,30.2126382952529,43.8692107462099,26.0980979415822,32.4891644826532,36.1144950534691 -"Tfru18763_t",0.756886596833334,0.596084335117678,0.213235708512071,0.514897477894593,0.214693846349816,0.345309324867291 -"Tfru18764_t",0,0,0,0,0,0 -"Tfru18765_t",1.99431161475246,1.3006462392,1.61006786277672,2.70753074239314,3.45228934448993,2.09747236796244 -"Tfru18766_t",0,0,0,0,0,0 -"Tfru18767_t",1.69768369107234,0.961904380628606,1.31146765943937,0.0774729662650383,0.237697559435813,0.292255856529582 -"Tfru18768_t",16.1350401739153,15.1218911465126,17.6983081980418,14.3588218341221,13.0291974261366,12.0028335712454 -"Tfru18769_t",0,0,0,0,0,0 -"Tfru18770_t",4.19229864515051,3.29909515738672,2.90232324331193,0,0.0711485756539325,0 -"Tfru18771_t",6.78481703406962,5.97736255895792,6.03276817325286,5.19224871193887,5.49053978766034,5.12545147600129 -"Tfru18772_t",22.4281096358163,17.3923519727064,26.5158506486975,19.6603719066255,19.0832713595589,15.0186119032778 -"Tfru18773_t",0.156735777558671,0,0.269946701371022,0.162124708632994,0.40698047193089,0.573368095395315 -"Tfru18774_t",48.4127594954104,49.2607468852887,51.2551004650633,54.0540265840906,57.5548564350085,58.44389586881 -"Tfru18775_t",0,0,0,0,0,0 -"Tfru18776_t",0,1.09351629757272,0,1.40917044044245,0.786095614252098,7.64160203246858 -"Tfru18777_t",0.419004372924925,0.336326708314138,0,1.73364276962164,2.90130052142919,8.58364925256148 -"Tfru18778_t",0,0,0,0,0,0 -"Tfru18779_t",0.132299805939287,0.424777984358958,0,0,0,0.774362958442554 -"Tfru18780_t",0.200183582457778,0.160683490906238,0.0574628403236171,0.207066347483601,0.404286664200344,0.244102699866472 -"Tfru18781_t",0.677503038479415,0.271909294423325,0,7.35836984021362,6.45042167339927,1.48705789902527 -"Tfru18782_t",13.3906482899461,17.2742375280701,16.6106862088416,39.244639147806,47.1881114931027,47.3525887846477 -"Tfru18783_t",11.6595283938314,12.2099269194356,12.8333852773113,14.4565172175906,18.9804520095612,15.818213925906 -"Tfru18784_t",4.44318510182594,4.88330508259693,5.0624341523184,9.05048983717855,9.46640772248255,12.8031369532569 -"Tfru18785_t",0,0,0,0.404808278698531,0,0.095442639481953 -"Tfru18786_t",0,0,0,0,0,0.686760444987461 -"Tfru18787_t",8.56706608973654,9.06221016038528,9.60796860278964,26.5848636847108,21.2680809468601,22.4481088061553 -"Tfru18788_t",4.44525774831083,4.97131665999173,3.82804323489989,30.2751025462478,29.7426426224753,25.8357891184596 -"Tfru18789_t",0,0,0,0,0,0 -"Tfru18790_t",0,0,0,0,0,0 -"Tfru18791_t",0,0,0,0,0,0 -"Tfru18792_t",13.6870838560223,13.0699770959886,14.6825224119301,10.6182576024912,10.0594293052731,11.0498983957533 -"Tfru18793_t",28.3078443469008,25.758761233196,34.1507727548135,32.249726202983,41.4378584857501,35.2183339688406 -"Tfru18794_t",45.3281140389554,42.2656248483737,49.0864949109668,22.2094408158983,24.9262468352858,23.8753731374266 -"Tfru18795_t",424.552439755708,407.310411999912,414.050035135046,399.191563831589,360.647683203806,197.291866139132 -"Tfru18796_t",61.0424022045747,70.6505162655013,70.7527827718207,71.9107863598264,65.6425897332348,55.4877237331703 -"Tfru18797_t",0,0,0,3.67753727795719,2.73531702764837,1.44510328745402 -"Tfru18798_t",552.488999553039,583.919298702472,584.549326351173,724.075780053153,602.923208429035,211.463943554144 -"Tfru18799_t",14.8983919397641,9.96554261334748,14.611696328398,11.9860474244531,11.4622808777646,9.08350637828242 -"Tfru18800_t",5.83928627783603,5.66985748461193,5.02851389011312,4.91972153954919,4.44271806653407,5.34029387504963 -"Tfru18801_t",32.2575728990845,32.9101316350834,33.5767198509143,32.7429854133907,32.4428994386758,34.1881014584517 -"Tfru18802_t",99.1279252907311,87.0221581453117,134.648581903399,193.232647585093,203.000603932377,190.399478382481 -"Tfru18803_t",5.84178116622648,6.25211304793235,7.18666052656628,4.31616773976579,5.77858365443595,5.9022739568376 -"Tfru18804_t",6.44919516649139,6.41081110227561,5.40661934276196,8.2171758779232,8.0218120066473,7.59329412191651 -"Tfru18805_t",2.06816717009506,2.40425060332203,2.94787297660172,1.3278261365799,0.802444801475507,2.55669603692063 -"Tfru18806_t",2.4128306644541,3.16919866920554,3.96673638463737,4.53779863327857,3.60721420900277,2.24676458895375 -"Tfru18807_t",0,0,0.161126316185822,0.580615883033082,0.647784804617542,1.09514583209582 -"Tfru18808_t",14.0951633096041,13.113856075753,11.9311809936759,13.0886723781801,16.4975166327549,15.4102104235818 -"Tfru18809_t",2676.85871236245,2091.35959869064,2399.7041052081,18.8566535163911,62.0108960650915,131.324437383217 -"Tfru18810_t",1.07156092820724,1.20416973244615,0.553666193628321,0.221680724049196,0,0 -"Tfru18811_t",0.199549588530754,0.0800872981199342,0.0859212778710616,0.206410555409227,0.259075454815864,0.0729988834042491 -"Tfru18812_t",0.401963525222236,0.50701883471417,0.692303502080707,0.831567883514685,0.497018758156658,0.630195418588972 -"Tfru18813_t",5.11685327756485,7.35523936014965,5.68783907388464,28.1381588775732,22.1440545158336,15.4713171098092 -"Tfru18814_t",1.54147480314583,0.618656009330134,1.65930541209711,5.18204114566376,5.00324616869168,3.66534760432528 -"Tfru18815_t",1.21975138688127,1.22383856655144,0.919092580348525,4.41591220900902,5.014747884022,5.35448797035595 -"Tfru18816_t",1.22108105772453,1.17616578517996,1.47215119701174,2.84189532865393,2.00808581693032,4.02024373864389 -"Tfru18817_t",0,0,0,0.0677309772621081,0,0.0479072952660777 -"Tfru18818_t",0.164887883751614,0.0661761580147052,0.141993554401244,0.170557102703208,0.428148249175578,0.120637997696522 -"Tfru18819_t",1.64995829993023,1.87621863386045,2.96013567788191,0.568895867936397,1.42809514209465,2.21314454366663 -"Tfru18820_t",0,0,0,0,0,0 -"Tfru18821_t",0,0,0,0,0,0 -"Tfru18822_t",0.752331732281619,0.603882134480459,1.1877654860325,1.16729790215755,2.38761876866122,1.97238624815988 -"Tfru18823_t",4.33136206770083,4.05615067771336,5.05098983660924,6.39373877783995,6.91211087236438,10.3322039342944 -"Tfru18824_t",0,0.0737784518785389,0,0.0950753214740532,0,0.2689936972708 -"Tfru18825_t",230.240938839248,247.60740123424,233.993175082169,334.288989848086,254.952916641106,136.567679801733 -"Tfru18826_t",2.77720253789909,4.45841355484196,3.70697057023215,6.31991591471161,10.5765591735737,10.8706800023511 -"Tfru18827_t",1.21992169564794,0.734405667596313,0.828308951316613,1.18906544192598,0.507636444556821,0.240299033110664 -"Tfru18828_t",1.98016601731041,2.94340921069335,2.52625808703392,1.93445702103514,1.99955137147713,1.98534021263725 -"Tfru18829_t",39.0725879645438,35.5860591157393,40.1838114357102,41.3081773018817,35.1624442237457,23.2860442258043 -"Tfru18830_t",2.21565828847773,4.29795966042319,2.8620283239864,79.6413579691818,102.918056573621,75.3791283145467 -"Tfru18831_t",1.39706834985777,2.01851955150619,1.84473555127603,8.76695652802982,6.61034948348355,6.26916352996314 -"Tfru18832_t",15.5062000632863,16.6694557556818,14.640827160186,31.620409883099,34.9429087066939,44.6502939542968 -"Tfru18833_t",8.43334936051838,8.53293198099536,8.12498040865027,5.41446642308466,5.87304127186423,6.6429545427739 -"Tfru18834_t",2.6001077122433,2.9506656410847,2.70234798170778,6.02820154618303,5.66500601412731,6.69096702485648 -"Tfru18835_t",2.89104535448301,2.32058620503793,1.90383463072194,2.63862886115237,5.8877606735481,7.34096868371718 -"Tfru18836_t",0,0,0,0,0,0 -"Tfru18837_t",0.512258394947851,1.23353972592045,0.882264828871146,0,0,0.37478695016084 -"Tfru18838_t",5.60802253317254,5.82540750146725,5.77629407593386,2.04735495928157,2.28420453355976,3.86167915139546 -"Tfru18839_t",9.93318453739367,10.7938739207332,10.288989164359,10.2747099226907,7.86753251408472,9.90708437803857 -"Tfru18840_t",10.5472115746789,11.2880570546857,10.6643279002588,13.6780191408343,14.4428497771552,12.0933752937595 -"Tfru18841_t",0.882461940876549,0.850002164079638,0.607947193003646,0.182560596275808,1.37484159425393,3.22820692365429 -"Tfru18842_t",0.217831573305395,0.0582830639731932,0.187586126103977,0.337525450721113,0.330201800746154,0.371871580626313 -"Tfru18843_t",0,0,0,0,0,0 -"Tfru18844_t",4.8938083556183,4.58285956426109,2.45834957170892,0.843678095410531,3.88277809466752,2.98374076827076 -"Tfru18845_t",5.58940006745517,3.46684350389739,4.30281980048246,5.34357809825037,5.57081871793573,7.0015642745773 -"Tfru18846_t",0.106207808813461,0.170501909018924,0.0914610821332919,0.219718947730176,0.551558869671194,0.854760629696782 -"Tfru18847_t",0,0,0,0,0,0 -"Tfru18848_t",0,0,0,0,0,0 -"Tfru18849_t",0,0,0,0,1.19529607098607,0.336794848363713 -"Tfru18850_t",0,0.158047277383558,0,0.543117773920529,0.624884599610554,0.480195779893576 -"Tfru18851_t",0.106207808813461,0,0,0.54929736932544,1.74660308729211,2.56428188909035 -"Tfru18852_t",0,0,0,0,0,0 -"Tfru18853_t",0,0,0,0,0,0 -"Tfru18854_t",0,0,0,0,0.189853379421199,0 -"Tfru18855_t",0,0,0,0,0,0 -"Tfru18856_t",38.9297390043779,46.5597416475009,42.0396329115672,48.8050967185676,34.0993560936695,29.2799265530659 -"Tfru18857_t",0,0,0.204945371012561,0.984689448467815,1.85389404777584,0.522365947532955 -"Tfru18858_t",40.6459328623045,48.7426195434331,37.4879990467426,21.3222493927817,32.7968303484895,38.8517579402037 -"Tfru18859_t",3.09665309001432,2.95350564037964,2.47845254181582,4.522056053458,3.87849212972821,4.69117542473655 -"Tfru18860_t",2.00502092533287,1.44845237506649,1.03597683962913,1.86656227791304,1.90895534009907,3.37397703104221 -"Tfru18861_t",0.177988086380185,0.285735190749935,0.0766374109824512,0.552323159919182,0.231082132367539,0.520890337511676 -"Tfru18862_t",0,0,0,0,0.382704443780627,0 -"Tfru18863_t",0.824925145045635,1.40376110208177,1.13661768998325,0.614367316925029,0.656880761713016,0.627687178116976 -"Tfru18864_t",11.7121738608647,10.3764694341121,10.1731621488959,8.23950467787833,7.97544375206954,8.79130626685033 -"Tfru18865_t",0,0.0485832168710264,0,0,0,0.0442831843129522 -"Tfru18866_t",0,0,0,0,0,0 -"Tfru18867_t",0,0,0,0,0,0 -"Tfru18868_t",0,0,0,0,0,0 -"Tfru18869_t",0,0,0,0,0,0 -"Tfru18870_t",42.7878937593707,40.2087980225498,37.7455909395307,45.3385272142355,34.7761864131091,33.5958090976474 -"Tfru18871_t",8.34636714996159,6.80186113511883,8.16047121541554,6.6163761786067,6.1514965909207,6.97315103887105 -"Tfru18872_t",0,0,0,0,0,0 -"Tfru18873_t",59.3839583486484,60.0521009427692,56.6417293845215,50.462593910835,53.1526060508677,42.4211544627319 -"Tfru18874_t",0,0,0,0,0,0 -"Tfru18875_t",0,0,0,0,0,0 -"Tfru18876_t",0,0,0,0,0,0 -"Tfru18877_t",0,0,0,0,0,0 -"Tfru18878_t",0,0,0,0,0,0 -"Tfru18879_t",0,0,0,0,0.0530757987724957,0 -"Tfru18880_t",0,0,0,0,0,0 -"Tfru18881_t",20.7367385701674,61.0315899837266,20.7192635919391,91.7112797987324,114.708390483171,141.408539537268 -"Tfru18882_t",0,0,0,0,0,0.368054250457352 -"Tfru18883_t",13.1822010874251,12.4285912111005,11.3518807122001,9.84781418217049,9.59858966094872,10.1803897346304 -"Tfru18884_t",0,0,0,0,0,0 -"Tfru18885_t",1.62182194539474,2.73379074393181,1.25697189904808,1.84534224343655,0.701871084153659,2.37316833306478 -"Tfru18886_t",17.1881186611167,19.1823974884201,23.8250114947457,13.2154696848934,14.2404574759071,15.1981438958002 -"Tfru18887_t",0,0,0,0.59519756046075,0,0 -"Tfru18888_t",0.420051883857237,1.34867010033969,0.36172857983717,0,0,3.38057829045078 -"Tfru18889_t",60.4142418913315,85.3940027212662,58.1568467341115,46.2899410217981,54.4033363059578,51.3449046975795 -"Tfru18890_t",3.8288911665271,3.88691784950447,4.17006137613895,4.89242820475329,6.62807160006126,6.42664164404485 -"Tfru18891_t",0.258493466989069,0.414975415489136,0.22260220297672,0,0.223734905594828,0.945616305021195 -"Tfru18892_t",41.6809121222803,44.7904767465125,40.5512432930288,34.3347665479341,38.028065230813,44.4375170337239 -"Tfru18893_t",44.202972798692,50.8274309960545,39.4070701255307,36.5190601171932,32.8051174836855,36.3088081631005 -"Tfru18894_t",22.6579710750579,22.3394246915873,23.6103629696675,21.0826012733683,20.6858350215908,19.5295387133072 -"Tfru18895_t",7.51449601272243,8.87818005751254,7.34363549016163,2.00871699299251,1.82698101302309,14.7021952147517 -"Tfru18896_t",0,0,0,0,0,0 -"Tfru18897_t",0.860174506192295,0.74798256418157,1.23456853186747,3.03997661853129,3.41233911050132,3.19912000802819 -"Tfru18898_t",0.051986619289262,0.0834573081893374,0.0447683885937091,0.0537740370218346,0.044996190791039,0 -"Tfru18899_t",0,0,0,0,0,0 -"Tfru18900_t",0.150018529949013,0,0.516755114053099,1.08623554784106,0.129846150568427,0 -"Tfru18901_t",7.95639322990254,8.18279922285585,9.25541103450309,5.09858912178473,6.4367742937871,5.67469071994902 -"Tfru18902_t",17.166423944124,16.8161951627009,13.8174887043723,12.1759847898114,10.0064923373834,13.4823275515741 -"Tfru18903_t",2.15914519739701,1.10288442784788,0.676128186611532,0.60910404551835,0.169892159622241,0.718049764326843 -"Tfru18904_t",4.07265637110737,3.49711525454486,4.48592376348237,2.05735706919163,1.96745463769973,3.25688592090164 -"Tfru18905_t",10.0980753381373,11.0325266972696,11.1115289966676,14.6523926987575,14.5670472757901,13.647500762785 -"Tfru18906_t",0.461010932050999,0.455439459802344,0.488616063942145,0.550224844832955,0.460408469723422,0.259455718980066 -"Tfru18907_t",1.74114770510772,1.965354744666,1.26511290875694,0.844224519047454,0.518039046309268,0.995224414287204 -"Tfru18908_t",148.562806782439,202.004429408728,128.888141619259,72.2090282955592,64.4128126947129,51.1421683297413 -"Tfru18909_t",21.0025941928619,22.5068012878853,33.0963004747926,7.1669149548276,7.30886579488259,11.1682647364939 -"Tfru18910_t",5.02289474248982,6.68010688620773,5.64008219441308,7.38589235343275,7.71465757421791,7.60206777454027 -"Tfru18911_t",14.7311715304444,16.537060315474,15.6274100564978,9.99281495091392,10.763866407985,12.4179726968158 -"Tfru18912_t",0.0210288802932284,0.0675179023949783,0.0724362612940515,1.7836558682947,7.13487533736697,16.047073191217 -"Tfru18913_t",8.59948738605368,12.4778532905444,5.98133872171698,0.684242864781769,0.858824932893532,1.45193054707979 -"Tfru18914_t",278.225902581609,287.305779727153,283.582316487046,399.463727526761,249.882988381217,95.1407941633241 -"Tfru18915_t",0,0,0,0,0,0.174616647234028 -"Tfru18916_t",12.9373778121167,15.9082973827749,10.3825110071219,5.63760520242541,6.05154536594136,8.98211555785205 -"Tfru18917_t",23.012411818973,31.6195382376291,25.3556157637059,12.8893021944776,14.0035035110638,16.1014929449482 -"Tfru18918_t",0,0.596756675909071,0,43.833929656631,59.2006514501614,14.6863415892022 -"Tfru18919_t",0,0,0,0,0,0 -"Tfru18920_t",20.0158951368214,21.8366887051645,18.5719707097607,0.14580342924041,0,0 -"Tfru18921_t",1.78664602183621,1.61718360447972,1.83319461274946,2.1626409097288,3.02700166393002,3.17059584624754 -"Tfru18922_t",0.89531485013976,1.31752851720574,0.899502685207882,0.926097802777456,0.77492551671388,2.18348347518216 -"Tfru18923_t",22.2053859307791,28.2210703815574,24.1759441023961,50.8049250569839,60.6787649881001,62.8962789664507 -"Tfru18924_t",25.8847303243036,26.0805542051752,28.7006150453185,30.7108905512056,24.7205354252921,23.3744677488066 -"Tfru18925_t",14.8796659569338,15.7795273536835,14.1230809451616,33.0855972942926,37.8375207991253,45.3339581524867 -"Tfru18926_t",0,0.0809525870552036,0,0,0,0 -"Tfru18927_t",0.485609114285824,0,0.836366658583051,0,0.840622477668429,0.710578726316506 -"Tfru18928_t",0.501554488187746,0.20129404482682,0.863829444387271,0.77819860143837,0.868225006785899,1.65130011473851 -"Tfru18929_t",0,0,0,0,0.0420311238834214,0.142115745263301 -"Tfru18930_t",1.09104385417464,2.50217087261538,2.81866425847145,6.77133848004815,6.34053930048422,9.35089963963446 -"Tfru18931_t",16.4433121794648,16.3184282603379,19.8242709234605,25.6676300272762,31.3109436388491,24.9360029188863 -"Tfru18932_t",5.56535618990661,5.95627173651599,3.87973871118731,8.22386534643072,7.3401987955401,5.62298654563077 -"Tfru18933_t",2.69840610614928,3.46553344841034,3.40814936035021,6.14060352526851,5.29394155636584,5.00143955760675 -"Tfru18934_t",1.42505485638158,1.96090967739212,1.46093933698372,3.50964635812943,5.16867390954126,9.58219430249669 -"Tfru18935_t",2.85992771987906,3.58688856473322,6.31100926524423,7.95031975441115,14.6974791707241,20.1396153473663 -"Tfru18936_t",8.08288169551285,8.14447655271666,7.7751281234192,3.2020044808416,3.27472789151079,2.83104165014022 -"Tfru18937_t",8.53230389005763,5.26824257896259,7.34761177726004,4.07338330402562,14.7699996257867,11.0445029365264 -"Tfru18938_t",16.8726723095596,18.9833816644452,18.3600052287101,19.6435201592769,23.6472754211676,23.5529977149817 -"Tfru18939_t",14.2593280454801,9.88491141792,12.6658671871769,7.99366219182737,8.58756974441869,12.2565341849632 -"Tfru18940_t",64.6966042379145,77.0044773966214,63.7563703048136,36.0163583698622,58.4693081674557,65.5450395126402 -"Tfru18941_t",12.1505691337586,11.7275660899104,12.4534772827703,63.8440485261683,78.9077476497819,75.6996477719718 -"Tfru18942_t",51.0209361368059,36.5127758872453,55.8032504260999,32.4281051355477,41.0123817039299,24.0613222003259 -"Tfru18943_t",54.1207894732066,57.3879432553419,50.7910494034441,44.8954407095005,52.3747103687417,38.3791340278809 -"Tfru18944_t",21.7770933279565,22.3071789915188,17.733331679653,14.5616826153096,15.4970394886656,17.332880211343 -"Tfru18945_t",14.660536268037,12.4906611437059,14.908646649632,15.8374307392192,17.5829784355197,20.1344746304394 -"Tfru18946_t",180.945426892348,136.97430706575,191.820492096345,279.705653569072,233.997393411488,134.75032346552 -"Tfru18947_t",28.2050753389551,32.2985791365928,25.056454867084,17.6827128212398,13.8043334609617,11.5057747458244 -"Tfru18948_t",0.197671474756347,0,0.340450428082042,0.613403603486715,0.513274195188135,0.433871010539137 -"Tfru18949_t",27.4489349847304,23.3680462930145,22.2051207424797,22.5850955491705,19.618339184893,20.8433494955786 -"Tfru18950_t",96.8380865520833,65.3503870332295,106.571050264472,0.690282078063161,1.79698820910232,3.47198925762416 -"Tfru18951_t",7.97786402040995,10.579988400683,7.40781897602131,20.8815553705531,16.3921383145344,11.3692596210641 -"Tfru18952_t",0.901951897852963,0.930830590725247,0.61027827886639,21.1915892155495,20.2416606499615,21.7767313188547 -"Tfru18953_t",181.450476294991,202.180739731208,188.25306197565,177.965127767068,122.954848651936,67.5788135568877 -"Tfru18954_t",0,0,0,0,0,0 -"Tfru18955_t",2.86670479978399,2.42888454089613,3.15441036445683,15.3205544567535,18.6781533746583,13.050401328065 -"Tfru18956_t",7.78209004991865,8.07691270776463,9.00814817517811,7.00132864959165,9.49258717296453,11.572697606259 -"Tfru18957_t",19.8406009551065,22.1622914919569,23.4182664403254,21.9579242040868,25.3387632554341,18.1197575210709 -"Tfru18958_t",13.6111767706855,12.3261243591877,10.8625911808669,11.9131352665298,9.70956378137792,12.986089791211 -"Tfru18959_t",0.0727992866303704,0.175303739212265,0.06269126167022,0.376511455057559,0.945153955610733,1.11851495351294 -"Tfru18960_t",4.24771567945521,5.11433886364771,5.89333079509995,0.488195751838678,1.4297666017647,2.58981993650468 -"Tfru18961_t",2.41771055549538,5.07160065587349,4.32217184768712,3.14675479040306,1.68035710211997,2.39696612136292 -"Tfru18962_t",0,0,0,0,0,0 -"Tfru18963_t",9.14102545181552,10.272254132121,8.54654053915799,16.4792626118063,14.8441733996983,12.2293176027612 -"Tfru18964_t",0,0,0,0,0.0433853486386152,0 -"Tfru18965_t",0,0,0,0,0,0 -"Tfru18966_t",0,0,0.0749696538522631,1.44080984584099,0.452106804051725,0.0636943625143811 -"Tfru18967_t",0,0,0,0,0,0 -"Tfru18968_t",0,0.0485832168710264,0.0521222737517535,0.125214472373609,0.31432497543942,0.619964580381331 -"Tfru18969_t",0,0.327347111732935,0,0,0,0.596748153654153 -"Tfru18970_t",0,0.152997175307963,0.0410355734358672,0.0985806509668572,0.123733144047055,0.174319511702716 -"Tfru18971_t",201.585416412803,206.024809687614,241.010698904436,251.199948078872,217.799752253108,177.389173834998 -"Tfru18972_t",0.785143667507288,1.26043928087466,0.676128151616823,0,0,6.89327738075882 -"Tfru18973_t",0.0787351234971391,0,0,0,0.068147932819418,1.90098123174364 -"Tfru18974_t",0,0,0,0,0,0 -"Tfru18975_t",7.79737029914632,9.28724919395596,8.77245957090142,6.76458065721377,8.7082448285412,7.36108500914703 -"Tfru18976_t",0,0,0,0.502305455649044,0.420311238834214,0 -"Tfru18977_t",0,0.0953123745823104,0,0,0.051387875843335,0.564696662715838 -"Tfru18978_t",14.2320210648998,15.4165414430277,12.4939147641128,15.8647560276786,19.6136027437571,15.8717341985877 -"Tfru18979_t",12.593877322228,10.2937800163039,12.6307420016269,8.73754371206701,9.83697345439782,10.5625514144049 -"Tfru18980_t",71.1144568665979,76.0595929780004,72.2652424235324,70.3696977822728,68.9123418901088,90.522513025722 -"Tfru18981_t",0,0,0,0,0,0 -"Tfru18982_t",0,0,0,0,0,0 -"Tfru18983_t",0,0,0,0,0.469121576247217,0 -"Tfru18984_t",4.72959182205668,5.8232177519438,5.76418633900833,4.43615280988524,3.85078087754457,4.04684077101151 -"Tfru18985_t",12.2736974736137,11.0214868106479,12.4035016702005,7.47828609320862,7.8583340757623,6.39663064237153 -"Tfru18986_t",8.05881406611782,6.02559571768062,9.88693096006981,7.19399101329689,7.2618293931567,8.64226202552223 -"Tfru18987_t",3.03579536812744,2.34026833153757,2.89900543411542,1.27472364827144,1.27476864815658,1.91322368690335 -"Tfru18988_t",360.500224373679,448.454148079725,376.838761020241,887.275694964348,618.642944461395,258.503368700177 -"Tfru18989_t",1.49050668465471,0.598200447731315,0.845978130264348,0.280318851055757,0.263880886639061,0.371764474756317 -"Tfru18990_t",51.8887621235411,54.3434716901582,49.7908751069986,38.7211024700989,48.4402521708802,44.8333377557108 -"Tfru18991_t",0.0550526715409223,0,0,0,0,0.0402785451024756 -"Tfru18992_t",0,0.253509417357085,0,0,0,2.31071653482623 -"Tfru18993_t",0,0,0,0,0,0 -"Tfru18994_t",19.0236263509813,22.2899503665565,26.71292008376,18.8853110445315,21.106906177506,19.2895666476398 -"Tfru18995_t",0.266136357248513,0.0712075026578507,0,0.183524485379693,0.307133450130175,0.194715078647448 -"Tfru18996_t",54.8841376549315,51.6884177606604,66.8856619321559,9.01780454811444,6.43105934419095,8.26299153326304 -"Tfru18997_t",10.7820804412553,9.73638842491222,8.89813618850791,10.2233933914453,6.22150539621981,8.05290890773398 -"Tfru18998_t",0,0,0,0,0,0 -"Tfru18999_t",0,0,0,0.0468204977517697,0.0391777178439219,0 -"Tfru19000_t",0,0,0,2.93577175092178,1.71958415617646,1.66121783314534 -"Tfru19001_t",0,0,0,0,0,0 -"Tfru19002_t",0,0,0,0,0,0 -"Tfru19003_t",0,0,0,0,0,0 -"Tfru19004_t",0.226036888174298,0.181435439507582,0.129768100390016,0,0.130428420301918,0.165376842582182 -"Tfru19005_t",0,0,0,0,0,0 -"Tfru19006_t",3.42619807387632,3.02515723975053,4.18967849403573,2.48079896733684,1.89791437046184,2.95794333585341 -"Tfru19007_t",16.7125438692755,14.7323643287551,18.6325556221633,18.8306553231416,19.2439836650614,15.8302551950706 -"Tfru19008_t",6.25693982595695,6.62179105242685,5.66273393483235,4.94680325392512,4.03582532506799,5.3067556396588 -"Tfru19009_t",116.760184665402,145.610653206167,115.998385263038,118.565371662651,121.888122086131,87.6137547694638 -"Tfru19010_t",0.746095708449799,3.59325959237928,1.28500383601126,4.01350553233656,1.67913526617644,1.0918628361653 -"Tfru19011_t",3.18500878968674,4.92783305893349,3.3390330446508,3.15127675417626,2.27730171766164,3.64737717651033 -"Tfru19012_t",5.82827192666137,7.68568193949775,6.48888730926934,3.91862972660203,3.8194586212794,4.35555181128445 -"Tfru19013_t",46.7200564698356,40.9417709031692,42.0786307157524,48.1047171186754,53.9788997363032,62.092254314402 -"Tfru19014_t",71.371646846053,60.8691809427252,72.9859428504711,88.4368756230274,113.253420165526,97.3650053506368 -"Tfru19015_t",3.90333323964487,3.13313011694543,4.73646714887107,3.48696522221417,1.30531716305325,1.68753068161121 -"Tfru19016_t",0.157077675484165,0.0630416064353237,0.135267776816642,0.0270797269639404,0.0226593469362166,0.0191539606813268 -"Tfru19017_t",0.546705271831545,0.621675480091506,0.35309731220548,1.03675410206088,1.1829801136386,1.13330370612627 -"Tfru19018_t",38.8194016261323,30.4966132239734,40.6436606558617,14.76792149312,23.0805179999159,35.0920601396384 -"Tfru19019_t",0.278180055534594,0,0.239555350885543,6.04263483567211,6.98245524911011,6.10580064500441 -"Tfru19020_t",0,0,0,0,0,0 -"Tfru19021_t",6.75324572117745,5.74594174582023,5.23401482079506,5.02951507682033,4.50077653738792,5.03973963206634 -"Tfru19022_t",0,0,0,0,0,0 -"Tfru19023_t",0,0,0,0,0,0 -"Tfru19024_t",0,0,0,0,0,0.207652229143168 -"Tfru19025_t",0,0,0.1987519669435,0,0,0.168860054468071 -"Tfru19026_t",14.7132511042553,13.584608088721,14.0818113203399,11.0397805225225,9.63359461930543,14.9758335420893 -"Tfru19027_t",11.5202681859804,12.8161513143748,11.6031621439349,65.4354565788454,70.2647813982153,39.9251791975669 -"Tfru19028_t",0.0388577135853133,0.0623806706910126,0,0.0803874595997082,0,0.0568594447977592 -"Tfru19029_t",7.80536507900978,7.05661128295095,6.6508531060526,6.11903839175012,5.26242002890524,8.14524753689406 -"Tfru19030_t",13.9213752038769,11.8032820833172,13.3896662263974,11.7194997414128,11.736452633875,13.0073117996997 -"Tfru19031_t",4.39224376481426,5.48421866528173,3.96250394510426,5.33652650889549,3.86198011317213,4.59075135632697 -"Tfru19032_t",16.1443428671109,17.7582895774265,14.0958290007723,36.568641575005,37.0038424822762,29.2560560561495 -"Tfru19033_t",0,0,0,3.09502731439644,3.78510422478921,0.841987120909284 -"Tfru19034_t",9.38473926249009,16.3365153473179,11.8791081400093,22.6896039064512,26.6193346629647,29.8639119748618 -"Tfru19035_t",0.071285852160753,0.0286098875761496,0.122775928667686,1.80655212029569,1.35740736105475,0.625863994837957 -"Tfru19036_t",0,0.161324174681781,0.259613813280265,0.103945985439336,0.17395656535483,0.22056839650614 -"Tfru19037_t",326.421998295166,432.545121602948,261.533313448248,773.655573616087,633.33203333742,416.782706652581 -"Tfru19038_t",10.514941051082,10.7181014903566,11.6555246166676,10.8388337038796,14.4231012116891,16.1848230292064 -"Tfru19039_t",5.20362781494786,5.83752729997777,4.75106194412999,5.31769044316219,7.00006411721131,8.57758670711391 -"Tfru19040_t",5.82249985195789,2.67063317017583,2.86517612771403,2.58115310834676,5.75951092913212,3.65138874668805 -"Tfru19041_t",3.96275362129469,3.49890827918316,7.5075742985073,3.2792016538598,6.17381697042332,8.69788582448742 -"Tfru19042_t",29.1099785773404,32.9993747955457,38.2618680192508,35.9217105182696,32.2681497582814,26.7158162771186 -"Tfru19043_t",0,0,0,0,0,0 -"Tfru19044_t",0,0,0,0,0,0 -"Tfru19045_t",0,0,0,0,0,0 -"Tfru19046_t",0.369497858650908,0.350514020480128,0.433900735510399,0.764404064054483,0.988512877578108,0.786438190501434 -"Tfru19047_t",0.152413600819027,0.220211010577961,0.157501558709943,0.819800413464949,0.527676664138745,0.646765869000346 -"Tfru19048_t",0.220114524292002,0.117787781689056,0.126368062825212,0.0758941867487202,0.254022163557446,0.536812749575351 -"Tfru19049_t",93.9976243596121,83.4666460699301,117.372070660391,226.666215017903,165.767225508808,98.4300608407909 -"Tfru19050_t",25.2529074969211,24.2098273727362,28.6687511200331,22.2949616254591,14.8383035399787,8.84763773961406 -"Tfru19051_t",1.8060051344492,2.3994130769572,2.57419893731418,1.67484799074085,1.99437527040608,2.09591753299731 -"Tfru19052_t",0.752612557862911,0.997206283085465,1.31621698602712,0.77848908243928,0.7328382966012,0.70191887600977 -"Tfru19053_t",6.96671417129076,6.51308975285997,6.21114439525286,3.73029183258588,4.18547981929836,5.15706843421315 -"Tfru19054_t",52.9265373660119,70.4680127427489,65.1111443706906,56.484248487735,49.0818449148654,37.4936864940904 -"Tfru19055_t",26.3477274193228,23.5323863908886,25.3860931351021,18.2621606243715,17.3372983561031,19.7509832346972 -"Tfru19056_t",237.058922544,283.087116038638,232.795560376765,310.59875737106,349.170350078635,219.691889592397 -"Tfru19057_t",172.893060104332,186.182840741095,151.175845844075,237.482780582474,188.749293599573,162.574543126008 -"Tfru19058_t",4.74352796034919,6.06200156541986,7.79355781224214,8.97395192570027,9.29181368703631,8.72201071830471 -"Tfru19059_t",9.03909117161142,6.40191503325802,8.24191700894816,6.04991950696285,2.76128522727794,8.16940668578437 -"Tfru19060_t",1.47516025937572,1.18408261662835,1.58792177277072,2.21252543546203,1.91520222085125,1.40306545696736 -"Tfru19061_t",7.00844963315433,6.35613752597796,6.11372247612117,10.6387533613035,12.1321040357759,15.0499496432951 -"Tfru19062_t",179.695220069717,251.543510540196,175.541853049046,289.465494765274,223.689183202676,141.017930173869 -"Tfru19063_t",38.4961554493242,40.3855450808108,44.3939620709254,39.7663628079404,30.1821489899312,22.2754209444489 -"Tfru19064_t",9.63790173286204,10.2504085064059,10.3054604963171,15.2862210939009,19.1864445811243,19.9203205364647 -"Tfru19065_t",9.0894709823141,14.6782277245677,7.59583701578691,12.9625035926743,8.98448908670652,8.65705067977151 -"Tfru19066_t",0.166028412591793,0.266535592952508,0.142975723255798,10.8194212670335,7.75997548061112,3.15828370649372 -"Tfru19067_t",76.1106668399551,55.9710285764845,72.6727761662017,36.3780874249844,42.6026863637168,58.9642210450151 -"Tfru19068_t",0,0,0,0,0,0 -"Tfru19069_t",0,0,0,0,0,0 -"Tfru19070_t",51.5488710637784,52.0082210254642,54.5667842227322,49.1576149007514,59.3398914993392,39.8050387438211 -"Tfru19071_t",12.6833848047802,12.2059022879769,14.5630986687692,18.4801112684648,18.1784610795798,9.47918942127578 -"Tfru19072_t",0,0,0,0,0,0.543938577377859 -"Tfru19073_t",0.0461595476766195,0.148205505531834,0,4.53592866131431,5.95294659529096,4.66053750331875 -"Tfru19074_t",0.591990390413545,0.571569358365183,0.127083415534293,1.07580379725275,0.243002909365917,0.770525377366664 -"Tfru19075_t",0,0,0,0,0,0 -"Tfru19076_t",24.9904285332787,45.0268024005815,24.0847130372596,106.038589176585,99.0380968183687,63.3323527831284 -"Tfru19077_t",9.6192408004081,9.15833227351441,10.3696533960843,11.6204053592692,11.1516844399595,9.09261645571989 -"Tfru19078_t",0,0,0,0,0,0 -"Tfru19079_t",6.97588597258856,6.14622604922889,6.75821154674699,7.30029210225972,7.64167549761121,8.05445480695965 -"Tfru19080_t",0,0.162099771675444,0,0.208891451507896,0.873964474979796,0.886515285957371 -"Tfru19081_t",0,0,0,0,0,0.239163656911976 -"Tfru19082_t",1.32299805939287,2.38937616201914,0.569651306830188,0.684242864781769,1.71764986578706,3.14584951867288 -"Tfru19083_t",3.39187594922754,4.65602901814171,4.02155823107444,5.84749387954227,7.27563919159307,6.76151623602049 -"Tfru19084_t",43.3497846848826,53.5323599366587,44.1855397137848,46.175441982488,46.924170981348,34.3134008761852 -"Tfru19085_t",14.4927853766857,12.0165866760124,14.5377173318445,10.8726515499541,10.7519997285856,9.84606171626335 -"Tfru19086_t",17.8636195172983,19.744456971685,17.0051750847365,23.2596090135531,24.1556181193329,28.1018921624675 -"Tfru19087_t",9.85442820582509,4.59573035502385,12.5633124058781,7.3459704152816,6.43274507403216,7.65292356947036 -"Tfru19088_t",106.106889074459,87.9935322680853,106.258432458827,136.305174804817,116.102284037281,80.4824652066956 -"Tfru19089_t",23.2702264707544,25.0058691483291,26.0835132761764,34.5696557384892,30.3753205699919,25.3207605068818 -"Tfru19090_t",19.1691784508748,16.5523901683869,17.6956245624752,27.2638550642215,28.9095664532643,23.8529056716021 -"Tfru19091_t",55.8271203585542,53.0375882156059,56.9011249182064,42.5427726602276,54.6229199694596,43.2129955119638 -"Tfru19092_t",39.9331835774593,32.5071829117751,38.1193794895672,23.3808548414219,27.0638972126479,31.4216000906146 -"Tfru19093_t",2.68610906986987,0.37173927793266,1.75480237186719,0,0,0 -"Tfru19094_t",0,0,0,0,0,0 -"Tfru19095_t",0,0,0.208489095007014,0,0,0 -"Tfru19096_t",0,0,1.87100988836269,0,0,0 -"Tfru19097_t",2.87706769765181,1.38561996610218,3.96414882013267,0,0.498040029577441,0 -"Tfru19098_t",2.5586916783182,1.36920822369512,3.30513423201475,0,0,0.312005379829329 -"Tfru19099_t",9.50300264146789,9.50030043056965,8.993251984902,5.22113219128022,6.06486079252791,7.25865002093273 -"Tfru19100_t",16.1957147126918,16.0521476726877,16.5754483135042,13.0207548334129,15.0210569829011,16.3771154794769 -"Tfru19101_t",0,0,0,0.571702919916336,0,0 -"Tfru19102_t",0.661499029696437,0.530972480448698,0.854476960245283,1.36848572956354,0.858824932893532,0.993956022714714 -"Tfru19103_t",2.47410232413091,3.18611307273016,2.0198042528979,2.33528580466527,1.77413677282266,1.71602958906131 -"Tfru19104_t",5.04069587858047,7.08038011656518,4.65556475583911,6.19507823623476,3.11218778288526,3.63905005503702 -"Tfru19105_t",7.38228266884424,5.82369205226778,17.1646250537848,169.924434846278,143.023479384592,108.130975195438 -"Tfru19106_t",56.4799492483718,67.8891368076399,54.7481093807608,65.1741328704635,54.5353832387393,42.1534025160631 -"Tfru19107_t",6.55843090037322,5.01364349568659,3.22731818442084,3.87652834917255,4.05467533373526,2.74193575433655 -"Tfru19108_t",0.655307151103334,0.736403330918708,1.12863831462455,0.677838095376635,0.453752538647857,0.479446644511527 -"Tfru19109_t",0.114455554184533,0.183742520482247,0,3.19655147593554,3.76447695380943,3.60081413151804 -"Tfru19110_t",1.51279189864551,2.42857761165611,2.77918716801667,9.18018998415492,15.799766892696,17.6352332515057 -"Tfru19111_t",0.115876381753721,0.18602346211582,0.29936158331352,6.11288418647106,6.0176974608264,5.34110175043006 -"Tfru19112_t",1.77832184406714,2.31341221591115,2.11228367788128,5.64525335812287,6.103716858837,4.93515078897923 -"Tfru19113_t",44.3288796581255,48.3799529611217,44.4541335561594,38.3834042096687,53.6535344884959,53.6707671335009 -"Tfru19114_t",50.509306279766,50.6785543839301,66.1319734917034,58.6433915398853,125.130265836126,97.0997110754127 -"Tfru19115_t",16.9229535942484,18.1924923606973,18.9972563511607,44.6997649902939,42.1112551627675,37.1443527008326 -"Tfru19116_t",11.9069825345359,18.0530643352557,15.6654109378302,31.1330503475705,37.7882970473154,23.9568540268165 -"Tfru19117_t",165.123843999052,170.410778688242,143.978666260312,147.685227194154,182.321905211943,174.403322463023 -"Tfru19118_t",0,0,0,0,0,0 -"Tfru19119_t",8.37839337073735,9.63335785956923,10.9201080705561,4.9188024807897,4.70386054889395,9.60909291086229 -"Tfru19120_t",0,0,0,0,0,0 -"Tfru19121_t",0.486734512001434,0.781384762653355,0.167660987178294,4.32983810495161,3.87582484199615,3.63235000132707 -"Tfru19122_t",0,0,0,0,0.530757987722596,0 -"Tfru19123_t",3.45055193780463,5.48285832912616,4.60877989398573,9.54211948145372,11.0929754115122,10.4073278163691 -"Tfru19124_t",38.1632504236148,32.0720328739317,31.0998352177079,27.0234209462897,27.9327572686226,34.386702677257 -"Tfru19125_t",0,0,0,0,0,0 -"Tfru19126_t",7.39897215670862,8.04338617400926,6.82317432147782,6.50837387888123,6.75704239851231,8.31184928303998 -"Tfru19127_t",16.5832106452657,21.2841223250001,18.4851278273503,12.9738754812279,12.0218279684596,12.4408237323931 -"Tfru19128_t",26.538006744168,22.7130930314106,22.6811735597236,16.8671400007289,17.2271619745589,22.720433627543 -"Tfru19129_t",24.1487317845051,18.1551744276497,24.4569525638896,10.026789672379,12.364297414451,15.5528997536381 -"Tfru19130_t",7.54780728805973,8.1328494820289,9.04321449592924,14.8508766306395,10.3674035844478,7.65312024205386 -"Tfru19131_t",0.131061430220667,0.420801903382119,0.112863831462455,5.55827238208841,8.96161263829517,13.3286167174204 -"Tfru19132_t",0,0.14723472711132,0,0.189735466871801,0.952583113340424,0.402609562181513 -"Tfru19133_t",121.697274762377,173.580504235976,129.430252865636,210.459950203864,341.04637528739,306.832922150636 -"Tfru19134_t",19.2684350393228,16.9511746556457,20.0444093781331,0.797237099332887,0.133419897831778,1.01501933658238 -"Tfru19135_t",119.44059035175,109.33169781291,132.180518647266,36.1732029328888,25.1491491627269,23.275217459886 -"Tfru19136_t",1.73814572630581,1.20915250375283,1.29723352769192,22.1741877352381,24.3716747163469,21.5339657874482 -"Tfru19137_t",22.3385256274443,22.4309573518437,19.236869209276,15.1325411044385,11.828320869299,17.1768884603433 -"Tfru19138_t",7.03422487602998,6.74794093771051,8.76619294908321,8.93242029810754,8.81079937961933,8.70301732054906 -"Tfru19139_t",0,0,0,0,0,0 -"Tfru19140_t",0,0,0,0,0,0 -"Tfru19141_t",46.0941885880759,39.9826972859077,57.6204811977403,33.8367176296801,41.1830618783732,42.9711476128509 -"Tfru19142_t",25.1819517274616,22.0815003833955,23.0522243573813,14.2277703999333,16.9421425678703,18.6562713075026 -"Tfru19143_t",0,0.452573859174368,0,0,0.488012377975268,0 -"Tfru19144_t",5.30075210787711,7.39339110507543,6.67806608930159,8.20758310734821,6.55628236015223,5.76945644329388 -"Tfru19145_t",0,0,0,0,0,0 -"Tfru19146_t",0,0,0,0,0,0 -"Tfru19147_t",57.5735449202624,53.7581788247007,72.3457159673959,33.4226322412458,60.0016337731269,45.1316872850788 -"Tfru19148_t",0,0,0,0,0,0 -"Tfru19149_t",0.948198383424915,0.152220101618475,1.46977752529775,2.5500789384982,5.41660691310277,7.07611298226922 -"Tfru19150_t",0,0,0,0,0,0 -"Tfru19151_t",0,0,0,0,0,0 -"Tfru19152_t",0.313861930652979,0.0839769676425711,0,0,0.181105465300919,0.229632851157077 -"Tfru19153_t",0.0976864846179621,0.0784110523453309,0.0841229255435278,0.202090334482057,0,0.0714709997981136 -"Tfru19154_t",6.08351004207033,8.60358512285666,7.73350756893259,13.1846521668984,12.536869710055,11.4452180366359 -"Tfru19155_t",0.375046324872533,0.344048494984615,0.599805043097347,0.387941267086092,0.556483502436115,0.627194488024262 -"Tfru19156_t",0.0576598330620779,0.138847299279996,0.198615555161109,0.178926926205802,0.149719651993794,0.0421860396886601 -"Tfru19157_t",0,0,0,2.45650441914586,2.31245441295008,0.977359608546642 -"Tfru19158_t",1.88082933068049,1.50970533618224,1.07978680547057,3.24249417261927,2.17056251693757,5.50433371572609 -"Tfru19159_t",8.66923627205359,11.7038367520486,7.83962119970844,91.2164347638471,46.2962246199369,31.4096405092978 -"Tfru19160_t",4.636024136217,5.86378304495518,6.04897290697608,13.659684481212,12.7066834970976,11.8202038127649 -"Tfru19161_t",0,0,0,0,0,0.337720108936141 -"Tfru19162_t",0.356101914961981,0.238196767986523,0.306657927096152,0.245563670299639,0.565066963971395,0.455940041099941 -"Tfru19163_t",3.52073007555618,4.24791979416429,4.09971769451721,4.21438778709024,3.58394541052337,4.37416082053821 -"Tfru19164_t",0,0,0,0.11839079540502,0,0 -"Tfru19165_t",0,0,0,0,0.183852956557065,0.0777055117906166 -"Tfru19166_t",1.14925276021132,2.02946253129092,1.97936295396536,4.39843669166831,7.65932423052061,13.369281138706 -"Tfru19167_t",0,0,0,0,0,0 -"Tfru19168_t",0,0,0,0,0,0 -"Tfru19169_t",0,0,0,0,0,0 -"Tfru19170_t",0,0,0,0,0,0 -"Tfru19171_t",13.5834001106734,12.9178419101078,15.6388806045595,9.62148885961148,10.4789722919194,9.61404274964432 -"Tfru19172_t",0,0.166914616378675,0,0,0,0.152141237194004 -"Tfru19173_t",0.913156269254863,0.439783728371639,1.49409630802309,0.566731590177943,0.711331085722686,0.534478781098937 -"Tfru19174_t",16.4761730306071,14.8964100522434,14.7342029287123,4.49476778416989,4.85803701264632,5.36494595467305 -"Tfru19175_t",0,0,0,0,0,0 -"Tfru19176_t",0,0,0,0,0,0 -"Tfru19177_t",0,0,0,0,0,0 -"Tfru19178_t",0.0826873787120546,0,0,0,0,0 -"Tfru19179_t",0,0,0,0,0,0 -"Tfru19180_t",34.616003107094,30.8847590331356,28.8924253942842,19.1425345356459,21.0881672111765,21.819609193516 -"Tfru19181_t",0,0,0,0,0,0 -"Tfru19182_t",0,0,0,0,0,0 -"Tfru19183_t",9.74658375274493,13.5697812970523,12.2556911033127,11.2415342117432,9.92909783812776,8.39307285103515 -"Tfru19184_t",0,0,0,0.436677607172285,0.730792405209237,0.247095717894986 -"Tfru19185_t",5.27087669342048,4.52773121192742,3.86215434718827,3.92168695313007,4.40204891305179,5.54775443672314 -"Tfru19186_t",7.13295651833045,6.36165141669666,5.46005403527803,8.1980041346495,9.60371528732516,5.50866102217536 -"Tfru19187_t",2.10025941928619,2.04708854515846,1.93783167769912,1.86211808201324,1.81784610795798,1.97566263727643 -"Tfru19188_t",0,0,0,0,0,0 -"Tfru19189_t",0,0,0,0,0,0 -"Tfru19190_t",1.49022751437674,1.8273217206921,1.43929452480559,1.33581148888233,1.53171351401959,2.15793071362356 -"Tfru19191_t",0.0983152449051462,0,0.0423321919060468,0,0.0425475976116554,0 -"Tfru19192_t",6.69189222937256,6.53284763350766,8.09898219656957,5.98657266409711,9.47080211250442,9.19660206228902 -"Tfru19193_t",7.05720971872823,5.96996825100065,6.98711140128134,4.63343935900009,4.64520031610992,5.0396402171527 -"Tfru19194_t",0,0,0.0532737230982577,0,0,0 -"Tfru19195_t",0.510701378549832,0,0,0,0,0 -"Tfru19196_t",5.0123838241788,6.4033496360666,3.9516567545237,9.71222372187299,9.34892284092673,10.1753082233583 -"Tfru19197_t",0,0,0,0,0,0 -"Tfru19198_t",34.1245689717649,37.2972925978897,30.2827642943329,49.3708475549706,32.3029644670763,20.1801214120231 -"Tfru19199_t",22.8403211847373,27.8163208195061,23.512357689416,32.0439486613112,20.677999478022,16.1345782044241 -"Tfru19200_t",9.7441502838356,9.82964885043819,11.6796375307926,7.49127964028316,6.15446331220882,7.89989797141532 -"Tfru19201_t",0,0,0,0,0,0 -"Tfru19202_t",0,0.443641480374891,0,0,0.478380554725775,0 -"Tfru19203_t",3.51168777501227,4.55338779857452,3.02409745201492,2.79417504267796,2.57187230707881,1.58109478653062 -"Tfru19204_t",0,0,0,0,0,0 -"Tfru19205_t",0,0,0,0,0,0 -"Tfru19206_t",0.0774289186833617,0,0,0,0,0 -"Tfru19207_t",0.4922483013952,1.44876670934928,1.13040181199115,1.69724304350165,0.568076908736868,0.120048944973394 -"Tfru19208_t",0,0,0,0,0,0 -"Tfru19209_t",10.1620365591308,8.81549952889205,11.251362287948,9.40152780700901,10.43451860616,7.11165981462221 -"Tfru19210_t",7.30525015403891,4.18841646068227,5.39222727707582,8.09616557397062,5.41966541502999,4.19947613720593 -"Tfru19211_t",7.54272732622903,5.84562891788102,10.7510661499592,13.7208700779923,8.77969018084967,10.0855980520063 -"Tfru19212_t",6.19287215217669,6.22617618920781,5.60234881653993,4.46464648107419,5.14357052140008,3.93596064413141 -"Tfru19213_t",141.574314412063,159.95469996261,111.979100839209,58.0509856147928,70.0383553613899,70.8632333239514 -"Tfru19214_t",0.934059126955269,0.92616324745368,0.898998432558041,1.59134573392019,2.28271061300151,2.09037482731958 -"Tfru19215_t",15.4599480004079,16.4322292306302,19.9700510203331,12.6526122458332,17.3513319101348,19.9497312479952 -"Tfru19216_t",14.5217936990645,14.7390375251409,17.4146473435894,42.8907864890383,34.6948914318837,22.1713251516577 -"Tfru19217_t",22.863583551723,37.9846958639976,41.6674693230157,128.148295011122,109.991194886571,60.6870210943982 -"Tfru19218_t",16.0893455723562,18.6638722411562,12.0930680197559,18.102405097998,11.8797502897212,15.7470333868502 -"Tfru19219_t",33.0332064004235,36.6628765140887,30.9049660443407,43.8712609613476,42.3575792145548,29.2406595290535 -"Tfru19220_t",0,0,0,0,0,0 -"Tfru19221_t",29.6280870751212,21.3110466236883,37.8296301051086,11.2769491989606,9.88020174706931,5.67730705266542 -"Tfru19222_t",7.23660254100174,6.28393664606199,7.53483181180009,5.10369090606605,5.01082090838847,6.11281331084571 -"Tfru19223_t",41.8139659803259,36.4284184917246,43.8026413824069,29.6695597285873,23.7230296334425,16.8819056579277 -"Tfru19224_t",0,0,0,0,0,0 -"Tfru19225_t",48.5157078689154,46.1948457323762,48.3176539538487,41.8983580495765,39.5933946694869,40.189761214988 -"Tfru19226_t",18.3772699170472,23.7070916053317,28.260045297154,46.165010778957,57.3757677770944,58.1036893617258 -"Tfru19227_t",0,0,0,0,0,0 -"Tfru19228_t",0,0,0,1.24141205467358,0,1.31710842484891 -"Tfru19229_t",0,0,0,0,0.421122650492195,0.355975249959716 -"Tfru19230_t",76.422342740478,131.821625936428,61.410510973278,64.0728802413159,69.2280149430256,91.0354215433561 -"Tfru19231_t",7.24962642190156,10.2690616777134,4.0396085057958,6.61666323558005,4.06016389594675,4.3680753176106 -"Tfru19232_t",0.173575158618693,0,0.149474619767425,0.718172263035411,0,0.253987850522222 -"Tfru19233_t",0,0.648399010801338,0,0,0.699171498140063,1.77303036436696 -"Tfru19234_t",0,0,0,0,0,0 -"Tfru19235_t",23.5673614620037,23.9265421464606,20.0251371198867,18.4822167841613,23.0868922258978,25.7911394183274 -"Tfru19236_t",32.7040395288849,31.9104979098231,34.2350263060178,45.1563634888211,41.5507681818966,34.6838551877417 -"Tfru19237_t",0,0,0,0,0,0 -"Tfru19238_t",0,0,0,0,0,0 -"Tfru19239_t",3.73545472527556,3.65802028104585,4.60001662220678,14.103191639377,14.5169035566586,27.439270816222 -"Tfru19240_t",12.5524445347985,16.1395183947116,10.4737092236209,12.2220175809351,19.1161396084439,22.8274637594525 -"Tfru19241_t",0.133561807267802,0.235521716462955,0,0.13815396474926,0.346806888640631,0.195437392134746 -"Tfru19242_t",0,0,0,0,0,0 -"Tfru19243_t",0,0,0,0,0.065923702917787,0 -"Tfru19244_t",0,0,0,0,0,0 -"Tfru19245_t",2.97381861858554,1.79027002772721,4.48159298204647,3.07606523906182,2.57394136739832,1.63181573213358 -"Tfru19246_t",2.08454424330281,3.04369328171594,1.94294866889977,3.48276492623684,2.66240968326232,2.20076877587244 -"Tfru19247_t",2.52856785122907,1.94679037825447,2.13304322262704,1.01417569577298,1.02728404135217,1.01938367033919 -"Tfru19248_t",0,0,0,0,0,0 -"Tfru19249_t",6.70940986959733,5.95844054525607,7.92913964298978,4.90974776084488,4.72609098585506,3.31608436616396 -"Tfru19250_t",0.193572296708404,0,0,0,0,0 -"Tfru19251_t",0,0,0,0,0,0 -"Tfru19252_t",17.9370768257493,18.0988599110725,19.8099849512756,17.6627927441465,24.9542686472398,33.0309820900498 -"Tfru19253_t",0,0,0,0,0,0 -"Tfru19254_t",0,0,0,0,0,0 -"Tfru19255_t",11.1955066631415,10.0478045250911,15.0309042618593,11.5804335425657,20.753584107642,16.4465794918429 -"Tfru19256_t",3.26765580917801,3.04592996312603,3.63090167967046,3.38000521787431,3.92308068467719,5.861160033632 -"Tfru19257_t",0.112614446074326,0.271180315081707,0.19395634307623,1.04837747244713,0.877244770596342,0.906321257493505 -"Tfru19258_t",23.7989735896452,21.2043032772954,26.0280621185952,14.7703417270172,18.5389404777584,16.3674663560326 -"Tfru19259_t",0.879689809125105,0.500876917503955,0,0,0,0 -"Tfru19260_t",0,0,0,0,0,0 -"Tfru19261_t",0,0,0,0,0,0 -"Tfru19262_t",23.2555542373882,23.9111653665708,21.5786834575093,20.6630743069646,18.6551310959692,20.0548988408473 -"Tfru19263_t",40.7911656000092,34.6912251243447,40.1455996119865,30.6406327945917,40.3498789280846,27.3572809631855 -"Tfru19264_t",26.3307690954805,23.8506423784905,22.9175690849858,18.0213038541147,14.6891725770564,17.9444973318619 -"Tfru19265_t",0,0,0,0,0,0 -"Tfru19266_t",0,0,0.0681863486969217,1.14663884409235,0.959466371778008,0.46345002696609 -"Tfru19267_t",0,0,0,1.40159425527879,2.63880886639061,0.743528949512634 -"Tfru19268_t",29.7496700351979,32.2893842672861,31.2063328600945,23.6635295547983,28.2036535742679,29.8534529705919 -"Tfru19269_t",0,0,0,0,0,0 -"Tfru19270_t",0,0,0,0,0,0 -"Tfru19271_t",10.7521813274037,9.32101349210879,10.3086472410934,8.1560348302059,8.68595409945791,7.6044655928539 -"Tfru19272_t",7.27101937878569,7.10022020851381,6.62039076658987,4.74254991119139,4.36924422860903,4.84537130935612 -"Tfru19273_t",21.368493046396,16.6821562934004,17.1411452466394,23.3143239536617,20.7753840909483,14.7773140349131 -"Tfru19274_t",103.77240322442,87.4189790427437,176.55353482208,28.1858426092643,271.640838101078,211.274200460202 -"Tfru19275_t",9.83100153708428,10.7606656941997,14.6230702487366,5.54673471237987,5.8016365147595,5.23106892139385 -"Tfru19276_t",41.2310869508753,40.0284239286077,39.1551013674376,41.468701419034,50.4271568259924,49.5416728571483 -"Tfru19277_t",58.1832526883408,59.6420133781583,54.8314848666521,64.1880043125885,56.6607879041647,55.0818245899382 -"Tfru19278_t",3.29691885585622,3.52849735553989,3.31234019327641,3.0945082467565,2.43084072575776,2.18879936881723 -"Tfru19279_t",7.73927369456592,9.90345200516462,5.60220497478126,7.19322872802623,4.07741183093378,7.71390603962551 -"Tfru19280_t",0,0,0,0,0,0 -"Tfru19281_t",0,0,0,0,0,0 -"Tfru19282_t",360.803013631066,366.703568721985,354.394408381147,89.454692175146,104.96739723222,108.890853797544 -"Tfru19283_t",0,0,0,0,0,0 -"Tfru19284_t",0,0,0,0,0,0 -"Tfru19285_t",0,0,0,0,0,0 -"Tfru19286_t",12.3169915387865,12.2048507563602,24.432223592642,19.1546490943863,20.0716678451983,24.1758425404054 -"Tfru19287_t",0,0,0,0,0,0 -"Tfru19288_t",0,0,0,0,0,0 -"Tfru19289_t",0,0,0,2.78427998772076,3.06550777058681,2.2803226242501 -"Tfru19290_t",0,0,0,0,0,0 -"Tfru19291_t",9.80121062333554,10.4896563359754,9.44513514019276,9.17265573732449,9.19022199023199,9.04902269666116 -"Tfru19292_t",5.85318198817462,5.64577940130491,5.99351218348472,5.16407063727716,5.38542231046098,5.61390476165979 -"Tfru19293_t",8.6804071010878,9.53038847627217,6.70185967394281,9.39168027111984,11.8311124365911,11.5338235778714 -"Tfru19294_t",0,0,0,0,0,0 -"Tfru19295_t",5.35271299083736,8.52021607666004,5.8595342306237,4.50447570594996,4.79000486330179,9.16001971494614 -"Tfru19296_t",0,0,0,0,0,0 -"Tfru19297_t",5574.19489529817,7279.72774763504,5938.89418075357,15042.3374541474,11393.9802029411,3904.62179718418 -"Tfru19298_t",5.63422886131863,8.76231771777584,6.0649103206232,14.5178307950973,21.4222822782114,22.1200604524868 -"Tfru19299_t",2.00282887939174,1.28196667206428,1.03438049310486,0.830444187073339,0.863530408425193,1.91666784318026 -"Tfru19300_t",10.6378603015819,7.25164224889827,8.7884826174919,7.3550938324088,7.3316733326062,6.84583590388657 -"Tfru19301_t",0,0,0,0,0,0 -"Tfru19302_t",0,0,0,0,0,0 -"Tfru19303_t",36.4367323814047,38.6867572163653,34.4827721092083,32.3000205175116,35.2573180401763,30.9710686405504 -"Tfru19304_t",0,0,0,0,0,0 -"Tfru19305_t",37.3287327007488,32.4972168191693,32.1131206866876,46.3037656807382,34.4124744503909,27.3708856515733 -"Tfru19306_t",0.330749514848218,0.265486240224349,0.284825653415094,0,0,0 -"Tfru19307_t",0,0,0,0,0,0 -"Tfru19308_t",7.16590869160653,7.11043387663018,6.88416157084026,5.58715241066982,5.578987626652,5.0584189827109 -"Tfru19309_t",0.375046324872533,0.301042433111538,0,0,0.324615376421067,0 -"Tfru19310_t",0,0.115468330508535,0,0,0,0 -"Tfru19311_t",33.6041507003542,36.6838267202611,36.4622408386624,34.0643467719582,51.1905463875675,29.0115082309496 -"Tfru19312_t",7.83695726014756,6.44753655847265,6.45088031365838,4.37217101440769,3.931885583551,4.35813136817289 -"Tfru19313_t",6.31591915995434,4.65298129365393,8.04669137433868,3.40077864617592,2.99542098118719,2.40542973573878 -"Tfru19314_t",7.14051771344479,7.69081171702816,6.3686818479571,1.8088224213832,1.79735001133746,1.91911721921041 -"Tfru19315_t",5.98091297531783,5.9351207479653,5.45472355296663,3.47177717904141,2.51189308999901,3.58192298177149 -"Tfru19316_t",10.9970664872496,10.9977390156456,11.6436238145012,10.1444143867045,10.4857732579207,11.5279961991962 -"Tfru19317_t",4.00645612024787,5.52733647680201,6.36124775272519,2.20161005225609,1.95059492955252,1.2824304583745 -"Tfru19318_t",4.35113505190764,2.95525320791566,4.03521921730707,3.80831586494076,1.73817954545783,2.69368788083727 -"Tfru19319_t",10.6043953848952,10.9709489228194,10.75546408492,12.7971649395019,7.0368236437083,8.96545052165958 -"Tfru19320_t",36.7711033975973,31.4299696096513,34.5182635333577,24.0548061383099,24.3717538133167,28.3573028378793 -"Tfru19321_t",19.7716035503587,18.120094224582,19.9619378593641,10.421592632127,11.2775304082515,16.9597009079094 -"Tfru19322_t",45.5787641140614,45.3414835972411,43.6233869415572,36.2510848503374,38.418956550276,37.3377303721429 -"Tfru19323_t",10.4748454664651,9.08738669624351,8.20039601645976,7.5516627507338,4.94527404683782,4.56730293420187 -"Tfru19324_t",0.632185109484136,0.0563825292784152,0.604897290697608,0.0726578961766594,0.0607975286942467,0.0513921904902824 -"Tfru19325_t",16.4822701132854,15.7970143524415,16.1003643148608,7.37940401461568,14.0530416544921,14.1288644110414 -"Tfru19326_t",2.80242176035221,1.29968208335182,2.46694064825942,1.86809968198017,1.67096306439428,1.68584671132393 -"Tfru19327_t",3.59952647222728,4.69506423607161,4.15143741205627,5.71790403148162,3.67185441852261,3.29193128373867 -"Tfru19328_t",4.0988188226715,4.15584330258746,4.14010700327208,4.04847878432324,4.16117377610336,5.16342578878962 -"Tfru19329_t",0,0,0,0,0,0 -"Tfru19330_t",0,0,0,0,0,0 -"Tfru19331_t",0,0,0,0,0,0 -"Tfru19332_t",0,0,0,0,0,0 -"Tfru19333_t",0,0,0,0,0,0 -"Tfru19334_t",0,0,0,0,0,0 -"Tfru19335_t",0.267833294701745,0.143323071236949,0,0,0.0772729482660139,0.13063774670856 -"Tfru19336_t",0,0,0,0,0,0 -"Tfru19337_t",0,0,0,0,0,0 -"Tfru19338_t",0,0.426794335550535,0,0,0,0 -"Tfru19339_t",0,0,0,0,0,0 -"Tfru19340_t",0.428624371282895,0.344048494984615,0,0.886722896196782,0.185494500812038,0 -"Tfru19341_t",0.114925276021132,0,0.098968147698268,0,0,0 -"Tfru19342_t",47.9146635578598,47.4342145556736,52.5400446759691,43.284214986214,58.6134410474663,59.1279853082645 -"Tfru19343_t",18.2908668413784,12.2916768638554,14.8354506161067,22.8796955899686,16.3836256818491,17.2724598499441 -"Tfru19344_t",0,0,0,0,0,0 -"Tfru19345_t",0,0,0,0,0,0 -"Tfru19346_t",0.348229541021544,0.139758559620693,0.449817923113579,0.360202461460247,0.0753511340086208,0.318471812571905 -"Tfru19347_t",0.168357468479855,0.409166653201438,0.362453486810791,0.435364949034492,0.145719126890419,0.369529417793854 -"Tfru19348_t",5.20188091464071,6.68071876329259,6.71941634372451,3.76651335474299,3.82704443780627,4.75735757170106 -"Tfru19349_t",0,0.561446099122316,0.785246862296312,1.3036486215382,0.498796297942377,2.27002209217582 -"Tfru19350_t",0.204757977668567,0.576019286006044,0.225172738580342,0.398987975282087,0.346360326876739,0.11670580979692 -"Tfru19351_t",2.22716577455804,2.51325648727602,3.87975371672118,1.30759010856174,1.03830931113137,2.5282351472175 -"Tfru19352_t",29.0169594041427,33.955502132864,31.8753744624414,31.8606303882885,30.2640626627779,33.9000841371289 -"Tfru19353_t",11.7223781541555,9.28869389321612,9.83591129432017,9.79360851720739,9.69084329465969,10.2808284324979 -"Tfru19354_t",7.84372068136364,8.28421437555093,5.68811526033879,5.55127749265209,3.21584569466767,3.32243566629069 -"Tfru19355_t",0,0,0,0,0.749627261013599,0 -"Tfru19356_t",0.104231236689141,0.0836643982841,0,0.431259770855011,0.1804313754797,0.0762593794371932 -"Tfru19357_t",17.8664602183621,7.75027614222357,24.0606792923366,19.267164468493,8.22554799980985,6.22994271543376 -"Tfru19358_t",0.0970096729462441,0,0.0835400877222101,0.301035255752718,0.0839651781966733,0.212927458982833 -"Tfru19359_t",0.838241009914664,0.598079867112945,0.481235361202443,0,0,0.204429245542276 -"Tfru19360_t",270.236162258851,359.555985001099,291.252633864918,595.162061600389,306.901573534376,123.05231659078 -"Tfru19361_t",0.119502669660665,0.0959224822432213,0.102909980039024,0.185417163216112,0.103433633454223,0.218581293834914 -"Tfru19362_t",0.519040280141335,0.773729536823301,0.319266178144015,4.21839047705265,2.18205711105282,1.30199597160906 -"Tfru19363_t",30.2790746107416,27.9869148844852,29.878919022879,25.5047275860195,18.4690046096838,15.1018359229245 -"Tfru19364_t",0.124644475922029,0,0,0,0,0 -"Tfru19365_t",32.9727574802341,33.5055828685644,29.60283993657,22.1328996804358,14.5731295502268,17.7080965679335 -"Tfru19366_t",3.50257855331602,3.18355603084477,2.39525975612595,5.64762565646362,4.85947825303297,5.99199540919317 -"Tfru19367_t",5.51464763723188,3.57887317129248,3.23332808793001,6.3110892165067,8.02289623065252,6.09499894926371 -"Tfru19368_t",261.26126037597,251.094920955688,288.880850420463,179.827676817604,170.796242649005,185.224507580106 -"Tfru19369_t",5.38911896609428,6.82505895396423,8.14727236126483,18.2716742188517,22.5967470582944,27.2496558888146 -"Tfru19370_t",104.308973393599,136.750627492544,90.5331864620402,161.296876321873,153.145917921823,151.602368230982 -"Tfru19371_t",1.72624061859109,1.38561996610218,0,2.380790241843,3.48628020704209,4.20993560454568 -"Tfru19372_t",66.1599425839223,95.2938907322649,66.1237403951925,131.886946786773,174.120841369331,131.636806036256 -"Tfru19373_t",19.2079774689701,27.0271491154076,16.053631762047,30.6374264323915,42.0329119138071,45.9962623807676 -"Tfru19374_t",32.8064411701755,34.0733664173124,33.1017764393939,19.6456025576912,13.9866014956152,17.3082906429076 -"Tfru19375_t",0.378851755451849,0.228072733992056,0.489373501470804,0.391877536988882,0.245931829712466,0.485068115878967 -"Tfru19376_t",8.88974069991494,9.93756916039773,8.77767966585486,7.51037099005895,6.4858332051243,5.34626836162953 -"Tfru19377_t",0,0,0,0,0,0 -"Tfru19378_t",32.0851438961063,31.8505115947381,27.6301904156067,33.5089637636577,29.5148445572513,35.8357175371501 -"Tfru19379_t",6.32954893483398,4.15685989830654,6.44174183271559,1.1903951209215,5.47844032535185,4.63092916500025 -"Tfru19380_t",5.31210550764045,6.04382271167716,4.19385599690925,11.8394737103807,14.7197675299076,14.2617817626574 -"Tfru19381_t",0,0,0,0.539744371598041,0,0 -"Tfru19382_t",10.2657314736037,12.0420968114014,11.5924791529116,28.659693765271,37.5199725419872,32.5082227462504 -"Tfru19383_t",6.54437441670248,5.99202501817361,6.40454431151542,12.6880634535169,11.9117512226045,11.7488874569435 -"Tfru19384_t",0.0460410903486554,0.220224802194057,0.0790399641157195,0.571844472857605,0.631891237657695,0.640447965388451 -"Tfru19385_t",0,0,0,0,0,0 -"Tfru19386_t",0,0,0,0,0,0 -"Tfru19387_t",0.622875824070046,2.18737041296984,3.48654052855103,1.44965633817528,4.31296203556295,20.3934118793728 -"Tfru19388_t",0,0,0,0,0,0 -"Tfru19389_t",0,0,0,0,0,0 -"Tfru19390_t",42.2875762068042,41.9901069055341,47.1159074577826,28.9906226885983,32.6906779078157,38.6351804622946 -"Tfru19391_t",562.724678891506,711.830404252566,779.587456545624,0.187281991007079,0.313421742751375,0.927274609449664 -"Tfru19392_t",0,0,0,0.190986469950076,0,0 -"Tfru19393_t",0,0,0,0,0,0 -"Tfru19394_t",1.13018444087149,0.755980997948258,2.10873163133776,1.16904274207109,1.63035525377397,1.51595439033667 -"Tfru19395_t",0.221858389361217,1.00912815606403,0.57316148213636,0.30598184446227,0.640086657731682,0.162319700245716 -"Tfru19396_t",40.6138493382471,24.4632589178335,59.2801253077002,33.9234445540267,41.8620712558146,45.5171066064422 -"Tfru19397_t",22.3207486401126,23.0656444984874,22.3999287932641,7.27186977634181,8.36665572700324,5.33640163764576 -"Tfru19398_t",0,0,0,0,0,0 -"Tfru19399_t",0,0,0,0,0,0 -"Tfru19400_t",9.95750150455591,9.79686997513729,9.63638276551263,13.7248173938951,13.7436696539516,15.8083324179464 -"Tfru19401_t",7.03751847300084,3.17749500080032,30.6806439443044,5.45961322475087,5.32981057830611,7.07974511089168 -"Tfru19402_t",69.0382125303578,98.8134272965058,80.9412256079213,67.1099808170158,38.1567599055003,73.0277749337609 -"Tfru19403_t",3.01621204881649,1.70898006378842,3.5141530459366,1.74348261110708,0.99818371292307,2.01205581269029 -"Tfru19404_t",14.5142378609528,11.7490294246284,12.8167373822247,15.2677324440324,12.8819548499511,16.2886908178248 -"Tfru19405_t",32.0378555484334,35.145428462242,36.172857983717,44.5540682334807,46.2164264735079,38.545884975864 -"Tfru19406_t",8.53117423324509,9.1690996494695,9.58798645351534,14.8072040256475,11.8895270400005,14.3876904240746 -"Tfru19407_t",15.48794655563,12.5260560995237,16.2676819423978,22.4529135587258,21.3266861827472,15.7954902347116 -"Tfru19408_t",12.8719761834364,14.9337719265082,11.6436238145012,16.1490126082465,16.2591900814782,17.3579439338011 -"Tfru19409_t",11.6126654716472,12.0885116985091,16.7973314611213,20.9270433838925,18.2962480844151,15.9304690694715 -"Tfru19410_t",0.826331574801123,0.884373836288323,0.711597206237055,3.41897090468005,6.19855722057802,13.3006358968555 -"Tfru19411_t",0.878157248482029,1.6447196345606,1.26037832695878,1.21113371187853,1.77350839800778,2.1416397152048 -"Tfru19412_t",2.23431853115552,2.86951085178658,3.07854110499719,1.96446854396787,1.93387883825317,2.04338629741947 -"Tfru19413_t",2.00189065437303,2.43802318878169,1.07002702334742,1.07106216713991,1.31446555053658,2.12122638677721 -"Tfru19414_t",6.1471007393742,6.5788785382424,3.90053924343033,2.45413936354334,4.94715500496907,5.28646856016342 -"Tfru19415_t",0,0,0,0,0.632294298420166,0.267239390549468 -"Tfru19416_t",145.756200900677,189.63864447373,128.157486118276,65.2673719732824,92.7647649082418,110.003991191414 -"Tfru19417_t",14.1601200666806,14.1122154164504,14.9765452738014,16.9079198396979,17.6026727195931,19.2599791537405 -"Tfru19418_t",3.86090242183673,3.61558367325109,4.30995754699606,4.4373877699039,3.96058386074248,3.60943755576176 -"Tfru19419_t",0.0862529535641144,0,0.222830747332959,5.44233005489154,5.22584096743566,2.14559757094132 -"Tfru19420_t",0,0,0,0,0.207951890328844,0 -"Tfru19421_t",5.63575872795935,4.52371455838448,5.30621530351483,5.36316656894691,6.37384324078289,4.89301460156316 -"Tfru19422_t",0,0,0,0,0.855456991980225,0.361559175449281 -"Tfru19423_t",5.75877582707503,4.62245800519652,7.87634810935773,7.00797127639392,9.3824315249444,3.71764474756317 -"Tfru19424_t",0.438696484446201,0.880332963668206,0.188892208792256,0,0.759413517684794,0.802415924626341 -"Tfru19425_t",1.18602884853808,0.793335353140995,1.02135128424613,0.81787147131562,0.513274195188135,1.30161303161741 -"Tfru19426_t",48.2263359546994,47.0995867387588,49.1162265987436,51.2744362867153,35.40922987539,28.7662306059469 -"Tfru19427_t",0,0.0138694991807866,0,0,0,0.0126419292115133 -"Tfru19428_t",0.351753147682264,0.329403025205089,0.151456488417517,1.45538887079891,0.964105402685319,0.386033174066573 -"Tfru19429_t",0,0,0,0,0,0 -"Tfru19430_t",0.556360111069188,0.714527205477982,0.958221403542171,0.460391225575018,1.05940700331326,0.732696077400529 -"Tfru19431_t",1.45580111903184,1.93807199541629,2.17098302353669,1.76295203030839,1.90543463556035,2.10425606337134 -"Tfru19432_t",56.5614417867171,69.2457208519531,60.3733697606591,52.1147238794465,39.8023447683019,28.6025525924728 -"Tfru19433_t",4.0486928564553,5.22290486362187,3.11298261477771,2.24351576146174,2.62821124042117,3.38533892331168 -"Tfru19434_t",11.7341405243683,15.6708807565057,11.1937682141063,30.4486015096205,33.5332960552874,31.1950905681134 -"Tfru19435_t",0.216521589617133,0.438591902549493,0.352905931548458,0.141298933052495,0.374813630506799,1.3992046139338 -"Tfru19436_t",0.521803582431351,0.817933035655188,0.0964463415411936,1.47793418174163,0,0.509648175705258 -"Tfru19437_t",3.34812836127524,2.8354124595807,4.39100140789544,3.24083439502122,2.71181430364481,2.56198055583439 -"Tfru19438_t",7.63730697922249,7.83669599072736,7.45832123375607,2.76903532345612,2.58962144713789,2.59224713419587 -"Tfru19439_t",0,0,0,0,0,0 -"Tfru19440_t",0.100792293667004,0.0404520126076692,0.0433987498304942,0.104257761040533,0.13085874802337,0.110614984690542 -"Tfru19441_t",0.442936960130654,0.711073866611437,1.39859907845654,25.9627477164119,19.9356058236516,17.7157641678839 -"Tfru19442_t",0,0,0,0,0,0 -"Tfru19443_t",0,0,0,0,0,0 -"Tfru19444_t",5.22552582788908,4.51707689108988,3.11536575936318,6.23675912636014,4.17495756851593,8.23455346956257 -"Tfru19445_t",0,0,0,0,0,0 -"Tfru19446_t",5.83970062907554,6.2301082505793,5.76092150906535,8.02848975087099,7.10183609268228,7.92312473784807 -"Tfru19447_t",5.17098641987876,3.98458098568132,4.41747561628551,2.48266799215064,3.02262444068132,1.95184687262622 -"Tfru19448_t",0,0,0,0,0,0 -"Tfru19449_t",0,0,0,0,0,0 -"Tfru19450_t",0,0,0,0,0,0 -"Tfru19451_t",0,0,0,0,0,0 -"Tfru19452_t",8.58500200580315,9.35209193662049,8.44913471148754,10.7830682120968,5.83833786494855,8.97300143446778 -"Tfru19453_t",8.50173990381527,9.549058571286,7.42367751165212,6.884899220505,8.03574416632989,7.39697956338703 -"Tfru19454_t",0,0,0,0,0,0 -"Tfru19455_t",30.7237949335579,39.8821015386166,40.7203029873842,51.3944590635655,55.2625216819225,54.7917104737996 -"Tfru19456_t",8.76181843628593,9.13906398166606,9.40131166782604,10.0323818584762,13.3018075495865,11.4497099732349 -"Tfru19457_t",13.2016306355132,14.1059882943692,13.509455124531,12.3254482571353,10.6844832467734,12.5438897604852 -"Tfru19458_t",3.60559556959002,3.76238440008927,5.58893943096056,13.4264308059324,18.7245951034298,10.2881430610675 -"Tfru19459_t",2.45285771594376,2.95329219051173,1.58421275840391,0.634298130123344,3.18454792633557,0.897300143446778 -"Tfru19460_t",3.16145421869471,3.12975374514354,2.61359335155807,2.13649942174458,1.55059627873987,1.55744381396491 -"Tfru19461_t",45.2750533498819,30.6883016843762,32.0573831232941,34.8636080025633,31.7850936241754,34.9651537934484 -"Tfru19462_t",15.0740719808724,15.3754293714875,14.0575483105211,13.1203943634193,11.8696997508678,13.6648798213566 -"Tfru19463_t",13.7189478513097,15.7591284084701,13.4839389829666,5.66622582370638,8.3077560155956,9.68260896283965 -"Tfru19464_t",7.5125358419867,7.82762096069899,6.22061186306396,6.87419916776456,5.43947072716574,6.71200567321579 -"Tfru19465_t",407.780225005472,283.151371855717,400.293935315521,458.144211914176,413.082473829262,265.255984242065 -"Tfru19466_t",18.2945233083954,20.8676749049694,18.9674298310034,22.2849470559942,38.6487625244934,50.5457655305742 -"Tfru19467_t",4.54665895499539,4.67651448989151,4.46627074370614,5.15201195386131,4.64719973206554,5.04825892509276 -"Tfru19468_t",6.51804644805266,3.48793990097568,0.623669962787562,1.4982559221735,0,4.76884082987267 -"Tfru19469_t",0,0,0,0.314092206604643,0.613249289431607,0.370271444737215 -"Tfru19470_t",0,0,0,0,0,0 -"Tfru19471_t",0,0,0,0,0,0 -"Tfru19472_t",0,0,0,0,0,0 -"Tfru19473_t",6.97345335769258,6.97041712000154,6.34512152572639,3.40246060404403,3.70117453460512,4.90950360398632 -"Tfru19474_t",51.9612714116853,71.8478879639204,58.6277923979882,82.5833256236723,71.4007274909002,47.5903284885949 -"Tfru19475_t",3.80499918631109,2.8130782784201,3.27668320233908,2.07148614606161,3.98669468253001,2.93039617765805 -"Tfru19476_t",0,0,0,0,0,0 -"Tfru19477_t",0,0,0,0,0,0 -"Tfru19478_t",33.6413234416637,29.5394557375286,37.6133700273163,29.2226200481134,26.2220279289513,42.5631940833102 -"Tfru19479_t",51.2021138428085,44.8610264955097,54.3735170534187,43.7238393152022,48.2973008051151,52.6011511987843 -"Tfru19480_t",0,0,0.0464946760716156,0.446780688058019,0.280387574492233,0.35551769822455 -"Tfru19481_t",0,0,0,0,0,0 -"Tfru19482_t",14.9744273038686,15.6718177793129,15.5239093449315,12.6892964363882,11.0998281546246,12.3744784522483 -"Tfru19483_t",5.40066707815613,5.29834682275489,4.65079602647071,2.48282410934715,12.4652304545497,19.3175902311174 -"Tfru19484_t",11.3314391593899,9.89513388836187,10.7589231749988,12.4079870879868,23.8188136279869,24.8107479635131 -"Tfru19485_t",6.60081531775658,5.85411746850745,6.79731726946769,8.68988438272846,9.46878082606682,10.9083595186374 -"Tfru19486_t",14.6750216538937,9.59554291213225,15.406300652535,10.8303760216537,13.843460056677,11.2796527846248 -"Tfru19487_t",12.5503306762223,11.7186273962443,15.439634505245,1.58961299684057,3.2144839713891,3.7478695016084 -"Tfru19488_t",67.0363761273054,59.9599754501549,76.4718974864891,103.089122715258,110.431333064085,83.433560296642 -"Tfru19489_t",40.5328415763272,41.9895227116069,33.5624455519023,11.2878910538535,31.7841958669766,55.2551878026818 -"Tfru19490_t",35.5095406972098,41.0162556288875,41.3936828473462,15.2296942790087,15.3673588507788,21.2276237544707 -"Tfru19491_t",0.954663372402812,0.383144914869231,1.64422081744168,3.94994744669476,1.65258737087089,2.79386635574444 -"Tfru19492_t",1.17223781541555,0.940932628143971,2.01895021304467,0,0,0 -"Tfru19493_t",0.115398869191549,0.185256881914793,0.1987519669435,1.43239852462557,0.998816542834053,1.09759035404246 -"Tfru19494_t",0,0,0,1.38668367809497,1.93387883825317,1.63470903793558 -"Tfru19495_t",4.84256705483084,4.62950228743547,5.20101973600075,7.09148595999862,5.03910708682651,6.84714397029596 -"Tfru19496_t",10.3031594153662,9.60031031974223,11.0442002077215,11.4026784781943,10.9133128265059,9.75217501533437 -"Tfru19497_t",12.2061036673119,12.1470287020958,13.7826901435363,13.4632011563399,15.7932960602428,12.7577588965054 -"Tfru19498_t",13.9071231817599,10.0238993944166,12.7093825348195,9.68804677804187,10.8088146959663,11.6285248320174 -"Tfru19499_t",0,0,0,0,0,0 -"Tfru19500_t",167.546713799357,209.572341297299,190.094605404085,337.352752964606,212.260601345513,96.4558274265977 -"Tfru19501_t",1.96679811839509,2.42444875897185,2.48007889186019,7.3384475138426,8.45085648850029,6.88655352569784 -"Tfru19502_t",0,0,0,0.705220554053708,0.852371484344588,0.498814732585572 -"Tfru19503_t",8.85456413272325,7.10738741824259,8.36904169289081,0.446780688058019,0,0.790039329387888 -"Tfru19504_t",0,0.234959947794371,0,0,0,0.21416397152048 -"Tfru19505_t",2.6321789066772,1.23246614913549,2.26670650550707,9.75626706154893,9.11296221221753,9.62899109551609 -"Tfru19506_t",0.64130058601947,1.54427874079372,2.76128686889081,22.5538983971435,21.092565526724,8.91477966916722 -"Tfru19507_t",0,0,0.195001929831358,1.87382951649131,1.56795351629799,1.82241417274974 -"Tfru19508_t",0.468024383127841,0,0.806080400751353,6.29350958080613,4.6585471290288,3.08181358460947 -"Tfru19509_t",1.00251046266644,0.643756611140664,1.55396525944369,7.05145749433813,10.2389422787132,8.94837386493804 -"Tfru19510_t",12.9246718365143,10.3743841728214,6.95631802872826,18.3824455808784,20.2759734460618,13.59323279348 -"Tfru19511_t",10.8359997927315,9.06725416065032,10.3042205013377,7.18386856341098,8.27445887785652,8.80040074705358 -"Tfru19512_t",57.7861431383713,49.9231473606405,60.5545633650068,5.5211972597446,12.6546193150666,13.7532316186094 -"Tfru19513_t",242.364373384515,275.148796546951,226.799028450888,333.5678301549,424.184156383439,450.964259305617 -"Tfru19514_t",8.18029943833259,11.0478385344673,8.8335572819587,7.38707327743532,7.97941722813084,5.89000573297592 -"Tfru19515_t",12.6922151956863,15.2816935829857,12.231110253487,13.4411880740045,15.6936354643854,8.40169882518832 -"Tfru19516_t",700.580428273156,783.765812721153,725.518570848445,425.651053210987,218.141532954957,178.473850784869 -"Tfru19517_t",0,0,0,0,0,0 -"Tfru19518_t",0,0,0,0,0,0 -"Tfru19519_t",14.9219952223049,12.9665729364544,15.1293322365356,15.954268991647,18.563556126893,20.332548307585 -"Tfru19520_t",0.779678670732691,1.56458248299268,0.839277447418027,1.61297157916074,3.71161154293044,2.99481730012513 -"Tfru19521_t",0.128652950645402,0.10326723586062,0.443159056462076,0.133076330516516,0.111353513504317,0.282381591851659 -"Tfru19522_t",0.352984776350619,0.566668109386425,0.607947193003646,1.46048477020646,1.98588230281123,0 -"Tfru19523_t",8.84319755488921,13.1526650652323,10.0791245155868,13.4518334097964,68.2114390973705,76.8788983586892 -"Tfru19524_t",4.38403665190806,4.99204345392726,5.61908473533467,4.85114904861055,7.23608644915311,9.32418990084613 -"Tfru19525_t",0.0693727306122605,0,0.0597404756130751,0.0717579222355777,0,0 -"Tfru19526_t",0,0,0,0,0,0 -"Tfru19527_t",0,0,0,0,0,0 -"Tfru19528_t",0,0.0716615356184746,0,0.277042010076359,1.00454832745818,1.37169634043988 -"Tfru19529_t",19.5834999906415,23.9206690094033,16.8643729788951,39.632918637444,43.726568542773,73.7165413458246 -"Tfru19530_t",10.2492659661166,14.1610360535668,12.1540802825289,23.810283208676,43.6283065909914,54.5809731258234 -"Tfru19531_t",0.646233667472673,1.81551744276497,1.3912637686045,0.668452644825267,0.279668631993535,0.236404076255299 -"Tfru19532_t",3.72539588510917,4.68047464128171,3.44060602929956,19.3232647585093,17.5242234057646,16.1958062524517 -"Tfru19533_t",118.622845908674,111.325595991687,120.979737376586,43.5246373006827,43.4688648088739,44.7953667401702 -"Tfru19534_t",0,0.0654059214519734,0.0701704325581318,0,0.070527492064325,0 -"Tfru19535_t",0,0,0,0,0,0 -"Tfru19536_t",12.0670968623004,9.51844703023043,9.85224958999845,6.60811287553407,5.96311347540887,6.10984690123039 -"Tfru19537_t",5.39681221229855,4.90950571858132,4.1827287604298,2.79118342057659,2.02415412449282,1.8426356264867 -"Tfru19538_t",2.64032612710263,2.31200588629661,2.0670204562124,1.73797687654569,0.623261522728449,1.75614456646793 -"Tfru19539_t",0.260094045732035,0,0,0.269036668195928,0.225120261047427,0 -"Tfru19540_t",0.960118591673685,0.770668628765538,1.65361636496992,1.48969446561059,0.831015363637932,0 -"Tfru19541_t",0.634040579407151,0.254466056667866,1.025894216396,0.832633335892119,0.28935619865574,0.48684853231145 -"Tfru19542_t",1.58510144851788,1.27233028333933,4.94283875751729,9.80552265551147,2.36351798857231,1.97210347153343 -"Tfru19543_t",0.951958943585807,1.52823807403931,2.45934445215073,4.67727488022212,1.85389404777584,1.04473189506591 -"Tfru19544_t",0,0,0,0,0,0 -"Tfru19545_t",0,0,0,0.860384369448921,0,0 -"Tfru19546_t",0,0,0,0,0,0 -"Tfru19547_t",1.66357138627368,1.33531658508792,1.43258806385701,4.3019218472446,5.03957206299061,4.86851832891739 -"Tfru19548_t",1.48690930929277,0,0.640227568863781,3.07606523906182,1.28697068369916,1.08787715475572 -"Tfru19549_t",0,0,0,0.720156164314514,0.200866973255025,0 -"Tfru19550_t",0,0,0,0,0,0.144623670179712 -"Tfru19551_t",0.995383611036107,1.59795035585272,0.857176729471966,0.617764292611028,0.172307687958102,0 -"Tfru19552_t",0.661499029696437,0.265486240224349,0.569651306830188,2.39485002673619,0.858824932893532,0 -"Tfru19553_t",5.37997486713703,4.31840179911724,8.55318809467199,9.41760869064169,11.8204771551947,9.08350637828242 -"Tfru19554_t",90.9835701003028,84.3585151694689,96.7945646441754,48.086316742371,53.1702023671503,46.2810035451579 -"Tfru19555_t",64.7657089647723,88.2279779297111,98.1607071276196,70.8206436477871,59.2601814929032,43.864932563318 -"Tfru19556_t",43.5462071312355,50.8344883974192,53.4245287144127,38.5645756629961,32.1694596071809,24.2223253516968 -"Tfru19557_t",2.27961118134813,1.72216453355428,2.25178206123697,7.00461550403492,6.15137070849307,3.67907381243282 -"Tfru19558_t",0.915020599713975,0.408627454739392,0.564509919586288,0.707602267847409,1.00286857128044,0.687272424825393 -"Tfru19559_t",0,0,0,0,0,0 -"Tfru19560_t",0,0,0,0,0,0 -"Tfru19561_t",0,0,0,0,0,0 -"Tfru19562_t",0,0,0,0.0538740507298727,0.0901597573692735,0.0762121014586208 -"Tfru19563_t",0.207030339040028,0.724224931818867,0.387211411255829,0.403411211593342,0.16542613383527,0.425279835590526 -"Tfru19564_t",24.1488258417906,20.910202504274,28.7315266013106,36.4219725162611,24.7503989841332,17.2130177703397 -"Tfru19565_t",0,0,0,0,0,0 -"Tfru19566_t",2.82025232541202,3.2874787716903,3.22604401640265,2.20086925830123,2.22240553051788,2.6501283451149 -"Tfru19567_t",5.93111095303046,8.93631110629508,1.17419115668284,8.50639126829483,0.875424173356323,4.62962930423475 -"Tfru19568_t",0,0,0,0,0,0 -"Tfru19569_t",0,0,0,0,0,0 -"Tfru19570_t",0,0.271909294423325,0,0.350398563819696,0,0 -"Tfru19571_t",0,0,0,0,0,0 -"Tfru19572_t",0,0,0,0,0,0 -"Tfru19573_t",0,0,0,0,0,0 -"Tfru19574_t",0.381865348961125,0,1.31537665395334,0.394994744669476,0.330517474174178,0.279386635574444 -"Tfru19575_t",0.704668871208954,0.584032755284695,0.209650073126443,0,0.212969275715611,1.17688876020615 -"Tfru19576_t",8.43417192398899,6.60069805293539,8.22287270049356,20.8133480375138,18.1719431659621,12.6500338258662 -"Tfru19577_t",0,0,0,4.18229729650033,3.4218279679209,1.7091888293966 -"Tfru19578_t",0,0,0,0,0,0 -"Tfru19579_t",37.0738862131423,35.8627975762181,45.7405021746011,33.4320870170034,21.9067168879801,24.3425979510407 -"Tfru19580_t",0.929318327117782,1.04432419274091,1.44051204359935,5.95987645718103,4.98701144661038,2.71969291267158 -"Tfru19581_t",0,0,0,0,0.104174562060629,0 -"Tfru19582_t",15.0319570477339,10.994593209291,14.4570452476728,2.6883421585364,8.14686884502906,8.37692704991603 -"Tfru19583_t",0,0,0,0,0,0 -"Tfru19584_t",13.9072971969901,17.44754084437,15.8353283877216,28.7709231555694,33.3476122318226,34.6706652607403 -"Tfru19585_t",3.20843649981407,4.20188674477693,2.25398713064367,9.34490079348689,9.42722202719915,8.71012405579825 -"Tfru19586_t",282.795493639098,301.347715578919,300.300225434238,172.049219971928,193.123288732759,160.773798338614 -"Tfru19587_t",33.2789492501089,36.7186311189258,25.7177351600362,24.2195487312174,24.1128490191071,27.3222104647576 -"Tfru19588_t",0,0,0,0,0,0 -"Tfru19589_t",0.0601362754269488,0,0,0.124407793596685,0.208199983731765,0.483976849026596 -"Tfru19590_t",1.40882361752648,2.49974158050605,1.78789059760649,1.30386614745264,0.577603352925747,0.0542498321503775 -"Tfru19591_t",1.57028733501458,1.890658921312,0,0,0.679568603316185,0 -"Tfru19592_t",7.70186158958003,7.89005820696998,7.38298219390213,2.03404315850601,2.3097696619422,0.821798754411288 -"Tfru19593_t",0,0,0,0,0,0 -"Tfru19594_t",13.5179579602625,10.5177628753046,15.3547176041444,5.40437034661296,6.96272744212927,5.03613027205266 -"Tfru19595_t",16.2672612846569,15.9193155079884,14.584282263992,10.3725410403921,10.4152456052765,6.19541717082852 -"Tfru19596_t",46.3069245457075,46.9190953582031,43.3638478238535,25.3891200338753,21.2447075267378,17.0324864579119 -"Tfru19597_t",2.5517170514692,3.6631518496376,3.16935087474155,3.75614161402983,4.33225007036714,4.55961600347545 -"Tfru19598_t",16.3497117870586,16.5730806560974,19.1994400067421,18.0816440425235,16.612316740416,16.8556106370028 -"Tfru19599_t",1.19446033324333,0.958770213511629,1.37148276715515,1.85329287783308,1.72307687958102,1.89347340697372 -"Tfru19600_t",0,0,0,0,0,0 -"Tfru19601_t",0,0.285735190749935,0,0.736430879892243,0.616219019646772,0.520890337511676 -"Tfru19602_t",0,0,0,0,0.315355568404386,0 -"Tfru19603_t",2.4326363591172,3.05487354942715,2.67256354383492,2.18705143860616,0.999615446337839,1.36096515559361 -"Tfru19604_t",2.66699608798246,3.85334314382769,3.44503409368733,2.48282410935099,3.23172641414751,2.14639891457192 -"Tfru19605_t",0,0,0,0,0,0 -"Tfru19606_t",0,0,3.3079467599325,1.94695952914909,4.05478777585132,0 -"Tfru19607_t",3.81918355868753,4.18680283950151,4.15088337850395,0.631759535701891,0.506611295147799,1.97049118760766 -"Tfru19608_t",14.9374585993169,9.32055896281494,8.391183905741,3.86807859727648,0,1.7820633687919 -"Tfru19609_t",1.44447002701938,1.25220401338279,1.54244648898931,0.83671514001512,1.00019043078843,1.31046551211672 -"Tfru19610_t",2.60652720293274,2.41408729177749,1.55396525944369,1.03697904328502,1.90895534009907,4.25414495218366 -"Tfru19611_t",4.70225421051956,5.25304280282338,4.63379946473466,3.35962062113564,3.69233600693138,4.04328725920777 -"Tfru19612_t",11.0045044873607,10.168049322635,10.935513403403,10.8523070459606,12.793869740374,12.0883179640036 -"Tfru19613_t",0,0,0,0,0,0 -"Tfru19614_t",0.92278533360553,0.740701944386913,1.0807356515346,0.725429715605627,0.511169380093631,0.324068856729584 -"Tfru19615_t",0,0,0,0,0,0 -"Tfru19616_t",0.44765742506988,0.120188496745541,0.257000767202252,0.154349633796243,0.129154252785647,0 -"Tfru19617_t",6.48311589233035,8.02263564510749,11.6311440462112,14.2502927176576,21.2763981767429,18.3802268934184 -"Tfru19618_t",6.00915738477394,6.1711587690859,6.0372652174787,10.3900791532623,9.84135480605581,13.3619695274734 -"Tfru19619_t",0.100792293667004,0,0,0.0521288805202667,0,0 -"Tfru19620_t",0,0,0,0,0,0 -"Tfru19621_t",0,0,0,0,0,0 -"Tfru19622_t",0,0,0,0,0,0 -"Tfru19623_t",0,0,0,0,0,0 -"Tfru19624_t",118.202199432005,136.796744676745,124.21839943534,183.606619151767,125.197286799268,83.7449225297388 -"Tfru19625_t",9.73937333233657,11.6998194824421,8.84352206226519,14.8714898347956,15.1391600158014,11.4398691790419 -"Tfru19626_t",0,0,0,0,0,0 -"Tfru19627_t",47.7998365831819,55.429028737487,51.0395506181238,46.3344436320067,48.4273370717597,42.5189037207656 -"Tfru19628_t",37.3566422498975,39.8793036680314,35.0317012220874,37.814269046525,29.56617004831,23.5149252415386 -"Tfru19629_t",2.74244973138566,3.37534410313525,2.44038867790038,4.39694911639688,3.52096416992949,4.74866077004659 -"Tfru19630_t",2.65495547358976,3.04440203236951,3.10286366451748,3.33471861188226,3.61107127540185,2.77494626755656 -"Tfru19631_t",1.19446033324333,1.91754042702326,2.14294182367991,2.41957681272653,2.62769224136106,3.05868781126524 -"Tfru19632_t",13.4102672912993,14.3248266140873,14.3104645313324,14.647855478604,13.3200421557928,10.9848197902543 -"Tfru19633_t",0.627463394973466,0.391729904662981,0.540341447059672,0.0721152230931823,0.241373757073258,0.204033393614532 -"Tfru19634_t",11.5850608537138,15.4185149371575,12.551080617126,13.838872815911,11.2564136222309,8.25731675603473 -"Tfru19635_t",35.6805435435551,44.8279550397,39.4612996186003,26.291837692062,20.6573421358861,14.0566401023392 -"Tfru19636_t",0,0,0.188892208792256,0,0,0 -"Tfru19637_t",0,0,0,0,0,0 -"Tfru19638_t",0,0,0,0,0,0 -"Tfru19639_t",13.548965372598,12.2655930709956,12.954386488914,12.0126938516295,10.5808342581224,14.8817990444625 -"Tfru19640_t",9.61950879029204,20.0756236303184,13.8064343444541,12.6036491042861,8.32601270791737,20.1755539881153 -"Tfru19641_t",194.402166852588,164.496460728234,221.79634063661,47.853686857309,85.0183384541041,88.5483402215338 -"Tfru19642_t",0,0,0,0,0,0 -"Tfru19643_t",0,0.0153362531309949,0,0.0395264243016987,0,0.0139788628215551 -"Tfru19644_t",2.97601334688522,2.33902194523858,3.20350033804135,0.3847919283865,1.28792048977096,1.40621170082488 -"Tfru19645_t",7.71523868309211,10.6163535595253,8.43681818862203,10.8940241532747,6.99579260205402,7.34713543114136 -"Tfru19646_t",9.5207290515128,11.6246106014914,9.98867427164091,13.8705257505642,12.128646019576,8.48639692734505 -"Tfru19647_t",21.1884578582854,21.3340513659929,23.3683064850561,11.1507365973064,14.6392916658563,11.4227102332206 -"Tfru19648_t",0.146105003080778,0,0,0,0.252917719368066,0 -"Tfru19649_t",0,0,0,0,0,0 -"Tfru19650_t",0.146871288061971,0,0.126478524418591,0.607684222568424,0.127122105451607,0.429825593191453 -"Tfru19651_t",4.16126165316515,6.05010886133693,5.81470240485917,11.8572254194239,17.057172826073,16.371534626652 -"Tfru19652_t",0,0,0,0,0,0 -"Tfru19653_t",0.186393862884352,0.128241213978418,0.25223545979137,0.688580378980068,0.576179431999359,0.27274511491895 -"Tfru19654_t",0,0.810100860033634,1.86437438348358,1.58646530846206,0.932631690712445,2.10026544296341 -"Tfru19655_t",14.1373394324833,8.85783744372082,14.1247108230506,11.4760711152443,16.0591577067543,9.13974091232556 -"Tfru19656_t",313.583206312589,299.778573352237,365.309956283538,172.076873889784,187.184105196794,107.715968027297 -"Tfru19657_t",16.443494477826,16.48831433647,17.1159376801002,17.2737945656676,16.2719395517214,15.8534879918035 -"Tfru19658_t",10.3896436857806,11.8867118524623,13.7647137263165,41.869000859145,48.4216422712925,46.193382958492 -"Tfru19659_t",0,0,0,0,0,0 -"Tfru19660_t",0,0,0,0,0,0 -"Tfru19661_t",0,0.0359837273303013,0.0386049711672539,0.0587294651598203,0.116404233167,0 -"Tfru19662_t",0,0,0,0,0,0 -"Tfru19663_t",307.424675492696,263.888057012109,337.108518092419,339.074901097228,350.230331772062,394.647426622542 -"Tfru19664_t",0,0,0,0.0240251157941069,0.0201033575665798,0 -"Tfru19665_t",320.558947350417,268.67750722017,377.55302296783,335.472432780664,299.620038138384,211.00243749714 -"Tfru19666_t",0.604391199794586,0.415828396815938,0.743532538205898,2.14344527425985,2.01775313113527,1.89512003575676 -"Tfru19667_t",0.591622371629912,0.712325757221668,0,1.56488327224874,0.512069326185346,1.51498386896001 -"Tfru19668_t",0,0,0,0,0,0 -"Tfru19669_t",0,0,0,0,0,0 -"Tfru19670_t",11.6954487304151,11.6184536555797,12.7140989467234,5.86911557207022,5.81309851200897,5.97282800518212 -"Tfru19671_t",0,0,0,0,0,0 -"Tfru19672_t",0,0,0,0,0,0 -"Tfru19673_t",0.454110144710527,0.10414440929264,0.446923341883762,0,0,0.0474633666612955 -"Tfru19674_t",6.53972992831627,9.03886498344108,8.66415760089029,12.1963786136684,13.9331917256659,7.36108500914703 -"Tfru19675_t",0,0,0.367237136890528,0,0.369105808722432,0 -"Tfru19676_t",3.12038542293948,2.11933872910523,2.89382863869736,1.73797687654569,6.70434171819675,2.47924701742814 -"Tfru19677_t",45.2196868950353,49.4589679961203,52.8752008360437,39.0783278776181,37.1384553096144,23.7298468289283 -"Tfru19678_t",471.57044243485,408.066689331875,512.091714243352,485.361835035322,383.774549411755,316.96267785031 -"Tfru19679_t",0,0,0,0.104320340729033,0,0 -"Tfru19680_t",26.5833460363976,28.4349687706215,27.7672859131693,20.6154603452711,15.5075722165502,14.3041299352807 -"Tfru19681_t",0.434723812530129,0.261708298901622,0.467954178314579,1.68626475732118,1.50507310361333,1.43126918095058 -"Tfru19682_t",3.86604112340167,4.67222837242809,4.67591235570281,9.70535174079291,9.73778990612442,8.61273589087299 -"Tfru19683_t",38.7423160254263,42.5112284285324,36.6165152770577,24.4425202588601,23.8415793717465,29.9032793104618 -"Tfru19684_t",22.6393586346945,29.8613044794804,20.8659166227996,54.9367781806869,53.5423864572619,53.1384020494613 -"Tfru19685_t",2.92441184963899,3.62775185217955,4.80778492188643,8.11239206615473,12.7709441761605,12.2541100286766 -"Tfru19686_t",49.8492511892456,49.4015622389622,59.7951331973929,64.3339506787632,52.3057598356085,46.3195257476128 -"Tfru19687_t",2.95818295806202,3.11194158472805,4.52975820442652,9.61829529683081,10.0843379814133,8.86408746444577 -"Tfru19688_t",0,0,0,0,0,0 -"Tfru19689_t",1.46305880720211,0.865324537339857,0.265245521420473,0.238951907866044,0.133297606449714,0.507044489860128 -"Tfru19690_t",17.9074750486506,16.3260064777963,19.0383463072194,17.1510875974904,13.7773599761026,10.837260548335 -"Tfru19691_t",17.4006068670938,19.3162445513213,16.047305341289,25.1792830626983,23.338927629163,24.4460741064881 -"Tfru19692_t",152.268807898249,133.602631814901,143.561030122877,42.3631863658013,70.8959982103611,84.1303006373545 -"Tfru19693_t",15.375904501936,10.7321228143742,17.462759026622,14.0605556325315,18.3231172685419,16.3037293969172 -"Tfru19694_t",0,0,0,0,0,0 -"Tfru19695_t",41.6518542924247,36.1691832946122,44.1018911785644,47.1687440269823,56.5951890711113,52.7060607021834 -"Tfru19696_t",98.4416071370948,72.5634158280926,102.615518599207,25.4832192327865,30.6914876631923,34.3902666022432 -"Tfru19697_t",0,0,0.190383463072194,0,0,0.323500314875672 -"Tfru19698_t",0.21449457899093,0.172170651107195,0.0615708220999438,1.10934694247597,0.680725351065115,1.72625274405997 -"Tfru19699_t",44.0594050184151,49.6938308472551,46.3598179892494,51.289368194856,59.470850749384,48.6123323078771 -"Tfru19700_t",5.74690944867469,5.17005061597502,4.63815892190422,6.6624361427396,8.84292620923378,11.3748954073931 -"Tfru19701_t",5.15904616600654,5.7880817286037,5.6543755675873,4.7906550330464,4.41458789650646,4.76107581348774 -"Tfru19702_t",0,0,0.107817758520766,0.129506473662123,0.541831924875701,0.0916021755981784 -"Tfru19703_t",15.8178533670089,20.3146960720623,15.8918413735995,33.995991204398,31.9454127758305,20.3169026204345 -"Tfru19704_t",1.16277338091969,0.933335709577641,1.00132478847659,0.902064122774581,1.13222248938559,0.638045603734025 -"Tfru19705_t",196.928151074235,346.412984009049,156.656763327818,200.19989877414,161.20453605612,145.000269254307 -"Tfru19706_t",0.672980321266602,0.0900313818651329,0.386358963778018,0.464079272775886,0.291243702209556,0.656502641670256 -"Tfru19707_t",0.467466325437307,0.37522618053966,0.316296850414059,0.241769438311205,0.375707462694017,0.293156088202119 -"Tfru19708_t",10.6716327733908,10.6349107970894,11.0137410081358,9.98564005676048,10.0892768157136,12.4203384523108 -"Tfru19709_t",2.31306103445615,1.41105351907787,2.3106010606339,2.48829288492225,6.24634345465736,7.31082209388634 -"Tfru19710_t",6.63379475453628,4.34505212364651,5.25569004185401,6.64229949658966,9.41651174052773,11.376666158641 -"Tfru19711_t",1.3772192913352,1.3423531443662,1.4401372030988,12.5158756332038,15.1558129843803,19.0728815620493 -"Tfru19712_t",1.32598114408147,0.456145467984112,0.978747002941608,8.22942827676653,6.64015940223658,11.3644530005929 -"Tfru19713_t",4.05973761483222,3.57402832514026,4.79297416775673,2.16739127238746,1.47354633848503,4.55119305027738 -"Tfru19714_t",3.5993506912106,2.82765836898933,1.91251209029679,1.10900985741293,0.397705620701836,3.13768764838391 -"Tfru19715_t",1.20855945927202,2.03967075300359,0.987381590112524,6.95575400609397,5.9276132771481,5.53208210905059 -"Tfru19716_t",1.83880441633811,2.7674489063058,1.88039480626709,9.98564005676048,9.6487590955909,5.12909527962933 -"Tfru19717_t",3.71903644205617,3.2517342340206,3.5457979367438,4.12168429220322,3.85124709037737,5.68491067168869 -"Tfru19718_t",12.0014823959211,10.8732950098108,13.6095901324876,14.8723622391817,15.2215685418829,9.91091488006656 -"Tfru19719_t",10.1037355460795,7.45920090770146,8.83294043926741,5.76946197815425,5.59248031926732,4.75417444819994 -"Tfru19720_t",4.79356941344031,3.47580040032486,4.70639499772901,3.9805590886651,3.57418705380272,2.6211887974756 -"Tfru19721_t",0,0,0,0.0769016317055616,0,0 -"Tfru19722_t",0,0,0,0,0,0 -"Tfru19723_t",0,0,0,0,0,0 -"Tfru19724_t",4.54968035412121,4.75601546719287,7.38035641481379,6.45721887381586,5.76948638797746,6.50260078767724 -"Tfru19725_t",1.05507537546559,1.1644718291787,0.908580420313142,1.09135125685758,1.5410312375154,1.97807492376883 -"Tfru19726_t",5.8923324834384,8.02609198926915,6.07365734476863,14.683226534047,11.6682151881681,7.18507606897083 -"Tfru19727_t",56.7842518913184,65.6084483232563,56.3302521273149,35.6701361025946,32.1686854635173,35.9790270392433 -"Tfru19728_t",0,0,0,1.34988495265685,0.847151584291096,0.477398522923322 -"Tfru19729_t",4.80059295836843,10.1838354515446,3.24817500261948,8.51253980348911,8.31015363637932,10.2859896035979 -"Tfru19730_t",5.26617382482166,6.38046174022326,5.26228448491684,8.32502229451219,9.15910635115432,12.6128774451526 -"Tfru19731_t",5.17929402701002,3.15151614431383,4.48413950477631,4.95412699313654,5.78432967729419,6.60082180435743 -"Tfru19732_t",2.7717880758426,4.85424151292031,2.73412123932114,0.834062088324268,0.741532905465761,1.5854814472311 -"Tfru19733_t",5.05184893725853,3.00371959986568,4.18928422083136,11.999394916017,19.4335441385263,15.6058281073654 -"Tfru19734_t",18.8183243921984,15.6445731601113,15.626674645141,39.6258727755432,29.667248474613,35.895594929819 -"Tfru19735_t",1.07974779142167,1.01114145330716,0.826512999270933,1.24096885151424,0.38939938049796,0.438879398974493 -"Tfru19736_t",18.2097818981923,15.290456556503,15.2365304958316,20.6393103325372,22.188621210125,20.5513459065905 -"Tfru19737_t",90.025600852428,83.4103089007351,90.184784305341,61.940768810116,69.233173572591,74.5443102882256 -"Tfru19738_t",10.2174782559869,11.0052601742896,11.4309239366424,14.8143559123437,15.5707400515319,16.2927133635409 -"Tfru19739_t",23.0015373168239,21.364200416072,21.6942824934939,23.1125999227719,28.820089534249,29.490406800661 -"Tfru19740_t",0,0,0,0,0,0.574439781729902 -"Tfru19741_t",1.75631449696406,6.10895864265366,1.51245399235053,66.00678729738,58.0190604491117,57.6101083390091 -"Tfru19742_t",0.145978065632402,0.0585868853318719,0.062854662004721,1.50997122202058,1.83206036944505,0.801021631099623 -"Tfru19743_t",5.04252544607782,5.42217311008596,5.53039165096465,4.77303955336728,5.59970715022163,4.42019399657416 -"Tfru19744_t",0,0,0,0,0,0 -"Tfru19745_t",0.129147389348882,0.310992336742435,0.556077755322321,0.534351076570543,0.391235134687343,0.850400520272713 -"Tfru19746_t",13.003642840387,13.596572294667,10.1667095758716,15.9285049785247,19.9926048533057,22.1574655585924 -"Tfru19747_t",2.14475160687563,2.52738286049535,2.1220362097998,2.59610885958754,4.06818357674463,6.37687475656607 -"Tfru19748_t",0,0,0.539893402735283,0.648498834523854,2.17056251693757,2.75216685786304 -"Tfru19749_t",10.952642243842,9.75357745027731,11.6084816452043,19.4215181046653,21.6683089086108,11.5357060705666 -"Tfru19750_t",5.58827339943109,7.70027828907917,7.05811863096916,3.75726708344135,3.78885885028935,4.15672799269295 -"Tfru19751_t",24.5495218649011,20.3452130886158,26.220174098254,9.89360650785024,13.3837626164648,12.2463591684434 -"Tfru19752_t",0,0,0,0,0,0 -"Tfru19753_t",5.46197496037275,5.21931153382234,7.39135797809696,4.57362335933077,2.02608234942685,2.66412024015259 -"Tfru19754_t",0,0,0,0,0,0 -"Tfru19755_t",0,0,0,0,0.204252371680672,0.690618649734581 -"Tfru19756_t",202.362833236628,138.284248463884,200.417186125999,11.7430870036871,23.0915586686554,29.694268767473 -"Tfru19757_t",44.833467902967,19.3387857280629,33.9176922740089,8.8849191943109,7.79724515134095,5.82461913566672 -"Tfru19758_t",35.3314668664966,41.0273007159411,34.8206016104939,10.1517340919725,5.5045059717606,6.31883792607621 -"Tfru19759_t",0.0923190953532389,0.111154129148876,0.0397503933886999,0.572959409850228,0.359573955420259,0.168860054468071 -"Tfru19760_t",0.272760963543661,0.875759805415384,0.234888688205954,0.28213910333534,0,0 -"Tfru19761_t",24.1756479917834,31.7762199900179,28.105529944183,48.4507942202486,45.7731034377908,34.933379325783 -"Tfru19762_t",4.0719315271875,4.30060618730769,4.98299574265489,5.76369882527908,4.26637351867688,5.33115314820623 -"Tfru19763_t",0.0862086985853745,0.242193194006615,0.111358208261827,0.222931872312172,0.111924850156469,0 -"Tfru19764_t",0,0,0,0.192254079263904,0,0 -"Tfru19765_t",0,0,0,0,0,0 -"Tfru19766_t",0,0,0,0,0,0.0449634673199544 -"Tfru19767_t",6.92393215149292,6.29873398510296,5.80355743475019,3.58099631156393,4.03521883304957,4.28904538348899 -"Tfru19768_t",3.38296819213863,4.97831245091804,5.34095889692435,2.91606858480805,9.27223518153009,4.53768898047058 -"Tfru19769_t",37.7358085825846,33.6062057789563,44.8306239929344,69.8039893038844,77.7203713041705,52.1949196558421 -"Tfru19770_t",0,0,0,0,0,0 -"Tfru19771_t",13.3858544676229,14.2554671736983,14.1574201803416,17.8634068549804,14.816914416749,15.0628019143637 -"Tfru19772_t",1.89896873353181,1.34135362601597,1.43906487457825,1.02141498169503,1.24915284091145,1.39119668590715 -"Tfru19773_t",3.70215219670785,4.06886911627907,4.51241075864673,2.71006563800345,3.59871907473715,40.5863940555512 -"Tfru19774_t",0.153303607247167,0.492215365087479,0.13201772986758,0.475723597594624,0.265378993862478,0 -"Tfru19775_t",0,0,0,0,0.0919264782785323,0 -"Tfru19776_t",9.17651807811195,6.74335050169846,9.12669032204551,7.48666962204298,7.04764952623708,6.52475250464625 -"Tfru19777_t",45.3778677449595,58.5736284451494,53.8632337857331,26.0062233350571,34.4992692019687,18.3946529406589 -"Tfru19778_t",11.3852216814084,12.7108979232535,11.6148143282133,5.25290378676469,4.58449327193822,4.33471497638088 -"Tfru19779_t",6.08431698066193,6.2925415545097,6.8516834063865,10.9531272512107,9.01327596703398,7.66173099507076 -"Tfru19780_t",20.6080703240457,21.0124291876129,20.2248244638241,14.5951649301075,15.5872771245899,20.3751579534954 -"Tfru19781_t",12.0597420192022,13.0938844693174,16.7569134071588,19.464858915543,17.9515454766446,14.3645805558178 -"Tfru19782_t",0.358429569421994,0.287704484811552,0.213689348115164,9.2688297485617,12.027495089082,9.05737179587909 -"Tfru19783_t",11.0232303517207,12.4678249832596,9.92416382058238,9.15633940923675,10.8420245007434,12.9528754306084 -"Tfru19784_t",18.9500679421958,18.8890443030531,17.2232130627016,13.4791956618459,16.0714121817194,21.0587676564237 -"Tfru19785_t",2.80251838725542,2.30184190903594,2.07664196337863,1.88763974178741,2.76414148300825,2.86105786623946 -"Tfru19786_t",4.18308929982311,4.75672027090763,3.30208662092022,11.3581476371762,11.314394862809,15.430025392099 -"Tfru19787_t",0,0,0,0,0,0 -"Tfru19788_t",0,0.322648349363563,0,0,0,0 -"Tfru19789_t",0.243586788319274,0.260696540014116,0.163150776988414,0.867868607811154,0.937034076266998,0.95049061587182 -"Tfru19790_t",0,0,0,0,0,0 -"Tfru19791_t",3.67076124919929,5.82593340265905,3.73582644519023,4.6599181396955,4.04366959466322,6.34793070699432 -"Tfru19792_t",8.98652328511431,10.2734999539652,9.14581174304675,8.59129574305407,7.54244090173812,8.16877618438083 -"Tfru19793_t",5.62412564160318,3.38578267867705,3.32971914494466,2.90874791053673,1.82545215861889,2.57175982537145 -"Tfru19794_t",0,0,0,0,0,0 -"Tfru19795_t",0.234884557608893,0.188537292684952,0.0674237800255675,0,0.0677668632975947,0 -"Tfru19796_t",42.9429786380561,45.1334017299725,41.4557777078505,19.845270846138,14.3736669001328,13.7224319612378 -"Tfru19797_t",5.55440507579818,7.68280192932587,6.2352269960126,3.28307320244759,6.09525731593938,5.33374486096666 -"Tfru19798_t",11.5324063442216,10.5425117471739,10.6208200752953,13.0886723781801,16.7747858198601,16.1133378953802 -"Tfru19799_t",18.3898312789173,12.2606372758154,17.1345116764975,14.9682219032643,19.3091787543862,17.9395629158327 -"Tfru19800_t",0,0,0,0,0,0 -"Tfru19801_t",7.49137117707175,8.59025541617638,8.06401292630633,6.64194984667144,2.54730027866723,2.54473177625131 -"Tfru19802_t",42.1170828673053,44.8359159622785,39.2755911405515,30.4169101728961,37.49973431014,39.2957228511738 -"Tfru19803_t",191.271917045699,240.087854992134,186.54977329188,231.895206249804,184.103503325311,122.370073549554 -"Tfru19804_t",0,0,0,0,0,0 -"Tfru19805_t",0,0,0,0,0,0 -"Tfru19806_t",68.0414621785277,63.2790742045182,67.0189840629947,43.220912557222,41.1917645499719,38.6985124977495 -"Tfru19807_t",0,0,0,0,0,0 -"Tfru19808_t",0.807791989782145,0,1.39126360574565,1.67113141644349,0,0.591010121455652 -"Tfru19809_t",3.43776477837125,3.38029846120946,3.9595865005194,5.51174252408353,5.28151708092138,4.49590974689105 -"Tfru19810_t",9.94859724925018,16.414734773871,13.8028010727339,12.5774642381594,16.2649388606763,12.9400125950267 -"Tfru19811_t",0,0,0,0,0,0 -"Tfru19812_t",3.54014553656018,1.53009573782461,1.40704796046873,3.23934101787285,4.00692172904838,5.67829564036228 -"Tfru19813_t",1.0300999876608,1.46994016385797,1.08420010305419,1.65747113567028,2.27849920888466,3.76829385856539 -"Tfru19814_t",8.65375804482549,8.48297510696798,9.49661175871512,8.00071397133614,6.89356409216516,7.33994789175522 -"Tfru19815_t",9.14543342068921,8.19445124257028,9.34083927680792,7.47990048133589,8.65202704547088,9.18085703735768 -"Tfru19816_t",0,0.234959947794371,0,0,0,0 -"Tfru19817_t",0,0,0,0,0,0 -"Tfru19818_t",3.06980670297615,3.69611172443886,3.61287984733836,3.38704385197699,4.07410089968657,2.54544705736522 -"Tfru19819_t",0.315828484103186,0.760528252071255,0.271976375817421,0.326687382809341,0.546720633972324,0.462143306965246 -"Tfru19820_t",6.77691495513762,5.72106231715725,5.03099554710945,4.47184592713426,4.95546366008016,5.38567283596912 -"Tfru19821_t",0,0,0,0.284914242056671,0.238406046945308,0.26442951931645 -"Tfru19822_t",3.20144668380023,4.07613827960748,3.51746582233253,5.70951667721975,7.73958132691701,5.9768914942864 -"Tfru19823_t",0,0,0,0,0,0.373647780099561 -"Tfru19824_t",0.727362569449762,2.33535948110769,0,1.50474188445515,0.663493120250862,0.279828208005836 -"Tfru19825_t",0,0,0.552257373778162,0,0.555067513861158,0.46919892995617 -"Tfru19826_t",0,0,0,0,0,0 -"Tfru19827_t",29.5187145779127,28.4547225139218,30.2266347535169,29.1051607065357,22.7194870372797,14.061184919185 -"Tfru19828_t",2.81478066502272,2.25937001345567,3.72916061687804,3.35949138507544,3.93554312032139,4.51483042539115 -"Tfru19829_t",2.95811185814956,4.98628030055168,2.03790749204039,3.0598184446227,4.09655460948276,6.05993547584006 -"Tfru19830_t",1.17497030449515,0.471562972146498,0.505914097674097,0,0,0 -"Tfru19831_t",0,0,0,0,0,0 -"Tfru19832_t",1.82114860107756,2.86004498187022,1.70465871742304,12.5311245104378,7.1274644760652,3.64966896235796 -"Tfru19833_t",0,0,0,0,0,0 -"Tfru19834_t",0,0,0,0,0,0 -"Tfru19835_t",39.6528978361232,34.1406202543133,33.5684122088893,20.2598447323041,21.8557040636776,18.9663613178537 -"Tfru19836_t",1.04947378852526,1.34782770802218,0.858568771631008,0.814167806002042,1.09002639827586,0.652658349187021 -"Tfru19837_t",0,0,0,0.970936802539494,0,0 -"Tfru19838_t",6.41458541850953,7.47415696001061,8.73137951331099,11.3439377410002,15.4919889988537,13.5495636809379 -"Tfru19839_t",0,0,0.076881738541375,0,0,0.0653188733542802 -"Tfru19840_t",0.64130058601947,3.60331706185202,0.552257373778162,0,0,0 -"Tfru19841_t",0,0,0,0,0,0 -"Tfru19842_t",11.2781053747971,14.4104476474652,15.2619729575135,9.761239991558,10.3592326152126,8.92506348163841 -"Tfru19843_t",11.7247491853355,11.538985688586,9.48220549087726,10.5459761926316,11.7365792406996,10.8160602849815 -"Tfru19844_t",15.1342222860328,16.362541658533,16.2245907132848,15.0156090436852,15.2378276696477,20.5636781036778 -"Tfru19845_t",0,0,0,0,0,0 -"Tfru19846_t",0.292719082827343,0.234959947794371,0,0,0.506716685145081,0 -"Tfru19847_t",1.84638190706478,1.11154129148876,2.782527537209,2.38733087437595,7.19147910840519,9.7938831591481 -"Tfru19848_t",0.864513562418043,0.653109007428422,0.48172086903255,0.473419851359299,0.396140798344353,0.186032263397027 -"Tfru19849_t",0.976864846179621,0.588082892589982,1.0515365692941,1.01045167241029,0.422754908827436,0.89338749747642 -"Tfru19850_t",0,0,0,0,0,0 -"Tfru19851_t",1.70579445221213,0.68460411184756,2.20342282134317,0,0,0.624010759658657 -"Tfru19852_t",0,0,0,0,0,0 -"Tfru19853_t",0.0606573117483375,0,0,0,0,0 -"Tfru19854_t",0,0,0,0,0,0 -"Tfru19855_t",0,0,0,0,0,0 -"Tfru19856_t",0,0,0,0,0,0 -"Tfru19857_t",0,0,0,0.0669482618083857,0,0 -"Tfru19858_t",0,0,0,0,0,0 -"Tfru19859_t",0,0,0,0,0,0 -"Tfru19860_t",0,0,0,0,0,0 -"Tfru19861_t",24.6346217600485,23.4496211055304,29.5094367761901,24.6648974021052,29.7962745514916,25.3023460563472 -"Tfru19862_t",6.40475149643708,7.5445406603161,7.73597754899293,6.88307673879482,6.69543318970661,6.02479299288257 -"Tfru19863_t",32.9916954171227,34.6300601099522,31.4957621783945,28.4483147605141,29.8056748374953,34.2834687202148 -"Tfru19864_t",11.2983741789161,13.5165168493882,11.1690696353555,9.98984497940781,10.6096839904401,9.71573716489169 -"Tfru19865_t",0,0,0,0,0,0.332243566629069 -"Tfru19866_t",0,0.0566668109386425,0,0.0730242385103232,0,0.103302621556937 -"Tfru19867_t",7.36113176161501,6.37757766502775,7.54649332066418,10.1522988616021,10.2143230544509,9.83099009740394 -"Tfru19868_t",25.9360894730643,21.7931719879362,23.3807011851387,6.5948012610278,8.78422280355532,10.5350541364777 -"Tfru19869_t",0.207603896469804,0.166639633485135,0.536335620845886,0.286322384933393,0.239584330538119,0.354411382853908 -"Tfru19870_t",0,0,0,0,0,0 -"Tfru19871_t",0,0,0,0,0,0.0717211899957733 -"Tfru19872_t",3.48273553855343,4.29556199804856,4.02327035208176,7.29282511391772,8.08748521235096,8.82511475768012 -"Tfru19873_t",8.06234553591016,6.3828383364017,8.5280445202628,12.490280795508,11.6303914006076,11.447261361179 -"Tfru19874_t",0.0690307122197596,0.16622885378057,0.17833783722457,0.071404144475994,0.119496868230598,0.252526950806811 -"Tfru19875_t",5.9495403344967,5.52356355087928,5.80247209977712,2.74339353379653,2.60578622983737,2.20267279241285 -"Tfru19876_t",41.450498022887,28.4953106434317,51.1544138113068,7.19810351030329,16.4980991310472,30.4742733592965 -"Tfru19877_t",2.33744092490116,0.77256061394254,2.84173025076663,1.70668760380919,2.7371823556814,2.7161319399545 -"Tfru19878_t",0.0990688405323673,0,0,0.102475051683119,0.171494915845092,0.217447145612185 -"Tfru19879_t",0,0,0,0.37537297549583,0.23557400967058,0.46463868119292 -"Tfru19880_t",1.87067640584195,0.682525354422921,1.02514172423489,3.69408040561331,3.23826837045146,3.73269594087314 -"Tfru19881_t",2.02841955987398,2.44225973904572,4.07581498408078,4.72086274313216,3.95024908771552,5.31790256043107 -"Tfru19882_t",1.70675709016485,2.13108142265866,2.77624643667354,0.78463967338406,1.80553563770092,0.832483880266967 -"Tfru19883_t",4.21713178195583,3.59016226892981,4.15982364400517,4.33568919612859,4.88888335696638,4.63746116122351 -"Tfru19884_t",15.7071086458077,15.6385117252872,19.9624941279377,13.278924450012,14.7038623024556,12.2930119652755 -"Tfru19885_t",1.28260117208317,0.926567244508185,0.99406327283497,3.58208974555219,2.49780381246134,2.29907475686451 -"Tfru19886_t",0.286724835397432,1.15074240643318,1.72839594461446,27.2856437955979,11.415825387859,3.35645377891482 -"Tfru19887_t",5.29704787859138,4.46120871499993,4.80346525888384,3.32071053555422,2.95231753859905,4.08103334887342 -"Tfru19888_t",0.489856424323309,0.825716387963076,0.970234091691533,3.49622170500446,3.05270949907812,2.93885417245654 -"Tfru19889_t",1.03858982272394,2.13045414202012,1.09313581818925,0.835565806031583,1.39834315996767,6.16339198808458 -"Tfru19890_t",1.41193910315561,2.26667243393867,0.6079471920362,0.730242383941173,3.6662442455096,0.516513106962742 -"Tfru19891_t",1.35064914423549,0.867311961633242,0.46524576184845,11.1767001707119,8.41703664134883,9.28893187086737 -"Tfru19892_t",0.491864032619716,1.184429245029,0.169427906246918,2.03510172897622,2.21377043592072,4.67825396804983 -"Tfru19893_t",1.09341054366309,1.20678181429528,0.941592832547947,9.89628915603567,6.97958267046772,5.53318868285179 -"Tfru19894_t",26.7868617944646,21.0827793032155,26.0983381884071,22.3145983761297,22.9028865734969,22.7454100366037 -"Tfru19895_t",344.497096955643,353.369081485108,349.51436805046,663.591171044719,516.31551144209,213.531214331897 -"Tfru19896_t",0.665692367444116,0.854941426522784,0.859893612925126,2.68546347802227,2.13186389839763,3.36060945167992 -"Tfru19897_t",0,0,0,0,0,0 -"Tfru19898_t",0,0,0,0,0,0 -"Tfru19899_t",26.8166576889922,40.8006148479681,26.9420926010372,19.6678176741645,16.8507285751199,19.7863177258944 -"Tfru19900_t",0.0413233530602299,0,0.142342776128744,3.80422877551812,4.54237984674202,11.4283288806546 -"Tfru19901_t",15.1029890825074,14.5853367592916,18.2896472951378,16.3545576865957,15.523180247731,13.9850276571253 -"Tfru19902_t",5.72034997075795,4.73672176341254,4.3256199679268,2.43092369759696,2.19058000098225,2.95704945060809 -"Tfru19903_t",2.19585482322846,2.37035303800126,1.27151100618744,0.78322527108864,0.393224935475362,1.74506479002334 -"Tfru19904_t",0,0,0,0.0830772885538094,0,0 -"Tfru19905_t",1.31266213705387,0.526824257945192,0.565200905995577,2.23066228574503,3.73307682884227,5.76234935872291 -"Tfru19906_t",1.32675895090726,1.53354780834583,1.09683966090866,4.17202282430425,7.99255142854549,9.31877091492776 -"Tfru19907_t",8.31844320559978,7.81357326390622,6.09654909837926,5.67527561512463,5.15737238493695,5.09331254179253 -"Tfru19908_t",9.71973912578993,8.48621916993175,7.73384514401526,12.640900827379,14.4640529293544,12.8918596388208 -"Tfru19909_t",15.2909679348459,13.5733393396072,14.8719244815282,25.4928085745996,24.912666147604,24.2174968052537 -"Tfru19910_t",7.29041305069799,5.85187358899238,7.64064799360639,7.99032943611295,8.2971114824079,7.01355372464945 -"Tfru19911_t",2.65081285929324,2.94612400559641,1.40477118383367,24.0448257192001,54.4471382820423,86.4538887606453 -"Tfru19912_t",186.472112367544,169.866240245238,188.897771262208,15.1406574521159,14.0966716592569,13.198018981124 -"Tfru19913_t",34.2692931064252,33.1944620221301,39.5971388599724,73.2881815410834,82.35061886653,64.9561905910429 -"Tfru19914_t",0.158510144851788,0,0,0.16396008269299,0.137195932676074,0 -"Tfru19915_t",0.109104385417464,0.175151961083077,0.0939554752823817,0,0,0 -"Tfru19916_t",0,0,0,0,0,0.195748598173177 -"Tfru19917_t",368.889166249981,363.518050632174,375.579749770867,358.921054007007,405.725744862081,434.9002459731 -"Tfru19918_t",4.54533754920145,4.84363795364535,4.01545718289395,4.33683595593258,5.01942582048098,7.25310640675073 -"Tfru19919_t",5.44932173652632,8.38362494805755,3.91057924148292,4.69723480147485,4.32352587838654,6.31262776595231 -"Tfru19920_t",3.34327009600658,6.33049230771692,4.94608466307966,56.3069039084956,77.0915145374832,93.9537343060345 -"Tfru19921_t",11.464903451245,11.9304327590194,11.5365001617219,5.73528669075117,6.28525032855813,7.73384082550335 -"Tfru19922_t",0.211081348671979,0.338861834256204,0.36354631139414,0,0,2.16208753158113 -"Tfru19923_t",0,0,0,0,0,2.07734794641833 -"Tfru19924_t",7.08521249879677,10.3743853872284,7.9788139018764,11.1140319260105,12.6693259794662,9.57009272551571 -"Tfru19925_t",0,0,0,0.333371523634084,0.557906733900146,0.0785998207498436 -"Tfru19926_t",0,0,0,0.0963401816267014,0,0.0681430818474254 -"Tfru19927_t",0,0,0,1.17962231439753,1.97413151995436,0.278122442653293 -"Tfru19928_t",0,0,0,0,0,0.0795149544972545 -"Tfru19929_t",0.389387609601147,0.781384762653355,0.83830493589147,0.402775637669917,0.926827679607775,1.70934117709509 -"Tfru19930_t",1.29379430346172,2.28470807552412,1.03987682088714,7.67279319214217,8.43600041886042,9.08723677104557 -"Tfru19931_t",0.942612923101794,1.32408004240923,0.811733138484532,20.7192194258603,10.4022610385253,3.96548773073405 -"Tfru19932_t",18.5107609835393,21.2260427414237,18.568149860891,60.1769233283376,44.1917068375256,25.5980394434309 -"Tfru19933_t",5.41554494890322,4.01257219935776,5.26150661581337,0.287268905214164,0.480752689707895,0.914356261879999 -"Tfru19934_t",1109.237010443,1427.66363478816,1308.16557122542,335.026078255549,525.487371350424,318.74023881393 -"Tfru19935_t",1672.09289676353,2193.12149271148,1801.65496071172,447.331548338181,660.20865466292,454.701749397408 -"Tfru19936_t",0.177988086380185,0.0714337976874837,0,0,0,0.0651112921889594 -"Tfru19937_t",0,0,0,0,0,0 -"Tfru19938_t",0,0,0,0,0,0 -"Tfru19939_t",3.91352686823513,3.97899563764816,3.70715625298963,1.48429702189461,1.3549163537575,1.71796751067515 -"Tfru19940_t",18.8639488311866,28.8221012304971,14.5069216352452,21.1915196174109,17.5994082723451,17.942020074645 -"Tfru19941_t",0,0,0,0,0,0 -"Tfru19942_t",0.0711349506955525,0,0.245032060854984,2.13384121167761,1.41610365734237,0.780673918201241 -"Tfru19943_t",18.6614326430921,18.4652327954425,17.2975217498873,15.7232156844198,17.0918648599603,18.6182531784262 -"Tfru19944_t",5.11089744617171,5.64082551472875,4.9514178228662,3.30413854856596,2.76478495506917,3.97302668079248 -"Tfru19945_t",0,0,0,0.204107677809242,0.0853950021354305,0.108276676147465 -"Tfru19946_t",0,0,0,0,0.123453046380847,0 -"Tfru19947_t",7.52992832222112,10.1920587547639,9.53590280765825,7.63610226953292,10.3774697852697,7.9936984659964 -"Tfru19948_t",0,0,0.027665665761925,0,0.166838648531516,0.070514408978636 -"Tfru19949_t",0,0.763398170003599,0,2.13148107500887,2.33233085549325,2.43540803085648 -"Tfru19950_t",0.6109845583378,0.945820589848615,0.676479422033148,5.19135950137025,4.64613135124844,4.08702735468901 -"Tfru19951_t",0,0.0916216100774247,0,0.177103621930607,0.148193976192226,0.250536928640127 -"Tfru19952_t",2.95008505821523,3.06760557539355,3.29106608950019,1.10964206004514,0.696381589640725,1.1282493024794 -"Tfru19953_t",0.31363568152138,0.566517874638131,0.55694159151755,2.11631114147805,1.38686605014781,2.07217936898339 -"Tfru19954_t",0.690874808975719,0.665462220562348,1.42787597304146,1.71510875974904,0.956761109451566,0.909844635587828 -"Tfru19955_t",1.26331393641274,2.28158475621376,2.17581100653937,3.92024859371209,1.36680158493081,1.61750157437836 -"Tfru19956_t",2.06757773592627,1.34064662618169,1.55402070045455,29.1606950047113,28.7899539589215,21.4063992420495 -"Tfru19957_t",8.9530661054055,6.88856898296088,9.06818195726532,9.98065130650205,11.2423392651184,14.2886748685284 -"Tfru19958_t",0.404625535323046,0.771364596822822,0.914665885199345,4.60391225575018,3.50217191177936,3.99652405854834 -"Tfru19959_t",14.6712508291093,14.7204116980943,15.4919100720285,14.0013729659346,12.6228814980866,17.5066802416086 -"Tfru19960_t",12.0910456973832,15.959742125555,11.877654860325,13.8037609064663,16.2792188772356,12.6468619898624 -"Tfru19961_t",21.9157504621167,22.1019514771388,20.8084667999977,11.3346318035589,13.1322661979573,11.7174194317844 -"Tfru19962_t",1.54147480314583,0.309328004665067,1.99116649451653,1.19585564899933,0.333549744579445,8.7404442872372 -"Tfru19963_t",18.9061464966597,19.6732049573145,15.919996481037,14.1940035289576,12.7018285220294,17.31842202912 -"Tfru19964_t",0.0285555325531772,0,0,0.147686682235358,0.197726293183736,0.146245893536589 -"Tfru19965_t",0,0,0,0,0,0 -"Tfru19966_t",7.90243185756056,8.30647878148746,8.83055211696561,4.8655567652455,5.94413285020973,5.98819731791138 -"Tfru19967_t",0.191367600846122,0,0,0.0989736262269757,0.165635180679542,0.140011525800405 -"Tfru19968_t",0.0940765697328639,0.0755134434680678,0.243042718815567,0.09731113530491,0.4885588644008,0.0688298542288664 -"Tfru19969_t",0,0,0.0997871944378399,0,0,0 -"Tfru19970_t",73.5326780954579,97.9680022325405,80.555735419918,57.216542115493,64.2169456564031,52.763264839722 -"Tfru19971_t",0,0,0,0,0,0 -"Tfru19972_t",0,0,0,0,0,0 -"Tfru19973_t",10.7643933014238,10.8608007364506,12.3769693029468,14.6179157476105,15.5108987880165,14.1673223078695 -"Tfru19974_t",9.94049484311367,9.74431800245432,9.92386260914538,7.73445206839706,6.31963254284867,6.04996400385288 -"Tfru19975_t",3.81077997726153,5.28344987761941,2.83416206882731,3.76263035128449,1.79910542643264,4.81581912041722 -"Tfru19976_t",13.6214908023992,13.788320514655,14.0126486598265,9.43949102277213,10.4540670745187,14.0407405034697 -"Tfru19977_t",36.9794568358809,31.1767903549722,39.8596042183942,33.3732635082629,48.6549061686832,46.303073133608 -"Tfru19978_t",3.10150668658634,1.40711968735281,1.62574642623447,7.11370952679216,6.65279153474187,5.42628939077171 -"Tfru19979_t",6.91850161647214,6.44584974427059,5.63871021510882,9.58443130447992,9.62389115977752,6.68884474581169 -"Tfru19980_t",16.5062093378562,19.4363485266749,24.8751256940852,21.8253815358611,35.5145467615886,24.9505988915231 -"Tfru19981_t",0.0491576224525731,0.157831492140397,0.211660959530234,0.152543318596755,0.425475976116554,0.17982755946863 -"Tfru19982_t",0.317020289703575,2.16296148167686,1.63801621058341,112.148696562005,111.403097332972,74.5698744686054 -"Tfru19983_t",0,0,0,0.142925729979087,0.119595138681446,0.101093848398648 -"Tfru19984_t",0,0,0.0597404756130751,0.430547533413466,0.480355701524816,0.101511246616644 -"Tfru19985_t",45.8740873159869,49.2442043216129,51.8794936871721,52.0249657123866,59.7975693407219,42.0550409338366 -"Tfru19986_t",57.3919420911588,53.9884939703215,58.2567511886137,60.7083112981958,68.780328783325,70.1100682409069 -"Tfru19987_t",4.40122073828581,3.57803642118748,3.99049476143804,2.57675793062093,2.74890298124968,3.67091423444803 -"Tfru19988_t",11.3016367274886,14.3970285839637,11.876188789729,14.435808649361,12.2385612042508,13.4609833882419 -"Tfru19989_t",8.04354671215987,11.119354550673,5.00262929562043,7.85787417587149,3.09420614120507,8.82742880485212 -"Tfru19990_t",101.87683698981,96.1156293228514,115.229375658537,87.6852587035497,89.1649403179388,78.1524063855753 -"Tfru19991_t",34.9664811427106,42.282630172812,39.8879082631257,38.9870488522412,38.5186850983528,35.2178180626813 -"Tfru19992_t",33.1115817242513,27.8959450721728,27.6893212578941,26.1828763974718,24.8695558743437,30.8326358738181 -"Tfru19993_t",3.47150317237386,1.95055593024336,3.28844163488336,8.25898102490722,7.51176077668585,10.6674897219333 -"Tfru19994_t",4.96153646119117,5.65938385799737,5.10789024814475,6.01963571805346,5.84422993855051,6.55045042554647 -"Tfru19995_t",1.45382605043296,1.00024976539409,3.04048744486125,14.9307036983839,17.5268227961338,14.8154346923902 -"Tfru19996_t",7.52605705964169,5.40253863937968,7.95644800515843,3.8607643652326,4.76638455109156,4.70053261600121 -"Tfru19997_t",671.987979808716,1046.0584324637,616.820883763065,974.269729832826,892.028258181629,728.194085476984 -"Tfru19998_t",5.44932173652632,7.69106462626149,7.46920635123236,8.64291203471371,9.94410952028904,10.4988967054786 -"Tfru19999_t",97.4754545815052,101.502697447168,85.705726233197,123.232855183641,55.9921937085314,44.5461060762598 -"Tfru20000_t",13.9647855846997,12.4547370743771,14.0301058670353,12.8399347079893,18.0345682478153,14.9202783747408 -"Tfru20001_t",2.93349755442647,4.55902597068767,5.15987275844997,3.93820911847278,5.13210639690959,6.94107659257757 -"Tfru20002_t",11.075322982731,13.0096794244986,8.83966947512054,6.14718509389152,4.67613146741602,7.51020023602043 -"Tfru20003_t",8.61956177857336,9.93962068169426,8.46821241815339,6.02766546778853,6.83005763105598,6.66167555921724 -"Tfru20004_t",0.563072230371632,0.180786876721138,0.484890857690576,0.232972771654919,0.196068291659508,0.0827614750750687 -"Tfru20005_t",10.1353001466894,10.1240650963837,13.479965843798,10.2508019528164,9.94210740009188,5.02596333700944 -"Tfru20006_t",4.52522347001748,4.57543532434274,4.26608644525409,3.18623619400741,2.10266833882117,3.28758494251841 -"Tfru20007_t",0,0,0,0,0.292611043534483,0 -"Tfru20008_t",0,0,0,0,0,0 -"Tfru20009_t",0,0,0,0,0,0 -"Tfru20010_t",0,0,0,0,0,0 -"Tfru20011_t",215.052932019405,249.969027218132,186.807497822603,323.00635154868,321.165103454644,212.384846682017 -"Tfru20012_t",0,0,0,0,0,0 -"Tfru20013_t",12.480319129884,11.6205445827232,10.9316956215647,10.770145330037,9.99969675684863,12.7834801846032 -"Tfru20014_t",0,0,0,0,0,0 -"Tfru20015_t",0,0,0,0,0,0 -"Tfru20016_t",18.700817345286,17.1099938102797,20.5468003557829,17.5650541467518,19.3490144369429,21.4669014916006 -"Tfru20017_t",1.45788072488412,1.60904241906037,2.98171063640183,1.31950522080476,1.73503750000327,1.59995817335473 -"Tfru20018_t",37.41887892457,37.3416928639265,38.4643981555847,22.6710064562709,25.3450307485462,22.6912326729819 -"Tfru20019_t",0,0,0,0,0,0 -"Tfru20020_t",1.38478643029859,1.11154129148876,1.987519669435,496.564821870198,347.588156906251,89.4958288680775 -"Tfru20021_t",0,0,0,0.480104109543009,0.40173394651005,0.169792982945795 -"Tfru20022_t",0.0927778871026476,0.0372355080160047,0.0798958762754654,0.191935602048116,0.0803024233222739,0.2036390717605 -"Tfru20023_t",0.145346672614961,0,0.125165598559574,0.30068804092486,0.629012494103106,1.48877307537939 -"Tfru20024_t",243.284844513479,198.236029817053,220.010259517402,177.368873017334,110.764102578042,147.010951310761 -"Tfru20025_t",11.6510741507328,16.2431070478145,14.2579148256352,39.3264840676473,35.5607851774139,39.9298563833816 -"Tfru20026_t",10.1164328049387,14.122200003557,6.43914749448365,20.0185818240865,21.6999430688177,22.2046551205239 -"Tfru20027_t",0,0,0.0650590970930161,0,0,0.055274334376239 -"Tfru20028_t",0,0,0,0,0,0 -"Tfru20029_t",2.54963207197109,1.84188632823327,2.52496429021393,3.42848245752565,4.85494559940218,2.14521453111789 -"Tfru20030_t",0,0,0,0.180288057732956,0.301717196341573,0.127520871009082 -"Tfru20031_t",0,0,0,0,0,0 -"Tfru20032_t",0.905862114700271,0,0,0,0,0 -"Tfru20033_t",0,0,0,0,0,0 -"Tfru20034_t",0.0316185083821782,0,0,0.0981168729702122,0.0273668966196157,0.092533021944114 -"Tfru20035_t",2.65533806876801,1.76859898834055,1.31360748562254,0.525951307629833,0.68459570978915,0.537354255375192 -"Tfru20036_t",41.1223142720583,34.519907285668,45.1442674135879,10.9993398772509,8.76234088469235,8.26806970107276 -"Tfru20037_t",3.20433304203614,2.96616155565327,2.73716489203149,3.28777538934359,3.48919093007006,3.87583428619115 -"Tfru20038_t",9.75120444668586,7.56906688966153,9.78143608743366,15.9055919505298,17.0654940747075,16.7382528991475 -"Tfru20039_t",6.09632822589265,4.65470211621663,6.21020747685052,5.15240932427263,3.9896091572883,4.78665952630198 -"Tfru20040_t",0.568919030054949,0,0.326617227843945,5.88479755038045,5.74488611995749,4.30116671471266 -"Tfru20041_t",0,0,0,0,0,0 -"Tfru20042_t",0.790066239229913,0.211390297858886,0.113394539133909,1.63446101242542,1.36765851382418,0.867061972472413 -"Tfru20043_t",16.4189661442568,18.0115550859698,16.3779389567969,26.6074635822956,35.6463634198926,38.8411127241605 -"Tfru20044_t",45.4695338195979,52.8344987761941,60.4124019934242,85.5550472732545,103.448562019877,114.6925343152 -"Tfru20045_t",0.0447577926326305,0,0.115629807087001,0.13889000078948,0.309915159587934,0.229225049965181 -"Tfru20046_t",0,0,0,0,0.293200985154512,0.247842983170878 -"Tfru20047_t",0,0,0,0,0,0.0424482457364487 -"Tfru20048_t",5.18301307539099,4.70891594355892,7.0629037961427,8.42476926596725,6.70446293375687,5.7506293261289 -"Tfru20049_t",28.4959820707171,25.0757757349591,27.8112928216517,32.3141429307491,34.8953373487411,32.7401826210856 -"Tfru20050_t",19.8486055009464,21.8603120659456,20.272700628237,65.8903321327763,97.4844945806036,98.6142718093533 -"Tfru20051_t",0.116357862564332,0,0.100201822669576,0,0,0 -"Tfru20052_t",1.87383740010663,6.26705436960823,2.15154545628056,12.2756731057131,10.5421558677117,5.48387150867311 -"Tfru20053_t",7.7598306206004,8.52343767837433,6.99892925499239,8.2801037385259,6.32755378365538,7.35070720334901 -"Tfru20054_t",7.35434101050448,6.46656205030292,8.01505389395835,5.23981404843053,5.59946785161047,5.24674502695196 -"Tfru20055_t",11.2644415118317,12.0096518658703,10.4408863371629,10.8512374072965,12.7267833965533,10.5063101238537 -"Tfru20056_t",113.997731967795,118.146440670085,110.686721986897,32.9126411225955,61.2222830909008,74.9471778536894 -"Tfru20057_t",900.61175017041,1009.99338185663,976.409576541145,18.5643511736824,360.018596436682,728.826792814098 -"Tfru20058_t",0.392571854072184,0.630219673055931,1.35225637322306,4.8728323641468,6.45590206564515,16.0843147209213 -"Tfru20059_t",0,0,0,0,0,0 -"Tfru20060_t",0,0,0,0,0,0 -"Tfru20061_t",0.954663372402812,0.0957862287173076,0.924874209810945,0,0.10328671067943,0.0873083236170138 -"Tfru20062_t",0.0942172449773242,0.0504175738444744,0,0.064971098188624,0,0.0919103698338358 -"Tfru20063_t",0.798098579328751,0.337167525084923,0.904321449592924,1.30348265740927,1.56334765284386,0.614650598263777 -"Tfru20064_t",0,0,0,0,0,0 -"Tfru20065_t",59.4561956691455,61.9430943788585,51.2008302984553,52.6109910436588,35.8256101443075,33.1064414096147 -"Tfru20066_t",67.4619632305584,77.1291922947681,68.0809074057304,92.3339260796022,57.4784988498535,47.9878180959354 -"Tfru20067_t",0,0,0,0,0,0 -"Tfru20068_t",8.90523089705133,9.61834093383334,8.51457763919136,6.50217381716237,4.5339887338001,5.26980247926855 -"Tfru20069_t",26.5610072208129,28.2669754600504,24.4150728842139,25.46768957638,28.6722441184136,24.1274924007628 -"Tfru20070_t",0,0,0,0,0,0 -"Tfru20071_t",382.682719607731,498.872619055418,407.458815013909,521.102431379001,427.77141189272,267.239390549468 -"Tfru20072_t",26.8118223738662,24.1218255978309,25.0131464781021,14.4446216468226,14.2140094611608,15.3662649565944 -"Tfru20073_t",13.829718043457,13.5861115759035,15.6423169659317,12.8106403676587,14.8286218143009,13.5917822711892 -"Tfru20074_t",1.45012157833338,2.09517219270263,1.66503373918145,2.89996141656071,2.76128522727794,3.04142413410154 -"Tfru20075_t",76.8818665404901,78.7118296639346,68.6675501836759,46.1916715435356,65.1671059178203,107.326787494867 -"Tfru20076_t",1.16357862564332,0.373592825578862,0.50100911334788,0,0,0 -"Tfru20077_t",141.277950572316,193.051475670317,172.629558879882,190.927333435747,231.194796212569,221.549981160134 -"Tfru20078_t",1.87659542918038,1.75151961083077,2.55558892768078,0.180569026134617,0.18886712809953,0.542808320544634 -"Tfru20079_t",0,0,0,0,0,0 -"Tfru20080_t",12.5532746899864,4.5536993330435,23.4915686905748,0.124854660671386,0.522369571252292,0.441559337833173 -"Tfru20081_t",1.15923409506056,0.985229781092307,1.29188778513275,0.916952085839854,1.06237759555986,0.898028471489285 -"Tfru20082_t",0,0,0,0,0,0 -"Tfru20083_t",0.51472440910296,0.767295899536805,0.411594882965707,5.81860967421206,7.09636204944645,5.78336449132219 -"Tfru20084_t",6.75460315750331,8.60709059010758,8.72511147345936,9.78157840065917,14.1773726610592,13.8373602021192 -"Tfru20085_t",6.24401448976974,7.97355633646777,5.62145765963169,7.04585220221227,8.10661102197476,10.3826114571584 -"Tfru20086_t",66.4472318018069,66.9635851213959,68.0604296557741,62.3733861617444,57.0056270788216,49.6860413927513 -"Tfru20087_t",5.72573660721968,11.3313645328188,5.95088145443052,47.4829170149088,44.2606008894116,47.8864097119723 -"Tfru20088_t",10.6353562083003,6.20531721698847,10.2361491741156,4.62227892698322,4.75734194210279,2.09242756855754 -"Tfru20089_t",10.4523019311288,12.2177345792826,8.66348387168338,9.1899243860892,7.01128825464352,5.59207776025365 -"Tfru20090_t",30.2988244093745,32.94292540174,29.5787238725869,16.5535174634926,13.6368258852716,16.3033552129638 -"Tfru20091_t",9.6646216573449,8.80592992060117,7.95718523854792,6.9235378875217,6.86726162819725,6.76043992649238 -"Tfru20092_t",12.736267032406,15.6492915433002,15.1019045576334,45.4508821650579,52.2776501717128,51.6449861281693 -"Tfru20093_t",14.2724811365857,13.0861981421082,14.1893531317343,19.4442164364919,21.0910321917776,20.5873991821776 -"Tfru20094_t",41.1835710089858,41.7955831828988,43.1597914328946,39.2000896971492,52.0019546775265,46.6623498192916 -"Tfru20095_t",0.691799294052063,0.763529135550006,0.670212499955641,1.11810143884823,1.04785776681057,0.506145629038622 -"Tfru20096_t",70.1404001102932,78.5089823166091,68.6325055670523,75.6741000993805,83.2881416101191,65.8291316532292 -"Tfru20097_t",0,0,0,0,0,0 -"Tfru20098_t",0,0,0,0,0,0 -"Tfru20099_t",0,0,0,0,0,0 -"Tfru20100_t",165.783790847797,137.061591558191,169.734179769749,256.325879573381,167.586049479203,120.929777469057 -"Tfru20101_t",2.0573969821579,1.65143277592615,3.54346363922125,0,0.296791201299262,0.50175559041941 -"Tfru20102_t",32.3424930836442,27.3270461332238,31.5596329488448,40.6011284628076,48.3603398446031,48.9376161668895 -"Tfru20103_t",0.0366217858637521,0.0587911987942324,0.0630738587335954,0.265166480728419,0.158487019002439,0.187556852129313 -"Tfru20104_t",0.0330359326667115,0.0530346087432045,0.113795856810749,0.888466354506252,1.02937412326366,0.338384128025674 -"Tfru20105_t",6.84684570687296,4.65291184617194,11.8646974186592,0.130348265740927,0.399926143750755,0.676115658090155 -"Tfru20106_t",2.93892956282367,3.33715297865623,3.58024874241567,0.81560348302059,0.930637939227633,0.944002625319794 -"Tfru20107_t",0.656331068526933,1.50521216555769,0.968915838849561,0.387941267086092,0.2434615323158,0.342996985638268 -"Tfru20108_t",0,0,0,0,0,0 -"Tfru20109_t",17.8811077164916,15.3426690313873,16.4603096880033,16.4230842462575,17.7448464116265,12.0674521127017 -"Tfru20110_t",0,0,0,6.37608763331816,1.10005815912737,0.0464939938172297 -"Tfru20111_t",1.21956167026158,1.23064048973344,1.59034547750892,1.62191952394351,1.68891550469758,2.6768275743549 -"Tfru20112_t",0.479450469843391,0.684169993831169,0.321128732892858,1.9286363563443,2.53599330216078,2.41650837617972 -"Tfru20113_t",0,0,0,0,0,0 -"Tfru20114_t",0,0.923746644068121,0,0,0,0.841987120909137 -"Tfru20115_t",0,0,0,0,0,0 -"Tfru20116_t",0,0.0648399086701775,0,0.0835565806031583,0,0 -"Tfru20117_t",0,0,0,0,0,0 -"Tfru20118_t",0,0,0,0,0,0 -"Tfru20119_t",0.334132180340984,0.536402880816923,0.369949683924378,0.44436908775316,1.44601394951203,2.5494030496168 -"Tfru20120_t",1.98273443465159,1.95087414590439,2.56115401026698,5.16034245795828,6.69842037496506,8.6102558112322 -"Tfru20121_t",0.0973469024002867,0.156276952530671,0.083830493589147,0,0,0 -"Tfru20122_t",20.6012707369473,22.549420467463,22.2336356396732,39.9900730351676,41.1041635875848,35.9198677647781 -"Tfru20123_t",66.9152419633041,60.8377517902891,60.8406687975102,32.423611017636,48.5173427719017,55.7053380779415 -"Tfru20124_t",4.31138297214173,4.64717703196228,4.19011111541589,2.03868255313278,2.66546350140466,2.74880399516792 -"Tfru20125_t",1.65537688219601,1.328739015113,0.712765674555999,1.28421936690568,2.14917766458086,1.21113418377099 -"Tfru20126_t",0,0,0,0,0,0 -"Tfru20127_t",2.9551388814077,4.57463476245875,5.08964835951796,7.64185812551498,16.4428291172078,13.4358296605399 -"Tfru20128_t",0,0,0,0,0,0 -"Tfru20129_t",0,0,0,0,0,0 -"Tfru20130_t",0,0,0,0,0,0 -"Tfru20131_t",55.5199011706957,54.4159066571841,49.8241800401806,24.9361899678295,34.0174332550049,46.0720709307283 -"Tfru20132_t",0.381431903616106,0.841962037669501,0.985412703302164,0.345827246463052,0.969457287114783,0.697673777824946 -"Tfru20133_t",10.1473207898097,6.25085861112498,6.29976740165857,14.1576768033217,19.1997229379831,22.7904154412412 -"Tfru20134_t",0,0,0,0,0,0 -"Tfru20135_t",0,0,0,0,0,0 -"Tfru20136_t",4.96124272272328,8.76104592740351,8.25994394903773,6.50030721542681,3.14902475394295,1.69391897159309 -"Tfru20137_t",0,0,0,0,0,0 -"Tfru20138_t",0,0,0,0,0,0 -"Tfru20139_t",0,0,0,0,0,0 -"Tfru20140_t",0,0,0,0,0,0 -"Tfru20141_t",0,0.383871945068223,0.274556796840356,0.659573767190016,0.827861605142152,1.39958390496496 -"Tfru20142_t",0,0.283334054693213,0,0,0.152760177139326,0.129128276946172 -"Tfru20143_t",19.4088054261185,37.1850862403945,15.9819372541886,36.781804048311,41.4456650583336,36.5888130163766 -"Tfru20144_t",0.974347153277097,1.04278616005646,0.372916061687804,7.39088104716596,5.80961127285539,4.19800022010054 -"Tfru20145_t",10.7087545179032,11.1331892102359,10.4469119482607,10.3820820000613,11.0473056043354,11.3331624891534 -"Tfru20146_t",0,0,0,0,0,0 -"Tfru20147_t",0.604391199794586,0.679186381466032,0.208189110697652,1.12530876898642,1.77861201929701,0.884389350019823 -"Tfru20148_t",16.5399665940558,16.1056892025504,17.006496975669,13.1353281955175,9.50482203838167,12.0020531021921 -"Tfru20149_t",0,0,0,0,0,0 -"Tfru20150_t",0,0,0,0,0,0 -"Tfru20151_t",0,0,0,0,0,0 -"Tfru20152_t",0,0,0,0,0,0 -"Tfru20153_t",6.98114398523296,6.26846666355068,6.72509472373329,5.01810224918123,6.04241804898708,7.61820459819893 -"Tfru20154_t",2.20665154746766,1.897753424493,4.20772456846238,1.79340953489706,3.41059307309189,1.49914780064336 -"Tfru20155_t",0,0,0,0,0,0 -"Tfru20156_t",0.448653547511068,0,0.289769222833514,1.16019818193971,0.679568638488963,1.96950792501077 -"Tfru20157_t",0,0,0,0.756738843198415,0.527676664138745,0.267627256138074 -"Tfru20158_t",55.8823195876814,47.6310074369135,57.5385838895609,49.7807614805913,40.6841642848882,26.5961159871645 -"Tfru20159_t",0,0.0907584185962108,0,0,0,0 -"Tfru20160_t",0,0,0,0,0,0 -"Tfru20161_t",1.59055790789315,1.5088391828241,2.49038609182216,1.79481260916939,2.12759957557904,2.22162866842329 -"Tfru20162_t",3.02988244093745,2.87421496793705,3.0835878936939,83.7647871646613,45.7739610134992,28.213470084239 -"Tfru20163_t",0,0.104710411517057,0,0,0,0.286327918445859 -"Tfru20164_t",24.6743763943982,27.3506523844969,20.742478004638,21.2689477898837,30.0008168865634,28.368489150621 -"Tfru20165_t",12.2091204996567,9.66002459412859,11.2148376309378,10.4639438241851,8.75585391791524,10.5490206484025 -"Tfru20166_t",0.290693345229922,0.116666963697205,0.250331197119148,0.30068804092486,0.125802498820621,0.106340933955671 -"Tfru20167_t",22.173017398656,23.5390950175387,24.3018891098036,17.1510875974904,14.7453770986065,14.7478084722733 -"Tfru20168_t",9.85644410622027,11.1127349990689,12.8498015431297,9.17564989401243,12.7891060470401,9.23313988626727 -"Tfru20169_t",32.0843649981407,29.0743453791823,33.809806959655,26.0259853874682,31.2048357024344,30.3927733010832 -"Tfru20170_t",80.0808591482668,78.0923493583789,66.9781305892049,48.9156395092296,30.1410612738839,20.0257130402069 -"Tfru20171_t",15.1726926019607,13.7386767338874,15.254390288507,10.9010115477288,7.37489168353058,6.45273759743111 -"Tfru20172_t",2495.99250986743,2674.27084369984,2652.5175992533,15235.3111128504,10375.5958514473,3111.26427831672 -"Tfru20173_t",23.0368734400834,22.7369918857978,21.2393160788997,16.4408409897232,18.0835372892091,17.8899961201991 -"Tfru20174_t",17.4483090217622,14.4824567436889,14.4691431934868,474.258013394917,470.175276674203,290.990846626812 -"Tfru20175_t",7.01548031494342,7.32054751750146,6.19243080305802,8.16377447229188,5.00951328289046,6.92925517875657 -"Tfru20176_t",0.819346977614897,1.00843343003293,1.59932011891596,3.95508391931725,4.72781822615859,3.03728514096535 -"Tfru20177_t",21.9805420377623,31.1749130732623,23.500326805386,27.3606115819832,22.4106970293711,16.2180534796872 -"Tfru20178_t",4.92568984327705,5.05202154850373,6.12699874642763,5.0950462178864,7.81614613193658,8.10858281097165 -"Tfru20179_t",0.136824717868807,0.43930622160902,0.117826898969762,13.1622027295399,8.05299904502556,1.60169537006847 -"Tfru20180_t",0,0,0,0,0,0 -"Tfru20181_t",0.69814717538599,0,0.100201822669576,0.481879809014995,1.30925204451267,0.595921632665712 -"Tfru20182_t",18.1417757147644,22.8512209692107,20.670204562124,129.625979917113,140.475416847517,100.467805430491 -"Tfru20183_t",14.4845477192151,20.2300515050954,14.968079165676,21.5748853640155,15.7964558346693,17.3797755371137 -"Tfru20184_t",5.92901919161041,7.67598235822249,6.01165311966155,4.45127828369699,4.46960454546298,4.19795513896717 -"Tfru20185_t",76.8417060785818,67.0455845662637,72.8312576853362,109.727495034069,108.826760288491,105.015087833754 -"Tfru20186_t",2.53027788867535,2.12620092080488,2.71572384371144,4.73992047295055,3.8848447301164,3.37749838721786 -"Tfru20187_t",3.28262081970703,0,1.18599534298011,3.56142802346127,1.78804535096163,0.503811965472096 -"Tfru20188_t",0.272318887427706,0,0.117253996705728,1.92873476279749,0.87414787043724,0.312978098262922 -"Tfru20189_t",0.134201879826593,0.430885016082969,0.924545890957622,0.832896266715188,1.39387560993583,0.58912197916656 -"Tfru20190_t",0,0,0,0,0,0 -"Tfru20191_t",3.5323213779165,3.92220106265573,4.0558214978239,5.90692911790232,5.85991036903062,6.37479246972943 -"Tfru20192_t",16.3041637662193,16.9269460588828,18.1179567588402,13.6836645422395,13.7738020033539,15.321621537197 -"Tfru20193_t",1.23136346272694,0.49526939528521,0.537590411797474,0,0,0 -"Tfru20194_t",0,0,2.0096032213176,25.4054845050398,21.2786966387298,7.49822419392641 -"Tfru20195_t",0.207946477157048,0.166914616378675,0.134305165781127,0.752836518305684,0.809931434238702,0.304282474388008 -"Tfru20196_t",0,0.318082570834833,0.341253377204877,21.7247109568212,21.6083593964816,4.92880196720954 -"Tfru20197_t",2.19994439990697,2.5384134458112,2.60491939653608,8.10676611809366,6.78345192494957,7.3436159858029 -"Tfru20198_t",3.0386732023715,3.87383964991188,2.15497877349803,10.5387959535218,7.2713844318319,6.40805942870746 -"Tfru20199_t",0,0,0,0,0.420311238834214,0 -"Tfru20200_t",2.22087595840654,1.65971252092852,2.17630686137221,0.950579877782512,1.32568540233945,2.57738628260107 -"Tfru20201_t",1.46444584726521,1.05793412868018,0.882777475488734,0.858384860583288,0.380258337515904,0.642865239322951 -"Tfru20202_t",8.46475085562797,9.57073581497831,8.0732489107754,9.508974243289,11.5806447614224,11.7869074639966 -"Tfru20203_t",5.61566689648713,10.9985128503638,7.54407198590888,8.82929429261181,7.38803765801103,11.6685006622268 -"Tfru20204_t",0.212684498155563,0,0,0,0,0 -"Tfru20205_t",3.52984775788903,1.13333621696933,3.6476831522172,3.65121191970587,4.88832566067947,2.06605242785097 -"Tfru20206_t",1.35906541212048,1.43432560102034,1.66884964933865,6.27400280478598,7.5589286933663,12.3187911994747 -"Tfru20207_t",4.30701086546576,4.52089413916685,4.48339648248886,5.28736627230802,4.95683107747414,4.19001252900941 -"Tfru20208_t",0,0.186280400599405,0.199850044108933,0,0,0.33958596589159 -"Tfru20209_t",0,0,0,0,0,0 -"Tfru20210_t",0,0,0,0,0,0 -"Tfru20211_t",0,0,0,0,0,0 -"Tfru20212_t",0.473786801315042,0.69453074402395,0.5330002765744,0.109859473865088,0.150878313730946,0.205631076507996 -"Tfru20213_t",0.934486949626779,0.750094605305724,1.44852379022671,0.538844837119949,0.0808830303874517,0.0683704781161042 -"Tfru20214_t",0.958065593972316,1.23110040602254,1.19968559213915,0.557440908371748,0.443781093764529,0.306668153089554 -"Tfru20215_t",0,0,0,0,0,0 -"Tfru20216_t",0,0,0,0,0,0 -"Tfru20217_t",0,0,0,0,0,0 -"Tfru20218_t",0,0,0,0,0,0 -"Tfru20219_t",0.374211032389521,0.901115879959705,0.644505264743287,2.90307941516541,2.91503162077894,1.64271874814373 -"Tfru20220_t",0,0,0,0,0,0 -"Tfru20221_t",4.07513021652544,4.52911600860344,3.91422716987982,4.21524242445784,3.52716409006772,4.47227114408345 -"Tfru20222_t",0,0,0,0,0,0 -"Tfru20223_t",0,0,0,0,0,0 -"Tfru20224_t",0,0,0,0,0,0 -"Tfru20225_t",0,0,0.623669962787562,0,0,0 -"Tfru20226_t",1.16143378025043,0.932260438022828,0,0.400455501508224,0.837717100441464,0.28324912362386 -"Tfru20227_t",17.0579445221213,14.034384292875,21.2997539396506,9.26332852981207,7.38211617444864,8.11213987556254 -"Tfru20228_t",14.3535317096945,10.7184645845746,14.2464933873882,7.86019692910112,9.13490506511546,10.1926983631682 -"Tfru20229_t",1.6327105026253,1.19786355884544,1.91728929242316,2.14944136675262,1.28469689608338,2.2805057532755 -"Tfru20230_t",0.776436014523544,1.05949129878811,0.936081352628535,0.321252657402161,1.14245411590705,0.624875839270014 -"Tfru20231_t",0,0,0,0,0,0 -"Tfru20232_t",0,0,0,0,0,0 -"Tfru20233_t",11.9600622668583,12.2474139828087,14.4192065474351,12.6711860283098,10.1322569951756,9.73152586552227 -"Tfru20234_t",108.681778557493,127.35542972828,98.903004107378,51.0393209314684,59.0915038637479,39.0575443453691 -"Tfru20235_t",112.14592748264,138.047835742318,100.669746275439,65.1741328704635,61.7381697042332,44.6491472323687 -"Tfru20236_t",26.6445389067156,59.6617059119075,22.3807804162685,99.5496287172186,68.8702182321687,43.8351336543404 -"Tfru20237_t",0,0,0,0,0.200866973255025,0.509378948837384 -"Tfru20238_t",6.08157706705052,6.26538168230324,4.66335220638627,4.75903274139101,3.91810718472121,6.63169536336468 -"Tfru20239_t",0.407817362968192,3.60081822906229,1.40477118383367,2.10919523852633,3.17681844109161,2.38699261461661 -"Tfru20240_t",61.0832420748572,56.1498109503975,54.6916318917155,44.0552903467011,37.2260119318884,33.4874379731361 -"Tfru20241_t",0,0,0,0,0,0 -"Tfru20242_t",0.896907937061717,2.87972263417728,3.08949676729255,1.23699421818199,1.29384064623344,0.874947470838117 -"Tfru20243_t",2.75831443433458,3.19455159789655,2.4092616480712,1.95644676534224,2.14867363604789,1.75861568921625 -"Tfru20244_t",0.705969551577806,0.566668108484667,0.6079471920362,0,0,0 -"Tfru20245_t",10.8400486156706,12.6165912612422,10.7351707564579,5.0457393190036,11.2589178299332,8.72407300761486 -"Tfru20246_t",0.81961343191656,0.65788785382424,0.352905931548458,0,0,0.149914780064336 -"Tfru20247_t",1.30999231575816,1.18865839351973,1.66763006297814,0,0.0492975215717417,0 -"Tfru20248_t",17.2049223158309,16.9762669972828,20.5256576770742,10.1570077200722,12.7122105451607,12.8333641395734 -"Tfru20249_t",0.13062663787836,0.110235765138125,0.117403232772323,0.206370365639706,0.191820752872179,0.65039033574506 -"Tfru20250_t",19.7185928011585,28.6371544231517,17.8494888740612,14.5621970824107,12.8995629931516,10.9040089757493 -"Tfru20251_t",191.876552858137,170.090093808302,240.306591200875,293.191701744395,220.866304570103,138.026700313268 -"Tfru20252_t",15.8860327300752,19.936527172116,21.7681486626624,29.7196253377411,16.4112201745153,8.44215373087139 -"Tfru20253_t",0,0,0,0,0,0 -"Tfru20254_t",0,0,0,0,0,0 -"Tfru20255_t",0,0.741027527659172,1.192511801661,0,0,0 -"Tfru20256_t",4.9952115918158,9.11263581310603,7.43010055881754,14.0917044044245,9.43314737102518,1.32897426651628 -"Tfru20257_t",13.0649048866989,12.2550944922368,13.2132320302185,10.6855721161941,11.9655693182044,9.11416800318802 -"Tfru20258_t",0,0.337167525084923,0,0,0.363569221591595,0 -"Tfru20259_t",0.326888625569835,0,0,0,0.565866492749565,0 -"Tfru20260_t",9.97461996467544,10.8362950743773,8.21942115904315,11.5627939585947,14.7362755117985,16.0425693507946 -"Tfru20261_t",0,0,0,0,0,0 -"Tfru20262_t",7.21964175312569,6.32189109475511,9.04321449508928,7.46786939071364,11.3615381736821,6.72274091788564 -"Tfru20263_t",39.2951762318061,34.9597664258561,36.0061627856353,34.038717628199,25.6341432735088,21.5269333954134 -"Tfru20264_t",12.623320862031,9.85297845325888,11.0205391162827,11.616529382093,9.34354061706898,10.2547923648153 -"Tfru20265_t",3.58945658636907,3.15558619611525,3.75343999424123,3.35926354571395,2.44105479400257,3.37651396808179 -"Tfru20266_t",1.02869849107895,1.37619397993846,1.18115454640708,1.06406747543614,1.18716480519705,1.75614456646793 -"Tfru20267_t",76.298714925946,71.3725971042076,80.7977884865778,48.9485837970101,37.3176753177465,28.2961541064409 -"Tfru20268_t",3.1308214945881,6.28262469102341,4.94287500398617,4.85769934438237,2.25819392292916,0.381770557927812 -"Tfru20269_t",142.81764051124,166.175423077312,151.926003531376,126.003323549368,48.3027680113801,28.5373492050598 -"Tfru20270_t",3.57490964984883,3.16490167476461,3.75763105462892,5.16607644780478,3.32172129864662,2.88478065518043 -"Tfru20271_t",5.32257524065677,5.77341652542676,4.2119081213917,3.2735865825347,2.24118013309887,2.52596136272785 -"Tfru20272_t",10.3419182197566,8.98355294492712,10.0039607239959,5.1289368194856,4.90481243293889,4.76794730525021 -"Tfru20273_t",0.0929661122516939,0.0248740335732145,0.0533719778439202,0.0641083318534007,0.0268217795346068,0.0453449353200868 -"Tfru20274_t",0.0376053611331457,0,0.0323839373175622,0.0777966372670408,0,0.0825403668214562 -"Tfru20275_t",0,0,0,0,0,0.37478695016084 -"Tfru20276_t",17.6366676633592,15.7365911426703,16.4761096345702,10.180276924471,12.6073675715923,12.9612356709794 -"Tfru20277_t",0,0,0,0,0,0 -"Tfru20278_t",0,0,0,0,0,0 -"Tfru20279_t",11.6454281867326,10.8307522124466,11.7307375763051,14.935044258807,15.9933263718042,16.8518015687665 -"Tfru20280_t",0,0,0,0,0,0 -"Tfru20281_t",0.140779852151567,0.113001265214888,0.0606164356660527,0.436860547099881,0.456936600240798,0.231749282964977 -"Tfru20282_t",0.352911189925686,0.195345766511831,0.204302646301184,0,0.41705782916504,0.17792968510169 -"Tfru20283_t",0.0893094012453374,0.0716869295006923,0.0769089822474492,0.431106950241667,0.334968099269365,0.370271444737215 -"Tfru20284_t",0,0,0,0,0,0 -"Tfru20285_t",0,0,0,0,0,0 -"Tfru20286_t",0,0,0,0,0,0 -"Tfru20287_t",0,0,0,0,0.0594553101539812,0.0502576122864904 -"Tfru20288_t",0,0,0,0,0,0 -"Tfru20289_t",0,0,0,0,0,0 -"Tfru20290_t",0,0,0,0,0,0 -"Tfru20291_t",51.2638726006744,45.6858085033863,55.2244560401062,80.0437146158515,70.8580385468538,38.2195731635017 -"Tfru20292_t",5.80922818100434,5.10316418527954,5.56236404198355,3.61378170655052,2.70743037355443,4.08677259483894 -"Tfru20293_t",8.2586472080406,11.0636665858375,9.4172050615236,7.65888115087932,5.47202489446333,5.83397178013077 -"Tfru20294_t",335.102843658176,249.767675007044,342.32861130959,219.917185775195,178.73794134112,200.534049936339 -"Tfru20295_t",5.05844974194126,5.41972202125897,4.77827142596579,6.38487526264134,5.65123511545556,8.34750945122159 -"Tfru20296_t",0,0,0,0,0,0 -"Tfru20297_t",11.7525405065252,9.10352317729292,10.2843257819638,12.8289734762028,13.0884919772974,9.52708427308855 -"Tfru20298_t",19.8400571083184,15.3708724671068,11.0242558656717,11.5013175653759,9.48090652729531,10.0588680333295 -"Tfru20299_t",0,0,0,0,0,0 -"Tfru20300_t",0,0,0,0,0,0 -"Tfru20301_t",0,0,0,0,0,0 -"Tfru20302_t",6.62726870122787,6.57124642856926,6.2106531108934,5.64540052706257,4.38645000528143,4.99136216687522 -"Tfru20303_t",4.47686876216266,4.52514309982397,3.5220940668356,2.28681167966539,2.77460721740954,3.31587822747564 -"Tfru20304_t",14.7499134784478,13.8985086671435,13.2541769706759,0.663349952857161,3.88547259702811,3.28439250969319 -"Tfru20305_t",3.33852311599889,3.95375599448118,2.969237854038,3.62314397716366,3.6475348615704,4.16440796217803 -"Tfru20306_t",0.18710551619476,0.150185979993284,0,0.193538627677694,0.161946201154385,0.410679687035931 -"Tfru20307_t",0.760274902909027,0,0.327356180848117,0,0,0 -"Tfru20308_t",0,0.203112966918628,0.871635132137758,0.261743505503869,0.219017603368431,0.370271444737215 -"Tfru20309_t",13.9556711413095,16.0820036635901,17.0155220120774,22.2964138767375,21.4075298239788,19.8143942861349 -"Tfru20310_t",36.1924599668116,33.2765860266582,32.3005677034757,33.3528199545975,32.464927881025,31.6151874302778 -"Tfru20311_t",0,0,0,0,0,0 -"Tfru20312_t",0,0.360928661999918,0.129073534286234,0,0.0648651599628181,0.164491685530003 -"Tfru20313_t",0.161093723435182,0.258613633813939,0.208089307672389,0.833162452802346,1.11545686394353,2.12151692593442 -"Tfru20314_t",0.0729890328162011,0.234347541327488,0.125709324009442,3.54843237174837,3.15872477490526,4.11191103964473 -"Tfru20315_t",11.2923359111689,11.1487598785662,11.0408253677555,11.1705224798525,11.4953602444144,11.1962376635409 -"Tfru20316_t",0.558002502540979,0.29859854620067,0.320350033804135,1.98809162999692,2.62950433328239,0.861871687602344 -"Tfru20317_t",0.292719082827343,0,1.51245399235053,0.605566855939266,2.28022508315286,1.0708198576024 -"Tfru20318_t",199.567507269316,211.933872910523,214.970127446089,163.866391217165,174.513226363966,166.582856019244 -"Tfru20319_t",20.5343282612291,26.2272344037983,16.3688903179826,10.5484145686299,14.5908044338163,18.9826031173124 -"Tfru20320_t",0.226901760355023,0.500856553130878,0.439643108512427,0.29337894607456,0.196391206801672,0.124507210991987 -"Tfru20321_t",0,0,0,0.250428944747218,0,0 -"Tfru20322_t",5.01768461945505,4.71804386637605,5.43210154021688,5.48678706759306,4.83931728398369,5.66401575191877 -"Tfru20323_t",0,0,0,0,0,0 -"Tfru20324_t",0.803927050444474,0.645296698727126,1.38460700416142,0.831567883514686,1.04373939212898,0 -"Tfru20325_t",3.7063401516815,3.93126000886832,4.29362705058825,4.01633311806778,4.1245247827618,3.06679657747158 -"Tfru20326_t",0.0546231318409931,0.0438449317405621,0,0.565011988473892,0.56733818713903,0.319714225364774 -"Tfru20327_t",0.17429538749263,0.419710612138908,0.900569078432787,0.180288057732956,0.150858598170786,0.892646097063577 -"Tfru20328_t",16.320487207192,15.1832764480917,16.5197064804618,20.645394106737,28.7150213231578,27.5614026227834 -"Tfru20329_t",9.90688405323673,9.99688079766618,9.06758973715816,9.66193344440833,10.4366905928585,11.5143440914643 -"Tfru20330_t",0,0,0,0,0.151803432814862,0 -"Tfru20331_t",0,0,0,0,0,0 -"Tfru20332_t",0,0,0,0,0,0 -"Tfru20333_t",33.78499496386,31.0774763825829,32.6334393943122,35.5417971818053,36.4280707348135,45.5875884035169 -"Tfru20334_t",14.9078956692548,16.4712319143783,15.5565944564628,24.3099062063803,22.011497758155,16.9381793258494 -"Tfru20335_t",0.15395915107779,0,0.044194084280656,0.265421025740026,0.222094820764566,0.150189516985651 -"Tfru20336_t",11.4262818147694,11.8794775677589,11.0111679095511,9.23018807491883,9.56017512734376,9.91243516630055 -"Tfru20337_t",9.43403854585263,8.94741926668271,8.62339148921734,7.74130227319599,5.49687468027443,5.51411766321958 -"Tfru20338_t",7.0114881979205,7.77685338587379,8.67270343160437,2.50542948819182,2.75849181784215,4.85005024426653 -"Tfru20339_t",3.44751006189525,2.76724966592377,2.57819506147443,0.75074595099166,1.25639471824309,0.531015635649051 -"Tfru20340_t",151.316578117837,177.596179272699,142.056846502696,79.3671887541259,83.4117296441023,71.9405325134661 -"Tfru20341_t",50.7468086714013,43.6495255447779,51.6196459875745,37.2255858016881,27.0220367399159,30.4002863465598 -"Tfru20342_t",12.9246733494535,18.1551744276497,10.335102281062,10.026789672379,9.98816542834054,8.1052826144674 -"Tfru20343_t",103.622555320879,97.0384584390754,107.384233456888,81.7515255518009,80.8213112806403,72.8157503169632 -"Tfru20344_t",11.3517702696802,14.6023181067528,12.0941733925637,12.7582105056083,11.336935450236,12.0853777224666 -"Tfru20345_t",7.02451630099096,5.92321327851892,4.70491564990913,7.63300655239662,8.72074822060921,10.3306983998726 -"Tfru20346_t",11.4041235436354,9.76412742327379,5.89241125526611,3.9320743813251,7.89652607981746,9.17804060755867 -"Tfru20347_t",2.55221397786676,1.70717734220214,3.11361309226931,2.63996487576561,2.02494250000382,2.80093943512607 -"Tfru20348_t",6.73880027578455,7.14001817826895,7.5053844372632,7.43519519377836,6.6881183009363,8.28299201938352 -"Tfru20349_t",18.3418153787179,17.584750022114,15.7253067504776,15.5076714868627,13.9114911155626,14.5658357209133 -"Tfru20350_t",11.1667579634381,26.4210100800705,11.1258094880366,75.7846563053251,73.7815128206746,81.1775790133536 -"Tfru20351_t",4.75530434555363,3.62124772950425,5.67005611355795,1.38735454586376,1.89963599089948,3.21152707365689 -"Tfru20352_t",1.33438057082378,1.42810864364229,1.72365703165296,8.1665359520016,9.86521382214123,5.89836775302764 -"Tfru20353_t",0,0,0,0,0,0 -"Tfru20354_t",0,0,0,0,0,0 -"Tfru20355_t",0,0,0,0,0,0 -"Tfru20356_t",0,0,0,0.057971210024873,0.194032940142279,0.164016170317219 -"Tfru20357_t",7.13573252787251,6.96773519439946,9.75590215322664,16.4362086398367,19.0380380483165,17.3846009841681 -"Tfru20358_t",7.44919596988204,9.63335785956923,8.55318809467199,8.13338932373601,8.95490693575358,9.08350637828242 -"Tfru20359_t",0,0,0,0,0,0 -"Tfru20360_t",1.87144591485299,1.83077389186383,2.19076828721432,0.967895232326177,1.11361265228195,1.30503607706545 -"Tfru20361_t",0,0,0,0,0,0 -"Tfru20362_t",0,0,0,0,0,0 -"Tfru20363_t",0,0.0590486033423683,0,0.0760935585177624,0.573051312491131,0.699689822892215 -"Tfru20364_t",0,0,0,0,0,0 -"Tfru20365_t",1.12765606404621,0,0,0.583213716961609,0,0.41251718004278 -"Tfru20366_t",0.338751519239708,1.63145576653995,0.875149789928636,3.15358707437727,3.51841182185415,1.98274386536702 -"Tfru20367_t",3.21570820177789,1.06869827602847,1.73075875520177,2.49470365054406,1.39165252283864,3.23500314875672 -"Tfru20368_t",0,0,0,0,0,0 -"Tfru20369_t",0,0,0,0,0,0 -"Tfru20370_t",0,0,0,0,0,0 -"Tfru20371_t",0,0,0,0,0,0 -"Tfru20372_t",0,0,0,0,0,0 -"Tfru20373_t",0,0,0,0,0,0 -"Tfru20374_t",3.71727327323193,2.98378337954535,1.92068270659134,3.07606523906182,1.93045602554874,3.80757004164502 -"Tfru20375_t",11.767990520514,19.9414256081355,15.7640470590517,16.9063898496663,16.1271950433626,16.0239650131024 -"Tfru20376_t",0,0,0,0,0,0 -"Tfru20377_t",5.72206900610478,7.72458107005706,4.70359144060716,8.07110004587783,8.32944965875482,6.08941769177736 -"Tfru20378_t",0,0,0.0877981989896042,0,0.0882449566969891,0.596748153654152 -"Tfru20379_t",9.19640219095727,8.37931127429986,8.77566377119761,8.48420664585915,9.03544811056036,6.72842370880466 -"Tfru20380_t",18.8434480201749,13.234612449184,16.9032037904206,12.9942189651764,18.348352289537,10.3399160711382 -"Tfru20381_t",8.58500200580315,8.36766120644991,12.6737020672313,8.24587569160347,12.7381917053423,9.87030157791456 -"Tfru20382_t",11.522405821263,11.4574839639912,11.6256677654935,14.675853870524,14.6618498779006,14.2810323240407 -"Tfru20383_t",1.38753042268255,2.33436988717504,0.919344688424621,0,1.32206989669671,0.996841414768436 -"Tfru20384_t",0,0,0,0,0,0 -"Tfru20385_t",0.162182194539474,0.650902558079002,0.558654177354702,0.671033543067835,1.82486481879951,1.5425594164921 -"Tfru20386_t",36.861695930329,30.9643645486154,34.511859402832,39.4591688807568,41.5507681818966,37.3180720374436 -"Tfru20387_t",0,0,0,0,0,0 -"Tfru20388_t",0,0,0,0,0,0 -"Tfru20389_t",0,0,0,0,0,0 -"Tfru20390_t",61.3666434562708,69.9081290543051,55.7755488176642,68.6173724115477,52.9999042421408,28.7783260180446 -"Tfru20391_t",6.04250969817836,4.85020569727731,7.04993055831142,7.25837210622331,16.3648327120115,17.9689038007508 -"Tfru20392_t",29.2982027313899,41.4221662257567,30.677641777472,56.4785088018812,60.0825754572108,58.5014208783423 -"Tfru20393_t",0,0,0,0,0,0 -"Tfru20394_t",0,0,0,0,0,0 -"Tfru20395_t",22.3599543457014,26.3829488009467,24.7352969117286,29.7110709958471,29.7121198465404,31.9925849964954 -"Tfru20396_t",22.7586639414289,33.1529272157081,28.7931110372061,155.778529402758,174.853692524654,190.151104814045 -"Tfru20397_t",0,0,0,0,0,0 -"Tfru20398_t",10.5232204724151,9.57302367673268,9.66623344867593,16.1461317340884,23.9849423847483,19.2479310521016 -"Tfru20399_t",0,0,0,0,0,0 -"Tfru20400_t",0,0,0,0,0,0 -"Tfru20401_t",0,0.667658292543958,0,1.72076873889784,0,1.82569437334402 -"Tfru20402_t",13.6524347141055,17.0145835894601,15.0054193489118,13.316643922214,14.2525354152087,17.4362749899489 -"Tfru20403_t",46.8674688633023,62.6993517186756,45.9529829797324,41.7971455266212,38.2256649195342,38.0143286849306 -"Tfru20404_t",0,0,0,0,0,0 -"Tfru20405_t",2.86864701170796,2.30260748838484,1.27046135357445,1.78036655646144,1.2769260465656,3.29812516141539 -"Tfru20406_t",3.55015441612296,3.61593013407836,2.18373077316473,2.77730679845725,2.11737756892832,3.38319754015928 -"Tfru20407_t",7.99329870290562,7.22617569379508,7.75256831366543,8.56043391859363,8.56073611628456,7.02964163319457 -"Tfru20408_t",14.4178284057982,13.7271770985541,16.662089115828,20.14297122891,16.6388291605069,14.4757978937309 -"Tfru20409_t",0,0,0,0,0,0 -"Tfru20410_t",5.43952079815127,6.54929724985102,5.72520054418542,4.06361499911763,5.49277241253489,7.29621213766354 -"Tfru20411_t",4.66033894812024,4.439039901266,4.54836232043778,2.31387453977977,2.79668631993535,4.6371568803924 -"Tfru20412_t",21.1118302721853,21.9178031798276,18.9721627035154,48.5637774734652,74.6908612664422,72.6544403296208 -"Tfru20413_t",16.2145976458347,17.3747242044347,16.9087184570777,62.4026860800348,72.4040717005506,72.2276354424481 -"Tfru20414_t",0.126331393641274,0,0,0,0.218688253588929,0 -"Tfru20415_t",0,0,0,0,0,0 -"Tfru20416_t",0,0,0,0,0,0 -"Tfru20417_t",31.6348301558318,35.1461410188274,33.9176922740089,35.3229714310409,33.9089498442037,34.3345970102459 -"Tfru20418_t",11.8645182601616,9.23483092957278,8.87550866362242,16.1153348039187,14.9369380625363,10.2587902991244 -"Tfru20419_t",0,0,0,0,0,0 -"Tfru20420_t",0.588170665844439,0.157371073551889,0.590921834039717,0.811191074233696,1.18785743343812,4.51843496973372 -"Tfru20421_t",0,0,0,0,0,0 -"Tfru20422_t",0,0.338861834256204,0.54531946709121,1.09169401793071,3.10586772213926,2.47095717894986 -"Tfru20423_t",0,0,0,0,0,0 -"Tfru20424_t",1.69146663818978,0.896939002644293,2.91887577861523,1.36600359099722,2.63774525943116,1.31393601980229 -"Tfru20425_t",0,0,0,0,0,0 -"Tfru20426_t",3.27845372766624,2.13813552492878,4.05841821280727,2.11948399578743,2.12821007760934,2.54855126109371 -"Tfru20427_t",1.85044882756492,2.37651119002589,2.23092516199135,5.35940005983253,2.8829277483034,2.43694069796211 -"Tfru20428_t",1.0085727758244,0.779578092681903,1.25454998787458,1.9705829413924,1.64891332158038,1.61246710971822 -"Tfru20429_t",19.9494839826238,9.50576371573387,21.6284259656661,11.6742060770808,1.96059088275505,1.30838585250094 -"Tfru20430_t",2.27773276379885,2.25489352519515,1.79801824591453,0.863883671125288,1.80716739155334,1.66647247608796 -"Tfru20431_t",22.3166327669696,23.0985092333607,25.4638713663775,32.5908631341057,30.1682394987224,24.4485278162942 -"Tfru20432_t",33.6518838771991,26.6285715834115,33.0899439510138,35.5495270202528,34.6010480776092,32.1294630910611 -"Tfru20433_t",0,0,0,0,0,0 -"Tfru20434_t",0.720088943755264,0,0.413404091242479,0.496564821870198,0,0.027151640637619 -"Tfru20435_t",0,0,0,0,0,0 -"Tfru20436_t",0,0,0,0,0,0 -"Tfru20437_t",1.32864441164368,0,0.682496218701755,1.40017374658152,2.32528519521508,1.41622042611075 -"Tfru20438_t",10.9328572510769,14.3180729830559,10.9014092553649,45.235014595017,57.8358933303714,56.8341306613667 -"Tfru20439_t",17.9099044985284,20.4523597633931,20.9882077092336,21.5814711043586,29.7247803147414,24.8562000177 -"Tfru20440_t",0,0.216827990408311,0,5.30893258108813,3.27329202719121,0 -"Tfru20441_t",81.5823312000184,159.81350899979,69.0002493331017,366.682982623803,187.038501281225,73.5448981737583 -"Tfru20442_t",20.7212661413177,21.0865971808307,19.9159569129749,12.5632046734134,12.494018515665,12.8040378668343 -"Tfru20443_t",0.0672083014171579,0.431574432108701,0.231506291095788,5.21393062963708,6.28247614910277,9.93275366794264 -"Tfru20444_t",0.668074566770954,0.402187902685793,0.179785576459826,0.259141681393493,0.397540898360591,0.519336986604583 -"Tfru20445_t",10.4751093231231,11.6032714368377,13.3505810014716,11.2686780025407,11.6052020857168,17.167298505123 -"Tfru20446_t",36.9346764458968,38.0438071506241,44.6300446025275,42.8421237674542,51.5556863146404,46.0402195268738 -"Tfru20447_t",9.45865049635774,9.99489480536779,10.2418163222305,9.32975710449707,10.8120823143154,9.86944903625447 -"Tfru20448_t",21.0993803412161,23.7726411695821,25.5043653064917,24.8282410935099,25.8016866935971,16.7116982938078 -"Tfru20449_t",33.4866536781118,40.5544156045988,29.3430176650976,59.5530538116743,79.8326822235671,68.3422693174051 -"Tfru20450_t",7.09615272168751,7.12667947337227,6.95074933233952,4.13969672355759,5.58889435913421,7.1848668812259 -"Tfru20451_t",0,0,0,0,0,0.195748598173177 -"Tfru20452_t",0,0,0,0.169724304350165,0.284038454368434,0.360146834920182 -"Tfru20453_t",0,0,0,1.6499780473535,0.920428409092645,0 -"Tfru20454_t",0,0,0,0,0.248170117127369,0.209778361182176 -"Tfru20455_t",0.485609114285824,0,0,0,0,0 -"Tfru20456_t",41.9254821459026,39.1549383969588,39.3989003465911,34.4627293356783,35.4600720869222,34.173173679561 -"Tfru20457_t",8.24457135937557,7.43893966519744,8.31768439310397,4.45076456565247,6.95365201754699,11.1614560644604 -"Tfru20458_t",101.678773514425,61.39468367218,74.1126398309533,16.5072430608139,53.6720913285829,83.31559669817 -"Tfru20459_t",0.848037017230501,0.680702916159727,0.918750544685745,3.05603228047761,3.57531439012249,4.96363882674753 -"Tfru20460_t",79.9579281702273,69.6854588023384,74.7617139032666,118.014756366554,121.954202715697,74.8071971170757 -"Tfru20461_t",139.509064874545,109.533551706354,165.961860222934,114.656006283913,103.462166870349,89.6876735034622 -"Tfru20462_t",0.28607392771208,0.688878030820501,0.903294978026984,0.789092792983288,0.907891359252565,0.279069511129978 -"Tfru20463_t",3.3968094579069,3.40819158930608,4.02210839674542,8.1565701787343,6.56262132836815,9.00895822725969 -"Tfru20464_t",0,0,0,0,0,0.12075650260585 -"Tfru20465_t",2.46931458880932,2.45604459167292,2.49627390558558,3.22053223129873,4.32101439080107,6.79454015972099 -"Tfru20466_t",23.782349306623,23.8000605942299,18.6183827857367,53.0338532181223,53.466061998764,37.9637134221745 -"Tfru20467_t",14.7780981971284,22.9312311724869,17.3368579540061,20.0716263929751,27.733093926214,29.5537544213426 -"Tfru20468_t",29.7865784774632,37.104303573091,26.0445847376331,35.2299524762096,47.0200945195467,61.9972834214735 -"Tfru20469_t",5.16986933978138,2.71330079358281,4.96574145101913,4.52491021112488,5.24916509280173,7.34671129285698 -"Tfru20470_t",0,0,0.0796758986425483,0.191407144994019,0.160162652683522,0.203078391496843 -"Tfru20471_t",0,0,0.136501350881951,0,0,0 -"Tfru20472_t",4.20204131731053,2.85963033236216,3.77592718351232,3.55910451340455,3.29439309162373,3.31942512291782 -"Tfru20473_t",1.50416457084157,1.87812149251549,1.151390705052,4.26426687216118,3.90571710197868,3.50530182033719 -"Tfru20474_t",0,0.663280377216242,1.42319441247411,0.569828484113342,1.19203023472654,1.61219829052794 -"Tfru20475_t",11.8782217071578,11.3812796896177,12.5323287502641,11.870126219475,10.0071774789333,8.64829944012445 -"Tfru20476_t",9.89743569256884,12.5787604028877,18.6698621851442,59.3544697670233,62.617532133868,70.5167166030533 -"Tfru20477_t",2.65295926646676,2.12947910579951,3.04613540915511,2.51549284763192,2.48757888457407,5.98475582519993 -"Tfru20478_t",1.4286129257308,1.0511599742846,0.956863508308053,0.944106475213768,1.54564147110267,1.10329346877768 -"Tfru20479_t",14.2102126284045,11.2456113190921,13.1851036843566,12.1109764476382,13.3821190556049,16.0709715686598 -"Tfru20480_t",201.80954244218,208.673351788823,190.324883545095,238.924073907545,110.74877826944,55.5211859091016 -"Tfru20481_t",42.5084454350734,39.4824779959113,42.8239458247119,44.4905422470363,52.1350597401062,53.7846289618647 -"Tfru20482_t",31.9354514439406,25.8649060339119,34.3146632242794,131.241062081618,140.322778333468,127.876793988097 -"Tfru20483_t",25.88691842376,22.5823830754553,20.7783626092514,0.202090334482057,0.676407854123898,2.50148499293398 -"Tfru20484_t",0.0990688405323673,0.954247712504499,0.597193410108535,1.12722556851431,1.97219153221856,7.17575580520211 -"Tfru20485_t",16.3025359504255,12.3271373172873,14.5912211392735,9.32181249573523,7.42037623818925,9.556841363121 -"Tfru20486_t",6.7868644990034,8.39237944534524,8.52984424070181,18.7838112203083,22.3857031635,19.9962749216818 -"Tfru20487_t",10.1082004136768,10.4576023823131,7.35063424268045,3.48524774708361,5.24939517806047,3.28690159499346 -"Tfru20488_t",5.37205082678692,7.13801191111867,5.67161140351631,5.58814819409561,5.75301008154331,5.66242422533465 -"Tfru20489_t",0,0,0,0,0,0 -"Tfru20490_t",0,0,0,0,0,0 -"Tfru20491_t",1.40140224640694,1.12487848579693,0.889236192751602,1.83105553279616,2.10672244293637,1.72684979319059 -"Tfru20492_t",0,0,0,0,0,0 -"Tfru20493_t",0,0,0,0,0,0 -"Tfru20494_t",56.1669376129106,53.7926702878346,56.2229564089772,68.2280065249652,35.4843560273397,15.3135806196004 -"Tfru20495_t",0,0,0,0,0,0 -"Tfru20496_t",5.49600595701058,4.88420246618346,3.71870502636342,7.10621386438075,7.81503934262308,9.33464693624895 -"Tfru20497_t",5.72798023441687,4.44448101248308,3.94612996186003,5.52992642537266,4.4619859013514,5.16865275812722 -"Tfru20498_t",4.06408180649711,3.96119414405231,3.9497661101778,3.90354170613234,4.02011578815862,3.73802713526001 -"Tfru20499_t",5.78870087294426,5.36132107025496,4.85713287413867,6.7553871526511,4.62490882590015,6.51573072364428 -"Tfru20500_t",21.8557582878861,16.6240982505834,21.8564447455082,24.1066875240618,25.5825231215503,19.9155696071486 -"Tfru20501_t",0.0889312386430283,0.214150157075816,0.357388857990146,0.306629653589572,0.102630690639829,0.325326710443072 -"Tfru20502_t",0,0,0,0,0,0.116466243157513 -"Tfru20503_t",0,0,0,0,0,0 -"Tfru20504_t",0,0,0,0,0,0 -"Tfru20505_t",5.06959168181873,5.8132331682928,5.61302966508806,5.99302368869399,5.64159134737217,6.88832564314942 -"Tfru20506_t",6.30748835184989,6.1401114791823,5.31613887300632,4.99737760029113,6.85322174885116,8.44408170138735 -"Tfru20507_t",13.9222644819879,14.389896643806,17.4910754836134,15.3873094631741,15.5992242635213,17.7906813345361 -"Tfru20508_t",0,0,0,0,0,0 -"Tfru20509_t",0,0,0,0,0,0 -"Tfru20510_t",101.317777700302,113.77502650986,99.7609346498299,90.0350427022543,55.4374722847936,24.1238806235858 -"Tfru20511_t",3.13839320449063,2.45666983390064,3.10467876488833,3.1658115380116,2.94088101441797,2.94136593797115 -"Tfru20512_t",0,0,0,0,0,0 -"Tfru20513_t",1.4022976395841,2.04654036470363,1.86627795363638,1.58237651885799,0.662038036282116,2.05194433411276 -"Tfru20514_t",0,0,0,0,0,0 -"Tfru20515_t",11.56240377168,12.6290971939475,12.7928400186316,9.08350283908899,8.29748571925069,7.44219801033667 -"Tfru20516_t",0.770737401572913,0,0.663722164838843,0,0.333549744579445,0.281949815717329 -"Tfru20517_t",0,0,0,0,0,0 -"Tfru20518_t",0,0,1.28045513772756,0,0,0.543938577377859 -"Tfru20519_t",0,0.230148481286637,0,0,0,0.839113444728706 -"Tfru20520_t",5.9191489196199,5.14162978158822,5.81269658576416,5.47817186055812,7.46013483117488,7.29375246394593 -"Tfru20521_t",4.91013411074112,5.23702961300841,4.48902561046928,6.36608823874823,5.44335023519842,6.15142712433724 -"Tfru20522_t",21.0475676279643,24.6919258199237,22.9275502423559,16.5610216287545,14.4804871982948,15.5307859946736 -"Tfru20523_t",5.94413043194204,10.1786422667147,6.48381416689266,6.96830351445207,3.77288814859203,4.92880196720954 -"Tfru20524_t",16.9840472895345,18.3798903566149,16.4540798048676,13.1759979810323,7.74389316747441,10.7619328576871 -"Tfru20525_t",23.1883845387253,18.917996882593,13.0942472339247,5.50490413385514,10.1996795197642,21.6935505269568 -"Tfru20526_t",111.406507033931,96.1438079182305,117.077313162724,96.335158631394,83.9926611293788,61.8261306605171 -"Tfru20527_t",1.20014823959025,0,1.0335102281046,1.24141205467358,0.519384602272905,2.19518070808152 -"Tfru20528_t",0,0,0,0,0,0 -"Tfru20529_t",0,0,0,0,0,0 -"Tfru20530_t",0,0,0,0,0,0 -"Tfru20531_t",0,0.0446283951138217,0,0.0575108165633915,0.096245988508695,0 -"Tfru20532_t",0,0,0,0,0,0 -"Tfru20533_t",0.3054922791689,0.490425491032615,0.526150661581338,7.58389909765393,18.7733925330933,51.1836316372382 -"Tfru20534_t",3.42004665353492,3.87144339867866,3.32276774798235,3.49228130203597,3.60533152935298,3.94582586568082 -"Tfru20535_t",0,0,0,0,0,0 -"Tfru20536_t",0,0,0,0,0,0 -"Tfru20537_t",0.906586799691879,0.242566564809297,1.04094555348826,0.625171538325789,0,0.221097337504956 -"Tfru20538_t",29.610214745024,49.1932946124989,32.021874260463,19.9439969313831,25.0326349134628,24.6867863081327 -"Tfru20539_t",0,0,0,0,0,0 -"Tfru20540_t",24.2460327897342,32.2656517676205,26.5572881399441,14.7398038896913,18.77673954549,14.0046971756304 -"Tfru20541_t",0,0,0,0,0,0 -"Tfru20542_t",0.194919667683173,0,0,0,0,0 -"Tfru20543_t",47.995741568068,67.0900406450814,54.5970640874777,67.8666692029727,53.2082629901452,51.9687602606725 -"Tfru20544_t",0,0,0.190383463072194,0,0.191352221890313,0 -"Tfru20545_t",11.7771550126093,4.41153748306133,6.08515336455141,4.87283211194115,4.7569802232133,3.44663869037941 -"Tfru20546_t",19.0123234214685,19.4649082436807,20.2964913873723,18.5283071003313,15.9571528678605,15.7877834466756 -"Tfru20547_t",17.072531295606,16.5530937868654,18.6322970700836,18.5337574360003,21.9458282650862,13.3565924773618 -"Tfru20548_t",0.406829911726138,0.653109007428422,0.525513675308237,0.631226468479065,0.704250308167739,0.297651621435243 -"Tfru20549_t",0,0,0,0,0,0 -"Tfru20550_t",0,0,0,0,0,0 -"Tfru20551_t",9.94271746364205,10.9400101224363,12.0255511913953,11.9023682369818,13.1503761001215,10.1351960352006 -"Tfru20552_t",0,0,0,0,0,0 -"Tfru20553_t",0.395033119614957,0.317085446788329,0.680367234803454,1.08964067495028,1.13971542818682,1.05974241079962 -"Tfru20554_t",21.9502453474191,29.0112665865306,20.5726012876963,20.3341470865524,17.0911869121757,15.6726228098739 -"Tfru20555_t",0.913156269254864,0.916216100774247,0.196591619476723,0.708414487722429,0.197591968256302,0.668098476373671 -"Tfru20556_t",9.82798558406134,9.93677070553991,9.96889786952829,10.7035133848005,9.20169570957356,8.5041646328959 -"Tfru20557_t",10.1954340742048,10.8024546871869,11.5893622666278,26.997699053137,28.2383861430365,25.0634224534744 -"Tfru20558_t",10.0402645409779,12.4998692226606,10.4107249806795,11.8691103764096,11.5278045870506,9.74446070418183 -"Tfru20559_t",0,0,0,0,0,0 -"Tfru20560_t",9.8580442115573,10.1772337830062,8.31575296083235,7.66377257369779,6.07737481110674,10.2177156648646 -"Tfru20561_t",1.35500607695883,2.33065109505707,0.833475990408225,9.21047653468916,10.0526052052976,7.36447721422037 -"Tfru20562_t",0.491699529598773,0.281912646392076,0.241958916279043,19.0363687982848,11.7339230379896,7.65743638305207 -"Tfru20563_t",3.59402681375176,3.86832940787758,3.30602688426776,2.61921648871738,2.15631721118982,1.46416525595163 -"Tfru20564_t",3.93001155006164,4.7113323675293,5.0105781411224,5.75454069087122,5.0802503624585,5.78802203711333 -"Tfru20565_t",1.85014695989321,1.92510006165943,2.06533446889085,6.37919734458044,6.2275315280779,6.51750226543973 -"Tfru20566_t",59.7643439817133,64.7020212694612,67.217412050755,61.5991804345309,49.3349627273658,39.8355830773486 -"Tfru20567_t",1.08051931538839,1.9514519136748,1.62836016646957,7.2648551109627,9.06000471811853,6.17615150988522 -"Tfru20568_t",16.9393370170427,16.000746270276,17.9185267546522,13.8108819747782,15.714614702288,13.6487581790471 -"Tfru20569_t",0,0,0,0,0.064178150325083,0 -"Tfru20570_t",6.18040410807911,4.67246698577909,4.76528668048966,3.27078625183963,3.48329793141648,3.73312168321028 -"Tfru20571_t",21.6094905669806,21.0510089086655,24.0581206106767,25.110513848718,26.3850330401859,24.0211626512371 -"Tfru20572_t",1.43199505860422,0.766289829738462,0.82211040872084,0.493743430836845,0.413146842717722,0.698466588936111 -"Tfru20573_t",19.8818061036836,19.24436454081,23.3319130382211,17.3394444759779,17.7145096367135,18.9671762341258 -"Tfru20574_t",0,0,0,0,0,0 -"Tfru20575_t",0,0,0,0,0,0 -"Tfru20576_t",0,0,0,0,0,0.0528504383717779 -"Tfru20577_t",0,0,0,0,0,0 -"Tfru20578_t",4.0459795009646,4.88632160879292,4.60910103847422,2.17177035760937,2.53419350246523,2.56636291647011 -"Tfru20579_t",5.02879015885425,6.66550975326244,4.55408494812895,2.41405959279725,6.57613729058945,2.39110986297326 -"Tfru20580_t",40.0664873833057,52.3906462055034,33.0564271420429,43.0483503267472,64.5475202641078,85.5782756044182 -"Tfru20581_t",0.498606066825291,1.43495536134261,1.18385256548058,0.654600027721578,1.09078450252588,0.949613458578762 -"Tfru20582_t",0,0,0,0,0,0 -"Tfru20583_t",0,0,0,0,0.0593098240769323,0 -"Tfru20584_t",0.188364073478582,0,0.16221012548752,0.194840457011849,0,0 -"Tfru20585_t",0,0,0,0,0,0 -"Tfru20586_t",0,0,0,0,0,0 -"Tfru20587_t",0.623453630956938,0.375325630892308,0.536888430185038,0.483667034289154,0.269810182999329,0.34210608437687 -"Tfru20588_t",19.6181060793298,19.8436380554073,17.517575344118,12.6922481936448,10.8710486766293,16.4189302422896 -"Tfru20589_t",0.789305205675357,1.34288265514989,1.26758895073901,0.507162014465078,0.630972679270127,0.766806962271133 -"Tfru20590_t",2.34525478524479,2.15141790682304,2.01962118353754,6.23800274732253,7.72086183439778,8.51808904872034 -"Tfru20591_t",26.0648656374014,29.6816847640683,37.5669437883632,64.4250049064351,68.2153204811817,61.8390865596011 -"Tfru20592_t",0,0.0161517377286191,0.0173283152017806,0.0832563773195541,0.0174164896570824,0.0883330201097643 -"Tfru20593_t",22.5182453201818,20.5081278144438,20.1374673311414,30.907320742694,23.6132587219284,5.38611348994032 -"Tfru20594_t",2.10106280628739,2.96057472893058,4.26216303568382,1.82756106539788,2.2620302299639,2.8773387265007 -"Tfru20595_t",16.5522303676086,16.6524587535304,15.8292272854927,19.4287908928767,17.4544119128413,17.169740556917 -"Tfru20596_t",0,0,0,0,0,0 -"Tfru20597_t",0.193016373972309,0.232395766859223,0.290878812045972,0.598958142405178,0.396772843781752,0.264783428315814 -"Tfru20598_t",0,0,0,0,0,0 -"Tfru20599_t",0,0,0,0,0,0 -"Tfru20600_t",17.6572233930563,21.3550025312977,17.387518917715,26.9460128361703,24.3978591680694,13.7876383022412 -"Tfru20601_t",6.2169228397933,6.80819041036864,6.74762927773182,9.85967651117268,7.48113590582706,6.02830394451012 -"Tfru20602_t",0,0,0,0,0,0 -"Tfru20603_t",7.57988361847646,10.0942840729457,8.20874152467124,7.30591783373617,9.4433564049765,8.1505274137507 -"Tfru20604_t",0.0615911853163104,0,0.0530393812077961,0,0,0.0450623605765232 -"Tfru20605_t",0,0,0,0,0,0 -"Tfru20606_t",0,0,0,0.175199281909848,0.0733002462886281,0 -"Tfru20607_t",1.09147339899912,1.32743120112174,0.740546698879244,0.410545718869061,0.143137488815589,0.532374533929256 -"Tfru20608_t",45.4847072461684,43.0315192415023,42.0431584525916,18.6629866912524,19.6097678280114,21.4924043057566 -"Tfru20609_t",37.9354815525048,36.8667605283168,38.9265011520276,35.4766131415542,39.1208404253274,35.620392242792 -"Tfru20610_t",16.4876828722672,16.2492358021465,15.6726795887455,17.7935180595814,17.4706322722179,21.7570358746244 -"Tfru20611_t",0,0,0,0,0,0 -"Tfru20612_t",0,0,0,0,0,0 -"Tfru20613_t",17.9229921256667,19.0257144106294,23.0259471251457,19.8677690195807,23.0420521258885,20.5880186492801 -"Tfru20614_t",0,0,0,0,0,0 -"Tfru20615_t",0.271292928217807,0.217761587783589,0.0778748288131689,1.12248237451821,0.782710918388795,1.65406511911673 -"Tfru20616_t",0.961217125531435,1.0801705609128,0.993305024724493,0.397706379072241,0.166393236426359,0.843913864893058 -"Tfru20617_t",10.9959848648016,11.645383949571,7.32646025080718,4.48165101692452,3.52180516208855,6.85049019933388 -"Tfru20618_t",18.0890409797573,18.8408984683776,17.5175419004239,10.0970820011199,8.00191818444608,9.34692925787298 -"Tfru20619_t",4.2258740830708,3.52770851195493,4.6580742675209,6.64417719403786,9.5098589148707,5.93626332327189 -"Tfru20620_t",13.6233043413158,16.1293653891977,15.5445524848946,15.6183057149039,22.5019869579663,21.0144055892886 -"Tfru20621_t",18.8547654112995,16.7542407797861,19.4146705169984,17.4751964594334,18.7149564992242,20.2492990505568 -"Tfru20622_t",3.28956294586993,1.4217907684304,2.39699661337883,7.85230516511608,10.9508801684215,5.55407167105823 -"Tfru20623_t",77.5025306835184,56.0362929014379,65.4677781817976,46.8152222027273,49.4146899768859,49.3451888746976 -"Tfru20624_t",3.0261617502609,3.00869915957893,2.69482609620814,1.95638002885823,2.20254788356758,2.27694961698206 -"Tfru20625_t",18.2722569477898,18.2070463545858,17.1097618262981,11.8182427605107,9.99815359376887,8.5436433158665 -"Tfru20626_t",16.5225887779461,14.9778920145357,16.7060557419906,13.4344592218307,12.3087035881303,11.2465422578597 -"Tfru20627_t",19.6671691285758,19.0996632707066,21.0137122968992,30.6406327945917,30.367487005772,27.0019916000272 -"Tfru20628_t",3.57422453876223,4.1612856679703,4.14323872848815,4.4964905774946,3.92972481750977,4.96085085880134 -"Tfru20629_t",2.65016961424124,2.12723990589857,1.82575939349991,2.19303075904819,0.688143637081884,0.775584351121485 -"Tfru20630_t",0,0,0,0,0,0 -"Tfru20631_t",0,0,0,0,0,0 -"Tfru20632_t",0,0,0,0,0,0 -"Tfru20633_t",0,0,0,0,0,0 -"Tfru20634_t",0,0,0,0,0,0 -"Tfru20635_t",21.4745626016902,21.2150352862423,17.2735557787412,25.8743748474499,20.6294895397478,25.3802353777459 -"Tfru20636_t",0,0,0,0,0,0 -"Tfru20637_t",0,3.06515925031567,1.31537662449809,0.7899894716487,1.32206986709157,1.11754651727253 -"Tfru20638_t",6.15051011305106,6.39552377032965,5.01564863889586,6.69935623515949,6.57368642478425,7.70443900208617 -"Tfru20639_t",2.55683755391362,1.75913491348656,0.629093182325512,1.13346318035589,2.21303004447058,1.87067573384628 -"Tfru20640_t",8.53230389005763,3.68776980527382,9.04321449508928,8.14676660805124,6.81692290420924,11.5246987163754 -"Tfru20641_t",0,0,0,0,0,0 -"Tfru20642_t",9.99407881091459,12.6664007634765,11.6477896906423,12.358601224095,18.3410591214365,16.7132184143281 -"Tfru20643_t",30.4323303610856,29.2441220736923,27.4987542835399,45.2228677060359,53.4224162338671,46.8827879798136 -"Tfru20644_t",7.99282065649132,7.13159567145733,6.95688693766055,12.7030567946786,12.2773273277358,15.6235196986199 -"Tfru20645_t",4.39690723398716,4.31223532798685,5.10751069461283,3.72382144861878,5.96007752126842,6.75542657126248 -"Tfru20646_t",0,0,0,0,0,0 -"Tfru20647_t",63.0077825727333,91.6674208739491,79.6933277379743,112.018040860705,198.826918039436,191.117920379892 -"Tfru20648_t",0.426448613053033,0.34230205592378,0,0.441110882372003,0,0.936016139487986 -"Tfru20649_t",0,0,0.657688312249044,0,0,0 -"Tfru20650_t",0.211613039726568,0.169857695256888,0.0911155112939974,0.109444387691794,0.457895745077576,0.0774119141390147 -"Tfru20651_t",63.1596085607027,41.5975356249351,57.7894092607333,52.2440036985723,44.942412211202,54.7261195321604 -"Tfru20652_t",0.101217321411382,0.243735560302354,0.0871635132137758,0,0.0876070413473723,0 -"Tfru20653_t",20.1340658615781,17.6822818606567,18.6303817434933,12.7408079295643,12.3012142643773,13.6909954688454 -"Tfru20654_t",26.9346246128177,22.6494215316413,25.4038391937955,13.2669990571432,11.6564177910843,18.2987582682906 -"Tfru20655_t",0,0,0,0,0,0 -"Tfru20656_t",10.0635510568693,10.4153548775685,9.14217027423965,14.6038864352128,15.3787068720622,15.2381565607299 -"Tfru20657_t",52.5191835439399,48.5162460521231,50.9131882624505,43.3968833139886,37.5439075259035,43.9991722094505 -"Tfru20658_t",7.03535174933304,5.89627937956392,8.37499667603299,11.4509560215757,16.4770287617866,14.2308266593091 -"Tfru20659_t",0,0,0,0,0,0 -"Tfru20660_t",0,0,0,0,0,0 -"Tfru20661_t",72.1540735980577,60.0919540675548,69.4285500010051,31.5358707437727,41.0481379216317,47.5858527688086 -"Tfru20662_t",1.02140275709966,0,0.219895793214085,0.792390673197125,0.663044173115371,0 -"Tfru20663_t",10.8780987083153,8.10043664010579,9.14197034845889,14.912438098286,13.6125761594357,12.9450594018112 -"Tfru20664_t",0,0,0,0,0,0 -"Tfru20665_t",0,0,0,0,0,0 -"Tfru20666_t",0.161248323937519,0.647154558704267,2.08289009503169,1.50113165920453,0.697829599983868,2.1235529306618 -"Tfru20667_t",52.2798387822317,53.3646442580454,43.4594768581348,75.6457561374204,68.0057536790034,73.4043160516453 -"Tfru20668_t",22.6914625918755,21.8289902838486,21.4799651532175,35.2970561525259,35.0825558154364,32.8236092681069 -"Tfru20669_t",4.13755602942889,3.60993067542744,6.19663520063674,5.76844573585829,8.09661649797129,4.86982272714342 -"Tfru20670_t",19.3870100241802,17.9193929415763,13.912637686045,28.5611584607159,24.6616884576117,16.6557417361688 -"Tfru20671_t",7.8974332387328,10.1977098867647,9.56067363602328,6.27471215646606,6.53830207766902,9.12764512408061 -"Tfru20672_t",0,0,0,0,0,0 -"Tfru20673_t",0.0453374942101713,0.0363915299605961,0,0,0,0 -"Tfru20674_t",0,0,0,0,0,0 -"Tfru20675_t",0,0,0,0,0,0 -"Tfru20676_t",0.275443858267041,0,0,0,0,0 -"Tfru20677_t",23.6691871677718,21.6080759727943,25.0191956066337,18.2834326795012,22.3329098631838,18.060471025163 -"Tfru20678_t",0,0,0,0,0,0 -"Tfru20679_t",0,0.191572457434615,0,0,0.309860132038291,0.0873083236170138 -"Tfru20680_t",0,0,0,0.273697145912707,0.343529973157413,0.0967953698053192 -"Tfru20681_t",19.7085954985149,17.4176588787946,19.8865001237496,12.3552858522206,22.2276917465952,16.6043052611542 -"Tfru20682_t",1.1858819900873,0.350694305437513,1.34371686417968,0.581047246987787,0.270110862995242,0.136994932748242 -"Tfru20683_t",2.26181783615435,2.85295598148781,4.1737913058135,1.67113161206317,6.99171579983837,2.12763668629769 -"Tfru20684_t",8.79689809125104,5.6488800014228,6.8179208765121,7.27948429966783,9.51751888983234,6.11432532304281 -"Tfru20685_t",3.77045169240718,2.74273723070484,3.55133248086983,2.55943298790039,2.85552263802655,2.8448064155266 -"Tfru20686_t",12.3928350827446,11.099303620808,13.3682301244171,13.6285453828505,15.1298992836254,11.2622314588705 -"Tfru20687_t",0,0,0,0,0,0 -"Tfru20688_t",2.99550776170477,1.96726594863164,2.34507993411455,3.80270467315508,2.71056469906214,3.98476887042967 -"Tfru20689_t",31.7321803566065,33.7167525084923,36.172857983717,29.753408484342,36.7521060956721,33.7389730568704 -"Tfru20690_t",0,0,0,0,0,0 -"Tfru20691_t",824.160192557103,843.1649203911,828.015201725779,348.229673437716,361.97694762681,256.627841025778 -"Tfru20692_t",190.726260778421,195.673143550513,209.927003826878,129.600978386147,122.916768773964,95.4445155043507 -"Tfru20693_t",0.233686722590952,0.468939534193217,0.201239821884378,9.06455255500187,15.2709186259613,60.9521386039045 -"Tfru20694_t",23.2119216778633,18.0481151909639,22.8308051721463,30.6055182321129,31.3705533410591,25.4944955205282 -"Tfru20695_t",31.6451643444017,17.3875629528099,37.9571693640797,14.223353361865,10.9233802002856,10.4738666968715 -"Tfru20696_t",20.3986857336422,10.5566828940327,21.0334190192859,13.6039723563481,7.78247215547504,9.72051265624823 -"Tfru20697_t",21.7310078642906,17.1507180390019,23.6273581049712,19.2131836785759,23.2221959455903,18.0309351802813 -"Tfru20698_t",175.469949512777,129.884238727295,199.930771712958,147.257154071852,178.381746160211,136.252595674236 -"Tfru20699_t",22.7686008500025,21.6828772898352,19.5027967620617,11.7286783079771,10.994984038028,15.14999489766 -"Tfru20700_t",2.02783668069011,1.8602346211582,1.247339930473,2.69686067050194,2.2566365478099,1.69558785727939 -"Tfru20701_t",9.12581233820824,8.47165255093729,8.29151152775376,5.66374706305035,6.25027692030891,8.61207544796539 -"Tfru20702_t",1.93683865755498,1.74899580735695,4.58676009015431,3.75643417120827,2.72414978714164,2.65699105877713 -"Tfru20703_t",0,0.0721213957400905,0.0773750972913731,1.20821921898898,0.855456991980224,0.920332446598169 -"Tfru20704_t",0.0933967501628098,0.187419413610296,0,4.7820931289056,3.51645606208658,0.819989680841059 -"Tfru20705_t",10.368191929765,11.3363864338093,12.1139257557211,9.62322086412892,8.19789172101129,8.85687319712981 -"Tfru20706_t",0,0,0,0,0,0 -"Tfru20707_t",1.12805452908657,0.428905685620397,1.84059772072623,3.13204313441097,1.49024839945672,2.12847203639046 -"Tfru20708_t",3.28379322885137,3.1849701066654,3.65263386806262,8.77480181969324,6.98716093612512,7.40784108656669 -"Tfru20709_t",0,0,0,0,0,0 -"Tfru20710_t",0.784619929820056,0.809741888129234,0.579151828958777,3.76812865161675,1.64927999120937,1.55815361801358 -"Tfru20711_t",2.14564812972263,2.11971725004274,2.84266074528227,1.53652179655317,2.14284413511746,2.29437354951115 -"Tfru20712_t",1.68896513241182,3.51477688100441,1.93927459034075,2.97643098738279,3.57342794118321,4.07326159683367 -"Tfru20713_t",155.737251978401,137.508008924974,180.392059396604,93.2517619138746,83.5354869453274,35.4667838684843 -"Tfru20714_t",197.306060938576,164.072366080058,231.55723878309,104.645790806096,91.1483400609915,39.822433126949 -"Tfru20715_t",7.03853271951404,9.38160215839678,7.39583414578686,13.3587769142636,9.27786176544271,7.92908785769975 -"Tfru20716_t",10.7101165260992,10.4740950125807,10.7095956027797,8.50556513819865,8.03290370286335,9.04457133105779 -"Tfru20717_t",0.150916844499606,0.0807586886430953,0,0.208140943298885,0,0.220832550274411 -"Tfru20718_t",0.345011814256458,0.276934312184742,0.0742769157776529,0.446092627450126,0.149309741926733,0.315529054550194 -"Tfru20719_t",0,0,0,0,0.426474160224745,0 -"Tfru20720_t",0,0,0,0,0,0 -"Tfru20721_t",1.84473824364603,1.00049710707692,1.11631371819186,1.39244438180219,1.03568680334698,0.583644484998245 -"Tfru20722_t",770.633648461162,1020.46227172556,798.964838752238,2416.76015315462,2079.08203466103,864.594180704607 -"Tfru20723_t",0.962869647810286,0.483048030207626,1.03647157546467,45.5658693994071,51.0455354097082,15.146117894179 -"Tfru20724_t",0,0,0,0,0,0 -"Tfru20725_t",0,0,0,0,0,0 -"Tfru20726_t",6.91954528846135,7.33437277375862,7.33388461760681,3.48696522221417,5.6051854648757,7.52898304103465 -"Tfru20727_t",0,0,0,0,0,0.190885278963906 -"Tfru20728_t",2.06703914727639,0.948098488815249,1.27145370768777,8.55243454187687,7.53974835638106,9.07392798842834 -"Tfru20729_t",3.79522616758909,3.38483851172817,3.95419975728306,4.26497393017348,3.36600617870635,4.28507109776755 -"Tfru20730_t",2.68305391783157,2.22424650056022,2.68929101240199,1.86536785178988,2.16999430688177,3.37896925747103 -"Tfru20731_t",7.77473923848871,8.66754563200316,11.7166583700471,12.7332496096535,21.1225306117482,19.9089911005748 -"Tfru20732_t",0,0,0,0,0,0 -"Tfru20733_t",1.09341054366309,0.877659501305656,0.470796416273973,2.82751118743876,2.83915227273263,1.06663878223649 -"Tfru20734_t",0,0,0.118989664420122,0.142925729979087,0.358785416044337,0.40437539359459 -"Tfru20735_t",9.51841707262705,6.64369507556499,9.62233660650599,8.5614624460379,7.52212182603301,5.45010382696946 -"Tfru20736_t",0.475018285460527,0.49022741934803,0.292187867396744,0.631736344463297,0.822289031063382,0.844027477421988 -"Tfru20737_t",6.81519437147467,7.67963473672367,10.157744831621,8.94746285897158,9.86911771559089,7.57525698328212 -"Tfru20738_t",6.54626312504785,5.89849986588597,5.30572095712273,7.13645967259977,7.24916476970255,8.56942201551866 -"Tfru20739_t",8.92662394691646,9.24113574214883,10.3453655405268,5.26398160224862,7.07642179066064,9.52189606049148 -"Tfru20740_t",13.2845356125903,14.3074377420905,13.309843891565,14.7009322264203,14.283076562527,13.4454818370201 -"Tfru20741_t",123.635015175531,108.48534627961,131.994560393965,90.5527257432399,115.650904126028,96.2990059802664 -"Tfru20742_t",59.7063714512795,59.5963334472849,58.2516090941796,55.6559484713211,56.3593090995667,58.8954503018636 -"Tfru20743_t",6.99645608402887,6.97619453896084,6.58055017305313,4.03886848357683,6.35279562880178,3.94348429180647 -"Tfru20744_t",0,0,0,0,0,0 -"Tfru20745_t",44.5608862750267,57.4394598116593,48.5314475288558,86.4921409700586,88.4817450363321,57.6294866702855 -"Tfru20746_t",33.965917881279,36.136615128719,38.5093823032393,46.2559635205044,53.5786221292877,50.4366400010707 -"Tfru20747_t",0,0,0,0.398618549666444,0,0 -"Tfru20748_t",0,0,0,0,0,0 -"Tfru20749_t",0,0,0,0,0,0 -"Tfru20750_t",0,0,0,0,0,0 -"Tfru20751_t",0,0,0,0,0,0 -"Tfru20752_t",0,0,0,0,0,0 -"Tfru20753_t",0,0,0,0,0,0 -"Tfru20754_t",13.7943632174624,12.5922192240345,12.2051368856843,7.10634460145856,8.70880556549088,10.5673992103302 -"Tfru20755_t",4.44949529969977,4.42241980436807,4.24008595990439,4.14078834109757,3.94777139168028,4.96986288152846 -"Tfru20756_t",1.35500607695883,0.466130219011414,0.166695198081645,1.00113875377056,0.335086840176586,0.708122809059651 -"Tfru20757_t",23.4240697586271,21.6977219084062,21.4058206656584,3.01590105047635,5.21828765107937,7.52043084934504 -"Tfru20758_t",44.9861234152968,45.3308677452163,51.2659618976688,63.9979789159652,65.9498554433799,47.3637707413104 -"Tfru20759_t",0,0,0,0,0,0 -"Tfru20760_t",0,0,0,0,0,0 -"Tfru20761_t",21.8850524974216,13.3198186311435,16.5487071406983,13.6588203586709,16.6170104517802,10.5623652424166 -"Tfru20762_t",0,0,0,0,0,0 -"Tfru20763_t",0.709869936970307,0.723206261150631,0.423211858113035,1.46855374683744,0.685310849928909,1.33836821851391 -"Tfru20764_t",196.888861098821,168.382268005558,215.884228125928,222.69992546574,179.75673465943,114.542955114694 -"Tfru20765_t",0,0,0.295288636601771,0,0,0.250877795209705 -"Tfru20766_t",0.327398194744534,0.26279620037796,0.451103451082986,0.135461954524216,0.340049155035007,0.526980247926855 -"Tfru20767_t",9.02017387190255,9.51095178765602,10.2497424782324,7.72924913330359,5.58981903590636,6.0918356625889 -"Tfru20768_t",0,0,0,0,0,0 -"Tfru20769_t",0,0,0,0,0,0 -"Tfru20770_t",0,0,0,0,0,0 -"Tfru20771_t",0,0.741027527659172,0.397503933887,0,0,0.675440217872283 -"Tfru20772_t",11.8324474325982,4.03651262425612,29.5496586345857,0,0.512069326185346,1.29855760196573 -"Tfru20773_t",0,0,0,0,0,0 -"Tfru20774_t",0.771074262325348,0.972598630052662,0.664012253197601,0.911526333852636,1.20766000179026,0.69846658893611 -"Tfru20775_t",84.0103764415676,58.1323316829279,92.3031544925592,104.128786591058,108.443922566154,56.1663475518337 -"Tfru20776_t",0,0,0,0.174671042868914,0.146158481041847,0.0617739294737464 -"Tfru20777_t",0.143240199098802,0,0,0,0,0 -"Tfru20778_t",0,0,0,0,0,0 -"Tfru20779_t",0,0,0,0,0,0 -"Tfru20780_t",0,0,0,0,0,0 -"Tfru20781_t",0,0,0,0,0,0 -"Tfru20782_t",0.801625732551979,0.514759580282325,0.552257373797205,0.497512464660026,0.416300635410224,0.821098127451611 -"Tfru20783_t",0.398153444414443,0.159795035585272,0.342870691788786,0.617764292611028,0.344615375916204,0.7282590026822 -"Tfru20784_t",13.1498543287166,11.5994579979437,11.7241674659614,18.5044551291508,14.9208165055843,17.3380423182813 -"Tfru20785_t",0.0931378899905182,0,0,0.0963401816267014,0.483684108547577,0.136286163694851 -"Tfru20786_t",0.0576598330620779,0.0925648661866638,0.198615555161109,5.4870924036446,2.84467338788208,0.717162674707221 -"Tfru20787_t",2.28778258172245,2.37823522158115,2.16391204009735,1.6681474484702,1.4607691938948,2.14030119038279 -"Tfru20788_t",0,0,0,0.205677736869313,0,0.145479431541722 -"Tfru20789_t",0,0,0,0,0,0 -"Tfru20790_t",3.88853197112189,2.17761587783589,5.37336318810865,30.0264035183621,17.8458089392645,5.1606831716442 -"Tfru20791_t",0,0,0,0,0,0 -"Tfru20792_t",0,0,0,0,0,0 -"Tfru20793_t",0,0,0,0,0,0 -"Tfru20794_t",0,0,0,0,0,0 -"Tfru20795_t",4.31729821656133,3.74946194702694,2.62077993816315,8.12617663422797,6.92221095869423,10.3563706531386 -"Tfru20796_t",0,0,0,0,0,0 -"Tfru20797_t",0.57214785542416,0.612336027396001,0.903294978026984,1.08500259035202,0.907891359252565,0.837208533389935 -"Tfru20798_t",0,0,0.179073554374836,0,0,0 -"Tfru20799_t",0,0.178868713572903,0,0.691502736026138,2.507373942011,0.815186469845858 -"Tfru20800_t",0,0,0,0,0,0.102612787690113 -"Tfru20801_t",16.4536452202144,14.2946600496834,14.5024822331031,0.600683252262336,0.335086840176586,0.28324912362386 -"Tfru20802_t",16.7745760492906,16.5548702987687,15.866327233447,21.1913710806308,18.6842447757383,18.0069487871057 -"Tfru20803_t",1.83815249013702,1.69403456687725,1.46567495882159,3.16892056096257,3.09357927610353,3.83534003778856 -"Tfru20804_t",1.0245167898957,0,0,0,0,0 -"Tfru20805_t",0,0,0,0,0,0 -"Tfru20806_t",0.702427899426818,0.958502997733058,0.78636647790689,12.4191985089758,8.81564166066577,7.50325981158123 -"Tfru20807_t",0,0,0,0.103945985439336,0.0869782826774151,0 -"Tfru20808_t",1.01217321411382,1.5624074378356,1.34097712636578,2.25502097049487,1.01085047708507,3.24699574615712 -"Tfru20809_t",0,0,0,0,0,0.0936967375402099 -"Tfru20810_t",0,0.0515941124843034,0,0.470262268187959,0.445073262851226,0.188110359070781 -"Tfru20811_t",0,0,0,0.0781464422907236,0.26156059107309,0 -"Tfru20812_t",0,0,0,0,0.0403517449047276,0.0682187123489209 -"Tfru20813_t",0,0,0.169032046652883,2.4364161820734,2.03870591546689,1.00526967005758 -"Tfru20814_t",2.49535707941052,10.6825326807033,5.01405822349955,13.7661499111827,12.2389607244058,11.5627310311788 -"Tfru20815_t",0.64130058601947,1.54427874079372,0.552257373778162,1.99004985857148,2.22027005544463,4.6919892995617 -"Tfru20816_t",0.820413835658666,0.790236386917788,0.141300226498894,1.86696734785182,3.26644222523699,0.720293669840364 -"Tfru20817_t",0,0,0,0,0,0 -"Tfru20818_t",0,0,0.0950666438468251,0.22838066708879,0.286651160256185,0.24230641193053 -"Tfru20819_t",0,0,0,0,0,0 -"Tfru20820_t",13.1831668164425,10.3743853872284,14.1352398890217,21.7915562213037,30.9872844248837,32.5292008927291 -"Tfru20821_t",1.13221532036991,0.545284407145428,0.585005789494075,4.9188024807897,4.70386054889395,6.95830865958993 -"Tfru20822_t",1.08400486156706,1.0876371776933,0.81680647060006,1.9622319573903,1.87648630498888,2.67670421824548 -"Tfru20823_t",3.04475477943855,3.24199543350887,4.49485217549146,3.08516605303969,5.48580778141165,3.31874953204554 -"Tfru20824_t",0.312306233351106,0.250682174784329,0,1.93826417458627,1.35155844457842,2.97043040053127 -"Tfru20825_t",0,0,0,0,0,0 -"Tfru20826_t",4.2017921089084,3.90415260934952,3.96925571085345,3.10823388045456,4.80497667820356,5.64532074185888 -"Tfru20827_t",0,0,0.228219924187489,3.28954613857229,2.29381212360628,0.581688263341114 -"Tfru20828_t",0,0,0,0.10821773826561,0,0 -"Tfru20829_t",4.2280933604886,5.01693472774065,5.30324176128892,6.56019718170967,6.36445026856184,7.66632037221779 -"Tfru20830_t",8.93332020337875,9.84492947317013,9.7619278616193,15.3092448834606,13.0744754043683,11.8190832372731 -"Tfru20831_t",9.40238144532624,7.75279621265191,7.55369394779636,4.97496900372066,5.76660708108678,7.93190589031153 -"Tfru20832_t",17.4575978013768,20.6592996889817,17.2619552267265,13.5612158744838,15.7372467990777,16.7356610533423 -"Tfru20833_t",1.05232204724151,1.12623807961561,0.906209385813368,2.1770065259445,1.51803432814862,3.97790575076766 -"Tfru20834_t",1.25905397933979,0.277920028170412,1.03002518050299,2.96283056885834,1.36219266238889,1.61204727907323 -"Tfru20835_t",0.668872426524263,0.644269156213229,1.03680166195367,0.83024373083393,0.347359128909167,0.929805841322593 -"Tfru20836_t",1.18260411264625,1.35086068523467,1.01840206559463,1.31736200712722,0.944846921299219,0.965071323749298 -"Tfru20837_t",0.062276039118938,0.0499877724366083,0.107258289054757,1.09509291702286,1.18584475537659,0.637887944825269 -"Tfru20838_t",71.1187588525552,81.2306415933497,74.8435859560793,75.5642120237258,54.5818754665643,53.1334788268943 -"Tfru20839_t",0.0563828032023137,0.0905147718348786,0.0485541717902241,40.5333533288341,29.8663575320881,11.7979913492242 -"Tfru20840_t",3.11757257550293,2.89753341869856,2.5434040769801,3.39448608700331,3.26644222523699,2.88117467936146 -"Tfru20841_t",0,0.0961961555163831,0,0,0.103728736545391,0 -"Tfru20842_t",0.367178220154928,0.294726857591716,0.664012253197601,0.607684222568424,0.699171579983837,0.456689692765918 -"Tfru20843_t",0.420051883857237,1.34867010033969,0.723457159674339,0.868988438272847,0.727138443183191,1.22930119652755 -"Tfru20844_t",0.642936556924343,0.172024247492308,0.184555397876107,0,0,0.156798622006066 -"Tfru20845_t",9.80678900160721,9.69860370961412,10.376277987361,9.24382123581075,8.74883704547106,11.1420725980087 -"Tfru20846_t",0,0,0,0,0.122620310823472,0 -"Tfru20847_t",90.1299824915401,49.4655998463248,98.5103646815346,18.9345084633253,19.2819459374456,22.5044596041626 -"Tfru20848_t",0,0,0,0,0,0 -"Tfru20849_t",129.931303057535,133.15259888947,148.063478018096,165.328732535809,164.530478245688,171.372921041341 -"Tfru20850_t",0.0747423280884764,0.17998266463608,0.0643645159852615,5.87572253636444,6.85735542503721,2.40610554480482 -"Tfru20851_t",7.96697490638318,7.14468790892839,9.4631413953478,54.8445940440351,60.9673959555821,43.0134820236914 -"Tfru20852_t",2.82570478144584,2.52984688938235,3.18208841253914,11.9162709517363,11.4761824150516,7.79246554073094 -"Tfru20853_t",33.234874327166,24.0833946489231,21.862716363785,39.6296925146408,41.151241564763,41.8772935080816 -"Tfru20854_t",13.5988019953782,13.7050109117253,15.0286514284867,8.12722999823525,7.51986699335134,11.7734332221389 -"Tfru20855_t",0.188787363531343,0,0.325149285246894,0.585834902206413,0.326803794689074,0.276247459893832 -"Tfru20856_t",0,0,0,0,0,0 -"Tfru20857_t",46.2271749526023,43.3090824385063,54.1052288069906,53.4420487591989,48.8825557162679,32.4602530599269 -"Tfru20858_t",0.231646259480094,0.247917297856561,0.132988448469548,10.1435231305746,3.67579176241503,3.55909813332886 -"Tfru20859_t",0,0,0,0,0,0 -"Tfru20860_t",12.9091575351084,12.6286035806118,10.7693502760646,7.40674419176136,8.55456991980224,8.85451041916606 -"Tfru20861_t",0,0,0,0,0,0 -"Tfru20862_t",0,0,0,0,0,0 -"Tfru20863_t",11.4689934158973,9.43608773275211,8.64197972307231,3.85558010155188,5.70791269392948,3.566232140097 -"Tfru20864_t",3.30749514848218,4.35397433967932,4.78507097737358,3.42121432390884,2.29019982104942,2.32308887532766 -"Tfru20865_t",110.125039345563,124.188390471162,126.233727274555,71.0990540405056,78.4712454813531,75.3442668839469 -"Tfru20866_t",3597.75907236604,4050.96171222662,3674.4540914089,8674.23651399733,7627.0720828855,3370.26247621418 -"Tfru20867_t",0,0,0,0,0,0 -"Tfru20868_t",0.0899468702049758,0.0360993067542744,0,0,0.116778122566894,0.0658084152316678 -"Tfru20869_t",0,0,0.0481662556374393,0,0,0 -"Tfru20870_t",2.56520234407788,3.08855748158745,5.52257373778162,3.98009971714297,2.77533756930579,2.34599464978085 -"Tfru20871_t",7.71933056253156,5.83404428846227,6.82018086089174,4.30346302963283,3.29728649653475,3.70404000147026 -"Tfru20872_t",76.9706017192013,63.2819767046948,81.2845410698659,56.7313101856621,45.5433013793661,36.5269060105451 -"Tfru20873_t",13.3652872136394,10.1010932101888,10.4632233837198,11.4009846756871,9.31458336309046,11.4294532735 -"Tfru20874_t",0,0,0,0,0,0 -"Tfru20875_t",0,0,0.0661295392755337,0,0.398796221124236,0.955124330025979 -"Tfru20876_t",1897.99954507771,1418.77015003572,1729.05366887176,2.08875511679471,3.45643051583019,3.01221291754464 -"Tfru20877_t",3.263480020737,2.20459643462076,2.00345172462381,0.20053579344758,0.251701768794181,0.1925186728101 -"Tfru20878_t",22.7245628581255,25.1196285695466,16.6037738471112,1.23419920219513,1.0092625260451,1.14788424765483 -"Tfru20879_t",50.5231463391551,41.5923371018671,49.0889590915113,0.978724179624707,2.4174638418689,3.72467517064405 -"Tfru20880_t",4.07964059861346,6.42801396744637,4.48907769941811,8.51796220968887,6.93135566343689,4.47722108447535 -"Tfru20881_t",6.49128331156761,7.17377712946644,8.26345243972929,6.71446833603879,9.2826184236152,5.91936746368251 -"Tfru20882_t",3.78858535189777,3.52372646115954,4.14291859512864,3.67002991110221,3.38324973564119,4.66377690880174 -"Tfru20883_t",44.5356214210083,57.7696038541193,33.4891392873981,34.5501427265108,31.5846438541842,28.2185816831309 -"Tfru20884_t",5.90923948761288,6.89924694713861,6.65452478401876,7.35199268976535,7.08182054846393,6.40953894893855 -"Tfru20885_t",0,0,0,0,0,0 -"Tfru20886_t",5.48191691820212,5.55528874936007,4.77977405657598,3.04783873129954,3.67720909276981,5.06359791391855 -"Tfru20887_t",27.5291556585564,28.9094904309393,25.7764495463504,13.7686191523503,12.9175913254066,12.302779775246 -"Tfru20888_t",0,0,0,0,0,0 -"Tfru20889_t",0,0,0,0,0,0 -"Tfru20890_t",0,0,0,0.329578421595264,0,0 -"Tfru20891_t",0,0,0,0,0,0 -"Tfru20892_t",0,0,0,0.760048196740099,1.05996857606879,1.25438897604852 -"Tfru20893_t",0.525570210793463,0.356962731081246,0.557041123907094,6.23095655931925,7.87325070819143,7.2172640027123 -"Tfru20894_t",7.43454661694225,7.58733495134213,8.32295847412956,6.04227106257984,8.08953008851084,8.9361338559209 -"Tfru20895_t",5.05693530080557,6.15412570057918,5.33813049856794,5.5682754297095,4.23575792145548,6.44488005946485 -"Tfru20896_t",7.81344146910248,7.08752907172843,7.2482475354896,4.40243670051272,5.22330072607963,7.41298831176351 -"Tfru20897_t",29.2651532269767,31.4195671727489,27.7855249787013,24.3030283011472,29.4451116827479,31.3741981201675 -"Tfru20898_t",25.8493466989069,30.9442874481123,28.592869175458,29.5041167371152,27.3882384435048,30.4879739722351 -"Tfru20899_t",4.60030746336479,6.41805197684469,5.65937804178101,6.45793233136274,7.96344579235828,7.93356052517783 -"Tfru20900_t",25.269032245989,25.7864227778047,36.1446023533594,40.8746413557969,49.9099251812423,40.1636713958541 -"Tfru20901_t",0,0,0,0,0,0.18682389004978 -"Tfru20902_t",0.0406632995021527,0,0,0.0841227917011468,0.0703909431929516,0 -"Tfru20903_t",0,0,0,0,0,0 -"Tfru20904_t",0.206582893700281,0.331640188608121,0.237199068745685,6.33934188576093,5.36413605626944,4.38316410237284 -"Tfru20905_t",12.4716435619468,19.0482271903647,15.2149753168624,11.2878910538535,7.94604896674414,8.23758533755578 -"Tfru20906_t",8.62529535641144,12.323576892221,9.73027596687253,12.2229379921335,11.8701244831753,8.26686122921507 -"Tfru20907_t",6.90046119504718,3.95633341038371,6.03666991123308,6.68452644825266,7.96344579235828,4.56780757510238 -"Tfru20908_t",0,0,0,0,0,0 -"Tfru20909_t",0.170061491440177,0,0.292897635495684,0,0,0 -"Tfru20910_t",1.14689934158973,1.3480125332503,1.02292821211876,1.4829154236738,0.992680468509475,1.52838520289871 -"Tfru20911_t",0,0,0,0,0,0 -"Tfru20912_t",4.09332564863039,4.55517804437718,5.72555395263297,5.49130188319418,5.55558937196211,6.48353701912394 -"Tfru20913_t",3.67928657391564,5.41436901593818,6.33685103361566,8.24587569160347,8.49212780356153,9.42165150619117 -"Tfru20914_t",7.34822221376855,5.89827588639609,5.84686604749594,5.64509113353716,7.43875645200195,6.97966408258611 -"Tfru20915_t",14.4079229787209,14.3267429600931,14.4444518228494,21.8730024991885,19.7295243116258,20.820502347331 -"Tfru20916_t",10.8132168121665,11.8175548396102,9.09693656224169,13.6801150183547,10.655097979318,16.4312536169525 -"Tfru20917_t",0,0,0,0,0,0.0647000629751344 -"Tfru20918_t",27.6437334816011,40.0838514035539,30.4728679280244,36.4196470940794,64.3370749927304,64.5825117317098 -"Tfru20919_t",29.4181623199471,42.0318516586799,36.1413037827097,66.270233173842,88.2210017017151,86.7475303006572 -"Tfru20920_t",14.7037304832433,14.7530001860313,15.0363019512989,10.9316685944989,13.0580012130436,9.63718349146487 -"Tfru20921_t",0,0,0,0,0,0 -"Tfru20922_t",0,0,0,0,0,0 -"Tfru20923_t",0,0,0,0,0,0 -"Tfru20924_t",3.70347368598028,1.56458248299268,2.85354332122129,2.6210788161362,5.06128846763242,5.41919320975024 -"Tfru20925_t",0.798098579328751,0.944069070237784,0.614938585723188,2.78076300247311,3.0539814613694,3.65717105966947 -"Tfru20926_t",0.653777251139669,0.787161537163244,0.844502521020629,5.07191695489988,5.37573168112086,3.82661851059161 -"Tfru20927_t",0.877392968892402,1.05639955640185,0.755568835169023,4.99157849660643,3.98692096784517,1.92579821910322 -"Tfru20928_t",12.8980025418813,11.7445064453849,10.30097895533,8.96603836435045,6.48212561814152,7.3818953402707 -"Tfru20929_t",429.030092061819,444.623587468858,425.100113480399,614.925406319793,583.931024602074,367.617361633335 -"Tfru20930_t",19.7302378641657,18.4113055191601,19.0320265242129,41.9710598402321,38.2577404961114,25.0961074145874 -"Tfru20931_t",2.13074085090327,1.87183323775482,2.04896278842528,2.265222785409,1.96717741427607,2.46830238840604 -"Tfru20932_t",90.4417931750032,95.181263062251,93.8071245319359,26.1943883307126,19.1352221890313,26.7622987760783 -"Tfru20933_t",11.8285120287958,10.6159176412548,12.2715017106623,4.91334926296177,7.17464761012239,7.97274057614877 -"Tfru20934_t",2.91145956666493,3.89495383071483,3.34294619236761,4.626457782869,8.65554048389835,12.9968810582145 -"Tfru20935_t",1.0176223296676,1.17985944175074,0.778957910820284,4.79522556785824,2.34876482320277,3.80537382505165 -"Tfru20936_t",9.26032951502549,9.04024148688473,8.76482358294631,6.55840330771959,6.93200501942267,9.39982046997236 -"Tfru20937_t",2.43446440059609,2.94828745880055,2.46424146915001,1.76713459740284,1.55260877548012,1.4686618260497 -"Tfru20938_t",11.9607994047485,14.8582299189966,13.4881843329114,11.0464631983836,8.50382247112545,7.91753313017747 -"Tfru20939_t",1.60474132191201,2.47174953856784,1.75542005703118,5.38351123349208,6.19400325891721,5.96563306523439 -"Tfru20940_t",19.2996811501974,11.1629788710549,13.9314385477829,13.5045500542402,9.82619517815123,11.6285248320174 -"Tfru20941_t",23.0516277726533,19.7366356147272,20.7332234784719,16.9558719662995,19.5085923780856,8.99488680386016 -"Tfru20942_t",0.289690954384302,0,0.2494679860946,5.09407015539255,2.7581113362121,2.96727875023892 -"Tfru20943_t",0,0,0,0,0,0 -"Tfru20944_t",0,0,0,0,0,0 -"Tfru20945_t",0,0,0,0,0,0 -"Tfru20946_t",0,0,0,0,0.386775767650633,0 -"Tfru20947_t",38.6447733148658,37.4255952844265,43.7691581602975,23.0281936142304,23.6319994034537,26.4299757253424 -"Tfru20948_t",0,0,0.051786482439108,0,0,0 -"Tfru20949_t",0.114925276021132,0.0922482968768599,0.098968147698268,8.67799671599422,7.46038074401358,7.23118350898561 -"Tfru20950_t",11.2715174559187,10.3140691931166,9.6417814661428,8.31679453445389,7.60958835889385,9.73105151097393 -"Tfru20951_t",0,0,0,0,0.269810182999329,0 -"Tfru20952_t",0,0,0,0,0,0 -"Tfru20953_t",0.270782842131982,0.326028227318217,1.39911134828236,49.1563161698258,9.43346408964494,1.38680231679176 -"Tfru20954_t",0,0,0,0.692421066352866,0.289696590909638,0.244880716439752 -"Tfru20955_t",0,0,0,0,0,0 -"Tfru20956_t",0.0451183548718837,0.108646893153036,0.0388537679739172,0.0933392522312402,0.078102947710332,0.0330102362118033 -"Tfru20957_t",1.88183243968042,2.26576576857068,1.15753145547894,6.46527398074998,8.26029271456104,6.8349146526932 -"Tfru20958_t",0.485609114285824,0,0,2.51152727824522,2.52186743300529,0.355289363158253 -"Tfru20959_t",2.09278518647734,1.43986131708864,2.83203870335151,2.16473988181848,3.88152193870031,2.84357928022388 -"Tfru20960_t",2019.15509538918,1294.98265596078,2401.87777011881,1114.97901156854,1316.67991942556,1278.47324438866 -"Tfru20961_t",1.12664787802567,1.38665231595051,0.808512695210482,7.45846133877454,7.50867145173523,9.39698277184675 -"Tfru20962_t",21.0775142672716,19.8050841131929,20.3875561049725,14.8792312855279,14.0931707775101,12.8265374548505 -"Tfru20963_t",23.0878398434637,20.7817314905401,23.4448388520358,12.0098481540489,10.2226770804944,8.64123557527312 -"Tfru20964_t",1.66648355322591,2.67530825038212,1.18184366807943,2.23077545414266,0.933316554844235,1.36270260991969 -"Tfru20965_t",68.2951489488165,63.4252197537373,60.3302561476678,65.6298960373898,62.0355874603841,63.614187792335 -"Tfru20966_t",3.27220773199541,3.99690546248004,3.43044885196977,5.66571632066123,8.05560378792988,10.669210215417 -"Tfru20967_t",12.0345975462432,12.5749764471774,11.4116259263416,22.3591184738403,23.3072198159891,25.8417293793097 -"Tfru20968_t",0,0,0,0,0,0 -"Tfru20969_t",11.101371216227,9.27210693983538,12.0145564017346,6.36223678021191,7.79076903410561,12.8418071422968 -"Tfru20970_t",2.0872143297254,0.837683292136455,2.69611363853791,3.23846622958825,3.16147149210083,2.29062334756687 -"Tfru20971_t",5.05875223858698,4.17791990707388,4.58298653187364,4.50676217551876,3.99888179683063,4.68529345700547 -"Tfru20972_t",3.81865340410006,1.8390955501894,1.97306493674713,10.2698631314331,3.30517466772893,3.3526395518176 -"Tfru20973_t",0,0,0,0,0,0 -"Tfru20974_t",0.469331713806969,0.282542618786248,0.202083005495625,0.121367100317437,0.710889539424907,1.11598572310462 -"Tfru20975_t",88.1276736517999,95.4194643462441,90.3755659322063,90.0703344779155,77.1873759291437,61.9778027654924 -"Tfru20976_t",0,0,0,0,0,0 -"Tfru20977_t",0.454110144710527,1.3668953719659,0.293293443111219,1.6440321805162,2.45654879453781,4.06998369120609 -"Tfru20978_t",2.43829589574122,2.23214768345979,2.08239048119263,1.37570729014171,1.01161021119273,1.8724064758815 -"Tfru20979_t",0,0,0,0,0,0 -"Tfru20980_t",25.8835570571638,23.9890499583979,22.3662774616101,28.4755872573262,31.7184794697167,30.4234150014098 -"Tfru20981_t",0,0,0,0,0,0.467414903622644 -"Tfru20982_t",151.851392323286,121.606027875817,162.853536361839,78.8997870733087,52.9381125999478,63.0081157216006 -"Tfru20983_t",8.15110061411524,8.51277964701145,7.63983170495013,6.1954147569171,5.90519829226767,7.89111864294691 -"Tfru20984_t",2.91148315250405,3.37355992119627,3.31601381181083,4.2016489609056,4.14578654022836,5.17076104185011 -"Tfru20985_t",0.289192346889664,0.812451867674513,0.498077218364433,0.59827086972313,0.375458748631596,1.16371025488839 -"Tfru20986_t",30.8852911054718,29.0983470903667,30.4991875689537,15.4185315520377,15.5336175584202,11.8655048067954 -"Tfru20987_t",4.11150311309619,5.40471466243686,5.15604211794629,2.62741427708922,2.67211231904736,8.76186481858439 -"Tfru20988_t",6.81440102141281,8.24550121878383,9.10890370534277,8.10073967881467,8.01084725540803,5.80420661798724 -"Tfru20989_t",0.754132646063262,0.968524309041071,1.16896129929426,1.87214744331672,1.04436401175324,0.772451380223777 -"Tfru20990_t",15.8855985167828,19.8622323868209,20.7829511324628,26.8596426375243,16.3936667190392,15.8691609006284 -"Tfru20991_t",6.81440102141281,8.24550121878383,9.10890370534277,8.10073967881467,8.01084725540803,5.80420661798724 -"Tfru20992_t",6.24077084587895,5.97268187293292,7.02786955112215,7.69675473898807,7.06363059092242,8.2538794623993 -"Tfru20993_t",10.8890119146024,10.8910672674721,9.49075771136014,4.02751907761963,5.73485465008581,9.45393457502337 -"Tfru20994_t",0,0,0,0,0,0 -"Tfru20995_t",17.6027793991611,17.3939676329741,19.0988312198445,15.5129554790009,13.0906920936157,9.62425672016655 -"Tfru20996_t",0.675686676445958,0.180786876721138,0.19395634307623,1.86378217323935,0.584829847064228,0.494357049541912 -"Tfru20997_t",4.34001946420762,4.10573001025921,5.2056880493172,2.56527952257667,3.4881179931297,1.92787088016314 -"Tfru20998_t",0,0,0,0,0,0 -"Tfru20999_t",0,0,0.397503933887,0,0.00859257675910888,0 -"Tfru21000_t",0,0,0,0.21907271553097,0.244416283422921,0 -"Tfru21001_t",231.579624598844,263.934345438198,225.473966090924,34.3288435527611,82.8895426485795,95.9607566677121 -"Tfru21002_t",0.958293271157195,0,0,0.330413854856596,0.552956991013833,1.16853725905661 -"Tfru21003_t",0,0,0,0.486828256735488,0.407360472371535,0.946940697605259 -"Tfru21004_t",1.07936244245971,0.433191681051293,1.7040746801751,3.34942010469191,3.1140832684505,2.63233660926671 -"Tfru21005_t",0,0.451060234227322,0.483917832558086,1.16252633882655,1.45914068866192,0.616706285883388 -"Tfru21006_t",0,0.0442767596959846,0,0.0570576781531744,0.0954876484810493,0.565010398929276 -"Tfru21007_t",5.32980405396746,10.1658550276861,4.18078258103261,22.4343120684761,40.5589784891126,64.0518431230908 -"Tfru21008_t",174.370904987825,183.277681809273,172.740114581193,153.369388020669,268.922883182326,325.664783528547 -"Tfru21009_t",6.43947463460387,8.42918812712307,7.67820098710973,5.43117773920529,8.7462407080997,17.2508068852334 -"Tfru21010_t",0,0,0,0,0,0 -"Tfru21011_t",13.7625650187553,13.1025060651504,13.366147959133,7.92295502040435,8.15697523675967,7.23855879551272 -"Tfru21012_t",18.9321828095366,18.4213793312809,15.71597664711,13.5258746313617,12.9910590345384,19.4808051107739 -"Tfru21013_t",0.183428770243335,0,0.31592015706303,0.189735466871801,0.158763852223404,0.134203187393838 -"Tfru21014_t",12.1342248817575,13.0962272267859,11.932100844336,8.31108005374811,7.73501206639243,9.67764767598139 -"Tfru21015_t",0,0,0,0,0,0 -"Tfru21016_t",13.8041244090181,14.3432152808304,15.4609796220726,7.70876840403331,5.93731994937887,5.63842786713747 -"Tfru21017_t",20.1727044527184,18.241890414929,19.3508298028395,9.24455785396645,13.2608834623074,6.16518837164275 -"Tfru21018_t",17.8658431121098,20.0330055488769,19.3783167769912,25.5335888518482,16.58489468624,15.9150601336157 -"Tfru21019_t",0,0,0,0.529870998946858,0,0 -"Tfru21020_t",0.222367328669792,0.178489955047603,0.459581043731713,0.460025642283137,0.115479900981978,0.130153647064855 -"Tfru21021_t",5.59536286774626,6.73693437372348,5.81656802973184,5.70506205907007,5.63860924066889,5.32190337221729 -"Tfru21022_t",31.0423993092703,28.4248855228545,29.0680544873636,37.5652401118845,34.4983171698572,38.2571762506781 -"Tfru21023_t",0.790685899025388,0.793335353140995,0.680900856164084,13.6993471445366,14.8849516604559,3.18172074395367 -"Tfru21024_t",0.73371508097334,1.64902894364678,0.63184031412606,6.7545826206361,7.1126205796085,8.32059761841794 -"Tfru21025_t",1.39243718405714,0.37256080119881,1.7986503969804,0.720156164314514,0.602600919765075,0.509378948837384 -"Tfru21026_t",1.58593265011647,2.54599494558096,2.12446779977782,7.0630942806655,7.05404362815366,5.70493738294119 -"Tfru21027_t",0.2193482422231,0,0.377784417584511,0.453779863327857,0.569560138263596,0.481449554775805 -"Tfru21028_t",73.166746641917,42.4801375217127,84.9663783124135,69.9401707808145,73.6107551733468,43.4587757803243 -"Tfru21029_t",0,0,0,0,0,0 -"Tfru21030_t",18.9988131214581,16.3460722408662,17.6390614902931,31.5660817860242,34.8923676976245,32.3614625940999 -"Tfru21031_t",156.579651647951,183.408638159036,155.106963027456,73.711859744545,61.3965144633278,44.9627674994514 -"Tfru21032_t",191.2798247978,214.561152326769,185.348528511608,86.539757695767,82.0284276814096,55.3693514138444 -"Tfru21033_t",28.6266235173917,34.3263739029435,32.2989914124427,39.1588670376081,35.1939051777121,25.1331399011892 -"Tfru21034_t",9.86677763441093,10.4155224894059,10.1087291948454,6.56335678453811,3.73454789550279,3.4585702092637 -"Tfru21035_t",4.32540736096647,3.08071850331402,4.77408277957686,5.41936226914175,4.06016389594675,5.61609683692791 -"Tfru21036_t",0.355330898731198,0.0407453202519544,0.48084765899805,1.15515079407871,1.84530601895432,1.48556035834146 -"Tfru21037_t",0,0,0,0,0,0 -"Tfru21038_t",10.6564886791368,14.2839444124647,13.4534521072445,26.2194787409911,23.0141108248867,17.0315744592795 -"Tfru21039_t",0,0.435054871077318,0,1.12127540422302,0.469121576247217,0.396548773073403 -"Tfru21040_t",0.14921914168996,0.359325959237929,0.257000767202252,2.31524450694364,1.42069678064211,0.98256756383197 -"Tfru21041_t",9.71282761344309,7.9755241814108,8.94106522919781,12.991521502418,11.3056741332137,9.92425882910949 -"Tfru21042_t",4.38632859140262,3.17851909072081,4.19699585017746,1.95349105050459,2.42555245731884,2.71890402422701 -"Tfru21043_t",1.83800717589613,2.19500736714838,2.00745850069721,2.04031436947733,1.82366631961633,2.36151777347876 -"Tfru21044_t",0,0.0893159006847478,0,0,0,0 -"Tfru21045_t",0,0,0,0,0,0.137814035485152 -"Tfru21046_t",0,0,0,0,0,0 -"Tfru21047_t",0,0,0,0,0.117280394061805,0 -"Tfru21048_t",0,0,0,0.0920538599865303,0,0 -"Tfru21049_t",0,0,0,0,0,0 -"Tfru21050_t",0,0,0,0,0,0 -"Tfru21051_t",0.0865194405473197,0.0694474819948348,0,1.87937767288669,1.1232828679452,0.569707042674974 -"Tfru21052_t",0.202597371635323,0.162620992806233,0.232622880924225,0.279417504267796,0.233806573370801,0.395273696632654 -"Tfru21053_t",4.31157454659061,4.29980358584194,4.72553665728184,3.04078380422069,2.37479118302442,1.9596169929094 -"Tfru21054_t",5.59249764901369,4.29167149705754,5.60983605892318,4.57696909697476,6.17030427280542,6.92437396727298 -"Tfru21055_t",2.01624904251474,1.84960470903729,2.81114782044886,2.38351114497695,2.4930460909138,2.31811082773767 -"Tfru21056_t",0,0,0,0,0,0 -"Tfru21057_t",0,0,0,0,0,0 -"Tfru21058_t",0,0,0,0,0,0 -"Tfru21059_t",0,0,0,0,0,0 -"Tfru21060_t",0,0,0,0,0,0 -"Tfru21061_t",0,0,0,0,0,0 -"Tfru21062_t",0,0,0,0.16396008269299,0,0 -"Tfru21063_t",0.182631253850973,0,0.078636647790689,0.0944552650296572,0,0.0668098476373671 -"Tfru21064_t",0,0,0.22203396041245,0,0,0.0936990364187846 -"Tfru21065_t",1.88686407721968,2.01939908072253,1.77962723770158,1.30115915891121,1.6331451665077,1.24902260609751 -"Tfru21066_t",4.4658828946301,4.00029267049908,5.12773949846219,5.48975746828763,6.10617028559074,12.4066607661872 -"Tfru21067_t",0,0,0,0,0,0 -"Tfru21068_t",41.33456854212,39.5401103437762,45.4654499476036,65.4579099366629,94.4541228808354,115.614974651648 -"Tfru21069_t",1.85133051848931,1.72700459543201,1.46501152048407,1.65620190736933,1.25592703110855,1.13485220644295 -"Tfru21070_t",8.44029486255196,6.36835445934572,7.70236672664145,18.2731213655505,23.5858544412194,36.9077578863997 -"Tfru21071_t",7.99628733077232,6.81466678197494,7.05604515311047,41.7645442131133,42.4662522047057,38.4246907492749 -"Tfru21072_t",111.702253398475,131.021705853585,125.372409033968,134.155377814028,128.336395604933,98.0534403628028 -"Tfru21073_t",36.6151420884406,39.6843193241547,36.4929717711835,44.026184151434,33.4612380933858,26.6529905441815 -"Tfru21074_t",3.26581893615546,3.61573753442277,2.32747611691476,2.21324133072173,1.55954625883794,4.77878481223848 -"Tfru21075_t",11.0665497450464,10.3838102206485,11.173083547094,12.2759665820057,10.1234582255575,13.3316221063345 -"Tfru21076_t",12.8245929142254,14.0237820168065,16.8059738419924,19.0331538471265,26.7046419399136,23.3893590489756 -"Tfru21077_t",20.2783668069011,13.9517596586865,15.680844840232,8.13338932373601,10.7458883229043,10.2946405620534 -"Tfru21078_t",11.0802241519913,9.45857258088897,11.4602076235921,11.3399049516415,9.28585729954807,9.35058132739033 -"Tfru21079_t",2.74814106216835,3.58158960871075,2.13754489668113,2.93432606662657,5.47336007179749,16.6688572374735 -"Tfru21080_t",99.8998793429161,108.669201056125,95.1819994740872,50.1403552562543,62.2597772438003,90.292762006928 -"Tfru21081_t",2.7159857295692,2.72508653632193,2.76412728163598,1.02158817137146,1.06853555206935,2.9344616727546 -"Tfru21082_t",0,0,0,0,0,0.0697246251905907 -"Tfru21083_t",0,0,0,0,0,0 -"Tfru21084_t",0,0,0.149269015063481,0.206645369709097,0.154341103680933,0.250464494745172 -"Tfru21085_t",0,0,0,0,0,0 -"Tfru21086_t",0,0,0.140477118383367,0,0,0 -"Tfru21087_t",0,0,0,0,0,0 -"Tfru21088_t",22.075719443592,11.4440072382839,24.2912622956347,56.1353845161656,98.4556067229794,76.1583496753841 -"Tfru21089_t",0,0,0,0,0,0 -"Tfru21090_t",147.356910869273,134.595100739546,151.400913657654,329.725048554334,371.485648190767,279.071199050409 -"Tfru21091_t",0,0,0,0,0,0 -"Tfru21092_t",0,0,0,0,0,0 -"Tfru21093_t",0.967187672442279,1.00384176772239,0.826298422945237,0.356561011533251,0.798186138701581,0.42312527395185 -"Tfru21094_t",0.384486850212574,0.462930240391199,0.165550837454082,0.19885318953612,0.166393236426359,0.421956932446529 -"Tfru21095_t",0,0,0,0,0,0 -"Tfru21096_t",0,0,0,0,0,0 -"Tfru21097_t",5.22998409954628,5.95923997824515,5.33209928060515,8.23906748273003,8.03884718939556,9.01634151299279 -"Tfru21098_t",0,0,0,0,0,0 -"Tfru21099_t",6.46233667472672,7.14127213298941,6.97537725081159,11.4918913596673,8.39005895980604,8.5817918092677 -"Tfru21100_t",0,0,0,0,0,0 -"Tfru21101_t",48.3455941797952,43.1319966052034,50.2324971245579,35.9072581097648,38.6892530146528,40.8220774695943 -"Tfru21102_t",0,0,0,0,0,0 -"Tfru21103_t",0.482356230266684,0,0,0,0,0 -"Tfru21104_t",0.108815451577689,0.0873635545646882,0,0,0.186685094527135,0 -"Tfru21105_t",0,0,0,0,0,0 -"Tfru21106_t",44.9514874305487,46.3968776192781,43.5793440174217,22.83898769678,19.5045190784601,17.5986267136483 -"Tfru21107_t",0,0,0,0,0,0 -"Tfru21108_t",0,0,0,0.712285604692254,0,0 -"Tfru21109_t",0,0,0,0,0,0 -"Tfru21110_t",0,0,0,0,0,0 -"Tfru21111_t",7.14981929969766,2.15213313883993,3.84817638124649,3.69782314158658,4.25453344415697,3.92330169104539 -"Tfru21112_t",0,0,0,0,0,0 -"Tfru21113_t",0,0,0,0,0,0 -"Tfru21114_t",0,0,0,0,0,0 -"Tfru21115_t",0,0,0,0,0,0 -"Tfru21116_t",0,0,0,0,0,0 -"Tfru21117_t",0,0,0,0,0,0 -"Tfru21118_t",10.7629762223442,11.9086254797058,11.1105148844894,8.80286229452991,8.15371927079742,7.89123465809941 -"Tfru21119_t",0,0,0,0,0,0 -"Tfru21120_t",0,0,0,0,0,0 -"Tfru21121_t",1307.73109319989,1853.90830695064,1200.51539266261,1753.81195100571,1544.42691464055,982.305189812208 -"Tfru21122_t",0,0,0,0,0,0 -"Tfru21123_t",0.526161023620756,0.0703898799759756,0,0.36283442099075,0,0 -"Tfru21124_t",0,0.0703898799759756,0,0,0,0 -"Tfru21125_t",4.922483013952,5.66336077291082,6.78241087194693,10.6926311740604,12.4976919922111,7.923230368244 -"Tfru21126_t",13.6094763831943,13.2238663918813,15.9495427406888,16.4800501205197,20.2819370875701,17.743263311634 -"Tfru21127_t",15.7197330768659,14.6864382092206,14.8685980669266,21.0583087802316,20.0743741983089,14.7063640075382 -"Tfru21128_t",26.0744280846365,29.9588482041402,21.1101663465345,37.5978743803809,52.5093008893124,65.2709458837386 -"Tfru21129_t",2.14707672396263,1.03132882551978,1.232846207432,0.305444090781317,0.127792345023408,0.756160665702362 -"Tfru21130_t",1.56649183206428,2.04908440659345,1.74868788595317,3.60078082157257,3.36452180202167,3.56565264186169 -"Tfru21131_t",0,0,0,0,0.0758225696749938,0.0640928673893407 -"Tfru21132_t",15.4553441236022,15.4427874084698,14.9661748299043,12.1393041377046,13.044086576187,13.8882883271815 -"Tfru21133_t",25.2692629344039,21.1327047218582,25.8621693300905,19.7061945057149,21.0698383536547,19.0686878516479 -"Tfru21134_t",2.70171196355344,7.33197374610399,11.1897661756674,21.691441874192,27.0589037815491,46.6870898528076 -"Tfru21135_t",2.53961235705706,1.95695782395119,1.3121955737745,1.68123518891965,1.49472231367766,3.71614630147386 -"Tfru21136_t",0,0,0,0,0,0 -"Tfru21137_t",0.579381908768603,0,0,2.39720948489061,2.507373942011,1.48363937511946 -"Tfru21138_t",0.565092220435745,0.907177197537909,0.97326075292512,2.14324502713034,3.09767498217054,2.06721053227728 -"Tfru21139_t",0,0,0,0,0,0 -"Tfru21140_t",0,0,0,0,0,0 -"Tfru21141_t",0,0,0,0,0,0 -"Tfru21142_t",0,0,0,0,0,0 -"Tfru21143_t",0,0,0,0,0,0 -"Tfru21144_t",0,0,0,0,0,0 -"Tfru21145_t",0,0,0,0,0,0 -"Tfru21146_t",0,0,0,0,0.0294626597724145,0.0498096108803709 -"Tfru21147_t",0,0,0,0,0,0 -"Tfru21148_t",0,0,0,0,0,0 -"Tfru21149_t",0,0,0,0,0,0 -"Tfru21150_t",0,0,0,0.0580874624513935,0,0 -"Tfru21151_t",0,0.106417945844794,0.114169988375751,0.274273047324412,0.0765006252691415,0.0323330141117189 -"Tfru21152_t",0,0,0,0.0397524445687487,0,0.0281175936991664 -"Tfru21153_t",3.66373854074264,7.8649625526909,3.5952739172457,11.7216493195019,13.2743326341759,13.9013269181361 -"Tfru21154_t",92.9420063018855,88.6573134381197,95.8009586179282,77.0198173711302,92.9971798386923,93.1033906212184 -"Tfru21155_t",0,0.141667027346606,0,0,0,0.258256553892343 -"Tfru21156_t",0.300037059898027,0.722501839467692,0.904321449592924,0,0,0 -"Tfru21157_t",0,0.396667676570498,0.425563035102553,0,0,0 -"Tfru21158_t",0,0,0,0,0,0 -"Tfru21159_t",0,0,0,0,0,0 -"Tfru21160_t",1.26648809203187,1.48252052487089,1.18152551203096,3.05674325020599,2.87749509551137,3.55200094474042 -"Tfru21161_t",4.67328098469889,12.0385817494746,5.98981348242661,26.3057302142104,28.22012069275,30.3747126179512 -"Tfru21162_t",5.1225839494785,3.94732712294544,5.29358897322687,7.20624558567726,7.80343695123424,14.3918188861762 -"Tfru21163_t",6.39441070025515,7.21017904313536,7.28963720150294,7.02371952645323,5.66635611759282,6.79479639254991 -"Tfru21164_t",8.09868670675907,7.84412879696286,7.99708428431789,4.18856895054392,4.71985750395259,4.70073400985793 -"Tfru21165_t",4.35419635705673,2.36428447468086,3.97019172992015,2.38441949526086,0.665065649252918,1.31175432556294 -"Tfru21166_t",9.34628717558454,10.9121221772112,9.78633578826224,6.26199001031002,4.59632391392661,7.07120157294611 -"Tfru21167_t",14.4608025498955,8.84373835730318,14.8249417872514,8.54742725630704,8.34421163782093,10.0762393094419 -"Tfru21168_t",11.6644672896393,13.8864628116099,10.157744831621,11.1165447641768,10.8900609275486,11.6984981260812 -"Tfru21169_t",7.49788352524074,6.97587982934323,6.75031021197152,4.4066350825195,3.68731462060441,6.23377888705656 -"Tfru21170_t",0,0,0,0,0,0 -"Tfru21171_t",3.75717248530624,4.10150119960193,4.33556616262797,4.66362310343209,5.07305890592924,4.17830460358203 -"Tfru21172_t",25.6473986778217,37.6071470287029,37.3902137812459,4.59561193317371,13.1094671246969,18.1735633621261 -"Tfru21173_t",44.5891037596089,36.9607933649876,42.6771258230604,51.6047550488528,49.6610324760759,46.1472688917284 -"Tfru21174_t",0.347725069418243,0.502401941351706,0.299444188606928,2.30195612787509,5.17664785709887,11.0413228330496 -"Tfru21175_t",6.59767356843828,5.29582500133387,4.92405396636985,4.09470991856315,4.94910982271282,5.47071213114357 -"Tfru21176_t",0,0,0,0,0,0 -"Tfru21177_t",8.19025130605669,8.03659530755095,8.88627288511897,9.7276788671748,8.61880319307581,9.00603676011629 -"Tfru21178_t",25.918094961404,43.401351633272,28.476505221224,88.747755398078,120.287263739347,125.545654113452 -"Tfru21179_t",0.372827115849619,0.51871926936142,0.2782527537209,1.61971217784584,1.41985613165948,2.36404076255299 -"Tfru21180_t",0.169034963322832,0,0.145564820860028,0.524540304792463,0.731527608836208,0 -"Tfru21181_t",0,0,0,0.843678095410531,1.76489913393978,1.49187038413538 -"Tfru21182_t",30.8502835861954,29.0299840062745,29.5667477538788,31.7306981610002,26.2116814321741,19.6382141353987 -"Tfru21183_t",2.60535398998637,2.76205111245695,2.6245958981749,4.06782182924679,3.57399819937905,3.02110299907298 -"Tfru21184_t",18.4461925130624,17.7354946369253,18.4058551840775,15.2643315171555,16.1740579724757,17.2952996504294 -"Tfru21185_t",0,0,0.106862209700789,0.128358705801011,0.322217921646909,0.363161357910651 -"Tfru21186_t",18.2791808799413,18.6738936970111,20.5112029885692,21.0085116945084,23.17254379375,26.342168497019 -"Tfru21187_t",1.3152309474982,1.12169235351149,1.06182557682144,1.10536689799873,1.99216011831011,1.9846839278576 -"Tfru21188_t",36.8135358886118,28.034153771106,42.6758436886548,18.0632428180311,86.8072579642854,82.7015833057161 -"Tfru21189_t",0,0,0.592997671490055,0,0,1.00762393094419 -"Tfru21190_t",0,0,0,0,0,0 -"Tfru21191_t",0,0,0,0,0.488012377975268,0 -"Tfru21192_t",0,0,0,0,0,0 -"Tfru21193_t",0,0,0,0,0,0 -"Tfru21194_t",0,0,0,0,0,0 -"Tfru21195_t",0.503391072531975,0.987707796520413,0.77066009019903,0.578554219888713,0.580936172982576,0.531987868004601 -"Tfru21196_t",40.8900060055512,33.418373850908,48.0170676647836,35.374750249211,41.1830618783732,32.0923760652937 -"Tfru21197_t",0.202434642822765,0.0812451867674513,0,0,0,0.148108577894886 -"Tfru21198_t",1.5146751768194,1.91054360640523,1.95654866106389,3.02159534235246,2.52836290611026,2.05807025819166 -"Tfru21199_t",33.7716132536383,28.4520104224486,37.6149652787489,32.7675042338764,26.0900172304932,20.1139813717548 -"Tfru21200_t",9.44353555456027,8.20907751947624,8.59116622095242,10.7299865606185,7.8120817571534,8.04808604789551 -"Tfru21201_t",0,0,0,0,0,0 -"Tfru21202_t",0,0,0,0,0,0 -"Tfru21203_t",0.157028741628874,0.315109836527965,0.270451274644613,0.8121387273578,0.407741183093378,0.344663886876884 -"Tfru21204_t",0,0,0,0,0,0 -"Tfru21205_t",0,0,0,0,0,0 -"Tfru21206_t",169.722229528139,141.354283934337,197.806008214756,229.456947118628,204.703278182205,123.241335145547 -"Tfru21207_t",0,0,0,0,0,0 -"Tfru21208_t",0.141989369191179,0.0379907070518223,0.0407581498408078,0.0979141902279263,0.242939046242171,0.207769216314516 -"Tfru21209_t",28.3322257985869,31.1718752033856,30.0686881989647,26.4769914786258,30.3154853152384,30.1562949773166 -"Tfru21210_t",0,0,0,0,0,0 -"Tfru21211_t",0,0,0,0,0,0 -"Tfru21212_t",0,0,0,0,0,0 -"Tfru21213_t",0,0,0,0,0,0 -"Tfru21214_t",4.15435929089575,2.5935963468071,5.962559008305,11.4591881970046,8.78958557693967,14.8596847931902 -"Tfru21215_t",0.18710551619476,0.150185979993284,0.161126316185822,0.387077255355388,0.161946201154385,0.684466145059886 -"Tfru21216_t",0.297206521597102,0.318082570834833,0.255940032903658,0.409900206732475,0.685979663380368,0.507376673095099 -"Tfru21217_t",0,0.0287195506886646,0,0.037009729057617,0,0.0523552468708498 -"Tfru21218_t",0,0,0,0,0,0 -"Tfru21219_t",0,0,0,0,0,0 -"Tfru21220_t",0,0,0,0,0,0 -"Tfru21221_t",0,0,0,0,0,0 -"Tfru21222_t",0,0,0,0,0,0 -"Tfru21223_t",0,0,0,0,0,0 -"Tfru21224_t",0,0,0,0,0,0 -"Tfru21225_t",0,0,0,0,0,0 -"Tfru21226_t",0,0,0,0,0,0 -"Tfru21227_t",0,0,0,0,0,0 -"Tfru21228_t",0,0,0,0,0,0 -"Tfru21229_t",0,0,0,0,0,0 -"Tfru21230_t",0,0,0,0,0,0 -"Tfru21231_t",0,0,0,0.331674976440018,0.333040508328179,1.45451668291428 -"Tfru21232_t",0.0688609645667602,0.11054672953604,0.118599534372842,4.34494219136423,2.80127105160737,3.98011452974085 -"Tfru21233_t",2.40636294037844,1.47706076701061,1.64560600768384,3.88006632084759,2.87914969078433,2.64087451655035 -"Tfru21234_t",0.185044882756492,0.222797924064927,0.557731290497838,2.0097750224372,0.880894589759372,4.21627377255719 -"Tfru21235_t",0,0.0775989701000974,0.0832516869590724,0.399994678146304,0,0.212192381448945 -"Tfru21236_t",0.407817362968192,0,0.351192795958417,12.655171431158,8.82449566969892,3.58048892192492 -"Tfru21237_t",0.308861679306792,0.247917297856561,0.265976896939095,5.11169669572263,2.94063340993202,10.5563049102693 -"Tfru21238_t",0,0,0,0,0,0 -"Tfru21239_t",0.157617967676262,1.265168949662,0.407199151786682,1.63037230445187,2.72847445847351,1.72978592381926 -"Tfru21240_t",40.436233980824,42.7572729832397,45.5692030966349,25.5975371885125,30.6163555024501,33.8631781216631 -"Tfru21241_t",0.0363366681537402,0.0291667409243013,0.0312913996398936,0.375860051156075,0.220154372936087,0.159511400933506 -"Tfru21242_t",0.224626675859485,0,0,0,0,0.164345079749673 -"Tfru21243_t",2264.75173700468,2366.37655805602,2588.52971731479,8912.34542292631,7032.30131171327,2329.89455777867 -"Tfru21244_t",5.85574187533323,6.51773654439256,6.52187216435045,7.51077367652181,5.40623377831368,3.77016166221276 -"Tfru21245_t",0,0,0,0,0,0 -"Tfru21246_t",0,0,0,8.30905279623439,7.82180795456022,1.22440358219876 -"Tfru21247_t",0,0,0.0718428162536583,0.172589560729463,0,0 -"Tfru21248_t",0.519749237618629,1.32743120112174,0.813787581185983,0.342121432390884,0.899721358269415,0.760535048470365 -"Tfru21249_t",0.785633199234234,0.546530901010474,0.631446398718251,0.541763365506762,1.17865333683061,1.14959588203948 -"Tfru21250_t",14.5864170658118,12.52336521744,16.1784101092009,19.2896334649577,21.7742006337823,23.1338274621257 -"Tfru21251_t",4.45012522117005,4.94588695540532,4.86399041139284,4.8686958341263,5.03688429233857,4.75858527688085 -"Tfru21252_t",0,0,0,0,0,0 -"Tfru21253_t",0,0,0.0463160793645544,0,0,0 -"Tfru21254_t",0.113912375283319,0.182870522079958,0,1.35503281900173,0.492975215717417,1.25013681002802 -"Tfru21255_t",4.41737162756177,4.5127584619397,4.91065567274169,3.15693696504476,3.19774076352072,2.87933836662764 -"Tfru21256_t",0.0635479400691736,0.306052216415966,0,0.0657328621991563,0,0.0464939938172297 -"Tfru21257_t",3.17269715580604,3.7669385178646,3.30137806932429,1.9827430928334,1.48745865639362,1.25734976828153 -"Tfru21258_t",0,0,0,0,0,0 -"Tfru21259_t",2.12684498155563,3.07291921596385,6.04407247322866,16.2797834005546,7.5475129545597,15.5607746395893 -"Tfru21260_t",6.32139149098132,8.08907911872225,4.97031636417485,17.0575702169152,16.3348439799059,18.0976730132192 -"Tfru21261_t",149.315318089877,172.798356606023,143.13712944338,70.9447592183691,75.4122096348192,64.4662834507126 -"Tfru21262_t",8.12642070170772,9.67191699709919,5.9845688992407,5.21740890223857,4.36574115320128,8.15980447328163 -"Tfru21263_t",0,0,0,0.255835654054812,0.0713580415292631,0 -"Tfru21264_t",0,0,0,0,0,0 -"Tfru21265_t",0,0,0,0,0,0 -"Tfru21266_t",0,0,0,0,0,0 -"Tfru21267_t",0,0,0,0,0,0 -"Tfru21268_t",0,0,0,0,0,0 -"Tfru21269_t",0,0,0,0,0,0 -"Tfru21270_t",4.47014673699425,3.92982419440197,2.62742042787133,5.72475491429747,6.2641994260714,7.00826273358192 -"Tfru21271_t",9.59616437598542,10.9191491387335,9.62591534629455,23.6335767731109,27.1688129607778,27.2863717471911 -"Tfru21272_t",0,0,0,0,0,0 -"Tfru21273_t",0,0,0,0,0,0 -"Tfru21274_t",12.8729746560556,12.0757845907339,12.1986007231242,9.41181323913975,8.85990226155518,10.0613574854255 -"Tfru21275_t",37.0772053907506,28.2542618786248,40.0124350881339,22.8170148596781,20.3111296978545,16.1388704572053 -"Tfru21276_t",4.85475484920307,5.4926575357808,6.52982796844203,4.8303705154407,7.84365079052864,9.23498147088669 -"Tfru21277_t",5.56425913566062,6.0215607673357,5.39063288698798,3.28889769659741,4.21404893151701,8.61455894668924 -"Tfru21278_t",0,0,0,0,0,0.298954571139969 -"Tfru21279_t",0,0,0,0,0,0 -"Tfru21280_t",0,0.0706110000177849,0.113632014608535,0.0454967768729239,0.152280302237317,0.160903297974811 -"Tfru21281_t",7.79128494251327,5.71009518288982,6.70948172278621,4.20478276583636,7.62322561401732,7.43528949512634 -"Tfru21282_t",2.76896429701541,6.35661912816664,2.95677942648708,24.1735742222242,22.0010906671776,20.5423766196266 -"Tfru21283_t",0.34828110002969,0.319495433897469,0.578422958578832,0.334523236527895,0.689026656258871,0.655239015028012 -"Tfru21284_t",0.358838292742363,0.89798386077894,0.290837049115312,2.46722848052341,1.58947348133009,2.0230961902652 -"Tfru21285_t",0.794894162237232,3.26998664186442,0.984004415878758,7.50279787036284,6.36407389657671,7.66950184705245 -"Tfru21286_t",0,0.152282602173441,0.0445570001852395,0.249760585830832,0.268702360445441,0.252371421992928 -"Tfru21287_t",0,0,0,0,0,0 -"Tfru21288_t",63.5785847900989,85.8778609188427,48.6253958540697,61.5558709062264,50.164951829363,47.8870640319793 -"Tfru21289_t",0.908922159814733,1.14647381018057,1.22998898862716,1.47741465548706,1.46102005585494,14.9150145173745 -"Tfru21290_t",5.45927067768411,4.1066078064558,4.35202598838629,4.48530980022004,3.88815209128776,4.90716222156376 -"Tfru21291_t",3.2193757521905,3.07634603179674,1.71623048827854,1.11002172772079,2.25572144783107,3.36487553794039 -"Tfru21292_t",0,0,0.0443566621504806,0,0,0 -"Tfru21293_t",76.9945208954593,83.7503916699166,90.4708739292964,99.1800508778217,127.05459735278,112.927240537542 -"Tfru21294_t",6.3505867816361,6.53012202733645,5.71902893023193,7.89989489338951,7.65219804338041,10.7806799596661 -"Tfru21295_t",0,0,0.676128151616823,0.812138685323525,0,1.72331934518971 -"Tfru21296_t",51.3301691067907,50.5407939842165,52.7490149008988,49.9093155993773,60.4220946677682,57.0836400831532 -"Tfru21297_t",30.1709093049161,34.7606148152568,31.245285998319,38.9430577213605,58.19358748076,70.5991863640437 -"Tfru21298_t",0,0,0,0,0,0 -"Tfru21299_t",0,0,0.069764431984025,0,0,0.237087983901168 -"Tfru21300_t",0,0,0,0,0,0 -"Tfru21301_t",51.6948513427159,41.0935449717058,57.5926954104602,25.00537479929,28.6186474070911,22.5834762025573 -"Tfru21302_t",11.4144533656858,10.6281067689813,11.5989055491266,14.876704242171,13.6338458096848,16.2013880520615 -"Tfru21303_t",10.8029759459864,8.94808479705541,10.3916555083181,11.6499133995539,12.4339679066893,12.1921117302664 -"Tfru21304_t",0,0,0,0.155872365609479,0,0 -"Tfru21305_t",84.2508186053668,113.11613420279,71.1654910647024,52.9003551289738,82.8696416930585,113.624161825579 -"Tfru21306_t",1.85938459655115,2.44225973904572,1.89234267118036,0.874233841320771,0.877833130603449,1.11304937311348 -"Tfru21307_t",12.6104371052278,10.54985067919,12.0831111235249,33.2530459465931,44.4276976913197,35.4756053543364 -"Tfru21308_t",22.202742432454,14.4500367893538,18.4739953273983,8.68988438272846,8.56984593751617,11.3051806466373 -"Tfru21309_t",26.55933436048,16.480385755272,24.331518823128,12.2749487917465,9.94516704802122,14.0570316194855 -"Tfru21310_t",0.568838776277257,0.913191773399706,0.918481370724933,1.21356828027947,0.923155027316788,0.884389350019823 -"Tfru21311_t",2.91365468571494,5.06725760243237,2.09091664645763,8.03688729038471,4.62342362717636,3.90818299474078 -"Tfru21312_t",17.0007858381116,14.532319083818,17.397195823969,12.6751270234278,22.5498912734866,22.4537275055624 -"Tfru21313_t",0,0,0,0,0,0 -"Tfru21314_t",0.499071545176915,0.347182402067643,0.630338911399424,0.825969208655379,0.835129301081684,0.413824165167691 -"Tfru21315_t",0,0,0,0,0,0 -"Tfru21316_t",2.28703385040238,1.22383856655144,2.23208198084642,0.788555751608754,0.263934099159053,1.11551832715749 -"Tfru21317_t",9.79395584123092,9.78309917344854,9.55863086616355,8.10455538285556,8.85375824601294,7.96179531429763 -"Tfru21318_t",1.18139592334848,1.31706064486298,0.395640634196904,0.950456104360926,0.681692290484241,1.34454818370201 -"Tfru21319_t",1.59513373616672,0.85358867110107,1.83153711309959,0.549992682451168,0.460214204546323,0.778038731979464 -"Tfru21320_t",1.98585679932507,2.04448961767836,2.08189110697652,2.76861681258564,1.86828993623636,2.58999738220091 -"Tfru21321_t",0,0,0,0,0,0 -"Tfru21322_t",86.560901988703,68.0004378008733,83.5642015821878,26.6662963075787,34.200299499555,42.0580628891375 -"Tfru21323_t",24.8300789810152,21.1813919871796,26.2679866024216,33.3246659474698,29.697652420479,23.6250993134689 -"Tfru21324_t",0.112223319224482,0.0540476930405968,0.0193282703626593,0.301812708991371,0.349679187210725,0.0985280146829458 -"Tfru21325_t",30.4781832008042,26.6597577974125,28.6017946847995,32.3344535171292,21.9832552590267,15.723619955585 -"Tfru21326_t",32.3058085221112,30.0385613257477,28.6752110561829,25.5166605056481,21.3514288316519,21.3451389578875 -"Tfru21327_t",6.33072085650419,4.12017342262635,3.38890319195719,4.24760132760658,3.99852097066113,3.63031921581457 -"Tfru21328_t",0.162916050623363,0.392308691113679,0.187060674770353,5.6734216073405,7.00346658269524,3.8937141971461 -"Tfru21329_t",0,0,0,0,0,0 -"Tfru21330_t",58.7867567318509,75.6089258856019,60.2194202072294,272.646006345004,255.593008507029,245.110055499656 -"Tfru21331_t",0.760848695288581,1.27233028333933,0.873608645644485,0.721424363849155,0.878053969126872,0.695830865958993 -"Tfru21332_t",1.73575158618693,0.557301694355245,1.49474619767425,1.79543065758853,0.600940862134868,1.77791495365555 -"Tfru21333_t",28.5992771987906,15.6029652565895,34.5373830216872,51.538410035863,29.2982643995355,19.2895666476398 -"Tfru21334_t",7.69845979311307,7.13931236389783,8.43175159406925,8.27239883409204,8.73342436207569,7.27300085134185 -"Tfru21335_t",7.32976441630078,6.98256811297635,7.97675679410824,7.16519709410017,5.71671642771061,9.25217103810288 -"Tfru21336_t",5.53729158562945,5.58970445092404,5.11188462285867,9.13889611913747,8.33746471278151,9.808373614799 -"Tfru21337_t",34.4554018121739,37.661897253153,41.8889549630498,26.8872779755109,28.9451973764117,23.5405989081724 -"Tfru21338_t",17.3190622882676,20.0225637973508,21.2585103842767,25.5348910323252,23.6040325402543,18.9123261004239 -"Tfru21339_t",0,0.204965060841898,0,0.792390673197125,0.22101472437179,0 -"Tfru21340_t",6.27350216150419,8.5386581028,10.335102281062,22.5711282668272,31.8713278667957,19.5570644902111 -"Tfru21341_t",0,0.278650847177622,0,1.43634452607082,0,1.01595140208889 -"Tfru21342_t",140.452991999789,106.729974701564,164.952325515564,55.5562622488439,48.7501587084628,36.3400212269107 -"Tfru21343_t",9.26774330062954,9.84983781146966,8.94160534428958,9.00943069302287,7.35308538050417,8.03628974236603 -"Tfru21344_t",0,0,0,0,0,0 -"Tfru21345_t",0,0,0,0,0,0 -"Tfru21346_t",0,0,0,0,0,0 -"Tfru21347_t",0,0,0,0,0,0 -"Tfru21348_t",0,0,0,0,0,0 -"Tfru21349_t",0,0,0,0,0,0 -"Tfru21350_t",0,0,0,0,0,0 -"Tfru21351_t",0,0,0,0,0,0 -"Tfru21352_t",0.0425800186373276,0.0341781576365862,0.0366678742865859,1.36536450007391,1.76901395199154,0.903439804847924 -"Tfru21353_t",0,0,0,1.45640520380924,0.40622259395709,0 -"Tfru21354_t",0.17429538749263,0.139903537379636,0,0,0,0.255041742018165 -"Tfru21355_t",0,0,0,0,0,0 -"Tfru21356_t",0,0,0,2.63901044160951,5.83603522728374,1.86661786891386 -"Tfru21357_t",0,0,0,0,0.202263822860415,0 -"Tfru21358_t",0,0.0914972931030998,0,2.24026870111046,3.35450570803643,2.75216685789751 -"Tfru21359_t",7.40379219748368,7.27699694427891,9.75886456395241,2.50068615330316,2.41943546742608,1.93460170316836 -"Tfru21360_t",0.309051048822002,0.165379534069858,0.0887133243009612,1.01231025917744,1.8278771410491,4.93680124908368 -"Tfru21361_t",0,0,0.109697825576094,0,0,0.0465997420973296 -"Tfru21362_t",0,0,0,0.0663349952880035,0,0.0469198929972349 -"Tfru21363_t",338.16139509778,335.402910000366,400.876401841977,862.734970072191,569.5464759176,240.80516896465 -"Tfru21364_t",3.09557171317514,2.1396506197815,2.36956285666109,4.44722844561334,2.67932282032701,1.88736110009348 -"Tfru21365_t",5.64119265510752,4.80672711381398,6.80109519941786,1.7056591247091,0.976528900969161,1.52392710313333 -"Tfru21366_t",0,0,0,0,0,0 -"Tfru21367_t",2.94653034353364,2.14511149727765,3.06849692520927,6.09567746259909,5.99029223177017,6.86844469511725 -"Tfru21368_t",9.4939453381662,6.6458776297948,9.60173102852933,7.53656201393007,4.10866663033866,3.5538273749811 -"Tfru21369_t",6.16799503148628,6.78460825459804,5.55748871809655,11.7263225694874,11.6411355111925,9.71490578493053 -"Tfru21370_t",4.47364674511632,3.74210593984388,4.21746326267552,11.0084858211695,16.8334179952162,17.0544868912875 -"Tfru21371_t",0,0,0,0,0,0 -"Tfru21372_t",0,0,0.0394254582928795,0.047356318162008,0.317008585583952,0.167479727047351 -"Tfru21373_t",10.2000590876607,18.2191924829078,12.306976365374,34.3769275447497,68.2995949300822,59.6608819528883 -"Tfru21374_t",4.31870563898069,5.90595961011881,4.69856881785534,10.2028471174409,10.2910010257998,11.0135192876966 -"Tfru21375_t",1.92916119431427,1.91719095728988,2.33373277314303,1.23530341143215,1.62999869713017,1.17620398792959 -"Tfru21376_t",0.132299805939287,0.10619449608974,0,0,0,0.193590739610638 -"Tfru21377_t",0,0,0,0,0,0 -"Tfru21378_t",0,0,0,0,0,0 -"Tfru21379_t",0,0,0,0,0,0 -"Tfru21380_t",5.72798023441687,7.66289829738462,1.64422081744168,8.88738175506321,3.7183215844595,4.54003282808472 -"Tfru21381_t",9.00390804167423,9.48971039847593,6.47268288245448,17.0882162605378,17.0094826876963,13.4043094122762 -"Tfru21382_t",13.5899138894989,12.6437821906846,10.3730989806247,18.5299005219945,17.9111307695859,12.6545711407248 -"Tfru21383_t",10.9236012692097,11.2087863567106,10.7645770407308,14.444311842605,12.3788984295262,11.2054264562833 -"Tfru21384_t",0.13409477537342,0,0,0.0693526287528209,0.116063598273454,0.245271587495522 -"Tfru21385_t",34.5211179028741,28.9000735787077,29.1473109274894,45.192978170209,38.2827302350059,31.8671176948957 -"Tfru21386_t",412.308425573987,480.617878113007,358.182740064076,460.303239322142,544.795313466148,554.039844316478 -"Tfru21387_t",0.699503553467505,0.898364762924024,0.331308441149781,3.76248116487827,4.38947020239644,2.84039202361695 -"Tfru21388_t",0.401140953206093,0.597977875321146,0.394792447298411,2.13394159466729,0.843202833159225,1.97057149511579 -"Tfru21389_t",0,0,0,0,0,0 -"Tfru21390_t",47.7462164111074,54.6841179636595,43.9182991009593,20.0916461240761,51.6781763720172,91.6375436363649 -"Tfru21391_t",19.5562003981343,19.3434755427207,16.6349853448169,25.3228275694762,18.9544340909449,10.4599048879265 -"Tfru21392_t",0.127481603598555,0.71628912764627,0.219562112192516,2.90102361790632,2.75849181784215,3.17118669817427 -"Tfru21393_t",0,0,0,0,0,0 -"Tfru21394_t",0.0697181549970518,0,0,0,0.0603434392683146,0.153025045210899 -"Tfru21395_t",0.356143848772033,0.41292301706114,0.204462692324354,3.43829622302963,3.4250515458464,4.51650934192884 -"Tfru21396_t",11.0345660896091,15.6400951577479,12.2577946487791,14.7235834023768,13.775865036869,13.6255552544802 -"Tfru21397_t",0.0352836525709565,0.05664301135404,0,0.0364967844717701,0,0 -"Tfru21398_t",1.52775074257605,1.2518438135375,1.09635485459267,0.395069568451379,0.399450934879949,0.407516024611332 -"Tfru21399_t",0,0,0,0,0,0.0743229260294773 -"Tfru21400_t",0.0841787342399273,0,0,0,0,0.184764708896927 -"Tfru21401_t",0,0,0,0,0,0 -"Tfru21402_t",0.22758816174313,0.12178707787066,0.117592819885661,0.564991579877595,0.643485347949726,0.865861417095442 -"Tfru21403_t",0.283531477460167,0.523446039618848,0.170914617540343,0.32260792510973,2.69946772697101,2.77972258411563 -"Tfru21404_t",0,0,0,0.526079957127205,2.1610058300436,0.811866502935093 -"Tfru21405_t",2.73575175375134,6.49630781032009,3.51765857710525,16.5072430608139,12.5300654388419,7.75610659952934 -"Tfru21406_t",0.0487299169207932,0.0782291241496341,0.0839277447418027,1.81459302655583,2.53064423381621,1.46175606315631 -"Tfru21407_t",2.50955606287396,3.11748067290469,2.10965459079999,0.123611442144075,0.517168167271117,0.874325175339654 -"Tfru21408_t",0,0.125108543630769,0,0.644889379052205,0.269810182999329,3.64913156668662 -"Tfru21409_t",0,0,0,0,0,0 -"Tfru21410_t",0.0895633014620975,0.431344381771756,0.154255257926298,0.092642690647425,0.0775200898915981,0.327638911654465 -"Tfru21411_t",0.320650293020792,0.386069685211744,0.276128686898603,0.346435816460207,0.416300635410224,0 -"Tfru21412_t",0.500657787672512,0.723362985879453,0.603599537272988,0.207148614606161,0.346669102828696,0.51281933109016 -"Tfru21413_t",0,0,0,0,0,0 -"Tfru21414_t",0,0,0,0,0,0 -"Tfru21415_t",0,0,0,0,0,0 -"Tfru21416_t",0,0,0,0,0,0 -"Tfru21417_t",0.256129197473925,0.719564840120262,0.771981725262252,1.05974199789372,2.54941832213619,3.18568907636714 -"Tfru21418_t",3.39664596110973,2.72642203572714,2.92502894747037,1.40537213736848,0.979970947686241,2.15376220415879 -"Tfru21419_t",2.66922601782191,1.52232829051721,1.75420214302306,1.67113161206317,0.9119629304137,1.49037352421819 -"Tfru21420_t",4.46511845045095,6.17255508521611,4.8420361080566,3.93439647249517,3.00588726512736,4.23479742898271 -"Tfru21421_t",12.448971805826,15.0397103753319,12.1805774230098,9.15732642507213,7.11558686815553,10.3958918780762 -"Tfru21422_t",2.88526378271916,2.12711462883118,1.89070842688828,1.84700913975169,3.28275492687528,1.55797039064579 -"Tfru21423_t",13.6691468143566,12.6537931029496,11.9430576240776,12.0750174914398,12.1765463763456,8.90586377531838 -"Tfru21424_t",0.209502186462462,0,0,0,0.181331282589324,0 -"Tfru21425_t",0,0,0,0,0,0 -"Tfru21426_t",1.08210087176337,0.631695597348802,0.847139531234589,2.03510172897622,1.78804535208981,3.31076434661988 -"Tfru21427_t",1.59010176854475,0.63817197176957,1.60932026697674,4.93431920785843,5.7345303090157,5.23519437007003 -"Tfru21428_t",0,0,0,0,0,0 -"Tfru21429_t",0,0,0,0,0,0 -"Tfru21430_t",0,0,0,0,0,0 -"Tfru21431_t",0,0,0,0,0,0 -"Tfru21432_t",0,0,0,0,0,0 -"Tfru21433_t",0,1.11154129148876,0,0.477466174875191,0,0 -"Tfru21434_t",0,0.0833541471161738,0.447130506597243,0.107415134520747,0,0.151953176332207 -"Tfru21435_t",0,0,0,0,0,0 -"Tfru21436_t",0,0,0,0,0,0 -"Tfru21437_t",2.17826484971518,0.661576082857592,1.67302636785236,0.974338823571516,0.866247619769744,1.76598980580342 -"Tfru21438_t",0,0.176527500044462,0.0946933455071124,0,0,0 -"Tfru21439_t",4.71486808411185,4.12858193981538,3.69110795752214,7.75882534172184,6.86329653004542,7.21273661227902 -"Tfru21440_t",0,0,0,0.377821060118629,0,0 -"Tfru21441_t",0,0,0,0,0,0 -"Tfru21442_t",0,0,0,0,0,0 -"Tfru21443_t",0,0,0,0,0,0 -"Tfru21444_t",0,0,0,0,0,0 -"Tfru21445_t",0,0,0,0,0,0.165339770884674 -"Tfru21446_t",0,0.126279971941919,0,0.162731917279559,0,0.460412433156387 -"Tfru21447_t",0,0,0,0,0,0 -"Tfru21448_t",0.61321442898594,0.984430730170578,0.528070919467971,5.70868317111009,4.24606390178076,4.0378506455105 -"Tfru21449_t",0,1.38561996610218,0.991037205033168,1.1903951209215,2.4902001478872,2.94695492318198 -"Tfru21450_t",0,0.0595176566787154,0,0.0766980086736846,0.064178150325083,0.0542498321503775 -"Tfru21451_t",7.22489240234448,6.74335050169846,6.51111443706905,6.43051444321906,4.79911372500906,5.53185538437399 -"Tfru21452_t",0.265016961424124,0,0,0,0,0 -"Tfru21453_t",0.265016961424124,1.489067934129,0.228219924187489,0.548257689762048,0.458762424721256,0.775584351121485 -"Tfru21454_t",9.06586799691879,7.03443037946962,10.4094555348826,9.69015884404973,10.2008630518505,5.5274334376239 -"Tfru21455_t",6.87629418413983,11.5188905367091,7.20882579034929,9.27745663636491,8.0218120066473,7.87452723754305 -"Tfru21456_t",0,0,0,0.112417650488078,0.0940670689758332,0.0795149544972545 -"Tfru21457_t",0,0,0,0.454967768729239,0,0 -"Tfru21458_t",8.98506703437941,8.65456748881086,7.73750972913732,8.36459459300066,5.63823926532421,3.94428191399215 -"Tfru21459_t",5.7462638010566,9.68607117207029,6.63086589578395,13.3141867423473,12.9313266229569,18.750627005858 -"Tfru21460_t",0.195942569729323,0.275238795987692,0.12655227282933,0.760048196740099,0.805576117812281,0.967671495808862 -"Tfru21461_t",4.00338257539028,4.2358952609947,4.28328426666396,3.89005654678097,4.20007765015561,6.25745374405723 -"Tfru21462_t",5.90343188123685,6.10546599478104,6.8435136725951,21.0201257365999,27.7098704023864,18.6056397312278 -"Tfru21463_t",3.01134488793045,4.88362618630686,2.96368697452546,14.8115805499322,12.7661467713216,13.3991132613464 -"Tfru21464_t",0,0,0,0,0,0 -"Tfru21465_t",0,0,0,0,0,0 -"Tfru21466_t",0.0817221563924586,0,0.0703752100850524,0,0.0707333115936956,0.239163656911976 -"Tfru21467_t",1.13221532036991,1.99937615953324,0.975009649156791,9.36914758245657,5.87982568611744,3.81050236120401 -"Tfru21468_t",0.84614767971242,1.26134613700834,0.72866188744178,13.2536366125067,16.6352535922485,17.0687144553826 -"Tfru21469_t",3.31161236235996,4.89662380828726,4.50284539216394,5.58892978972163,6.03434392683146,9.05398184164485 -"Tfru21470_t",1.14925276021132,1.10697956252232,1.38555406777575,0.35663000202716,0.696302202774601,1.34533646678802 -"Tfru21471_t",68.3139608999314,38.9862332178101,99.4647328811958,23.8946292075025,39.3902258880671,52.8700632114083 -"Tfru21472_t",0,0,0,0,0,0 -"Tfru21473_t",0,0,0,0,0,0 -"Tfru21474_t",4.02681317231562,5.45045247317733,4.89557476471357,1.87845245115371,2.46024285287546,3.75491436909262 -"Tfru21475_t",117.132427549563,213.838022285528,119.62798517038,226.620364242462,232.282482487638,135.340705590069 -"Tfru21476_t",0.855309265772655,0.762822454943265,0.654712361696234,2.75245206692757,2.87894179993345,1.32108160260314 -"Tfru21477_t",0,0.0748429578434901,0.0802949122835004,0.337564876132626,0.605276173570913,1.09149939758273 -"Tfru21478_t",12.668859833583,12.4570848099236,11.1825611862952,24.1613185005174,28.8525244656101,35.1642707960521 -"Tfru21479_t",0.0714981929969765,0,0,0.0739564628317316,0,0.0523106892139385 -"Tfru21480_t",38.6600397649472,39.1409868778435,37.5068650392362,33.486940886944,38.3972625261888,42.0170024147179 -"Tfru21481_t",12.712096485153,9.7601125682476,12.8508837573729,4.57362335933069,0.95676110945155,4.852504723135 -"Tfru21482_t",23.8146570136634,20.5968446286187,27.6972092511305,14.8164346692964,13.8430122028599,13.0516811137601 -"Tfru21483_t",11.7322740353758,16.150861187136,13.9770666883537,11.5697447642694,16.994624974542,21.437162689084 -"Tfru21484_t",0.0826467061204599,0.0995083694298838,0,0,0,0.120934697149784 -"Tfru21485_t",63.7520404540457,70.0562428957783,61.5282493621045,31.2445281176754,28.9095664532643,28.8997342658163 -"Tfru21486_t",6.48821559733719,7.05968616596578,7.57395081352426,7.50670790498855,12.7706808957231,13.0103387504346 -"Tfru21487_t",13.0267699499319,15.3612371558947,11.9376781175052,10.3729456645793,11.1900181718654,12.6598601865915 -"Tfru21488_t",0,0.107207480154189,0,0,0.462409184854175,0.586312176404239 -"Tfru21489_t",0,0.332184753778249,0.356382837278,0.642109683452842,0.805941624217822,0.681262978371182 -"Tfru21490_t",5.25612367704572,4.35962180506053,4.52632216688846,3.89640279934644,4.70099931984961,4.35831498247517 -"Tfru21491_t",1.1700609578196,1.69053355195783,0.403040200375676,0.484116121600472,0.405091054698156,1.71211865811637 -"Tfru21492_t",2.41069299885583,2.84776036346768,1.41009516774641,1.12916743468047,0.826741056136816,3.16144054331667 -"Tfru21493_t",6.63757140630569,5.65271914044647,4.25211572169226,3.94722896944307,2.38209152756503,5.99844837121842 -"Tfru21494_t",16.3616674053505,16.7915798838392,19.9110580672334,15.8647995893153,17.0204914466532,13.7692224847265 -"Tfru21495_t",0,0,0,0,0,0 -"Tfru21496_t",0,0,0,0,0,0 -"Tfru21497_t",10.2186101357095,8.67290343688037,9.48500662982807,7.14771148130706,5.58221935444722,7.44566776560807 -"Tfru21498_t",14.9594509231238,12.7700532395081,14.3137369070672,8.10531895506046,9.98839127719137,9.93725670454721 -"Tfru21499_t",6.60081531775658,8.54960510036769,6.20106136863719,7.13811931438409,10.2578458949057,6.25626501804202 -"Tfru21500_t",0,0,0,0,0,0.078299439269271 -"Tfru21501_t",0,0,0,0,0,0 -"Tfru21502_t",6.67079914810501,5.5218502867506,5.38553716879161,7.11578621910767,7.7585491456271,7.32090042597055 -"Tfru21503_t",1.68582695862436,1.1276505855683,1.6937124139533,2.07261377930513,1.70233080343891,1.23341257176678 -"Tfru21504_t",7.87597282159166,6.32189109475511,6.78241087131696,4.07338330402562,4.54461526947283,7.20293669773461 -"Tfru21505_t",0,0,0,0.702686068684242,0.195994189537248,1.32539212563618 -"Tfru21506_t",12.1593966379724,19.5202251364952,12.8508837573729,0.571702919916336,0.95676110945155,3.23500314875666 -"Tfru21507_t",10.785115936875,13.7600800777901,9.58091914163314,1.52660131047932,1.27740537315966,4.73447082446423 -"Tfru21508_t",0,0,0,0,0,0 -"Tfru21509_t",0,0,0,0,0,0 -"Tfru21510_t",0,0,0,0,0,0 -"Tfru21511_t",14.7892283067846,13.0467523767394,11.2302686203666,10.214768481385,11.12382770224,12.2031305504563 -"Tfru21512_t",8.17578641867115,8.57148822460181,7.83086697164875,6.2995189666254,3.97146120904424,7.9349133837429 -"Tfru21513_t",32.137860809161,29.8271331216788,31.091793054743,26.1267892678566,26.8602246196779,20.1332054900508 -"Tfru21514_t",0,0,0.180413256776643,0,0,0 -"Tfru21515_t",11.3820510464541,10.4413169058556,10.7351707564579,15.1372179570108,18.7648630498887,17.0515972421563 -"Tfru21516_t",0,0,0,0,0,0 -"Tfru21517_t",0,0,0,0,0,0 -"Tfru21518_t",0,0,0,0,0,0 -"Tfru21519_t",0.298969312353906,0,0.514916127882092,0,0.258768129246687,0.218736867709529 -"Tfru21520_t",0,0,0,0,0,0 -"Tfru21521_t",85.6843070682633,52.6535587118921,84.1480681364673,90.3618114517841,79.0525356038512,49.8303287010858 -"Tfru21522_t",11.8733941297291,13.2816961692573,12.0966155094319,8.57184584971598,8.27790206987332,7.75270806348231 -"Tfru21523_t",0,0,0,0,0,0 -"Tfru21524_t",0,0.312916496598536,0.503566468450816,1.00810723697546,1.01225769352648,1.14088278100005 -"Tfru21525_t",0,0,0,0,0,0 -"Tfru21526_t",19.2781706696585,19.9461209576554,19.5714200038216,22.2278095263475,15.3847186399812,11.4519111465988 -"Tfru21527_t",0.117223781541555,0.125457683752529,0.0672983404348222,0.363762602067703,0.13528157082478,0.285883999192454 -"Tfru21528_t",37.478767223469,40.5473015080576,41.7858876708454,46.2586517787485,48.1102375123361,37.8857911860863 -"Tfru21529_t",27.5602387106331,24.159629855006,26.4400170586017,25.2569301483619,23.2265804872904,25.205096475565 -"Tfru21530_t",2.42337596934644,0.648399010801338,2.08689540861848,1.67113141644349,1.39834299628013,1.77303036436696 -"Tfru21531_t",4.6052199891325,3.36047367194275,4.96873962880621,4.33050716747266,3.98597485465869,2.68703828998696 -"Tfru21532_t",1.26938756110704,1.38942661436095,2.08689565290675,2.02923124321956,1.39834315996767,2.8706209259572 -"Tfru21533_t",1.66592815127516,1.71926783329422,2.25439908113817,2.46172362116954,0.823952910122596,2.26358577264281 -"Tfru21534_t",3.96561309474361,4.39960029725967,4.6113324669561,4.75513817695905,3.89148054379458,5.32229020745543 -"Tfru21535_t",0,0,0,0,0,0 -"Tfru21536_t",4.7942708429711,5.92041308314176,5.33541715650961,4.65393281252358,4.14960481184437,4.15523231486487 -"Tfru21537_t",0,0,0,0,0,0 -"Tfru21538_t",0,0,0,0,0,0 -"Tfru21539_t",0,0,0,0,0,0 -"Tfru21540_t",4.08134360529768,4.3505487107732,4.30194113603474,2.80318851055757,2.79777325593221,2.98606003820335 -"Tfru21541_t",2.23885521852842,3.08071850331402,3.12151566356948,1.32333264711601,0.830488069625471,2.02803496889063 -"Tfru21542_t",3.25902323682339,4.35992489333952,2.80651484356425,2.24738389208495,1.69247741085743,4.39793100481841 -"Tfru21543_t",4.62561981448063,4.88951742465146,4.43219198249498,4.41401649529829,3.63710194535214,5.41006924412087 -"Tfru21544_t",0.160325146510396,0.257379790141163,0,0.497512464660026,0.971368149290522,0.351899197479262 -"Tfru21545_t",0.803927050444473,0.483972524045344,1.12499319088115,2.59864963598339,5.13171867796749,7.20523428586724 -"Tfru21546_t",25.6921933383572,25.666474090842,18.9527649420949,17.1620413748801,11.1187344849309,19.8391276374012 -"Tfru21547_t",46.5247339715294,45.2401995683568,46.4752542449022,38.7744841128074,38.3128325284814,38.4156623914861 -"Tfru21548_t",16.6876457832047,17.910828801333,19.2155477143922,16.8668584500178,15.186546372952,11.7906868452416 -"Tfru21549_t",3.12200724488487,3.87287022057006,5.37704645703901,1.76146305055307,2.70220367399159,2.49182674971802 -"Tfru21550_t",253.175470815222,175.187748355539,265.664071128886,260.737348223905,271.825394851574,341.017043996793 -"Tfru21551_t",9.60739522543557,7.52862671155892,11.7984639113526,3.80105678395372,4.34228039647866,5.06135449614756 -"Tfru21552_t",117.01445336023,119.212803512169,117.56178844708,74.8726645476158,88.2953823865303,83.4168669072269 -"Tfru21553_t",0.105806519863284,0.169857695256888,0.273346533881992,0.547221938458971,0.0915791490155152,0.0774119141390147 -"Tfru21554_t",510.816863786188,599.446584799225,484.789006244086,759.819036479775,655.88618367529,491.874913434706 -"Tfru21555_t",195.415441620541,227.807971296509,202.253458117652,293.566963712175,277.261049857243,205.507091332541 -"Tfru21556_t",7.02253923476496,7.93335353140995,8.06329961246941,8.60917338226969,10.8057725302765,11.6079524749506 -"Tfru21557_t",43.679019421967,40.4345115471862,45.1645930802386,39.904212914996,28.0093176406428,13.8792070575692 -"Tfru21558_t",0,0,0,0,0,0 -"Tfru21559_t",15.0482504783907,14.7728039341332,16.5015357296853,13.7739146788093,12.4625532143511,10.2969816719447 -"Tfru21560_t",1.12126667561992,0.81511161944479,0.637647962442756,0.765917787447736,0.640892609202006,0.975144489816619 -"Tfru21561_t",4.99176701423265,5.37081013409612,6.31081466719714,9.77749317399283,9.00879487129617,8.70301732054906 -"Tfru21562_t",0,0,0,0,0,0 -"Tfru21563_t",0.173217271693706,0,0,0,0,0.126732082116243 -"Tfru21564_t",0,0,0,0,0,0 -"Tfru21565_t",53.9026116857264,81.4659106852589,60.6365827472712,87.9034547385828,65.9888644969717,56.135719379004 -"Tfru21566_t",38.8704728345503,46.6750566442188,40.6269785563388,66.9575046654264,50.6012386767407,40.2504402967511 -"Tfru21567_t",48.2564958649695,54.5460525057086,46.7845957648074,47.4966378734784,54.0293447076161,55.6739192859909 -"Tfru21568_t",3.15397318937175,2.07133633157973,1.97530965098796,1.4829154236738,2.97804140552843,3.35645377891482 -"Tfru21569_t",60.1565699826139,104.567060360946,65.0143145405238,50.9263778834852,72.5748121112095,91.7862556871912 -"Tfru21570_t",0,0,0,0,0,0 -"Tfru21571_t",6.91850161647215,9.91669191426245,6.38344552653829,7.66754504358394,4.27728495990112,5.06182845628993 -"Tfru21572_t",0,0,0,0,0,0 -"Tfru21573_t",191.276221161289,166.13375630482,190.126544211993,103.28634205769,87.9359466756142,96.5575680317491 -"Tfru21574_t",4.92008063083147,4.14671626751589,5.61394282031332,5.21647525171108,6.81359595369315,5.21958048305989 -"Tfru21575_t",10.3212748604921,8.6700220736123,9.92169818981951,7.88296654718939,8.41403055683406,9.13195174563326 -"Tfru21576_t",0,0,0,0,0.324615376421067,0 -"Tfru21577_t",3.76598240699592,5.81323319111936,5.48829569408119,5.99302371222653,5.76696006662531,6.57040294695762 -"Tfru21578_t",16.6044038795331,20.7853862522941,17.1927466181431,14.9261543515101,13.5162204732875,14.8962380285104 -"Tfru21579_t",0,0,0.4214313551501,0.843678095410531,1.12953544572146,1.79024446096246 -"Tfru21580_t",0,0,0,0,0,0 -"Tfru21581_t",0.118324474325982,0.0949767676295557,0.305686123806059,0.61196368892454,0.102413865237069,0.0865705067977151 -"Tfru21582_t",125.676813637932,153.900660643602,125.438136556438,107.572359092647,78.5778640214093,41.3897781895366 -"Tfru21583_t",0,0,0,0,0,0 -"Tfru21584_t",0,0,0,0,0,0 -"Tfru21585_t",154.260432603913,150.562739058783,155.91749069689,153.571232022783,183.665140531116,140.945740082903 -"Tfru21586_t",13.8460529407487,13.4073155821866,12.4440309348824,10.2869134942698,6.84813183900454,8.16050172972837 -"Tfru21587_t",6.79232833471277,5.73902170357316,4.74095330169567,4.65925715839909,2.78478552708456,4.91720478611022 -"Tfru21588_t",18.2191178540488,18.6863929565138,20.9192431713062,8.11404867061995,10.2938273583163,10.5527361750106 -"Tfru21589_t",0,0,0,0,0,0 -"Tfru21590_t",0.265016961424124,0,0,0,0,0 -"Tfru21591_t",0,0,0.0713364575305532,0,0.0711485756539325,0 -"Tfru21592_t",1.00611229666404,1.21138032964643,0.433207880044515,0,0.43541224142706,0.736108500914703 -"Tfru21593_t",0,0,0,0,0,0 -"Tfru21594_t",0,0,0,0,0,0 -"Tfru21595_t",0,0,0,0,0,0 -"Tfru21596_t",0,0,0,0,0,0 -"Tfru21597_t",0.0657872958272885,0.211224761212168,0,0.272196848323523,0.22776458674493,0.0962647765487513 -"Tfru21598_t",15.1806315539079,14.1505541615952,16.4933238474979,21.8935558606307,27.7857306656789,23.2882512943206 -"Tfru21599_t",0,0,0,0,0,0 -"Tfru21600_t",0,0,0,0,0,0 -"Tfru21601_t",12.9046867411811,13.6257391580711,12.6045628850478,16.9766297992479,15.4798029399308,18.9781292969073 -"Tfru21602_t",0.689551656126792,0.461241484384299,1.28658592007748,1.42652000810864,1.79049137856326,1.17716940843952 -"Tfru21603_t",1.34718371987568,1.42739298624791,0.742483294085274,0.0557401179135886,0,0.0394259524223077 -"Tfru21604_t",0,0,0,0,0,0 -"Tfru21605_t",0,0,0,0,0,0 -"Tfru21606_t",0,0,0,0,0,0 -"Tfru21607_t",4.7813996186948,4.82121014232439,5.13838340126177,8.74710845674455,10.1922509909967,10.4947397539864 -"Tfru21608_t",1.94380668602107,2.13108142265865,1.75556759966121,1.66735930594113,1.19001212484834,2.2546438423897 -"Tfru21609_t",1.34059111869331,0.358688856473322,1.15445291437395,1.84891157079329,0.386775767650633,0 -"Tfru21610_t",0,0,0,0,0,0 -"Tfru21611_t",0,0,0,0,0,0 -"Tfru21612_t",15.9766168186588,22.9231169986421,19.3762694112462,3.9937661980844,6.56844552479269,13.2476198674919 -"Tfru21613_t",0,0,0,0,0,0 -"Tfru21614_t",0,0.284989815217417,0,0.506206857246318,1.55311123786701,0.954797045846644 -"Tfru21615_t",0,0,0,0,0,0 -"Tfru21616_t",0.166028412591793,0,0.142975723255798,0.686947382033871,0.86221949784568,0.242944900499517 -"Tfru21617_t",0,0,0,0,0,0 -"Tfru21618_t",0,0.53946804000384,0,0.695190750448126,0,0 -"Tfru21619_t",0,0,0,0,0,0 -"Tfru21620_t",10.0545059565698,9.29701944777848,9.62181574818583,11.5855717411823,10.426489855972,11.4885163787205 -"Tfru21621_t",0,0,0,0,0,0 -"Tfru21622_t",0.322084511583824,0.344708012866375,0.41604565093093,0.610790595591138,0.32523764231836,0.706946374999871 -"Tfru21623_t",0,0,0,0,0,0 -"Tfru21624_t",6.05220553070462,5.60981988563251,6.63892933834942,6.55840330771959,9.35426813700502,8.11802676952158 -"Tfru21625_t",25.66899152531,24.2701958977404,24.2813095273084,24.3467945916966,22.3491627335754,23.9711505520777 -"Tfru21626_t",0,0,0,0,0,0 -"Tfru21627_t",0,0,0.275078767937011,0.330413854856596,0.276478495506917,0 -"Tfru21628_t",0,0,0,0,0,0 -"Tfru21629_t",0,0,0,0,0,0 -"Tfru21630_t",0,0,0,0,0,0 -"Tfru21631_t",0,0,0,0,0.204252371680672,0 -"Tfru21632_t",133.537621025037,126.183419850696,132.463986982625,164.705655704833,71.8360111877156,22.0136431571333 -"Tfru21633_t",0,0,0,0,0,0 -"Tfru21634_t",0,0,0,0,0,0 -"Tfru21635_t",0,0,0,0,0,0 -"Tfru21636_t",0,0.197752214126055,0.212157524831184,1.78384723399118,1.27942248067424,0.360498884612186 -"Tfru21637_t",0,0,0,0,0,0 -"Tfru21638_t",0.735090796750165,0.927210693983538,1.35648217438939,0.217247109568212,0.272676916193696,0.307325299131889 -"Tfru21639_t",16.5772590473269,18.085659716363,21.4584659736977,12.3163715660718,13.9702189084015,12.6801934444968 -"Tfru21640_t",0,0,0,0,0,0 -"Tfru21641_t",0,0,0,0,0,0 -"Tfru21642_t",28.6864701170796,26.7266940616098,25.1445476228277,27.5532919452366,25.7158717711128,24.3611517604546 -"Tfru21643_t",8.69469972069127,8.34252752266327,8.65272613866841,5.98583536987122,6.1550101256425,6.15071880373622 -"Tfru21644_t",40.3361080525162,37.5126782875941,37.8497454399158,37.6945315939546,32.9860816940719,36.024223805526 -"Tfru21645_t",14.0970441621251,13.8401645763246,14.2696876797576,13.1915875925694,10.6422576776301,8.97498661181621 -"Tfru21646_t",0.299680297638933,0.721642740966541,0.516140660885379,0.206655990076777,0.172922340828345,0.0730856835034218 -"Tfru21647_t",0,0,0,0,0,0 -"Tfru21648_t",0.0654796389489068,0.052559240075592,0.112775862770747,0.609578795358972,0.566748591725012,1.91629181064311 -"Tfru21649_t",0,0.0929476292446376,0,0.299444672044399,0.150338754620922,0.0423604823062562 -"Tfru21650_t",19.7737190007263,18.8311649648494,20.8763568682622,22.6491667422178,27.461079503195,25.7466673474853 -"Tfru21651_t",0,0,0,0,0,0 -"Tfru21652_t",0.177611790214477,0.142565549718783,0.30590154743101,0.183718485892779,0.614916231021726,0 -"Tfru21653_t",16.1115791068529,15.5057472397176,15.1487115626525,10.1183585278345,12.2375550124764,14.3739229926656 -"Tfru21654_t",1.60086053499858,1.95540403943203,1.82812289727153,1.79989320271923,1.89766867939275,2.26611032499901 -"Tfru21655_t",1.72577965339329,2.45111637095527,2.13511721798192,5.06959624249773,5.24018781978277,4.42953416730931 -"Tfru21656_t",2.61172155766158,1.74698199525867,3.18621028872118,4.27740422984044,2.44891185528018,4.77707718857858 -"Tfru21657_t",7.83376503656584,8.02263564510749,7.90917795142364,6.98543760669491,6.07897090764082,6.52201599443879 -"Tfru21658_t",0,0,0,0,0,0 -"Tfru21659_t",1.12765606404627,0.731080849435558,1.12048088746671,1.12156484031085,1.38895830654507,1.33274781244598 -"Tfru21660_t",0.338751519239708,0,0,0.350398563819696,0.293200985154512,0 -"Tfru21661_t",0,0,0,0,0,0 -"Tfru21662_t",11.8758124231889,14.8283100037348,15.9084820451949,10.4642586807725,10.6596211566122,9.65419787848865 -"Tfru21663_t",1.00611229666404,1.21138032964643,1.29962364013354,0,0.43541224142706,0.368054250457352 -"Tfru21664_t",7.37084372904952,6.19322596102629,6.05046264889263,3.96818732715666,3.05927923761014,3.65825907637753 -"Tfru21665_t",6.16005291118072,4.00679486194472,3.93282653173155,1.8676110557065,1.93045604384918,2.3311653537185 -"Tfru21666_t",7.80982651133352,7.73346886380709,7.66826876457597,7.47435754900189,7.45459046877641,6.72858170123683 -"Tfru21667_t",7.45196647512421,7.16657333653309,6.93186985629387,2.7996698638916,1.27781651103322,0.720092751104007 -"Tfru21668_t",45.6107839553137,54.9886950782278,39.4330726517773,40.1860533149782,42.0523198364528,41.2844715142837 -"Tfru21669_t",0,0,0,0,0,0 -"Tfru21670_t",0,0,0,0,0,0 -"Tfru21671_t",0,0.495834595713122,0.797930690817286,17.2519763480639,4.81194557988876,4.74546417777181 -"Tfru21672_t",0.0455587726526287,0.0731382917754713,0.196165173447489,0.0942503729146254,0.157730681818479,0.233327233614232 -"Tfru21673_t",0,0,0,0,0,0 -"Tfru21674_t",0,0,0,0.57658000643696,0.895999977382131,0.174782160643728 -"Tfru21675_t",2.00905872707049,3.01307668735425,1.91222156742116,7.21878375406015,10.7995388666603,9.97985238213055 -"Tfru21676_t",0,0,0,0,0,0 -"Tfru21677_t",14.825360606726,13.778982449291,13.2148521426582,15.3350900871679,17.1091398396045,15.9847214409156 -"Tfru21678_t",35.9402681375176,64.3683456980308,52.4216284149053,27.1849324272521,39.0788307700057,39.1141289804222 -"Tfru21679_t",0,0,0,0,0,0 -"Tfru21680_t",0,0,0,0,0,0 -"Tfru21681_t",0,0,0,0,0,0 -"Tfru21682_t",0,0,0,0,0,0 -"Tfru21683_t",4.49053238867425,5.10632331977166,5.47829475031793,4.83846569194235,5.66811704040349,7.66602082467072 -"Tfru21684_t",0,0,0,0,0.151172233510019,0 -"Tfru21685_t",1.24074401139346,1.5420715773298,1.30973663971533,0.910802555598028,0.415705636884149,0.849207591693641 -"Tfru21686_t",2.00921678377154,2.92312652539993,2.81164217511701,1.16904274207109,2.06511665478036,1.47001637850829 -"Tfru21687_t",0,0,0,0,0,0 -"Tfru21688_t",8.96635846953948,8.66630263042328,8.16034137635975,6.30292220810145,6.39705359557192,6.69572493971847 -"Tfru21689_t",0,0,0,0,0,0 -"Tfru21690_t",0,0,0,0,0,0 -"Tfru21691_t",0,0,0,0,0.0583110219072326,0 -"Tfru21692_t",1.09578752310584,0.879567456743278,0.314546591162756,0,1.58073574605042,1.87067573384628 -"Tfru21693_t",0,0,0,0,0,0 -"Tfru21694_t",0,0,0,4.26296215001774,4.22563472642307,2.73693473943871 -"Tfru21695_t",2.66982129570278,3.35738849131173,2.29912232947353,3.0377773795555,2.61893083349878,2.0835613500467 -"Tfru21696_t",2.41622765050623,2.5362158966565,4.16147923706478,1.34577855484733,1.12609935891202,2.17575433013726 -"Tfru21697_t",88.5514782185527,106.953567701192,78.7775897198729,135.169111984546,150.909671209712,124.941067556037 -"Tfru21698_t",77.3453468799857,82.2390162661011,79.6870709087787,92.029402872438,104.777698178242,121.909482127963 -"Tfru21699_t",5.77170527417523,3.08855748158745,7.73160323289427,5.97014957571445,6.6608101663339,4.22279036960553 -"Tfru21700_t",0,0,0,0,0,0 -"Tfru21701_t",3.51088141731422,4.62976303101685,4.75106194412999,3.63159347337906,4.3411250339295,1.83477790526501 -"Tfru21702_t",0,0,0,0,0,0 -"Tfru21703_t",0,0,0,0,0,0 -"Tfru21704_t",3.1182890941367,3.680868177783,2.52736125650424,2.84603200307701,1.74640237445744,1.87884462351373 -"Tfru21705_t",7.58515541411399,6.83032846719836,9.22160871208565,9.3294282257669,9.29611742612804,7.62483860516901 -"Tfru21706_t",52.9489305016947,54.8513291023796,56.9185985470353,52.7520066569759,65.8363525943164,71.5594935553873 -"Tfru21707_t",45.6056331045001,41.5610581941415,33.3676159360001,27.3110652028609,31.4598673377217,50.175559041941 -"Tfru21708_t",0,0,0,0,0,0.558773258636267 -"Tfru21709_t",0,0,0,0,0,0 -"Tfru21710_t",47.4970328036452,48.966732441662,35.7894001252323,11.3613329385496,17.9857565451673,14.6603941281996 -"Tfru21711_t",0,0,0,0,0,0 -"Tfru21712_t",0,0,0,0,0,0 -"Tfru21713_t",0,0,0,0.712285604692254,0,0 -"Tfru21714_t",26.6106167260344,25.7730150064915,23.7680297222852,21.3834851302742,18.2736362684781,17.5384594792544 -"Tfru21715_t",3.40193015066259,7.22005956255978,5.015042767818,36.3818083285131,39.9751470823429,40.4985981011137 -"Tfru21716_t",11.4752791205518,14.7830618081079,14.7619420439452,24.9119788375015,18.3930466235208,12.6454254617506 -"Tfru21717_t",0,0,0,0,0,0 -"Tfru21718_t",0,0,0.196591619476723,0.236138162574143,0,0 -"Tfru21719_t",0,0,0,0,0,0 -"Tfru21720_t",0,0,0.0981624368621898,0,0,0 -"Tfru21721_t",1.7486982155375,1.93001358678273,1.53726803226551,2.44944702895642,1.48202544794492,2.50551414730247 -"Tfru21722_t",0.4670486547405,0.374890924347378,0.955224880737487,0.664271912508778,1.16220876950753,0.469851048012616 -"Tfru21723_t",0,0,0,0,0,0 -"Tfru21724_t",1.93275406682778,2.32707647681312,1.94179452366579,0.866322829566488,1.50557806487317,1.03698720565975 -"Tfru21725_t",0,0,0,0,0,0 -"Tfru21726_t",107.394708450098,93.4162601717248,112.340963583451,140.87467208083,124.344421920631,82.2174382729124 -"Tfru21727_t",0,0,0,0,0,0 -"Tfru21728_t",2.32554676183938,3.26667498352174,2.00264957695319,1.95447226601159,4.02567996225988,2.23315961306909 -"Tfru21729_t",0,0,0,0,0,0 -"Tfru21730_t",0,0,0,0,0,0 -"Tfru21731_t",0,0.0717839570502675,0.0780133913802775,0,0.143054456088297,0.060144212045088 -"Tfru21732_t",0,0,0,0,0,0 -"Tfru21733_t",0.332056825183587,0,0,0,0,0 -"Tfru21734_t",315.576733755385,241.92821497886,301.210889658239,172.485361057046,193.744438768049,242.268387483746 -"Tfru21735_t",0,0,0,0,0,0 -"Tfru21736_t",0.652367032737728,1.13455853997515,0.436945652952577,3.37398444540794,4.57990563868619,4.77295546537877 -"Tfru21737_t",0,0,0.263075330790669,0.315995795735581,0.264413979339342,0 -"Tfru21738_t",5.02577372935919,7.7472891555883,3.46728278429918,1.71316551393015,2.3232839449089,4.76343767519175 -"Tfru21739_t",6.16236574598583,6.22165862907422,5.72132309656497,7.96780229934988,7.29221934424403,6.44590598752271 -"Tfru21740_t",148.895486205261,115.465750210647,149.743507072258,208.630045445674,161.168814152475,130.827864770111 -"Tfru21741_t",4.57092106261159,6.4523616432762,4.47919066965351,5.70630306558154,6.95760986910745,5.53531495622163 -"Tfru21742_t",7.81242994180339,7.47352221207345,6.0825697501282,6.08845402611548,10.0965720136265,10.7270231798901 -"Tfru21743_t",9.61469602825196,9.2357333325326,9.63704659228482,8.47793598314972,6.95760986910745,6.57318651051319 -"Tfru21744_t",0,0,0,0,0.282383861430365,0 -"Tfru21745_t",10.4886296692941,11.510061471536,9.94862680372432,10.9540762122452,16.0952839956713,16.348667903156 -"Tfru21746_t",0,0,0.193437743228433,0,0,0 -"Tfru21747_t",0,0,0,0,0,0 -"Tfru21748_t",0,0,0,0,0,0 -"Tfru21749_t",0,0,0,0,0,0 -"Tfru21750_t",222.636703379701,190.749633439206,210.378594058696,128.285290997036,154.271264296974,155.256520730178 -"Tfru21751_t",6.77871580476774,6.72500956651705,7.93638407258341,4.49069274538098,6.26275177718976,7.6343727980179 -"Tfru21752_t",0,0.198333838285249,0,0,0,0 -"Tfru21753_t",6.22045914255632,7.18778613281121,7.3581891748814,10.2525080186788,10.0580582051377,10.0024507447319 -"Tfru21754_t",0.764889621591327,0.818616145881452,1.09828849329212,99.8215853979582,79.5549040265676,36.8417278170246 -"Tfru21755_t",46.7184683498828,40.5181415298396,44.5593570643958,22.9050206968098,25.5417645722767,37.5270806363307 -"Tfru21756_t",21.3925627853023,20.0332959201652,25.90629086367,10.3725410403921,6.75062215156808,5.38023070098266 -"Tfru21757_t",13.166154976451,14.0282751652734,11.1363176837768,5.08888934850245,2.23048602203433,3.25665403430334 -"Tfru21758_t",92.7583154657813,87.5303844295868,101.829517627411,31.046445101669,37.8581954260548,24.4977437728112 -"Tfru21759_t",40.1532562324453,35.6086744929367,33.5631928786793,12.3643645525796,10.4917771361102,13.7957649309705 -"Tfru21760_t",207.806325792583,169.020769304785,219.381351061765,37.947850046212,35.6319586066339,34.4400434919484 -"Tfru21761_t",5.47376392561839,7.45016061094164,6.14836113037682,6.64665377715775,4.94371746073557,3.83068361524167 -"Tfru21762_t",25.3185723188819,25.4199600064026,25.283123250399,18.5115010901709,20.6292221937116,21.8225097878337 -"Tfru21763_t",4.33303395466154,4.1196232408974,4.92689903433701,4.13389592568455,3.31345009162095,3.47799286949458 -"Tfru21764_t",0,0,0,0.105780698511606,0,0.0374102616106985 -"Tfru21765_t",0,0,0,0.218338803586142,0.730792405209237,0.308869647368732 -"Tfru21766_t",1.4328520275202,1.02905707835614,1.36378818250997,4.52435632134875,5.77663844001009,7.66933870365036 -"Tfru21767_t",3.28532199664878,3.76723491714998,3.23332808793001,3.88374721015798,4.0622259395709,4.12056266992477 -"Tfru21768_t",13.3965876520788,12.8133709234956,11.9408167561748,31.7938392840512,37.0071204690104,34.5798212883123 -"Tfru21769_t",4.63779682492218,3.61630784002756,4.45028852165603,4.18046488443562,2.69522924523738,3.49012958004668 -"Tfru21770_t",6.10033856224203,6.5754662568429,8.03007428269235,6.35515403508669,6.48691972134382,4.94143375160194 -"Tfru21771_t",5.46881954052359,6.16428162205122,7.01412758687032,5.53649143497935,6.14341343963637,7.32132291560732 -"Tfru21772_t",38.0594955432291,60.9012966053589,39.7830649449098,247.857269820484,196.156623077892,78.8460796794336 -"Tfru21773_t",1.17686950218622,1.52597371266883,1.32529867612756,2.06010190107787,2.42901850632316,2.15260177193672 -"Tfru21774_t",0.289469138952154,0.542152988268253,0.138487205144399,0.731919817840835,1.05785837829101,1.97667114296161 -"Tfru21775_t",12.1670200841407,10.7893608027175,7.78340116615151,8.51009367136167,8.32448148747653,10.8517622865881 -"Tfru21776_t",0,0,0,0,0,0 -"Tfru21777_t",0,0,0,0,0,0 -"Tfru21778_t",1.11262173762444,0.65776329661811,1.24844661051507,0.824989023676753,1.49569616477555,0.875293573476898 -"Tfru21779_t",11.0993208490751,10.7524951052139,14.0901109686005,9.40249449156269,9.10993493737482,8.7507203625253 -"Tfru21780_t",120.713939438585,94.2759681790853,112.732887502652,190.249410515075,140.838950888395,86.2301082030251 -"Tfru21781_t",1.73132277939195,1.52205163433822,1.98790976161742,3.24058495136096,1.28444474752673,3.25722593780608 -"Tfru21782_t",3.13731697486733,2.74719673400013,3.22021670469906,3.86799832954341,3.70289286419203,3.61695561407579 -"Tfru21783_t",1.79439639706004,3.14253227263618,2.66906524928397,5.90574666787371,4.51814178288584,4.17723707557907 -"Tfru21784_t",8.62566435300423,8.79881028029104,10.368263037044,7.13122808888262,9.48779572923521,9.00611037028208 -"Tfru21785_t",0,0,0.302701740449514,0,0,0.771527947611436 -"Tfru21786_t",0.203414955863069,0.163277251857106,0,0,0.176062577041935,0.446477432152865 -"Tfru21787_t",23.2978248155835,21.9495662628728,22.2732991580114,25.0178810078552,21.6176293919327,18.4178498892201 -"Tfru21788_t",130.216083995744,145.102452759761,134.614707210832,81.4676660880793,80.8941518041299,92.7463849165878 -"Tfru21789_t",120.536627541642,142.406159663197,137.052443292344,82.5808888545003,95.7474223321965,87.4254577654689 -"Tfru21790_t",7.92550724258938,7.34036701926538,9.45009352259659,13.7474223181045,9.49817995449741,11.6863901846959 -"Tfru21791_t",7.05581657342612,5.71649807051361,7.95007867773999,8.11692497287824,8.67543511490149,5.64475039221836 -"Tfru21792_t",4.5938688596827,4.88581786179109,5.98348026798325,7.24652012777083,7.7037907514282,7.05818868819648 -"Tfru21793_t",0,0,0,0.226889931663929,0,0 -"Tfru21794_t",0.512258394947851,0,0,0,0,0 -"Tfru21795_t",0,0.305128981977306,0,0,0,0 -"Tfru21796_t",85.4929128321201,68.6235080466961,92.7727416523565,184.021081046015,193.761008683521,157.278241320437 -"Tfru21797_t",5.67176655360533,5.16876104444907,5.72889933549223,4.85221970609204,3.83870041071329,5.52249522297911 -"Tfru21798_t",9.4581218881762,9.15487982018665,12.6964335969338,11.2220361233911,7.94555252484944,5.49522058050397 -"Tfru21799_t",1.15610610235937,1.54664002332534,0.663722164838843,1.19585564899933,2.66839795663556,1.9736487100213 -"Tfru21800_t",0,0,0,0.125758095263798,0.105229876003356,0.0889508825273194 -"Tfru21801_t",51.9294911361969,55.2065508106083,54.9549188598777,59.3251722282424,56.3332530158406,47.1119551965917 -"Tfru21802_t",65.3868827733921,62.8338993154607,71.9051208641,44.8783310386951,41.006711229454,33.6897404651278 -"Tfru21803_t",10.8188055192793,8.98609977270007,9.31663755459675,9.24455785396645,6.18841228241013,6.40117644328458 -"Tfru21804_t",20.4018723945771,15.8667070628199,18.0766683717873,14.5847492877957,17.30534557171,14.9267549497409 -"Tfru21805_t",2.04655840333101,2.47088743972039,2.46153130632098,4.63623789293949,6.2217402527251,10.3947353038368 -"Tfru21806_t",0.145766992663009,0.253509417357085,0.230133856460894,0.201038389421133,0.378498900442378,0.693214960447869 -"Tfru21807_t",0,0,0,0,0,0 -"Tfru21808_t",0,0,0,1.04070471649443,0.870824482854121,1.10416275137206 -"Tfru21809_t",0,0,0,0,0,0 -"Tfru21810_t",0,0,0.0745064016142471,0,0,0 -"Tfru21811_t",7.97479844966277,7.7256061394254,6.86751477268603,9.24455785396645,12.3768245648203,10.5627353220453 -"Tfru21812_t",0,0,0,0,0,0 -"Tfru21813_t",0,0,0,0,0,0 -"Tfru21814_t",4.2911089156812,4.74560421231901,2.70988493408095,2.17000518070404,1.56817598416352,1.60464968899737 -"Tfru21815_t",8.34576769242669,10.3812106407726,10.0903235428263,4.74513423530567,5.16650999103846,5.98475582519993 -"Tfru21816_t",15.8260211843308,16.8443859005082,15.189598456233,28.5576283449002,21.4219209402517,12.2930119652755 -"Tfru21817_t",0.0428405796896723,0.137549219820468,0,0.177254143451881,0.148319927217377,0.156718663504278 -"Tfru21818_t",7.02475846723707,8.80317940921386,5.92592895296387,4.00387164391926,3.16416899337395,4.72001312659897 -"Tfru21819_t",8.69638665798186,9.74624877198605,8.61931381643256,11.3715283914611,11.3615381747374,13.9256776169137 -"Tfru21820_t",0,1.61517377286191,0.866415760089029,1.04070471649443,0.870824482854121,0.736108500914703 -"Tfru21821_t",0,0,0,0,0,0 -"Tfru21822_t",0,0,0,0,0,0 -"Tfru21823_t",0,0,0,0,0,0 -"Tfru21824_t",21.8858808645243,20.2064182673558,20.6641677033149,15.9889811948567,12.6569658918569,12.8530907814505 -"Tfru21825_t",17.0710740976463,24.7477641564796,17.640950445261,33.4967218201233,37.8792563382376,41.8598252265848 -"Tfru21826_t",0,0,0,0,0,0 -"Tfru21827_t",10.1190228980598,11.6239767748764,11.0377564511342,8.46658970908233,8.25232066139381,12.9642578006386 -"Tfru21828_t",2.56129197473925,3.2894392691212,5.29358897322687,2.64935499473429,1.33013129850584,4.87223035209092 -"Tfru21829_t",0,0,0,0,0,0 -"Tfru21830_t",0,0,0,0,0,0 -"Tfru21831_t",0,0,0,0,0,0 -"Tfru21832_t",0,0,0,0.402309462163355,0.336638168140366,0.284560462159156 -"Tfru21833_t",30.339642105166,32.1993135920837,23.3475746371301,34.1490516906344,18.6773211531138,8.23132524568395 -"Tfru21834_t",0.298969312353906,1.1998844309072,2.05966451152837,2.47398843636398,2.84644942171356,1.96863180938576 -"Tfru21835_t",0.113313159929117,0.127335995446154,0.0390319481885265,0.468836492189288,0.608073691359021,0.878782889343949 -"Tfru21836_t",0.165919111464346,0.332950156436724,0.214322397533543,0.800911003016448,1.36428213500467,1.55787017993123 -"Tfru21837_t",0.271001215391766,0.32629115330799,0.466746554628606,0.840956553167271,2.22832748717429,3.07325299131889 -"Tfru21838_t",21.6314143782769,28.2655410250834,11.6966127612019,8.32563773195542,12.6269550013848,13.2499530164647 -"Tfru21839_t",10.0611229666404,15.7479442854036,6.93132608071223,6.63449256765197,5.76921219890855,10.0294783249628 -"Tfru21840_t",0,0,0,0,0,0 -"Tfru21841_t",0,0,0,0,0.132689496931239,0 -"Tfru21842_t",0,0,0,0,0,0 -"Tfru21843_t",0,0,0,0,0,0 -"Tfru21844_t",4.35704285718119,5.17249809674844,5.21822444655058,18.5197361654139,20.6622037461512,19.6623900250866 -"Tfru21845_t",2.41493243332558,2.70203939963527,2.20566207217786,7.56958569924082,3.73703555294497,10.4940346045035 -"Tfru21846_t",24.1792651317169,24.1777365648492,21.8847758856873,14.5619390091424,13.2135059860275,14.9148077707097 -"Tfru21847_t",2.95324435920571,5.59844357283866,2.81374512363991,14.1040008306064,31.5437768920157,31.2152398071133 -"Tfru21848_t",0,0,0,0.0632912191021738,0.105919656690924,0 -"Tfru21849_t",0.286724835397432,1.61103936900646,1.23456853186747,0.88974925420428,4.21889199116527,3.35645377891482 -"Tfru21850_t",0.232179760768625,0.155305170467491,0.36656051388382,0.120081313441665,0.0334932493405431,0.22649492335837 -"Tfru21851_t",0.315828484103186,1.01403766942834,1.63185825490452,2.28681167966539,2.1868825358893,1.15535826741312 -"Tfru21852_t",0,0,0,0,0,0 -"Tfru21853_t",0,0,0,0,0,0 -"Tfru21854_t",0,0,0,0,0.0508488421806427,0 -"Tfru21855_t",0,0,0,0,0,0 -"Tfru21856_t",0,0,0,0,0,0 -"Tfru21857_t",0,0,0,0,0,0 -"Tfru21858_t",0,0,0,0,0.40622259395709,0 -"Tfru21859_t",75.4865380276548,61.751232023292,75.3316096617046,26.7496011093447,29.6982597172842,30.1776003102852 -"Tfru21860_t",65.1144257651036,62.3093784959371,67.7279043099381,19.28150638113,25.4166933027559,25.5948729368199 -"Tfru21861_t",0,0,0,0,0,0 -"Tfru21862_t",0,0,0,0,0,0 -"Tfru21863_t",0,0.581323316829279,0,0,0,0 -"Tfru21864_t",15.7349898366328,16.6224678674806,14.2510936728099,14.6858110666132,11.8189348676708,4.49905712399751 -"Tfru21865_t",0,0,0,0,0,0 -"Tfru21866_t",0.77500347575136,1.61740879192029,0.533916723006892,15.231347165299,18.916332193511,57.6093180660514 -"Tfru21867_t",0,0,0,0,0,0 -"Tfru21868_t",0,0,0,0,0,0 -"Tfru21869_t",0,0,0.176452965774229,0,0,0 -"Tfru21870_t",0,0,0,0,0,0 -"Tfru21871_t",0,0,0,0,0,0 -"Tfru21872_t",0,0,0,0,0,0 -"Tfru21873_t",0,0,0,0,0,0 -"Tfru21874_t",0.545915805735038,4.4306490660979,2.2983476552831,5.70959912511401,6.98262909338371,4.30477314307483 -"Tfru21875_t",16.6960685697198,16.8051952565987,12.5520958303119,12.0616691747651,17.2035909270471,17.8384400757942 -"Tfru21876_t",0,0.868242553866755,0.310496635053364,0,0.312076585057163,0.791395620082117 -"Tfru21877_t",6.69967327873033,5.73149413050971,5.46578336794884,4.37685677199335,4.88319626062164,5.86917150493218 -"Tfru21878_t",5.09247324294226,4.43445900001478,4.42526146531144,6.19337828893946,4.47449262429039,5.91618136462563 -"Tfru21879_t",0,0.112576803033363,0,0.290146390074406,0.242784121263169,0 -"Tfru21880_t",0.350774015747171,0.422339279855853,0.604139590542246,0.544251631486125,0.759017164074312,0.898236782431407 -"Tfru21881_t",6.45736946744408,8.65595337266443,5.22713090002981,4.00763307427908,3.01809961044522,3.87404681457569 -"Tfru21882_t",0.158734769525645,0.318533325540787,0.239215877077013,0.944106475213768,1.30520835337559,1.10329346877768 -"Tfru21883_t",0,0,0,0,0,0 -"Tfru21884_t",3.09846270604302,1.79024153995406,4.51047874316689,3.29026274423203,2.43155036694252,3.49891139240345 -"Tfru21885_t",0,0,0,0,0,0 -"Tfru21886_t",18.4513588246492,13.9004034881637,15.0017496914065,1.59936522381505,1.51673049498334,0.980424267169215 -"Tfru21887_t",10.3994871032789,9.97025117250352,18.3235203138274,9.00664105750321,10.6978031931844,9.98351140231027 -"Tfru21888_t",0.793026996758062,1.01622074299008,1.29745212243662,0.990760983928244,0.860982010227674,1.55435889838974 -"Tfru21889_t",4.71968408828356,4.97903889370994,3.83211657612411,10.1570929834324,7.70323230338532,10.3592797460187 -"Tfru21890_t",1.26834242267443,0.339035195768254,0.666188612919374,0.539705861206998,0.542640629241187,0.527819162178469 -"Tfru21891_t",9.18863495937706,10.4406989301865,9.55703350137976,15.6763539290698,13.5305590990054,10.3023821868076 -"Tfru21892_t",0.205404344184468,0.494622286188151,0.707537564473681,0.424933221649314,0.711137841743951,0.901687919213365 -"Tfru21893_t",0,0,0,0,0,0 -"Tfru21894_t",0,0,0,0,0,0 -"Tfru21895_t",0,0,0,0,0,0 -"Tfru21896_t",0,0,0,0,0,0 -"Tfru21897_t",0,0,0,0,0,0 -"Tfru21898_t",0,0,0,0,0,0 -"Tfru21899_t",0,0,0,0,0,0 -"Tfru21900_t",0.401004185066575,0,0.172662806604854,0,0,0.440083960570723 -"Tfru21901_t",0.552699847180565,0,0,0,0,0 -"Tfru21902_t",0,0,0,0,0,0.0876819683685845 -"Tfru21903_t",0.0807792084340841,0,0,0,0.0699171579983837,0 -"Tfru21904_t",43.0173615998375,35.54476921076,39.659398512268,17.0133278577515,29.3483588513697,24.067643907919 -"Tfru21905_t",0,0,0,0,0,0 -"Tfru21906_t",19.419484077822,18.6374008840912,14.5418524557656,14.8470386438577,10.2310936729293,12.9725251894868 -"Tfru21907_t",0,0,0,0,0,0 -"Tfru21908_t",0,0,0,0,0,0 -"Tfru21909_t",0,0,0,0,0,0 -"Tfru21910_t",0,0,0,0,0,0 -"Tfru21911_t",0,0.403793443215477,0.433207880044515,0,0,0 -"Tfru21912_t",21.581198755599,21.9068417014032,20.5518778097111,14.2085050551231,16.051678692094,17.9447187185418 -"Tfru21913_t",12.9636702086975,11.9171280417947,12.0368303290644,8.68988438272846,10.8443922991976,8.42495216585694 -"Tfru21914_t",5.51950705821445,5.26824257945192,4.7258967320594,4.46599856265977,4.47617226884231,5.61192658429842 -"Tfru21915_t",12.0347044925188,11.2000285149317,10.6140427578519,9.2611916604857,9.35970591225422,11.1870662521366 -"Tfru21916_t",19.5640603440323,17.5511862372943,19.3252254981468,16.665531692901,19.4235611535202,17.2607359786373 -"Tfru21917_t",4.08147579456425,4.05615067771336,3.53569288562647,4.85005114478483,3.84807215449751,4.62143306965246 -"Tfru21918_t",1.08400486156706,2.17527435538659,0.466746554628603,5.0457393190036,2.34560788123609,2.77584141151382 -"Tfru21919_t",7.85143667507288,8.19285532568532,4.05676890970094,4.06069342661763,4.07741161989711,8.61659672594853 -"Tfru21920_t",4.51295412408602,7.5235728737958,7.17478174883642,6.10446423580099,5.40846775921382,6.34969626305555 -"Tfru21921_t",8.67921773267934,8.75295826710528,8.71981477223376,8.51723767313783,9.43835330224539,7.32696077400529 -"Tfru21922_t",0.741268030336301,0.595001514855746,0.468119338612808,7.15637537401168,3.806783614312,2.35013464042032 -"Tfru21923_t",3.75755503377747,3.62914863364135,3.02536630409269,4.36074198115101,4.12485807769373,4.13492220650177 -"Tfru21924_t",2.120135691393,2.97813586825799,4.56439848374977,3.01541729369127,2.29381212360628,3.10233740448594 -"Tfru21925_t",3.65939546641152,3.18731117318463,3.35244281591445,3.70467730867015,2.83038133583818,3.303960583809 -"Tfru21926_t",7.05046213776725,7.71718586025437,7.21485886759695,6.72459717900513,7.68745820041084,7.63707555335919 -"Tfru21927_t",0.566044088297231,0.832979848609579,0.853037639144364,0.683090293982024,0.694068137794174,0.690230879577515 -"Tfru21928_t",22.1551755814945,28.0630287646902,29.3353055599656,33.9117439325989,39.2388733059222,52.4701730225175 -"Tfru21929_t",0,0,0,0,0,0 -"Tfru21930_t",0,0,0,0,0,0 -"Tfru21931_t",0,0,0,0,0,0 -"Tfru21932_t",0.118826558375456,0.0953797807878141,0,0,0,0 -"Tfru21933_t",9.67861483542021,10.5656182975921,10.1684070829803,8.20933778091859,10.3876920454742,9.20559651777546 -"Tfru21934_t",0.624612466702212,2.50682174784329,1.34471591017535,2.26130820368399,0.810935066747053,0.913978584778851 -"Tfru21935_t",13.1511571114182,8.35041066799108,11.3251471257432,6.29407513702295,9.00428445997876,8.76020712478748 -"Tfru21936_t",0,0,0,0,0,0 -"Tfru21937_t",0,0,0,0,0,0 -"Tfru21938_t",0,0,0,0,0,0 -"Tfru21939_t",21.1494654809238,18.6267373997964,24.6633122616252,8.20373700467372,12.4579663342575,12.6798549991478 -"Tfru21940_t",10.3964006770437,8.94373346229707,11.9639419302416,9.93405206904586,8.07034898094551,8.08391741334712 -"Tfru21941_t",27.2431518685384,24.263057628542,22.2122091653375,17.4635585666606,14.7051342100229,21.9752015466547 -"Tfru21942_t",12.8440201616253,16.8320761352848,14.5594342586567,21.555251432977,19.9651117005057,21.5750990030187 -"Tfru21943_t",0,0,0,0,0,0 -"Tfru21944_t",0,0,0,0,0,0 -"Tfru21945_t",1.24974114205459,0.668762033226293,1.79369543720911,31.599579573558,28.0038441754849,20.9285988830311 -"Tfru21946_t",0,0,0,0,0,0 -"Tfru21947_t",0,0,0,0,0,0 -"Tfru21948_t",11.0819575022319,12.5853707546412,11.1849835252762,8.62698236389166,8.99975167553114,6.74656176882955 -"Tfru21949_t",29.1005016445426,26.6953256974454,29.9824513596994,15.7672129006207,16.042023385691,19.1870670880816 -"Tfru21950_t",0,0,0,0,0,0 -"Tfru21951_t",0,1.18601641989671,0.18177315569707,0,0.365396202604618,0.308869647368732 -"Tfru21952_t",8.22782040545104,3.47595386685488,6.71248911038047,4.03138966209053,4.49776356608159,4.4356228740685 -"Tfru21953_t",4.95166056894645,4.51353130483313,4.26413310896963,4.94828581234288,3.26885414018417,2.39474259063809 -"Tfru21954_t",0,0,0,0,0,0 -"Tfru21955_t",0,0,0,0,0,0 -"Tfru21956_t",0,0,0,0,0,0 -"Tfru21957_t",5.1933687458713,5.14946765584246,6.44534560437138,10.4278612592742,8.1968333595196,6.76115658090155 -"Tfru21958_t",0,0,0,0,0,0 -"Tfru21959_t",0,0.0510087027359944,0,0,0,0 -"Tfru21960_t",601.897129780243,650.434567379015,616.312238558012,644.591423832769,480.923843750907,249.750432965408 -"Tfru21961_t",0,0,0,0,0,0 -"Tfru21962_t",0,0,0.466746554628603,1.12127540422302,0.469121576247217,0.396548773073403 -"Tfru21963_t",0,0,0,0,0,0 -"Tfru21964_t",9.04360996406517,14.1362021848636,8.19781484050243,17.9705824345376,18.0712229938511,18.6105829543679 -"Tfru21965_t",0.669405392601175,0,0.288229944093362,0,0,0 -"Tfru21966_t",11.2873826756263,14.4464476392347,9.99787245615209,15.6053157376385,15.2126852796483,18.8760260503271 -"Tfru21967_t",1.93713247409891,3.6417366180289,1.53646848231807,31.6379285778949,46.5050921793133,61.9126209416183 -"Tfru21968_t",4.15787397726707,14.8045639187035,5.78398490602581,30.6572063248542,29.1593588890721,24.4924223166023 -"Tfru21969_t",0.169717932871611,0.408687909193846,0,1.0533193191186,0.587586620754093,0.496687352132345 -"Tfru21970_t",0.205907786204528,0,0,0,0,0 -"Tfru21971_t",0,0,0,0,0,0 -"Tfru21972_t",0,0.0292046362135057,0,0,0,0 -"Tfru21973_t",0,0,0,0,0,0 -"Tfru21974_t",0,0,0,0,0,0 -"Tfru21975_t",0,0,0,0,0,0 -"Tfru21976_t",84.8665334773985,85.0435286201462,82.0225314790015,178.447052547239,217.956274752872,175.860540598783 -"Tfru21977_t",0,0,0,0,0,0 -"Tfru21978_t",2.0601999753216,7.441572079531,2.56265478903717,3.67011465755562,2.08036884289469,10.2162633498884 -"Tfru21979_t",0.295811185814956,0,0.509476873010098,0,0.512069326185346,0.216426266994288 -"Tfru21980_t",0,0,0,0,0,0 -"Tfru21981_t",0,0,0,0,0,0 -"Tfru21982_t",3.71121851976532,3.54475236145551,3.58871888189887,3.40990033774389,2.85328263736741,4.24733878365887 -"Tfru21983_t",0,0,0,0,0,0 -"Tfru21984_t",0.440613864185913,0.235781486073373,0.632392622092954,0.607684222568424,0,0.644738389787179 -"Tfru21985_t",0,0.18249933698778,0,0.11758977513841,0,0.083173287992392 -"Tfru21986_t",0,0,0,0,0,0 -"Tfru21987_t",0.428078352975528,1.97575874572057,1.65888265912587,0.221398328222381,0.463145505212223,0.313197757077084 -"Tfru21988_t",1.5334358211216,2.37380004623023,2.07510528198637,3.85209998712865,3.88691997007964,5.52945127512394 -"Tfru21989_t",0,0,0,0,0,0 -"Tfru21990_t",1.28610746287618,0.958595478644942,1.26575336848435,3.23079353759177,3.57804592052964,3.02452454039037 -"Tfru21991_t",327.839310537098,344.150284480173,285.423113143707,128.227214079462,184.258602540356,200.306992304009 -"Tfru21992_t",0,0,0,0,0,0 -"Tfru21993_t",9.91236783465003,9.97013948903705,8.95759046938366,8.41773214058912,11.8630015493834,15.8027429852231 -"Tfru21994_t",0,0,0.254738436505049,1.22392737784908,0.256034663092673,0.649278800982863 -"Tfru21995_t",0,0.293189152247759,0,6.04513696189806,9.48441447630249,3.74135146769256 -"Tfru21996_t",2.06582893700281,2.08338067202537,2.28076027640082,10.9034488787072,10.7282721125389,12.9053372775434 -"Tfru21997_t",73.8954150197013,65.854794197189,79.1205656232471,74.4016856848992,64.2021903011245,54.8868594436216 -"Tfru21998_t",0.892488991105446,0.934413464438585,1.06931312284429,14.1122885829542,16.9273799244493,16.6848246625105 -"Tfru21999_t",0,0,0,0,0,0 -"Tfru22000_t",73.8038933539547,57.0324502585808,85.8763868700586,65.4533708004997,85.6116727449618,68.2593980591136 -"Tfru22001_t",0.251980734167509,0.404520126076692,0.433987498304942,0.364902163641867,0.305337078721196,0.258101630944597 -"Tfru22002_t",7.99177053553269,7.99080375448139,7.88230150928921,15.5891605944273,16.586798588741,12.2808727171202 -"Tfru22003_t",12.0733475599685,6.86448853466311,7.79774184080126,6.76458065721378,6.53118362140591,4.41665100548822 -"Tfru22004_t",21.7580831926051,23.3834168476162,21.4434784018581,14.0038424584977,13.6011507358007,15.2999357553429 -"Tfru22005_t",2.4976057959079,7.01672957609164,2.44411202592682,16.3228909351251,20.340224018773,26.1641808720392 -"Tfru22006_t",0.849662470507686,0.852509545094622,1.18899406773279,1.53803263411123,2.94164730491303,5.90561889608686 -"Tfru22007_t",97.6002906609463,101.150257525477,110.380412229725,197.439284872286,198.893750635402,101.010594641143 -"Tfru22008_t",0,0.221820740187449,0.118989664420122,10.4335782884733,12.6770847002333,9.80610329466881 -"Tfru22009_t",0,0,0,0,0,0 -"Tfru22010_t",0,0,0,0,0,0.047135782075443 -"Tfru22011_t",0,0,0,0,0,0 -"Tfru22012_t",0,0,0,0,0,0 -"Tfru22013_t",0,0,0,0,0,0 -"Tfru22014_t",0,0,0.214675715036896,0,0,0 -"Tfru22015_t",0,0,0,0,0,0 -"Tfru22016_t",0,0,0,0,0,0 -"Tfru22017_t",0,0,0,0,0,0 -"Tfru22018_t",0,0,0,0,0,0 -"Tfru22019_t",2.65495547358976,1.8266412194217,1.63308613921973,6.08095746872646,2.95451286169242,4.71740865484615 -"Tfru22020_t",0,0,0,1.42457120938451,2.38406046794884,0 -"Tfru22021_t",1.89090880192969,0.867311961633242,1.16311440462112,1.67650502560678,0.233806573370801,0 -"Tfru22022_t",0.387740200483604,0,0.33390330446508,0.534762115860213,0.223734905594828,0 -"Tfru22023_t",0,0,0,0,0,0 -"Tfru22024_t",0,0,0,0,0,0 -"Tfru22025_t",0.624612466702212,0.752046524352988,1.07577272814028,0.646088058195425,0.270311688915684,0.456989292389425 -"Tfru22026_t",0,0,0,0,0,0.146694653523574 -"Tfru22027_t",0.351507852600199,0.282148556556421,0,0,0,0 -"Tfru22028_t",0,0,0,0,0,0 -"Tfru22029_t",0,0,0,0,0,0 -"Tfru22030_t",12.5492678994693,10.6326688408523,12.1877015281237,29.9999328067638,23.8356585109843,17.7509052444643 -"Tfru22031_t",22.5081182300726,19.026738832957,20.192068157662,21.2497935337691,18.5204046789415,12.3742570875677 -"Tfru22032_t",91.8595909092101,159.037683123296,72.6734428800837,83.89724163393,55.0088878874713,51.9285782904618 -"Tfru22033_t",11.3617712732288,10.8254456214557,10.0564174578477,9.50001992509821,7.28050406113604,9.70027595504079 -"Tfru22034_t",226.709236544542,286.202356768744,228.381848863776,3.79763584849316,7.00968936230582,9.79648768440982 -"Tfru22035_t",0,0,0,0,0,0 -"Tfru22036_t",0,0,0,0,0,0 -"Tfru22037_t",10.6082349487367,9.64807276465003,9.76151462900712,8.22972757223775,7.88597191435945,6.47824204891048 -"Tfru22038_t",34.3856425855227,44.2238335227667,42.0614627717639,28.6968274964522,25.3652945296462,29.1601679176304 -"Tfru22039_t",0,0,0,0,0,0 -"Tfru22040_t",0,0,0,0,0,0 -"Tfru22041_t",0,0,0,5.31787083226777,2.42716587432498,0.427434352061041 -"Tfru22042_t",0,0,0,0,0,0 -"Tfru22043_t",0,0,0,0,0,0 -"Tfru22044_t",6.0995769353387,6.34668282512796,6.24969714407748,6.74743963835386,7.40581338771451,7.10722036311729 -"Tfru22045_t",0,0,0,0,0,0 -"Tfru22046_t",46.3155799504559,44.5033996892776,43.0871869745683,24.4785475569816,23.5551890045259,27.826234327837 -"Tfru22047_t",14.4392835075925,14.3296198161092,13.5648217438939,5.15961885224503,4.99907679688444,7.68313247829721 -"Tfru22048_t",0,0,0,0,0,0 -"Tfru22049_t",19.9628566352842,14.6884824359671,14.3258806385701,6.02269058614245,9.3592052598397,10.3456014489495 -"Tfru22050_t",25.3214375057602,24.8839131189436,22.5188777870463,12.3616665162757,8.91000627562501,16.0155437575773 -"Tfru22051_t",63.5823216294541,65.9987495910913,55.1938440967353,88.4836251736789,81.1124038444471,51.1897458736398 -"Tfru22052_t",0.0671814288456197,0.0539252339200196,0.0578534314013866,0.0347456392752038,0,0 -"Tfru22053_t",0,0,0,0,0,0 -"Tfru22054_t",0,0,0,0,0,0 -"Tfru22055_t",0,0,0,0,0,0 -"Tfru22056_t",0,0,0,0,0,0 -"Tfru22057_t",0,0,0,1.43634452607082,0.901411293202303,0.761963551566666 -"Tfru22058_t",32.8284572050009,37.5804199435133,31.9084567539795,14.399561095865,14.1471288203819,19.1539922624656 -"Tfru22059_t",0,0,0,0,0,0 -"Tfru22060_t",6.64268095402143,6.90017260638912,6.39334234130812,2.42508401378469,2.0292235623717,0.857651997577364 -"Tfru22061_t",0,0,1.0335102281046,0.620706027336788,0,0 -"Tfru22062_t",5.09445076531661,1.95183881117321,10.7608044345153,5.86616909131555,7.11675530320384,6.09156051157819 -"Tfru22063_t",34.8368673475266,8.18149598826531,62.988634354783,6.88381255979533,8.74348872743071,8.68140647631935 -"Tfru22064_t",32.8736256931751,9.21267918873754,74.9945293666992,35.7935741165017,12.0566207489571,7.50820249101498 -"Tfru22065_t",13.3789518834652,1.79556670163568,30.1797217497283,16.1971217784584,2.0325659712372,0.727397157708612 -"Tfru22066_t",27.226193253921,26.3090844436867,28.0841657371626,26.5656356031808,25.952986654662,24.1967612373582 -"Tfru22067_t",19.2160664710624,16.0539309143132,19.3997588979063,13.6117483588382,13.8789910317123,15.3981451743467 -"Tfru22068_t",1.23142246081926,2.52601077425187,2.23871108042548,22.220062672449,22.1457473738203,9.71027818104013 -"Tfru22069_t",7.6876498325171,6.53678800087093,9.31321353283755,9.36714950910629,7.78170648773015,7.41203319348719 -"Tfru22070_t",4.88327270792052,5.0811037149504,5.84061216098767,1.40310296814776,2.6612171225219,0.661626047646692 -"Tfru22071_t",3.36834057810049,1.74945413959158,2.98596705054267,178.716490135359,97.3233647420898,31.6023184956376 -"Tfru22072_t",0.16504985613251,0.794893968766027,0.284266074528227,298.255953175376,284.998269970622,36.1061942791492 -"Tfru22073_t",3.61121600670842,3.05791992519155,3.48571706597934,8.57905449215989,9.68601988557675,8.47793928639692 -"Tfru22074_t",0.484209664388746,1.55466293987284,0,1.00171577898887,0.628649950878839,0 -"Tfru22075_t",5.35901090099289,7.7175305929382,9.90851269347594,8.64097321359491,11.3231690026651,6.11191026416139 -"Tfru22076_t",0.505325574565097,3.14351677522785,0.435162201307873,1.56809943748484,2.18688253588929,2.12585921204013 -"Tfru22077_t",4.68941533047272,5.12558707967579,4.55382772716627,4.64423749670761,3.62705636742209,4.89092518808469 -"Tfru22078_t",8.53230389005763,12.6437821895102,6.21720996537388,5.43117773870083,9.65730744762975,8.64352403728153 -"Tfru22079_t",0,0,0,0,0,0 -"Tfru22080_t",0,0.0681835237785486,0.146300740075701,0.351461451273143,0,0 -"Tfru22081_t",9.86260434516285,8.96569939405453,12.2793294428459,13.2745051391043,16.2500529028209,12.1712989755203 -"Tfru22082_t",1.08167867087701,0.289414184622252,0.620993270106729,1.4918256451036,0.624153170114327,0.791395620082117 -"Tfru22083_t",77.774554990474,65.2088945421975,72.9423816661344,35.1178832786552,34.3329285544228,31.0493601184795 -"Tfru22084_t",0.154147480314582,0,0.398233298903306,10.2046348714609,9.87307243955158,3.27061786232102 -"Tfru22085_t",14.9974983205922,9.10205510388907,13.965138205615,9.45923553998018,24.9063385473488,24.2648712231854 -"Tfru22086_t",2.0872143297254,0,0,1.07948874319608,1.80655513834333,1.14531167378344 -"Tfru22087_t",146.733056261442,178.500454456724,156.148898264552,127.006002516801,150.363017436524,129.883180719088 -"Tfru22088_t",0,0,0,0,0,0 -"Tfru22089_t",39.8093016404329,28.6563967357169,28.303888877647,0.586164207941212,0.735721864940834,1.65841645400007 -"Tfru22090_t",25.529850818482,30.2601046987316,23.7317257937122,15.3519381316495,12.9897506989219,12.3173224701508 -"Tfru22091_t",0.223788963163152,0.287409717706913,0.423975959319005,0.787043337807053,1.23966063835174,2.48872911390768 -"Tfru22092_t",2.74049598017095,2.12388992179479,2.72618839697304,1.17298776819732,1.02241063439706,1.7976282963845 -"Tfru22093_t",3.69547111897863,2.57077878363871,4.24315049662369,4.07736510626555,4.05150452213508,3.60498884612186 -"Tfru22094_t",0,0,0,0,0,0 -"Tfru22095_t",0,0,0,0,0,0 -"Tfru22096_t",5.47385228267645,5.14482468200866,5.18385861582133,7.30743943823277,8.17980130998725,8.32921731450821 -"Tfru22097_t",2.34788825911469,2.9446945422264,2.90646544497988,16.0895675907287,14.9873076498893,15.2991633628975 -"Tfru22098_t",6.92110027740233,8.18539916288551,7.00631166906349,3.46529131826595,4.84334107641739,5.89870644258401 -"Tfru22099_t",29.7436575159744,29.3884367735509,26.9743634351184,30.4110426476515,25.446872745904,25.932927939829 -"Tfru22100_t",2.70099880972503,12.1858772924263,3.20823574134962,20.7131390497408,22.6525390836448,15.536622661213 -"Tfru22101_t",17.7544197063545,21.1309849729336,17.1638014400471,11.0470594986912,9.5970498978834,12.6911661989687 -"Tfru22102_t",17.2962540411804,13.3255547597902,14.695223555885,15.7344413915212,11.4283707522358,13.2195073523643 -"Tfru22103_t",23.6180115829164,20.3572845334293,23.0687282990497,45.2529828232652,51.0368869554994,49.9838505380543 -"Tfru22104_t",1.5321041356495,2.04965060841898,2.41885372535493,6.07499516117795,6.63044173115371,4.67059725124451 -"Tfru22105_t",8.84319755488921,13.9877549106439,14.3347548666123,19.9087134464987,18.2347411448416,20.5517847097486 -"Tfru22106_t",4.18490352690482,5.41473497534151,5.00234318585231,3.23044029097712,3.64920780036174,4.52419399465531 -"Tfru22107_t",0.805679289002547,0.646703186736557,0.788423234169942,0.378809258183455,0.475461057007317,0.16076301611084 -"Tfru22108_t",53.734939104756,60.1812224019504,47.229467405155,55.0905877848446,47.6069886385976,40.3581902256216 -"Tfru22109_t",50.2355744299853,44.8890831111793,50.6695556183255,27.7649712609394,29.6332763768689,26.8698293697199 -"Tfru22110_t",12.6590978696702,11.6392077152604,11.0996166963734,10.7135560882954,10.1600166033816,8.75666605745655 -"Tfru22111_t",13.2433907104158,13.1398418247922,10.9448889512003,3.60216084851377,5.50029079563684,5.74665763580959 -"Tfru22112_t",7.51651812053619,8.16637114530134,7.78051531868471,13.6991761782653,14.2273360098654,15.4981940276181 -"Tfru22113_t",0,0,0,0,0,0.218736867709529 -"Tfru22114_t",1.5629837538874,0.627288418762648,0.336491702174111,0,0.338203927061949,0.857651997577364 -"Tfru22115_t",0,0,0,0,0,0 -"Tfru22116_t",0.17649238817531,0,0.151986798250912,0.182560596275808,0,0.129128276946172 -"Tfru22117_t",0,0,0.425563035102553,0,0,0 -"Tfru22118_t",0,0,0,0,0,0 -"Tfru22119_t",11.9621976744942,8.05670354540078,10.6564884403749,0,0.119007928507887,0.201194958515148 -"Tfru22120_t",93.3383650032928,98.9791474614076,95.0088361799959,83.8439245002551,188.959819589478,229.386833086816 -"Tfru22121_t",1.69963190000038,3.70299594023904,3.55455829897797,4.77190182866592,2.9421786718395,3.3752489500034 -"Tfru22122_t",0,0.0524366290956334,0,0.202718920281379,0.0565426472148671,0.0477955364124243 -"Tfru22123_t",3.37662286058872,3.57766184173712,5.81557202310562,40.0964118624288,43.7218292203397,46.8893422630486 -"Tfru22124_t",0,0,0,0,0,0.0417561547733544 -"Tfru22125_t",0,0,0.113305741530828,0.0680492120808807,0,0 -"Tfru22126_t",0.919402208169055,0.922482968768599,0.791745181586144,1.06989000608148,1.49207614880272,1.00900235009102 -"Tfru22127_t",19.7467689730825,23.3584099852648,17.154138837639,35.6554019002673,34.782704911031,31.3028242827119 -"Tfru22128_t",0.653972992831627,1.13062164100333,1.38626521614245,13.2169498994792,17.2858659846543,19.4332644241482 -"Tfru22129_t",0,0.113715860062369,0,2.63773893573545,1.96192497317556,2.69492673775012 -"Tfru22130_t",2.36279184669696,2.739486141315,2.03472326158408,3.8018244174437,5.22630756037918,3.64948792719118 -"Tfru22131_t",7.54090338481435,10.9709489228194,10.8569307272306,18.1597864379599,31.6147149210083,35.3445645565426 -"Tfru22132_t",0,0,0,0,0,0.0647000629751344 -"Tfru22133_t",9.63102385639522,8.66203862787233,8.58813713583901,6.48140547883062,6.4277431441608,7.64068423256076 -"Tfru22134_t",0,0,0,0,0,0 -"Tfru22135_t",0.173575158618693,0,0.149474619767425,0,0,0 -"Tfru22136_t",0,0,0,0,0,0 -"Tfru22137_t",2.11536919928105,1.69796595366508,3.90354582558097,2.18810038414026,1.56936354643854,0.663292012514867 -"Tfru22138_t",0,0,0,0,0,0 -"Tfru22139_t",0,0,0,0,0,0 -"Tfru22140_t",0,0.113143464793598,0,0.14580342924041,0.122003094493824,0 -"Tfru22141_t",0,0,0,0,0,0 -"Tfru22142_t",0,0,0,0,0,0 -"Tfru22143_t",39.1813101749188,41.6501060399023,56.5390889493391,80.6917835539072,70.8807221926472,55.5251590868538 -"Tfru22144_t",4.59846272854239,6.81433313855844,5.17843019556369,5.12245816245046,10.6391835371014,22.127421537496 -"Tfru22145_t",1.24153266164701,0.332184753778249,1.425531349112,2.99651185611326,1.43278510972057,2.42226836754198 -"Tfru22146_t",8.77049057690445,8.6902834381353,9.1850010329591,14.5551409546274,13.5139305310528,13.5152617209052 -"Tfru22147_t",7.87944088609349,8.41805313620217,9.70025121624114,10.503625112545,8.88511307720543,7.99776538031467 -"Tfru22148_t",0,0,0,0.188228542586176,0.630011647523342,0.133137313703345 -"Tfru22149_t",129.929092025406,127.327860404741,119.527704641847,83.9302497834954,83.3273557560861,91.7203765421568 -"Tfru22150_t",4.05069848369595,3.16233742153627,3.34491421249694,4.24736753184879,4.94684674028194,4.1409749684878 -"Tfru22151_t",0.606112926828808,0.450829464661494,0.447241879211349,1.16550477130823,1.14517216768421,1.29524821797962 -"Tfru22152_t",8.68262732850389,9.44209285866618,9.75395253873946,12.0061276554675,13.0811501313908,13.0335488019145 -"Tfru22153_t",5.92204295274138,5.472063112034,7.47177066548907,2.49299961799587,4.94692547411515,7.85946666632371 -"Tfru22154_t",0,0.85358867110107,0.457884278274898,0.549992682451168,0,0.778038731979464 -"Tfru22155_t",0,0,0.578765727597816,0,0,0 -"Tfru22156_t",18.6925743511691,34.9528913488795,16.0056893733261,13.0732773899455,13.3293393503872,13.8315810987297 -"Tfru22157_t",10.785115936875,15.0358490916249,7.82115848296583,15.5595902798854,8.8435756603361,10.1749592280152 -"Tfru22158_t",9.08964732281235,8.18045798566699,7.59037019986192,6.55302756730343,5.96015117363271,8.26251623895569 -"Tfru22159_t",48.5035389741527,45.7273121403627,50.5742677828517,35.4104071592234,34.5577164704985,19.4561714118271 -"Tfru22160_t",27.6805195293072,24.6626657558,28.3066022113106,13.1708297069361,14.5547480801907,12.151247412134 -"Tfru22161_t",20.8856966370574,20.8931267863385,22.5493140677716,7.73867254862646,6.61034948348355,10.0351118083882 -"Tfru22162_t",28.6164943643547,24.859462007137,26.6070058724363,21.6866641775623,21.3939156663356,19.8604265113252 -"Tfru22163_t",423.111864468118,351.681358946195,486.057806946766,29.9254296623762,36.3569221591595,27.8831562788535 -"Tfru22164_t",4.15701519122237,4.50074026580565,3.74632591315826,7.49990021524321,6.9450507231536,7.0730793816315 -"Tfru22165_t",8.13146203363826,9.61308777464641,7.2307659304642,18.0563089488571,14.4586181758678,21.9217835677454 -"Tfru22166_t",1.08772003435994,3.08150061006784,1.43258843499869,0.992751452710792,2.21519708509731,2.24700904163452 -"Tfru22167_t",47.2307142136128,47.0259969197392,52.7016040958938,102.282849672306,142.905318438993,105.799307524112 -"Tfru22168_t",5.21106175312953,4.04416154145727,4.36355243669238,4.10967801513546,3.46375063750732,4.61303910280216 -"Tfru22169_t",1.76100666475291,1.70454605776595,1.82871415207447,1.17865262897673,1.21040308051456,1.28841679044195 -"Tfru22170_t",39.9751978689415,45.1227914611793,45.989284127997,23.582214124133,32.9780260477135,32.2177451134545 -"Tfru22171_t",6.14144823294719,7.71997367780651,6.28659324958391,14.1435359608546,10.4306755987658,12.9712471081873 -"Tfru22172_t",3.74135281168389,5.1871926936142,3.57335115304734,2.95526432449065,4.41582050516108,4.57877368747105 -"Tfru22173_t",1.32508480712062,1.27634394353914,1.14109962093744,1.37064422440512,3.44071818540942,2.13285696558408 -"Tfru22174_t",1.81601378359332,0.633773543392712,1.90383463072194,1.6334369140467,1.50348174342389,0.635447047077213 -"Tfru22175_t",113.192928702582,102.214997078377,155.733672793055,82.3252204679539,73.6706054277706,82.3308301358586 -"Tfru22176_t",1.01363871587171,0.715992813886902,0.90781303820139,0.964610718160013,0.666777529945976,0.652621291592813 -"Tfru22177_t",68.4003405470231,58.7527153723287,78.455996032251,7.9265837274888,14.0023281288655,16.8198305605966 -"Tfru22178_t",51.9045002982828,51.3267761116539,56.2176901148213,8.57918521861727,9.03133735163835,11.1576700958711 -"Tfru22179_t",7.86953504823269,6.84932618081832,7.09619577905188,5.07158529448105,3.7801213819234,4.09968030229886 -"Tfru22180_t",11.717096861344,10.8143539763518,9.8489178544404,9.29068180619579,8.837788192036,7.7981330357058 -"Tfru22181_t",4.34536429870177,6.97587980195135,1.87100988836269,2.99651184434699,2.50737393216541,5.29871203319186 -"Tfru22182_t",29.5716526163117,25.3549978801805,32.4108807454777,48.6633525313688,41.8831743171007,22.6191420105709 -"Tfru22183_t",8.45838264422423,9.26347637178713,10.1851903879066,4.22630895747033,5.5838276353658,4.72001312659897 -"Tfru22184_t",0,0,0,0,0,0 -"Tfru22185_t",11.356451583111,9.7745634308007,11.3113823010972,9.48244712773301,12.1979250240828,12.51324507866 -"Tfru22186_t",6.68686511257257,4.98403037712394,5.8498115248462,5.7639789019993,5.37430182264266,5.1641522153558 -"Tfru22187_t",16.040167402663,16.6169675250684,13.4245332135274,17.0583052620386,15.4017987667084,13.1658451537408 -"Tfru22188_t",15.0656906672201,19.4716807799804,11.6544770403465,15.8478134639425,12.5978392891921,13.8249678636837 -"Tfru22189_t",10.3930363016224,15.1551588594873,9.09915190518241,11.8254096754655,8.09597441894686,9.12470991236947 -"Tfru22190_t",10.2396703002377,10.8038348398235,9.09520691349878,8.59329310365636,5.96426319820632,7.42104018601341 -"Tfru22191_t",23.0922283537031,22.0608768520995,19.5199233638945,12.1629073147801,12.8751326364646,13.6819357455006 -"Tfru22192_t",4.55488227929985,4.933163485732,3.72890593840939,11.5614610099186,9.91770886627372,7.26996464464449 -"Tfru22193_t",0,0.212947910579951,0.0761533852288778,0.0914724671866154,0,0.129400125950269 -"Tfru22194_t",29.40550961647,31.5011232645279,27.8128367152406,32.436537593108,30.1647060918194,27.6414171592919 -"Tfru22195_t",30.5132028839691,29.5816790876395,17.0626688602439,29.1029146780057,16.806501752819,26.963446055911 -"Tfru22196_t",0,0,0,0,0,0 -"Tfru22197_t",0,0,0,0,0,0 -"Tfru22198_t",0,0,0,0,0,0 -"Tfru22199_t",42.7765691407203,39.6270346677439,49.2772155504391,67.894255277411,63.0024794677923,55.5135181403512 -"Tfru22200_t",0,0,0,0,0,0 -"Tfru22201_t",0.0473297897303929,0.0379907070518223,0,0,0,0.034628202719086 -"Tfru22202_t",0,0,0,0,0,0 -"Tfru22203_t",24.9928924408106,19.1238670391078,19.5112171886221,24.8052306754436,18.9365989373936,18.2287480486014 -"Tfru22204_t",79.0344890155768,65.4558691596722,74.7586265632425,46.922377431754,44.9914298369818,69.7358039318247 -"Tfru22205_t",10.3291446784968,8.84373835730318,7.11597205788066,0,0,0 -"Tfru22206_t",38.4168054583001,60.4868374147324,70.8915307218574,0,0.182698101302309,1.3899134131593 -"Tfru22207_t",0.0873288739827936,0.35048599281177,0.150406893903189,0.451657192449504,0.529102817285066,4.47250955077592 -"Tfru22208_t",0.485609114285824,0.389789046340952,0.418183329291526,1.00461091129809,1.26093371650264,8.52694471579807 -"Tfru22209_t",0,0,0,0,0,0 -"Tfru22210_t",0,0,0,0,0,0 -"Tfru22211_t",0.118241205871143,0.0949099296509283,0.305471003381142,1.40652597327765,0.818734348411756,1.03811501466085 -"Tfru22212_t",0,0,0,0,0,0 -"Tfru22213_t",528.584208443053,620.752751588782,451.965195834388,14.2091352744614,29.0855377273276,59.8869028848896 -"Tfru22214_t",0.329883678421914,0.264791250066693,0,0.11374194218231,0,0.241354946962216 -"Tfru22215_t",0.438696484446201,0.528199778200924,0.566676626376767,0.226889931663929,0.189853379421199,0 -"Tfru22216_t",0.569948282031529,0.846349961203673,0.858921322544161,0.353726637017441,0.172658382031287,0.250196987081592 -"Tfru22217_t",14.6574975427281,18.2899933834024,12.8085055547078,12.0754955395609,10.9276595681674,10.0596443771426 -"Tfru22218_t",25.369141444026,31.237971494034,25.3924884502298,10.7163791597284,11.2088534719938,19.581358980261 -"Tfru22219_t",8.16968379963301,9.69139013583169,8.62296184293425,10.4323482907971,10.4189802745268,11.5313107075304 -"Tfru22220_t",0,0,0,0,0,0 -"Tfru22221_t",0,0,0,0,0,0 -"Tfru22222_t",127.512723855519,134.096082269821,120.608628031788,128.565875198404,125.672212439865,103.378691745643 -"Tfru22223_t",0,0,0,0,0,0 -"Tfru22224_t",36.2521325655402,29.731470317057,36.1049914584192,29.8358131714692,32.1959986099874,32.2893372446262 -"Tfru22225_t",0,0,0,0,0,0 -"Tfru22226_t",0,0,0,0,0,0 -"Tfru22227_t",0.18710551619476,0.150185979993284,0,0.387077255355388,0.971677206926313,0.684466145059886 -"Tfru22228_t",0,0,0,0,0,0 -"Tfru22229_t",0,1.71441114449961,0.306549643929805,0,0.616219019646772,0.520890337511676 -"Tfru22230_t",0.234665856903484,0.753446983429995,0.707290519234689,0.849569702222057,0.507778242446362,0.944295611857758 -"Tfru22231_t",14.5182981216676,10.2132298860676,12.0810321809695,28.685055243958,33.3212956487831,30.6728550978234 -"Tfru22232_t",31.4430494752926,29.0675131707048,26.9934189357053,22.1526600718454,26.1196891525827,32.619927462898 -"Tfru22233_t",15.8667709608102,16.2215787416603,12.369247660436,11.5749951022427,12.5767484208623,17.3519651994943 -"Tfru22234_t",35.3479846163173,41.5193670441181,35.2089248817666,36.8070839212342,19.9886584661859,12.15508195725 -"Tfru22235_t",0,0,0,0,0,0 -"Tfru22236_t",31.8355111976011,21.791669516015,31.9844217961287,15.2759020201648,25.3350341782775,24.4566238046008 -"Tfru22237_t",15.3770266151206,17.1601236334191,18.9247842917083,14.4142643932188,26.2021607813802,19.8868762010632 -"Tfru22238_t",7.55759353659641,9.18329044465893,7.73077978777251,8.81081716737876,8.74589976393301,10.7533305461655 -"Tfru22239_t",19.045620893762,17.2609069178223,18.4664818279553,14.9236115496745,15.4729734891985,14.271274882641 -"Tfru22240_t",6.62150752878404,5.64714081423024,7.12765674555999,9.41760869064169,6.44753299374258,10.9002076539389 -"Tfru22241_t",2.80034589238147,4.04601030101892,3.85843818492966,4.6981657798274,5.38281604474165,5.73673891712837 -"Tfru22242_t",0,0.049329557437443,0.158768945063864,12.4595269862091,15.3725684037997,22.7515144638969 -"Tfru22243_t",4.86546583618421,4.68649841816881,5.86586886222437,0.838791928834794,0.561496867322927,0.474633666612955 -"Tfru22244_t",0,0,0,0,0,0 -"Tfru22245_t",0,0,0.0765968406219522,0,0,0.0325384117662137 -"Tfru22246_t",0.328165534263467,0,0,0,0.142019227184217,0.360146834920182 -"Tfru22247_t",0.153303607247167,0.246107682543739,0.26403545973516,0.475723597594624,0.265378993862478,0.560812589656731 -"Tfru22248_t",4408.47895156399,6253.40739639473,4181.34518384893,12249.6029229845,11909.8124811998,6218.45033135258 -"Tfru22249_t",0,0,0,0,0,0 -"Tfru22250_t",0.123746738775443,0.000911642496585594,1.24191125681585e-05,0.00117835024413543,0.000270153863405631,0.445393538876317 -"Tfru22251_t",53.2417648120663,46.973428988492,59.8767954416284,28.0822116497509,30.417101842313,28.2496504767553 -"Tfru22252_t",0,0.777331469936422,0.416978190014028,3.25557628171383,3.1432497543942,3.54265474503618 -"Tfru22253_t",179.203953048185,153.914785801754,158.080087162607,147.840890147718,175.882513042687,185.792112657005 -"Tfru22254_t",71.6461688891845,61.9395795096875,73.6766489812894,19.7549277031803,12.8037518247763,14.3768471078781 -"Tfru22255_t",10.3461055137251,12.3738820782398,7.75132671079649,1.60527420863211,2.23872673393839,4.16327375671278 -"Tfru22256_t",11.4892240009732,10.7934726018039,13.5805764729808,14.647148328031,10.7993993521545,8.33900964107868 -"Tfru22257_t",24.7547977957629,29.1012341836639,28.7032887016965,36.6951034259067,34.7541808110759,32.0873282156264 -"Tfru22258_t",0,0,0,0.107415134520747,0.179762285088551,0.151953176332207 -"Tfru22259_t",0,0,0,0,0,0 -"Tfru22260_t",1.0245167898957,3.70061917776135,0.882264828871146,0,0.443377099501946,0 -"Tfru22261_t",0,0,0,0.477466174875191,0,0 -"Tfru22262_t",2.40029647918421,2.31200588629661,8.47478387047083,1.98625928748079,5.60935370455604,36.1765780692395 -"Tfru22263_t",0,0,0,0,0,0.102101428283019 -"Tfru22264_t",0.3054922791689,0.98085098206523,0.789225992372006,12.9558276251588,28.8211237479883,18.7747819106027 -"Tfru22265_t",58.9714534014558,51.7283075944621,55.0251618188789,29.7211029376706,28.1854966575895,37.239417354092 -"Tfru22266_t",0,0,0,0,0,0 -"Tfru22267_t",0,0,0,0,0,0 -"Tfru22268_t",0,0,0,0,0,0 -"Tfru22269_t",37.2841441579334,48.1945511360581,36.381347078724,4.50772100544992,22.4218482480119,40.9619454894808 -"Tfru22270_t",0.280502092726035,0,0.120777489094214,6.23814738659973,0.485568242526338,0.102612787690113 -"Tfru22271_t",75.0601187134724,60.0043900574863,70.1998684599253,37.1897594345583,29.4464660102636,38.1738204490699 -"Tfru22272_t",12.9801440505241,10.7083248310233,13.3513553072947,8.5779974593457,8.11399121148625,8.17775474084854 -"Tfru22273_t",9.77275581223565,9.68736407041474,10.5451358943422,6.4549947061613,5.60513165733363,4.78109435229707 -"Tfru22274_t",601.199258770671,622.495543188039,674.533369251362,685.957748461628,521.721832983939,397.678937076664 -"Tfru22275_t",8.67203889253651,13.7353037868697,11.6019857864825,19.7024106742046,17.2904809531118,11.8964631922021 -"Tfru22276_t",8.41105083289819,10.0467081372146,8.01925099519827,12.7396397982789,6.58671295374523,10.7692059528934 -"Tfru22277_t",0,0,0,0,0,0 -"Tfru22278_t",0,0.023520580752349,0,0.0303100257507097,0.0253623454197137,0.0428776141097856 -"Tfru22279_t",13.2133823930612,13.4949547983806,13.1940167431428,25.1017468093503,25.8548002135516,25.3533967704887 -"Tfru22280_t",6.71619828083246,5.11211960845507,6.23240144447225,4.97078155593703,5.3620822481462,4.78673450060695 -"Tfru22281_t",22.6991825817003,23.1039585434237,18.1368090169054,16.7020061952163,16.4061877152753,15.4090679230473 -"Tfru22282_t",7.02086720161382,7.03235123748554,6.7694919940956,6.1449896706437,7.94658441478772,7.06848188003344 -"Tfru22283_t",17.8771182777487,15.2222290261202,17.3712934098655,14.2436638336599,13.6436472804323,14.4051829643416 -"Tfru22284_t",6.50402916940238,6.19953191285181,6.76782504211478,3.64414506372484,3.16657063966873,4.95685966341756 -"Tfru22285_t",10.3851784157502,10.3052620369024,10.5021283173593,11.900238607479,11.4626871111385,14.2901471668925 -"Tfru22286_t",140.293190766112,122.908358897952,139.345689375698,307.356501812761,193.067793534847,142.308266593091 -"Tfru22287_t",0.22774754800799,0.137106414809186,0.196125288966273,0.647839567672064,0.394246529682516,0.208285529740351 -"Tfru22288_t",0,0,0.0841229255435278,0.101045167241029,0.0845509817654873,0.142941999596227 -"Tfru22289_t",0,0,0,0,0,0 -"Tfru22290_t",0.134848116808102,0.054119987975108,0.116124744731034,0.139484500525336,0.379325833121247,0.271314469538585 -"Tfru22291_t",30.1278592559674,49.2032057296343,31.6325406367952,142.034661979769,122.159258454776,82.9142462209619 -"Tfru22292_t",1.2128543326003,1.42785092432499,1.39260280976774,11.3328136078894,13.5069989927195,20.2911602699206 -"Tfru22293_t",4.07224317845116,5.13187604831148,2.98079779797958,1.97976037803314,1.33937279888324,3.18795996191101 -"Tfru22294_t",8.65845108786506,10.3310383730756,7.05320350657434,3.87292897280377,11.5450950588975,13.8681611307426 -"Tfru22295_t",7.04434836282323,7.64386004074515,11.5708210320585,17.0019477053383,41.6636778780431,38.7497116296729 -"Tfru22296_t",0.312306233351106,0.0626705436960823,0.201707386526303,6.29935856740539,4.39256494487987,2.74193575433655 -"Tfru22297_t",0,0,0,0,0,0 -"Tfru22298_t",0,0,0,0,0,0 -"Tfru22299_t",0,0,0,0,0,0 -"Tfru22300_t",9.33783320155923,10.5901309420722,9.20857983809216,8.72415786003575,8.26471446715925,9.27816069806562 -"Tfru22301_t",18.0087532360992,18.7845237044048,20.034803823408,18.2969818069419,15.6267510912601,16.887842879391 -"Tfru22302_t",0,0,0,0,0,0.148825810717622 -"Tfru22303_t",47.4931300071946,48.0401387425848,46.1300538954221,65.1919839065825,69.4276804419776,51.4144871842666 -"Tfru22304_t",12.0718723219968,11.6673806334372,11.2443488160528,6.62571829768153,7.0368236437083,6.12848103840716 -"Tfru22305_t",13.7159798810526,12.7297943144308,13.2879886470797,8.77855667234814,8.2359558360545,8.71800338353724 -"Tfru22306_t",0.484209664388746,0,0,0,0,0 -"Tfru22307_t",34.4768865530593,36.8699614651399,33.6536824147001,30.6729523724876,30.7724949933149,33.8890699866214 -"Tfru22308_t",0.992737096265258,1.89252082026988,1.60293314551183,1.92538058701517,1.93330752988145,1.4526454316426 -"Tfru22309_t",9.23759900276376,8.53034932099383,9.26907486446201,7.1875462782866,8.34923804368633,7.57597234317987 -"Tfru22310_t",16.8406122243681,17.0130402565787,18.8497094814231,16.8217027959239,17.0443919480096,17.5090835560461 -"Tfru22311_t",31.3559856963853,29.7277282680509,30.976193879014,18.3589106677362,18.5369096079095,19.2186525090927 -"Tfru22312_t",11.2671083683417,10.1178519681813,10.4303966021782,5.60872671810638,5.48553729140714,4.5338853853489 -"Tfru22313_t",6.23920713481759,7.11676079006613,5.18438355466953,2.60413473358638,1.70534097424071,3.24343312438866 -"Tfru22314_t",6.53163787231093,5.69478661671586,3.68517051844838,2.09675494489427,1.94943282354743,3.13092798043211 -"Tfru22315_t",24.6264184227991,26.2727941624615,26.3075330790669,33.8566924002408,29.1394997639275,22.5790015688734 -"Tfru22316_t",22.0253705805097,23.6360926418536,18.270775380224,21.5032812868196,16.6755984988217,17.5415572777431 -"Tfru22317_t",0,0,0,0,0,0 -"Tfru22318_t",0,0,0,0,0,0 -"Tfru22319_t",21.8598429354277,24.2554188964154,22.515758540885,28.375132678297,29.12263662749,30.7325299131889 -"Tfru22320_t",83.144290412979,73.6902219773234,76.8207087076876,100.784741552263,101.199680236836,109.62325103055 -"Tfru22321_t",0,0,0.103647157546467,0,0,0 -"Tfru22322_t",2.32823215070986,6.69662982847653,3.25806342116619,12.3424454858614,13.0146026204844,15.8276077843906 -"Tfru22323_t",1.77904327280712,2.06267191816659,1.36180171232817,5.11169669572263,2.39527957754463,6.21881781772763 -"Tfru22324_t",0.109578752310584,0.0586378304495518,0.0629093182325512,9.18105176088268,6.38617241404367,1.54998846518692 -"Tfru22325_t",0.621723417365013,1.06047140174721,0.602323259673363,1.64794292179402,2.08522587776863,1.87636167832605 -"Tfru22326_t",0,0,0,0,0,0 -"Tfru22327_t",5.33525615515353,5.49694922413334,3.56585519460338,9.63712296473204,15.3698457658627,13.1086620482796 -"Tfru22328_t",11.0332577373383,17.2062977154032,17.2380974256362,12.8799412051698,10.095355496352,13.3770111442023 -"Tfru22329_t",20.7717964544788,22.6013395936047,23.452732099333,22.440910219134,19.9763308566811,22.2895271897853 -"Tfru22330_t",20.2766980802053,20.9758598555136,21.1702901563689,22.5256219598376,23.7911656525376,22.7661483112678 -"Tfru22331_t",0,0,0,0,0,0 -"Tfru22332_t",0.494178686890868,0,0,0,0.427728495990112,0.361559175449281 -"Tfru22333_t",5.7419622854366,6.74883736134183,6.94613058108804,9.33331764459037,8.46060190196877,9.25226693887704 -"Tfru22334_t",0,0,0,0,0,0 -"Tfru22335_t",0,0,0,0,0,0 -"Tfru22336_t",0,0,0,0,0,0 -"Tfru22337_t",0,0,0,0,0,0.0197066559238146 -"Tfru22338_t",0,0,0,0,0,0 -"Tfru22339_t",12.6512441816875,13.9591650512866,11.0592177275058,11.1094518268731,30.3360305914006,49.9158925341602 -"Tfru22340_t",0,0,0,0.0193409400906487,0.0181941761750594,0.0684009123373889 -"Tfru22341_t",0,0,0,0,0,0 -"Tfru22342_t",0,0,0,0,0,0 -"Tfru22343_t",0,0,0,0,0,0 -"Tfru22344_t",0,0,0,0,0,0 -"Tfru22345_t",0,0,0,0,0,0 -"Tfru22346_t",0.866682016211631,1.25220401338279,1.29366479721684,11.0565929216284,12.0022851694612,11.5405511228343 -"Tfru22347_t",0,0,0,0,0,0 -"Tfru22348_t",0,0,0,0,0,0 -"Tfru22349_t",0,0,0,0,0,0 -"Tfru22350_t",0,0,0,0,0,0 -"Tfru22351_t",12.2905457542528,17.444885329996,14.5207726072013,19.3022409571756,20.691986028139,16.5039991148436 -"Tfru22352_t",0,0,0,0,0,0 -"Tfru22353_t",0,0,0,0,0,0 -"Tfru22354_t",4.49164390659224,3.80565325343378,6.0168714269945,3.01134607322273,3.09573792642348,2.79939876436968 -"Tfru22355_t",0,0,0,0,0,0 -"Tfru22356_t",0,0,0,0,0,0 -"Tfru22357_t",33.9078026728131,28.0295894347707,34.8654052855103,37.1675777815495,48.1838727410548,29.25144413424 -"Tfru22358_t",0,0,0,0,0,0 -"Tfru22359_t",4.15260417501451,5.38442435496835,7.4271267342993,2.97372469370936,2.21182796405533,2.33707451811322 -"Tfru22360_t",0,0,0,0,0,0 -"Tfru22361_t",1.62916050623363,2.83334054693213,1.87060674770353,4.10059185481046,2.30315343994676,1.82766176600735 -"Tfru22362_t",0.891356782720928,0.178868713572903,0.767593803367999,0.92200364803485,0.578624755848693,0.489111881907515 -"Tfru22363_t",24.8779115729641,24.4065782674376,25.9977830928133,21.0799775993929,21.7203289802463,21.0170849728904 -"Tfru22364_t",0.443034287522465,0.133355646045454,1.52607970399333,0.515550161137483,0.191730637622463,0.769832654384427 -"Tfru22365_t",1.38383599348987,0.74051892949331,3.2771566601583,29.0458043540752,11.6781328555159,7.88878942177943 -"Tfru22366_t",0,0,0,0,0,0 -"Tfru22367_t",0.596241141032274,0.430732111535033,0.513454336177671,1.04846014553857,0.567673731370837,1.30869538310244 -"Tfru22368_t",0.0503961468335018,0.121356037823008,0.173594999321977,0.104257761040533,0.0436195826744565,0.479331600325681 -"Tfru22369_t",0,0,0,0,0,0 -"Tfru22370_t",0.449909515329076,0.393964002046648,0.316996808036468,0.338457035354565,0.247807648601866,0.179547399687569 -"Tfru22371_t",0.109104385417464,0.0875759805415384,0.0939554752823817,20.5397267228127,11.7097619421709,3.11316536782952 -"Tfru22372_t",26.3609186649988,26.7800975822688,22.1105098855266,18.2612123853147,12.5705962393742,9.41967289511191 -"Tfru22373_t",0.277261969542731,0.778934876433815,0.358147108749673,0,0.359969526328312,0.101427491462669 -"Tfru22374_t",0,0.21475638540441,0,0,0,0 -"Tfru22375_t",0,0.0536890963511024,0,0.207560932708482,0.0578931881515279,0.195748598173177 -"Tfru22376_t",0.240029647918421,0,0,0,0,0 -"Tfru22377_t",6.90926463167044,6.42824066517049,7.09934595942108,2.59884392754496,2.17461964316468,2.64242313272278 -"Tfru22378_t",0,0,0,0,0,0 -"Tfru22379_t",0,0,0,0,0,0 -"Tfru22380_t",0.396899417817862,0.743361472628177,0.569651306830188,2.18957716730166,0.801569937367297,1.54872591688511 -"Tfru22381_t",20.3337217663376,28.5625992587865,26.0352417335033,6.91869775694941,11.8102103829117,12.7236588812565 -"Tfru22382_t",0,0,0,0.36802051382651,0.269453102291283,0.357922529428351 -"Tfru22383_t",0,0,0,0,0,0 -"Tfru22384_t",11.3043972615984,14.8510381329758,9.66477134898923,43.870035872148,41.9178066714027,32.0118123781135 -"Tfru22385_t",1.2793458391591,1.02690616777134,0,7.05777411795206,8.48943360061593,4.05606993778127 -"Tfru22386_t",0,0,0,0,0.131967049579526,0 -"Tfru22387_t",38.6889893026403,29.2803377047433,41.3132114866662,12.8061454061262,18.3698133014701,17.792517318162 -"Tfru22388_t",19.1513016956187,18.241890414929,16.7120802842704,7.92390673197124,8.17754480175625,9.90166617263836 -"Tfru22389_t",1.15082707906072,1.84749328813624,0.495518602516584,0.59519756046075,0,1.26298068136371 -"Tfru22390_t",17.4593692556798,15.8279131580208,16.7155749606907,5.84283179767806,6.48913280591356,9.31744183187144 -"Tfru22391_t",0,0,0,0,0,0 -"Tfru22392_t",0,0,0,0,0,0 -"Tfru22393_t",14.8595871540333,14.5501169589125,14.6849855000492,13.1945500750006,12.7452609380538,12.3781526981198 -"Tfru22394_t",24.883508337195,18.5075652356398,22.4114446203464,15.3489805673193,18.3760530478361,17.3705603857154 -"Tfru22395_t",4.63359323937688,4.69166058697838,4.30318786396056,11.9352773966097,10.7471795856203,12.341758588065 -"Tfru22396_t",0.88431975548892,0.993756916039773,1.14230077843317,3.93331608902446,4.59245332536752,3.81730371553293 -"Tfru22397_t",0.267804835101841,0.150473234019411,0.253682778336555,1.05264777348958,0.834459163359734,0.842523931314709 -"Tfru22398_t",11.7814212586105,9.93756916039773,10.6369083239045,11.3012757846689,10.8638680815146,11.3329465146768 -"Tfru22399_t",8.54047398713885,9.79324761657453,7.95502685948962,6.4903700783864,7.09035411402696,8.03381487357219 -"Tfru22400_t",27.6650485440718,27.0956379675497,31.2550978348733,17.3272619111806,17.3546637496894,17.6410292553048 -"Tfru22401_t",2.32095762170748,2.26219947762948,2.1771527745503,1.07176669742581,1.18379716946449,1.97100586517738 -"Tfru22402_t",38.4979590641973,47.1379840895426,28.6573321502068,20.5857455280169,37.6982455009538,26.6149676529752 -"Tfru22403_t",48.2511358074375,57.2534185615261,45.1647489013492,40.2437324421477,39.5345419165435,42.2790309361917 -"Tfru22404_t",2.52985793686745,2.41381296367615,2.26080362398231,4.19681916211318,4.29672716426431,4.92418945199958 -"Tfru22405_t",6.89344652627621,6.56790642593712,5.64673033234808,7.01451641300963,6.06352937944622,10.5790429854606 -"Tfru22406_t",10.5950586776491,8.95601238506827,11.3847611064823,14.6447828325,15.0946150035796,14.268674602552 -"Tfru22407_t",17.3911297490142,16.436213242871,14.3725212022114,17.5538565995016,16.8734964277902,14.7762414273763 -"Tfru22408_t",14.7858263117748,14.7005040937026,14.0350688976822,15.1203988259475,13.0884919772974,15.6121251958999 -"Tfru22409_t",0,0,0,0,0,0 -"Tfru22410_t",0,0,0.0437928062756864,0,0,0.111619358038216 -"Tfru22411_t",21.0557653174008,23.90048279083,16.6669877292063,11.4398477949843,10.6769695454747,9.49207253014947 -"Tfru22412_t",0,0,0,0,0,0 -"Tfru22413_t",27.8126996668416,27.561378072337,24.0495295586565,18.4689640831831,16.7420159261525,16.496753114164 -"Tfru22414_t",87.9759015491207,86.7675868750011,89.926230861618,87.0507648829267,107.672423317511,114.65597698382 -"Tfru22415_t",30.961596152338,22.6705384157005,31.3138173586464,33.068936517221,35.032934927325,37.3401053423295 -"Tfru22416_t",27.6750601517881,26.5995702092583,26.8404148791759,37.2423616402648,41.9383686313546,37.6784748402635 -"Tfru22417_t",5.67487313290572,4.91237453766113,4.98275129841929,2.07176051508758,1.92619455147865,2.11667755693486 -"Tfru22418_t",2.67694081915799,2.42303441755945,2.25620537932336,1.06046046704483,0.739462823576126,1.25013681002802 -"Tfru22419_t",23.0596802020781,27.3974095353166,22.7447232787579,15.3412710988918,11.0785300896109,12.3376057208932 -"Tfru22420_t",1.39243718405714,0.186280400599405,0.5995501323268,1.68036438340053,0.8034678930201,1.52813684651215 -"Tfru22421_t",0,0.177456592149959,0.190383463072194,0.686043503899616,0,0.80875078718918 -"Tfru22422_t",2.93547073577437,2.58064994241372,2.76863804867052,3.32557971385615,1.81482140561528,2.55678285467461 -"Tfru22423_t",7.27012790803931,3.89039406480803,4.86942262010978,8.35565708221745,5.59337198512051,2.95505060727826 -"Tfru22424_t",2.21705047087703,2.41514909580152,3.34113108614916,4.50465260179138,4.79733185889004,2.72276890842578 -"Tfru22425_t",0,0,0,0,0,0 -"Tfru22426_t",0,0,0,0,0,0 -"Tfru22427_t",0,0,0,0,0,0 -"Tfru22428_t",0,0,0.0685741383577573,0.658948578785097,1.03384612774861,0.87391080321864 -"Tfru22429_t",0,0,0,0,0,0 -"Tfru22430_t",0,0,0,0,0,0 -"Tfru22431_t",7.00335880460231,7.71149095491701,6.67529050073579,6.93457107848655,6.47611723533301,7.0289576787557 -"Tfru22432_t",15.3059529284049,13.4756327219005,17.5149661143972,9.91295797455278,8.92139493277694,7.23860162912203 -"Tfru22433_t",0,0,0,0,0,0 -"Tfru22434_t",6.48647990016157,6.46622650847797,6.93726043523339,7.46702394032707,4.79929483047436,5.43464414405083 -"Tfru22435_t",0,0,0,0,0,0 -"Tfru22436_t",0,0,0,0,0,0 -"Tfru22437_t",0,0,0,0,0,0 -"Tfru22438_t",14.4292631859356,12.6437821906846,15.9809477542566,9.90878992114552,9.5055311752001,9.03207940196772 -"Tfru22439_t",0,0,0.0413167995245196,0.049628123259443,0,0 -"Tfru22440_t",26.3587426346272,26.9942469851608,30.4142731733262,24.3101866039235,26.5231333216743,22.2300216373607 -"Tfru22441_t",1.54430839653396,1.23958648928281,1.59586138163457,1.27792417393066,2.6733030999382,2.48571933121381 -"Tfru22442_t",0,0,0,0,0,0 -"Tfru22443_t",0,0,0,0,0,0 -"Tfru22444_t",0.205404344184468,0.16487409539605,0.0884421955592101,0.106233305412328,0.533353381307964,0.150281319868894 -"Tfru22445_t",1.67393029681589,1.175677546996,1.53160295323335,0.432870953062439,0.996080059155056,1.76051852553759 -"Tfru22446_t",0,0,0,0,0,0 -"Tfru22447_t",1.05599635606568,1.22435134807374,1.41458103846938,0.72820260190462,0.203111296978545,1.54521100122179 -"Tfru22448_t",1.77519182530226,2.3316744325302,1.8066575612065,2.52779293240729,1.77594186178112,2.53012046486187 -"Tfru22449_t",11.0382242963673,8.37907404788928,9.67763739160085,6.61299168245686,2.98291037928895,3.58119849166767 -"Tfru22450_t",0.303286558741687,0.365163384568509,0.391763804877801,0.313714237643627,0,0 -"Tfru22451_t",5.46887780685436,5.6391564035235,7.20921255759607,4.2209253135937,5.93508093334302,7.91012537575316 -"Tfru22452_t",0,0,0,0,0,0 -"Tfru22453_t",5.67103014312754,9.68628839725917,5.84898645576585,5.0474995629663,4.33771755745074,3.90790411768964 -"Tfru22454_t",0.497593544549541,0.599113075175579,0.499921038274469,0.857836562954439,0.717806952796832,5.6428929554325 -"Tfru22455_t",13.3218001842132,11.8233218938245,13.8970928394684,10.8296797206328,10.8117705776272,11.9918939240118 -"Tfru22456_t",5.36807519306373,2.26214633443558,3.35147885472138,3.47040111131328,3.02006382152763,3.63291887152712 -"Tfru22457_t",0.424955213240785,0.236148461148973,0.140750420170105,0.879132272182646,1.38637290723643,1.69806196407503 -"Tfru22458_t",28.4293670443301,21.0248951003526,30.8088220089452,29.406833082237,32.0715054788023,21.734793018453 -"Tfru22459_t",0,0,0,0,0,0 -"Tfru22460_t",36.4413060009615,41.5237659811361,39.7938013005905,12.8283429714697,12.2782730042055,14.4806460460526 -"Tfru22461_t",4.34665642528452,5.89516814599865,4.96933107001999,1.16278559982986,1.49189867914482,1.7545779789867 -"Tfru22462_t",16.941801552662,17.6644940377132,20.6809479116885,26.2864486005612,27.8912770825985,24.5349095356851 -"Tfru22463_t",24.6591609516191,21.054777825447,22.5885185106952,19.2552833804343,21.6572169408519,23.7900735155332 -"Tfru22464_t",0,0,0,0,0,0 -"Tfru22465_t",12.9417393794043,13.949712745591,12.5458679978737,11.7038055506818,12.0976378311288,12.4986169189201 -"Tfru22466_t",13.0175823431796,11.7416166882609,8.6676177277277,7.63488244488923,6.96937804967914,10.8987566145814 -"Tfru22467_t",11.3430353072732,9.73456434291878,9.76807915980527,9.80570611280644,11.3739165042662,15.4021395051312 -"Tfru22468_t",55.8262503707035,43.9405419788091,52.2756141184036,37.0020883393597,39.8753339810135,26.568767795918 -"Tfru22469_t",0,0,0,0,0,0 -"Tfru22470_t",4.56578134627432,6.23026948526488,2.75228267267412,2.12524346316729,2.17351165081932,4.67668933461569 -"Tfru22471_t",3.07955926581552,3.36178764014293,3.12932349125997,1.65642957442038,1.01287613053377,3.01917815862706 -"Tfru22472_t",5.74946016029593,4.78356426214234,4.36335099428586,4.23631863658013,3.45390760512015,5.20532225404636 -"Tfru22473_t",10.2973884149468,9.73857657405481,10.7991784757213,10.2295969068527,9.79519019336579,9.02581582401906 -"Tfru22474_t",4.68895126166218,5.01830735010118,4.71088383043756,0.80836133792823,1.69101963530975,3.144723991117 -"Tfru22475_t",2.68637832699396,3.52849735553989,3.78553164945875,0.505225836205143,0.845509817654873,1.25074249646699 -"Tfru22476_t",16.4919699366768,9.16462064828146,16.2656475497251,2.62446172632739,5.85614853570355,7.73469712580256 -"Tfru22477_t",1.59513373616672,2.13397167775267,0,1.09998536490234,0.920428409092645,0 -"Tfru22478_t",23.7470872441987,22.910695652263,20.6986367554694,22.5913087804082,24.5046655543166,24.9411178112537 -"Tfru22479_t",6.36109902446991,7.74693008028021,7.55568835169023,6.80669794991786,5.69560138263596,6.90077695178653 -"Tfru22480_t",8.1961343191656,8.73757305860319,9.5946300139737,10.5974199789372,14.0772229091868,9.36967375402099 -"Tfru22481_t",459.976081258714,453.846048444586,429.428240650732,468.615966987871,545.420542336309,610.703300843734 -"Tfru22482_t",23.0333085982644,19.6494981506445,22.3265587025326,18.760942442182,17.0468217805861,17.503295182346 -"Tfru22483_t",0.228289067313716,0.732972880619398,0.196591619476723,0.708414487722429,0.592775904768905,1.33619695274734 -"Tfru22484_t",2.66096216018159,4.72949922064824,3.84643512496538,3.34226322412633,4.52405139989542,5.91010190638247 -"Tfru22485_t",4.11756672441103,3.08642236780091,2.6404479988224,2.09264829369166,2.30006578612242,1.27204180104259 -"Tfru22486_t",19.4683588349655,16.4547746265053,14.3855376262216,10.8464684094201,8.50435762177181,13.6467615047902 -"Tfru22487_t",3.22499926910254,3.55193773346515,3.1769922361313,3.56196589714222,3.1366006256172,3.30235707620455 -"Tfru22488_t",18.87107245475,18.2955585330249,19.2856644730507,25.1054169920504,23.2212006212765,24.4945333137595 -"Tfru22489_t",5.63634751111082,4.92046633081817,6.20004911572034,4.89391138106647,6.16037956271753,6.77259474090841 -"Tfru22490_t",0.995565084802932,0.491766672867709,0.725435620457405,0.475289938891256,0.463989890818809,0.616331502361126 -"Tfru22491_t",9.6167385937078,9.43777780799266,10.8752955320376,8.10805627070993,7.0672202901174,5.28360557470806 -"Tfru22492_t",5.00286513358058,4.84915092256968,7.55972088199028,12.1072546455992,11.2747309167731,9.66866109628413 -"Tfru22493_t",0,0,0,0,0,0 -"Tfru22494_t",0,0,0,0,0,0 -"Tfru22495_t",0,0,0,0.0537740370218346,0.089992381582078,0 -"Tfru22496_t",0,0,0,0,0,0 -"Tfru22497_t",4.75076575872895,3.62026691215021,4.45363748976329,3.42121432390884,3.07094976004354,3.1678484663559 -"Tfru22498_t",0,0,0,0,0,0 -"Tfru22499_t",0,0,0,0,0,0 -"Tfru22500_t",4.49482270624305,2.40527151652939,6.45121034104506,1.99258495400143,5.00197145629201,3.13197757077084 -"Tfru22501_t",0,0,0,0,0,0 -"Tfru22502_t",0,0,0,0,0,0 -"Tfru22503_t",0,0,0,0,0,0 -"Tfru22504_t",0,0,0,0,0,0 -"Tfru22505_t",0,0,0,0,0.0982619517815122,0.166121783314534 -"Tfru22506_t",0,0,0,0,0,0 -"Tfru22507_t",0.0769678211373774,0.0308902908918848,0.0994215061393961,0.11942122376631,0.0999274085913684,0.225249875680724 -"Tfru22508_t",0.186897389925356,0,0.0804735439014838,0,0,0.0683704781161042 -"Tfru22509_t",80.6862251725772,94.6009602756259,73.1264251325501,32.8215057621039,39.4956492520366,44.4405648384961 -"Tfru22510_t",53.3496553220141,89.706250287193,63.8965812559088,301.608760874992,149.9391315323,41.6122941525294 -"Tfru22511_t",17.1690473589074,13.8864628116099,14.8980257530441,22.7753600046549,21.0994930471253,19.3696444382657 -"Tfru22512_t",2.35268266337776,1.80976734584673,2.44810474102168,2.5349721069803,2.12117398828235,1.79302974989433 -"Tfru22513_t",4.27486430474179,4.17729677096365,4.32153613079804,9.99721212172301,14.9610343398311,13.3264952720907 -"Tfru22514_t",3.62271821230587,3.49682476889385,3.909511943655,5.02798987210271,5.27889808642818,5.77073705793502 -"Tfru22515_t",0.84614767971242,2.0375591443981,1.14504010883708,7.37702415224431,7.32369655004652,6.19072545013876 -"Tfru22516_t",12.549758739195,9.24960602697037,11.2900911982032,8.02966729410227,6.7999878276868,8.43093633758117 -"Tfru22517_t",10.2869849107895,9.15168996659077,12.6974113738762,10.9953639128401,10.0167030438501,8.78072283233967 -"Tfru22518_t",38.5940942012682,33.1301545024728,39.6587290475402,47.2466684849873,46.319950583219,40.5297499860428 -"Tfru22519_t",24.1771096391832,27.8866489913044,22.5697638689213,21.961134655263,33.1476654268516,49.053131179455 -"Tfru22520_t",0.506697085473145,0.366044357752027,0.392708952778592,0.891001414393148,0.701701754579677,0.704364376779962 -"Tfru22521_t",0,0.108239975950216,0,0.278969001050673,0.93372512768307,1.57855691367904 -"Tfru22522_t",0.176616068895825,0.330788041428796,0.304186612336793,4.68900558843792,5.40130868797605,4.69494850811154 -"Tfru22523_t",3.82534114896258,4.66483966404709,4.75125104864934,8.9029463465782,7.89537363876669,10.2262358730401 -"Tfru22524_t",8.95845249932496,8.14954681484885,8.91463798650844,12.3552858522206,12.7507689088996,8.30215263057708 -"Tfru22525_t",34.561230950279,29.4488091529869,39.3780479316412,37.3995024066794,39.5784215909837,30.7325299131888 -"Tfru22526_t",5.1225839494785,4.90252967994025,5.5311218117691,13.8581645878409,13.8129019460221,9.74446070418183 -"Tfru22527_t",10.4172867196595,8.766355652208,8.82617734802694,6.60431213087363,6.68967367728535,5.28599514506848 -"Tfru22528_t",1.21533998946036,0.853588671101071,0.915768556549796,5.26421567488976,4.79937670455451,3.16772912305925 -"Tfru22529_t",26.5157751684881,37.0884277593415,22.6645563304227,27.1558886960264,19.1441918244324,13.8776580389243 -"Tfru22530_t",12.7737873564786,13.8822392161959,12.9159350545504,15.8852670094296,12.7539089123247,12.3735185926108 -"Tfru22531_t",3.50774015747171,3.66027375875073,3.7542960269411,2.87675862356952,3.40473413599048,4.01456847658118 -"Tfru22532_t",18.5962174614895,17.2919899848698,20.2996552987344,13.0043476343247,14.3954142298153,14.1326521034929 -"Tfru22533_t",7.46665161363103,6.97529602485505,6.41175941162545,6.93794434774705,6.82776243410779,9.21281464131245 -"Tfru22534_t",0,0,0,0,0,0 -"Tfru22535_t",0,0,0,0,0,0 -"Tfru22536_t",0,0,0,0,0,0 -"Tfru22537_t",4.99241993109011,5.25096965296191,4.44748253898159,11.5746410835523,17.8804535208981,18.8929487171243 -"Tfru22538_t",0,0,0,0,0,0 -"Tfru22539_t",32.1216146479064,24.8439229009943,32.4211838584708,20.5140459499395,20.1482633637448,20.0284753768615 -"Tfru22540_t",7.47549962796778,9.14352610399792,8.27684038610473,4.78680071929958,6.77840921611449,7.29246472516346 -"Tfru22541_t",0,0,0,0,0,0 -"Tfru22542_t",7.8652195924117,7.33916438452846,8.80509591645773,1.83051982316106,1.9997370877478,3.45268914179769 -"Tfru22543_t",15.1825982117074,12.9179846960248,14.2948161670592,20.5206908315034,17.871836434864,13.2557177215923 -"Tfru22544_t",19.8033245390967,23.794252868365,27.6460203038071,36.0064023471765,17.0339898842329,4.40964558051612 -"Tfru22545_t",0,0,0.645943892566374,5.0432364721192,1.29846150568427,0.274397588510615 -"Tfru22546_t",0,0,0,0,0,0 -"Tfru22547_t",14.7286563109686,10.9067769696001,13.3481313007007,3.47040111131328,4.21066590501448,5.35119131076291 -"Tfru22548_t",7.47549962796778,0,8.88993967396434,0,0,0 -"Tfru22549_t",0.140957008005784,0.113143464793598,0,0,0.122003094493824,0 -"Tfru22550_t",37.2249369229416,36.0842726604203,38.0121558472958,27.5635557902525,31.8673264445902,42.861833486675 -"Tfru22551_t",0,0,1.10451474755632,0.663349952857161,0.555067513861158,0.46919892995617 -"Tfru22552_t",2.59062835859089,2.15371326596096,2.23092516199135,3.34962503739533,4.40447294879686,4.12926062710247 -"Tfru22553_t",0,0,0,0,0,0 -"Tfru22554_t",0.296856455022782,0.142968561873466,1.12480971822159,13.5107743053022,6.26932085288687,3.86600022936227 -"Tfru22555_t",0,0,0,0,0,0 -"Tfru22556_t",2.25430349118374,2.05075059980096,3.62375679264427,2.64271975861152,1.95117650228048,2.30906307040059 -"Tfru22557_t",2.85589725166256,3.18699713749583,3.65581764533985,2.74440285183111,3.19001186925794,2.65998064217528 -"Tfru22558_t",4.83829395018808,2.8244400007114,4.16650720231295,2.68679214182931,1.52280302237317,1.60903297974811 -"Tfru22559_t",66.6237510703093,53.2971324219878,78.8639294488887,77.3640019086798,80.8219893136713,65.0838769080378 -"Tfru22560_t",8.93023690090189,9.42476152796438,10.8233748297736,10.1781126136288,8.08726811808076,8.77208038860705 -"Tfru22561_t",16.3232597353849,4.68310528771719,26.3330909156074,9.9055676901568,4.66235141678341,3.38376300857649 -"Tfru22562_t",0.305863022226144,0.0818367779332337,0.351192795958417,0.316379285778949,0.352979826787957,0.223780557620307 -"Tfru22563_t",0,0,0,0,0,0.841987120909137 -"Tfru22564_t",23.4994060899154,20.6308800314201,25.2957048837182,23.6996846801685,23.1362231921924,20.0943464817004 -"Tfru22565_t",6.55371052336986,5.3920501330012,7.08995071158177,4.91480540417602,7.79963225257445,9.5598996024449 -"Tfru22566_t",0,0,0,0,0,0 -"Tfru22567_t",0,0.0859025541617638,0,0,0,0.469796635615626 -"Tfru22568_t",5.00286513358058,5.9099026868818,3.25149285246894,8.10404948052205,6.29097304776468,4.90339241311552 -"Tfru22569_t",0.0844325394687914,0,0,0,0.0730792405209237,0 -"Tfru22570_t",1.48399095376453,1.45587547632351,0.922958103608087,5.45782728650267,5.92271744692883,8.08274584566694 -"Tfru22571_t",2.85602948613644,2.81153163957922,2.83071755870011,5.29531120179092,8.20887530469798,10.0536178676885 -"Tfru22572_t",0.683628744071453,0.304853096821811,0.457884278274898,1.09998536490234,0.328724431818802,0.222296780565561 -"Tfru22573_t",6.38738689370541,8.3422892804517,9.97550465014875,5.82311840079742,3.09221245168109,1.90098123174364 -"Tfru22574_t",3.34184924173714,3.20402289030976,2.55808056459435,3.93685369825267,3.2138715720804,5.63712703380039 -"Tfru22575_t",7.39740146688976,6.2546535694705,7.37235591852158,9.41422052840729,9.20838196660385,9.31933753983911 -"Tfru22576_t",1.1123694276169,1.02043134956345,0.86668890503231,12.163646487804,8.11497505948453,3.33290992753372 -"Tfru22577_t",5.09951845321126,4.80432495133831,5.00997691082543,3.31845114643948,4.22730813363838,4.43165008152567 -"Tfru22578_t",0,0,0,0,0.0703228668455697,0.118887930031678 -"Tfru22579_t",0.440767978863838,0.424555120778497,0.683222920993604,0.820660644748753,0.305199766288852,0.773956681969079 -"Tfru22580_t",5.56360111069188,4.68908478594926,4.25210747821838,4.89165677173457,5.3572285963,4.93552218804523 -"Tfru22581_t",4.69794870103489,3.88186295328036,4.4026175835445,4.43069762935168,3.22906874439904,4.44812932954049 -"Tfru22582_t",1.23940902228563,1.85993631541394,1.48496658817055,1.05906224035818,1.16603342396278,0.86737095329077 -"Tfru22583_t",43.8162604858036,52.7088036433176,38.9399055346271,46.1687876801429,33.2723988605382,34.0237744240589 -"Tfru22584_t",5.16457234250701,6.90917059600252,5.04048021084581,5.87635624241884,8.79122298110825,12.973158119092 -"Tfru22585_t",0,0,0.221919374133233,1.59936522381505,1.3382916132206,2.82814692452658 -"Tfru22586_t",0,0,0,0,0,0 -"Tfru22587_t",0,0,0,0.207395808657004,0,0 -"Tfru22588_t",12.4041368874037,11.1116364439086,10.7023319912186,11.1206900934124,10.4479830100642,12.2860510298479 -"Tfru22589_t",0.328991685258815,0.471562972146745,0.283311894697643,0.291688426832843,0.244074442467085,0.292281403370188 -"Tfru22590_t",0,0.121065538630134,0,2.65220887803203,2.21927352497563,0.772451380223777 -"Tfru22591_t",0,0,0,3.93009846455056,0.730792405209237,0.926608942106197 -"Tfru22592_t",21.5188287202414,30.0964543736865,18.7181671325832,43.6180483893744,35.5573520728649,21.0714629417724 -"Tfru22593_t",88.631974515598,65.7023270153261,116.213044964802,880.355401951965,466.15085526316,81.677897348744 -"Tfru22594_t",0,0,0,0,0,1.13225110206485 -"Tfru22595_t",0,0,0,0,0,0 -"Tfru22596_t",87.0446115984072,75.6533905043822,89.1665032013971,180.467124878334,121.955725346526,86.0233342942532 -"Tfru22597_t",0,0,0,0,0,0 -"Tfru22598_t",15.803194210778,15.4373063836575,16.1124886493575,16.269437486741,17.9365117306945,16.3615953397634 -"Tfru22599_t",23.6584246273659,21.3408836793328,21.3130578140561,24.1154686219259,24.4036210254919,20.7124227576242 -"Tfru22600_t",8.63120309295693,9.10550263438735,9.20248833245245,14.4547978969064,16.0084295221348,15.6369036740296 -"Tfru22601_t",25.7095976096107,22.9344620601671,22.376918700281,16.1155785079433,16.7251371924836,18.0447882059091 -"Tfru22602_t",4.7838076683042,3.70513763829586,5.05914097674363,2.34392485847821,2.25187729657132,2.27193527829768 -"Tfru22603_t",16.9703766099251,19.4757869247718,17.2711809404725,12.6213679682367,9.347188668632,13.7501135504751 -"Tfru22604_t",0,0,0,0.493743430836845,0.826293685435444,1.04769988340417 -"Tfru22605_t",53.8654768711046,53.9468040135877,58.7276988441523,56.2286636529489,41.4896641110409,32.178766614986 -"Tfru22606_t",9.20661663248578,12.0087063728856,7.92829764026535,2.97598780230375,4.98040029577441,5.05192272545482 -"Tfru22607_t",0,0,0,0,0,0 -"Tfru22608_t",0,0,0,0.125034307665158,0,0 -"Tfru22609_t",0,0,0,0,0,0 -"Tfru22610_t",0,0,0,0,0,0.558773258636267 -"Tfru22611_t",32.3213575303323,31.6977852924149,39.7468229940842,30.3105248679002,40.2756323320031,23.4634584666562 -"Tfru22612_t",12.5643837826324,14.2028090212764,10.1155956839421,10.9969333338953,13.4488437721493,13.0001321225702 -"Tfru22613_t",36.3024972472645,41.3644265046238,39.8260770847215,40.0684238508258,45.6869270178842,41.2650360258215 -"Tfru22614_t",0.971218228571647,0.974472615852378,0.585456661008136,1.1050720024279,0.924684725435271,1.27904170736971 -"Tfru22615_t",0,0,0,0,0,0 -"Tfru22616_t",0.232072864009523,0,0,0,0,0 -"Tfru22617_t",0,0,0,0,0,0 -"Tfru22618_t",0.00157828217766586,0.772139370423488,0,0.165837488220009,0,0.117299732493087 -"Tfru22619_t",0,0.279807074759272,0.300189692810929,0.360576115465911,0.150858598170786,0.637604355045412 -"Tfru22620_t",70.3648556911536,48.4571096716962,64.16258018873,7.55050619556054,12.6359870361384,8.44392798397596 -"Tfru22621_t",11.0502687827536,9.43841638517659,11.5899544973123,11.7232841588242,10.5453467308186,9.84684769562543 -"Tfru22622_t",0.134059111869331,0.286951085178658,0.192408819062324,0.184891157079329,0.309420614120507,0.326941807587115 -"Tfru22623_t",149.023432162417,111.654974387419,153.052997096933,202.836748531526,151.09132977701,104.397940810631 -"Tfru22624_t",0.0404284777533433,0,0,0,0,0 -"Tfru22625_t",11.4483078566301,10.6082768413493,11.0910766964102,12.7997295016141,13.6975979276994,19.9545885608681 -"Tfru22626_t",15.6804109232811,14.6075303783386,11.1376919677385,10.4183899956418,10.1046486654885,10.7187025310304 -"Tfru22627_t",1.62391192212849,3.21525732684076,3.91561864772194,4.1433727082597,4.12294993557479,3.64354736084198 -"Tfru22628_t",51.0747697282235,53.0708392322085,53.423226185431,53.3393137359986,60.4175886085506,55.7465434352753 -"Tfru22629_t",0,0,0,0.0823685723481371,0,0 -"Tfru22630_t",49.929831341809,53.093773851977,51.1232540315127,70.4098592842666,65.2600805604979,71.1171521000946 -"Tfru22631_t",3.65851640778884,4.24178499300387,1.98367285717157,3.2236667871412,2.22832748717429,1.88360667209867 -"Tfru22632_t",2.27055072355263,1.8225271626212,1.27093825348195,8.80731525276533,1.96523903563024,0.830608916572672 -"Tfru22633_t",2.65188562856046,2.59254673274526,2.43006654200608,17.4782377103037,13.2715272309032,8.88022110806023 -"Tfru22634_t",0.141336434676056,0.204206441841474,0.170397042991937,1.87130753867638,1.12544981111799,0.744529661423148 -"Tfru22635_t",0.205763693981852,0.0943785934457447,0.227820659099687,1.06419157941041,1.29755285522543,0.881759080784285 -"Tfru22636_t",0.102078222079523,0.163872430174932,0.087904879668814,0.369557659046775,0.132528270325004,0.26139454361157 -"Tfru22637_t",0.450457784297305,0.723147506884553,0.387912686152461,0.465945543309837,0.389886564709486,0.57674989113223 -"Tfru22638_t",0.150018529949013,0,0.25837755702655,0.310353013668874,0.779076903410561,0.439036141616984 -"Tfru22639_t",7.54516788697986,5.69478661671586,6.59451566459183,5.70783290554551,5.84829847064228,8.56885552539314 -"Tfru22640_t",4.70207332676012,2.51617556033525,5.26396067673493,3.08036946402688,3.52716409006772,6.42172266842752 -"Tfru22641_t",0,0,0,0,0,0 -"Tfru22642_t",0,0,0.11130110148836,0,0.223734905594828,0.189123261004239 -"Tfru22643_t",6.51604030360257,14.2899255783915,5.21049477881795,11.4340583983269,16.4160064042742,26.2205518372913 -"Tfru22644_t",10.2892924444168,10.6187349757567,9.34749492984341,9.70740785688375,11.6459589150471,11.5815725110268 -"Tfru22645_t",9.03980043516686,15.2917241256835,8.65317812149387,26.9699390802333,35.98510837096,42.3887540198807 -"Tfru22646_t",0.975604375410357,1.52269204877062,0.653445176480048,3.41988998288023,3.14311456085637,1.6655048469083 -"Tfru22647_t",0.221274038906358,0.118408261662835,0.381101225464972,4.34875689039089,4.97952577421325,2.48234657771148 -"Tfru22648_t",0,1.0239360848566,0.470796416273973,10.3675410206088,6.9401500000131,3.86656558560728 -"Tfru22649_t",1.53990507320372,2.7467822817509,1.7681234044994,51.3251827085795,43.9837306772724,29.7936542539265 -"Tfru22650_t",0,0,0,0,0,0 -"Tfru22651_t",0,0.037173927793266,0,0,0,0 -"Tfru22652_t",45.9333543818949,32.3714456752357,57.6871388543316,10.3476802811792,21.2157600629509,31.4222874424125 -"Tfru22653_t",4.37711269560182,3.48919321683283,3.66537763255774,1.31144500206466,1.64605540497812,3.06994010631207 -"Tfru22654_t",3.00407019281378,2.70232911597041,3.0329893253918,3.21450716993655,2.77944411081121,2.72841202681825 -"Tfru22655_t",2.25119158218251,1.64271632197283,2.99604670267083,2.54028288898274,1.77134821725503,3.36897404651279 -"Tfru22656_t",31.5038912863666,27.9216856685017,38.4336616041294,32.587066432205,35.2207683384144,25.9305721118446 -"Tfru22657_t",20.8180371261408,20.147092887324,20.2161139522355,16.6467029475818,9.8400105668024,5.9412623733757 -"Tfru22658_t",2.72030645240214,3.56865210826,2.87931952780098,6.71394139644865,5.68756443146682,7.82952360896642 -"Tfru22659_t",0.708207549406078,0.973942515705105,0.751924897726756,1.76594106022781,2.20406763287511,2.78892853420725 -"Tfru22660_t",1.0246107234035,1.48321820386181,0.753895510103738,1.11638625948801,1.34541784970483,2.40720319235074 -"Tfru22661_t",20.3560396546506,18.3483419807883,20.187831367278,16.2234187085695,21.012640215125,17.6399228300131 -"Tfru22662_t",10.0981636018543,9.84554635867868,10.2895731961234,7.10940824263499,6.22346307570257,6.57587172465967 -"Tfru22663_t",0.0511323047908992,0.246257474194709,0.308228856830211,0.370232444790622,0.132770257428458,0.374102616106985 -"Tfru22664_t",11.709410921684,15.217295379939,12.6444946049276,21.9169650360851,24.1307005481147,24.4772362140442 -"Tfru22665_t",1018.05678255055,843.084905089197,1038.73330098719,566.167157218443,725.70565807347,899.453360664095 -"Tfru22666_t",0,0,0,0,0,0 -"Tfru22667_t",0.1839643286966,0.147664609526244,0.422456735576256,0,0,0.0897300143450769 -"Tfru22668_t",0,0,0,0,0.241842054273788,0.88586006401653 -"Tfru22669_t",27.8819688634088,43.1515921475281,21.9704994261188,32.4221282826311,32.6502511364253,27.4659486425896 -"Tfru22670_t",0.0718651640474315,0.115369555204422,0,0.520352358247213,0.0622017487752943,0.0525791786367645 -"Tfru22671_t",0,0,0.0763946314334043,0,0,0 -"Tfru22672_t",4.43533045066648,2.09420823034114,4.49352273089652,4.04808278698531,2.37110361907562,0.95442639481953 -"Tfru22673_t",0,0,0,0,0.0753511340086208,0.0636943625143811 -"Tfru22674_t",37.6573459608541,38.9949096590946,43.5064485244705,28.9167239083094,22.3304278103307,17.4037081287691 -"Tfru22675_t",17.5406281171154,20.0077432467976,20.272700628237,19.5761131698828,22.7730171766164,17.8991657736155 -"Tfru22676_t",10.5794550087295,9.75667860620855,10.44586848592,9.20988044135556,8.18274282593766,10.9608725323014 -"Tfru22677_t",12.061635954857,13.6661555715076,11.9959119618468,18.9451931783128,23.5929259456573,20.3834998810096 -"Tfru22678_t",9.08651133960627,9.98067057177381,7.5503119131098,13.6861556691928,12.693877945513,15.0455269783733 -"Tfru22679_t",19.689932055808,23.3909970527665,21.7037147902302,33.9448608700331,40.447075902065,29.3879817294868 -"Tfru22680_t",53.3405235186943,54.9266590955132,48.08900704875,37.0967086013589,39.0147837971486,41.1893564269724 -"Tfru22681_t",16.4703801975336,15.3320562802402,16.2519307483003,17.0958242791595,19.0075672009765,19.2888989652554 -"Tfru22682_t",24.3295927146899,44.8929265779507,21.3048793707307,31.957913954626,30.191721820935,28.051743982171 -"Tfru22683_t",1.81799220803816,3.14894499509837,1.56556788540005,1.68255164585859,1.32508144543634,1.61013254670466 -"Tfru22684_t",0,0,0.441132414435573,0,0,0 -"Tfru22685_t",44.6993987195019,46.1024983279384,52.5191932241721,44.8428436076658,48.0165764959162,42.3804275479251 -"Tfru22686_t",4.75456295105011,3.65869344339112,4.70348667889304,1.91031134699831,2.00660281327447,4.13983564780093 -"Tfru22687_t",25.4518909125342,21.3513831374963,24.884289546885,22.6649604059774,21.1184855366416,22.7518729425658 -"Tfru22688_t",81.3272259714783,58.2987901303226,49.8771125502353,6.31643578480263,8.56870191856843,11.0339259379951 -"Tfru22689_t",4.92927073500683,6.46154733594576,5.13046867139253,4.07166385176386,5.03379926897608,3.68427120951694 -"Tfru22690_t",0,0,0,0,0,0 -"Tfru22691_t",0,0,0,0,0,0 -"Tfru22692_t",0,0,0,0,0,0 -"Tfru22693_t",0.92319095353239,1.03743853872284,1.9080188826576,0,0.159810646853448,0.40526413072337 -"Tfru22694_t",0,0.511635091175907,0,0,0,0 -"Tfru22695_t",0,0,0,0,0,0 -"Tfru22696_t",0,0,0,0,0,0 -"Tfru22697_t",0,0,0,0,0,0 -"Tfru22698_t",0,0,0,0,0,0 -"Tfru22699_t",0,0,0,0,0,0 -"Tfru22700_t",0,0,0,0,0,0 -"Tfru22701_t",3.90987053189497,4.63982462782708,3.62733071419562,7.76019250973942,6.41235136107181,6.54161445213479 -"Tfru22702_t",15.7904320737956,14.9342265037615,16.363010103629,15.0139363680649,13.2103162190873,10.5874370067425 -"Tfru22703_t",4.46072797016535,5.072431793313,5.20184904633098,4.57564708648092,3.82873782030087,4.22912247920431 -"Tfru22704_t",5.10105043451105,5.38586144694272,6.72433324498802,5.15467219339801,4.6189083733262,5.56946361808373 -"Tfru22705_t",2.70833204718863,3.01005106089454,3.49842891845,3.12469494233261,3.33591102266312,2.28636304375863 -"Tfru22706_t",0,0,0,0,0,0 -"Tfru22707_t",0,0,0,0,0,0 -"Tfru22708_t",0,0,0,0.168571956987943,0,0 -"Tfru22709_t",46.8549016446741,70.3582324795416,46.4037884946888,58.4457098679538,49.7936588154158,46.8591292995231 -"Tfru22710_t",1.41476977722566,2.10898692515028,2.08856918590828,2.29964863376134,1.57439759149528,2.46451723441771 -"Tfru22711_t",8.85290468722168,8.14235516121658,7.38545728317382,6.39102364042598,7.42303789418625,6.88192766442429 -"Tfru22712_t",5.93712910045565,4.71796254182436,4.70374973074482,4.36029534398389,4.72768457758682,5.12570816926683 -"Tfru22713_t",0.237989735896452,0,0,0,0,0 -"Tfru22714_t",14.955950245821,13.7868223052806,10.7663304708142,7.49336344546822,12.6414889287759,18.2087033978003 -"Tfru22715_t",15.2860986305942,14.3993349058824,18.9295557568925,22.2147420310352,20.5566958373594,29.3923143229896 -"Tfru22716_t",26.2232390350875,26.8289016389003,21.9104168358514,21.7247109568212,15.2179688466196,17.4736384363559 -"Tfru22717_t",1.19974965166796,1.81405310739812,1.36954693129981,1.87592987338874,2.24589422836389,1.67390730845665 -"Tfru22718_t",0.0528699665018549,0,0.0910581698771981,0.929691847113807,1.6473872847448,1.00572155788913 -"Tfru22719_t",0,0,0,0,0,0 -"Tfru22720_t",11.8376396328368,13.4472469780335,12.5220522517986,15.2528443577876,24.1079542352301,21.966791249505 -"Tfru22721_t",13.9111620009641,15.6152618344634,15.6296695557069,9.8927532429509,9.97110931143832,10.2574291301458 -"Tfru22722_t",70.6996417505168,45.5601159946686,67.8911210805163,51.661329462485,38.8955185574385,31.4133881007232 -"Tfru22723_t",7.98690201700381,7.53878093059599,6.7505685673838,11.7038055506818,9.60129986597523,11.3623790172001 -"Tfru22724_t",2.48551410566413,2.09482781857497,1.60530434838981,9.51259533020571,13.2842600196929,10.1835602079206 -"Tfru22725_t",93.6673170435674,109.443895873307,92.6835229576833,3.77821060118629,5.3268629250466,11.531562742888 -"Tfru22726_t",18.5107609835393,22.2873448784949,21.4584750750863,8.10073967881467,4.92975215717417,6.97993052265645 -"Tfru22727_t",33.8536864811674,36.2538546774481,33.7374576442192,21.4235763494989,22.390104537621,23.9166024868975 -"Tfru22728_t",16.7909555161993,15.7984518702929,16.9014147825971,12.4223363776926,11.6457646095521,7.93228766786476 -"Tfru22729_t",0.686199110151846,0.629484294207557,1.0130088583538,5.37414086679823,6.95745068156612,8.60654279949279 -"Tfru22730_t",0,0,0,0,0,0.154434823684366 -"Tfru22731_t",2.46869317315918,2.79221547933195,2.41581865429988,3.83035865489812,2.68711000820146,3.39344052469761 -"Tfru22732_t",31.4709718626582,29.9117271470323,36.172857983717,38.5460388763661,40.8018123290881,35.5495408713689 -"Tfru22733_t",14.8815172756909,13.7030651906172,11.8480617727415,6.62197071945886,5.2007896671525,5.09469747223986 -"Tfru22734_t",0,0,0.0320823574134962,0,0,0 -"Tfru22735_t",9.49682520025058,9.79596696921924,8.62227714599084,12.8459160440334,12.0135916699831,10.8467752634784 -"Tfru22736_t",117.827211978182,125.477534651857,129.855981318761,61.8191775075114,51.1758195455511,42.6365225124747 -"Tfru22737_t",178.094990590566,238.23223670234,166.79497184984,179.415756807115,236.642239955656,286.302838628185 -"Tfru22738_t",6.67337503038859,5.35658910108439,7.08770915479714,4.75527653776844,5.19843017633172,5.80473204009039 -"Tfru22739_t",5.32433775706768,6.03882134480459,5.61650301061499,5.6816241174667,5.67747882235928,6.83934002746172 -"Tfru22740_t",7.89210738766012,6.3940461297931,5.33541715650961,2.36511339652838,3.19200370141875,4.74883693127413 -"Tfru22741_t",151.191965827152,145.37334308908,153.77777781949,346.351989626395,230.857785538447,66.5464320218811 -"Tfru22742_t",9.14153475789151,10.7041484172827,7.25150117146276,17.8949257179432,15.0305528427103,21.1196246907327 -"Tfru22743_t",2.87359437648814,2.84930302888667,2.18347231290042,5.9010784289152,7.97365093631466,11.285083921845 -"Tfru22744_t",28.1111645350613,31.3825157963659,33.390330446508,38.7702533998655,43.907975222985,50.1176641661234 -"Tfru22745_t",45.1271956306086,44.1962836935642,48.6378293159437,28.4769859839413,30.215550172815,41.3227935994904 -"Tfru22746_t",8.72118234552477,7.08893613844779,9.50666438468251,12.1041753557059,12.5171006645201,13.6499278720865 -"Tfru22747_t",5.21748655738463,4.75583666961891,4.64535649896154,67.4152083165355,60.467302117339,34.2910333768212 -"Tfru22748_t",9.97121797969431,10.8555983519839,9.77111307063568,4.86064474340883,5.50561849886317,6.75025554709878 -"Tfru22749_t",0.596737481691319,0.580817147472881,0,0,0.255679549508932,0.368207212126265 -"Tfru22750_t",10.8177745431727,3.14073858983216,20.2171589826802,17.6178477896413,9.36315255605752,5.38871757381942 -"Tfru22751_t",1.1188411498224,1.09330523478608,0.754037572329942,1.15730944298063,1.05260342093687,0.676222430052795 -"Tfru22752_t",0,0,0,0,0,0 -"Tfru22753_t",0,0,0,0,0,0 -"Tfru22754_t",0,0,0,0,0,0 -"Tfru22755_t",0,0,0,0,0,0 -"Tfru22756_t",10.7971082822459,12.9999450692954,11.909021906611,9.25595079498366,8.76918721092404,8.81937038001722 -"Tfru22757_t",8.79418968666629,8.88594216356816,10.2460065717425,7.91935276258505,6.89527834053025,8.70502694585399 -"Tfru22758_t",40.2012845900178,37.9778881015901,45.0940168238729,45.5285967046019,42.1115760960081,34.9936046128089 -"Tfru22759_t",0,0,0,0,0,0 -"Tfru22760_t",1.18324474325982,1.1997065384786,1.5016160467666,8.05215380163868,7.81579497861843,6.42444287288307 -"Tfru22761_t",0,0,0,0,0,0 -"Tfru22762_t",0,0,0,0,0,0 -"Tfru22763_t",11.7268489314835,12.6534265706928,12.5818636465102,14.3174296466007,11.6475265498452,11.9554464193183 -"Tfru22764_t",0,0,0,0,0,0 -"Tfru22765_t",0,0,0,0.117908879005814,0.0986619325893067,0 -"Tfru22766_t",53.6325597343904,60.3706441423877,54.6652168033229,39.8737837012977,44.4261642343845,34.9477148140003 -"Tfru22767_t",30.5910925596892,36.2778527381898,30.0260215056695,31.3026375572051,24.8832811018837,24.6919151847547 -"Tfru22768_t",32.1720410445279,32.7048451703022,29.4420140611766,27.3319292710067,39.0193138178735,39.8452968862472 -"Tfru22769_t",1.48690932338845,2.30177577175548,2.46944921759888,2.08733000343667,2.94164730491303,3.80757007774021 -"Tfru22770_t",0,0,0,0,0,0 -"Tfru22771_t",3.6964702319203,3.76783948380289,2.18682101085804,1.77824626657135,2.85790327354492,2.46063178009023 -"Tfru22772_t",6.49891593892329,6.10718536002879,7.91707835115314,4.42692223271073,3.70429018225399,4.29095700674712 -"Tfru22773_t",21.0493012222011,23.2443141830229,26.9754596972715,18.6809968198017,16.2784143692605,14.7169861556116 -"Tfru22774_t",0.302922031627815,0.162099771675444,0.130430978306672,0,0.0873964474979796,0.147752547659562 -"Tfru22775_t",2.58391537388521,1.86133491766125,1.93986935559365,2.94688508247101,2.63788394214722,1.84201283391353 -"Tfru22776_t",4.72410740982835,3.34955554442379,2.71211681227494,1.46595987712383,1.97629005176312,1.4977427886465 -"Tfru22777_t",2.56494806161834,3.23531090684185,2.5530407300165,3.03215632704245,2.33537723623467,2.65649941359047 -"Tfru22778_t",0,0.0199330490738943,0,0.102747672275832,0.150457259896019,0.036337605572792 -"Tfru22779_t",0.481434823905143,1.08202758766508,1.07793043848326,8.06739982809175,6.29214354846199,4.6495059582131 -"Tfru22780_t",9.00386022802383,8.58618979910918,9.60927830407137,8.72968537990126,6.43878316101146,7.18812760717638 -"Tfru22781_t",0,0,0,0,0,0 -"Tfru22782_t",6.77441306995271,6.8508754527506,7.15217328698549,8.98680526140939,10.5343974912189,10.7528851814711 -"Tfru22783_t",0,0,0.291716596642879,0,0,0 -"Tfru22784_t",4.25859052758489,5.90431610747791,6.6678079232658,8.00911003016448,7.70699732406147,6.37310528153686 -"Tfru22785_t",23.8444030654268,23.870539133575,24.5876556317566,17.3401793149661,20.1743650067682,21.3377565319817 -"Tfru22786_t",21.3704994986013,23.573479667019,23.6928087326707,28.3265081173479,28.6314223248827,32.5816311037006 -"Tfru22787_t",7.90820736320583,8.04970216778465,7.94519800188053,7.05386249348354,7.58882549843302,7.4210883964999 -"Tfru22788_t",33.9014073070963,39.2557303847821,32.0588429645074,29.503145798143,31.3030955742721,28.1175463232714 -"Tfru22789_t",0.392571854072184,0,0,0.4060693636789,0,0 -"Tfru22790_t",16.6472175169228,13.0516461323196,16.6695198081645,12.4141205467549,22.4508182918312,17.9863193501151 -"Tfru22791_t",7.81232331318674,7.45777388597006,7.08800604795516,4.3867898577706,4.61253545825272,8.43077705356825 -"Tfru22792_t",9.52694994315383,8.58765072987675,8.64287813558792,5.79676944875762,6.26159241552535,7.38028007618119 -"Tfru22793_t",0,0,0,0.168844903809491,0.141283376266164,0.0796179531429763 -"Tfru22794_t",0,0.157554918263983,0,0,0,0 -"Tfru22795_t",0,0,0,0,0,0 -"Tfru22796_t",0,0,0,0,0,0 -"Tfru22797_t",0,0,0,0,0,0 -"Tfru22798_t",121.610929034883,112.791591511785,153.110178933636,200.578533386507,168.952755916094,95.3415825695603 -"Tfru22799_t",0,0,0,0,0,0 -"Tfru22800_t",30.0037059897563,33.2350846154625,25.837755702615,0,0,0.439036141616305 -"Tfru22801_t",0.167018641692738,0,0,0,0,0.488787752098431 -"Tfru22802_t",62.5429364294478,54.815163031915,73.9469289968942,45.8098532852084,46.3788504002156,38.0910229909946 -"Tfru22803_t",0,0,0,0,0,0 -"Tfru22804_t",0,0,0,0,0,0 -"Tfru22805_t",0,0,0,0,0,0 -"Tfru22806_t",0.290024315666677,1.08638558140136,1.41527867830423,48.4993547252394,46.5234723141374,31.8288572173417 -"Tfru22807_t",0,0,0,0,0,0 -"Tfru22808_t",6.70187534276656,8.04202960718269,7.46192719083928,7.14237072553024,8.84753464308314,12.3821635427836 -"Tfru22809_t",11.5391684826152,8.99988024156642,11.5415344539486,11.9359112338644,13.0715159825149,13.8236593695122 -"Tfru22810_t",10.9235049352096,7.44133631068521,8.72604444089665,10.5557192673006,10.3876920454742,21.5574632410734 -"Tfru22811_t",0,0,0,0,0,0.117975162814545 -"Tfru22812_t",0.86608635846853,0.6542971984668,0.394852300610616,6.95612333850914,7.54036833137208,8.7594233227403 -"Tfru22813_t",0.398783434041681,1.17368442276397,0.801297486981072,2.74996341225584,7.47848082387775,17.7003811525328 -"Tfru22814_t",0,0,0,0,0,0 -"Tfru22815_t",62.2123579798229,58.0330244626427,62.7268254479927,95.861818855401,65.3311332916404,37.0969619741796 -"Tfru22816_t",0,0.08223598172803,0.0441132414435573,3.49714859304926,4.38943328506926,4.34752862186574 -"Tfru22817_t",3.08294960629165,6.2638920944676,2.65488865935537,30.7932829617327,55.4526450363328,94.5110129347947 -"Tfru22818_t",0,0,0,0,0,0 -"Tfru22819_t",0,0,0,0,0,0 -"Tfru22820_t",2.31846819012111,2.51780944056923,3.11227511872889,1.69283462001204,2.00671323605751,2.3448521199998 -"Tfru22821_t",1.72034901238459,1.84118785029309,2.22222335736145,2.07608159314332,2.97804140552843,2.51734033418612 -"Tfru22822_t",24.1858832364878,14.9027475101041,25.2383022680633,21.2648313853389,16.8701044396439,14.8328044458236 -"Tfru22823_t",1.03080216897482,0.620553727150165,1.77535499306586,0.533121741271685,0,0.754172513207089 -"Tfru22824_t",12.0548816501855,12.3015515270139,11.9100844974196,11.1160923694524,6.79417455254594,5.53800872740444 -"Tfru22825_t",6.86920496904721,5.67919134648357,7.15767099923099,7.38959914802747,7.66973500986358,6.43297437267077 -"Tfru22826_t",1.5321041356495,1.22979036505139,2.19895793214085,0.528260448798083,1.32608834623074,0.560471670149341 -"Tfru22827_t",6.38053494466689,3.5850724186245,5.67776505060874,0.87998829192187,0.368171363637059,2.02290070314661 -"Tfru22828_t",79.4428223062037,69.3975876873822,86.1124735690038,169.748032796599,129.755384327253,76.025714775539 -"Tfru22829_t",0.130450895607838,0.523552057585284,0.112338068272413,1.88910530059314,2.25819392292916,0.95442639481953 -"Tfru22830_t",2.93059453853886,3.72452498640322,3.78553164945875,6.06271003446172,5.91856872358411,4.10958248839153 -"Tfru22831_t",65.0217299669422,73.2399124939852,64.5589950707434,49.5714539640968,44.9658998132854,45.3470206546857 -"Tfru22832_t",5.60774555275405,5.28682076487064,3.94074586346538,2.29833214152768,1.9460569165797,2.26429848856618 -"Tfru22833_t",0,0,0,0.345522241857991,0,0 -"Tfru22834_t",0,0,0,0,0,0 -"Tfru22835_t",0,0,0.298332849350243,0.17917287387069,0.14992545220272,0 -"Tfru22836_t",432.653440372954,469.275891731834,390.338022060655,199.472346058085,250.697504161114,375.914718165415 -"Tfru22837_t",59.8153882612706,35.7397576590018,77.2652246532194,47.0991733543883,34.0300791409733,22.619142016107 -"Tfru22838_t",2.39125392233505,2.1875666131504,2.61946606579449,0.436494820396574,0.700049568573185,1.24782561807422 -"Tfru22839_t",1.86424164670637,1.70742018392934,1.62597768461658,1.73056019001705,1.30326378152321,1.90602888224045 -"Tfru22840_t",3.63732078200401,2.35452182321874,2.32395456319969,2.67007620698361,3.45289204863526,5.32239344865282 -"Tfru22841_t",5.27419405740029,2.57033539302408,2.91978225877536,6.42973508139102,5.5432078628315,5.78818949037638 -"Tfru22842_t",4.04308883099385,4.02073709641305,3.29684480771526,3.47891453141599,3.09684175120609,3.87428826844289 -"Tfru22843_t",4.26778280672179,5.43638417033669,5.23317989604298,6.33387486758784,6.6249499240876,6.72008936809651 -"Tfru22844_t",0,0,0,0,0,0 -"Tfru22845_t",20.2783667272749,17.4396995048784,14.9680791069015,16.4808151439085,16.9247740421165,15.8961360995756 -"Tfru22846_t",500.732250002673,274.876514849501,632.315895784301,197.684573635529,192.32670843178,223.641719187316 -"Tfru22847_t",2.45791800006485,1.92233547685327,2.46941491111646,1.20602296384454,1.36372551234657,0.945261610233115 -"Tfru22848_t",4.8878764667024,4.75335475923919,4.57346344297624,3.86487165553518,3.86451200572884,5.03755595220382 -"Tfru22849_t",1.07903236220208,0.866118413062187,0.398233298903306,0.956684519199464,0.800519386990669,0.338339778860795 -"Tfru22850_t",0,0,0,0,0,0.121352536675968 -"Tfru22851_t",0,0.0890015464368472,0,0.0382309035755762,0.03199025266974,0.135206906789216 -"Tfru22852_t",0,0,0,0,0,0 -"Tfru22853_t",0,0,0,0,0,0 -"Tfru22854_t",51.2493241840927,45.6553691554682,51.6293151201352,47.7944620778257,58.56718199958,49.9247988419862 -"Tfru22855_t",0,0,0,0,0,0 -"Tfru22856_t",0,0,0,0,0,0 -"Tfru22857_t",0,0,0,0,0,0 -"Tfru22858_t",19.8351412410297,19.8181021899118,21.4210210184257,19.4171329630586,18.8887916996404,18.1316852322171 -"Tfru22859_t",0.922730049411804,0.538660050060785,0.469542839529027,0.303690417768843,0.399327153021223,0.981968005214222 -"Tfru22860_t",0,0,0,0,0,0 -"Tfru22861_t",17.4941516846721,19.2887600162999,27.6469898548317,6.95986163376422,7.48769563918617,7.87652940566854 -"Tfru22862_t",0,0,0,0,0,0 -"Tfru22863_t",0.0190413365302465,0,0.0163974877532715,0.0590880624392235,0.065923702917787,0.0417940116679812 -"Tfru22864_t",0,0,0,0,0,0 -"Tfru22865_t",6.48434236147381,5.89373426368651,7.22635982421587,20.3191394193197,8.33609338950082,3.55813626690722 -"Tfru22866_t",0,0,0,0,0,0 -"Tfru22867_t",22.1747426336346,17.2439749791832,24.3248404556559,5.36658001678107,5.3886746475607,7.31057436178326 -"Tfru22868_t",9.31014605680969,7.38515569938293,8.11177519321945,8.95046761715187,8.81667212725381,7.61301262517064 -"Tfru22869_t",10.3482980658869,8.48501056505104,8.62399263187954,14.5023236056131,11.8460964915937,7.97824617613909 -"Tfru22870_t",0,0,0,0,0,0 -"Tfru22871_t",16.3095525702493,15.8087771177404,16.7134113065359,14.2270974136907,16.2083127227614,13.4424736272048 -"Tfru22872_t",1.12107258410605,0.899863286298377,0.905075679325695,3.04399619745284,2.91097958905698,1.89675330573476 -"Tfru22873_t",0,0,0,0,0,0 -"Tfru22874_t",0,0,0,0,0,0 -"Tfru22875_t",2.11790865473342,5.10001297636201,14.5907326088688,2.19072715182352,0.611040707584934,1.03302621392548 -"Tfru22876_t",0,0,0,0.638962086965328,0.80199092998146,0.451948969311601 -"Tfru22877_t",7.11269963080945,8.83314282970086,7.51193536403068,7.0796182670791,8.130941057959,6.67671576388767 -"Tfru22878_t",56.6398876908044,55.0820835992205,53.1174313650216,70.7788712389029,70.673549388109,58.4948075198809 -"Tfru22879_t",100.081283223515,85.9714658593634,106.204895217379,80.7129403126404,74.6103362040709,59.6820825789917 -"Tfru22880_t",6.0634530589451,5.35151591088414,4.70176272943153,4.34210421475328,5.15313658297689,5.70087426214607 -"Tfru22881_t",307.76878413386,311.717860931878,298.426078365665,154.579674115843,110.643902532442,81.8549114033973 -"Tfru22882_t",5.42002430783532,4.76097783443105,6.29667521810289,7.98644273762628,7.16959390113675,7.36982153730761 -"Tfru22883_t",29.8193828813329,22.5545511660904,28.3950762329519,30.2514746429455,34.991986514959,33.7743161503304 -"Tfru22884_t",0,0,0,0,0,0 -"Tfru22885_t",22.2027424324196,22.156723076975,17.5696738777782,44.6908339682487,30.1243069318285,46.9768671529446 -"Tfru22886_t",0.677503038479415,0,0,0.51916487640826,0.303096475930798,0.252213140035438 -"Tfru22887_t",2670.59073488365,2115.98799593668,5215.1824814785,5710.42418943753,3119.42481135503,3158.76959629472 -"Tfru22888_t",147.186180067551,144.037966681025,346.101905103494,6842.06736591046,4498.9509745619,5323.36590014 -"Tfru22889_t",227.956795778187,140.787510729984,475.374829942921,868.627577261297,339.029430342066,290.739257013357 -"Tfru22890_t",11309.4058208761,8171.76935741458,15703.3707754702,3035.45983649695,2229.99918989589,2858.60440822811 -"Tfru22891_t",139.762714590062,51.4946754053032,306.482753508054,160.367862744686,32.3907117437435,26.2623431559046 -"Tfru22892_t",106.486423421096,62.8192225345435,298.109934831512,395.651434219236,135.612202159838,72.0361532664625 -"Tfru22893_t",0,0,0,0,0,0 -"Tfru22894_t",4.30413695033981,6.26990843611432,3.29468156208428,1.48404097617754,0.827861605142152,0.116631992080413 -"Tfru22895_t",0,0,0,0,0,0 -"Tfru22896_t",32.8286703076118,35.791629585938,33.6129326494847,31.6846553647176,36.5806570647544,38.8648301363711 -"Tfru22897_t",3.9920453587277,3.84520514352394,4.27809936027064,3.11991625145478,3.91595148915974,3.63468146808569 -"Tfru22898_t",24.3469563254832,20.9234078351153,22.4475788397588,23.64217862089,23.3557661914164,22.5390528753687 -"Tfru22899_t",62.0628182535076,76.4376885606168,96.6009560087652,102.159743831786,81.57881227585,63.2492415339649 -"Tfru22900_t",3.91411982685153,4.36785202950923,3.78170788011586,9.47987387206741,9.66763611959469,10.05791888068 -"Tfru22901_t",3.74446250752737,5.70294785286498,6.28374218688569,7.34915936367893,31.744786890969,79.6587175349855 -"Tfru22902_t",22.9952067280625,20.8845315428829,21.3013558464636,7.7706708765947,13.6388017696302,16.8241330604371 -"Tfru22903_t",17.128329244664,20.295520927442,17.2084470019624,6.32758571557898,12.0013141107905,10.7414667657748 -"Tfru22904_t",1.45570541190417,1.3242621316389,1.08643932334614,1.6396008269299,1.59595268623188,1.30172440910696 -"Tfru22905_t",0,0,0,0,0.771499674464924,0.326074587938343 -"Tfru22906_t",0,0.0842918812712307,0,0,0,0 -"Tfru22907_t",14.7422055392203,13.9405803640882,15.6517173968006,15.6668588630922,16.9549108146081,12.2634614557436 -"Tfru22908_t",0,0,0,0.765628579976076,0,0 -"Tfru22909_t",0.168020753542895,0,0,2.08557225185483,1.1634215090931,0.245860239305511 -"Tfru22910_t",0,0,0,0.293577175092178,0.491309758907561,0.622956687429504 -"Tfru22911_t",0.798409071745541,1.28173504784131,0.458367788600426,1.92700709648678,2.14993415091123,1.29810052431632 -"Tfru22912_t",0,0,0,0,0,0 -"Tfru22913_t",0,0,0.109781056096258,0,0.331019018141058,0.0932701970051255 -"Tfru22914_t",0.265855622694454,0.106698583887634,0.114471069568725,0,0,0.0972548414974331 -"Tfru22915_t",0,0,0,0,0,0 -"Tfru22916_t",0,0,0,0,0,0 -"Tfru22917_t",0.265016961424124,0.212723990589857,0,0,0,0 -"Tfru22918_t",600.097602950029,718.052194088817,576.026008318219,754.927005918751,657.844584806136,593.696892026344 -"Tfru22919_t",0,0,0,0.623240080411951,1.25086144861052e-05,0 -"Tfru22920_t",0,0,0,0,0,0 -"Tfru22921_t",0.688609645233117,0,0,0.712285604692254,0.596015116987209,0 -"Tfru22922_t",53.7666411205667,55.0257400803916,43.4074295698362,56.3104507862982,34.3209345098464,40.8127997147257 -"Tfru22923_t",3.3130852811275,4.79997969816172,2.95496586345857,4.03896034690196,8.09069535372846,7.09878155741264 -"Tfru22924_t",1.72624061859109,2.77123993220436,2.97311161509951,1.1903951209215,1.49412008873232,3.36794848363655 -"Tfru22925_t",0,0.227815895327651,0,0,0,0 -"Tfru22926_t",4.21539670931112,6.05070411014265,4.05716825083012,3.23177518365935,2.66130953231156,2.64873044116031 -"Tfru22927_t",0,0.0368690568709593,0,0.0950233393409345,0.0397560657836627,0.134423312906239 -"Tfru22928_t",0,0,0,0,0,0 -"Tfru22929_t",0,0,0.695631802872826,0,0,0 -"Tfru22930_t",0,0.8223598172803,0,1.58961299684057,1.77350839800778,0.37478695016084 -"Tfru22931_t",0,0.134062634228598,0,2.93693905579292,8.96274025394788,13.5638601207315 -"Tfru22932_t",0,1.74021948430927,0.933493109257207,3.92446391478058,1.40736472874165,1.58619509229361 -"Tfru22933_t",0,0,0,0,0,0 -"Tfru22934_t",7.86749491831639,6.82319641721911,7.39810873725104,4.67700989382587,4.69626551033277,5.82230921929089 -"Tfru22935_t",0,0,0,0,0,0 -"Tfru22936_t",0,0,0,0,0,0 -"Tfru22937_t",0,0,0.271976375817421,0,0.273360316986162,0 -"Tfru22938_t",40.5426595593382,36.2011447985917,40.244135117107,36.3075331294566,24.846350042373,15.6773229516672 -"Tfru22939_t",0.771660809002912,0.673257837629638,0.635625300033365,0.624672200036391,1.21964115869385,2.3319411675343 -"Tfru22940_t",0,0,0,0,0,0 -"Tfru22941_t",4.95798944880673,4.58768927574567,4.44748253898159,1.9943996943967,2.02645139903512,1.56181709394894 -"Tfru22942_t",0,1.26043928087466,0.676128151616823,0,0,0 -"Tfru22943_t",6.70195140536266,5.60683075422119,5.60882517050892,3.41737026287074,2.36932751149579,0.897804244654955 -"Tfru22944_t",103.189594619591,104.511091376806,121.429143842445,98.9137965107999,118.773739272367,109.293177118929 -"Tfru22945_t",9.8991711713857,12.8765714472201,9.51416569797921,16.3192463158025,17.7098947498063,21.7277854830751 -"Tfru22946_t",0,0,0,0.648498834523854,0,0 -"Tfru22947_t",6.27389015718491,5.75534893459328,6.8435136725951,11.7430870036871,8.48155794324632,9.13669808229939 -"Tfru22948_t",0,0,0,0,0,0 -"Tfru22949_t",0,0,0,0,0,0 -"Tfru22950_t",0,0,0,0,0,0 -"Tfru22951_t",0,0,0,0,0,0 -"Tfru22952_t",0.182235090610515,0,0,0,0,0 -"Tfru22953_t",0,0,0,0,0,0 -"Tfru22954_t",269.325968764064,220.291836837256,301.085847335056,301.770685901076,213.099047328064,138.812897717135 -"Tfru22955_t",0.274993049988371,0.220731603983583,0.236810854230553,0.142223966984099,0,0 -"Tfru22956_t",2.28289067313716,2.19891864185819,1.96591619476723,0.472276325148286,1.97591968256302,1.83727081002759 -"Tfru22957_t",5.15193447524096,5.19183655457536,4.40421547518846,4.59000159875541,4.59790521286269,6.10798714478776 -"Tfru22958_t",19.5845846486304,27.4888173317644,20.7360332390734,11.0699164111191,14.4501397626214,19.0267637424328 -"Tfru22959_t",0,0.566668108484667,0,0,0,0.516513106962742 -"Tfru22960_t",15.530454266682,18.8244896139225,13.5536018747922,6.25326667739765,8.02919620884664,13.5741695398204 -"Tfru22961_t",0.334702696300587,0.335824228172234,0.504402402163384,1.64450003258806,1.01393806818373,1.40806411952857 -"Tfru22962_t",12.7610698893338,16.3462230515855,11.7218375238374,9.84486901587592,8.60600562501624,8.09160281258643 -"Tfru22963_t",6.27835555943202,6.95932969926176,4.11932902305673,3.71098265454596,3.36398568020693,3.28105301564294 -"Tfru22964_t",5.68357728686325,7.98367078425188,4.58852321146515,5.51155457678338,4.91932984817381,4.28825998788682 -"Tfru22965_t",0,0,0,0,0,0 -"Tfru22966_t",0,1.32743120112174,0,0,0,0.483976849026596 -"Tfru22967_t",16.2206247927293,14.7979594915053,16.9091470168323,11.8379089641124,12.401894348167,14.2700713560823 -"Tfru22968_t",0,0,0,0,0,0 -"Tfru22969_t",7.48167883700437,7.88844775670386,8.40848321432817,9.24734866388463,9.54883691425473,10.0199644698095 -"Tfru22970_t",120.389870284083,129.620270485454,119.45348127531,189.537019062062,98.6830744320044,49.7443628314243 -"Tfru22971_t",0,0,0,0,0,0.232822196312037 -"Tfru22972_t",44.0959443687236,35.7000908913448,37.3186046166854,40.5003661276485,53.3015510387678,53.3995089894322 -"Tfru22973_t",0,0,0,0,0,0 -"Tfru22974_t",0,0,0,0,0,0 -"Tfru22975_t",0,0,0,0,0,0 -"Tfru22976_t",8.81334516116976,7.68717442286581,7.1387618975915,5.28027251508299,4.83374296169558,8.82632513217005 -"Tfru22977_t",17.5427700914855,16.4281160714232,15.4427050324917,12.9037726332859,13.4967692470198,16.4001899768757 -"Tfru22978_t",0,0,0,0,0,0 -"Tfru22979_t",4.96726875376038,4.96073223569429,5.54592459977235,5.49652363843945,4.57429821596851,5.0710259052357 -"Tfru22980_t",53.9584935552562,55.4627043939873,49.2415533301981,32.32543967527,22.1838847072838,15.5718795635069 -"Tfru22981_t",1.12322171066819,1.1402440879789,1.13795856810749,0.956809920237503,1.08656157455608,1.32936621724372 -"Tfru22982_t",5.23590781674939,5.11146725283151,6.33685103364385,5.31834586028862,6.20578570263026,7.86863202718367 -"Tfru22983_t",0,0,0,0,0,0.0335507968484594 -"Tfru22984_t",0,0,0,0,0.0357140689186243,0 -"Tfru22985_t",31.2038542293948,30.1524101004517,28.2665047387045,9.12437860186489,10.9590151079752,14.5320962875222 -"Tfru22986_t",0,0,0,0.632912191021738,0.264799141727309,0.0895339545904992 -"Tfru22987_t",11.3196793173473,2.75038330732057,15.0698286720219,0,0,0 -"Tfru22988_t",21.6143202373142,20.9502151509078,29.500194860507,23.6229866714949,36.3569221591595,28.3455372985723 -"Tfru22989_t",1.24275705283206,1.59605929034283,0.214040579785307,0.514194342173282,1.07564858459052,0.363698578854306 -"Tfru22990_t",8.24198188635543,9.40122875451936,6.97308105710206,7.77752130640069,10.5128449616847,13.5413556932467 -"Tfru22991_t",0,0,0,0,0,0 -"Tfru22992_t",6.53455769254888,8.59121543578033,6.79150663976804,4.85576910076468,4.25816432977192,3.04989791717833 -"Tfru22993_t",0,0,0,0,0,0 -"Tfru22994_t",0,0,0,0,0,0 -"Tfru22995_t",0.324051597961224,0.19508246388713,0.13952886396805,15.6702833131169,23.4900075666701,20.6965745684063 -"Tfru22996_t",0.594062770334337,0.278158241083614,0.383683820687628,64.9821053723183,117.704732081569,129.377250265068 -"Tfru22997_t",0,0,0,0,0,0 -"Tfru22998_t",0,0,0,0,0,0 -"Tfru22999_t",0,0,0,0,0,0 -"Tfru23000_t",0,0,0,0,0,0 -"Tfru23001_t",8.76935039367927,6.47586895778975,5.89036100778689,12.6992047346763,16.2429673111903,23.9957540449533 -"Tfru23002_t",1.37042723868446,1.45816000985134,1.12525582498664,0.230763242333457,0.331019018141058,0.466350985025627 -"Tfru23003_t",0,0,0,0,0,0 -"Tfru23004_t",0,0,0.069363102557463,0,0.209148161989412,0.235724102881602 -"Tfru23005_t",0,0.0388218221168593,0,0.900506153650618,0.96282004566571,1.06157270857302 -"Tfru23006_t",2.3499406089903,5.18719269361148,5.05914097674097,1.21536844513621,0.50848842180616,1.71930237276491 -"Tfru23007_t",6.14592042049183,4.62245800519652,4.00068475395948,2.25256219598376,2.09429275110366,1.98274386536702 -"Tfru23008_t",110.899511205215,108.616943202098,97.879498073587,32.0232763584976,32.0796371992584,27.6486428284744 -"Tfru23009_t",0,0,0,0,0,0 -"Tfru23010_t",0,0,0,0,0,0 -"Tfru23011_t",182.068390314514,175.769299962304,199.247217746375,143.311863754505,144.474064448857,117.488950422224 -"Tfru23012_t",0,0,0,0,0,0 -"Tfru23013_t",85.2685967000521,76.2899791782014,90.9322305535373,92.7307842370312,92.1069951935389,80.1433082946483 -"Tfru23014_t",0,0,0,0,0,0 -"Tfru23015_t",7.80096355733663,3.37167525084402,4.65079602647071,3.10353013668394,3.11630761363743,8.7807228323261 -"Tfru23016_t",0,0,0,0,0,0 -"Tfru23017_t",27.3754130112764,23.5750380336424,29.4918551898906,24.5334466741938,31.4645658791671,45.2473659407899 -"Tfru23018_t",0,0.566668108484667,0,0,0,0 -"Tfru23019_t",0,0,0,0,0,0 -"Tfru23020_t",7.50886133388432,5.71461016326329,6.31371471711832,3.94341014499892,3.53990281137801,4.41167169134348 -"Tfru23021_t",90.8345635281186,85.5682252147699,91.6302995612767,168.383642968169,73.4593332584911,29.229835232891 -"Tfru23022_t",42.1248599545995,33.2355210480232,35.1853351415918,27.7621593176259,26.9107853098571,27.131151023777 -"Tfru23023_t",2.73522156930294,3.24758328512554,3.70140872391522,1.61672267585646,2.0292235623717,3.71649198950191 -"Tfru23024_t",0.71650641169678,0.597868936722538,0.231382886889447,5.1455257105998,4.53459033473193,4.25146883434304 -"Tfru23025_t",0,0.202503018069023,0,0,0,0 -"Tfru23026_t",0,0,0,0,0,0 -"Tfru23027_t",0,0.0775989701000974,0,0,0,0.070730793816315 -"Tfru23028_t",37.3905338870104,45.1709506846167,31.0169520288548,41.4666595615268,34.1242998969914,31.8233182988401 -"Tfru23029_t",10.5998083262286,10.5009022821946,11.5712425632716,8.19262082987064,7.81025813738042,6.89031392988005 -"Tfru23030_t",15.4735631135887,14.5902710824367,13.0590336208454,15.5528424134644,14.1505642482785,15.333300244766 -"Tfru23031_t",200.262573817342,205.581063943672,201.003773012222,201.981096463418,203.205716284167,182.733961645988 -"Tfru23032_t",26.9891604116146,25.0619010771785,24.3810759323321,21.7589231000603,19.8102284520775,22.1661396854181 -"Tfru23033_t",0,0,0,0,0,0 -"Tfru23034_t",0,0,0,0,0,0 -"Tfru23035_t",62.2789859346693,71.4752608381919,82.3873926316834,80.8680092399021,111.249887994905,74.649993795443 -"Tfru23036_t",21.4827551100568,19.3564421682962,19.1125007466887,16.2613416476121,16.685395266947,17.3309609840676 -"Tfru23037_t",4.35902898342416,7.95206427087083,7.84882767571217,12.7069064087067,15.4345424260583,47.8383720346808 -"Tfru23038_t",6.38478863463001,4.85521236122289,4.0513600941763,3.12835837778225,3.34483683864268,4.30255418784644 -"Tfru23039_t",12.7342044790405,13.060805182237,13.4981875318186,11.82281638387,12.4187592006813,13.8134634451912 -"Tfru23040_t",0,0.20129404482682,0.431914722193635,0.77819860143837,0.43411250339295,0.366955581053001 -"Tfru23041_t",0,0,0.0717004122571198,0.258371190764969,0.288261028021086,0.152292021373582 -"Tfru23042_t",0,0,0,0,0,0.781335506267513 -"Tfru23043_t",6.22769812677901,4.43775713803151,6.51220892596417,5.65302614912744,7.64540420593521,7.48553300457399 -"Tfru23044_t",0.221663263249202,0.177924815348244,0.190885794109324,0.458569096713903,0.863356990586902,1.29741551084702 -"Tfru23045_t",0,0,0,0,0,0 -"Tfru23046_t",0.0550526715409223,0.17675885980861,0,3.81534897537881,3.5737472633512,2.94033379248072 -"Tfru23047_t",0.519040280141335,0.178552970036146,0.127706471257606,9.28045904951584,12.6430956140414,5.80473204009039 -"Tfru23048_t",4.98651362861464,4.22967469902366,4.17232712588442,4.18855719563212,3.78032404685851,4.29517993314195 -"Tfru23049_t",0,0,0,0,0,0 -"Tfru23050_t",22.9593576269794,33.08849003939,24.2650227468412,25.3679854651079,25.2917719368066,11.8348872957622 -"Tfru23051_t",21.5276590476834,25.2875643813692,23.2862773270178,25.2549764873046,23.8592301669484,10.7563854696161 -"Tfru23052_t",0,0,0.180413256776643,0,0,0.613117803754391 -"Tfru23053_t",0.0440536847254575,0,0.0379369249960325,0.136705050593526,0.0762599311151747,0.290081561844467 -"Tfru23054_t",48.0059295836842,47.9074296631654,45.6732020036162,21.8679508092837,22.1337745892026,26.1057644207637 -"Tfru23055_t",27.3708873060754,26.9499672526611,24.8275914918648,11.8532740928616,13.3929930455983,15.0592066646729 -"Tfru23056_t",25.7818901574171,26.6073746309188,16.7648736375473,10.5221982087318,7.74197507355798,16.1682620837653 -"Tfru23057_t",22.6770607002654,24.1163104502656,21.9179503956007,21.6752241437077,28.240798305862,22.2618326022644 -"Tfru23058_t",0,0,0,0,0,0 -"Tfru23059_t",0,0,0,0,0,0 -"Tfru23060_t",5.52148066967084,6.39552377032965,6.01877836667503,9.83214871922688,9.92102368403022,9.20441827682861 -"Tfru23061_t",0,0,0,0,0,0 -"Tfru23062_t",4.68229184216727,3.16822547753682,4.2987551173648,2.44165337331385,2.6459666979029,2.80287467655983 -"Tfru23063_t",21.8506799441176,21.6235704923822,22.4254535243471,19.505797486172,18.4807157768649,14.8917722144668 -"Tfru23064_t",0,0,0,0,0,0 -"Tfru23065_t",0.420051883857237,0,0,0,0,0 -"Tfru23066_t",0,0,0,0,0,0 -"Tfru23067_t",0,0,0.16708017544442,0,0,0 -"Tfru23068_t",29.8959841309164,34.4644312863997,29.2591438389939,28.079246263093,32.0186621760708,39.4622559392161 -"Tfru23069_t",1.42960601112573,1.38377062347166,1.55698988318301,1.82670242279577,1.56491256540927,1.69198112635174 -"Tfru23070_t",1.75631449696406,4.22927906029869,4.28528631165985,3.6334011356356,2.02686674058032,2.1416397152048 -"Tfru23071_t",26.5621044203841,32.3750824259744,20.0264957695319,26.4981336065033,20.6945110559922,19.0350271780651 -"Tfru23072_t",39.3379575442302,34.2941255122707,40.5791482355246,64.1341844962116,65.3684071255203,45.160726960407 -"Tfru23073_t",6.20210835225416,4.07316473256931,1.45662515370664,2.33285486784644,2.44006188987634,4.95020616051336 -"Tfru23074_t",12.9863368673421,11.4534006612817,12.9780482842343,5.47263711126029,7.35464455891395,15.3662649565944 -"Tfru23075_t",12.7111352680277,11.2584634463139,9.43639773488268,4.9872379935659,8.21982587946215,11.9723246966162 -"Tfru23076_t",4.84675193869287,3.24199505400669,1.39126360574565,1.67113141644349,1.39834299628013,5.91010121455652 -"Tfru23077_t",9.11175453052575,11.4095735169735,11.6129782680913,5.46652162904827,12.3029931818414,11.3330370612627 -"Tfru23078_t",0,0,0,0,0,0 -"Tfru23079_t",0,0,0,0,0,0 -"Tfru23080_t",28.4636927620075,25.9162901708765,28.810240871987,26.5859926753513,27.3021640487241,26.963812591344 -"Tfru23081_t",3.72787725768705,3.58006722356416,4.47144678721065,4.33805638757443,3.62993042159596,3.11708702764515 -"Tfru23082_t",0,0,0,0,0,0 -"Tfru23083_t",3.65775516841976,3.17278429504071,3.65792945902756,1.83073406939504,1.68508206636554,1.98552861798692 -"Tfru23084_t",7.73380724791303,11.4113557677659,5.74586913820775,5.05864208200348,5.80791987560581,7.71996460425744 -"Tfru23085_t",6.7113552871927,5.5138298275166,6.86740348938987,9.14724671866154,8.9525503812968,11.2069751939072 -"Tfru23086_t",5.6040882018552,6.0522490858179,6.58087167684359,12.7528927872668,13.8019607468974,12.7477564952221 -"Tfru23087_t",5.60610831453566,3.71732087617807,7.13661801612984,14.7072511313103,21.0968600536709,19.1409567351002 -"Tfru23088_t",0,0,0,0,0,0 -"Tfru23089_t",2.40029647918421,2.63064772319006,2.4645243900994,7.11424600564034,10.0281180900539,9.59125109378641 -"Tfru23090_t",10.0614978099932,10.1962158442211,9.37932329797134,6.31575484750986,5.36516011494673,5.23470764674641 -"Tfru23091_t",0.286724835397432,0.230148481286637,0,0,0,0.209778361182176 -"Tfru23092_t",30.3232720891023,28.9285746374638,44.0923594357733,13.8832472386786,18.716285371875,14.9116417330265 -"Tfru23093_t",77.6106943304092,75.185556147746,63.7283592178504,5.7772084538915,15.2074660554933,20.3464671724436 -"Tfru23094_t",36.7979336271629,34.9985464055094,38.8634011395306,56.8792432324045,56.0076883509697,45.9210033744177 -"Tfru23095_t",0,0,0,0,0,0 -"Tfru23096_t",0,0,0,0,0,0 -"Tfru23097_t",4.93271937006664,6.31029129516736,4.51331072090413,4.30508033639759,3.0686576501309,3.83451749375567 -"Tfru23098_t",9.3164834413852,7.73827106752282,6.48809217451432,6.62006621249324,5.18883749233906,6.22355957740565 -"Tfru23099_t",19.9924756714063,22.1127983347389,20.379711368715,10.3127922093592,12.8078101797414,15.3950587072939 -"Tfru23100_t",14.0065626443249,17.3646512746533,14.9835794202486,20.2174044665481,14.4825295725475,9.90824402447994 -"Tfru23101_t",613.361475305823,691.193384787356,624.720021810622,445.134893890785,540.716469867092,472.591046726282 -"Tfru23102_t",1.0726071386516,1.41805342882131,0.923677935746433,20.6233831388824,16.2193103736694,21.603941418509 -"Tfru23103_t",0,0,0,0,0,0 -"Tfru23104_t",9.17413930387586,8.43953068924224,9.85322021151554,11.6220539597227,13.4721355730873,15.3097020181039 -"Tfru23105_t",14.3112605423402,16.3541595392297,10.7718913891693,13.503786524526,12.2923273880123,15.8658184337269 -"Tfru23106_t",0.215503317925902,0.259470519518111,0.164592350775276,0.185760675133144,0.0310875777333557,0.105113398591497 -"Tfru23107_t",0.375232452080907,0.167336896618045,0.347495896301805,0.172503908342004,0.50520785134316,0.244030014199018 -"Tfru23108_t",21.3559088615268,21.7425787204296,22.3798429768417,13.9687861105542,13.3195453143837,14.6482151922676 -"Tfru23109_t",7.00637288573834,9.3908185586202,8.9364889117916,7.3840087595175,6.57914405712564,7.30230057732733 -"Tfru23110_t",1.10539969436115,0.532369776449878,0.380766926144389,0.914724671866154,0.765408887561253,0.161750157437836 -"Tfru23111_t",7.90404115027161,5.52733647680201,6.03310674853155,7.92804847462041,10.4691351049896,9.41909327346487 -"Tfru23112_t",3.17020289703575,1.908495425009,1.70626688602439,3.2792016538598,3.08690848521166,3.76908385727788 -"Tfru23113_t",3.67000298171501,5.24247254725943,4.46293942824797,15.4951453371223,20.804426718445,15.3598212060182 -"Tfru23114_t",15.5077867877778,15.8368964342378,14.5439015660224,7.02047963282901,7.24064584099748,7.41969017162004 -"Tfru23115_t",0.190068725727257,0.686540209448938,0.245517135636088,6.68452644825266,3.86600755991063,2.50310198387964 -"Tfru23116_t",13.792748425163,7.04529156893869,19.3011891480281,4.05311771582484,3.52716409006772,2.29347238158126 -"Tfru23117_t",71.294019810948,88.1786407580191,56.5787098946435,8.89084176509009,13.9109176586553,18.435210655704 -"Tfru23118_t",1.81644057884211,1.09351629757272,0.391057924148292,0,0,0 -"Tfru23119_t",0.227979312812612,0.1829945862062,0.19632487372438,4.3626285232151,1.97323865178613,3.08576284067296 -"Tfru23120_t",2.65295926646676,2.45709127592252,2.63607871946115,9.71015420904071,9.53817229114792,6.7686219727833 -"Tfru23121_t",1.15325754807689,5.69660021262805,2.36823357443553,1.28467139765785,2.68741768863904,11.8127147712785 -"Tfru23122_t",1.63237514738917,2.25489352519515,2.22300437676706,13.4687317816352,17.3488069589121,16.6369502196115 -"Tfru23123_t",62.8754061209436,56.8235453937438,70.5312217262915,104.030766581586,87.274277693332,55.1691989268083 -"Tfru23124_t",16.8020753542895,14.0730793078924,14.2175059205566,16.0196129490299,19.9804998300772,22.5550045623751 -"Tfru23125_t",17.8264525642411,16.4908912132816,17.840019877528,14.1772977497511,16.4200540814188,15.3243950248326 -"Tfru23126_t",7.2898642017347,6.02186312704327,5.42440498829117,3.44081352980824,2.26656465019192,3.88363899492698 -"Tfru23127_t",0,0,0,0,0,0 -"Tfru23128_t",0,0,0,0,0,0 -"Tfru23129_t",7.09547101110198,7.74574044114012,8.73770049268838,15.7797731612046,16.9501866823109,14.483742982736 -"Tfru23130_t",8.35705318668849,6.70804500168957,6.0603741124552,5.91458099348011,5.32981057830611,5.47071213114357 -"Tfru23131_t",0,0,0,0.244097875919339,0,0 -"Tfru23132_t",2.09698288353067,1.78840808937401,2.14441279778665,2.44021714335589,1.92844828925339,1.91778657804611 -"Tfru23133_t",1.04145095171216,0.278650847177622,0.597898479069702,0,0.300470431067434,0.507975701044444 -"Tfru23134_t",21.4799258790633,31.0347381044077,25.8964778747065,28.637118988537,35.5306284737241,27.5894302629764 -"Tfru23135_t",12.414377432478,11.898080750867,12.610721131938,10.0935911326253,9.27983039383528,11.6404995346154 -"Tfru23136_t",446.900560969762,434.841828743545,399.393102067638,838.976981899506,799.477473871003,625.739655448949 -"Tfru23137_t",28.1524134925595,19.0105093930861,23.0890582874789,25.4225340984078,27.8478552708456,23.5398101462723 -"Tfru23138_t",8.63892100928446,7.23578593326809,7.65506085497438,12.3031149979017,11.8119359622903,8.8854110330233 -"Tfru23139_t",0,0,0,0,0,0 -"Tfru23140_t",92.020235310632,71.5453041033861,90.7128655866605,39.7884950118277,35.5507819782469,55.9454701967363 -"Tfru23141_t",51.8932249051807,39.7861739413877,57.6239507675587,38.1392276641123,37.2105765626557,26.236440347322 -"Tfru23142_t",12.1827736707839,9.98260346172884,12.3490421515408,20.0838717606866,29.2173453001101,29.1541220324511 -"Tfru23143_t",4.05567336138022,2.55782260409252,3.4925518053244,3.59581422733592,3.7610609130165,2.96727875023892 -"Tfru23144_t",2.81043463208651,2.49882262543638,1.74999930543973,1.87841041726503,2.4699504503392,2.30928943248871 -"Tfru23145_t",2.07689435776137,2.66733270771756,0.894261013194486,0.537075672603737,0.898811425442757,2.35527423314921 -"Tfru23146_t",35.6483201137003,41.7207293651077,40.3590344269364,48.2198332216683,29.8838796382409,13.1320009124605 -"Tfru23147_t",33.0494742182035,35.5718695653557,30.1025847044687,31.1975216491352,16.7031801941668,11.8364626900865 -"Tfru23148_t",0,0,0,0,0,0.259894544720413 -"Tfru23149_t",5.28736637022818,3.30094080502548,4.55322687906687,4.86147378054484,4.57639579625544,0 -"Tfru23150_t",0.301382517565731,1.14909111688135,0.908376702730112,13.7167681736342,11.4777009865687,9.20597757040814 -"Tfru23151_t",0,0,0,0,0,0 -"Tfru23152_t",0.906930203782671,0.99617677866,0.945426970028966,5.33242905303792,3.88358032154659,1.99062977846791 -"Tfru23153_t",111.537437744332,128.487109120073,101.952966030423,93.9663100730675,83.8105111963383,68.3658451376261 -"Tfru23154_t",113.049790473505,106.394012344118,99.5035368713742,80.0606779364257,54.7580819467761,59.9439503843167 -"Tfru23155_t",49.7813443258107,39.9709805138104,45.0593622129729,49.1381039848018,41.1328196021866,40.5100907822767 -"Tfru23156_t",0.124092137033157,0.39842543584629,0.427448838803154,5.26270693784146,4.83326882470363,3.26845222119586 -"Tfru23157_t",0.807791989782145,0.648399010801338,0,0.835565708221745,0.699171498140063,0 -"Tfru23158_t",0.908220289421054,0.364505432524241,0,3.28806436103239,1.5721912285042,0.996730699887207 -"Tfru23159_t",25.5969116701729,26.341212894813,22.0428353317801,154.788565552974,105.094228106559,98.4401348690397 -"Tfru23160_t",6.59139903342312,6.63753473063044,3.30251485158043,4.33874398567042,4.04542072527025,8.85587880522703 -"Tfru23161_t",9.03891937476316,8.14866910382948,4.9087561722653,5.98043739425254,10.7132513761401,13.6633153992077 -"Tfru23162_t",0,0,0,0.968232243200943,0.405091054698156,0.684847463246548 -"Tfru23163_t",1.51808727203775,1.03460883933321,1.08530907008765,0.799955261962729,0.942081856152787,1.42503377708615 -"Tfru23164_t",0,0,0,0,0,0 -"Tfru23165_t",0,0,0,0,0,0 -"Tfru23166_t",151.780621304383,118.067027724499,171.577176061993,170.604987821524,162.79084857382,107.487821025255 -"Tfru23167_t",0,0.144242791480181,0.0773750972913731,0.185879879844459,0,0.328690159499346 -"Tfru23168_t",0,0,0.0544771957586099,0.327179381879837,0.109508801684215,0.277703583552911 -"Tfru23169_t",0,0,0,0,0,0 -"Tfru23170_t",0.433043179234265,1.04278616005646,0.745832123375608,0,0,0.316830205290607 -"Tfru23171_t",1.06747619785829,0.642631877544326,0.597518619807269,2.26356581761034,2.26364572528439,1.91346120171061 -"Tfru23172_t",0,0,0,0,0,0 -"Tfru23173_t",0.921022141582039,0.26403095151521,0.623181578419556,0.204147636242642,0.284705733431163,0.0962647765487513 -"Tfru23174_t",4.71387971123418,2.25648678668575,5.44956200215874,2.40457984456745,1.60599382642174,1.51956942741401 -"Tfru23175_t",2.7437292569213,1.96456033973374,3.37538332662989,1.21631352168828,0.58043698307913,1.09146070403199 -"Tfru23176_t",12.0014823959211,14.659457612388,16.1766818312275,7.01667683077454,9.48441447630248,11.4531167378344 -"Tfru23177_t",14.2208176896191,9.25651953647086,9.93081307376582,8.71460667115728,8.8435756603361,10.7979159154447 -"Tfru23178_t",4.44270813627926,4.40806606427589,4.0383947216489,10.7546494196823,8.59855228442847,5.62056551478812 -"Tfru23179_t",6.70144462002186,7.46352376532616,8.36705827493301,2.99937057889293,4.20066035542956,3.99194356896833 -"Tfru23180_t",0.107774697590054,0.0432543329166033,0.0464052058803296,0.222960471654354,0.233206684792556,0.157703809689231 -"Tfru23181_t",0,0,0,0,0,0 -"Tfru23182_t",0,0,0,0,0,0 -"Tfru23183_t",0,0,0,0,0,0 -"Tfru23184_t",0,0,0,0,0,0 -"Tfru23185_t",0,0,0,0,0,0 -"Tfru23186_t",0,0,0,0,0,0 -"Tfru23187_t",5.90236839143659,6.86968962116822,7.6242557811113,9.2597128668418,9.02537177721524,10.7959706954996 -"Tfru23188_t",0.085724874256579,0.275238795987692,0.0738221591504428,1.95079037163292,1.26136260552186,0.689913936826689 -"Tfru23189_t",22.815682272353,20.4950944369104,19.7994962095442,30.3624982486179,25.8091142649048,23.2603406776205 -"Tfru23190_t",0,0,0,0,0,0.236404076255299 -"Tfru23191_t",0,0,0,0,0,0 -"Tfru23192_t",2.89690954384302,2.45098480490438,3.57346034135508,3.88736673225504,3.59164375477252,2.46318506293965 -"Tfru23193_t",2.01983986894842,2.31183432159742,1.41728027718927,1.66369113293555,1.61874096879606,2.10721710001384 -"Tfru23194_t",8.91217725500534,8.31083759179685,12.8664767867199,11.9299504786288,12.3647566781541,12.0820554416905 -"Tfru23195_t",0,0,0,0,0,0 -"Tfru23196_t",0,0,0,0,0,0 -"Tfru23197_t",8.0528081361232,6.98792798103467,7.30954125059565,6.97892269079229,7.15835773081898,3.82166175086286 -"Tfru23198_t",0.722842629964653,1.80510338477588,1.52161161690588,2.32616407950666,1.87693479597956,1.29276416460833 -"Tfru23199_t",0,0,0,0,0,0 -"Tfru23200_t",70.3259669574015,75.982086743642,66.1973548370571,78.0366387910743,75.3916912762175,62.9450966777211 -"Tfru23201_t",0.433043179234265,1.73797693342744,0.745832123375608,5.82311840079743,4.12294993557479,1.58415102645303 -"Tfru23202_t",0.981939468757178,0.700607844332307,1.31537665395334,1.5799789786779,0.94433564049765,1.75614456646793 -"Tfru23203_t",4.55435737293084,3.9369018775554,4.10300974627648,5.36323139551215,4.00259693495334,5.3314146972004 -"Tfru23204_t",1.69516487253959,1.84091467702154,1.93208143533206,1.23772833937972,1.16514765376535,1.05785562905932 -"Tfru23205_t",7.503122962018,8.39216387473454,6.35540696639244,20.7386699031441,30.1288696077369,58.8552695848478 -"Tfru23206_t",5.87306585332307,9.22342773788543,13.4136433860592,28.7901944594955,43.9819301499863,75.1032038000117 -"Tfru23207_t",1.17826615387724,0.945771458863739,1.62346627696906,5.36262149845796,12.0339882602548,11.3792256621064 -"Tfru23208_t",0,0,0,0.774154510710776,0.485838603463156,0.136893229011977 -"Tfru23209_t",4.93257570978676,5.53042725209193,5.1916310619687,4.21131395994296,3.38834316487973,3.83798602830131 -"Tfru23210_t",9.96083946084914,13.3988397590751,10.1802440709874,6.28389033539322,6.25291690554926,7.68813777632868 -"Tfru23211_t",16.9586164290189,17.1725074887973,19.322147742855,12.2791844538554,14.5653508028931,12.5029857721358 -"Tfru23212_t",18.5402210805953,15.1609121624393,21.3544596096977,10.1881403107851,7.12094199531125,6.27367507193372 -"Tfru23213_t",5.07987619506691,6.05449701480943,4.9710753069698,4.6176206522973,3.19767707492379,4.44868504469431 -"Tfru23214_t",17.717990854411,15.2544556061288,20.8263494312131,15.4529447396625,16.2262621151333,17.4180283868951 -"Tfru23215_t",0.0238801525785808,0,0.0205644445615219,0.123506031590797,0.144683601542988,0.139772734113423 -"Tfru23216_t",1.00091791228889,1.17834559997908,0.689554083883405,12.5620250806718,5.02470568363285,1.95282159893178 -"Tfru23217_t",6.24523172568301,4.86832309272012,5.99864406877937,3.85112817533356,3.27446189567841,5.09645957102203 -"Tfru23218_t",10.5828429755231,9.89102316901413,9.67522517252136,10.7592615092453,10.5714260290222,11.189928924388 -"Tfru23219_t",5.47044313860588,3.68531946023055,7.15044867119986,4.9512131948104,3.80479417944693,4.07384698849248 -"Tfru23220_t",0,0,0,0,0,0 -"Tfru23221_t",22.7502553154796,22.1989129654453,22.1261715258064,19.9803910989742,21.7610774967232,20.2789832419874 -"Tfru23222_t",16.3116594492785,16.2593476563795,17.9028104234132,14.9977700006481,17.9016317230379,17.2382972355704 -"Tfru23223_t",26.2989005545401,20.2300515050954,27.3655534311598,17.3797687654569,21.8141532954957,26.4566996643974 -"Tfru23224_t",0,0,0.495518602516584,0.59519756046075,0.498040029577441,0.420993560454568 -"Tfru23225_t",2.24203517286437,2.11722150759763,2.49859615586114,2.59195923503675,2.5113101648399,4.05264130723369 -"Tfru23226_t",0,0,0,0,0,0 -"Tfru23227_t",0,0,0,0,0,0 -"Tfru23228_t",0,0,0,0,0,0 -"Tfru23229_t",6.34040579407151,2.36289909763019,7.99507912308569,3.2792016538598,1.37195932676074,0.331348031409044 -"Tfru23230_t",0,0.134329691268894,0,0.0865526332941082,0.144848295454819,0 -"Tfru23231_t",40.5650104982132,46.6736188296129,46.5079602647789,35.3802435582516,41.2391374205324,30.1178793149251 -"Tfru23232_t",11.9216499187863,6.20507862129681,8.74244239517771,4.23896799157486,7.41648966439618,19.8296368176008 -"Tfru23233_t",10.6054578431043,9.36407553887793,10.6985549311625,11.4402445435379,13.0478404141979,9.81002307418292 -"Tfru23234_t",10.3691657369192,8.18171645652449,8.9727760367039,4.55581116530102,4.29138026683908,4.34564233643653 -"Tfru23235_t",15.8779120521811,15.0729074994079,16.6365514190764,11.6949877590845,11.232565769477,10.8256190800115 -"Tfru23236_t",30.8263882508134,17.4021948430928,23.9207609247161,30.1342764884939,25.2152847232881,51.7991834827135 -"Tfru23237_t",57.235707038284,64.8638679897785,50.5417530719371,89.4074709585573,41.2269024945666,27.8225213070901 -"Tfru23238_t",149.0374201714,158.016371886622,131.605541974436,63.7698739873229,86.1427998143693,117.788555712906 -"Tfru23239_t",12.8942818558998,12.3104346482481,12.1864951223467,11.2942490480951,9.4817112086735,11.0894635514029 -"Tfru23240_t",6.89893018332795,7.50133923019456,4.82445222962794,4.35253382012025,3.83261672149556,8.57360619010918 -"Tfru23241_t",0,0,0,0,0,0 -"Tfru23242_t",0,0,0,0,0,0 -"Tfru23243_t",45.2621900856486,44.0336530339483,49.9610017123389,66.8990244157835,66.0967381230223,52.7374635196297 -"Tfru23244_t",0,0,0,0,0,0 -"Tfru23245_t",0,0,0,0,0,0 -"Tfru23246_t",22.8984035801821,26.3766453252276,21.3195782452703,18.6101948727459,11.9688274718649,7.2343831477064 -"Tfru23247_t",0,0,0,0,0.318920369817189,0 -"Tfru23248_t",0,0,0,0,0,0 -"Tfru23249_t",0,0,0,0,0,0 -"Tfru23250_t",0,0,0,0,0,0 -"Tfru23251_t",5.22156803317919,5.56067056755442,4.85272802489249,3.90376344577956,2.64007188601897,3.74464056788393 -"Tfru23252_t",6.76225657841237,8.11744875476392,7.5021300821922,5.04126722710861,5.85296353831285,5.17037486574316 -"Tfru23253_t",0,0,0,0,0,0 -"Tfru23254_t",0,0,0,0,0,0 -"Tfru23255_t",0,0,0,0,0,0 -"Tfru23256_t",0,0.943125944292995,0,1.82305266770431,0,1.71930237276491 -"Tfru23257_t",7.2436313617368,6.57271276641649,7.11930663222171,7.08547273943183,8.38219573678842,4.95407230090767 -"Tfru23258_t",0.351507852600199,1.4107427827821,0.605403480899029,2.18156093290254,1.52121013218241,1.02870393014858 -"Tfru23259_t",0,0,0,0,0,0 -"Tfru23260_t",0,0,0,0,0,0 -"Tfru23261_t",0,0,0,0,0,0 -"Tfru23262_t",58.4352620716526,61.3371180320542,57.7964852654961,122.492097203036,116.583636001143,114.197998607311 -"Tfru23263_t",0,0,0,0,0,0 -"Tfru23264_t",0,0,0,0,0,0 -"Tfru23265_t",0,0,0,0,0,0 -"Tfru23266_t",0,0,0,0,0,0 -"Tfru23267_t",2.62532427410773,0.842918812712307,4.29552688556639,26.8843298090662,8.40753824930564,11.140542093531 -"Tfru23268_t",13.9188789917191,10.7734002098141,20.3338550796042,37.5361869786496,16.9952476365302,18.5486275215696 -"Tfru23269_t",4.41827676483946,4.8637238780094,4.89189664693392,3.86833696225891,3.61930291967591,4.74495484384696 -"Tfru23270_t",2.72013673232582,3.1911247704177,2.88301732373336,8.87385453778,11.5001970466084,10.4865668695065 -"Tfru23271_t",145.70157881854,133.256657675355,155.273342628612,142.929143130847,141.737732357798,85.1336948042963 -"Tfru23272_t",1.17933642040843,1.16936713902285,1.01558808542228,0.861095066826933,0.60044462690602,0.710578726316505 -"Tfru23273_t",4.02534192161328,3.11139508507826,5.96996591390537,7.09378316957426,10.3231722191047,10.2532664129184 -"Tfru23274_t",12.8486458591625,24.6655173431109,11.5288894964146,15.1492102073234,20.1421237202616,17.9464827086643 -"Tfru23275_t",0,0,0,0.0311242277318355,0,0 -"Tfru23276_t",0,0,0.0260799264482458,0.0313261873926765,0.0524252662713187,0 -"Tfru23277_t",0.678136969885673,1.56347844293412,0.875149789928636,1.57679353718863,2.05240689608159,3.28915745619955 -"Tfru23278_t",0.132369291131482,0.212500541019909,0.113990098688184,1.68868551555122,0.572850664272472,0.77476966167703 -"Tfru23279_t",0,0,0,0,0,0 -"Tfru23280_t",0,0.516072742476923,0.369110795752214,1.99512651644276,2.59692301136854,3.13597244012131 -"Tfru23281_t",9.56993714239434,12.4551713904439,7.94684430887191,44.1211379562454,45.7937473575093,47.7116900523713 -"Tfru23282_t",0,0,0,0,0.759413517684794,0.481449554775805 -"Tfru23283_t",0,0,0,0,0.153729057755431,0 -"Tfru23284_t",22.9761900006062,21.0907035326614,22.0182613813929,37.5383504892057,40.1812828350879,31.1204580607607 -"Tfru23285_t",83.5525545547093,101.977098867647,92.255572405338,295.621816126335,220.915358078817,81.7301067991072 -"Tfru23286_t",0,0,0,0,0,0.360498884612186 -"Tfru23287_t",1.29797598634628,1.47297480324793,1.85007691339202,2.7778000157896,3.21536978072482,2.45598267819836 -"Tfru23288_t",1.77219277970909,1.15155156734178,2.32552778599486,6.93968667430349,10.3355188056677,14.2008676645574 -"Tfru23289_t",1.11419597840116,3.75624298503097,2.494679860946,2.30500912008713,2.89312377924346,2.44555940953757 -"Tfru23290_t",10.5966265970674,9.15007903718281,10.2659711621251,7.18275202203547,7.78208367286358,6.37263162079501 -"Tfru23291_t",135.66540573227,113.361189515039,138.336740667458,170.861915903647,139.138923722621,93.4435031144256 -"Tfru23292_t",4.84430093674507,3.37679160176099,6.36730125358295,5.80204723581263,7.72377708995802,6.52891379035878 -"Tfru23293_t",10.245807023592,8.98131835379052,9.52273616289991,5.0415424054507,4.92167941892553,4.2753301126894 -"Tfru23294_t",31.0105417612708,23.0812668178928,25.7337110488173,25.6614035463108,34.1608664582688,29.7012369630802 -"Tfru23295_t",41.9371086638668,48.4166008468787,46.901598682291,49.8576834924777,42.5440807113666,37.9549234908426 -"Tfru23296_t",9.4988563170682,8.12451867674513,12.0017452809737,7.32881815410834,6.53683308515009,7.86114759595934 -"Tfru23297_t",0,0,0,0,0,0 -"Tfru23298_t",1.03546068329639,1.2744212123177,1.30781080631351,2.99897406799175,3.28616387634145,3.53537731129535 -"Tfru23299_t",12.4259721269665,9.75725956837398,12.5616355699081,15.9267977432644,26.4201427909005,20.3565953765817 -"Tfru23300_t",0.573058504580133,0.376219686002708,0.592188670947617,0.73552882721634,0.446401499907825,0.262790843353186 -"Tfru23301_t",18.1417757147644,17.8329136191095,16.7765148655378,11.08609834873,11.9337671406145,9.434171973351 -"Tfru23302_t",0.20490335797914,0.534533881232195,0.48524565587913,0.582858098841543,1.28579358855564,1.27427563054685 -"Tfru23303_t",0.0536807519306373,0.0430885016082969,0.138681883643643,0.0555264177810125,0.371700162649554,0.157099194444416 -"Tfru23304_t",0,0.0500991864910732,0.0537486745671872,0.0645608052208653,0,0 -"Tfru23305_t",0.670890320268879,1.07702137560401,1.1554772736591,27.1414312575015,21.0979832227953,16.4161339908959 -"Tfru23306_t",25.1910598927296,24.4289239839148,29.2185352149679,21.2571777224563,22.1166929633912,19.5330139907355 -"Tfru23307_t",0.946248122303277,0.858604863095788,1.84230030867119,1.4894512898898,0.712182608406651,1.29431810604027 -"Tfru23308_t",2.92365657798361,3.1130524333125,2.85169548025041,2.86988369173916,2.29812931261733,2.51011430398915 -"Tfru23309_t",0.842631662702582,0.541091314078111,0.580507249487935,0.610122273611828,0.452182381919336,0.480870076876375 -"Tfru23310_t",23.2263982838708,32.9234171553513,29.7894124571787,54.6951546442321,50.4719625268333,48.4489295102036 -"Tfru23311_t",3.59577488126818,4.19819486487064,2.8150084034021,6.08630034587986,3.67813220287217,0 -"Tfru23312_t",0,0,0,0,0,0 -"Tfru23313_t",15.6014425978465,13.8569455202443,13.3183877598506,13.6470126155889,13.23937980927,13.2012159174941 -"Tfru23314_t",1.66807607307928,2.52571340993218,2.57911171544552,1.25485695057451,1.34533737231547,1.63647948093695 -"Tfru23315_t",72.4664568497156,73.4323553441508,90.2166593080788,54.8725820831543,45.0490854394669,30.6104785632556 -"Tfru23316_t",71.2207373226599,74.8813846755769,77.9606073559512,80.9326545495905,88.1248381887688,48.8050922800492 -"Tfru23317_t",15.7141711946592,17.7073592310787,11.7106374767429,31.8837484546152,27.4638620626745,42.0084941259416 -"Tfru23318_t",0.529199223757149,0.10619449608974,0,0.821091437738123,0.458039964209884,1.25833980746915 -"Tfru23319_t",2.40029647918421,1.54133725753108,2.0670204562124,6.95190750618277,8.51790747728881,7.90265054910571 -"Tfru23320_t",6.79495694474943,7.25158096230441,8.71074337475537,3.35455095656797,5.21294104487949,5.47988125290316 -"Tfru23321_t",11.5702914116365,6.05690164823215,13.42944428138,4.68317122422492,3.91871017284354,6.62497650823233 -"Tfru23322_t",267.150995502052,209.855639570139,204.447786124894,26.8257455914979,9.7067348792035,3.15017589098241 -"Tfru23323_t",0,0,0,0,0,0 -"Tfru23324_t",2.12415617626921,2.04602290822709,1.37191623199938,3.29578421595264,4.59632391392661,4.97315275459946 -"Tfru23325_t",0.0446151761930151,0.107435217764713,0.0768409091528772,0,0,0.0979262769405911 -"Tfru23326_t",1.83964328695782,2.46107682542645,1.05614183893594,0.634298130123344,1.59227396316779,0.448650071723389 -"Tfru23327_t",9.21786815698687,10.2319306594344,11.4840260762844,9.16988190216617,9.97681736427369,10.7868373877238 -"Tfru23328_t",12.474542987121,12.36159554712,10.1760577805165,7.64822437572753,8.14693450110756,7.69972671691124 -"Tfru23329_t",0.531711245388907,0.85358867110107,2.28942139137449,0.549992682451168,0.460214204546323,0.778038731979464 -"Tfru23330_t",0.540259657694196,0.433655980816621,0.46524576184845,0.558835008535593,1.169032866854,0.592910544948981 -"Tfru23331_t",3.21533897624952,3.20030412664807,3.1676170800193,3.00660421080317,2.24865225846608,3.4628202719086 -"Tfru23332_t",4.20845932787024,4.8439946893108,4.85495825490341,23.0799386724641,24.3295849609499,24.5163093069295 -"Tfru23333_t",0.257700542243704,0.206851242383388,0.221919374133233,0,0,0.377086256603544 -"Tfru23334_t",8.20494466011065,7.78716151301788,5.99918406363856,5.2843891516592,6.6550140070206,6.9469109386078 -"Tfru23335_t",10.3008906632929,9.97346686797005,9.38837535455249,12.4792709885557,11.6911095111038,14.2225925647868 -"Tfru23336_t",0,0,0,0,0,0 -"Tfru23337_t",0,0,0,0,0,0 -"Tfru23338_t",0,0,0.0676128186611532,0.64971098188624,0.883439230035652,0.402107868023032 -"Tfru23339_t",0.955387150547166,0.920244950952026,1.26152499412508,1.38352973493023,3.58332060704377,6.19776569894483 -"Tfru23340_t",0.267890232051809,0.430060618730769,0.415249645221241,3.32521086073793,2.04043950893242,1.09759035404246 -"Tfru23341_t",0.503558701926758,1.21259049980592,0.795007867773999,7.2053986390256,6.53770828036835,3.37720108936141 -"Tfru23342_t",2.07630208750726,2.82041275736437,2.26939983548034,3.05632815742351,2.97214382669935,2.80448942173587 -"Tfru23343_t",0,0.0941808729287494,0.101041502747813,1.45640520380924,3.65600334561381,2.23197144620925 -"Tfru23344_t",0,0,0,0.168735619082106,0,0.119349630730831 -"Tfru23345_t",0,0,0,0.299651185611326,0,0.211948482159923 -"Tfru23346_t",0,0,0,0,0,0 -"Tfru23347_t",0,0,0,0,0,0 -"Tfru23348_t",0.0515085081370003,0.0413448835174645,0.0443566621504806,1.17214872115283,1.24830634022865,0.678339102927528 -"Tfru23349_t",0.368871028634237,1.0362997477912,0.794135191739121,28.9980774132761,33.3637617179554,30.9012046108463 -"Tfru23350_t",5.59300380702155,5.92415143594648,8.04392998402491,9.48312708890752,10.7798149435531,12.4870677478434 -"Tfru23351_t",0,0,0.7575467640569,1.36490330618772,1.52280302237317,0.965419787848865 -"Tfru23352_t",0.263906942737531,0.353055000088924,0.113632014608535,0.773445206839706,0.60912120894927,0.707974511089167 -"Tfru23353_t",5.91219450604965,5.43448224313951,5.74824076926262,8.9759305201849,10.0693405298921,8.65115484502932 -"Tfru23354_t",5.29199223757149,4.46016883576906,4.67114071600754,8.62146009625029,7.0996194452532,8.42119717306277 -"Tfru23355_t",209.809420339001,209.078625091321,181.516893026538,185.219958363826,112.912606190173,82.1382307215898 -"Tfru23356_t",33.3476304741623,27.2087206720658,38.2635466130921,44.2549182849966,43.5331521600405,28.8222199840157 -"Tfru23357_t",2.96507212134521,1.58667070628199,1.70225214041021,0,1.28318548797034,0.723118350898562 -"Tfru23358_t",23.1426088246758,21.0475096206859,19.7836251074859,13.054075210462,11.0110372386983,45.6965366248462 -"Tfru23359_t",0,0.206851242383388,0,0,0,0 -"Tfru23360_t",25.9006520512699,30.7164857454144,23.4291948171081,18.4836111746424,17.3666541838658,21.755743967656 -"Tfru23361_t",0,0,0,0,0,0 -"Tfru23362_t",0,0,0,0,0,0 -"Tfru23363_t",4.39208866324586,4.42555817130377,4.02367719507419,3.76980523833604,5.50004606634671,4.64919251189509 -"Tfru23364_t",1.65266314960225,3.31640188608121,3.32078696243959,2.27931393645337,2.8608725633437,3.02287179473989 -"Tfru23365_t",3.05492272328005,7.96941405082074,2.63075324899617,2.3699684149461,1.98310480063736,2.23509303454507 -"Tfru23366_t",8.04534858194305,7.47750559664144,8.8973561976078,4.90557989347575,4.32471453102906,4.21333071390492 -"Tfru23367_t",0.0756169007843811,0.0606962241376999,0.0976764842044562,1.44701045076937,0.850837062230556,0.85752333691166 -"Tfru23368_t",71.085703421994,79.7957965861969,63.6815583665436,110.114564426006,73.450695803811,65.3720972543096 -"Tfru23369_t",0,0,0,0,0,0 -"Tfru23370_t",2.22204455346656,1.64639279797317,2.06071215370107,1.94483678962387,1.25751307569829,0.562752328013631 -"Tfru23371_t",0.957526789836533,0.768588239545715,1.38875999457582,8.34062088324268,10.9048956686141,13.3844131475556 -"Tfru23372_t",0.0586255246137107,0,0.0504854961391723,0,0,0 -"Tfru23373_t",5.80283249634765,4.07034846711108,4.63696872722196,5.0289934511123,5.47503121500722,4.93403404953499 -"Tfru23374_t",4.85894048384734,4.80456657706931,5.45776566393047,3.42350851624675,3.90082651833396,2.42150696717498 -"Tfru23375_t",0,0.0434214456001189,0,0,0,0.0791565483919867 -"Tfru23376_t",3.06110684592319,3.16691764452235,4.04198736984044,28.0750110826612,24.1986963682827,44.891889848901 -"Tfru23377_t",0,0,0,0.16396008269299,0,0 -"Tfru23378_t",2.52979804581523,2.03061997541735,4.44785455759631,4.1432322025556,4.47048729184145,1.9280131689579 -"Tfru23379_t",4.53738532480813,4.63536368365524,4.97302793884161,6.68452644825266,9.99666599466252,13.9830496168028 -"Tfru23380_t",11.4689934158973,10.8169786204719,15.3086497951567,9.49065871151232,8.93412421658528,7.55202100255836 -"Tfru23381_t",2.13224306526516,2.05381233554268,1.65256711600737,0.661666323558005,0.553658713083648,1.24802151931731 -"Tfru23382_t",1.38258740464054,0.87613908640517,1.31594632768827,0.827966463490802,0.818778671405931,0.718733917415417 -"Tfru23383_t",45.8581822844142,75.8626931441077,41.9631176249954,205.837728993766,244.16681176673,175.827657650816 -"Tfru23384_t",4.86632905862699,5.29422985877532,5.44161285185395,3.81338011476116,4.10796578074147,2.77900536449048 -"Tfru23385_t",7.00790077590969,6.77723668512408,5.30777614635445,5.15279576463296,4.75015063386004,5.86852330000591 -"Tfru23386_t",0,0,0,0,0,0 -"Tfru23387_t",0,0,0,0.305444090781317,0.255584690046816,0 -"Tfru23388_t",0,0,0,0,0,0 -"Tfru23389_t",227.659519305561,237.973529650383,237.284071824928,185.957594128694,200.025114404659,149.781749884074 -"Tfru23390_t",0,0,0,0,0,0 -"Tfru23391_t",12.8367855706772,14.0801158475464,10.938672254276,13.6952577871801,13.0884919772974,11.2603989601924 -"Tfru23392_t",0.0870123011615199,0.0698430916799426,0.0749308295882277,1.08004777413508,0.715465065793921,0.509291018758179 -"Tfru23393_t",0.179893740409952,0.144397227017098,0,0,0,0 -"Tfru23394_t",2.37765217277682,2.22657799584383,3.41253377204877,2.04950103366237,4.80185764366258,7.24823818707285 -"Tfru23395_t",0,0,0,0,0,0 -"Tfru23396_t",0.34600649411634,0.277732722475225,0.238371387042616,1.07370894350022,1.13802557005606,0.607562370606699 -"Tfru23397_t",0.412827404282297,0.331368575022037,0.533260805656761,1.70808538235449,1.60792284733384,1.2081584241057 -"Tfru23398_t",0,0,0,0,0,0 -"Tfru23399_t",0,0,0,0,0,0 -"Tfru23400_t",0,0,0,0,0,0 -"Tfru23401_t",0,0,0,0,0,0 -"Tfru23402_t",25.7451154622178,22.6730519349911,22.1704613448588,12.6143482975091,10.0139413391233,9.91371932683511 -"Tfru23403_t",14.415507930277,14.3995282400425,14.758801922813,15.6567030346585,14.9725361036768,17.3438109710275 -"Tfru23404_t",40.5677484789879,62.561882981537,51.1646508362841,72.0302203587379,30.4126345057608,18.9303035967171 -"Tfru23405_t",79.7143915956348,103.065982099823,78.1004888284798,464.118824986634,251.606427215093,146.677983676583 -"Tfru23406_t",10.363788726457,13.0126680942493,12.7639581582792,22.8176840097832,22.3002486021034,19.9941476485529 -"Tfru23407_t",1.23746872494767,1.87621863386045,0.828837989806935,3.27115124063428,4.28428542628394,5.83465379693929 -"Tfru23408_t",4.3200084335427,4.05781485331964,4.43256027809223,2.56703367979944,3.18222513428092,3.362421215885 -"Tfru23409_t",0.173217271693706,0,0.149166424675121,0.71669149548276,0.299850904405439,0.380196246348728 -"Tfru23410_t",0,0,0,0,0,0 -"Tfru23411_t",71.8165991816238,72.2638032085876,73.0275794544031,39.067623473718,45.780252596265,48.0250090443611 -"Tfru23412_t",0,0,0,0,0,0 -"Tfru23413_t",0,0,0.0588655133990512,0,0.0591650482655159,0.0500122537236596 -"Tfru23414_t",0,0,0,0,0.176062577041935,0 -"Tfru23415_t",0.442795469327226,0.452357005384659,0.277319467052933,1.20750669429384,2.75246463878639,7.36284856568971 -"Tfru23416_t",0,0,0,0,0,0 -"Tfru23417_t",0.0594974339741129,0,0.10247268550628,0.0615430905292384,0.0514970568826622,0 -"Tfru23418_t",23.2573686102972,26.1649349166719,25.6659733486646,24.9567796713782,25.8758257982901,19.2936645558548 -"Tfru23419_t",1.41193910315561,0.566668108484667,0,0.730242383941173,1.8331221227548,6.71467039051565 -"Tfru23420_t",38.5543372152252,29.6096126845116,45.4978723647885,16.7397206239529,16.2730699749213,28.5560051318015 -"Tfru23421_t",0,0,0.645943892566374,0,0.324615376421067,0 -"Tfru23422_t",2.15174971310439,2.96115415494509,2.3338046459697,5.05222543609796,4.49021982464331,5.12607908677141 -"Tfru23423_t",17.4354998818317,15.5414179848705,15.9706050017499,15.2655567080966,14.4692919902757,8.71929531155377 -"Tfru23424_t",0.448453968530858,0.53994799390824,0.772374191823138,0.773121386363743,1.29384064623344,1.31242120625718 -"Tfru23425_t",903.83351446844,1090.10475454019,839.097265041034,1951.76161030516,1467.11527442981,692.298255872568 -"Tfru23426_t",2.54063639429781,2.51516097341576,2.26080362398231,0.87599640954924,0.806302709174909,0.991371932683511 -"Tfru23427_t",101.650017815603,95.9552291933527,95.5138304464309,80.4667541784373,69.3088153547724,56.636988661768 -"Tfru23428_t",11.7965234935239,9.72475594172833,10.021323084673,8.0797786480777,8.96850072237332,9.7970873347547 -"Tfru23429_t",0,0.376723491714998,0,0,0.40622259395709,0 -"Tfru23430_t",0.102869849107895,0.137619397993846,0,0.780316148653168,1.09812744480727,1.37982787365338 -"Tfru23431_t",0.473297897303929,1.23469797918422,0.407581498408078,16.5230196009626,13.8258718070043,6.23307648943549 -"Tfru23432_t",4.12320867589926,3.93017360528438,2.66303248959879,2.93216957699427,1.3382916132206,2.07397441131949 -"Tfru23433_t",0,0,0,0,0,0 -"Tfru23434_t",6.62481828254842,6.24241589300086,4.63012582191577,4.17114450370966,6.48191983637587,7.37580717916532 -"Tfru23435_t",6.1471007393742,6.5788785382424,2.52075665391756,2.7250508517267,4.05373348116064,3.64078751584816 -"Tfru23436_t",0,0,0,0,0,0 -"Tfru23437_t",1.84572762573697,2.29398174402215,2.15345150292858,1.78601450814405,1.64907371947995,2.00382193622493 -"Tfru23438_t",0,0.046763873104705,0,0,0.201702758164547,0.170499472472615 -"Tfru23439_t",0,0.0344928414409128,0.0370054813132654,0.577843974299079,1.67372020170044,1.60343634329681 -"Tfru23440_t",2.07799518515948,2.47812173914007,2.0451085785847,3.25486835536826,4.26519369499681,7.210742000833 -"Tfru23441_t",0,0,0,0,0,0 -"Tfru23442_t",0,0,0,0,0,0 -"Tfru23443_t",68.3549777054811,61.7584080601096,64.9525363653871,79.1246544749851,85.9298683563728,91.0456632293834 -"Tfru23444_t",0,0,0,0,0,0 -"Tfru23445_t",0.628506559387387,0.168163354157069,0,0.866821384810819,2.35730667366122,1.68607396032458 -"Tfru23446_t",0,0,0,0,0,0 -"Tfru23447_t",0,0,0,0,0,0 -"Tfru23448_t",21.0563092675239,19.7471517249226,19.9829599091633,15.2239662459565,15.6213885492041,13.8335684519725 -"Tfru23449_t",9.67025919671337,8.34255721111975,7.65838514352075,6.98852469628471,5.94116199723162,6.3644447867498 -"Tfru23450_t",0,0,0,0,0,0 -"Tfru23451_t",34.6957008476047,36.2983136054302,42.4674388393521,40.3242894790184,43.5270808216388,39.6456766397518 -"Tfru23452_t",22.2205664162103,18.8851965959872,21.3864987796233,18.9284610316858,18.2041731886032,19.8218297601331 -"Tfru23453_t",4.46863706231104,10.043287981253,6.15708220999438,0.924455785396646,2.3206546059038,1.30776723034846 -"Tfru23454_t",17.72994233657,16.6745529465143,18.7798587351271,16.383320538665,16.7269976025961,14.3339200368936 -"Tfru23455_t",0,0,0,0,0,0 -"Tfru23456_t",0,0,0,0,0,0 -"Tfru23457_t",0,0,0,0,0,0 -"Tfru23458_t",12.6875739663363,12.1978695081918,14.7530939558163,13.86525921135,9.67863456796738,12.4818124903395 -"Tfru23459_t",0,0,0,0,0,0 -"Tfru23460_t",14.253688603896,23.5757241190486,11.1587222571878,46.911972246092,60.7506411399838,52.7746272031109 -"Tfru23461_t",9.10955892702443,8.93697054441965,6.97308105710207,10.9932272311625,6.57052810105293,8.51624322895595 -"Tfru23462_t",0,0,0,0,0,0 -"Tfru23463_t",16.941801552662,16.6831332578403,16.319147988496,20.5052365372075,21.7688016254427,17.059429286531 -"Tfru23464_t",0,0,0,0,0,0 -"Tfru23465_t",0,0,0,0,0,0 -"Tfru23466_t",0,0,0,0,0,0 -"Tfru23467_t",0,0.392055261726655,0.630921941576459,1.01045167241029,0.211377454413718,0.178677499495284 -"Tfru23468_t",0,0,0,0,0,0 -"Tfru23469_t",16.8662054128936,19.8697197988977,14.5795946682462,11.0779442130966,9.38064098457704,14.7328464011318 -"Tfru23470_t",0,0,0,0,0,0 -"Tfru23471_t",2.02186073762324,1.45730560940438,2.23859533690979,5.93268138113584,7.07138564588761,6.49066201506444 -"Tfru23472_t",0.740179531025969,0.297063898753236,1.27481437828077,3.82814289988038,6.40650610734089,4.60311020726177 -"Tfru23473_t",0.935972755631199,1.42031982549304,0.69125613559199,0.221351239591528,0,0.792925514378205 -"Tfru23474_t",0.581789312821658,0.73500471209749,0.50100911334788,0.601792547280364,0.36836045411529,0.549787806218796 -"Tfru23475_t",266.946810785513,208.462845796631,251.415529902492,342.603796812532,245.100712832767,154.384823898108 -"Tfru23476_t",3.97000256084584,2.67266940616097,3.08792690104901,0,0.110844274875486,0.37478695016084 -"Tfru23477_t",0,0,0,0,0,0 -"Tfru23478_t",14.050772297151,12.9316441319787,15.7741534815158,35.6117853863128,31.8361840272851,37.6756058480424 -"Tfru23479_t",19.429789249168,19.8924654849441,28.1061759592141,32.537630808313,25.0301689999344,24.9217040255896 -"Tfru23480_t",39.5224213643667,39.2092941232827,50.5829008806421,118.551570218963,90.1497925714864,26.7598963011524 -"Tfru23481_t",21.0804777312779,14.1702050097495,26.6489781931957,1.28898161424897,0.988692567987033,0.759765881661035 -"Tfru23482_t",8.03927050444474,6.45296698727126,10.730704282251,0,0.347913130709661,0.29409119534152 -"Tfru23483_t",7.91193616854385,7.27450482203772,6.75144095928964,12.4619489221491,12.233108226498,15.655698029407 -"Tfru23484_t",2.01624904202125,0,0.578765727597816,1.39038150089625,2.3268430176167,1.96688191396268 -"Tfru23485_t",345.727409348851,344.624877404448,382.836506378256,289.730968713558,229.946839444284,179.767222033382 -"Tfru23486_t",3.38845747756881,4.12666790090031,2.11301812978597,42.9055487603422,39.2391816349204,28.9800490697386 -"Tfru23487_t",0.0794048929786838,0.446157405594416,0.547037549848272,0.492810078415603,0.481093487928387,0.755241755900671 -"Tfru23488_t",0,0,0,0,0,0 -"Tfru23489_t",0,0,0,0,0,0 -"Tfru23490_t",10.5578570448857,10.2905707835614,7.9229599174389,10.1407986512989,11.3574586278164,9.04871616833568 -"Tfru23491_t",0,0,0,0,0,0 -"Tfru23492_t",0,0,0,0,0,0 -"Tfru23493_t",0,0,0,0,0,0 -"Tfru23494_t",0,0,0,0,0,0 -"Tfru23495_t",0,0,0,0,0,0 -"Tfru23496_t",71.6930658914232,119.909954409901,101.991140931533,102.253150819324,72.4404840013329,23.5693086552275 -"Tfru23497_t",0.783195489912103,1.06344792110961,0.719929490708652,0.499709309521932,0.308730193503066,0.196891343116712 -"Tfru23498_t",2.65086844891092,1.35568325246583,1.2668184638459,0.771584483996801,1.2576668832336,1.24313023755293 -"Tfru23499_t",34.9483167283684,32.9075504402342,31.2533492902821,23.6364855152363,16.8696118777211,12.7847324407574 -"Tfru23500_t",207.025571329638,217.653679139642,211.223652869204,244.790939531324,375.904605895596,428.060238076559 -"Tfru23501_t",15.7062878311837,18.7641057438566,20.7600750167419,14.7350213446265,13.5943274160336,11.4912937936271 -"Tfru23502_t",9.32675268216566,11.7882929234331,10.2494759158502,10.4753784398259,8.25335266910498,8.47881728342327 -"Tfru23503_t",14.9721424764631,8.67955780307145,11.4607045108561,8.60384369448921,8.63926639369818,13.3884254045228 -"Tfru23504_t",30.4816411294632,31.777293293402,33.772004577718,44.2184382306979,43.2743896496191,34.5400999909291 -"Tfru23505_t",0,0,0,0,0,0 -"Tfru23506_t",0.159412479642215,0,0,0,0,0.583159960402066 -"Tfru23507_t",2.73946880776459,2.01567542170334,3.34205753110428,3.305934276038,3.55665542861343,4.34264009642886 -"Tfru23508_t",1.76657334332483,0.787774591319913,2.36644865314036,2.63945086391285,2.37849023471137,2.2977592458459 -"Tfru23509_t",136.640406925325,224.910572615472,120.859901969125,215.07463847253,213.329587375068,152.849141421183 -"Tfru23510_t",3.84995392805068,4.52236620829256,4.0970748237891,3.98232406511029,3.30517474174177,4.28240170921484 -"Tfru23511_t",0,0,0,0,0,0 -"Tfru23512_t",0,0,0,0,0,0 -"Tfru23513_t",0,0,0,0,0,0 -"Tfru23514_t",0,0,0,0,0,0 -"Tfru23515_t",29.6060665128294,28.0295894347707,33.5579525873037,20.6777369348057,24.0919363705274,25.9190011316051 -"Tfru23516_t",0,0,0,0,0,0 -"Tfru23517_t",11.7261137749821,13.4738074077914,12.5878779216759,21.6000950239904,20.9243471699943,17.5698402371768 -"Tfru23518_t",0,0.318082570834833,0,0,0,0.579859054965828 -"Tfru23519_t",0,0,0,0,0,0 -"Tfru23520_t",138.503594136711,125.432751780401,98.6291845132663,56.9194334766952,49.0153735945426,27.0680788106624 -"Tfru23521_t",117.384362064214,132.650018088205,134.384645002521,11.4277931608484,27.0933776090175,31.3219208978254 -"Tfru23522_t",61.4066879540176,58.6641254407848,54.5490781937938,5.84521371035547,10.1082025733986,12.5410772291488 -"Tfru23523_t",3.75910838434951,4.84606883511889,3.43335601201381,5.06664445365863,5.91570258860901,5.12556092111489 -"Tfru23524_t",49.5209355941463,45.6712103133694,45.1068788907821,65.9133930676769,68.7229637300469,62.5445778913854 -"Tfru23525_t",40.063573139033,36.0354919707449,37.2083262829644,62.7004059182212,51.9735933459011,49.1997660391524 -"Tfru23526_t",71.3680385194335,83.4735134918984,63.3902996704943,44.1876402471265,69.2722910071365,119.871785365278 -"Tfru23527_t",0,0,0,0,0,0 -"Tfru23528_t",456.543264698296,424.235606741698,477.585323069027,363.150060958414,291.028918667831,155.192361596016 -"Tfru23529_t",24.8212476824731,24.9591544543385,22.0795366913597,15.5176506834437,16.0537058884601,17.162321899573 -"Tfru23530_t",0,0,0,0,0,0 -"Tfru23531_t",0,0,0,0,0,0 -"Tfru23532_t",0.557663570915504,0.81625874874132,0.706225263251014,5.08974095044619,5.36623060373381,3.74406455795194 -"Tfru23533_t",0,0,0,0,0,0 -"Tfru23534_t",1.58122684219053,2.06042242168738,1.30862453717676,1.44441979473365,1.68853952829145,2.10342419352063 -"Tfru23535_t",0,0,0,0.151921055642106,0.127122105451607,0.107456398297863 -"Tfru23536_t",0,0,0,0.167113161206317,0,0 -"Tfru23537_t",20.2613261625256,15.8667070628199,16.171395333897,8.17871471315621,9.41002691178247,14.4623670179712 -"Tfru23538_t",29.2356111164637,28.1872050970996,28.2148292272992,20.8557225185483,24.2864240023186,17.9477974693023 -"Tfru23539_t",0,0.218231407821957,0,0,0,0.247013916735136 -"Tfru23540_t",6.0330611685061,12.8329470947942,3.50688389788279,235.422540997078,213.572440403537,140.806851595077 -"Tfru23541_t",0,0,0,0,0,0 -"Tfru23542_t",0,0,0,0,0,0 -"Tfru23543_t",42.6684282023404,43.2994084845901,40.9324445605218,125.774642381596,139.878474201819,108.534355640788 -"Tfru23544_t",6.42552922417906,5.9806770112704,6.23974442029943,5.3030213889718,4.91069900603782,4.05099255161643 -"Tfru23545_t",0,0,0,0.205921430870343,0.172307687958102,0 -"Tfru23546_t",2.30015373168239,2.02212596530723,3.86724166188369,5.89144703913794,1.70645266979106,2.00342437504491 -"Tfru23547_t",0,0,0,0,0,0 -"Tfru23548_t",135.567429913377,122.304055674641,145.087846816881,87.136922851469,102.39703008114,78.4731996687452 -"Tfru23549_t",0,0.186280400599405,0,0,0,0.33958596589159 -"Tfru23550_t",0,0,0,3.08288581205444,0.483684108547577,1.63543396433821 -"Tfru23551_t",0.0810128994903061,0,0,0,0,0 -"Tfru23552_t",0,0,0,0,0,0 -"Tfru23553_t",0,0,0,0,0,0 -"Tfru23554_t",0,0,0,0,0,0 -"Tfru23555_t",0,0,0,0,0,0 -"Tfru23556_t",0.818282890630982,1.31363970812308,1.64422081744168,2.25711282668272,1.18041955062206,0.798247530212698 -"Tfru23557_t",1.30200583926229,1.49299273100335,1.38818347981792,1.85982765386808,2.68316768702284,3.12995507602957 -"Tfru23558_t",0.431068067812444,0.307564447055802,0.453707454755857,19.9659259192678,22.6764383364427,30.4171447715484 -"Tfru23559_t",0,0,0,0,0,0 -"Tfru23560_t",0.253043303528456,0.609338900755885,0.435817566068879,0,0.219017603368431,0.185135722368608 -"Tfru23561_t",0,0,0,3.35085516043514,4.48620119187573,1.89609439053093 -"Tfru23562_t",0,0.0763686353533234,0,0.0492065933336833,0.0823486345620827,0.0348046771383792 -"Tfru23563_t",71.3666745817647,87.2801553229867,74.0394283813872,54.3481063401412,73.44341466265,68.4543977330561 -"Tfru23564_t",0,0.0563825292784152,0,0,0,0 -"Tfru23565_t",0,0,0,0,0,0.491720478490671 -"Tfru23566_t",0,0,0,0,0,0 -"Tfru23567_t",1.78886448961284,1.64861092707139,1.88281437454678,0.616789900982304,0.516107727811413,0.921006416956764 -"Tfru23568_t",0,0,0,0,0,0 -"Tfru23569_t",0,0,0,0,0,0 -"Tfru23570_t",42.6834207062682,33.0271741471776,41.2736592709795,27.4072779778196,24.5771228374082,26.5312045106324 -"Tfru23571_t",12.669207624391,9.37947727176213,11.4397325395064,10.1784882960216,13.4142670338334,8.36932732628569 -"Tfru23572_t",6.45649369400817,5.85317945897877,5.36378725979166,3.2213857114997,3.22149943182426,3.33445170848342 -"Tfru23573_t",7.63730697922249,7.22914933715529,6.3286989954359,4.17352937763974,5.42547551946291,4.53344352064192 -"Tfru23574_t",31.1427001789697,30.2376990649409,27.2794037278477,16.826272944901,16.1174635813854,12.2147125260063 -"Tfru23575_t",16.4965830751206,17.4101049316578,16.5737458398121,10.4278612592742,9.78331723555566,7.59931648762488 -"Tfru23576_t",25.24078584613,27.3665121257269,17.5186935526522,11.4955869636991,6.84749206585067,9.37135441299032 -"Tfru23577_t",2.07521373626233,2.06780764958385,2.40330742992327,1.11029187172851,1.61035771062717,2.14656512170484 -"Tfru23578_t",5.36908422975416,3.67588655167773,2.99174013399163,3.92024859371209,3.96372459629935,6.23893464403082 -"Tfru23579_t",3.11437912035023,1.93738522291615,2.27966111482183,2.49663036019075,3.77384178111758,4.10146831093531 -"Tfru23580_t",0,0,0,0,0,0 -"Tfru23581_t",39.9535210866781,44.8978863737764,37.1957408572925,39.5400908931347,52.7128640045398,45.9802889703751 -"Tfru23582_t",11.1244090025275,14.6251152057278,14.04045165066,15.0665073486137,15.2118746586502,11.5554070441102 -"Tfru23583_t",2.15882324125644,2.83891737906387,3.12482862844575,8.40956553167271,10.4558453011033,5.64577914206203 -"Tfru23584_t",0.104231236689141,0,0,0,0,0.0762593794371932 -"Tfru23585_t",72.6872390326872,65.9675592557458,94.6785239399896,95.5887282100131,149.537601576369,148.585101145504 -"Tfru23586_t",0,0,0,0.360576115465911,0,0 -"Tfru23587_t",0,0,0,0,0,0 -"Tfru23588_t",1.08821731569232,0.174698199525867,0.374848269261316,3.60202461460247,1.50702268017242,1.43312315657357 -"Tfru23589_t",2.69849108193596,3.79054657393536,2.2212902871437,1.88821295042754,1.54564147110267,3.25181232902896 -"Tfru23590_t",5.63133852503546,6.71126700966196,6.72983404348222,5.48588226650453,5.48434632399964,3.95192587118981 -"Tfru23591_t",0,0,0,0,0,0 -"Tfru23592_t",17.1747346919449,15.8016795748575,14.9993528765654,6.87146113195501,5.53943462019981,5.03811965789981 -"Tfru23593_t",14.1256384382813,13.1286468699996,17.2861443593221,6.9211467878891,5.79136807664623,3.80757004164502 -"Tfru23594_t",3.33329672462367,4.48952050886447,4.03812671506188,8.18146478535296,7.13935525922971,7.93630900246437 -"Tfru23595_t",5.03835817564611,6.86149545657997,8.14133057045921,11.4186486161189,17.8354712478896,17.8513751921623 -"Tfru23596_t",3.21632376613505,1.75554300963053,4.43159056462076,11.7107170854534,16.9257340526562,15.3427331572735 -"Tfru23597_t",0,0,0,0,0.0717806952796832,0.121352536675968 -"Tfru23598_t",0,0.0665681194639532,0,0,0,0 -"Tfru23599_t",0,0,0,0,0,0 -"Tfru23600_t",0,0,0,0,0,0 -"Tfru23601_t",52.3724263702853,70.3030158687712,57.2608645529477,40.8609457145317,55.5410002346309,66.6961287477716 -"Tfru23602_t",34.7763885239945,42.9692566852414,40.3790042608934,33.9511761929856,44.3047144451154,58.3203358352607 -"Tfru23603_t",3.75220360290107,4.85020569727731,4.40620659894464,3.78040213865797,3.50072452344575,3.92178455968767 -"Tfru23604_t",5.41389652455908,5.75605384825589,4.53949941909845,4.22459048566788,4.23376255782186,4.13473268475916 -"Tfru23605_t",7.20630771402935,9.13320609710852,8.9819737657085,6.27711738707248,8.04284056794048,5.9661344752466 -"Tfru23606_t",0.166028412591793,0.133267796476254,0,2.57605268262702,2.1555487446142,1.33619695274734 -"Tfru23607_t",0,0,0,3.63593488817091,1.82545215861889,0.514351965074291 -"Tfru23608_t",0,0,0,0,0,0 -"Tfru23609_t",5.22777702373662,6.79790156362881,5.40229366278287,6.97570059347836,5.20354206384984,5.08569806459661 -"Tfru23610_t",5.32283319651729,3.70823817188439,5.27565890497725,1.86990937105932,3.73783061050534,8.33984971941885 -"Tfru23611_t",18.6466946055957,26.2330819039821,22.2735020520262,23.4357263782414,43.3853486386152,42.8348388288838 -"Tfru23612_t",11.3316322156836,19.4459409816421,12.113701278268,58.6061969997966,58.5092793817172,42.3108318804833 -"Tfru23613_t",162.400341012411,144.364686796925,152.843061903029,77.4134066489543,70.9216016766704,83.7569653267894 -"Tfru23614_t",122.362940080152,108.689407154705,115.820548388858,52.35520404501,47.309162685366,72.6318486457662 -"Tfru23615_t",1.74215067037564,2.33065109505707,1.5002567827348,3.60409951357402,2.01052104105951,1.98274386536702 -"Tfru23616_t",4.63648702115896,3.2535096007996,3.45638511211793,11.7392177822691,13.117242096962,8.35398259584211 -"Tfru23617_t",20.9021033115563,23.5533295035401,19.5822990588543,12.4141205467549,13.7674196009394,13.0240386508387 -"Tfru23618_t",22.2604628105832,22.7633973378569,24.1590049691612,32.8039192669241,41.9655217662894,34.2464126437349 -"Tfru23619_t",0.788089838381308,1.1386520546958,0.814398303573365,1.3042978435615,0.682118614618378,2.19106217017106 -"Tfru23620_t",0.936918700053317,0.501364349568659,0.806829546105211,0.646088058195425,0.810935066747053,0.913978584778851 -"Tfru23621_t",3.47934542351627,3.60525516280565,2.99624576672354,8.76840743437962,8.92496733726356,13.7463273858691 -"Tfru23622_t",117.807674954783,131.404375970446,121.221751141612,125.874754702812,137.920880430605,146.837165172234 -"Tfru23623_t",0.943936817656713,1.32593970539015,0.609654909837926,1.46458725551603,0.204252371680672,5.52494919787665 -"Tfru23624_t",3.98739922483138,35.5377882413568,5.68346050153327,3.27115124063428,1.42809514209465,33.3983631135146 -"Tfru23625_t",22.8201263826288,24.9633648380183,26.607919574561,0.626674354523687,1.92272184495555,1.77303057191474 -"Tfru23626_t",0,0,0,0,0,0 -"Tfru23627_t",35.1616464577126,34.4744323401438,38.4082593197893,317.815434446979,366.020250051763,289.023904913922 -"Tfru23628_t",10.0561049501982,17.3208254781781,10.8247954065986,13.8691421569731,18.3144595415218,19.9263286220177 -"Tfru23629_t",0,0.134062634228598,0.143828461167861,0,0,0 -"Tfru23630_t",0,0,0,0,0,0 -"Tfru23631_t",0,0,0,0,0,0 -"Tfru23632_t",0,0.0574236734843052,0,0.613343757820981,0.183036352186203,0.696224276872397 -"Tfru23633_t",4.40613864185913,5.1871926936142,3.35168089709265,3.00044084893159,1.58902631814508,1.47752547659562 -"Tfru23634_t",9.00602238711916,9.32591026830638,8.37718396840581,4.5867229352372,4.96858101520429,5.35681577046581 -"Tfru23635_t",0,0,0,0,0,0 -"Tfru23636_t",12.7675344637458,15.5773446239843,16.2722886978423,15.8478134639425,14.80798653291,10.0884900626881 -"Tfru23637_t",167.682478653545,159.113978867258,183.44265633735,174.475379645871,147.785462241561,111.982966102671 -"Tfru23638_t",66.9319088302311,60.8663496190828,67.9265309833483,74.8759342574593,64.1090958146996,49.6833687700457 -"Tfru23639_t",8.9636497349785,8.26653636984601,6.07671167036335,5.81955934825175,3.13635196832704,8.51162008946434 -"Tfru23640_t",11.6971385839671,11.7443999168337,10.3153221810025,6.94359182734762,6.92347130112224,11.5577839769217 -"Tfru23641_t",15.0125051982113,15.8807899389112,15.1540730487998,11.5179532646815,14.1125094298276,14.4752034384014 -"Tfru23642_t",31.9897164218679,30.2370876588614,39.39108378298,28.1416184636402,32.3460161558359,31.2793720824627 -"Tfru23643_t",0,0,0,0,0,0 -"Tfru23644_t",1.64238295820958,1.43815532026744,1.75721229541753,3.03734110533756,2.62769224136106,3.09510076139935 -"Tfru23645_t",0,0,0,0,0,0 -"Tfru23646_t",0.40980671595828,0.32894392691212,0.224576501894473,0.192680363253403,0.419192894074567,0.354344025606612 -"Tfru23647_t",140.476367716191,195.888804737863,172.443722978113,286.338813266954,138.275507228279,47.7613743568902 -"Tfru23648_t",31.2118641175344,33.6042383176964,35.0864651410469,9.95615229611826,7.68388788680791,6.97378876784263 -"Tfru23649_t",1.7270037665218,2.23585891966129,2.5426544736565,1.03725410403921,0.578624755848693,0.815186469845858 -"Tfru23650_t",2.93059453853886,3.13644209381324,3.72544384549909,3.17570525614661,3.86518773785085,3.98195570303776 -"Tfru23651_t",11.0110688001412,12.7665373575845,10.8869766747109,12.655171431158,11.6483342840026,15.2170779181809 -"Tfru23652_t",11.5235472562605,15.0681062095474,11.8442101362613,12.4965151521538,15.7653910247683,13.8704338546251 -"Tfru23653_t",33.0666712466198,31.9816762319774,34.5126294531708,15.2284482924031,27.4067479975862,39.6659078712646 -"Tfru23654_t",0,0.426794335550535,0.457884278274898,0,0,0 -"Tfru23655_t",21.830022463662,17.0703424267639,19.7692400715704,10.7804097958408,14.7500002724503,17.9294558420616 -"Tfru23656_t",0,0.16487409539605,0,0,0,0 -"Tfru23657_t",0,0.461873322034061,0.495518602516584,0,0,0 -"Tfru23658_t",8.80941810494529,11.8520932370573,12.1830405462764,15.3389562740946,20.1805710584814,12.5897569568612 -"Tfru23659_t",13.1953471368766,18.5706930046774,12.954049665373,13.4670459543855,14.9234696192571,13.580238349074 -"Tfru23660_t",0,0.610257963954612,0,9.83018595331275,7.23848223983267,4.17183663979939 -"Tfru23661_t",0.179893740409952,0.144397227017098,0.464747640047755,4.65197236762766,3.1140832684505,3.55365442251006 -"Tfru23662_t",0,0,0,0,0,0 -"Tfru23663_t",0,0,0,0,0,0 -"Tfru23664_t",0,0,0,0.16334369140467,0.136680158493081,0.0577679133706557 -"Tfru23665_t",0,0,0,0,0,0 -"Tfru23666_t",0.825249280662548,0.662411640638355,0.284266074528227,0.512173932184389,0.285712551348994,0.845295518240951 -"Tfru23667_t",1.53185907740643,1.39138230121417,1.3538785617706,2.50188609867422,2.6517524799387,3.68672383795452 -"Tfru23668_t",2.27266877460072,2.83069750537715,2.36203363699644,5.1879906762558,6.37602739358395,5.56167052533455 -"Tfru23669_t",48.2904799290577,50.5953528614441,55.5195212420239,51.9598401778727,53.2644584714475,46.0941292778827 -"Tfru23670_t",0,0,0,0,0,0 -"Tfru23671_t",7.50109706219309,9.46196319213342,9.4054673561653,15.0371807982837,11.5795071561997,13.7469402941786 -"Tfru23672_t",0,0,0,0,0,0 -"Tfru23673_t",0.11651924656234,0.09352774620941,0,0.662889932108274,0.705959653575913,0.426248681181538 -"Tfru23674_t",0,0,0,0,0,0 -"Tfru23675_t",0,0,0,0,0,0 -"Tfru23676_t",0,0,0,0,0,0 -"Tfru23677_t",14.9643483624141,16.2261871447119,17.1821075422656,11.4054732523311,16.8150764986113,22.4731624990194 -"Tfru23678_t",0.190715951808053,0.841962037669501,0.574824076926263,2.17000518070404,0.495213468683217,0.976743288954924 -"Tfru23679_t",0,0,0,0,0,0 -"Tfru23680_t",0.743454654646386,6.56432343499978,1.92068270659134,152.26522933356,144.140716574306,204.520905094075 -"Tfru23681_t",0,0,0,0,0,0 -"Tfru23682_t",0,0,0,1.80643110800701,1.75022382385451,1.4794653349894 -"Tfru23683_t",0,0,0,0,0,0 -"Tfru23684_t",0,0,0,0,0,0 -"Tfru23685_t",87.3038426988628,97.2498619910755,100.103037582188,193.623580687144,100.098364093727,36.8158327494756 -"Tfru23686_t",0,0,0,0,0,0 -"Tfru23687_t",0,0,0.165550837454082,0.19885318953612,0.166393236426359,0.14065231081551 -"Tfru23688_t",0,0,0,0,0,0 -"Tfru23689_t",7.30525015403891,7.53914962922809,2.69611363853791,17.8115642627354,32.0663537055941,55.7385014574605 -"Tfru23690_t",5.72532470347834,7.87818417444604,9.1564118957392,32.5115284972734,57.0383980466369,72.7493267207892 -"Tfru23691_t",0,0.0619508544023744,0.132927360528128,1.11767001707118,0.701419720112402,0.197636848316327 -"Tfru23692_t",5.72798023441687,6.13031863790769,5.45189007888557,68.9161883462796,92.1100013553826,69.9937044912818 -"Tfru23693_t",34.5925080823607,34.2324204880339,35.6621823415939,15.6929088558685,75.1518967454627,138.544980302074 -"Tfru23694_t",6.37195434361167,5.07837046927264,5.44830566726237,7.29221067082109,7.07972341130487,6.51351091220893 -"Tfru23695_t",91.7589066678431,77.2539183689727,97.63159727644,78.4620628731794,92.4807146184447,93.0927119700478 -"Tfru23696_t",1.41491160878227,2.6263575638194,1.44691431934868,1.55503194217246,1.60735866387863,1.42340138545296 -"Tfru23697_t",6.3260825882114,6.39805845793679,6.37383190375735,7.06707464860447,6.02298409263185,6.66488600526987 -"Tfru23698_t",0.0484768475311295,0.0778228563381241,0.0417459411237357,0.100287182720467,0.0419583637151293,0.177337160491569 -"Tfru23699_t",0.396275362129469,0.556644498960958,0.767820098710973,1.43465072356366,1.1147169529931,1.23220049180238 -"Tfru23700_t",0,0,0,0.0614126104786464,0.154163627530005,0.173752819297181 -"Tfru23701_t",4.03249808404251,4.31574432003072,3.47259436558689,1.39038150089625,2.90855377202088,2.45860239245335 -"Tfru23702_t",26.7428530558627,32.3073705708383,23.9601567351952,30.177090460922,34.1357597121369,31.2266220339797 -"Tfru23703_t",0,0.402588089653639,0.215957361096818,0,0.217056251696475,0.366955581053001 -"Tfru23704_t",8.13701462331916,7.9835999581969,8.43604535563633,7.76070398011209,6.47161692533815,6.11858797609883 -"Tfru23705_t",0,0,0,0,0,0 -"Tfru23706_t",19.1568527975595,17.8096814822841,18.6385586465591,16.5598166775399,18.1952774173037,17.0294037169289 -"Tfru23707_t",9.99042318363159,8.74813038058178,8.04462015390771,8.25371257973437,7.07486052826888,9.20789313229133 -"Tfru23708_t",10.9844076166057,10.9395758744261,13.3130131078087,11.1516676097968,17.2541325501096,15.7755359360679 -"Tfru23709_t",42.8347342963933,40.4358899024647,42.212491363404,52.7321529867544,33.2891028746344,23.7252923925874 -"Tfru23710_t",7.59129910585368,10.35876131285,8.06262497227426,20.6777369348057,19.4925666997904,22.0311509618643 -"Tfru23711_t",0,0,0,0,0,0.397403404049856 -"Tfru23712_t",5.6145548832403,9.34721851720579,6.26757440311927,24.7360570300439,28.0776230536083,25.5597278485927 -"Tfru23713_t",0,0,0,0,0,0 -"Tfru23714_t",0,0,0,0,0,0 -"Tfru23715_t",0,0,0.171435345894393,0,0,0 -"Tfru23716_t",82.7673506265072,115.422993249931,83.6505499673974,67.0478989905213,59.8557484265917,58.5149144070676 -"Tfru23717_t",14.4891314368477,14.9378017442687,14.3088836960906,13.0623262082153,13.6913725852531,12.2541100286766 -"Tfru23718_t",0,0,0,0,0,0 -"Tfru23719_t",683.634440977654,281.956342852267,642.746470298171,11.1339143653708,19.769076424043,28.6196684816571 -"Tfru23720_t",6.81707114613177,7.84173403493829,8.03242744670218,10.8450442360855,13.189145986139,13.3492134706453 -"Tfru23721_t",1.46160262159099,1.98933940670378,2.02480445597205,1.31465724398313,1.26506688299647,0.976373870161824 -"Tfru23722_t",0,0,0,0,0,0.0415024036639958 -"Tfru23723_t",0,0,0,0,0,0 -"Tfru23724_t",0.499071545176915,0.534126772411759,0.358147108749673,0.258115377704806,0.143987810531325,0.121712989755203 -"Tfru23725_t",0,0,0,0,0,0 -"Tfru23726_t",35.4113506740113,29.7961998912258,31.1254824511053,64.1636811980532,67.4294079579761,80.9409072713637 -"Tfru23727_t",0,0,0,0,0,0 -"Tfru23728_t",0,0.309328004665067,0.995583247258265,0,0,0 -"Tfru23729_t",0.610244867589207,1.95932702228527,5.7806504283906,1.8936794054372,1.40850061633548,0.595303242870486 -"Tfru23730_t",0,0,0,0,0.223048602203433,0.377086256603544 -"Tfru23731_t",0,0.648399010801338,0,0,0,0 -"Tfru23732_t",15.274613958445,12.4263215633264,15.9978241697028,8.96744825736107,10.540827554744,7.55099015066065 -"Tfru23733_t",0,0,0,0,0,0.458694476310507 -"Tfru23734_t",0,0.253509417357085,0,0,0,0.231071653482623 -"Tfru23735_t",0,0,0,0,0,0 -"Tfru23736_t",0,0.052559240075592,0.112775862770747,0,0.0566748591725012,0.0479072952660777 -"Tfru23737_t",11.7037356952589,14.2845783528345,13.1161126276836,6.46766204058034,5.9669757742132,9.26667886695389 -"Tfru23738_t",0,0,0,0,0,0 -"Tfru23739_t",0.273056479213805,0,0.0783810573861689,6.87282296792175,11.7382045540948,6.99223324135391 -"Tfru23740_t",242.818504140972,270.966486217074,225.537297297953,212.595865969101,247.758660144664,211.035388176728 -"Tfru23741_t",51.2717305044108,53.0104373145836,53.1453411810041,63.6414824894111,76.378035801325,51.8288802343364 -"Tfru23742_t",2.5135440691112,0.387994850500487,3.41331916532197,0,0,0 -"Tfru23743_t",7.80684967416651,8.52927657674818,7.76866748643585,5.47323642071695,5.78106970832273,5.52138379441906 -"Tfru23744_t",9.76415196077813,14.355809468518,10.1567058090068,15.5997924477059,25.102592975254,30.8386261039133 -"Tfru23745_t",22.0263543233854,20.5089493101878,21.6289112434396,17.7520090122799,15.9068247319691,16.3785772417704 -"Tfru23746_t",12.8115824576457,13.149533478312,14.4691431934868,11.296849697547,12.7249227557058,12.6771685891904 -"Tfru23747_t",20.5216187533307,22.2376138681964,23.6918413359001,25.5389731858814,23.0908085774204,21.6769905647225 -"Tfru23748_t",65.6730864101671,75.9910564150791,64.6337360927329,84.6932894154247,66.0699397613153,53.9769307104739 -"Tfru23749_t",8.56156705951057,7.19433891104772,7.83361255698329,8.64837219618677,11.4628512540025,11.1576700958711 -"Tfru23750_t",7.19971397404667,7.56232744803598,8.43206679737966,7.44725644944898,8.65301869214081,7.88631032052447 -"Tfru23751_t",2.3245849657738,2.75379250190557,2.97646637012948,3.49695773932923,2.61932169075191,2.76389794353186 -"Tfru23752_t",99.8357975841528,117.51867020721,73.5138383996314,324.303866037886,279.506068956639,218.270433118644 -"Tfru23753_t",63.424213325513,81.312599260782,54.5711219581937,71.3731667727978,40.6821422091285,37.6870894840613 -"Tfru23754_t",0,0,0,0,0,0 -"Tfru23755_t",2.22473885523379,2.42352445521319,2.28076027640082,13.4786352972964,15.8631715852071,17.0133425370617 -"Tfru23756_t",0.0529699727436617,0,0,0.109582400791027,0.229236583601258,0.271283366194605 -"Tfru23757_t",7.52605705964169,8.79140378589966,8.16721483973216,14.0506506406826,13.2929169147109,14.1015978480036 -"Tfru23758_t",14.6105003080778,19.6070245565689,15.9239211776145,25.5029215580074,23.5134442224999,27.7260867695073 -"Tfru23759_t",8.67011005826326,7.67926035780607,7.20882579034929,10.8236994090924,14.4910152378145,11.155580253186 -"Tfru23760_t",123.467816561459,119.136021305279,135.91543528563,123.523395424787,102.568362047769,52.1927257623674 -"Tfru23761_t",19.059357892577,10.0252045556617,15.5218966655995,25.2656334817227,28.2648773245371,32.1674776003415 -"Tfru23762_t",0,0,0,0,0,0 -"Tfru23763_t",10.003547754288,8.49740121023274,9.24185157734271,8.79034547385827,8.11200690950033,7.85189492579738 -"Tfru23764_t",3.45977264423068,3.34675262491898,2.59741746873575,1.74348261110708,2.07315078837868,1.2331954981005 -"Tfru23765_t",29.3607694328783,17.7184974917077,35.4346363922125,26.1583254378051,15.5815380682112,7.05593799027295 -"Tfru23766_t",0.0731797707068357,0.0587399869485928,0.126037832695878,0,0,0.10708198576024 -"Tfru23767_t",6.25865271076686,5.69996675644999,5.95971155892185,5.29111871441203,5.13059718148598,4.88726478562172 -"Tfru23768_t",44.143634339906,46.5291184617194,39.0666866224143,25.3586626077803,46.5368603637242,49.2279251882171 -"Tfru23769_t",31.4950443667179,38.8012501487788,34.4967777907056,13.8364629177395,19.7252383070756,25.8391447795809 -"Tfru23770_t",0.0876935039367927,0.0351949399879878,0.0377587244088903,0.0453543026238437,0.265656007426009,0.256639080694688 -"Tfru23771_t",0.292719082827343,0,0,0,0,0.21416397152048 -"Tfru23772_t",0,0,0.1590015735548,0.381972939900152,0.159810646853448,0.40526413072337 -"Tfru23773_t",0,0,0.0683796937310339,0.0821350130692671,0,0.174286559054001 -"Tfru23774_t",2.25459158108677,3.31781462383886,1.47927342553219,1.61026611564936,2.78775121987166,6.99091415277651 -"Tfru23775_t",0.0950343628636283,0.0762822454943265,0,0.196603719066255,0.246766439994295,3.96324480780942 -"Tfru23776_t",0,0.146700881110191,0.157387344381655,0.189047521016573,1.26550562990548,5.70524123116486 -"Tfru23777_t",0,0,0,0,0,0 -"Tfru23778_t",2.67150724510015,2.55499071782892,2.25162580142216,2.23420572762978,2.26308311139559,2.91106507973372 -"Tfru23779_t",0,0.505390294559842,0.0774579400079592,4.18677513086489,6.92883527230235,4.40916382052174 -"Tfru23780_t",0,0,0,0.117908879005814,0,0.0833989956938639 -"Tfru23781_t",0,0,0,0,0,0 -"Tfru23782_t",0,0,0,0,0,0 -"Tfru23783_t",0.0466983750814049,0,0,0,0,0 -"Tfru23784_t",0,0,0,0,0,0 -"Tfru23785_t",0,0,0,0,0,0 -"Tfru23786_t",0,0,0,0,0,0 -"Tfru23787_t",10.0799541837097,11.4931696464224,8.40672458133154,7.24665312621834,7.45195624592914,6.66547455488303 -"Tfru23788_t",0.0865194405473197,0,0,0,0,0.126601565038883 -"Tfru23789_t",0,0,0,4.84094663672412,4.13695401040079,1.26479348476894 -"Tfru23790_t",0,0,0,0,0,0 -"Tfru23791_t",0,0,0,0,0,0 -"Tfru23792_t",10.1997389356997,12.2681898343363,10.9919007771058,10.480764375948,8.69563276746447,10.2294034868647 -"Tfru23793_t",24.1969637725256,20.8592987598461,23.8140196571715,10.2797309744253,11.3264768519351,10.5226737248685 -"Tfru23794_t",8.34939195371967,10.6401227178439,8.52434153304805,14.6018549054044,14.8258760444114,13.980782050672 -"Tfru23795_t",14.9104509766542,10.3606444794307,13.4150996495904,9.78331354346913,10.8829992158544,9.03658495460652 -"Tfru23796_t",6.6098082541568,5.65008250482909,5.69205054103448,3.49252846444809,3.76447695380943,4.94065194789684 -"Tfru23797_t",185.659942971775,143.026224164138,219.09681241383,261.933525700036,251.781389757027,147.866122571642 -"Tfru23798_t",13.768921608622,10.971959842431,14.4347746823384,15.0679705448736,16.408112138338,10.4388403268076 -"Tfru23799_t",0,0,0,0,0,0 -"Tfru23800_t",16.1731206618829,14.9651896160688,19.9240875525286,18.3556381346403,13.0262769233352,16.598853054717 -"Tfru23801_t",0,0,0,0,0,0 -"Tfru23802_t",20.5344828809853,10.2202340441789,22.7894380164873,0.645608052208652,0.540221725990483,1.5526092378134 -"Tfru23803_t",7.85501812458231,6.30507116464394,9.19788749186874,7.53057255515808,8.20829029363009,11.6342074471821 -"Tfru23804_t",0,0,0,0,0,0 -"Tfru23805_t",1.9378241589072,2.0129404482682,1.66876142665723,1.17908879005814,1.67725285401821,1.91817690095887 -"Tfru23806_t",2.24626675859485,1.44242791480181,1.47012684853609,1.02233933914453,1.71091398396045,1.24902260609751 -"Tfru23807_t",14.2222291384734,7.69910096650612,10.2537235229434,10.9478858365083,8.30197435130415,8.71158328247873 -"Tfru23808_t",10.9260539796095,8.93798168551196,10.4894535285701,8.97648293424347,7.46595165682803,7.53492021518134 -"Tfru23809_t",14.9619299470132,12.9759456941588,16.7350376751689,6.49295353059548,8.33567099657291,7.17197218035523 -"Tfru23810_t",0,0,0.126478524418591,1.36728950077895,1.14409894906446,1.07456398297863 -"Tfru23811_t",8.80493371931516,9.85566611786698,9.66928319180126,6.09963038403056,5.66328979786908,6.56021311608454 -"Tfru23812_t",0.16504985613251,0,0.142133037264114,5.9753625421512,4.8571133729329,10.2643027214973 -"Tfru23813_t",59.1106111385861,66.4865952173479,60.5178807591172,54.0394013770476,47.9167459550006,33.6300803764183 -"Tfru23814_t",75.5314715978101,70.6975366707418,79.4983305224016,54.9494233882109,46.1294831102827,34.0558209954595 -"Tfru23815_t",0.114925276021132,0.0922482968768599,0.296904443094804,0.118876667342387,0,0.420417645871256 -"Tfru23816_t",14.5196145462421,13.1511206825323,13.5739440180996,10.4605871184156,10.8557319695137,13.1445117853316 -"Tfru23817_t",2.89307257755978,1.51837031164071,1.62897638602169,2.30195612787509,1.73357509633079,4.72181916547007 -"Tfru23818_t",2.85035206903125,3.13084130436,3.22971946283187,6.20706027337747,7.79076903410561,7.02457826587174 -"Tfru23819_t",12.4691782534375,12.9794072686029,14.0474738222093,8.39246712666083,14.414638741517,17.1210705446569 -"Tfru23820_t",36.751964727872,38.8594254021368,39.6677344049,34.6913481488032,41.2603814989187,38.5249369583672 -"Tfru23821_t",0,0,0,0.377821060118629,0.948441447630249,1.60343634329681 -"Tfru23822_t",2.6631531541381,2.13766154232516,1.25093457004208,6.01029467393323,2.72414978714164,1.41706189801447 -"Tfru23823_t",5.39992533017956,3.66758247311165,5.27613997784747,16.5419307161951,8.08930282898482,6.609963170451 -"Tfru23824_t",0.219922452281276,0.105916500026677,0.15150935281138,0.864438760585554,0.304560604474635,0.160903297974811 -"Tfru23825_t",0.455958625625223,0.0914972931030998,0.294487310586569,0.943271032046509,0.493309662946534,0.250196987081592 -"Tfru23826_t",0,0,0,0,0,0 -"Tfru23827_t",0,0,0,0.0794322155642456,0.132932073708079,0.0561837841191752 -"Tfru23828_t",11.2183458112427,11.6764410405743,8.64885245653557,7.52217569686229,5.00900920257592,6.58966841931676 -"Tfru23829_t",0,0,0,0,0,0 -"Tfru23830_t",35.2916953948177,37.0877448377227,41.3080369926128,30.4079133899377,35.1441211665954,40.7749735087971 -"Tfru23831_t",5.81845865853281,5.36682208822903,5.80172205814172,9.13335357358459,6.84729396679189,5.52662749350176 -"Tfru23832_t",0,0,0,0,0,0.0619607457927195 -"Tfru23833_t",4.2055254164491,6.99250886350138,5.69108135143103,4.66084382863863,3.90002740682283,4.68863388425289 -"Tfru23834_t",0,0,0.083830493589147,0,0,0 -"Tfru23835_t",0,0,0,0,0,0 -"Tfru23836_t",0,0.0768035364658139,0,0,0,0 -"Tfru23837_t",6.84930294267443,6.08796268232565,6.46479451758737,6.60447223929155,6.16275787865993,7.38939687456683 -"Tfru23838_t",7.89756773409612,7.44858927332145,6.63098219207972,5.20780380163515,9.65530482722685,12.1341128681921 -"Tfru23839_t",0,0.115074240643318,0,0,0,0 -"Tfru23840_t",0,0,0,0,0,0 -"Tfru23841_t",6.88609645667602,5.89582557525548,7.11597206237055,13.5334264976919,30.3967709855268,26.366159543009 -"Tfru23842_t",0,0,0,0,0,0 -"Tfru23843_t",0,0,0,0,0,0 -"Tfru23844_t",0,0,0,0,0,0 -"Tfru23845_t",0,0,0,0,0,0 -"Tfru23846_t",0,0,0,0,0,0 -"Tfru23847_t",61.4132255357436,80.4521209530185,61.6743305318905,49.7641968989222,38.3285556818905,23.0660636658641 -"Tfru23848_t",9.69865018460182,10.469373788465,9.04321449592924,7.88731544292233,8.33661909382002,9.20018411413934 -"Tfru23849_t",3.96453463415819,2.84887616700969,3.21897792394425,3.51500941323848,2.74515187538822,3.14922104278969 -"Tfru23850_t",0.19884112845313,0.0798029645171415,0,0,0.430259433836207,0.727397157708612 -"Tfru23851_t",0,0,0,0,0,0 -"Tfru23852_t",119.694242834818,128.188782731499,98.8313113381865,91.3409372289058,87.5943036455476,71.480799855692 -"Tfru23853_t",0.83800874584985,1.51347018741362,1.08247954065986,1.08352673101352,0.181331282589324,0.613117803754391 -"Tfru23854_t",2.87706769765181,2.3093666101703,1.48655580754975,1.78559268138225,0.996080059154882,1.26298068136371 -"Tfru23855_t",0,0,0,0,0,0 -"Tfru23856_t",0,0,0,0,0,0 -"Tfru23857_t",0,0,0,0,0,0 -"Tfru23858_t",0,0,0,0,0,0 -"Tfru23859_t",15.3549261500142,17.1876084394818,17.7151002043441,22.4535820805603,24.8326699174229,27.9778364457573 -"Tfru23860_t",5.57756060390887,5.74382430393836,4.51969149361104,3.55224352543853,2.82159504699337,3.1253614729393 -"Tfru23861_t",0.477331686201406,0,0,0.493743430836845,0,0 -"Tfru23862_t",8.00651380832855,6.98551502247768,7.39445163203054,7.86170479376677,12.9559197749491,14.8144377620206 -"Tfru23863_t",45.4456755454679,47.2803304602556,57.712803528939,166.26571169505,171.466540715545,136.143416374728 -"Tfru23864_t",21.0672175596091,18.8813814047557,22.4828225006487,19.2514361709677,22.9328278234699,22.0328599069939 -"Tfru23865_t",31.8800268096877,30.9750223916352,31.2704377342297,16.9928039236316,18.0200814573956,19.2784892388639 -"Tfru23866_t",7.36595280574869,7.3036862167393,7.00654785014116,5.12927273020648,3.8752937086554,6.02322362768515 -"Tfru23867_t",26.949757344412,24.7714916388923,27.1296434877877,13.5779443480132,13.7265930600908,12.5438897604852 -"Tfru23868_t",10.9353174514853,11.2442566560388,8.04223160873137,7.47206210581402,7.15048255291783,8.58466868833969 -"Tfru23869_t",0,0,0,0,0,0 -"Tfru23870_t",19.1549692100069,18.5230274104105,19.742457499192,16.6933147029075,18.5374612086199,14.7869264214266 -"Tfru23871_t",5.74835200659068,6.84379236759764,5.70189273132905,7.71206011125939,5.4338239352639,5.97313953770557 -"Tfru23872_t",1.10539969436115,0.964438000814997,0.78636647790689,0.546846271224331,0.374384781959309,0.316467699334897 -"Tfru23873_t",8.09023398255152,7.01385900261629,7.45520931197392,4.87561226187563,5.50047777683539,8.08700077349539 -"Tfru23874_t",22.2428512152826,22.492421530649,20.6567910614347,20.5263978930121,21.6112528863012,19.9432381007066 -"Tfru23875_t",29.7267487037429,34.3152747423709,32.4485518954526,10.181047975031,5.93758018693966,5.67369783012717 -"Tfru23876_t",11.8963599223801,12.2561625906782,10.3501900216183,14.715716618927,16.7188766133361,21.0416883639205 -"Tfru23877_t",72.8585561553458,78.1751245440883,73.6261704193349,157.648343501919,178.245439692334,131.089197148064 -"Tfru23878_t",0.946595794607858,0.66483737340689,0.611372247612118,5.63006593810576,7.37379829706897,6.14650598263777 -"Tfru23879_t",19.1120169741918,11.3676776051545,21.7865985892109,4.69339091047528,4.87932506882337,2.7161319399545 -"Tfru23880_t",11.2092497096735,5.68259873738634,12.7011439549568,1.09844044163702,2.24677608848739,2.33083794285421 -"Tfru23881_t",0,0,0,0,0,0 -"Tfru23882_t",0,0,0,0,0.324615376421067,0 -"Tfru23883_t",44.0499472083945,41.1728911021644,56.3471501276258,34.9287425119406,36.9131476720257,35.6480249618908 -"Tfru23884_t",0,0.246107682543739,0.26403545973516,0.158574532531541,0.530757987724957,0.448650071725385 -"Tfru23885_t",88.2697421047563,106.031201684478,96.3322542168099,149.855577914297,99.0053077075979,54.9864210988476 -"Tfru23886_t",0,0,0,0,0,0 -"Tfru23887_t",0,0,0,0,0,0 -"Tfru23888_t",6.11726044452287,8.83837201678925,4.56550634745942,13.9206885742738,13.7662132447303,11.0398408426018 -"Tfru23889_t",0.588857781108276,0,0.676128186611532,0.60910404551835,0.679568638488963,0.143609952865368 -"Tfru23890_t",0,0,0,0.204467867828905,0.171091398396045,0 -"Tfru23891_t",0,1.36920822369512,0,0,0.738211617444864,0 -"Tfru23892_t",0,0,0,0,0,0 -"Tfru23893_t",88.7163522337484,95.4142124929118,83.3026397550328,82.2113543262278,84.4808149756404,69.1163120869226 -"Tfru23894_t",41.3919739567351,45.1607597467762,48.1864714016667,39.1679095352907,37.2857486376782,21.3108784069558 -"Tfru23895_t",1.7348364271784,2.45913045536455,2.51112107268334,1.25995687447293,1.18207919146652,1.67435575976952 -"Tfru23896_t",22.1665933890928,25.8359693920495,18.9144823673893,14.1341492972089,16.3825167319586,18.2914093700184 -"Tfru23897_t",8.39238573309001,9.72264747927687,7.22712095658197,5.81712136845881,5.99084196237438,7.91259781493019 -"Tfru23898_t",9.8378869562866,11.6891668943155,8.97354412230883,9.43970491498238,10.3076636013642,8.57101373541939 -"Tfru23899_t",103.321209938951,101.481463345796,115.696292332989,43.1933349475501,45.7140082158391,46.0082274928289 -"Tfru23900_t",96.6386881842255,87.9642154616461,87.9207809336713,37.0842199772489,32.3275562638132,41.3421039341751 -"Tfru23901_t",0.437554045684622,1.05364851589038,1.88400301998526,0.452598144933774,0.482964067883597,0 -"Tfru23902_t",0,0,0,0,0,0 -"Tfru23903_t",51.7380978897329,52.2198483972991,39.7019172992015,33.381872933652,41.2340702536809,41.9761384180141 -"Tfru23904_t",0,0,0,0,0,0 -"Tfru23905_t",0,0,0,0,0,0 -"Tfru23906_t",2.4148217226286,3.77464400246359,2.84567112731207,4.60130035394094,4.07021518877126,3.25457956720608 -"Tfru23907_t",0,0,0,0,0,0 -"Tfru23908_t",0,0,0,0.130669113205182,0.108289656537414,0 -"Tfru23909_t",0,0,0,0,0,0.448650071723389 -"Tfru23910_t",0,2.50915367505059,2.01895021304467,1.21254200689234,1.01461178118585,1.14353599676982 -"Tfru23911_t",39.6423965390268,39.4064544943004,37.5293401581063,39.6475974961986,46.5823065164232,35.9186443360395 -"Tfru23912_t",19.5834999906415,20.0477987888333,24.9299426644536,24.3669055326508,20.3893549946638,21.8034840600326 -"Tfru23913_t",1.73499691158424,2.05232406573431,1.57273295581378,1.60573950550417,2.13399325716806,2.20472497203311 -"Tfru23914_t",0,0,0,0,0,0.307325299131889 -"Tfru23915_t",4.17750714666279,6.19490269435425,3.99380058648708,4.10142035762995,2.75779434835597,4.63642887017345 -"Tfru23916_t",0,0,0,0,0.320325305367044,0 -"Tfru23917_t",421.312039508809,403.589527526653,426.477995628023,608.291906790993,250.135624455018,121.086167857964 -"Tfru23918_t",24.5690724520271,34.0348350793271,20.1339492550877,27.4633138510758,14.7485627626779,8.69788582448742 -"Tfru23919_t",6.82831859086628,7.87961078323478,7.93565804516457,4.14531323281562,6.37601526557973,4.40212203110922 -"Tfru23920_t",0,0,0,0,0,0 -"Tfru23921_t",4.24897202836957,7.59898415009498,5.90577273203542,21.8210938803208,27.3564063806276,27.1602482640072 -"Tfru23922_t",2.80309402377744,3.32830650438976,3.69183241443235,2.89947074595454,3.35382795187536,2.41275995393043 -"Tfru23923_t",35.542851710997,30.0355189839919,34.5571968330795,21.4551736000368,20.8398238679053,25.3943733525853 -"Tfru23924_t",63.7367982447841,41.3517857211591,67.9212672223181,61.0446423580099,45.0705646601151,46.0225985146266 -"Tfru23925_t",26.5573626500109,27.1051632168759,29.8369282182508,43.843589732817,40.2387149647083,19.5161215778101 -"Tfru23926_t",11.9069825345359,9.02653216762786,9.39924656269811,6.50030721542681,6.2980495078859,10.1635138295585 -"Tfru23927_t",0,0,0,0,0,0 -"Tfru23928_t",2.70748061524048,2.67718259058556,3.0411557389393,3.00350978197994,2.88681773332887,3.27277759000797 -"Tfru23929_t",0.221663263249202,0,0,1.03178046760628,0.863356990586902,0.405442347139695 -"Tfru23930_t",0,0,0,0.45676133417758,0.191100773504124,0.161537607953686 -"Tfru23931_t",0,0,0,0,0,0.499698023429903 -"Tfru23932_t",12.9374321582881,11.383148428336,13.4264507422286,14.1543032887482,14.3561390559366,12.3172824726107 -"Tfru23933_t",8.88846989732038,16.8008391339245,10.3703756676868,18.9813174230246,30.276754289539,30.8374190937799 -"Tfru23934_t",6.29669986511201,6.53407562491939,5.15858061532944,6.35778411793006,4.50019499028936,7.19470164404499 -"Tfru23935_t",5.28390355982133,5.52407800570415,6.49331082385939,3.4496565059113,5.18942782142207,3.70982737514375 -"Tfru23936_t",0,0,0,0,0,0 -"Tfru23937_t",0,0,0,0,0,0 -"Tfru23938_t",0,0,0,0,0,0 -"Tfru23939_t",0,0,0,0,0,0 -"Tfru23940_t",35.3952348834017,27.3841644739024,36.3564765521622,28.6722073541802,38.7561099158554,41.1847101374714 -"Tfru23941_t",0,0,0.102909980039024,0.0618057210720374,0.31030090036267,0.218581293834914 -"Tfru23942_t",21.0527197159952,22.0486639315678,22.9641532784456,33.8055168110916,36.7907756455457,35.500106152705 -"Tfru23943_t",6.07800396016603,7.60745856721346,5.76636607956248,8.89767438329647,9.18396807453938,9.08220687808524 -"Tfru23944_t",0,0,0.132744432967769,0,0,0 -"Tfru23945_t",14.6317506533499,22.8402328545945,10.6264681856753,4343.39949218578,2552.68323325743,196.56852960581 -"Tfru23946_t",8.50266228040886,28.0841610217447,14.3757813011003,4561.56173883753,3002.58824088096,249.423519599257 -"Tfru23947_t",30.1348962831994,33.5802474376077,26.4193667217107,22.9384802329512,23.0800218403086,22.9436377165669 -"Tfru23948_t",0,0,0,0,0,0 -"Tfru23949_t",29.9207699536837,28.4043745351151,27.5661328967981,26.0530235586798,27.1961837456779,26.6745028929698 -"Tfru23950_t",6.10372874712461,4.86076752410758,4.88374970489542,4.07649038549047,3.86864274691286,4.67668933461569 -"Tfru23951_t",0,0,0,0,0,0 -"Tfru23952_t",0,0,0,0.00462385515225846,0,0.0029432877659554 -"Tfru23953_t",1.87523162436267,0.9783879076125,1.29188778513275,1.84272101865894,1.54192303800007,1.9207831195743 -"Tfru23954_t",29.50302148138,32.3311325423899,27.5688531582002,21.5353299148563,19.5593902524993,12.8594396647963 -"Tfru23955_t",6.14092430055042,5.46277452096898,6.07878472522146,4.19105200071305,3.561718071357,4.09921461539897 -"Tfru23956_t",19.328703227115,21.9032136596521,19.6910896091813,17.2490938123332,13.4493275957192,13.8508017001946 -"Tfru23957_t",8.81479328008763,9.38581975611135,10.8441116011143,24.1902563116638,24.2898494939139,19.8741413999637 -"Tfru23958_t",0.401826195695341,0.460768739439594,0.420183522872011,2.82042711431228,2.6581419002597,2.07893437745521 -"Tfru23959_t",3.86105679794746,3.86879455063514,3.77126033266389,2.97525344380894,2.87087355729329,2.3698742992897 -"Tfru23960_t",11.5724524822357,15.7151684032542,13.9700716506273,16.1404611127821,11.3460874087534,8.15786258444018 -"Tfru23961_t",17.2693640024977,18.8580411853157,17.1892435078489,12.1877719613098,10.7456635880084,11.5965855101181 -"Tfru23962_t",15.7227573574729,16.3273217829882,15.5505306711964,11.6473434901302,11.6324185784093,14.2368112630585 -"Tfru23963_t",0.645524300109914,0.370107052782572,0.317654076695648,0.572330475262028,1.19726417648165,0.742168669692815 -"Tfru23964_t",3.90745938471849,5.56005643903256,5.65917862747369,6.61386549214006,6.14916231021726,8.70646724813384 -"Tfru23965_t",0.860174506192295,0.690445443859911,0,0.88974925420428,0.744510351382106,1.88800525063959 -"Tfru23966_t",6.97029326924673,5.00598072178488,8.3718841621703,26.5629653620521,26.3547994690851,39.3215339063945 -"Tfru23967_t",0,0,0,0,0,0 -"Tfru23968_t",0,0,0,0,0,0 -"Tfru23969_t",24.4659964710874,22.8275213000869,26.1110860367839,21.6841545580219,21.7191320925906,21.419062540617 -"Tfru23970_t",0,0,0,0.119860474244531,0,0 -"Tfru23971_t",0,0,0,1.65378422508673,0.503209995282485,0 -"Tfru23972_t",7.68827089614772,6.36407721323305,9.65529097754123,52.851727704297,54.8299817500385,33.1641790864917 -"Tfru23973_t",5.60567460663573,4.37957817281128,7.46628385429033,20.4877167386392,7.89242794202395,3.66384253413461 -"Tfru23974_t",110.043913781884,134.989690758682,96.4755787825271,256.533397059564,268.851612376465,182.456924105591 -"Tfru23975_t",1.00277638056104,0.715474854291614,1.1034160923415,3.74563982014158,3.47174853509216,1.46733564572254 -"Tfru23976_t",0.124644475922029,0,0.214675715036896,0.257860070704109,0.323652126045931,0.182388901561952 -"Tfru23977_t",0,0,0,0,0,0 -"Tfru23978_t",0.0947129388629622,0,0.163124500490268,0.0979693842472206,0,1.6630906830136 -"Tfru23979_t",0,0,0,0,0,0 -"Tfru23980_t",0,0,0,0,0.0523874959065699,0 -"Tfru23981_t",1.33652872136394,1.68583762542461,1.15095457220918,2.36996846801685,3.13991600465469,1.39693317787222 -"Tfru23982_t",0,0,0,0.987486861673689,0.495776211261266,0.558773271148888 -"Tfru23983_t",0,0,0,1.17430870036871,1.54411638513805,2.37316833306478 -"Tfru23984_t",2.33528488530752,2.83576393157669,2.42355570240156,3.84014847989426,3.36878109814023,2.40953548856078 -"Tfru23985_t",0,0,0.505914097674097,0,0,0 -"Tfru23986_t",5.45511550750597,4.45936611581687,6.56759195819276,5.06665690399535,4.9358578422821,4.54498044859493 -"Tfru23987_t",13.6537003909422,8.49181928374878,10.2298553548973,4.75648168370506,8.05855654220958,11.4460323851617 -"Tfru23988_t",42.4210813400378,47.737580284301,40.2915497343382,60.8722099087167,73.4337833709757,61.9214835379597 -"Tfru23989_t",2.02102601309114,2.39648869661236,2.21506839484762,2.3280718138529,2.50463214437075,2.5876487734451 -"Tfru23990_t",4.95580214647222,5.96688983701055,6.68879847004635,6.94993589316343,8.45509817654873,7.39114729619516 -"Tfru23991_t",51.4033019058656,54.9958898173804,47.3409015472543,45.5748547418157,44.1414435837751,45.9878915942345 -"Tfru23992_t",2.65677281596336,2.00329530956063,1.59458693555436,2.16518441735448,2.75246463878639,2.6506254836483 -"Tfru23993_t",0,0,0,0,0,0 -"Tfru23994_t",0,0,0,0,0,0 -"Tfru23995_t",0,0,0,0,0,0 -"Tfru23996_t",0,0,0,0,0,0 -"Tfru23997_t",14.4865950051118,17.9663826087655,15.9518469129607,12.159696874772,11.8192114439671,8.77451737450763 -"Tfru23998_t",0,0,0,0,0,0 -"Tfru23999_t",0,0,0,0,0,0 -"Tfru24000_t",12.6938756110704,11.4859266787172,8.74508654551399,0.835565806031583,0.898934888550648,0.928730299574388 -"Tfru24001_t",10.7999121797418,11.185652490969,13.0719451244475,9.06054295829508,11.4153843272243,12.4532289458656 -"Tfru24002_t",0.161869704761941,0,0,0,0,0 -"Tfru24003_t",0,0,0,0,0,0 -"Tfru24004_t",0,0,0,0,0,0 -"Tfru24005_t",1.96733160793896,2.68880431396837,2.38099824702947,5.44492755626657,8.28385568183382,8.75293573476898 -"Tfru24006_t",18.2427189034901,18.5040240360063,23.7371527519141,21.9528738806455,24.7092873704892,20.7271327729301 -"Tfru24007_t",18.5544390415467,18.3054332755892,17.0877918082589,18.3927000738731,15.6134021542403,17.7230540603666 -"Tfru24008_t",0.439844904562552,0.462961880261965,0.37877338202845,0,0,0 -"Tfru24009_t",80.3008410680022,69.56237196844,75.1239206402686,88.6481885016642,100.077212048634,83.6656845567363 -"Tfru24010_t",0,0,0,0,0,0 -"Tfru24011_t",0.714222119204654,0.214984606855424,0.3075269541655,1.01582070361332,0.695456534394125,0.718507606897083 -"Tfru24012_t",0.652507780749106,1.17844960223857,0.842862710300201,2.19356304806738,1.27072737643664,1.5515451995008 -"Tfru24013_t",1.54620325346222,0.413702484766777,0.443838748266466,3.73185218890179,2.45353462423776,3.01669005282835 -"Tfru24014_t",0,0,0,0,0,0.185135722368608 -"Tfru24015_t",18.8742242268548,19.6627332984515,16.4610711283454,23.6770272378357,26.4161193508234,37.4313987661593 -"Tfru24016_t",8.32910450190105,7.05028083097811,8.47674004124958,3.09373982080013,2.91641827144227,4.34881225450261 -"Tfru24017_t",11.6251413196393,10.2042645681628,10.5521513220624,13.8748153981999,14.0156144111835,14.9418801936965 -"Tfru24018_t",38.393723941876,49.3649281301298,39.3734614447136,34.6724936138915,20.3635181709483,19.4194700703539 -"Tfru24019_t",0.105939945487323,0.0850359457969541,0.0912304110560326,0,0.0458473167202516,0 -"Tfru24020_t",0.0696026319564602,0.139671717102288,0.119876911296494,0,0.0903651752091786,0.0254619137640338 -"Tfru24021_t",0.669405392601175,1.07463753015115,0.864689832280087,0.692421066352866,0,0.244880716439752 -"Tfru24022_t",3.91226596502222,2.51480079802704,3.58659686431652,2.00730203592496,2.58515573071247,1.87200077445893 -"Tfru24023_t",0,0,0,0,0,0 -"Tfru24024_t",0,0,0,0,0,0 -"Tfru24025_t",0,0,0,0,0,0 -"Tfru24026_t",6.73132051134386,6.66616334715248,6.36130384937374,8.49999096749714,9.9499173026628,8.02691468076004 -"Tfru24027_t",257.726749078508,277.734605408937,218.876445765881,260.328316041908,214.7523283469,220.597057936195 -"Tfru24028_t",325.668587704474,342.443496137597,302.29542442138,366.929836894182,340.101672814045,300.788061717592 -"Tfru24029_t",0.934059126955269,2.11694456560841,0.662419897674346,6.64955181673793,9.27351186531865,9.80868188203804 -"Tfru24030_t",10.1489045764159,14.4823634935798,8.73975092223984,10.497846905309,8.78422280355483,10.3129295010695 -"Tfru24031_t",2.25531212809242,1.3577215775231,3.3987920253155,1.16642743392322,0.976024755950536,1.23755154012834 -"Tfru24032_t",0,0,0,0,0,0 -"Tfru24033_t",20.2573899094077,15.8451646473653,15.5325885476786,17.9964296412769,19.4289707121359,20.7628170955867 -"Tfru24034_t",20.8476751629883,18.5104615984452,18.372305108695,22.892213863879,22.8715305890603,21.114446262802 -"Tfru24035_t",44.1410454222859,51.6081713754497,40.2759070640082,56.1953409887004,40.1964406661894,26.8458866256017 -"Tfru24036_t",4.37450482596886,4.62857194199421,5.90752000207448,29.926110714485,34.5068065936638,30.2597217606783 -"Tfru24037_t",0,0,0,0,0,0 -"Tfru24038_t",0.290091080011904,0.279420600899107,0.199850044108933,1.32028630124327,0.552384176451319,0.212241228682243 -"Tfru24039_t",0,0,0,0,0,0 -"Tfru24040_t",0,0,0,0,0,0 -"Tfru24041_t",20.3402539894247,25.6562877684153,19.7239591854245,23.2496398032308,21.0078654999009,14.0688082003408 -"Tfru24042_t",0,0,0,0,0,0 -"Tfru24043_t",5.68873167980781,4.64777483188406,5.07382288526139,2.83708438130192,3.25321915329843,3.04723996720857 -"Tfru24044_t",22.4502809611927,20.5947502066719,19.0645921716939,15.2510696218617,15.8073574605041,17.1098390290818 -"Tfru24045_t",107.85115936875,132.133219290037,106.807695533002,55.1925089173294,58.4658613099998,34.6779222669091 -"Tfru24046_t",26.1024408245489,21.6561909062379,25.12266376937,19.5125341230979,20.1244582186471,20.5418476704343 -"Tfru24047_t",0,0,0,0,0,0 -"Tfru24048_t",316.517398308626,330.144556384986,340.799250241962,191.311533710406,269.188474771482,292.151668162214 -"Tfru24049_t",0,0,0,0,0,0 -"Tfru24050_t",6.13921984099039,8.81822757914414,6.95631884302249,5.34762115860213,6.15270990385777,9.45616305021196 -"Tfru24051_t",3.14057467002915,2.52087856174933,3.38064075808412,4.06069342661763,4.07741161989711,5.16995803556912 -"Tfru24052_t",1.12749506232382,1.02055276010856,0.516459994056495,0.942934341929416,0.602142057461808,0.614299569938098 -"Tfru24053_t",24.2840076594503,20.9958069282915,11.8185573334094,27.6511626250284,18.595537717027,15.683169045692 -"Tfru24054_t",7.79477722621678,9.73267082719366,13.7978942824487,11.1983046169181,10.1199680236836,11.0890571851712 -"Tfru24055_t",12.5954582454708,10.6081694211514,17.6245612540725,11.2748084789832,12.2647733255251,11.6576083685634 -"Tfru24056_t",0,0,0,0,0,0 -"Tfru24057_t",57.9516234049846,63.5332588330731,55.1501816851463,32.544468407733,33.8515171364741,35.2245604410902 -"Tfru24058_t",0,0,0,0.0800911003016448,0,0 -"Tfru24059_t",0,0,0,0,0,0 -"Tfru24060_t",0.351507852600199,0,0.302701740449514,0.363593488817091,0.608484052872963,1.02870393014858 -"Tfru24061_t",37.063401516815,34.7084216999185,46.1735893086269,48.3055337745788,51.9690122627986,38.3252725976238 -"Tfru24062_t",0,0,0,0,0,0 -"Tfru24063_t",0,0,0,0,0,0 -"Tfru24064_t",0.240947543321551,0.38680786816626,0.414984986428875,0.913850174091903,0.625644931993185,0.587620074821967 -"Tfru24065_t",224.588330736736,285.828528904974,190.545961075449,141.565450534228,112.901843628075,85.6883816125371 -"Tfru24066_t",0,0,0,0,0,0 -"Tfru24067_t",0,0,0,0,0,0 -"Tfru24068_t",10.2818670078488,8.65564392755325,9.07020916606634,4.40979207481743,2.82173127205417,4.21998918210952 -"Tfru24069_t",12.040575172455,12.5202273158571,12.0772571444006,8.20868557326141,6.27660219685816,4.6549271692615 -"Tfru24070_t",0,0,0,0,0,0 -"Tfru24071_t",11.3298098483064,10.2473767826043,11.6124293410611,21.0745738625051,20.2061401817327,22.1207327630104 -"Tfru24072_t",0.209589297558705,0.0560777588498832,0.0300813787806378,0.108397726187881,0.24187557361603,0.127785987165026 -"Tfru24073_t",4.99519698878949,9.0847934397768,9.37167892145137,6.0236950506469,5.91715247732069,5.09405045725521 -"Tfru24074_t",15.988619285384,12.72117874277,13.0439688221751,11.3157092129018,9.22579660800041,9.02992531672995 -"Tfru24075_t",0,0,0,0,0,0 -"Tfru24076_t",0.525064854821547,0.421459406356154,0,0,0.681692290484241,0.19207831195743 -"Tfru24077_t",29.5124536015758,24.3179893740007,30.6625884255756,27.735589532439,35.4903841180604,27.8981307812989 -"Tfru24078_t",0,0,0,0,0,0 -"Tfru24079_t",12.1593966379724,13.7528858916216,14.2787597304143,14.8642759178247,10.524372203967,6.06563090391874 -"Tfru24080_t",13.7324638262965,17.5067732916361,6.95631802872826,21.7247084137654,10.487572472101,11.2291923076574 -"Tfru24081_t",69.3492860883416,89.1018889005586,67.0350193659464,70.1690110128905,74.2245197542952,72.8727025088356 -"Tfru24082_t",0,0,0,0,0,0 -"Tfru24083_t",0,0.152220101618475,0.163308613921973,0,0,0 -"Tfru24084_t",0,0,0,0,0,0 -"Tfru24085_t",0,0,0.0752034469515945,0,0.0755861167550094,0.0638929935825132 -"Tfru24086_t",0,0,0,0,0,0 -"Tfru24087_t",3.90885790275167,3.33064555917819,4.55721045464151,4.60308836307735,5.4131995770259,6.59968430490813 -"Tfru24088_t",0.543170539470565,0.145330829777984,1.09142243916387,0.561845973021237,0.470132614127063,0.132467801349952 -"Tfru24089_t",34.7629143896142,23.2529326731712,23.0757886231398,17.979071066082,18.1784610081992,22.2545905394058 -"Tfru24090_t",4.70458109804959,4.85521236003456,5.20889154838034,6.25671675403313,7.56223980725429,8.85096861283208 -"Tfru24091_t",0.145346672614961,0,0.125165598559574,0,0,0 -"Tfru24092_t",0,0,0,0,0,0 -"Tfru24093_t",0,0,0.698317721693377,0.167758385766959,0,0 -"Tfru24094_t",0.897679044352238,1.21748037797798,0.853007704848152,1.69699289714299,0.884140332536672,1.35884435872611 -"Tfru24095_t",22292.6791747695,20945.7958780836,24367.9584647641,29395.4544197541,27230.4123777708,13116.7786940858 -"Tfru24096_t",16.9954366091238,16.521412949346,16.7828038858432,19.7904090121496,18.0353235907642,17.3673230823775 -"Tfru24097_t",324.922484578791,393.641402763743,329.063176900794,6745.74512812654,3894.59532729491,1638.41424083969 -"Tfru24098_t",70.0224783561437,165.765427019172,82.3523062227656,11385.0278942187,6231.83811008205,1118.36866566096 -"Tfru24099_t",6766.38954138258,7219.71663422161,7194.25617918236,18129.5395457066,14736.5595671557,6806.89387734905 -"Tfru24100_t",44.3695522828842,46.2343492481721,45.1835818886428,38.9743916327163,36.3133809350168,36.2901490950949 -"Tfru24101_t",25.361623176286,26.8779772355434,21.0723960424011,21.8271860085043,20.3221475276434,17.1058421214919 -"Tfru24102_t",53.79723671859,45.3308690781854,50.3895047481823,45.7570543369769,39.1705838133585,25.5560339794044 -"Tfru24103_t",6.18481301384889,8.68775218010231,5.10414560506436,11.4621174373412,7.58365247491671,8.86152703018329 -"Tfru24104_t",8.44797084852545,11.6784282431649,7.27498819784252,6.79655761777646,11.3742326307985,12.0183077872806 -"Tfru24105_t",103.499815763094,86.575292464169,109.352530331179,143.245356395409,94.402267623639,61.1550775361871 -"Tfru24106_t",0.295811185814956,1.00912815606403,0.509476873010098,7.80253703378788,9.72931719752156,9.08990321376008 -"Tfru24107_t",7.14044125759417,5.80225331730612,7.28771115726511,4.28567225591015,5.34099591005492,5.54668955411173 -"Tfru24108_t",7.03342689249328,3.13644209381324,6.72983404348223,13.3379620758158,11.4989335201063,9.434171973351 -"Tfru24109_t",5.52110824252852,9.34247494018614,10.6655318388935,44.1439952657254,17.3066698732767,14.4109909362022 -"Tfru24110_t",4.93801451252019,5.86825921521851,7.56592602102171,7.4295194722564,5.71719539296707,8.11714148852164 -"Tfru24111_t",0.663988676025742,0.685248263251255,0.435653539886693,2.28939370263829,2.40828690252619,1.75812741693816 -"Tfru24112_t",0,0,0.191898450842,0.461001824017425,0,0.163037293969172 -"Tfru24113_t",18.4612510846853,17.0693990446331,15.4954662850971,10.8774630660022,9.91092732016032,11.3697537648237 -"Tfru24114_t",75.2857778082503,68.5465752511026,76.8237864193383,85.3449442815423,89.1669769047888,68.4401181973215 -"Tfru24115_t",0,0,0,0,0,0 -"Tfru24116_t",0,0.784110523453309,0.210307313858819,6.56793587066686,9.3006079942036,6.61106748132551 -"Tfru24117_t",36.9021283388635,40.0938610105749,31.1579453237543,16.6014465815822,15.7621720651906,16.8670197522599 -"Tfru24118_t",10.3054927344759,8.40437206786756,9.51356814488336,10.3187047135441,11.7027188107991,10.0129538088113 -"Tfru24119_t",0.53509794121941,0,0.691201107969114,2.76747910277977,3.9367367943039,3.97807526475168 -"Tfru24120_t",0.0628349863660789,0.25218214292066,0.37877338202845,1.03992632852397,1.79473213351124,2.11472905909751 -"Tfru24121_t",0.395033119614957,0.422780595717772,0.226789078267818,1.63446101242542,1.59560159946155,2.40850547909004 -"Tfru24122_t",0.424723846165053,0.272734095114194,0.365751850189251,0,0.220567778518662,0.559338259289585 -"Tfru24123_t",0,0,0,0,0,0 -"Tfru24124_t",0,0,0,0,0,0 -"Tfru24125_t",9.9791331524095,7.26493562337679,8.59355189668414,12.7227589028897,11.2485505022814,10.5271649426393 -"Tfru24126_t",16.0282955682367,25.9086624538941,11.5657953816358,14.4069135818919,12.4857324783429,16.7815788341755 -"Tfru24127_t",0,0,0,0.123435857709211,1.0328671067943,0.436541618085069 -"Tfru24128_t",0,0,0,0,0.143703249640947,0.242944900499517 -"Tfru24129_t",140.240429749946,106.120456102426,161.408768692283,240.616320557621,226.253037500427,124.889165384273 -"Tfru24130_t",7.29015666198511,8.91682710968392,7.77268022790612,7.54080876187181,5.10799732814638,7.87362336618888 -"Tfru24131_t",0,0,0,0,0,0 -"Tfru24132_t",0,0,0,0.589144703913794,0.739462823576126,0.520890337511676 -"Tfru24133_t",0,0.471562972146498,0.505914097674097,0,0.50848842180616,0.429825593191227 -"Tfru24134_t",0.0727677581389757,0.116818544854023,0,0.112904517748746,0.0944744620852997,0 -"Tfru24135_t",77.9746797995182,82.2295944673132,78.5267091763021,29.6974689584507,45.0402258981433,56.0943264434903 -"Tfru24136_t",0,0,0,0,0,0 -"Tfru24137_t",6.2549446119948,10.2145745725343,3.80766926144389,8.14328061539381,9.24091217909318,13.8079402690836 -"Tfru24138_t",0,0.177456592149959,0.380766926144389,0,0,0 -"Tfru24139_t",55.5877043906883,49.5656451546998,53.2845692454753,48.7830335856763,49.2015832812578,41.6821438642951 -"Tfru24140_t",21.8540507141941,14.1245855103143,15.397905763339,19.3760935560837,19.1610805973949,16.6121783314534 -"Tfru24141_t",16.4991403189256,18.0633213696494,15.5592203046509,13.7090899791917,17.0430388485951,16.8207665332972 -"Tfru24142_t",0.477331686201406,1.91572457434615,0.82211040872084,0.493743430836845,2.47888105630633,5.23849941702083 -"Tfru24143_t",3.15950308012194,3.57651183793072,3.55798603118527,2.34635258164317,7.3625396850757,13.9881910501689 -"Tfru24144_t",50.6592965899906,124.528898721521,38.0603067327328,131.44677183557,136.392240526078,129.675075115144 -"Tfru24145_t",45.1011883265042,47.955699782995,47.1976533452881,42.2376850475248,44.1063059659923,38.8135935557007 -"Tfru24146_t",0.0724227385960754,0,0,0,0,0 -"Tfru24147_t",0,0,0,0,0.498040029577441,0.420993560454568 -"Tfru24148_t",0,0.354913184299919,0,0.914724671866154,0,0 -"Tfru24149_t",0,0,0,0,0.541831924875701,0.274806526794535 -"Tfru24150_t",0.305863022226144,1.14571489106527,0.702385591916834,3.26925261971581,5.11820748842537,4.84857874843999 -"Tfru24151_t",0,0,0,0.21643547653122,0.181105465300919,0.229632851157077 -"Tfru24152_t",0,0.0696627117944055,0,0.0897715328794263,0.225352823300576,0.0634969626305555 -"Tfru24153_t",13.4684940647099,16.4027444635908,12.5760673334053,18.3619178603108,17.9998029854316,16.5744233807001 -"Tfru24154_t",0,0,0,0.12854858554332,0.0537824292295259,0.0454623223567882 -"Tfru24155_t",0,0,0,0,0,0 -"Tfru24156_t",0,0,0,0,0,0 -"Tfru24157_t",0.146871288061971,0,0.126478524418591,3.79802639105265,4.70351790170945,1.18202038127649 -"Tfru24158_t",2.68575373310254,3.27681993688672,3.0529522083444,5.22282053693399,3.99833159295105,4.24439032049156 -"Tfru24159_t",0.475979471792903,0.191029759254914,0.614836113037682,0,0.205988227530649,0.69648793004394 -"Tfru24160_t",2.13976273124768,2.80092144663024,2.01275306962688,14.8463541961975,14.2179499666306,11.7775917927503 -"Tfru24161_t",0.920661663248739,1.28530359400401,1.13276212799321,6.24957438483896,4.39952960288623,2.96089944125101 -"Tfru24162_t",1183.12902250254,1192.69920609503,1246.41586201595,72.451114291208,229.51973842286,335.427905947372 -"Tfru24163_t",42.0051883857237,57.4347439282593,48.6462572884469,23.9720948489061,23.8200524491045,27.9771996451099 -"Tfru24164_t",3.63387993366232,5.48762394199801,4.0840323530003,2.61206202120137,1.22611321064614,0.585810687494802 -"Tfru24165_t",13.829255750731,13.8189601546564,15.8787909626171,12.4558253190285,13.7610746806225,12.6646931781114 -"Tfru24166_t",30.2942260144118,32.9850032887754,29.7112623171765,85.012892291801,108.645894265268,94.7116030379743 -"Tfru24167_t",0.0591622371629911,0.0474883838147779,0.152843061903029,2.78443478460666,2.32991543414332,2.25083317674059 -"Tfru24168_t",16.3217359771832,15.8551356603528,14.9418806607185,7.50351743666168,7.50895591851953,11.2781571268353 -"Tfru24169_t",43.5578277166646,48.2341554367242,38.6662917508263,26.9985418883971,30.9451525270768,50.596612684251 -"Tfru24170_t",0.0567254400887559,0.0455324139209889,0,0.410730524504384,0.294586810202508,0.332019229311966 -"Tfru24171_t",0.0444734657339584,0,0,0.0920051284566274,0.230959801963957,0.0650768235324274 -"Tfru24172_t",11.0782914423887,8.29950830978272,13.0381290314936,41.6350504491166,58.3308861015087,80.1072098396527 -"Tfru24173_t",32.0565911364734,25.6202954916504,34.1500336885749,28.7280717257964,27.8656673127769,19.8143942861349 -"Tfru24174_t",0,0.0996063589615725,0.106862209700789,0.128358705801011,0,0 -"Tfru24175_t",0,0,0,0,0.0640086657731682,0 -"Tfru24176_t",0,0,0,0,0.0362481776262807,0 -"Tfru24177_t",527.436115456225,423.090862122694,608.812537193688,279.968452491937,273.263318164006,205.709676031829 -"Tfru24178_t",8.05306570235177,3.51133043875423,6.76368232121571,2.26245510556244,1.89314150887931,2.98232834660531 -"Tfru24179_t",4.73297897303929,7.12325757221668,4.84003029359593,32.1280936685383,33.2845062020475,26.4040045733031 -"Tfru24180_t",308.706787479558,321.466589588431,393.042397196208,58.8836941755033,208.808114132009,504.93087952893 -"Tfru24181_t",35.9535934487974,36.5741044159917,38.0121558472958,5.52323159919182,25.8811988251644,53.9121499324584 -"Tfru24182_t",0,0,0,0,0,0 -"Tfru24183_t",14.1535685110688,19.9532137230737,13.1410305146113,12.0823721665357,20.0230609257648,28.1853721279749 -"Tfru24184_t",0,0,0,0,0,0 -"Tfru24185_t",19.4952309732785,22.9886948921538,19.1248842449795,18.2944934373231,18.9612656236765,19.7776328867172 -"Tfru24186_t",21.9458821080316,24.6617493141859,24.0710310689079,18.1603449978193,32.4579671705054,40.5072209121591 -"Tfru24187_t",118.524193980099,102.438795837903,119.347391309334,172.137200192901,155.616889751307,103.551008433611 -"Tfru24188_t",8.94407053080049,7.79006577126168,7.25174279943451,10.5732433554111,11.0591398202767,5.52277901022301 -"Tfru24189_t",17.4045402076305,19.5718147413586,17.6540840757184,10.6459738951753,10.791198011384,13.0398981504168 -"Tfru24190_t",0,0,0,0,0,0 -"Tfru24191_t",0,0,0,0.140159425527878,0.23456078812361,0.0991371932683511 -"Tfru24192_t",12.6590978696702,13.6252630000072,12.3384132026651,10.9516351124797,11.4549206802831,9.47235511022944 -"Tfru24193_t",0,0,0,0,0,0 -"Tfru24194_t",5.87485152247884,5.73130381532198,4.90347510053613,5.46915800311582,5.67160162784092,5.22403413263458 -"Tfru24195_t",82.6146772212509,72.7333907148051,79.4184920332597,66.187489994967,66.3949415532766,64.0179217360995 -"Tfru24196_t",1.76554206875196,2.48004134037947,2.47065054529766,1.67405828739077,1.65548156941882,1.13026817544127 -"Tfru24197_t",21.0025941928619,23.0830074865832,21.4254620365093,25.4012005033601,25.7295141434052,16.5482853378709 -"Tfru24198_t",4.04684132008802,4.31738904072157,4.10253145425082,2.49039369505023,2.61592488706148,3.78534819662448 -"Tfru24199_t",0,0.0517128105958471,0,0,0,0 -"Tfru24200_t",8.87332769988031,6.31830115150622,5.79258713878943,9.91860738744135,10.4053882840525,9.73807591797807 -"Tfru24201_t",0,0,0,0,0,0 -"Tfru24202_t",0,0,0,0,0,0 -"Tfru24203_t",0,0,0,0,0,0 -"Tfru24204_t",0,0,0,0,0,0 -"Tfru24205_t",0,0,0,0,0.211993715213758,0 -"Tfru24206_t",0,0,0,0.3064134126491,0.307674940698106,0.303424131724008 -"Tfru24207_t",0,0,0,0,0,0 -"Tfru24208_t",0,0,0,0,0,0 -"Tfru24209_t",0,0,0,0,0,0 -"Tfru24210_t",0.123182370632621,0,0.0530393812077961,0.318544148926996,0.639711240337118,3.65005120669838 -"Tfru24211_t",0.488432423089811,0.940932628143971,0.672983404348222,1.21254200689234,2.6210804347301,3.64502098970379 -"Tfru24212_t",0,0,0,0,0,0 -"Tfru24213_t",0,0,0,0,0,0 -"Tfru24214_t",0,0,0,0,0.079555628357023,0.2017452729531 -"Tfru24215_t",0,0,0,0,0,0 -"Tfru24216_t",0,0,0,0,0,0 -"Tfru24217_t",2.40425954436724,2.22675305504627,1.67227301630832,1.29128716749405,1.88087544466758,1.2854552963139 -"Tfru24218_t",0,0,0,0,0,0 -"Tfru24219_t",0,0,0,0,0,0 -"Tfru24220_t",0,0,0,0,0,0 -"Tfru24221_t",61.9164494763054,64.7161421424932,60.5693984690234,59.3916276210869,64.8487201184584,68.9933889991737 -"Tfru24222_t",7.87277770150278,7.71450239950899,6.39812011395561,6.59232608344918,5.75221080814288,9.12625229065081 -"Tfru24223_t",9.43678204829958,11.6392077152604,17.0458399265735,16.6655316929039,16.7341449938049,10.609037723457 -"Tfru24224_t",0,0,0,0,0,0 -"Tfru24225_t",0,0,0,0,0,0 -"Tfru24226_t",0,0.0542069976020776,0,0,0,0 -"Tfru24227_t",0,0,0,0,0,0.0271129509600254 -"Tfru24228_t",0,0,0,0,0,0 -"Tfru24229_t",0,0,0,0,0,0 -"Tfru24230_t",0,0,0,0,0,0 -"Tfru24231_t",0,0,0,0,0,0 -"Tfru24232_t",0,0,0,0,0,0 -"Tfru24233_t",0,0,0,0,0,0 -"Tfru24234_t",0,0.120632388223586,0,0.155454103447736,0.390235300456095,0.659732305828741 -"Tfru24235_t",16.9413190726952,24.4027324785221,21.3839547196559,50.6509835567875,56.443619484662,69.6151230077759 -"Tfru24236_t",11.4160442302664,8.86973802923752,10.9652914445414,18.8482683911096,14.3147463553485,9.79800169706195 -"Tfru24237_t",43.8712393656879,28.1227672781622,44.4699867868723,11.9751806543493,11.8662665252017,12.2595767559412 -"Tfru24238_t",1.28137848269129,1.34995577250398,1.58622637488177,0.414198492980384,0.346586483881406,0.527345603848808 -"Tfru24239_t",0,0,0,0,0,0.128319540347344 -"Tfru24240_t",3.53956015632066,3.76885453663284,3.42133652468518,14.1210988533273,10.8789414543315,12.1012259422738 -"Tfru24241_t",0,0,0,0,0,0.0273600136354102 -"Tfru24242_t",0,0,0,0,0,0 -"Tfru24243_t",0,0.130811842903947,0.0701704325581318,0.0852981190731405,0.14105498412865,0.359421230198199 -"Tfru24244_t",0,0,0.267451815036724,0.160626328701081,0.336015916443249,1.07933099510275 -"Tfru24245_t",0,0,0,0,0,0 -"Tfru24246_t",0.155287202904709,0.124646035151543,0,0,0,0.736454792827808 -"Tfru24247_t",0.189782477646342,0,0.0544771957586099,0.0654358763759673,0.328526405052646,0.138851791776456 -"Tfru24248_t",0,0,0,0,0,0 -"Tfru24249_t",0,0,0,0,0,0 -"Tfru24250_t",0,0,0,0,0,0 -"Tfru24251_t",0,0,0,0,0,0 -"Tfru24252_t",35.127578315526,46.7166975777877,34.1986351008028,117.497028273512,84.1713954917162,41.0668841621661 -"Tfru24253_t",0.589960511035446,0.473549894782195,0.508045758198272,0.610244689798347,0.817009486722686,0.388472990475702 -"Tfru24254_t",0,0,0,0.0421225612347478,0,0.0297940183356169 -"Tfru24255_t",2.46055496820139,0.564297113112842,3.02701740449514,0,0.608484052872963,1.02870393014858 -"Tfru24256_t",3.15453983924407,3.16511016631104,3.35992949651126,1.07335528442792,1.61666155846065,1.48803751555954 -"Tfru24257_t",17.6968604323286,20.7487707744568,20.890360587046,19.745062739454,20.1361415035345,20.439860131612 -"Tfru24258_t",23.3267391340009,21.3938784952362,22.8788736282799,10.4543279122165,16.093013260298,15.818672757347 -"Tfru24259_t",11.5490983588243,14.1296368605433,11.7902663494598,8.18891543826962,10.0767522614079,8.8586006401653 -"Tfru24260_t",8.23097618570457,6.77065151587538,8.66977001067224,8.51397579198497,9.0082738305286,9.45616305021196 -"Tfru24261_t",3.1308214945881,1.67536658427291,1.34805681926895,0.539744371598041,2.25819392292916,2.29062334756687 -"Tfru24262_t",10.0090487950357,11.7218397392805,12.8583206113994,10.1834582610099,12.4976919922111,11.1645518825256 -"Tfru24263_t",0,0.117890743036686,0,0,0,0.107456398297863 -"Tfru24264_t",0.277720253789909,0.222920677742098,0.239159391627881,0.574537810428328,0.360564517280921,0.203190280417778 -"Tfru24265_t",0,0,2.06702027143424,0.827607962467567,0.69251274112548,0.585381469826686 -"Tfru24266_t",23.9636156692326,33.5509324141882,28.6417875510415,7.19408461193094,11.8607008355291,11.6884376063276 -"Tfru24267_t",0,0,0,1.53803261953091,0,0 -"Tfru24268_t",26.6409969779134,26.7156197113336,18.1021426573597,6.94586762129469,5.55935560383325,4.80612978659773 -"Tfru24269_t",0,0,0,0,0,0 -"Tfru24270_t",6.88609645233117,5.52733647331449,1.18599534298011,6.41057044223028,10.7282721057698,12.0914871713303 -"Tfru24271_t",0.156153116675553,0,0,1.93826417458627,2.567961044699,1.59946252336299 -"Tfru24272_t",0,0,0,0,0,0 -"Tfru24273_t",0.252391689871301,0.202589929235576,0.0931489905160093,0.895095387062159,1.40434463275723,1.16071357612044 -"Tfru24274_t",0,0,0,0,0,0 -"Tfru24275_t",0.639835314329379,1.59210864853505,0.82649332788386,8.14056191222849,16.3924584297201,13.6224923149093 -"Tfru24276_t",0,0,0,0,0,0 -"Tfru24277_t",0,0,0,0,0,0 -"Tfru24278_t",0,0,0,0,0,0 -"Tfru24279_t",0,0,0,0,0,0 -"Tfru24280_t",27.4087908771711,22.5212285095335,24.0221296262522,8.89119444564881,8.14170457618244,12.1031584986304 -"Tfru24281_t",8.04411343848355,8.55212492288961,10.000866252949,22.7028051089672,20.241837448156,18.3966444122069 -"Tfru24282_t",9.40414665352024,11.2260140384188,8.80441549087026,7.03371812838527,6.05253009538247,6.45700685891339 -"Tfru24283_t",0,0,0,0,0,0 -"Tfru24284_t",0,0,0,0,0,0 -"Tfru24285_t",23.6734443214339,27.2845406763899,22.059170620128,22.9804745959438,19.9647838446252,21.7353164343383 -"Tfru24286_t",0,0,0,0.0828396985960769,0.0693172967762813,0.0585939559832009 -"Tfru24287_t",0.988357373781735,0,0.851126070205105,1.53350900871679,0,0.361559175449281 -"Tfru24288_t",0.286724835397432,0.230148481286637,0,0.29658308473476,1.48902070276421,0 -"Tfru24289_t",32.2188453077256,31.842429602024,28.5587086142525,34.7378263894205,30.0665614857759,34.7828508449083 -"Tfru24290_t",9.3712983666178,17.4757252438383,7.37722512118622,114.02107452042,84.5938526858191,61.0495213937487 -"Tfru24291_t",6.81625775021886,9.50634604194813,7.63078545701128,25.9110142852147,21.8289025539781,35.0961751341285 -"Tfru24292_t",3.65262507701945,2.11368923713501,4.82792442249812,2.28449943327543,2.27920037802618,2.48594781906482 -"Tfru24293_t",48.6468464446183,51.7578630130363,44.46799505014,22.702891659589,22.537484731123,29.5096648485803 -"Tfru24294_t",0,0,0,0,0,0 -"Tfru24295_t",40.0837312295788,34.0594895098493,19.7181144536399,2.15314797284886,2.30984257682081,4.33457537530364 -"Tfru24296_t",0,0,0,0,0,0 -"Tfru24297_t",9.04323868522601,8.8368399710245,11.2863831462455,7.59178666821831,4.65096352114053,4.79446644511527 -"Tfru24298_t",25.8493436730286,14.2647782376294,17.3907950718206,11.6979199151044,15.3817729590814,10.6381821862017 -"Tfru24299_t",0,0,0,0,0,0 -"Tfru24300_t",0.742857029329519,1.30096794244986,0.988647243927955,0.628689384602542,0.292258216713501,0.444682908711736 -"Tfru24301_t",12.3569063563136,13.7130326095744,14.4262928187775,11.409226287294,9.54683247219786,9.82955547075339 -"Tfru24302_t",10.0812452125737,11.8008633779723,10.1284002354408,11.7313439166834,11.6342150909311,7.99045777742911 -"Tfru24303_t",13.2141014051198,18.0519684469187,13.3992971581583,91.9067873461459,91.7949691050037,85.881770797639 -"Tfru24304_t",33.0974733389457,34.1759300718375,34.5542281517607,19.6114122256129,16.1979283549563,14.8879376427705 -"Tfru24305_t",9.91621621282737,6.7588435528224,8.68481024537259,4.29928440038749,5.74276484420957,6.47836787946026 -"Tfru24306_t",2.5361623176286,2.54466056667866,2.45702431587511,1.96752099231588,1.92074305746503,1.97152078688381 -"Tfru24307_t",6.88768677918334,8.95479570086978,7.68568807044332,5.71966985930164,6.46531872114384,5.11025901558798 -"Tfru24308_t",13.5358225270984,9.15253351806708,14.253753145948,14.8382439109637,12.1614222984229,7.750410345883 -"Tfru24309_t",28.3682334388555,28.9193789050796,28.2713719712417,31.1721303508696,24.0436559369191,17.799000290404 -"Tfru24310_t",0.807791989782145,0,1.39126360574565,4.17782854110873,0,1.77303036436696 -"Tfru24311_t",0,0,0,0,0,0 -"Tfru24312_t",15.6125478955787,12.8899443218307,12.2923694387144,10.0741137534286,8.94444633650119,10.4436207846589 -"Tfru24313_t",0,0,0,0,0,0 -"Tfru24314_t",0,0,0,0,0,0 -"Tfru24315_t",0,0,0,0,0,0 -"Tfru24316_t",0,0.0646534084534847,0,0.0833162452802346,0.139432107992942,0 -"Tfru24317_t",0.258493466989069,0.51871926936142,0.22260220297672,0.267381057930107,0.335602358392242,0.567369783012717 -"Tfru24318_t",0,0,0,0,0,0 -"Tfru24319_t",1.95372969235924,3.13644209381324,2.37523554475843,3.32854668558683,1.3926044055492,1.42941999596227 -"Tfru24320_t",16.8959416970509,20.3430685526099,10.9124822967638,15.5349888406319,8.53067447309889,9.27126600733072 -"Tfru24321_t",11.042216485057,11.1391047363758,10.6655318388935,4.01309047870231,4.52039884749763,5.45870868795539 -"Tfru24322_t",0,0,0,0,0,0 -"Tfru24323_t",0,0,0,0,0,0 -"Tfru24324_t",57.1424827466081,49.4271597599627,51.3671189118429,27.9911348517879,31.3776650310114,38.1393753016009 -"Tfru24325_t",86.4384223428766,75.6190749901446,84.4730325168882,39.6821309962745,40.7701901669188,60.399191736903 -"Tfru24326_t",1.50639296279837,0.930117310579098,2.19531827763248,0.599302371222653,1.70501428056748,1.1021321072316 -"Tfru24327_t",35.7385331681053,39.6667676570498,51.4544396987632,16.7291891860013,17.7572133183774,15.2293107234697 -"Tfru24328_t",67.3741454675396,74.5470949971847,57.082153437599,88.2926562514113,88.6382210814303,64.0055650752163 -"Tfru24329_t",5.1600282179417,5.64798392274236,6.31647875451707,12.7481045005509,18.7136645022273,14.5394507000467 -"Tfru24330_t",0,0.094510868979656,0,0.243584705892879,0.15286722701819,0.0430729220927664 -"Tfru24331_t",0,0.275238795987692,0,0,0.296791201299262,0.250877795209705 -"Tfru24332_t",3.52491091348545,3.77250377717198,1.51774229302229,4.86147378054484,21.3565137158587,16.7631981344578 -"Tfru24333_t",0,0,0.120777489094214,2.61131751066966,1.09252854568426,0.923515089211017 -"Tfru24334_t",3.77390364402987,2.89753341869856,3.81510611547015,70.9447592183691,64.0506714600818,56.7831509724153 -"Tfru24335_t",7.67189101082652,8.14291381337172,9.28209185997265,12.2642141854356,13.9939851329595,14.2413383899607 -"Tfru24336_t",35.5940545453672,31.0102233825146,33.3671233778073,38.0499524681605,39.2375790441638,48.9054771262422 -"Tfru24337_t",106.305975931258,133.6677586391,103.16186120481,72.3675063819567,89.1682250625643,64.9934201658287 -"Tfru24338_t",1.81317359938376,1.69796595366508,1.04094555348826,3.43844346079184,3.13872709287708,3.09536272506938 -"Tfru24339_t",0.0807792084340841,0.0648399086701775,0.0695631884302249,0,0.0699171579983837,0.0591010190638247 -"Tfru24340_t",25.465645458845,22.1266188336981,21.9297951526284,22.539387617702,24.9953839844222,25.5464154903382 -"Tfru24341_t",6.78110664522894,8.31579097743084,6.81282527047584,8.57298010852135,10.9233802002856,13.9192175840003 -"Tfru24342_t",9.60799205042074,8.60446425074945,7.52176631041373,8.29563631999598,7.35385760119106,6.91336684247538 -"Tfru24343_t",9.83272577003436,9.97408755878228,8.56052201801147,7.06926285797524,7.24800377449482,8.91342185906635 -"Tfru24344_t",0.584759003049518,1.56458248299268,0.839277447418027,1.41135013176564,2.36193461822846,2.56698625725011 -"Tfru24345_t",0.0722359215575644,0.115964754973318,0.124412237261279,0,0.187567956109164,0.158551315115334 -"Tfru24346_t",12.0397036774367,21.6903949258454,13.8240221593823,25.1840598352959,33.5780491278862,24.272826173474 -"Tfru24347_t",5.73801172344387,12.6364011152668,6.90515152403704,10.9574724265578,12.288767034532,13.3479289290207 -"Tfru24348_t",3.73898756145524,3.18878883251387,5.23223536899383,8.33938835060173,10.9222464344624,8.20673955957199 -"Tfru24349_t",6.69910332013697,7.84786480801114,11.6938118481844,6.74215167625484,5.95501311227613,7.15326127289741 -"Tfru24350_t",62.5238518368146,64.3259702235752,66.5113840345763,36.2412228864943,32.6709669172171,26.483793058831 -"Tfru24351_t",0,0.0471562972146745,0,0,0,0.0859651186382905 -"Tfru24352_t",0,0,0,0,0,0 -"Tfru24353_t",5.02992064746246,4.46693281641172,4.14720664781468,5.53495820555953,4.3535677489949,3.36687588857865 -"Tfru24354_t",4.05352295132647,4.86264935435308,5.21687029245547,6.128073292168,5.64268702425041,4.7581647585637 -"Tfru24355_t",0,0,0,0,0,0 -"Tfru24356_t",0.390342483708326,0.487387232957039,0.560240443733355,2.15340449339683,1.87697068452037,0.9519627231757 -"Tfru24357_t",0,0,0,1.47703417270172,1.64790582024519,0.174121982510985 -"Tfru24358_t",0,0.0768035364658139,0.0823983097578974,0.494868131134878,0.331270361359085,0.350028814501012 -"Tfru24359_t",32.2231582137059,32.9662083601868,35.7392792065149,50.1081946212981,44.5745826471887,42.0730439479358 -"Tfru24360_t",0,0,0,0,0,0 -"Tfru24361_t",35.1866176394539,47.1100553054945,36.3532212645222,57.3869373086556,29.6495232234254,13.0421705891982 -"Tfru24362_t",2.11536919928105,1.45539938885578,2.34212749534858,5.3139580757692,5.75433300360798,3.97975207508921 -"Tfru24363_t",1.59039688765546,2.1401502149043,2.2557684266015,0.387077255355388,0.647784804617542,1.12936913934881 -"Tfru24364_t",14.5186825528032,14.9646230693622,13.5541659530503,22.9363798318677,23.1336268255453,29.6702900732986 -"Tfru24365_t",10.160417295395,10.6975665026944,12.0449935485047,11.2377038876122,11.8017234233921,11.7137600925662 -"Tfru24366_t",9.25134513434563,12.8860786915047,10.1928377152498,27.7231939011742,28.4967616599728,29.6624904101386 -"Tfru24367_t",17.8234172411414,5.70653022193791,31.9907754754684,5.38586397976019,1.82001278985066,0.805858948855965 -"Tfru24368_t",1.28587311384869,0.516072742476923,1.29188778513275,1.33008434429517,0.927472504060192,0.470395866018197 -"Tfru24369_t",0.867203889253651,0.913615229262372,1.35356500842296,1.12127540422303,0.891330994869717,0.515513404995426 -"Tfru24370_t",3.71658809680136,3.7911924479595,3.60061627856353,2.64300630995428,2.01052104105951,3.05909053513769 -"Tfru24371_t",20.854083106273,19.3742708869044,17.9585383514248,18.0783229249915,17.4545699982567,17.8882310324627 -"Tfru24372_t",13.7228105483241,12.0896722142004,7.20574860233406,9.00147386258726,11.0084704545662,19.1006958823006 -"Tfru24373_t",12.4748587317231,14.2377005952334,15.4427050324917,14.1135013176564,22.7757981043459,24.2437590962511 -"Tfru24374_t",16.2317699245094,16.198126531495,13.7891312418347,2.26889931663929,0.759413517684794,2.08628140402849 -"Tfru24375_t",154.16256464397,90.9378208383753,120.553718685715,9.47545640987167,13.214538343031,11.4566747113472 -"Tfru24376_t",135.622132904579,151.256678069487,125.355984976755,114.332380174553,101.734167835496,85.8305813001525 -"Tfru24377_t",1.21864553793577,1.52841126511751,0.918259314183205,2.44230658082124,2.57102441379369,3.17634488676657 -"Tfru24378_t",5.66567443056172,5.47683289478047,6.29549377526618,8.12904340371263,9.01672761307655,7.13155153895608 -"Tfru24379_t",22.5924320002897,24.045014737132,20.9687284327921,19.6474477577626,16.2230090909397,14.8765035237149 -"Tfru24380_t",15.5959857867786,15.5230593232167,13.9677372412372,14.1963457737643,12.5989334214909,12.3234402127143 -"Tfru24381_t",6.29777445747033,6.50281693017669,6.09724072983643,2.67321737279664,2.74080943215168,3.29340771142712 -"Tfru24382_t",21.143633444096,21.6565551031267,21.4158178614988,18.3131558707319,12.384597544487,11.4173923979165 -"Tfru24383_t",0,0,0,0,0,0 -"Tfru24384_t",0.527419405740029,0.181435439507582,0.389304301170048,0.935234193656875,1.04342736241534,1.04738666968715 -"Tfru24385_t",0.0276805195293072,0,0,0.0286322384933392,0.119792165269059,0.0405041580404466 -"Tfru24386_t",0,0,0,0,0,0 -"Tfru24387_t",2.15017417696575,0.924591019428491,2.18227479609261,0.476593293385473,0.864058479102512,1.29222703474103 -"Tfru24388_t",0,0,0,0,0,0 -"Tfru24389_t",30.5620314491267,36.3451330477126,34.2019981606309,51.9353525975306,37.9721081394072,17.2081558943924 -"Tfru24390_t",0,0.667658292543958,0.716294031928507,2.58115310834676,0,0.608564791114674 -"Tfru24391_t",2.67623083897963,2.89534439823618,2.95595376875249,2.67797683539762,3.09688464375112,2.70293026244805 -"Tfru24392_t",3.59577488126818,2.09909743243532,1.40750420170105,3.71940576692658,2.54639921737304,2.86996388294371 -"Tfru24393_t",0,0.0400198842830769,0,0.103144028281643,0,0.328300022811513 -"Tfru24394_t",0.0573058504580133,0.0459982981016266,0.0493490559123014,0.118552310814849,0,0.670832849401121 -"Tfru24395_t",0.338751519239708,0,0.291716596642879,0,0.293200985154512,0 -"Tfru24396_t",4.67136252127201,3.8686476841165,4.85284590778903,6.9795187893053,8.34315954226079,8.62572331191002 -"Tfru24397_t",0,0,0,0,0,0 -"Tfru24398_t",6.69582220996781,7.3147248439043,6.15987443199918,2.37924636098882,3.41870365271724,5.57899269273386 -"Tfru24399_t",31.9773856358288,26.7047050626507,28.0431314253353,21.2007665122141,22.5181636022477,21.9778945132417 -"Tfru24400_t",14.4515259523941,7.89635861856918,13.3445983857028,0.270151846095185,0.527457938060345,0.445860537600667 -"Tfru24401_t",0,0,0,0,0,0 -"Tfru24402_t",0,0,0,0,0,0 -"Tfru24403_t",6.48771234229764,5.20756125131164,6.43914749448365,4.32219380292777,2.47455491135641,2.57445276759697 -"Tfru24404_t",2.62532427410773,1.47510792224654,2.939044711177,1.35779443480132,0.908923053978988,0.384156623914861 -"Tfru24405_t",0,0,0,0,0,0 -"Tfru24406_t",2029.44562343816,2601.15524331294,2261.08265724866,1894.95543313692,1945.22281420423,1173.69816204226 -"Tfru24407_t",2.74319597621053,4.33501103680615,3.69110795752214,3.19220242630841,2.96791201299261,3.32413078652859 -"Tfru24408_t",0,0,0.384817638124649,0,0,0 -"Tfru24409_t",0,0,0,0,0,0 -"Tfru24410_t",23.596134880116,33.3085593788495,22.5970880382542,7.36430879892243,16.5498822419419,29.6163363328067 -"Tfru24411_t",9.66898518490942,8.21597088950613,7.65546994427736,11.5401078438426,12.8751326364646,13.6301102313131 -"Tfru24412_t",6.18621865317022,6.68204731531938,6.93861184960389,8.53188648486067,8.06462636984993,7.7390098054121 -"Tfru24413_t",11.3898145722782,10.6473955289976,10.4831400552411,2.57628151253442,2.85817242823506,3.05073081749843 -"Tfru24414_t",12.3118655129884,5.8132331682928,9.97871940460099,1.4982559221735,1.2536869660827,2.11948481327674 -"Tfru24415_t",0.757988361847646,1.11544143637117,0.65274330196181,0.914724671866154,0.874753014355718,0.831857952537443 -"Tfru24416_t",0,0,0.451455325849822,0,0,0.0958893289023053 -"Tfru24417_t",0,0.107207480154189,0.115017036514203,0,0.231204592427088,0.0977186960673732 -"Tfru24418_t",0,0,0,0,0,0 -"Tfru24419_t",0.175204122568191,0.492215365087479,0.226316108344423,1.99350840896795,1.13733854512491,1.60232168473352 -"Tfru24420_t",0,0,0,0.929399399222296,0,0.821725398748365 -"Tfru24421_t",0,0,0.0776241587633411,0.16162823366132,0,0.263798540027372 -"Tfru24422_t",9.69350501209009,10.4554352730661,12.0866039897516,8.93010955196254,7.51609448482625,5.83622563255269 -"Tfru24423_t",10.6078491526518,11.8597821675869,10.6030925318674,2.35126522193329,2.86920467997877,2.078863353767 -"Tfru24424_t",0,0,0,0,0,0 -"Tfru24425_t",5.84095814831069,7.48152792348202,4.9764434800084,4.17782903015792,2.9042511783944,2.45496540726657 -"Tfru24426_t",1.05210240164618,1.47787894526892,0.906020237538308,2.42141424565696,2.27657621535125,5.65771057888386 -"Tfru24427_t",0,0,0,0,0,0 -"Tfru24428_t",43.0641426462462,47.0334530042274,55.3231944752942,46.7355125722351,62.9371928812482,54.2338762310879 -"Tfru24429_t",0,0,0,0,0,0 -"Tfru24430_t",9.70096729462441,12.7703173473273,10.0248105266652,8.42898716107611,8.73237853245402,10.2914938508369 -"Tfru24431_t",0,0,0,0,0,0 -"Tfru24432_t",0.124275705283206,0.448891675408921,0.107020289892654,4.43492620124456,8.22871167211747,6.04648887345284 -"Tfru24433_t",18.4638190706478,18.1551744276497,19.477692760463,20.053579344758,30.3640229021552,22.9649674076576 -"Tfru24434_t",0.762100536347175,0.323853545972711,0.501864625174301,0.324595467871394,0.116404233167,0.524781727439724 -"Tfru24435_t",0.820413835658666,1.05364851589038,1.41300226498894,1.69724304350165,0.568076908736868,1.56063628465412 -"Tfru24436_t",0.283340225198811,0,0.12199952102434,0.586164207941212,0.613101554117361,0.310953085125014 -"Tfru24437_t",8.06499616808501,5.3946804000384,7.52395445877161,9.73267050627377,8.72566131606264,8.35924813434141 -"Tfru24438_t",0,0,0,0.18647820563795,0.0780191462642909,0.065949635006843 -"Tfru24439_t",0.738012094624721,1.48097009554139,1.37700484271836,1.78123545180378,1.9163238619762,1.16990597034101 -"Tfru24440_t",5.53207687775228,14.663947492208,8.86318112924152,273.738011872472,182.285701606567,90.7386181816663 -"Tfru24441_t",0,0,0,0,0,0 -"Tfru24442_t",0,0,0,0,0,0 -"Tfru24443_t",0,0,0,0,0,0 -"Tfru24444_t",142.84185099468,127.676693937057,163.663939580506,223.633047659266,167.430436917398,97.2458727512431 -"Tfru24445_t",102.374798447425,94.824928751453,102.263560988224,58.1924557766727,73.1290130868576,79.3129891071203 -"Tfru24446_t",16.7260478639986,18.3077389186384,24.5517135636088,19.6603719066255,29.9409947193079,22.5279178549167 -"Tfru24447_t",1.34059111869331,1.43475542589329,0.384817638124649,0.924455785396646,1.54710307060253,2.61553446069693 -"Tfru24448_t",5.71798375931318,2.8244400007114,4.16650720231295,0.454967768729239,3.42630680033964,5.14890553519395 -"Tfru24449_t",21.4652063997531,21.0172708367915,23.9824454914071,15.3125715995215,19.0593556693391,16.1108857254162 -"Tfru24450_t",113.06068812105,109.027997795658,128.464348807196,96.6445035534995,106.692270720641,117.76015525463 -"Tfru24451_t",0,0,0,0,0,0 -"Tfru24452_t",216.664871259892,282.384027656058,243.218389278995,105.639214874232,42.8549835790389,21.2449394377731 -"Tfru24453_t",14.456331067814,15.3257965947692,15.9724307980049,7.61775579005417,14.6372024277136,17.162321899573 -"Tfru24454_t",1.49547267551268,3.77768850095149,1.13632014608535,25.114220833854,24.8216892646827,30.0889167212896 -"Tfru24455_t",24.4262773263026,30.2775794690179,24.2761601721037,31.8104442608935,32.5791294848522,31.4649543629789 -"Tfru24456_t",0,0,0,0,0,0 -"Tfru24457_t",34.2086407458551,42.4009528684065,36.5573609712789,16.5555442451,20.8093585538934,20.605621037461 -"Tfru24458_t",0.129678996817259,0.0867423527360234,0.0372244486583143,0.156493930226651,0.149655455247376,0.0790649084465882 -"Tfru24459_t",0.0867875793093465,0.0696627117944055,0,1.43634452607082,3.00470431067434,1.26993925261111 -"Tfru24460_t",8.40103767714474,11.6004491148099,8.09462556278981,2.24843162350317,2.18650021376764,3.05176171165931 -"Tfru24461_t",19.5558596760139,19.3010388469041,19.789792645743,12.619861115111,13.7309991052408,12.1608131006635 -"Tfru24462_t",30.54922791689,33.7167525084923,40.3581473372049,24.417856943204,19.5305780193832,29.5171469079306 -"Tfru24463_t",0,0,0,0,0,0 -"Tfru24464_t",0,0,0,2.6106948789313,1.87245951034298,1.58279124016423 -"Tfru24465_t",0.181056846490188,0,0,0,0,0 -"Tfru24466_t",37.4922342616377,42.3549287709986,41.1579259020665,32.576573042513,35.4555108659572,28.7504525155689 -"Tfru24467_t",0,0,0,0,0,0 -"Tfru24468_t",0,0,0,0,0,0 -"Tfru24469_t",0,0,0,0.269314598638279,0,0.571472663674999 -"Tfru24470_t",0,0,0,0,0,0 -"Tfru24471_t",0,0,0,0,0,0 -"Tfru24472_t",0,0,0,0,0,0 -"Tfru24473_t",0,0,0,0,0,0 -"Tfru24474_t",0,0,0,0.108623554784106,0,0 -"Tfru24475_t",0,0,0,0,0,0 -"Tfru24476_t",0,0,0,0,0,0 -"Tfru24477_t",10.712732608439,14.0297896344054,12.6240846654576,22.7453349615027,47.337200663601,68.4778518871015 -"Tfru24478_t",0,0,0,0,0,0 -"Tfru24479_t",2.05070081622736,0.823028946505101,2.76667912975541,2.19191550744168,4.25988347511715,2.75067395480128 -"Tfru24480_t",2.55129126854721,3.0718082545698,2.19704994261188,0.942503729146254,2.36596022727719,2.53326710781166 -"Tfru24481_t",35.054689588086,33.7167525084923,37.9945127023214,33.7592630695926,23.0173320144319,11.0548668752478 -"Tfru24482_t",0,0,0,0,0,0 -"Tfru24483_t",13.5318727685545,13.1246419160567,11.6530012296531,4.66570973569287,5.36813615772795,9.90041232102672 -"Tfru24484_t",0.203908681484096,0.229142978213054,0.245834957170892,4.80896514384002,5.43588933253453,2.80471632217452 -"Tfru24485_t",2.50645209742823,1.89353471441164,2.74248414337763,2.44012197479213,2.52673590295317,2.0064059543184 -"Tfru24486_t",4.06501823087649,3.2629115330799,3.73397243702885,9.81115978695149,9.75772878594217,8.24821447992681 -"Tfru24487_t",0,0,0,0,0,0 -"Tfru24488_t",3.68697578307293,3.93185954017528,3.90077214620647,5.39372134100387,3.96620969009013,4.12336138020214 -"Tfru24489_t",0.150916844499606,0.201896721607738,0.0866415760089029,0.208140943298885,0.391871017284354,0.331248825411616 -"Tfru24490_t",22.6595152699107,20.4058720975871,22.5983952862027,21.1225334676129,27.0545113721677,27.3906130143133 -"Tfru24491_t",18.5586559595107,17.2261953725206,16.4422081744168,16.3527824293163,20.5581868936338,21.7362802476918 -"Tfru24492_t",0.207603896469804,0.223794018705762,0.178778540281962,0,0,0.0506301975505582 -"Tfru24493_t",1.82065832012425,0.835089845411574,2.91174708228062,0.807110004587783,1.57584182733199,1.52235442294434 -"Tfru24494_t",0.134524222212086,0.13497499002599,0.0289614555514147,0.0347873674248537,0.0291088247871573,0.0492114169946979 -"Tfru24495_t",0.221663263249202,0.177924815348244,0.190885794109324,0.687853645070855,0.767428436077246,1.8650347968426 -"Tfru24496_t",10.5012970964309,9.19827463507226,11.1885026062774,12.3291699043273,10.98005587106,8.55239199226514 -"Tfru24497_t",49.1301190739351,46.7766591763387,45.05581298225,44.219411669074,52.6485050000994,54.7739267313543 -"Tfru24498_t",56.1720325818522,51.0522526189907,54.5152270084791,52.0573262550243,56.0788374813451,61.2476126807655 -"Tfru24499_t",0,0.121065538630134,0,0,0,0 -"Tfru24500_t",0.396899417817862,0.212388992179479,0.113930261366038,0,0.229019982104942,0 -"Tfru24501_t",1.22233952259154,1.04247006846505,1.14033865726176,0.711206057392145,0.595111790419707,0.633468334069973 -"Tfru24502_t",3.77885402921486,4.84574281800602,4.72251245207056,3.95644763448416,3.23084003827967,3.77624064758876 -"Tfru24503_t",4.48669737376379,4.10752585409461,3.98903918873553,4.08906222397442,3.82041560794863,4.18757335999571 -"Tfru24504_t",87.7641443930791,98.7949651853619,84.365394391224,76.7816090204579,64.7972331999621,44.7932909244464 -"Tfru24505_t",0.0550526715409223,0,0,0,0,0 -"Tfru24506_t",0,0,0,0,0,0 -"Tfru24507_t",48.0437096961583,49.2483940103056,45.0167991276897,49.5131922331748,33.5719742917737,19.2199242688988 -"Tfru24508_t",0.311264826867163,0.224861632142594,0.321655647131977,2.57573453359865,1.75116705472054,0.614878330978954 -"Tfru24509_t",0.110802396163872,0.106726729122107,0.152668353400019,0.825206641461948,0.345251700799194,0.340481734728022 -"Tfru24510_t",14.1039318667394,9.59819961920583,15.5780921243745,8.56302475670323,5.57295887111204,7.2905636655375 -"Tfru24511_t",8.89066870740778,9.7737212026151,12.427484951461,16.0602924558095,18.5687961334358,15.8847585594243 -"Tfru24512_t",37.9581768801224,32.1485314615857,40.4991798688127,26.1273932437517,24.03663624476,17.0509385232642 -"Tfru24513_t",0,0,0,0,0,0 -"Tfru24514_t",35.9120095826598,38.6941935078204,27.7681246139445,16.6212165985435,12.6945864278452,24.2230723577637 -"Tfru24515_t",0,0,0,0,0.478380554725775,0 -"Tfru24516_t",41.979049500605,40.9972211584281,39.1216099413193,22.6575081292049,22.8050886972202,24.1346936841595 -"Tfru24517_t",0,0,0,0,0,0 -"Tfru24518_t",0,0,0,0,0,0 -"Tfru24519_t",0.0614560181210296,0,0,0,0,0 -"Tfru24520_t",21.8426979605763,24.3950621090856,20.0865752568405,24.6383780733831,20.1460121611343,16.0170714724031 -"Tfru24521_t",0,0,0,0,0,0 -"Tfru24522_t",0,0,0,0,0,0 -"Tfru24523_t",56.6226726805645,61.6958549725184,51.5964666459901,56.5756335051442,75.842068978285,81.0328083179492 -"Tfru24524_t",11.3147778574221,12.9999450692954,12.8006064343787,15.2990922231135,15.1700537882409,12.8773628861601 -"Tfru24525_t",0.464145728019047,0.37256080119881,0.799400176435734,0.240052054771505,0.602600919765075,0 -"Tfru24526_t",0.326888625569835,0.52477435810883,0.28150084034021,0,0,0 -"Tfru24527_t",9.7050346047301,7.05314760324839,9.58370992075284,5.44571255920316,4.92975215717417,5.7983319149326 -"Tfru24528_t",0,0,0,0,0,0 -"Tfru24529_t",3.69463767939383,3.46748740276781,1.95793547949753,0.999513088676481,1.22993647358456,1.24759931988588 -"Tfru24530_t",13.5811422852804,11.8404543216606,10.3125242312945,8.56648897368917,6.4731603625811,9.29864640737664 -"Tfru24531_t",12.8040698656327,15.6261154704988,10.4074319237755,12.5010000840184,11.3085294429734,10.0370626466091 -"Tfru24532_t",13.489742534048,16.2955369834367,12.8819080895908,20.8612486771383,15.1439008039742,9.0878387342657 -"Tfru24533_t",0.396275362129469,1.51089221146546,1.02376013161463,0.922275465148068,0.342989831690184,0.289929527482914 -"Tfru24534_t",19.5278357628546,25.9610830452798,13.8385267831169,21.6721087511146,14.4371313174387,17.4126198539617 -"Tfru24535_t",2.84780938208296,5.14323343349882,2.1737156569568,2.00844785425157,1.51253759367844,3.93035436486082 -"Tfru24536_t",7.05824886809292,7.46190424368272,6.52297439050634,7.83514165655845,9.68524565715315,8.81670940132467 -"Tfru24537_t",6.54721850495519,6.20010335094867,6.27165138421712,6.01139112290323,7.32232232627556,7.37365428740258 -"Tfru24538_t",0,0,0,0,0,0 -"Tfru24539_t",0,0,0,0,0,0 -"Tfru24540_t",0,0,0,0,0,0 -"Tfru24541_t",0,0.0417286540946687,0,0,0,0 -"Tfru24542_t",0,0,0,0,0,0 -"Tfru24543_t",0.177611790214477,0,0,0,0,0 -"Tfru24544_t",11.496156821356,9.08577751807792,11.1183942434162,6.67749010462293,7.42446620934416,6.08180591966264 -"Tfru24545_t",0.374211032389521,0.150185979993284,0,0.193538627677694,0.161946201154385,0.136893229011977 -"Tfru24546_t",84.1807832152029,112.43476901412,74.6936499542066,81.8752798332124,74.336262751385,58.4728459605906 -"Tfru24547_t",0.375046324872533,2.10729703178077,2.5837755702655,5.81911900629138,5.19384602273708,4.11596382765922 -"Tfru24548_t",0,0,0,1.34988495265685,0.282383861430365,0.596748153654153 -"Tfru24549_t",9.60465957300195,9.31968122883072,10.8361528258023,8.42579238267449,8.52361995627184,10.0959251668508 -"Tfru24550_t",1.56346855033711,0.9203083811251,1.52590219782429,0.754704598996268,1.0825882528782,1.1438906915579 -"Tfru24551_t",52.0904677100271,56.8287161127529,46.2039866682771,64.7307714223651,120.375019585789,143.922688104862 -"Tfru24552_t",0.212415617626921,0.255752863528387,1.46337731413267,13.5127152854058,6.34292700121873,5.12856377818069 -"Tfru24553_t",0.333816066641513,0.267947702054243,0.287466421062651,1.95666270869383,2.31143346177438,2.11667755693486 -"Tfru24554_t",136.873303147215,140.853274186913,137.702420209554,154.512043463135,103.470091784553,45.4167413338509 -"Tfru24555_t",0,0,0,0,0,0 -"Tfru24556_t",210.691066714263,216.674282868216,230.166881981653,109.761389828129,116.820414927969,157.742851466721 -"Tfru24557_t",5.26607650673128,7.92558335165343,6.90862615751695,6.68125292893422,10.2910386914761,17.2174408524427 -"Tfru24558_t",0.0895633014620975,0.0718907302952927,0,0,0.0775200898915981,0.131055564661786 -"Tfru24559_t",3.59633462206539,2.65577160169631,3.8402691695042,3.57118536276512,4.98040029577528,5.89390984636499 -"Tfru24560_t",8.60174506192294,8.81468683327819,9.11111576518195,6.25790308790343,6.50205706873706,6.33530650770173 -"Tfru24561_t",34.5647192152441,36.9083101498772,36.3423652844841,24.5141068341262,28.5539838513362,37.7315971755177 -"Tfru24562_t",19.6171987975543,13.6112483741407,16.2252924992926,27.8580726253696,18.7060681293829,18.9747018461377 -"Tfru24563_t",0.570636521466435,0.15267963400072,0.109201080705561,0.262336132308784,0.219513492281718,0.139166173191799 -"Tfru24564_t",3.92571833753644,3.78131784262399,4.73289706131776,2.43641605597058,5.43654882652948,5.74439781729902 -"Tfru24565_t",1.52578009546382,1.3731643839452,0.955584580747613,1.81736712462125,2.12098720356132,1.79287186064833 -"Tfru24566_t",33.6650829854758,42.6121060714762,39.1572007548124,34.4286443812542,36.7854262281251,30.481765843181 -"Tfru24567_t",184.036109649826,201.398394582499,207.842709083698,172.635161315743,196.497612739805,152.737590137119 -"Tfru24568_t",49.2521996280685,54.8069533825696,50.1036969946169,40.2875261243421,36.2677391939286,35.2808438251162 -"Tfru24569_t",25.5304261876866,26.4479461235446,25.1800673756783,25.731086224183,26.4413979339342,24.9851476956574 -"Tfru24570_t",10.256625682255,12.6319986098918,11.0574999241931,8.98953556833979,12.9434708898406,13.8052930271734 -"Tfru24571_t",0,0,0,0,0,0 -"Tfru24572_t",0,0,0,0,0,0 -"Tfru24573_t",0,0,0,0,0,0 -"Tfru24574_t",0,0,0,0,0,0 -"Tfru24575_t",0,0.0732972880619398,0,0.0944552650296572,0.316147149210083,0.935337866923139 -"Tfru24576_t",0,0,0,0.244785475569816,0.307241595711207,0.605993547584006 -"Tfru24577_t",0.572277770922667,0.55122756144674,0.591381874393193,0,0,0 -"Tfru24578_t",0,0,0,0,0,0 -"Tfru24579_t",3.84171860422057,2.49551082348183,4.1610607876694,4.03647773558787,2.75647252971406,6.32382235986961 -"Tfru24580_t",13.2621722381039,12.2460845906215,10.6908506088374,9.74711067261531,10.6589433511126,11.4175452377782 -"Tfru24581_t",0.354474163592605,0,0,0.20303468183945,0,0.287219905730737 -"Tfru24582_t",0,0,0,0,0,0 -"Tfru24583_t",13.0947348408936,12.4219614504972,12.3017006908187,6.33270926676568,6.91811879141902,8.46077746597912 -"Tfru24584_t",0,0,0,0,0,0 -"Tfru24585_t",0.594197441800227,1.13734420866514,1.41699987749054,3.16769452471603,2.41324510523257,3.61165748707769 -"Tfru24586_t",0,0,0,0,0,0 -"Tfru24587_t",0,0,0,0,0,0 -"Tfru24588_t",0,0,0.0344667536767193,0,0,0 -"Tfru24589_t",0,0,0,0.136418907107197,0,0 -"Tfru24590_t",0,0,0,0,0,0 -"Tfru24591_t",0.0774289186833617,0.0621506958681886,0,0.16018220060329,0.335086840176586,0.113299649449544 -"Tfru24592_t",0.250777244093873,0,0,0.25939953381279,0,0 -"Tfru24593_t",4.08951764534167,3.47015255302981,2.91797741732348,16.4370552997367,16.2822377402634,15.9860447670829 -"Tfru24594_t",9.83100153708427,4.57328292003486,8.85080567686691,22.1869388495195,20.8858914531342,20.1069211666076 -"Tfru24595_t",24.9589493960382,24.2441234399062,24.7641955625877,23.6656700627589,25.4381048476358,25.406440229633 -"Tfru24596_t",1.88605720782595,2.16271664583017,1.43856138229022,4.29198907934632,5.59696043502135,8.16117215141769 -"Tfru24597_t",6.21921478526492,4.99204345392726,4.38990994948021,4.74568928668423,4.94171757503139,4.47561115240614 -"Tfru24598_t",16.477919559673,17.1294112422565,20.4708135213318,33.8095180164034,25.9525296441589,26.4833376743878 -"Tfru24599_t",0.395342949512694,0.634668282512796,1.02135128424613,1.22680720697343,0.34218279679209,2.16935505269568 -"Tfru24600_t",1.31108631215944,1.78095691521448,1.47644318300885,17.2128562202905,14.4031024159936,6.49330764072177 -"Tfru24601_t",209.826392340088,326.916350925571,203.547507276545,457.508996064552,349.320071576723,181.110229725942 -"Tfru24602_t",5.71200260475323,6.27780538338036,4.99457871741699,6.45378442650336,4.79181191637458,4.82204967257147 -"Tfru24603_t",393.346598525916,402.591422336501,403.411210891254,448.018211387689,310.358097106998,163.431930597951 -"Tfru24604_t",0,0,0,0,0,0 -"Tfru24605_t",0,0,0,0,0,0 -"Tfru24606_t",7.38552762825911,5.65875566576094,6.64915671229163,4.94828581234288,4.50375459314264,5.95615464851013 -"Tfru24607_t",73.6619541008324,58.2208649138803,64.9734201633617,21.7976943082998,21.4151635562351,22.5073623328393 -"Tfru24608_t",62.8360992473088,67.4335050169846,59.3353147307837,29.0057448742299,25.1625564807262,23.5309016501528 -"Tfru24609_t",9.87055533194562,9.20193772360327,9.98660568148982,14.1016037401495,15.1327547448556,16.483517097801 -"Tfru24610_t",0,0,0,0,0,0 -"Tfru24611_t",0,0,0,0,0,0 -"Tfru24612_t",0,0,0,0,0,0 -"Tfru24613_t",0,0,0,0,0,0 -"Tfru24614_t",0,0.113620059000816,0.365690223929742,0.732087985065582,1.65397960959951,5.64422200596055 -"Tfru24615_t",1.45682734285747,0,0.418183329291526,2.00922182259618,4.62342362717636,5.68462981053205 -"Tfru24616_t",25.0082436007788,26.0696540014116,21.6291315778926,27.7717954499569,29.6102768100371,30.8117374645115 -"Tfru24617_t",8.58982504067609,8.33447814816663,7.39714623936684,3.80792686434169,5.63736545838653,6.56087717247852 -"Tfru24618_t",27.6608137089527,27.4534625541895,28.1657403655193,24.9387115766846,19.2501612322135,17.5712128758388 -"Tfru24619_t",43.334466499196,45.3468981522444,42.5832378795655,37.1245060654539,42.4547603693983,44.0564431983372 -"Tfru24620_t",0.29957656579465,0.360757131279748,0.47297992098606,0.206582568448866,0.129572030721624,1.02381293447845 -"Tfru24621_t",0,0.041962355331042,0.0450191138565239,0,0,0.191241629826937 -"Tfru24622_t",0,0,0,0.0475897282734308,0.0398213824306238,0.0673220808613118 -"Tfru24623_t",0,0,0,0.0475116696704673,0,0 -"Tfru24624_t",0,0,0,0,0,0 -"Tfru24625_t",0.724227383116962,0,1.24733992557512,0,0,0.529871203319186 -"Tfru24626_t",0.661499029696436,0.796458720673046,0.854476960245282,1.88166787814986,2.64804354308839,1.93590739610638 -"Tfru24627_t",0,0.0671648456344468,0,0,0,0 -"Tfru24628_t",0.77500347575136,0.497664243667783,1.06783344601378,0.801649850805209,0.402475153053427,0.793829185949527 -"Tfru24629_t",7.20799090642596,7.08251310089631,6.63525797334453,12.2763899193871,12.4237411520205,10.092635563207 -"Tfru24630_t",0.756257794811464,0.950139405327376,0.934406507602864,0.884293518398982,0.683026326277752,0.264624523714346 -"Tfru24631_t",0,0,0,0.263729419809665,0.220679345427372,0.373080788020502 -"Tfru24632_t",0.140957008005784,0.67886078876159,0,25.3697966878314,32.4528231353572,14.2318427114767 -"Tfru24633_t",0,0,0,0,0,0 -"Tfru24634_t",0,0,0,0.173105266588216,0.0724241477274094,0.244880716439752 -"Tfru24635_t",10.2292427675078,13.8011577625435,11.4328722124701,8.55480845968087,6.78160206077587,9.39491847087121 -"Tfru24636_t",203.184706035178,161.664689552119,143.63098984414,215.831818952132,324.843770301546,350.370862202479 -"Tfru24637_t",14.6889309078911,14.2727357244538,12.8713236997275,22.6576740040466,24.758394844581,27.338753603757 -"Tfru24638_t",9.46191956811524,8.7456422888922,7.16049748483134,10.6769910504514,10.4231449193495,14.8942636439345 -"Tfru24639_t",12.6006503341975,10.2241487440311,13.3109620201595,14.4989164852354,13.1121555389531,10.3790647509035 -"Tfru24640_t",0,0,0,0,0,0 -"Tfru24641_t",53.4611488545575,29.7599104785701,56.202457032552,2.29815124171331,5.88922044892171,15.0360807509155 -"Tfru24642_t",0,0,0,0,0,0 -"Tfru24643_t",125.087989768642,124.963500000723,124.309960425509,86.4545613756548,114.073113000303,118.615728221269 -"Tfru24644_t",1.38696376745314,0.954247712504499,1.27970016451829,1.43465072356366,1.37195932676074,1.23220049180238 -"Tfru24645_t",0,0,0,0,0,0 -"Tfru24646_t",0,0,0,0,0,0 -"Tfru24647_t",16.5621202265971,14.8433266243533,13.9255957466032,14.6764889916308,13.6578316710907,15.6095681272825 -"Tfru24648_t",0.826331574801123,1.32656075443248,0.711597206237055,0.569828484113342,0.238406046945308,0.80609914526397 -"Tfru24649_t",0,0.124416060916946,0,0,0,0 -"Tfru24650_t",0,0,0,0,0,0 -"Tfru24651_t",28.0524160198365,31.0052654186485,33.7697660197637,47.247448304695,47.6707895443525,50.6119635982935 -"Tfru24652_t",0,0,0,0,0,0 -"Tfru24653_t",0,0.0997537056464269,0.0535101449463268,0.192822878314981,0.968083726131467,4.72808152510598 -"Tfru24654_t",0,0,0,0,0,0 -"Tfru24655_t",0,0,0,0,0,0 -"Tfru24656_t",0,0,0,0,0,0 -"Tfru24657_t",0,0,0,0,0,0 -"Tfru24658_t",0,0,0,0,0,0 -"Tfru24659_t",0,0,0,0,0,0 -"Tfru24660_t",0,0,0,0,0,0 -"Tfru24661_t",0.080546861717591,0,0,0,0,0 -"Tfru24662_t",8.97440226638608,9.40467280652307,7.19163645373601,5.41506148478628,6.68881060494923,9.02825062731661 -"Tfru24663_t",21.5674561393691,19.62001735213,22.8180864542762,18.4845951417451,20.8896741012286,22.3167760005308 -"Tfru24664_t",4.74252126935591,5.4381858884665,5.25089873957182,7.00797127639392,8.50282856948086,11.6486202090313 -"Tfru24665_t",86.9216274516461,73.6093458229956,80.0458788055519,70.9817288688216,77.213463397423,77.5920309689422 -"Tfru24666_t",0.375046324872533,1.80625459866923,0.322971946283187,0.775882534172185,0.324615376421067,0.54879517702123 -"Tfru24667_t",17.3462721268981,16.8925025219673,17.8667557652367,20.2734650831874,16.5225283901444,13.5621285851724 -"Tfru24668_t",4.29820532319033,5.25354050713717,3.44903994728464,7.98256821204126,6.84862952300447,7.43298397900382 -"Tfru24669_t",2.87706769765181,5.54247986440873,3.46863021761609,7.73756828598975,7.47060044366162,7.57788408818223 -"Tfru24670_t",1.49207618976316,1.09351629757272,1.1173083547094,7.98529916250724,4.82887305897717,2.37316833306478 -"Tfru24671_t",2.26181783615435,4.92783305893349,2.2260220297672,9.0241107051411,5.31370400787716,5.67369783012717 -"Tfru24672_t",9.16424275173738,5.94046018043636,10.3066505197927,8.16358718680272,6.95610761200712,7.02216099874652 -"Tfru24673_t",0,0,0,0,0,0 -"Tfru24674_t",10.3512785664819,11.5600294314831,12.6605002943009,12.5692970535894,12.5950766051374,13.390602319318 -"Tfru24675_t",9.75604375410352,8.70109742154635,9.80167764720067,8.97020323378417,8.44418837244991,7.93097546146805 -"Tfru24676_t",33.6704965145189,34.8816945991115,37.9939989088597,33.0267076737459,36.8952773737572,33.4326238542291 -"Tfru24677_t",0,0.10326723586062,0,0,0,0 -"Tfru24678_t",0,0,0,0,0,0 -"Tfru24679_t",0,1.890658921312,2.02838445485047,8.12138685323525,2.03870580994856,2.87219890864951 -"Tfru24680_t",11.9421425571279,12.3364137731937,13.2350629952784,17.4012517923611,21.841117638259,19.6019597468547 -"Tfru24681_t",0,0.398677816823389,0.488822405185364,0.587154350184356,0.368482319180671,0.674869744715296 -"Tfru24682_t",3.0735503696871,3.52072796773128,2.26080362398231,3.64286311775965,5.01570343811576,5.50468333048733 -"Tfru24683_t",1.50018529949013,0.903127299334615,0.645943892566374,1.55176506834437,0.649230752842135,1.09759035404246 -"Tfru24684_t",16.5768800033012,17.523673306722,17.2379963585844,12.7468892285741,13.3191405080465,11.8994159008624 -"Tfru24685_t",2.12602947351056,3.41304549932591,3.66166967319834,1.79928587679194,1.95167526928004,2.16824597547038 -"Tfru24686_t",2.43788748807056,4.69021614811823,2.13271571714222,3.36227677636661,1.7081557163677,1.47221700182941 -"Tfru24687_t",0.242104832194373,0.582998602452316,0.416978190014028,10.7684446241304,13.2016489684556,6.37677854106512 -"Tfru24688_t",0.428989157981859,0.401731519250121,0.430995754699606,4.95508300972602,6.80725351065115,4.02792306947326 -"Tfru24689_t",38.7740200483603,35.7512502416164,41.3880143857913,32.5420359426911,33.1918100964782,31.1430519617759 -"Tfru24690_t",69.612974006605,77.5147218107726,65.2892058411664,91.572528226382,60.8489599673809,49.8668215546729 -"Tfru24691_t",39.1865096233429,36.1172087018137,36.1728579837169,19.9113553777739,20.8263874888803,24.8224280068064 -"Tfru24692_t",4.37463360908314,3.24938651118112,4.2170430291898,29.0188108013912,19.9680505122845,17.2293250601401 -"Tfru24693_t",6.72554982580408,6.77176349538539,6.70620400821719,6.52961818084232,7.19989610174367,6.51771350687011 -"Tfru24694_t",5.98175151062521,6.50861361714566,6.63932203498602,7.69989755431636,10.5849267045654,8.25621122591468 -"Tfru24695_t",11.697647398556,10.5710139857068,10.0734541220477,10.9028315369774,16.1074971591213,11.2815616137022 -"Tfru24696_t",0,0.481667892977717,0,0.620706027336788,0,0 -"Tfru24697_t",9.95244881612966,10.103277755158,10.8392536118455,33.5332646476368,43.1975974086181,33.034792607034 -"Tfru24698_t",10.7830577871981,10.5624634399338,11.7515883804969,11.4058671013332,8.43670419936987,5.61609683692791 -"Tfru24699_t",0,0,0,1.15480191132604,0.120787116807839,0 -"Tfru24700_t",0,0,0,0,0,0.136893229011977 -"Tfru24701_t",1.43282577855932,1.38481614897393,1.66196214892121,3.50862021718239,4.04950055375254,3.82953209499534 -"Tfru24702_t",0,0,0,0.148672102356347,0.0622017487752943,0.105158357273529 -"Tfru24703_t",0.248062136136164,0.265486240224349,0.356032066768868,1.02636429717265,0.787256188485738,1.02845080418152 -"Tfru24704_t",2.57299646893592,3.73719959744105,2.77846940273567,4.0555610147882,3.49959678537364,5.13951885762614 -"Tfru24705_t",7.55605903263502,8.804181022527,7.06665117283445,7.81585345835345,2.81291467382279,6.71716804678983 -"Tfru24706_t",26.4156339332902,18.0749601076454,24.2395440097073,14.3338299096552,22.1140041999012,16.7920008804022 -"Tfru24707_t",80.1446568871409,119.906413193718,85.9588375422427,77.0450718895975,78.688687729849,79.6975056746294 -"Tfru24708_t",15.798966377914,32.1064001498777,12.7954736449864,22.3083599078999,31.4731564959888,40.6862000492515 -"Tfru24709_t",0,0.0568100295004082,0,0,0,0 -"Tfru24710_t",0.131677706538319,1.16264663822387,0.113394539133909,45.9011134322804,46.0445032987475,94.7024354378202 -"Tfru24711_t",0,0,0,0,0,0 -"Tfru24712_t",3.38580863562509,2.03829234308266,2.27788778234993,1.31333265230153,1.37368723523273,1.78047402519734 -"Tfru24713_t",65.4407693823923,75.9629777868223,61.4055215991588,55.0395620108318,59.5552337935888,59.0018388940745 -"Tfru24714_t",0,1.20416973244615,1.29188778513275,2.71558886960265,0.649230752842135,0.54879517702123 -"Tfru24715_t",0,0,0,0,0,0 -"Tfru24716_t",0,0,0,0,0,0 -"Tfru24717_t",10.5505475778629,9.31207859796817,9.83962056670154,8.28686212631219,9.66233991723364,11.7228826974749 -"Tfru24718_t",26.7655011360252,40.6040159782148,19.9612417532097,101.60276404806,146.536131385393,80.5791942845805 -"Tfru24719_t",0.0921671714442649,0.369904031908857,0.357164807299454,10.6299737649394,11.6070919893751,5.49577879961578 -"Tfru24720_t",2.66417685321715,1.99591769606297,2.14131083201707,6.06271003446172,9.68493063859218,8.05673088633281 -"Tfru24721_t",24.3834995995177,25.9865702260575,28.9382863869736,19.0753559620869,20.9273990964918,22.6371317897147 -"Tfru24722_t",66.1932707441478,56.3331029421041,61.6534115830129,71.9513948194861,49.3927440490389,39.5160513040059 -"Tfru24723_t",11.8602884853808,8.33002120798045,8.0856976669485,7.66754504358394,4.70501345589124,2.16935505269569 -"Tfru24724_t",0,0,0,0,0,0 -"Tfru24725_t",0.224326773755534,0.450156909325665,0.386358963778018,15.8947150925741,15.2417537489667,14.2789324563281 -"Tfru24726_t",0.0991858049249675,0.0398072638825175,0,0.205192075152974,0,0.0362839786460317 -"Tfru24727_t",0,0,0,0,0,0 -"Tfru24728_t",71.5184129659925,80.3898861538996,73.6640517571162,83.3415341835103,79.4732398778307,87.214804938346 -"Tfru24729_t",78.8799720803948,68.977783755453,55.7779947515944,70.9784449557163,57.7270214415604,94.7781838511463 -"Tfru24730_t",0,0,0,0,0,0 -"Tfru24731_t",0,0,0,0,0,0 -"Tfru24732_t",36.2701626651637,36.3294897877482,36.7067747067238,33.6692937338188,29.9173197103047,29.9387007272393 -"Tfru24733_t",26.4723345510029,27.3615085104887,27.1686789460435,25.2569301483619,20.401726103701,21.2253444004758 -"Tfru24734_t",0,0.212723990589857,0,0.274128844881024,0,0 -"Tfru24735_t",0,0,0,0,0,0 -"Tfru24736_t",0,0,0,0,0,0.25036684246997 -"Tfru24737_t",0,0,0,0,0,0.289929527482914 -"Tfru24738_t",0,0,0,0,0,0 -"Tfru24739_t",4.33043179234265,3.9257831908008,3.07107344919368,6.11295687323531,6.6584539066502,5.55384712803534 -"Tfru24740_t",0,0,0,0,0,0 -"Tfru24741_t",0,0,0,0,0,0 -"Tfru24742_t",13.0632757446219,13.7398026308065,16.9711800191701,41.1196941970931,39.8659012415449,23.5643526948311 -"Tfru24743_t",21.2774087237543,22.2318395473232,18.8039480626709,10.94144047553,13.2297418527174,13.4927916261309 -"Tfru24744_t",7.97178757685268,7.99849968267153,6.600886493379,6.81870489885628,3.98068490793717,5.27163834277327 -"Tfru24745_t",0,0,0,0,0,0 -"Tfru24746_t",0,0,0,0,0,0 -"Tfru24747_t",0,0.418841646068227,0,0,0,0.381770557927812 -"Tfru24748_t",47.3009714486803,51.9759680503406,47.5740453138283,54.5296469861757,46.1493309928587,42.2682359837554 -"Tfru24749_t",77.66634374294,81.6300323889813,67.2136400063574,73.1779737492923,64.3941824970011,65.122019907581 -"Tfru24750_t",0,0,0,0,0,0 -"Tfru24751_t",0,0,0.397503933887,0,0,0 -"Tfru24752_t",0,0,0,0,0,0 -"Tfru24753_t",0,0,0,0,0,0 -"Tfru24754_t",8.11134672276044,6.63765535276902,8.16440681764144,6.97370031968178,7.24859012326817,7.55307318242635 -"Tfru24755_t",5.80716890125213,4.66130219011414,4.33407515012277,11.0125262914762,11.8955828262688,8.9223473941516 -"Tfru24756_t",0,0,0,0,0,0.223509308459555 -"Tfru24757_t",5.03147447088524,4.28343498293006,3.28247350124473,9.62038016962679,8.57785822266922,4.57362514134571 -"Tfru24758_t",63.77751116157,64.6973287662954,56.0584605402106,38.1035506310738,23.4130964689875,17.5384594792544 -"Tfru24759_t",0,0,0,0,0,0 -"Tfru24760_t",5.60998368320325,4.39114902018523,6.03131020715645,3.49613764050046,4.10165193997984,4.33391131086031 -"Tfru24761_t",3.74303658882687,3.13799478791908,3.15169455699712,1.72076918469871,1.87184153690722,2.06912082583846 -"Tfru24762_t",0,0,0,0,0,0 -"Tfru24763_t",0,0,0,0,0,0 -"Tfru24764_t",19.1217648621578,16.7325674762294,17.5465355891164,23.9944568776831,26.5893908328182,28.6684047697657 -"Tfru24765_t",2.16521589617133,1.39038154674195,0.745832123375608,0.89586436935345,2.6236954135476,2.85147184761546 -"Tfru24766_t",1.11026929653895,1.18825559501294,0.637407189140387,1.91407144994019,1.60162652683522,1.62462713197474 -"Tfru24767_t",5.13163653732622,4.58537471686756,4.03001491174718,3.33841121119034,2.54324584035558,3.94339799884943 -"Tfru24768_t",11.5394065908752,14.1041982397647,10.1253889673464,14.6941333214711,9.1176048286758,7.61117806382825 -"Tfru24769_t",0,0.630219640437332,0,0.812138685323525,0.679568603316185,0.574439781729902 -"Tfru24770_t",12.1859971653771,10.367450637638,14.749627921168,28.6952064509884,41.8979504026678,35.5396234958668 -"Tfru24771_t",0,0,0,0,0,0 -"Tfru24772_t",0,0,0,0,0,0 -"Tfru24773_t",0,0,0,0,0,0 -"Tfru24774_t",39.0374305106454,35.7324279301956,38.5319574174376,34.4761717358249,59.6727744134031,62.4672075409382 -"Tfru24775_t",20.9677576745201,18.9173795747447,24.0654303082914,18.3500952995324,23.9264339118445,20.3914448102345 -"Tfru24776_t",9.05501066997638,9.69104263717145,7.79774184080126,10.4070471649443,6.53118362140591,6.62497650823233 -"Tfru24777_t",6.59900240500795,10.5937832655082,9.83552029768739,7.35095959868269,14.0594744301282,16.5268589865487 -"Tfru24778_t",1.70951348081434,2.54835920122325,1.89276582472938,2.77874209912829,1.90239708972346,2.14412999394341 -"Tfru24779_t",0,0,0,0,0,0 -"Tfru24780_t",12.1815046318599,14.3537032107581,12.2987717144638,57.9118723506118,48.9779679944106,33.3228431487291 -"Tfru24781_t",63.1813577372043,59.9099321431888,59.4908986674353,110.239442375936,91.0425406134326,81.2761121671111 -"Tfru24782_t",0,0,0,0,0,0 -"Tfru24783_t",0,0,0,0,0,0 -"Tfru24784_t",0,0,0,0,0,0 -"Tfru24785_t",44.1756692445605,18.0369253540871,153.927055249859,865.554745355659,140.123335251715,79.2133293811068 -"Tfru24786_t",2.53395567988125,2.19041547618975,3.0213988107049,4.43567184269202,3.54290192734269,5.41919320975024 -"Tfru24787_t",0,0,0,0,0,0 -"Tfru24788_t",2.44123646966935,3.40788401854628,2.42218758450663,14.9863451451982,19.3382997207911,15.4536284339219 -"Tfru24789_t",0,0,0,0,0,0 -"Tfru24790_t",11.2114840055674,12.2219427487952,10.4376145669878,12.0671072582523,13.0478404141979,12.5257921738155 -"Tfru24791_t",68.4708851143011,67.3360577553993,64.0865952139263,74.2156310721463,68.4056541202684,61.9979938711151 -"Tfru24792_t",7.35971613841198,7.85572052853968,7.07949690268458,11.5811133898432,11.5881336238887,13.5761595329464 -"Tfru24793_t",19.809675761942,20.8916194544875,21.790878303444,21.986454462325,29.1606294770539,30.5738421511586 -"Tfru24794_t",8.3682211237184,9.21942451404086,7.63021223094029,9.33483673925909,8.3791344038688,7.08288775343024 -"Tfru24795_t",0,0.155735577406431,0,3.11069764277809,4.95394551360372,7.02660614643348 -"Tfru24796_t",0,0,0,5.83648951071468,5.96904692157831,7.33911162096812 -"Tfru24797_t",9.27221866125132,9.40552222796025,9.21322034758103,10.3287891996045,10.7593559816069,11.9649995174453 -"Tfru24798_t",0,0,0,0,0,0 -"Tfru24799_t",5.4795746272273,7.24433887172349,7.57018304507505,16.912994368896,18.2862510476135,18.3301800319334 -"Tfru24800_t",21.1526127228109,18.4237969064261,22.3496586827965,14.8969446561059,17.3993841761692,15.6955420628072 -"Tfru24801_t",0,0,0,0,0,0 -"Tfru24802_t",0,0,0,0.257097171086641,0,0 -"Tfru24803_t",0,0,0,0,0,0 -"Tfru24804_t",0,0,0,0,0,0 -"Tfru24805_t",0.501554488187746,0.402588089653639,0.215957361096818,3.37219393956627,0.651168755089424,1.83477790526501 -"Tfru24806_t",17.6988153310634,20.3152904861562,23.6241277562196,19.7719279494664,20.8337419114285,22.7472517756328 -"Tfru24807_t",1.8329536750134,0.490425491032615,0.789225992372006,0,0.528827958678684,0.670527925378666 -"Tfru24808_t",3.1308214945881,0.837683292136455,0.898704546179303,2.15897748639216,0.903277569171665,2.67239390549468 -"Tfru24809_t",0,0.178631801369496,0,0,0,0 -"Tfru24810_t",7.50191151734527,5.49031820230209,6.98281040526119,3.99403747072221,4.0582250604446,3.63220970740249 -"Tfru24811_t",35.2750753294475,43.81315022098,39.1706086453509,44.841723831317,29.4069248845357,24.0426863851245 -"Tfru24812_t",47.4937922270604,50.7926202195415,42.7660583638122,29.0621009293367,20.4695605408169,13.8464127495082 -"Tfru24813_t",0.20490335797914,0.41117990864015,0.926378070314702,0.158961299684057,0.0886754199003891,0.224872170096504 -"Tfru24814_t",0,0,0,0.0870729898068984,0.0728595634452095,0.0615882362989757 -"Tfru24815_t",0,0,0,0,0,0 -"Tfru24816_t",13.1532994869861,12.562884826273,12.0349290393699,14.1942409563574,13.1908441706548,13.4172881818965 -"Tfru24817_t",0,0,0,0.0819027745780251,0,0 -"Tfru24818_t",97.4987399441984,97.6210831373474,106.490300039662,64.880200088519,75.7242453772448,69.3642940046854 -"Tfru24819_t",0,0,0,0,0,0 -"Tfru24820_t",520.421898891942,463.986614048905,527.48441885719,411.753625301456,442.405080773986,392.841130836169 -"Tfru24821_t",0,0,0,0.0598889344088798,0,0.169441929225025 -"Tfru24822_t",0.18710551619476,0,0.483378948557465,1.16123176606616,1.1336234080807,0.821359374071863 -"Tfru24823_t",0.657141687384727,0.333142058544181,0.476546502873175,1.86032930383648,2.00569270042296,2.20150687727248 -"Tfru24824_t",7.98690201700381,5.46116413869946,1.52843061903029,1.22392737784908,2.56034663092673,0.432852533988575 -"Tfru24825_t",0,0,0,0,0,0 -"Tfru24826_t",0,0,0,0,0,0 -"Tfru24827_t",0,0,0,0,0,0 -"Tfru24828_t",0,0,0,0,0,0 -"Tfru24829_t",6.11996122176107,6.02882329622048,2.39555350885543,2.30195612787509,2.40774318934831,3.25642701066902 -"Tfru24830_t",6.17834161009748,5.50354166506332,4.93118781482061,3.03951112938484,2.86942524664219,2.20502456776243 -"Tfru24831_t",0,0,0,0,0,0 -"Tfru24832_t",0,0,0,0,0,0 -"Tfru24833_t",0,0,0,0,0,0 -"Tfru24834_t",0,0,0,0,0,0 -"Tfru24835_t",0,0,0,0,0,0 -"Tfru24836_t",0,0,0,0,0,0 -"Tfru24837_t",0,0.0547349878384615,0,0,0,0.0498904706382936 -"Tfru24838_t",0,0,0.0466746554628606,0,0,0.118964631922021 -"Tfru24839_t",0,0,0,0,0,0 -"Tfru24840_t",0,0,0,0,0,0 -"Tfru24841_t",0,0,0,0,0,0 -"Tfru24842_t",0,0,0,0,0,0 -"Tfru24843_t",0,0,0,0,0,0 -"Tfru24844_t",0,0,0,0,0,0 -"Tfru24845_t",0,0,0,0,0,0 -"Tfru24846_t",21.0025941928619,24.4358345706146,19.9139775659487,15.7447382544209,17.355046466219,22.2195120452498 -"Tfru24847_t",0.418259343812327,0.911263581310602,0.360184930136584,13.226424309416,9.46417746106144,6.47000629751344 -"Tfru24848_t",0,0,0.0547244447560014,0.0657328621991563,0.0550029079563684,0.0464939938172297 -"Tfru24849_t",0,0,0,0.266560870635842,2.23048602203433,0.188543128301772 -"Tfru24850_t",1.30828172947749,1.80022705273374,1.77041796583264,3.96312858389173,7.76477091719536,9.7086078924868 -"Tfru24851_t",0,0,0,0,0,0 -"Tfru24852_t",0,0,0,0,0,0 -"Tfru24853_t",0,0,0,0,0,0 -"Tfru24854_t",0,0,0,0,0,0 -"Tfru24855_t",0,0,0,0,0,0 -"Tfru24856_t",0,0,0.0832516869590724,0,0,0 -"Tfru24857_t",0,0,0,0,0,0 -"Tfru24858_t",0,0,0,0,0,0 -"Tfru24859_t",3.59189259355357,3.92427760787678,4.0383000599399,11.8686069360306,7.77226364447591,8.17587494127589 -"Tfru24860_t",5.13327190406758,6.13031863790769,5.92997671864212,8.9359466826865,7.80237971821009,8.8854110330233 -"Tfru24861_t",18.7605994753416,21.7607506987324,18.7299951768448,18.1261392032373,12.3122828416295,10.3321634309371 -"Tfru24862_t",309.289599398793,317.954627007458,342.32861130959,530.131494186564,425.315055873073,256.161645980323 -"Tfru24863_t",0.22107993887223,0,0.571150389216583,2.05813051169885,1.91352221890313,2.26450220412971 -"Tfru24864_t",2.49011861493731,3.02313972102821,2.38561271622883,8.27454718918568,8.43254289426968,7.92509848817319 -"Tfru24865_t",0,0,0,0,0.10328671067943,0.0873083236170138 -"Tfru24866_t",27.6922666340162,71.8166828430886,28.1909434216804,319.353251065271,161.401961790934,425.145022439927 -"Tfru24867_t",0,0,0,0,0,0 -"Tfru24868_t",0,0,0,0,0,0 -"Tfru24869_t",0,0,0.592958907947778,2.74622321238705,4.52079449896389,27.9463017244608 -"Tfru24870_t",0,0.418841646068227,0.898704546179303,0,0.903277569171665,0.381770557927812 -"Tfru24871_t",5.68987837032984,6.22546770767566,5.99356768043042,3.97622204168386,4.13330056395202,4.73284677558482 -"Tfru24872_t",16.8020753542895,14.4104476474652,14.0727283114734,14.7608994994292,15.7380649346499,11.78781969273 -"Tfru24873_t",0.17429538749263,0,0.150094846405465,8.112962597983,10.560101871955,12.1144827458628 -"Tfru24874_t",0,0,0,0,0,0 -"Tfru24875_t",4.62901554809167,3.01266589800378,4.36336782826668,2.84702094445311,3.03199946524636,2.51718413287474 -"Tfru24876_t",20.0489389127214,20.009308246856,22.0780484842538,18.4442107806591,19.6565408083312,16.0964465015224 -"Tfru24877_t",0,0.100948360803869,0,1.17079280605623,1.95935508642177,1.19617631398639 -"Tfru24878_t",6.23425420385402,6.56027311251207,6.4161811446231,9.75154446568624,10.6932123997528,13.4889384686847 -"Tfru24879_t",19.4658190080183,19.7366356147272,16.3218993341162,29.1429049420772,28.8195114676265,34.4803994147973 -"Tfru24880_t",14.8123559044394,11.0023087132975,11.8037747104761,40.7052478980439,39.9926143750755,37.8495368404536 -"Tfru24881_t",5.95850533679459,5.95108896468245,5.09201032797315,4.75191295428032,3.70065044175527,5.12486151232386 -"Tfru24882_t",30.6037801095514,27.4550698997299,33.5890824133995,85.0367257451399,90.3729207954854,105.368673987913 -"Tfru24883_t",3.51168777501227,4.1197318177579,5.11770338033295,1.95592252987457,2.33806573370801,1.38345793821429 -"Tfru24884_t",11.7367438136581,15.6187897649633,14.6287293316502,10.5428744349279,9.08923053978988,6.10131108570661 -"Tfru24885_t",0,0,0.196591619476723,0.236138162574143,0.592775904768905,0.334049238186835 -"Tfru24886_t",28.1841264007435,26.9734020067937,27.071300168459,30.2744359140216,25.8016866935969,20.6205361998169 -"Tfru24887_t",12.5445358979989,9.76412742327379,13.0942472339247,16.1215049634329,12.502832959711,9.17804060755867 -"Tfru24888_t",0.215521746463436,0.138396110860923,0.371194027539425,0.267518246774606,0.261157983698427,0.819954620567378 -"Tfru24889_t",0,0,0.178191418639,0.107018280575474,0.0895490693575358,0.22708765945706 -"Tfru24890_t",11.7995711448044,12.7028703052642,10.9173244590163,33.0716221856069,29.2301127937775,37.3992092290501 -"Tfru24891_t",0,0,0,0,0,0 -"Tfru24892_t",290.162053751868,260.568300939416,251.137968389864,45.8117205807918,44.7225440540341,73.1911610456818 -"Tfru24893_t",7.30525015403891,7.97747228209019,8.99749551465558,7.380690476736,5.66123964864567,3.72892172859723 -"Tfru24894_t",21.8154758762939,23.3983944050833,24.3214445669096,23.7779014612912,23.2343966993729,27.579056996804 -"Tfru24895_t",12.9971210700221,14.2124427614272,10.5436581566888,11.6904274207109,19.0751564691554,17.3645684711291 -"Tfru24896_t",18.0767155535804,25.2991908477515,17.6623334154977,32.3623280460232,79.1327216098672,85.372848614017 -"Tfru24897_t",11.1003233568793,11.5005919499281,10.6960488100863,10.419768235402,10.2425787689367,13.4164129423118 -"Tfru24898_t",0,0,0,0,0,0 -"Tfru24899_t",23.7583485901418,20.2730027821763,23.5008376709499,17.9332645860129,25.8435191908421,28.5792953332839 -"Tfru24900_t",0,0,0,0,0,0 -"Tfru24901_t",37.4163862336237,65.1668324757367,43.1642506345702,24.8282410539999,20.1643433503028,34.6063781665037 -"Tfru24902_t",0,0,0,0,0.0457607579095778,0 -"Tfru24903_t",0,0,0.19395634307623,0,0.0974716411773714,0 -"Tfru24904_t",0,0,0,0.125034307665158,0,0.442194675009912 -"Tfru24905_t",0.327398194744534,0.157677720226776,0.394715519697613,1.42235052250427,0.736773169242516,1.96419910590919 -"Tfru24906_t",0,0,0,0,0,0 -"Tfru24907_t",0,0,0.161126316185822,0,0,0 -"Tfru24908_t",15.391214064998,13.9720457505203,13.3330708816754,14.4989346843779,11.0220549184802,10.9926606450665 -"Tfru24909_t",0,0,0.138064343449301,0,0,0 -"Tfru24910_t",0,0,0,0,0,0 -"Tfru24911_t",0,0,0,0,0,0 -"Tfru24912_t",0,0,0,0.230500912008713,0.192874918616231,0.163037293969172 -"Tfru24913_t",0,0,0,0,0,0 -"Tfru24914_t",0,0,0,0,0,0 -"Tfru24915_t",0,0,0,0,0,0 -"Tfru24916_t",13.4278880905182,14.2328914277652,15.5661888864356,14.7799263066898,17.135434624194,14.484594016462 -"Tfru24917_t",14.8401563757946,15.445099202992,13.3211423113688,19.2530372551469,16.5456651742283,16.1943870201235 -"Tfru24918_t",1.92023718334737,1.15600294314831,1.65361636496992,0,0.415507681818966,0.175614456646793 -"Tfru24919_t",6.66161577923372,4.75302238005178,5.73666470226348,3.06251431990431,1.60162652683522,3.52002545261194 -"Tfru24920_t",0,0,0.106862209700789,0.770152234806068,0.429623895529212,0.726322715821302 -"Tfru24921_t",0,0,0,0,0,0 -"Tfru24922_t",3.14166228923695,7.47185651157724,1.50302734004364,23.108833815566,39.3782730311118,111.011686999441 -"Tfru24923_t",0,0,0,1.07503724322414,0.14992545220272,0.253464164232485 -"Tfru24924_t",1.71449748513158,2.2363152174,1.10733238725664,7.31546389362345,10.0167030438501,10.8191049184185 -"Tfru24925_t",3.46831830707811,5.56790408397121,2.32302757693595,15.1475048873249,21.6807333976639,30.1686302817542 -"Tfru24926_t",25.9985923495934,33.9503558746019,29.2390307027735,48.065295835184,59.111485450458,62.1748180229872 -"Tfru24927_t",0.63523914382947,2.06507142017987,0.711148814802753,30.6527868774505,29.0030645579685,22.8896347557588 -"Tfru24928_t",35.3560258640025,29.7857946330946,34.4242174555941,35.5008546820471,30.050460779893,26.3921062572029 -"Tfru24929_t",0,0,0,0,0.415507681818966,0.351228913293587 -"Tfru24930_t",0.189456390914991,0.0868988466713719,0.233072538554877,0.0559915230845906,0.0468517038133499,0.0198018878306629 -"Tfru24931_t",20.8361711010008,20.9460649498082,21.4973403231281,21.4148497862801,12.7335654471858,8.37717138679633 -"Tfru24932_t",0.120531387046553,0.0967482137976823,0.155693793330202,1.18441752705768,0.886754199003891,0.529110988462362 -"Tfru24933_t",0,0,0,0,0,0 -"Tfru24934_t",0,0,0,0,0,0 -"Tfru24935_t",0,0,0,0,0,0 -"Tfru24936_t",0,0,0,0,0.0882449566969891,4.1026435563723 -"Tfru24937_t",0,0,0,0,0,0.0751406599344471 -"Tfru24938_t",0,0,0,0,0,0.0685993971276537 -"Tfru24939_t",0,0,0.164235450550361,6.70728874035795,5.11720584305991,9.90696764511423 -"Tfru24940_t",0,0,0,0,0,0 -"Tfru24941_t",0,0,0,0,0,0 -"Tfru24942_t",0,0,0,0,0,0 -"Tfru24943_t",0,0,0,0,0.0635055408893616,0 -"Tfru24944_t",13.1521099557242,12.6847005796512,16.857254206004,16.662642384358,12.3542939375785,10.5922797273612 -"Tfru24945_t",7.09067093550089,6.11492937094308,4.94940900560378,5.26864346562627,3.72563280260943,4.38285308497866 -"Tfru24946_t",5.81741916543628,6.7296165902897,7.21983723503923,5.66346843680877,6.04181793722918,5.13252027063439 -"Tfru24947_t",2.85420333298158,2.73824759801252,2.15728746731841,2.35962780799483,2.08970221777927,3.02427047432898 -"Tfru24948_t",0,0,0,0,0,0 -"Tfru24949_t",3.50637002801198,1.80625459866923,5.04924023879228,3.10353013668874,3.57076914063174,2.55773003096296 -"Tfru24950_t",365.660835264606,501.628169665785,366.745672897907,482.612901319239,453.412584555574,437.381330961445 -"Tfru24951_t",1.48690932338845,1.97675650768815,1.28045514986609,1.63415967374318,1.44784203288688,1.83579271605332 -"Tfru24952_t",0,0,0,0,0,0 -"Tfru24953_t",65.7362162652716,21.1875665310163,65.3515682001895,0.262534271381525,0.329518931956129,0.185695044792682 -"Tfru24954_t",3.41158890442426,3.85089812914252,2.22270276672216,2.42610985304602,2.76829356541824,3.27605648820795 -"Tfru24955_t",4.84242118119603,3.88691784950447,5.88316620066625,6.63972399216518,10.9168238118656,7.82731995108027 -"Tfru24956_t",0,0,0,0,0,0 -"Tfru24957_t",0,0,0,0,0,0 -"Tfru24958_t",1.75224424320516,1.56276952530671,1.34128789742635,0.805551275339834,1.26385592673787,0.854670588547546 -"Tfru24959_t",0,0,0,0,0,0 -"Tfru24960_t",81.0389486541294,137.252117928461,45.5940846611481,41.0743731273661,62.8939682367454,131.230867282041 -"Tfru24961_t",168.315010554354,264.951083197207,124.736177530541,97.3236613442181,184.522522622144,262.276038996444 -"Tfru24962_t",7.46324742481231,7.33927449952297,8.58053840543983,6.18396423515095,5.41126283299119,6.06074078288003 -"Tfru24963_t",81.7526721623138,85.2695240243058,108.467410078472,132.867963475664,161.574893103365,130.232899038068 -"Tfru24964_t",29.1164218063761,33.6457542636509,28.9906254640084,54.1748488939342,64.0933202748599,48.3616212246109 -"Tfru24965_t",8.44797084852545,11.6784282431649,10.5083162857725,5.82562081523696,13.8115681945411,20.9461935721176 -"Tfru24966_t",42.9824258766541,34.3923737193243,44.708133772734,101.915208086867,92.4835672942281,70.775653007806 -"Tfru24967_t",16.838701787957,14.7651785019957,19.6284081083159,16.783367268193,12.5294217374654,14.8634277391127 -"Tfru24968_t",3.97346376621711,2.27815895327651,3.66616803889023,1.17430870036871,1.71958415617646,2.69947897886118 -"Tfru24969_t",0,0,0,0,0,0 -"Tfru24970_t",24.8694978168184,27.0220904580696,28.9905215609573,26.6657101997083,27.3005047260115,25.1851418422161 -"Tfru24971_t",33.0887496240916,35.2474517021294,34.1755836165179,51.4995602068448,42.2900149777708,35.747777126016 -"Tfru24972_t",2.30428462001684,2.46613961204972,2.0670204562124,13.9038150123655,16.86961188185,15.3838264022591 -"Tfru24973_t",10.0484339995141,9.93121595449488,14.3631852693685,21.636327267005,11.7146795565721,15.7038476692291 -"Tfru24974_t",4.11479396431579,3.02762675586462,5.31519545883188,5.67502653565941,4.15507681818966,9.53335621796879 -"Tfru24975_t",0,0,0,0,0,0 -"Tfru24976_t",0,0,0,0,0,0 -"Tfru24977_t",0,0,0,0,0,0 -"Tfru24978_t",0,0,0,0,0,0 -"Tfru24979_t",0,0,0,0,0,0 -"Tfru24980_t",0,0,0,0,0,0 -"Tfru24981_t",0,0,0,0,0,0 -"Tfru24982_t",13.5733506643452,12.2627446387022,10.3706303054039,9.82802324481837,8.54868846918704,10.3956031057332 -"Tfru24983_t",26.4730373314677,31.1291877810964,32.3873263342582,16.9755880964928,21.8141532954957,29.588993916419 -"Tfru24984_t",0,0,0,0.0384848732627478,0,0.0544420370472787 -"Tfru24985_t",0,0,0,0,0.0760605066091204,0.0642939956342863 -"Tfru24986_t",0,0,0,0,0,0 -"Tfru24987_t",0.954663372402812,1.14943474460769,0.41105520436042,0.493743430836845,3.30517474174178,0.698466588936111 -"Tfru24988_t",11.5636851295329,13.906520489884,13.3888837186812,16.3146662049279,13.598479153888,11.8684964742568 -"Tfru24989_t",14.2510573529822,19.086146687094,18.9170147656177,20.8492071413167,19.7629005176312,19.5282617442756 -"Tfru24990_t",11.8292638144549,11.3699542091418,12.8470419386116,11.2228103238825,12.7819851895879,12.4583888078577 -"Tfru24991_t",0,0,0,0,0,0 -"Tfru24992_t",0,0,0,0,0,0 -"Tfru24993_t",22.6169047437519,20.2008134855768,20.8738920331737,38.7054369431737,38.9507743116262,43.7063334358634 -"Tfru24994_t",0,0,0,0,0,0 -"Tfru24995_t",1.1436466491859,1.07098022715574,1.02588933589668,2.71096790158857,4.12443813490182,7.42601119853571 -"Tfru24996_t",0,0,0.915768556549795,0.549992682451168,0,0.778038731979464 -"Tfru24997_t",4.30740632895762,5.19901310993083,4.01157407187442,7.2938262384466,7.09740143934979,5.5792439417031 -"Tfru24998_t",9.72254922186414,9.77406982830451,11.2176503410178,16.1104598106764,17.4840030158655,15.677043348975 -"Tfru24999_t",13.0104565796489,15.5156737207221,14.72523422346,16.495400000843,17.728021336015,17.0524745624508 -"Tfru25000_t",67.4223405936457,56.3198620723064,74.0161186450259,120.592901903628,133.270119124817,132.864361010044 -"Tfru25001_t",0.662358714798281,0,0,0.436677607172285,0,0 -"Tfru25002_t",0,0,0,0,0,0 -"Tfru25003_t",7.0665309356921,9.73246048202773,6.72007149294269,8.99225554884458,7.32638733978827,8.64788285000473 -"Tfru25004_t",0,0,0,0,0,0 -"Tfru25005_t",0.0610540528862263,0,0,0.126306459051286,0,0.089338749747642 -"Tfru25006_t",5555.41837903169,6451.41144786939,4913.85194848267,32154.161304771,26439.0743761961,10897.0738872082 -"Tfru25007_t",46.6381135753256,46.1126174013203,48.1418183459762,35.1429147830931,36.3569221591595,57.1715446179175 -"Tfru25008_t",3.06659270048577,2.40425060332203,2.27231875279716,3.61463781624529,5.7405666567094,8.71363751358665 -"Tfru25009_t",20.0353694602959,17.1911073645273,20.1092532870005,71.8916421794805,47.1204846404897,29.7215914292024 -"Tfru25010_t",3.12133415672571,2.55874169234408,2.85951446511596,4.80863167423709,5.00087308750495,4.4215971890912 -"Tfru25011_t",3.96615512654902,3.18355603084477,3.10496635053364,6.3402589916903,7.17776145631476,6.33116496065693 -"Tfru25012_t",5.12810199323019,6.05327693150669,5.71492190766085,1.24809829554448,0.522182005876618,0.662101183048952 -"Tfru25013_t",5.08900991366265,4.68753262282912,4.02319771020486,5.60916072370755,3.53821089533032,6.10377952595608 -"Tfru25014_t",0,0,0,0.670171032087028,1.30847534763042,0.316015731755155 -"Tfru25015_t",35.8382216698141,39.0404502729911,36.7740689197344,14.5633796441848,15.1067543597616,9.19421947541384 -"Tfru25016_t",18.8217080746603,20.0730320157544,16.8912905122202,17.5000818280246,18.1670208901024,20.8493815270092 -"Tfru25017_t",47.118863493551,48.669399273128,44.0365227627859,15.8684845249824,31.6147149210083,33.1376844281341 -"Tfru25018_t",46.4205064830867,44.9237412684173,36.2756217848071,37.5245007436002,21.8967826640393,12.834323571701 -"Tfru25019_t",12.0136542847607,11.3529024673625,12.47339930473,22.3857062191991,18.7315582726704,17.2675675171467 -"Tfru25020_t",0,0,0,0,0,0 -"Tfru25021_t",0.561942319541455,0.676590351340983,0.967835665116173,2.90631584706638,10.2139848206334,8.36205022166225 -"Tfru25022_t",0.38566355059578,0.464347012358731,0.387467491791918,6.05034031238172,4.56200094422507,7.85360749120511 -"Tfru25023_t",0.182235090610515,0.292553167101885,0.313864277515982,4.52401789990202,3.15461363636959,5.19986406340289 -"Tfru25024_t",0.131061430220667,0.10520047584553,0,1.4912438098286,1.13438134661964,3.06845852487377 -"Tfru25025_t",2.49405806040235,3.47704010243827,1.80864289918585,1.62935332176159,1.13615381747374,1.34454818370201 -"Tfru25026_t",0.16504985613251,0.198723492191507,0.177666296580142,0.0853623220307315,0.214284413511746,0.513215136074863 -"Tfru25027_t",0.231752763507441,0.0930117310579098,0.19957438887568,0.599302371222653,0,0.423896964319846 -"Tfru25028_t",0.462442440943747,0.37119360559808,0.663722164838843,0.159447419866577,0.533679591327112,0.902239410295453 -"Tfru25029_t",11.6842625969099,12.1371821490608,13.0668473773779,18.867275720839,9.06063006609639,5.29937897810808 -"Tfru25030_t",0,0.53946804000384,0.578765727597816,0,0.581710754404176,0 -"Tfru25031_t",2.27055072355263,1.301805116158,1.25697189904808,4.69723480147484,6.31683975738293,7.00084658254109 -"Tfru25032_t",0.7726706893695,0.225530117113661,1.20979458139522,3.19694743177301,3.10067396340658,1.64455009568904 -"Tfru25033_t",0,0,0,0,0,0 -"Tfru25034_t",217.994771879608,201.650031079729,247.743368184299,153.959044851556,136.543038848548,100.399518944694 -"Tfru25035_t",7.98174355375147,7.84629177437554,8.04808024893281,8.96160656426898,10.2971198658834,11.1989856448541 -"Tfru25036_t",9.91243931532265,8.82307542278303,9.88837472919365,6.85242051208144,11.0429903754456,12.17094350534 -"Tfru25037_t",0,0,0,0.116486385827459,0.389886564709486,0.0823928415903186 -"Tfru25038_t",10.9578752310584,4.96166257650054,8.71052098604556,19.1816845906381,112.597023141745,157.876809186147 -"Tfru25039_t",70.8837554009088,39.8279139006565,75.0586803162127,93.6878160012913,203.825994854788,181.514004799772 -"Tfru25040_t",0.988357373781735,1.09083611056887,0.638344552653829,1.27792417393066,0.641592743985168,0.723118350898561 -"Tfru25041_t",2.30022189044411,1.76241892390377,2.38601303439577,1.94670714236605,1.44794213950604,1.79767132037321 -"Tfru25042_t",0.0697181549970518,0.111922829903709,0,0,0,0.051008348403633 -"Tfru25043_t",1.26331393641274,1.01403766942834,1.63185825490452,1.30674953123736,0.273360316986162,0.924286613930492 -"Tfru25044_t",0,0.167536658427291,0.0449352273089652,0.377821060118629,0.406474906127249,0.0763541115855624 -"Tfru25045_t",0.255350689274916,0,0,0,0,0.18682389004978 -"Tfru25046_t",1.43362417698716,3.22207873801292,1.23456853186747,2.66924776261284,0.496340234254738,1.04889180591088 -"Tfru25047_t",11.1238116611501,10.9089105069028,11.3027655971282,16.8983347276326,18.5309520146409,15.8685417612698 -"Tfru25048_t",11.3294751008813,12.9229824283338,14.6631301290461,3.83780382833434,6.30798333991727,5.47756447979549 -"Tfru25049_t",0,0,0,0,0,0 -"Tfru25050_t",0,0,0,0.80836133792823,0,0 -"Tfru25051_t",19.9105608793273,17.9387800528859,21.60748711482,35.3409974960053,32.2684170070412,16.9779072706179 -"Tfru25052_t",16.5541758818492,16.360915971334,14.9909811447273,12.9066151651672,12.1110271848217,14.0664300848563 -"Tfru25053_t",0,0.807586886430954,0,0,0.870824482854121,0 -"Tfru25054_t",0,0,0,0,0,0 -"Tfru25055_t",0,0,0,0,0,0 -"Tfru25056_t",0,0.205277032015174,0.110115245003705,0.396798373640569,0,0.561324747272856 -"Tfru25057_t",0,0,0,0,0,0 -"Tfru25058_t",0,0,0,0,0,0.0966811794359067 -"Tfru25059_t",0,0,0,0,0.0171697389181391,0.043540774375238 -"Tfru25060_t",0,0,0,0,0.2507373942011,0 -"Tfru25061_t",0,0,0,0,0,0 -"Tfru25062_t",0,0,0,0,0,0 -"Tfru25063_t",0,0,0,0,0,0 -"Tfru25064_t",2.76957286059717,2.15571644409941,2.45729704584691,2.17030079488723,2.17923609345612,1.59649506042539 -"Tfru25065_t",6.39993213602228,5.82446046552281,5.88003002632309,5.36124841209106,5.01273014748069,5.45733229681626 -"Tfru25066_t",9.22375413820788,9.44613712378254,9.02038962340039,8.37843471530104,8.55241076535504,7.96659914081704 -"Tfru25067_t",0.119126105395152,0.074371283302173,0.136780934553207,0,0,0 -"Tfru25068_t",15.695659978739,11.1528614729469,13.1839819297468,1.06461064413212,3.2292518916252,3.57683349678768 -"Tfru25069_t",0.162968723125989,0,0,0.252857935481915,0,0 -"Tfru25070_t",0.0479648168834984,0.0577506466031841,0.0413050048343899,0.570560493299328,0.435909429256266,0.350928117764075 -"Tfru25071_t",13.2236141021806,10.300305640595,10.2420510652437,4.96410657069866,5.23738338461658,6.96514959224708 -"Tfru25072_t",0,0,0,0,0,0 -"Tfru25073_t",0,0,0,0,0,0 -"Tfru25074_t",0,0,0,0,0,0 -"Tfru25075_t",0,0,0,0.0267793047233543,0,0 -"Tfru25076_t",0,0,0,0.0359086131517705,0,0.0253987850522222 -"Tfru25077_t",0,0,0,0,0,0 -"Tfru25078_t",19.0826894605504,36.1451058747549,19.4391535978978,170.668366408711,209.178192034832,184.310047817324 -"Tfru25079_t",0,0,0,0,0,0.346477225627834 -"Tfru25080_t",6.18874071051306,7.59412037871207,6.86089770393954,12.0672399556941,18.7171961666122,18.6841291089497 -"Tfru25081_t",38.9545322459784,55.0958106633184,37.9916050331776,40.293877305389,244.647557210657,516.1863194637 -"Tfru25082_t",13.5248903780658,18.7895215217604,16.3505797697296,9.95435672324933,13.9574561849405,13.320601200763 -"Tfru25083_t",2.53907840439329,1.68362233288135,2.47173274001745,1.94123567025472,2.86651160256185,4.68459063065691 -"Tfru25084_t",22.107993887223,18.7136042630866,13.4999182905738,19.5418452625951,39.6620969009013,52.9364151614737 -"Tfru25085_t",0,0,0,0,0,0 -"Tfru25086_t",0.317419559589852,0.42464423814222,0.273346533881992,0.875555101534354,0.732633192124121,0.696707227251133 -"Tfru25087_t",210.210986811375,251.018994446485,190.266045958406,103.35985829677,99.6211699691508,86.3760091833238 -"Tfru25088_t",28.329080539209,24.8955091196426,26.7090288600701,50.5225836205143,59.3970646902548,53.7819273480805 -"Tfru25089_t",3.85567986475292,2.57180141952301,2.19796292855164,1.90986469950076,1.03406889140467,2.22497954122634 -"Tfru25090_t",1.870094003474,2.77123993220485,2.97311161510002,1.19039512092171,1.99216011831011,2.73645814295517 -"Tfru25091_t",4.07964059861346,3.69914011334178,4.35895950523208,7.11132624845585,6.73518522013207,5.91435377825757 -"Tfru25092_t",1.29246733494535,0.592822022127337,1.590015735548,2.67381057930107,4.63450875875001,1.62105652289348 -"Tfru25093_t",0,0,0,0.257097171086641,0,0 -"Tfru25094_t",0,0.242566564809297,0.520472776744129,0,0,0.221097337504956 -"Tfru25095_t",22.3036398508268,25.0637806257819,25.6091029973217,16.9183589752236,15.4436483507934,13.4624799177243 -"Tfru25096_t",0,0,0,0,0,0 -"Tfru25097_t",0,0,0,0,0,0 -"Tfru25098_t",0,0,0,0,0,0 -"Tfru25099_t",2.91878952529198,6.41738793968282,4.26205879566453,2.49407557812448,4.28374611542967,1.67125540313414 -"Tfru25100_t",1.52532806987265,2.63706444200498,2.82916207693876,0.36410130095231,1.62489037582836,0.515070333740595 -"Tfru25101_t",0,0,0,0,0,0 -"Tfru25102_t",0,0,0,0,0,0 -"Tfru25103_t",0,0,0,0,0,0 -"Tfru25104_t",1.90068725727257,0.915386945931918,2.29149326593682,0,0.658043839984788,0.556244885306586 -"Tfru25105_t",17558.1687452325,17250.161867105,16773.0759942958,22077.8112362642,19412.6223014712,11354.904966206 -"Tfru25106_t",11.5702914116365,12.1138032964643,14.7290679215135,15.6105707474164,7.40200810426003,13.618007266922 -"Tfru25107_t",16.9955203008027,16.6365555140587,16.0636046967164,18.5803448972813,17.4608902474911,20.1176758313309 -"Tfru25108_t",0,0,0,0,0,0 -"Tfru25109_t",0,0,0,0,0,0 -"Tfru25110_t",0,0,0,0,0,0 -"Tfru25111_t",30.1128103752201,31.7900809365784,30.4415739914917,28.7781885402046,35.6014536467614,35.6018398474863 -"Tfru25112_t",6.44810693055463,8.25153615967506,8.62504760983248,6.17777247718349,5.23795858725859,6.03243116257623 -"Tfru25113_t",70.7630986593095,83.5705244426021,73.4922407846674,150.799102996635,184.319800296595,133.88862873432 -"Tfru25114_t",25.4618159744906,23.7164839362814,23.2162913477341,22.5345462112894,21.4488163143178,19.6249866868661 -"Tfru25115_t",15.4848150679649,13.6104322052629,12.188352481586,14.0603633882345,11.0374642751744,14.6101268144434 -"Tfru25116_t",22.1468480065327,15.5251127543497,15.7660259753283,15.1194824936752,12.9070268473642,17.0676264544247 -"Tfru25117_t",0,0,0,0,0,0 -"Tfru25118_t",8.63965676885601,7.39721112820987,5.70404518646271,4.63857687422822,4.23748652001957,7.58530610981742 -"Tfru25119_t",14.2533276093638,12.7371267311647,11.7301035500896,11.2209539250443,8.38655287582785,10.4282550311364 -"Tfru25120_t",22.1587002952212,20.1836523043956,21.9857967102867,22.1233295064876,24.8494559711687,20.7233114552237 -"Tfru25121_t",1.0245167898957,1.6447196345606,0.882264828871146,0,2.21688549750973,1.49914780064336 -"Tfru25122_t",122.728202587854,119.327984964838,138.715046702775,77.4533173243189,58.4872226038653,48.1030902989043 -"Tfru25123_t",0,0,0,0,0,0 -"Tfru25124_t",17.5079286022868,15.5530324586126,18.7121538828453,13.2424103031694,15.6927736502468,14.2270855117069 -"Tfru25125_t",1.45833264079388,1.50502553044727,1.52495619522179,2.69370253649363,2.07367441949329,2.78174170323966 -"Tfru25126_t",0,0,0,0,0,0 -"Tfru25127_t",0,0,0,0.112417650488078,0.2822012069275,0.159029908994509 -"Tfru25128_t",0,0,0,0,0,0 -"Tfru25129_t",0,0,0,0,0,0 -"Tfru25130_t",0.0635479400691736,0,0,0,0,0 -"Tfru25131_t",0,0,0,0,0,0 -"Tfru25132_t",0.84158892464031,0.83447472325084,0.724736105743298,0.819317325419301,0.728423897119283,1.81099174503175 -"Tfru25133_t",0,0,0,0,0,0 -"Tfru25134_t",0,0,0,0,0,0 -"Tfru25135_t",0,0.174698199525867,0,0,0,0 -"Tfru25136_t",0.313179410145191,0.314228821141587,0.26969512010227,0,0.0677668632975947,0.343700241340416 -"Tfru25137_t",0,0,0,0,0,0 -"Tfru25138_t",1.0801334156329,1.63767083612677,1.60194085356461,5.1518600269033,4.83027680114548,5.09281924275701 -"Tfru25139_t",0,0.133619891050828,0.0477844887499563,0.516571726846474,0.240138191275822,0.121793381426112 -"Tfru25140_t",3.60006932051558,3.20609720443593,3.68856793953448,4.34901939704896,4.1167362594982,5.59472393164714 -"Tfru25141_t",0,0,0,0,0,0 -"Tfru25142_t",0.500487350978836,0.229560868142926,0.184712466299831,0.147912925663463,0.185652368472304,0.209242756855754 -"Tfru25143_t",15.1392407180452,12.2515821522734,20.3038198431498,13.7343815207082,18.9034514032853,18.1580678955326 -"Tfru25144_t",0.458655378188066,0.828346057988437,0.954515815766871,1.10699164111191,1.62100926824278,1.90155781082515 -"Tfru25145_t",0,0.260361023231601,0.977644810370728,0.838791928834794,0.701871084153659,0 -"Tfru25146_t",0,0,0,0,0,0 -"Tfru25147_t",1.66765529130088,1.74161240278658,1.60596680055776,5.47175217268921,4.50096368245731,3.48979848747417 -"Tfru25148_t",0,0,0,0,0,0 -"Tfru25149_t",9.98724758821403,8.84180572775148,10.8771530999988,7.5960527821053,9.15279159251569,5.15790711829743 -"Tfru25150_t",0,0,0,0,0.275953868380718,0.349895976241239 -"Tfru25151_t",12.8048772010033,9.30596258730786,13.4856586921787,13.8715971094018,12.2063404983378,9.62171894295511 -"Tfru25152_t",27.9312850606101,19.8781111760763,24.612460071395,12.3181350786099,11.5723708418974,13.0692459682375 -"Tfru25153_t",1.69832298055487,2.4277573494148,2.38877364043414,4.80168813600899,5.87982568611744,5.50866102217536 -"Tfru25154_t",19.5267362225526,19.5010406400469,21.0193634229707,17.4971996354938,15.918436188605,10.7979159154447 -"Tfru25155_t",12.7673664698713,10.0262974564727,13.8529820779494,22.9824573806371,17.8914327467443,10.9585731664134 -"Tfru25156_t",1.36233043413158,1.09351629757272,0.391057924148292,2.34861740073742,3.53743026413444,0.664487133258138 -"Tfru25157_t",7.86886582645393,5.54948173393701,6.4237668752892,3.90503737826996,2.79517214217686,1.49752446788684 -"Tfru25158_t",2.7259238445618,2.83404100194991,2.01208727968759,4.83368105343363,4.47158684157772,3.11504011481024 -"Tfru25159_t",36.2328052037532,33.9306008330705,37.0140872391522,29.0275207710591,32.1293730708852,32.2269235453312 -"Tfru25160_t",0,0,0,0,0,0 -"Tfru25161_t",33.2571198923114,31.5695582867811,34.491847371737,46.5155601209734,42.1765327629493,28.4580053240888 -"Tfru25162_t",45.3046895882277,41.2546367551039,39.01423051416,44.3682918634777,30.64526067192,29.7112071668291 -"Tfru25163_t",6.03097163220718,4.92587316244976,4.92023760987586,6.78555203689124,8.97475660352049,11.0699037218791 -"Tfru25164_t",33.5580228421293,30.1761463768524,36.2600221315262,9.96026555878966,28.047481473504,38.7267844341899 -"Tfru25165_t",71.8666967168069,73.3459213336396,72.1742806215395,43.243500482772,44.1107681172741,42.0933703550312 -"Tfru25166_t",35.8418988934618,33.0317620512092,36.2545122906779,20.4006315079856,24.2926613072488,20.118360439785 -"Tfru25167_t",17.8894748031057,15.2042140748107,17.0669434328184,10.5221982087318,8.65279567044715,13.8585103575131 -"Tfru25168_t",8.38826367155355,9.13233548305482,7.87082466133775,8.1424553705038,8.38277008925973,9.00324495176034 -"Tfru25169_t",0,0,0,0,0,0 -"Tfru25170_t",5.73449670794863,15.4199482462047,7.16049748483134,4.74532935575616,3.47438163978316,2.51734033418612 -"Tfru25171_t",0,0,0,0,0,0 -"Tfru25172_t",12.2116659755344,12.5183039085821,13.6836030201101,18.566828278334,17.9556077913888,16.52344427907 -"Tfru25173_t",0.187244524750626,0.200396745964293,0.161246023701561,0.193682415662596,0.108044345198097,0.502314753410219 -"Tfru25174_t",65.1993576247972,57.245181976375,51.585640950692,47.3220877798583,48.1334034672351,45.2302668504975 -"Tfru25175_t",5.13083509141055,3.75636303114746,4.85541717902241,0.408249601873149,0.927223518153062,0.577524052059925 -"Tfru25176_t",4.66129003770148,5.37410421523423,5.21146379645727,4.21193375693471,3.66351639103776,3.75764511791581 -"Tfru25177_t",290.148705328024,312.355648521111,261.293782275156,735.011214042518,494.716764730053,159.975652324635 -"Tfru25178_t",0.239736093518195,0.137451090536047,0.05898550017728,0.212553225831108,0.237142582367123,0.250570973609367 -"Tfru25179_t",14.505698327708,13.0106997915123,15.9134480735693,12.427416510429,14.9235794152466,14.5625875605509 -"Tfru25180_t",33.8335305768969,39.8156872625882,37.2839696623977,29.3617253887412,29.0359037039022,32.3058676220552 -"Tfru25181_t",0,0,0.418183329291526,0,0,0 -"Tfru25182_t",2.34105349283492,2.84552210660843,2.76480443187645,2.14479630465432,1.62100926824278,1.66386308447201 -"Tfru25183_t",5.04773438481865,6.07596139424501,5.63020519555229,4.74531901503165,4.70832989149616,4.10393181408352 -"Tfru25184_t",12.0936242953139,10.0956111157866,8.74813839913308,12.8430153065277,13.2587623996935,14.9828456774472 -"Tfru25185_t",14.0686107477437,16.2240375743909,11.4059426690335,9.51740144544744,9.35775560978246,11.0394951020725 -"Tfru25186_t",21.2903009626234,22.1699194576349,15.3610766780141,13.6895438905972,7.47060044366162,12.4213981126197 -"Tfru25187_t",146.295040192666,182.643158194434,142.089864489979,265.683075695355,258.977004821557,198.503456409442 -"Tfru25188_t",24.6361718384981,21.3470482139657,23.7009891574293,22.3911131334108,24.9814434467845,22.2480891396091 -"Tfru25189_t",45.5183495961661,48.3069108667126,47.3535595423204,97.3267050865588,93.6025486861271,67.2763018463261 -"Tfru25190_t",30.54922791689,26.9522629770079,27.3280839312721,20.8393779084241,26.2134548482968,30.443509255698 -"Tfru25191_t",0,0,0,0,0,0 -"Tfru25192_t",16.8964690360552,14.547452767709,17.4767740820205,16.989212163986,18.0559096565714,21.2710544118251 -"Tfru25193_t",5.75659969311845,3.46553344841034,5.57697168057306,11.1647336823064,17.2831621399002,13.8197671986502 -"Tfru25194_t",0,0,0,0,0,0 -"Tfru25195_t",0,0,0,0,0,0 -"Tfru25196_t",5.03391072531975,4.26510184861088,6.59877702232919,3.93416869524325,3.534028385644,6.30201012866988 -"Tfru25197_t",0,0,0,0,0,0 -"Tfru25198_t",0,0,0,0,0,0 -"Tfru25199_t",9.38598692205137,8.18503233309606,8.68148591609207,20.1365596730811,20.4601713668098,15.0059525369226 -"Tfru25200_t",7.0274839884861,7.43563363305153,5.50157535874022,17.8423481622562,22.1182796405533,14.7235694641133 -"Tfru25201_t",4.11177661878286,3.27705236810135,3.42857072907965,4.57391921208828,2.00885084567848,4.39389723022329 -"Tfru25202_t",0,0,0,0,0,0 -"Tfru25203_t",7.24617805036744,10.6664570204628,8.19008105291705,7.02686068684242,9.01573271871341,11.2658330679075 -"Tfru25204_t",0.209676481126741,0.112202171409292,0.120375567333501,0.289180844683144,0.181482140561528,0.409085256747938 -"Tfru25205_t",0,0,0,0.035124835823478,0,0.0248444057503548 -"Tfru25206_t",0,0,0,0.0536743939637336,0,0 -"Tfru25207_t",13.8856741713899,13.2170984967469,15.0970094754079,21.8200412340573,18.0455128025472,13.6955301514649 -"Tfru25208_t",1.71362318758689,1.8225271626212,1.43879802280975,4.07684529939326,3.48551828960836,6.4881526690771 -"Tfru25209_t",0,0.0374838827220592,0,0,0,0 -"Tfru25210_t",7.0069471503553,7.61629509314335,6.72544883450515,5.73789064367822,5.30665762184083,7.42280044818984 -"Tfru25211_t",118.262678754821,154.916972059791,143.446312787654,505.147878509349,578.517386902899,471.511788317957 -"Tfru25212_t",53.1900018612123,53.0689714038991,58.0049971218183,53.9904059281946,58.9455424355604,50.9178010396028 -"Tfru25213_t",37.5046324872533,38.8774799332615,34.3273040049559,41.4542953971996,46.9301087054457,47.3531838458318 -"Tfru25214_t",11.1016524130966,11.3126498575822,10.1026351257241,9.85450806288795,13.0844031013283,12.3275752603982 -"Tfru25215_t",0.29408533292222,0.0786855367759447,0.0844174048628167,0.304196652837636,0.169693919062588,0.143442379991547 -"Tfru25216_t",0.405977980532123,0.347595386685488,0.605988600242681,1.73573721562231,1.26499600296045,0.752471737565191 -"Tfru25217_t",0.0956838004230609,0.0768035364658139,0.329593239031589,1.28665714095068,0.993811084077253,0.980080680602833 -"Tfru25218_t",1.75937961825021,1.05916500026677,3.7877338202845,1.36490330618772,2.28420453355976,3.53987255544584 -"Tfru25219_t",2.58209720043966,2.14662090613892,1.9853379793478,3.3385944390285,2.47434596472875,2.90120479970828 -"Tfru25220_t",0.725364320632592,0.582235914589349,0.397503933887,1.36418907107197,1.0273541583436,0.723685947720303 -"Tfru25221_t",0.349315495931174,0.140194397124708,0.0752034469515945,1.08397726187881,0.453516700530056,0.511143948660106 -"Tfru25222_t",0.728150611236814,0.365295260113676,0.235143172158507,0.847334338510901,1.33925823771552,0.865705067977151 -"Tfru25223_t",1.04710920232868,1.42237498597666,2.15025617928135,1.99958988672563,1.18517291794,1.11968948868761 -"Tfru25224_t",2.66964454487221,2.67859007018807,1.65238477383414,1.55330604656517,1.73300125485567,2.07528503882507 -"Tfru25225_t",34.9350081623841,35.385898672279,34.1672341747188,22.3699994010832,23.3980192113403,31.5236643465977 -"Tfru25226_t",189.863451503471,229.44250082029,245.704137854397,158.373142875226,151.244796182104,148.207625506353 -"Tfru25227_t",0.456578134627432,0.549729660464548,0.589774858430168,0.472276325148286,0.197591968256302,0.167024619093418 -"Tfru25228_t",1.91267057448129,2.48004134037947,2.02720044742372,0.913122702213148,1.97384340969167,2.63729240936297 -"Tfru25229_t",67.2253420615335,77.9657157397185,65.0084222587692,134.137971911894,126.474891486731,75.2417111667727 -"Tfru25230_t",9.34699902416908,7.59304882228781,9.6008389822734,8.15404700792215,7.99267457654445,6.67382016881581 -"Tfru25231_t",3.07465318646847,4.21005736381604,3.97161626947161,11.4119041409351,8.45327791859899,5.68998400976155 -"Tfru25232_t",0.567637680888158,0.643244880925131,0.69010221908522,1.62330908580381,1.56063099888284,1.8077958772464 -"Tfru25233_t",0.211081348671979,1.01658550276861,0.54531946709121,0.873355214344569,0.913490506511546,1.08104376579056 -"Tfru25234_t",0,0.0577341652542676,0.0309699126572919,0.260398932701623,0.249020014788764,0.0263120975284151 -"Tfru25235_t",58.4795025164696,84.1880309041614,56.1533483279056,72.3562241724105,79.9553668017656,61.7174830700179 -"Tfru25236_t",25.4476424951498,42.0502961724068,29.7306272327935,46.8576400114564,67.4405660179772,54.6726703833049 -"Tfru25237_t",12.1017035432774,13.0925176755315,16.9159085351829,17.7788866285468,16.54657417682,18.6063333503649 -"Tfru25238_t",0.813659823452275,1.30621801485684,0.175171225102746,0.631226468479065,0.880312885209674,1.93473553932908 -"Tfru25239_t",6.38862180771464,2.56401159760398,6.32681166255125,11.2340710651243,9.12379035172825,6.54380865071702 -"Tfru25240_t",1.55191582705876,2.49138565333687,2.0492013143485,2.78247529496232,5.19384602273708,6.05567091885495 -"Tfru25241_t",0.59687656675984,0.479101278983905,0.385501150803378,0.308699267592485,0.258308505571293,0.109174173759108 -"Tfru25242_t",6.05488382675934,6.97698079816694,5.42165044348098,4.58196153934586,4.36490252845669,3.88475346019035 -"Tfru25243_t",0.504365042340801,0,0.447956870224395,0.19610228254418,0.18499351786089,0.13263777127389 -"Tfru25244_t",117.087633130937,138.861329146474,113.938200757074,77.2097741322564,98.5563952607182,177.970260333519 -"Tfru25245_t",9.13920416760516,12.4145364884825,10.594560915733,0.727186977634181,1.52121013218241,7.71527947611436 -"Tfru25246_t",7.40179531025969,7.72366136758414,6.37407189140387,0.382814289988038,0.640650610734089,4.87388139592422 -"Tfru25247_t",3.28736256931751,1.17275660899104,2.20182613813929,3.02256848094903,2.84532434289075,9.88785745033033 -"Tfru25248_t",18.1290468227595,17.4021948430928,21.1645420460902,30.6417502705776,39.5518018594639,52.4401567150519 -"Tfru25249_t",0,0,0,0,0,0 -"Tfru25250_t",12.796929484953,10.899136276001,13.712036863595,18.5923107723493,25.6189474749426,27.5878059220719 -"Tfru25251_t",16.8020753501771,18.3419133601305,20.2568004659236,45.8825895295763,65.1516044932677,44.2548430641604 -"Tfru25252_t",10.0503211475044,12.6696385959825,11.3178880807949,14.5275674496534,13.9405376377145,15.1777218282927 -"Tfru25253_t",0.0654796389489068,0.052559240075592,0.112775862770747,0.203192931786324,0.170024577517504,0.239536476330389 -"Tfru25254_t",1.33104134162573,1.78895075947785,1.73267190047281,5.47520349832928,4.34032526881639,4.46153897781739 -"Tfru25255_t",5.30851756233981,4.95470279331261,4.94353533061819,4.78869455330371,5.34267776034674,5.28391770733739 -"Tfru25256_t",0.992737096265258,0.996063589615725,0.854897677606309,1.1552283522091,0.859247791058423,0.272371018432988 -"Tfru25257_t",3.43734615138898,3.31747881476641,2.78388288428021,2.20104231808027,2.46108160695989,3.36789613048194 -"Tfru25258_t",2.0034810951962,2.01700863834149,1.25742351923996,4.84722734363997,13.3729988540158,20.446945932542 -"Tfru25259_t",0,0,0,0,0,0 -"Tfru25260_t",0,0,0,0,0,0 -"Tfru25261_t",3.99099177061508,4.56497599283625,4.98343411652157,3.50897944195686,3.28162242766761,4.30693412085069 -"Tfru25262_t",24.4828769307041,15.0230614656955,18.515000071627,9.84136164852116,8.58197120595983,9.0832300884327 -"Tfru25263_t",2.83181045297014,3.3554392544567,3.13536810773791,4.04505051523476,6.06921332993995,9.47134148207425 -"Tfru25264_t",13.1540255905189,13.5148569553873,12.5358965037516,42.4516272559177,49.63972253046,54.2791655669265 -"Tfru25265_t",3.48393645423533,4.32184575038167,5.45490789575373,2.21137491360668,3.76933217484217,10.427625606737 -"Tfru25266_t",0,0,0,0,0,0 -"Tfru25267_t",5.8408141440172,3.98506228953211,4.61067714740309,1.10763300359227,0.84257061782525,0.498557843319402 -"Tfru25268_t",0.134848116808102,0,0,0.557938002101346,0.700293845762302,0.690618649734581 -"Tfru25269_t",109.965399514595,91.972344951532,118.883289705798,21.2889717685755,35.106827414432,49.548867792878 -"Tfru25270_t",13.8346443847968,17.5423676535831,14.8490013680175,3.94052036448307,5.20624183663382,8.80167921141447 -"Tfru25271_t",5.61238425195473,5.49041063812609,6.34346570069358,6.34960236733813,9.71541970015119,8.08413104188266 -"Tfru25272_t",0.864971704210527,1.38859212390187,1.02419932515029,3.1314898676499,3.83689526004,3.24333005518853 -"Tfru25273_t",25.6672064318627,26.9886068557266,24.6317995740305,19.2019993124552,19.9204782067097,27.8567689404778 -"Tfru25274_t",40.4721523132521,41.3460906673482,41.7176026381553,32.507779168966,43.1240865026527,48.1177201925475 -"Tfru25275_t",11.9134519626991,12.8601794408919,13.885424702796,20.715494555404,21.7785964034085,19.7619935627596 -"Tfru25276_t",0,0,0,0,0,0 -"Tfru25277_t",7.81834937469133,5.92041308314176,6.54223770381536,9.99451144984573,9.19297066008599,5.61226182786943 -"Tfru25278_t",0,0,0,0,0,0 -"Tfru25279_t",0.308861679306792,0.247917297856561,0.265976896939095,0,0,1.3558469079348 -"Tfru25280_t",0,0,0,0,0,0 -"Tfru25281_t",21.8870703663199,24.0485827600638,29.8394610850138,17.3093656512363,25.6969204740498,25.0055395380218 -"Tfru25282_t",28.2665698385966,28.1864894765604,26.6164865837504,35.4304036909344,30.8119580981954,20.4850220363019 -"Tfru25283_t",6.47254977101235,7.00711648339271,7.80339014583542,5.18440356298695,4.36685276032576,5.56124010282121 -"Tfru25284_t",17.1741826449296,23.205396956441,21.8146366716112,19.3930980261913,15.9797034362234,13.7170746801627 -"Tfru25285_t",0,0,0,0,0,0 -"Tfru25286_t",9.14281307779613,13.2928469848676,8.46756839865243,44.5200442195226,41.5827631265952,33.4460797823205 -"Tfru25287_t",0,0,0,0,0,0 -"Tfru25288_t",8.86236633571628,22.5103174261899,7.52729992724746,0.753458183473566,0.210155619417107,0.266467022368689 -"Tfru25289_t",0,0,0,0,0,0 -"Tfru25290_t",1.15346055063772,2.46896128208639,1.32440669963266,0.994265947680602,1.66393236426359,1.54717541897061 -"Tfru25291_t",5.36908422975416,2.66184888224939,3.87566335539824,6.77876319329382,8.9525503812968,8.54965117885705 -"Tfru25292_t",5.87775780945109,7.24374046825559,6.08419802128949,5.22007189068494,4.9846239568035,5.56009021750979 -"Tfru25293_t",0.0364312128236979,0.087727890308306,0.0941184509550311,0.150735201781933,0.0945973690177611,0.0533088116447335 -"Tfru25294_t",1.15082707906072,0,0,0.59519756046075,0,0.420993560454568 -"Tfru25295_t",0.908220289421054,0,0.391057924148292,0.93944696029497,0,1.66121783314534 -"Tfru25296_t",0.85414793080756,0.474651711919336,0.749696538522631,0.925992176867145,0.888574693497886,1.0155044589557 -"Tfru25297_t",73.1017781012932,70.0489697984191,79.2996886658213,60.5214544699301,69.4030959260853,55.4533001806274 -"Tfru25298_t",1.24682749558443,1.24237777922797,1.16626921851288,0.289069848964867,0.520979437285807,0.503296293358262 -"Tfru25299_t",0,0.0473882677561381,0.0254201391312136,0.0305336766785961,0.0255494885166265,0.0863879969450143 -"Tfru25300_t",31.6224755726904,38.3279520360025,30.1364839412648,37.3981222493835,38.4096969360255,31.7736570244261 -"Tfru25301_t",0.164807016716915,0.0661437028121477,0.248366852266816,5.83871584322609,19.6138373590365,16.2781423767749 -"Tfru25302_t",20.67271051444,22.9485750057801,18.9386691014225,13.1940652931479,15.9894317349183,20.5956221407758 -"Tfru25303_t",3.89093569420719,4.86129577045519,3.32155119624948,4.58467520796387,5.76908068091375,5.64399260588567 -"Tfru25304_t",0.467095025734815,0.160683490906238,0.0574628403236171,0.828265389934405,0.519797139686157,0.0976410799465889 -"Tfru25305_t",140.52924085169,142.017180584216,149.188240605604,46.7061427517764,32.7677561690414,29.5526704466862 -"Tfru25306_t",22.9068664658083,18.6992975526913,23.7481635472185,17.5983098683978,17.4205239200738,14.1154042089696 -"Tfru25307_t",46.6084967019593,68.819124983075,63.9218997246394,133.324253543208,116.043326891544,74.5158602004586 -"Tfru25308_t",29.866952544088,30.9198295565572,30.006655209829,40.0827848464959,33.2747035987203,24.4291395481319 -"Tfru25309_t",3.9397969796265,3.8134809733743,4.59021094414063,5.75330276373747,5.014747884022,4.91720478611022 -"Tfru25310_t",97.1952428054215,109.988091584811,111.639486102581,44.0563571416883,53.1163579285009,52.4751003776553 -"Tfru25311_t",15.2658856076116,11.7912300201127,25.3830112022882,35.9512931034023,27.2573039273242,20.3010311883693 -"Tfru25312_t",66.6238814048348,63.7979595291124,78.5108291542239,238.583372388636,171.098837152497,178.409017130825 -"Tfru25313_t",23.9080914132182,28.1195050564896,25.5926544627879,30.2256848094903,27.5910239310618,26.2380492539478 -"Tfru25314_t",0.57849532589367,1.03188224968607,0.608877487101586,1.26325786742036,0.778878209989646,0.517303487444648 -"Tfru25315_t",70.0001252587411,73.3026414852918,74.8115468220756,101.443689872631,82.4503298630727,57.1628797411474 -"Tfru25316_t",0,0.313644209381324,0.336491702174111,0,0,0.571767998384909 -"Tfru25317_t",0.402820133693674,0.467040791273734,0.501062497377006,1.57408667561411,1.27840003330023,1.47358960691902 -"Tfru25318_t",12.8936059778366,15.5691826660451,15.1764345075632,7.74885002594194,7.1208390273359,7.53232549797322 -"Tfru25319_t",0,0,0,0,0,0 -"Tfru25320_t",0,0,0,0,0,0 -"Tfru25321_t",1.30289045861426,2.0079455588184,2.37861224954963,3.66570805226759,2.7064706321955,2.32591107283439 -"Tfru25322_t",10.8437306974015,11.8191876999878,12.4344199319027,8.20580114945147,8.54585262708505,7.68313247829721 -"Tfru25323_t",4.92158882993493,6.79847325784313,5.24851413523958,1.80545962992655,1.63457551941725,1.86321196340178 -"Tfru25324_t",17.7083249239257,17.6840499827554,19.6001722738801,7.59624115291205,7.93405864849606,7.08772543565174 -"Tfru25325_t",19.649713898694,17.0671762919556,17.8076136653305,17.7347866109151,18.0862270822853,20.1555672769545 -"Tfru25326_t",0,0,0,0,0,0 -"Tfru25327_t",0,0,0,0,0,0 -"Tfru25328_t",0,0,0,0.831567883514686,0,0 -"Tfru25329_t",0,0,0,0,0,0 -"Tfru25330_t",0,0,0,0,0,0 -"Tfru25331_t",106.627913065715,106.93152858236,121.989497815371,150.827990846,120.209328234816,138.857765403251 -"Tfru25332_t",38.5185917212961,35.8490372521124,34.6001250279032,33.4886848741512,31.9021214202902,21.9865134952063 -"Tfru25333_t",62.1446622692791,30.3199727102093,38.0201480380506,44.9157766781968,47.3138028098569,45.2548738408732 -"Tfru25334_t",0,0,0,0,0,0 -"Tfru25335_t",19.7782277152511,24.0401957347546,26.2780403289782,27.4725044386707,32.2810340247246,25.4955965647531 -"Tfru25336_t",0,0.481667892977717,0,2.48282410934715,1.03876920454581,1.75614456646522 -"Tfru25337_t",3.93798641079583,3.16094554737756,2.26080362377232,3.39448608668802,4.54461526947283,0.960391559697948 -"Tfru25338_t",18.839977102883,18.8285592024682,16.9553130915464,21.6286446417878,21.543141494183,21.7437988014981 -"Tfru25339_t",29.665895584595,23.1220308911871,29.2492915119103,33.2652687731878,35.6498786371288,29.3799211247885 -"Tfru25340_t",0,0,0,0,0,0 -"Tfru25341_t",12.6366583444517,9.57969012776104,13.0988065122095,16.7020061952163,10.5323674221521,11.4711950093797 -"Tfru25342_t",0.195980661208664,0.0524366290956334,0.168769166331494,1.0135946014069,0.96122500265274,0.621341973361517 -"Tfru25343_t",0,0,0,0,0,0 -"Tfru25344_t",6.37432819861177,6.29729229730595,7.31902184884545,10.2283658590481,13.2271292680211,11.8386010171428 -"Tfru25345_t",0,0,0,0.260176179123607,0.544265301783825,0.644094938300365 -"Tfru25346_t",21.3314299086112,19.14211817024,20.8812685978162,19.1662528250784,21.235016482341,20.376776130324 -"Tfru25347_t",10.9661672289631,11.940552534222,10.8395397363238,8.87729392106199,6.93298856156504,5.93022711151204 -"Tfru25348_t",0.420893671199636,0.0675686423015878,0.0724906973621582,0.783656908262086,0.437157380671257,0.677470599288732 -"Tfru25349_t",9.7452037054879,13.216966983329,10.1284002354407,16.8583757024932,15.1244796182104,12.2930119652755 -"Tfru25350_t",289.100983250046,323.082197666232,279.938253430123,287.923323281525,166.881120511234,95.3270118456093 -"Tfru25351_t",0.526161023620756,0.281559519903902,1.20827918108449,0.7256688419815,0.455410298444587,0.128319540347344 -"Tfru25352_t",0,0,0,0,0,0 -"Tfru25353_t",0,0,0,0,0,0 -"Tfru25354_t",0,0,0,0,0,0 -"Tfru25355_t",0,0,0,0,0,0 -"Tfru25356_t",0.842510941834,1.06270566645678,1.34741304810407,2.73893204040152,1.25009474472755,1.05670589959389 -"Tfru25357_t",0.632496193584857,0.358371151551734,0.768953579813292,2.11666802945113,2.51181570275859,2.23212351893843 -"Tfru25358_t",0,0,0,0.468457379122828,0,0.165674015704522 -"Tfru25359_t",0,0,0,0,0,0 -"Tfru25360_t",0,0,0,0,0,0 -"Tfru25361_t",0,0,0,0,0,0 -"Tfru25362_t",0,0,0,0,0,0 -"Tfru25363_t",1.27575238405046,0.866734774270648,0.680032507474291,1.23659593225123,1.30722446002704,0.891823433452894 -"Tfru25364_t",10.4915102398639,12.1920782602936,10.6529572440397,2.0246701730495,2.98174198509416,6.24388771768422 -"Tfru25365_t",0.0904309760726022,0.0725871959278628,0.467248972879013,0,0.234813275516638,2.77882940011611 -"Tfru25366_t",0,0.1673287965682,0,0,0.0902156877398499,16.2432478201221 -"Tfru25367_t",10.1082004136768,10.0969954036127,7.35063424268045,11.8498423400843,5.44381722169234,11.0111203432281 -"Tfru25368_t",12.1699354062452,12.1616040562941,11.9937548187536,13.1637019780738,12.9355495723671,16.5871016851374 -"Tfru25369_t",16.8824680593339,17.7456592149959,15.5768287968159,19.1260613208378,18.0914827969024,20.5863836739064 -"Tfru25370_t",13.5285099771118,13.1381381544026,12.9445615051075,12.9570840696747,18.5037218146021,18.085146827642 -"Tfru25371_t",188.183243968042,424.593081001061,192.184266652313,94.0552192012963,68.2654679600219,65.5145225914097 -"Tfru25372_t",0,0,0,0,0,0 -"Tfru25373_t",0,0,0,0,0,0 -"Tfru25374_t",16.9707285573438,18.444798110041,14.7051518026654,12.5387290340499,6.2039415478616,10.9511147996808 -"Tfru25375_t",23.9191116397309,22.3796785209206,22.4935151828877,16.2413559642261,10.6054253285234,10.8972988163796 -"Tfru25376_t",0,1.14294076299974,0,0,0.308109509823386,0 -"Tfru25377_t",0,0,0,0,0,0 -"Tfru25378_t",201.382595039541,209.013030675226,213.270997370054,385.649916485702,387.585507140277,198.707479727132 -"Tfru25379_t",10.8474937040056,11.208041355845,14.1113896529885,15.5176506834437,12.2854434768589,6.16339198808458 -"Tfru25380_t",0,0,0.13201772986758,0.634298130126165,1.45958446624363,0.560812589656731 -"Tfru25381_t",4.00980843728678,3.8858655393955,4.25315326700281,5.76627950891179,7.02590113902268,7.62052255123309 -"Tfru25382_t",41.6334606601976,31.0313471472717,33.9320611497804,77.6706472863111,88.1574918333926,94.1013738863696 -"Tfru25383_t",1.14689934158973,0.920593925146547,0.740741119120484,60.502949285891,60.3053384619506,53.493482101455 -"Tfru25384_t",8.42282083447528,7.96760683682191,8.75401921818561,6.08367013829737,7.03885096253391,6.79993747430972 -"Tfru25385_t",0.604391199794586,0.242566564809297,0.260236388372064,0.312585769162894,0,0 -"Tfru25386_t",16.2852146378245,30.8521456059153,28.9312213756486,11.838270228424,12.9592544805598,26.4707923666334 -"Tfru25387_t",10.3324659534015,11.1124345084259,11.2822097248249,16.4856327518,19.1721390164057,15.712129441148 -"Tfru25388_t",0,0,0,0,0,0 -"Tfru25389_t",0,0,0,0,0,0 -"Tfru25390_t",12.6542826936071,26.2398157597471,20.583718350567,4.72671535462218,4.8678724229837,3.60046375552003 -"Tfru25391_t",17.2880085680954,20.6276016459074,19.7160182558635,15.175882626122,17.3898515333021,13.6057251451047 -"Tfru25392_t",17.3675298133281,15.9506175328637,12.1039947868591,7.85431857669688,8.11039032781251,9.27885999302048 -"Tfru25393_t",1.43874807575822,1.3556996541017,1.16768593907426,1.55292051515624,0.812142713905276,1.89936929431411 -"Tfru25394_t",13.122600965831,15.0770164356505,15.0674079197106,10.7791827718378,9.91046270188422,11.3893908713502 -"Tfru25395_t",0,0,0,0,0,0 -"Tfru25396_t",0.194019345892488,0.0778677887032155,0.0835400877222101,0,0.0839651781966733,0 -"Tfru25397_t",0,0,0,0,0,0 -"Tfru25398_t",135.208064676324,169.543316833675,123.960372992286,109.838774140866,130.72793208161,126.006388594017 -"Tfru25399_t",182.534174114706,183.817909855269,194.083606789711,160.661815913236,171.638492983939,215.842419390303 -"Tfru25400_t",17.1072313733823,17.2202236256912,17.5588666712374,18.3649730488042,18.4485868083352,15.493119097678 -"Tfru25401_t",30.2621560805527,27.7760560994001,25.6637504567326,33.2080154954698,39.9157438270491,47.3141376737113 -"Tfru25402_t",0,0,0,0,0,0 -"Tfru25403_t",13.2423136266858,11.0865254010975,10.913167323901,6.77516409500863,8.01084725540803,12.2930119652755 -"Tfru25404_t",0,0,0,0,0,0 -"Tfru25405_t",7.90583690403487,10.14640639087,8.37923494141944,10.4242666845553,8.38427470681755,8.58095457762253 -"Tfru25406_t",46.9866759142525,45.1448484237655,47.8245589868882,42.4853566990321,44.3960579694098,41.0080582774303 -"Tfru25407_t",0,0,0,0,0,0 -"Tfru25408_t",0,0.465058655289432,0,0,0,0 -"Tfru25409_t",0.125764037083005,0.201896721607738,0,0,0,0.184027125228676 -"Tfru25410_t",0,0,0,0,0,0 -"Tfru25411_t",14.6394319918562,16.2908665585587,13.108184180238,12.0453842928909,11.0150675056464,10.3456041291923 -"Tfru25412_t",0,0,0,0,0,0 -"Tfru25413_t",0,0,0,0,0,0 -"Tfru25414_t",0,0.0443641480374899,0.237979328840243,0.0571702919916346,0,0.040437539359459 -"Tfru25415_t",276.237510062048,269.162549686439,251.67725766637,162.014793576293,127.557337066882,150.016417203363 -"Tfru25416_t",13.7595835810814,11.5933492857278,15.8969223285511,7.95615050300673,9.09847695946413,7.12819615483933 -"Tfru25417_t",8.21191479104788,8.42918812712307,7.4574375464061,4.37583040599478,4.09230758900492,4.40596696622731 -"Tfru25418_t",1.43471231677994,2.81506093050031,3.56923835892463,1.64893441797504,1.93167707866502,2.6825358178495 -"Tfru25419_t",6.26038865364152,9.07758721382485,6.08677898764468,5.84896064222108,6.99171579983837,6.05785445404203 -"Tfru25420_t",4.51062425618484,3.16801701422057,1.94216687160885,4.08249601873126,3.41608664582688,2.0625859002139 -"Tfru25421_t",2.84643096515069,3.10076620358835,2.06601996228393,1.05153489626433,0.950277733104847,2.43956190985623 -"Tfru25422_t",4.70752924883164,5.09544243371583,4.72954871613902,3.61514929747017,2.55172398343613,2.913654314679 -"Tfru25423_t",0,0.271180315081707,0.19395634307623,0.116486385827459,0.292414923532114,0.164785683180637 -"Tfru25424_t",0,0.503235112060747,0,0.648498834523854,0.542640629234391,0.917388952621014 -"Tfru25425_t",23.9590836861898,25.5187121362263,30.4857176060211,18.5077062264692,19.2086846508174,18.7092001116854 -"Tfru25426_t",1.60785410088895,1.61324174681781,1.03845525312106,2.9104875923014,4.17495756851593,2.35272956273216 -"Tfru25427_t",2.83181045297014,2.46245945286742,2.03218303279309,4.3937617665481,3.26803794689074,4.14371189840749 -"Tfru25428_t",0.969230249317034,1.1042330557303,0.888503396697178,0.743830818022905,0.811840465035196,0.754874199579629 -"Tfru25429_t",0,0,0.0766374109824512,0.0920538599865303,0.0770273774558465,0.195333876566878 -"Tfru25430_t",6.55456793078848,6.80109565347323,8.6388081388325,9.09502647098126,10.0664741658567,8.15830242224519 -"Tfru25431_t",4.08900063931824,3.43135091900585,2.56091029973217,1.92254079263904,1.93045604384918,2.583708267038 -"Tfru25432_t",37.4007735049809,44.0911378957207,43.616119145751,24.4820781167254,30.973300993284,28.8412973031465 -"Tfru25433_t",9.2745730453716,8.13703398151033,7.89394846884709,4.57362335933077,5.97392302486832,4.33963837028341 -"Tfru25434_t",0,0,0,0,0,0 -"Tfru25435_t",96.6892991572007,88.6003316182862,104.375765189495,132.882431388064,99.8947882443079,72.4153568049901 -"Tfru25436_t",15.9363946568788,14.0552270410108,15.4179394684695,17.2983646962979,17.9655985376643,16.5538217330994 -"Tfru25437_t",9.14676085514372,7.5289835698575,7.47538951397202,6.26732299447823,6.90831946713572,7.3741021844406 -"Tfru25438_t",3.1384286538764,1.75112063142056,2.63674591225272,4.90909186085799,3.84273619176538,4.08833655337182 -"Tfru25439_t",1.19907763456125,1.44371464799967,0.774441205717401,0.852709439875228,0.908112239479453,0.712797303963346 -"Tfru25440_t",0.892777649005818,2.29316913979119,1.61451650936888,7.38778693536958,7.49547598180334,48.2706474088131 -"Tfru25441_t",1.35664718242144,1.19961637743101,1.08216054103271,1.22788031245659,1.11758675994182,2.23328840709487 -"Tfru25442_t",0,0.127233028333933,0.136501350881951,0.32792016538598,0.685979663380368,1.73957716489748 -"Tfru25443_t",28.1206282080159,35.550718126109,31.783682747199,23.2699832842938,40.464189516052,42.1768611360918 -"Tfru25444_t",23.7501619475821,25.5679143190784,21.6555912541099,19.6533970518471,12.9788569126933,10.8347500137406 -"Tfru25445_t",7.90100879863004,7.11810427834661,7.68420462265082,4.94360407172648,3.99316409114084,4.28496964261495 -"Tfru25446_t",173.180699908895,188.580838406423,184.682921759476,255.025589658192,251.218655994193,204.56893232042 -"Tfru25447_t",0.655477582091918,0.526139180886746,0.752621232431042,2.03404315850601,2.64757820664881,1.91828535218864 -"Tfru25448_t",0,0,0,0,0,0 -"Tfru25449_t",0,0,0,0,0,0 -"Tfru25450_t",28.5962501796121,29.5200017728883,27.8111389070406,30.9039072036067,30.2923043222802,25.9183740842812 -"Tfru25451_t",0,0,0,0,0,0 -"Tfru25452_t",20.3511104734378,17.6303255361983,21.3724419401577,19.6388819875547,24.2737500974005,25.6936660721786 -"Tfru25453_t",0,0,0,0,0,0 -"Tfru25454_t",5.77674496463784,5.56425778136219,4.1218580806593,6.14608718621267,5.42853847563089,6.40009463811006 -"Tfru25455_t",4.10577029334142,6.84475426864129,6.25545664380068,5.22699812494945,6.56064760766789,7.62536456492656 -"Tfru25456_t",7.83339999625659,7.563487724878,9.58091914163314,20.1981096463418,23.4846064757814,21.1805273726031 -"Tfru25457_t",0,0,0,0,1.08528125846878,0.458694476310507 -"Tfru25458_t",0.398153444414443,0,0.171435345894393,0.205921430870343,0.344615375916204,0.14565180053644 -"Tfru25459_t",0.177361808806715,0.237274824127321,0.305471003381142,0.85614624460379,0.153512690327204,0.562312299607959 -"Tfru25460_t",17.0939228170191,18.4898320207861,20.8240770526609,7.54704598996269,11.1867452797414,11.057610018393 -"Tfru25461_t",33.238888200877,38.994157248952,43.4074295804604,24.5583689077109,26.8725076828571,25.12050271165 -"Tfru25462_t",1.04577232495578,1.08425241469218,0.637903097223224,1.08172834639773,1.01829553765281,1.0839274035772 -"Tfru25463_t",17.903850776061,11.6074065939604,14.8249417872514,14.9579976985373,13.1123325737186,13.0991111022745 -"Tfru25464_t",24.0029647918421,17.0436331361609,24.645243900994,15.2789175960061,18.7777510052802,13.1710842485095 -"Tfru25465_t",7.39683200728196,6.76301041569758,6.62290227806829,5.97904581435544,5.85102653989973,4.98171621916414 -"Tfru25466_t",1.76863951097784,1.56161801091964,2.58921509778185,1.82944934373231,5.05169865790427,11.7754114614745 -"Tfru25467_t",0.525064854821547,0,0.678241087194693,0.543117773920529,0.681692290484241,3.07325299131889 -"Tfru25468_t",31.3350601462633,31.594935745211,38.9144847946096,31.8935122728527,35.5385991523617,35.320528177675 -"Tfru25469_t",0,0,0,0,0,0 -"Tfru25470_t",67.9329192221947,67.4335050169846,63.7656310548541,29.981272263861,43.7067042668063,59.3112976222189 -"Tfru25471_t",0,0,0,0,0,0 -"Tfru25472_t",8.04166650021218,8.74838599448958,7.58463151271484,8.37909609134056,7.57223413833827,9.54734274301729 -"Tfru25473_t",4.12550957359787,4.21459406356154,3.55269140911506,4.65529520503311,3.89538451705281,2.74397588510615 -"Tfru25474_t",15.555948940489,13.6456797971501,17.8732294359623,12.9750729486712,20.4998755592903,33.872198980941 -"Tfru25475_t",406.042371332816,237.010590451581,314.074509008148,8.45319492483313,27.6062010391395,40.3503255447204 -"Tfru25476_t",8.26140824206755,6.44447624123537,9.11836586293142,5.05505739715506,1.51067543597616,0.681053294475099 -"Tfru25477_t",0,0,0,0,0,0 -"Tfru25478_t",5.38882351001061,4.54732517384271,3.68867959702377,3.00144032956082,3.22906874439904,6.1667247523175 -"Tfru25479_t",7.52570719490095,6.76905577680023,6.75655670089757,7.72924913330359,6.46755921509826,6.91189046332202 -"Tfru25480_t",0.233686722590952,0.28136372051593,0.100619910942189,0.604303503666792,1.61811058288332,0.94035557453429 -"Tfru25481_t",9.53902684456674,6.91797910034802,9.22335821098759,10.0401054621165,9.63241164774545,10.6523111651292 -"Tfru25482_t",0.0518742678428203,0.0416384717610278,0.0893432738097362,1.04632754222417,0.808181042130128,0.246695207700806 -"Tfru25483_t",56.2579091568079,47.1430137506704,61.8782820310446,22.2532250518014,21.925877512118,24.8299953587992 -"Tfru25484_t",0.378994180923823,0,0.217581100653937,0,0.109344126794465,0.277285984179148 -"Tfru25485_t",2.9367176065236,2.06462274280546,1.51737639565254,6.28487298654421,11.8326530653002,27.6652041214675 -"Tfru25486_t",3.09882587372525,3.90872053032581,2.35665086744216,1.95652486700952,2.89113728307568,3.09165570384175 -"Tfru25487_t",5.92143624820775,3.2677028862856,4.14314672941252,6.12502863980861,5.12520488587271,9.74776279184845 -"Tfru25488_t",4.01004185066575,4.02347881962915,6.21586103777475,3.94052036448307,7.63582136039627,5.42770218037226 -"Tfru25489_t",1.29379430346172,0.830802936554225,0.965599905109487,0.178437050980051,0.149309741926733,0.189317432730116 -"Tfru25490_t",5.58345888696389,5.02120252741854,6.23286168334815,8.39576521900534,8.77040829931725,7.86752765777635 -"Tfru25491_t",0,0.0406715953057808,0.0436343280865102,0.104823695810959,0.0438563596612298,0.074143618608417 -"Tfru25492_t",0,0,0,0.184891157079329,0,0 -"Tfru25493_t",217.876091889229,190.803655179206,215.932798278807,386.17433066926,539.036072143342,562.936303686655 -"Tfru25494_t",0,0,0,0,0,0 -"Tfru25495_t",0.0990688405323673,0.238561928126125,0.255940032903658,1.22970062019742,1.62920170052837,1.66709478302675 -"Tfru25496_t",0.389538068492028,0.312674675503793,0.559085903921437,2.55189804129584,1.23624773956957,1.14000110960824 -"Tfru25497_t",9.76620629968076,19.0499651672981,11.123153829993,7.38640172531919,7.18049212643401,8.22095175177802 -"Tfru25498_t",1.25388622045366,0.503235112060747,1.61968020820585,40.2069277404789,48.2950160018608,25.2281961970779 -"Tfru25499_t",6.45006487684238,6.64247449556712,6.54886683389881,8.62340777994608,6.58272391348994,5.93772213773951 -"Tfru25500_t",8.98008116190122,10.0835147688949,9.93063274085687,10.710079467031,11.2128825350679,9.29874444803261 -"Tfru25501_t",9.13156269254863,10.1458877685738,8.69141896633931,11.583198290479,10.7739620586068,9.66984636856629 -"Tfru25502_t",0,0,0,0,0.0839651781966733,0.425854917965665 -"Tfru25503_t",0,0,0,0,0,0 -"Tfru25504_t",9.61950879029204,18.0165853092601,8.83611798045059,6.63349952857161,7.77094519405621,12.1991721788604 -"Tfru25505_t",41.5580981900318,43.611329144284,42.4613984238664,28.4964784370264,37.1124385344892,36.6360417414192 -"Tfru25506_t",0.597230166621664,0.998718972407947,0.900035565945564,0.463323219458271,0.344615375916204,0.3641295013411 -"Tfru25507_t",1.85658291207619,0.74512160239762,3.5973007939608,0,0,0 -"Tfru25508_t",22.0567784573684,22.4040660490792,21.1171279040077,18.1514573399849,17.9678997543337,16.0544837731832 -"Tfru25509_t",20.0391724408957,31.6287884770031,23.7280673929886,26.3088242779852,33.2715870217997,49.9051173819672 -"Tfru25510_t",0,0,0,0,0,0 -"Tfru25511_t",163.047339238025,145.494530424646,167.494801607803,224.268536149456,187.31086296399,151.25321922075 -"Tfru25512_t",11.1715926557776,9.39279153730162,16.660846093399,20.2482415980471,19.3993136069077,17.3310988924471 -"Tfru25513_t",0,0,0,0,0,0 -"Tfru25514_t",0,0,0,2.59399533809541,0.542640629234391,2.29347238155254 -"Tfru25515_t",0,0,0,0,0,0 -"Tfru25516_t",0,0,0,0,0,0 -"Tfru25517_t",0,0,0,0,0,0 -"Tfru25518_t",0,0,0,0,0,0 -"Tfru25519_t",0,0,0,0,0,0 -"Tfru25520_t",4.44816489852576,4.07690360786125,4.72705767117292,2.93687418116996,3.16740741303981,2.56200587334883 -"Tfru25521_t",6.13695282234676,5.28781095882256,4.35925486225561,2.61808320239033,2.49081678845253,3.77973335292211 -"Tfru25522_t",13.2829548488736,11.3543067995744,10.4730451246491,9.36794517645266,10.0784075800545,11.485257585627 -"Tfru25523_t",14.4845476623392,13.9517596039027,15.591749069689,8.98953553304098,19.4321479742819,12.7169088796605 -"Tfru25524_t",0,0,0,0,0,0 -"Tfru25525_t",6.75607925085067,8.25235201256804,5.56505507441799,1.06344738949474,2.16107579267731,2.57895355914872 -"Tfru25526_t",0,0,0,0,0,0 -"Tfru25527_t",0,0,0,0,0,0 -"Tfru25528_t",0,0,0,0,0,0 -"Tfru25529_t",12.9560134885161,10.5957592752197,11.4377805069755,7.16430817198758,8.25171657152602,9.71756037992199 -"Tfru25530_t",0,0,0,0,0,0 -"Tfru25531_t",0,0,0,0,0,0 -"Tfru25532_t",0.561942319541455,0.676590351340983,0,0.290631584706638,0.486380229553974,0 -"Tfru25533_t",1.88579965800187,2.01897563170052,1.55534911242323,3.03174944915631,2.67842641666162,2.37762830752215 -"Tfru25534_t",0,0,0,0,0,0 -"Tfru25535_t",10.6984428491799,11.4991427516447,10.9559845207253,4.75822830718861,7.69001232152436,7.78890776898716 -"Tfru25536_t",0,0,0,0,0,0 -"Tfru25537_t",0,0,0,0,0,0 -"Tfru25538_t",0.407817362968192,0.491020667599403,0.351192795958417,1.05459761926316,0.529469740181935,2.08861853778953 -"Tfru25539_t",0.407817362968192,0.491020667599403,0.351192795958417,1.05459761926316,0.529469740181935,2.08861853778953 -"Tfru25540_t",7.72180484367347,9.12504450868132,6.28022385419426,6.58212519202411,6.31218052805834,6.38190408410049 -"Tfru25541_t",0,0,0,0,0,0 -"Tfru25542_t",10.6984428491799,11.4991427516447,10.9559845207253,4.75822830718861,7.69001232152436,7.78890776898716 -"Tfru25543_t",0,0,0,0,0,0 -"Tfru25544_t",0.35560213630357,0.0982424054208014,0.346958332354195,0.607426387510974,0.442612666447354,0.195613983121869 -"Tfru25545_t",0,0,0,0,0,0 -"Tfru25546_t",0,0,0,0,0,0 -"Tfru25547_t",0,0,0,0,0,0 -"Tfru25548_t",0,0,0,0,0,0 -"Tfru25549_t",64.0534309381164,46.3785201645975,56.2917590813461,18.9743563691155,20.1178417068465,25.7051601549858 -"Tfru25550_t",0.747589559701423,0.675085144775152,0.482841263408903,4.54309862055882,2.99267212433571,1.6408914747865 -"Tfru25551_t",0,0,0,0,0,0 -"Tfru25552_t",0,0,0,0.133076330516516,0.111353513504317,0 -"Tfru25553_t",3.65262507701945,4.18841646068227,4.49352273089652,2.69872185799021,3.16147149210083,3.81770557927812 -"Tfru25554_t",0,0,0,0,0,0 -"Tfru25555_t",8.61956177857336,8.38046449633045,10.7682207292568,9.54380365733184,11.6636368776494,11.6357266434328 -"Tfru25556_t",0,0,0,0,0,0 -"Tfru25557_t",0,0,0,0,0,0 -"Tfru25558_t",0,0,0,0,0,0 -"Tfru25559_t",0,0,0,0,0,0 -"Tfru25560_t",0,0,0,0,0,0 -"Tfru25561_t",0,0,0,0,0,0 -"Tfru25562_t",0,0,0,0,0,0 -"Tfru25563_t",0,0,0,0,0,0 -"Tfru25564_t",0,0,0,0,0,0 -"Tfru25565_t",26.5427717966421,23.9182923905251,23.2886358404854,22.7931393645337,20.4812467603015,14.381541568914 -"Tfru25566_t",23.6453047204405,18.756339143797,22.0390922814699,16.40143741111,13.9649104982202,13.8398147953433 -"Tfru25567_t",0,2.05381233554268,1.83618568445264,0.441110882372003,0.738211617444864,0.936016139487986 -"Tfru25568_t",0,0,0,0,0,0 -"Tfru25569_t",0,0,0,0,0,0 -"Tfru25570_t",4.58983521873274,5.06573647444665,2.89382863869736,5.42587902921582,3.83077813969681,3.59795472154406 -"Tfru25571_t",28.4051478837886,22.6620795548883,27.870890577618,25.9984245876712,24.4366198118941,28.7172820500289 -"Tfru25572_t",13.5121585016942,9.90282241507645,6.57688326976326,9.72294756108968,11.6952337015417,14.1842445753105 -"Tfru25573_t",6.85133169786562,8.24914721566996,8.70958133976874,9.11172343043373,12.1425060415057,12.5317112267372 -"Tfru25574_t",10.2049414728507,11.169967088703,8.87677496532931,10.129313084162,9.72491905606966,16.063874531311 -"Tfru25575_t",0.778594780087557,0.562466677620817,0.469341994228023,0.16107292646392,0.067390031805671,0.512683538866913 -"Tfru25576_t",0,0,0,0,0,0 -"Tfru25577_t",0,0,0,0,0,0 -"Tfru25578_t",0.516986933978138,0,0.11130110148836,3.20857269516128,2.68481886713793,0.189123261004239 -"Tfru25579_t",16.0000765069344,13.4354573045001,14.6890494305761,15.8692023042465,15.8171174057422,16.2310963018124 -"Tfru25580_t",0.325874231076212,0.523145888417258,0.280627292348464,5.86516634055373,7.22061448622563,6.34201160349747 -"Tfru25581_t",0,0,0,0,0,0 -"Tfru25582_t",0,0,0,0.512461589545908,0.551326536533169,0.103563706531386 -"Tfru25583_t",0,0,0,0,0,0 -"Tfru25584_t",30.905371765662,29.6986939193974,29.050740867752,11.9317065358707,15.8237381418104,20.222960098316 -"Tfru25585_t",9.49716930058756,8.19493372321339,9.3030525007581,8.92319734071976,7.32961030811129,7.12218780842624 -"Tfru25586_t",17.6352361156592,20.2857816745309,16.3824183265098,11.6343906611736,10.8169355184276,14.8328904704978 -"Tfru25587_t",28.7706769765181,21.2461728135668,22.2983371132463,16.0703341324402,21.41572127183,24.8386200668195 -"Tfru25588_t",21.2468104044068,26.8557854282758,24.3956484076231,14.146323413744,25.1539170752325,23.5854299333775 -"Tfru25589_t",0.214860298648203,0.137971365763651,0.148021925253062,0.133348609453634,0.111581346780029,0.0314399282999374 -"Tfru25590_t",0,0,0,0,0.131134074514552,0.0554238591761747 -"Tfru25591_t",5.29488831193266,6.43747097309879,9.86298093422824,7.92626862789494,5.58342865080569,7.51672325051375 -"Tfru25592_t",15.9576036293772,16.5252991497428,15.8985039595678,13.0122358867892,13.1565430621014,13.2730441150202 -"Tfru25593_t",4.18061116635165,4.06335947631119,3.47768844528626,2.97115207398637,2.38769224741941,3.05868781126524 -"Tfru25594_t",55.737653819518,53.1687251095455,56.5200905995577,49.8206111846331,48.7672177038726,44.510454982443 -"Tfru25595_t",5.86885677602733,6.3516645227929,6.70078059980942,15.9610121315421,12.6707012862377,12.5438897604852 -"Tfru25596_t",7.47866855532173,7.20357917095384,6.44027145110688,6.31757173225066,7.4439988990564,7.20436161169709 -"Tfru25597_t",4.73468886428678,4.3851267713357,7.94548325653898,29.3848691554691,32.9944322484858,27.2684586223959 -"Tfru25598_t",32.9853112410478,28.9134625402915,34.2875457191035,26.0273812992076,22.1324974367086,20.1181676012675 -"Tfru25599_t",23.7223545919375,29.168629418318,22.7706839825556,21.3339787453675,20.9248472858472,18.0747073410301 -"Tfru25600_t",20.0426950067164,26.1235494279681,17.9872346829452,18.5871384420335,13.400751847194,15.5629082010115 -"Tfru25601_t",8.50737992622251,6.82870936880856,7.32614845239836,13.199824378828,11.0451409091117,5.05725175786651 -"Tfru25602_t",1.60225976316678,1.4251410854105,1.37978942824487,1.38858977249785,0.824589987114958,1.01385665692994 -"Tfru25603_t",2.67491215840011,2.40184097739934,2.85010106077856,3.09515579741003,2.00129846747667,1.1609698294243 -"Tfru25604_t",0,0,0,0,0,0 -"Tfru25605_t",0.220552301786616,0.128751322228133,0.120863964623398,0.269614551254105,0.138833115643569,0.176033584228289 -"Tfru25606_t",31.9588211274053,34.8731032262926,32.6143367560769,38.665279789577,39.2444755436415,43.519259416781 -"Tfru25607_t",0.437807406452245,0.273326308696521,0.335127809924419,5.6859116111657,1.34733237879919,0.7118130842661 -"Tfru25608_t",0.705969551577806,0,0.6079471920362,10.9536357591176,1.22208141516987,1.03302621392548 -"Tfru25609_t",0.701548031494342,0,0.151034897635561,0.544251631486125,1.36623089533376,2.0531126455575 -"Tfru25610_t",5.95536697340128,5.29015209490522,3.00870652416549,0.492810078415603,0.824731693591521,2.84668046454868 -"Tfru25611_t",1.57963824507213,1.29772757228935,2.00163801596704,1.43561612561449,0.575995978305182,0.297148028842547 -"Tfru25612_t",0.715286375356509,0.328982880969973,0.945744891930124,0.67568846828053,0.611655939604609,0.749599788172441 -"Tfru25613_t",0,0.663280377216242,0.237199068745685,0.569828484113342,0,0.403049572631985 -"Tfru25614_t",3.48173930319579,3.06497993224162,3.68718999110286,1.90911046513029,2.22746155561905,2.57301848479209 -"Tfru25615_t",13.053920082948,14.4203956882475,13.2448310771148,26.2033436771504,17.7869249947888,7.65949207067168 -"Tfru25616_t",99.8260954753839,111.66114798359,95.0452827183494,183.648568736205,112.30903484793,55.9904391130971 -"Tfru25617_t",13.3589211588349,13.4901600187863,13.2296731174097,8.35780108623537,7.29189872491991,6.84171222483917 -"Tfru25618_t",0,0,0,0,0,0 -"Tfru25619_t",3.0726364385632,3.78975095099913,3.16230159001272,2.86820447958031,3.04866251825245,5.09924225143009 -"Tfru25620_t",6.7477214300718,8.3742260231525,8.08367958498002,6.46461464156741,5.92658778528089,6.39426081774113 -"Tfru25621_t",8.13258346565704,8.74607489881943,7.95530899265956,6.61541950188915,5.53554641896978,6.12339881728951 -"Tfru25622_t",7.35982248116585,8.12865680170782,5.94487716948014,4.89820308160586,4.51838149753901,4.92555318133281 -"Tfru25623_t",3.0169472321238,4.84329041558453,2.79790061752507,3.12067671202956,1.80780275929523,2.54689474418692 -"Tfru25624_t",0,0,0,0,0,0 -"Tfru25625_t",1.32682707783455,2.33130109828463,1.88150061267052,1.66508104169929,1.26975132681107,1.18335600344152 -"Tfru25626_t",0,0,0,0,0,0 -"Tfru25627_t",0,0,0,0,0,0 -"Tfru25628_t",0,0,0,0,0,0 -"Tfru25629_t",0,0,0,0.049628123259443,0,0 -"Tfru25630_t",24.6363400869479,25.461834864955,22.5932758244326,22.1738616730122,23.2621003586353,22.5728592942356 -"Tfru25631_t",0,0,0,0,0,0 -"Tfru25632_t",0,0,0,0,0,0 -"Tfru25633_t",0.0240235564116235,0,0.0206879370796208,0.397592651197184,0.332691309434688,0.12303557872023 -"Tfru25634_t",43.7850692495256,37.7170451789914,46.0590840004531,39.7672675141811,41.8258659585246,36.2018784570614 -"Tfru25635_t",49.1768059149937,51.3974885800188,56.0238166333177,41.3299379178549,32.809905363144,38.2282689164057 -"Tfru25636_t",14.2671147815043,12.6278057158417,12.7797966796149,11.990591036062,14.6640504842099,14.4925197922695 -"Tfru25637_t",0.0478146709000839,0.191899558955562,0,0.1483759427899,0.289696590909638,0.209897756948359 -"Tfru25638_t",0,0,0.384817638124649,4.62227892698323,0.386775767650633,0.326941807587116 -"Tfru25639_t",13.1361680042627,9.563297075136,9.73378723925475,10.1118654635386,9.25448927687697,7.37580717916533 -"Tfru25640_t",19.1690941353819,35.9036296176642,14.6012760334529,3.59294058164785,12.7443503317288,40.5437080571795 -"Tfru25641_t",1229.21891247025,2054.52677126202,1098.11829471885,2230.19024617805,2421.83980385632,1664.56696067055 -"Tfru25642_t",0.7426659898466,0.953797807878141,0.818621962856395,2.7962499251354,2.26266559406368,1.56488129685261 -"Tfru25643_t",0,0.887282960749781,0,0.571702919916336,0,0 -"Tfru25644_t",11.2650277943532,11.0345735482338,11.5095457220918,9.67737124440215,6.27983200930937,6.00681266485055 -"Tfru25645_t",0,0,0,0,0,0 -"Tfru25646_t",0,0,0,0,0,0 -"Tfru25647_t",24.4555630686374,28.9164013038934,26.700473986286,27.6529795399537,33.9228570315548,49.5366710973603 -"Tfru25648_t",102.225015982956,84.2918812712307,98.4349896459554,67.0966736631025,75.7703997210803,63.5048295108814 -"Tfru25649_t",0.0789571210257965,0,0,0.408359228511676,0.0683400792465405,0.231071653482623 -"Tfru25650_t",0.926585037920376,0.991669191426244,1.06390758775638,0.638962086965328,1.06932123997528,0.451948969311601 -"Tfru25651_t",2.03012773393217,2.3998742998136,2.1614713030692,3.70350960072347,2.84337967677082,2.13345330680309 -"Tfru25652_t",0.683516379057635,1.04741390928748,1.28424347871184,0.578468634944942,0.752954009213363,0.363698578854306 -"Tfru25653_t",97.2751731037813,91.2633902485506,99.8153299249934,83.6319699991913,69.9802411484575,51.9911220335902 -"Tfru25654_t",0,0,0,0,0,0 -"Tfru25655_t",18.5155784474529,24.7701613402167,20.9099749388717,63.7146186979172,51.9434808615155,37.6395508941617 -"Tfru25656_t",15.7914242051593,16.4781121282105,10.335102281062,26.1349906247473,18.3151412380729,22.6450220412971 -"Tfru25657_t",0,0,0,0,0,0 -"Tfru25658_t",53.5886802210998,45.5883953287534,46.9763928586248,47.3051435147575,44.9604686243041,53.2834034849849 -"Tfru25659_t",0,0.0671648456344468,0,0.0865526332941082,0.217272443182228,0.489761432879504 -"Tfru25660_t",29.6391749824499,16.5432664177182,38.2012425435516,20.7095375476239,1.69892159622241,1.29248957578832 -"Tfru25661_t",0,0,0,0,0,0.12075650260585 -"Tfru25662_t",3.740188006948,12.0087063728877,9.78649239970424,2.08319146161299,0.62255003697191,5.99915823647865 -"Tfru25663_t",0,0,0,0,0,0 -"Tfru25664_t",0,0.073859260697683,0.118859336200603,0.0475897282734308,0.31857105944499,0.437593525598527 -"Tfru25665_t",0,0,0,0,0,0 -"Tfru25666_t",3.79660251540561,5.60393928210442,4.37743347932502,6.91612691269124,9.21930489097442,11.6819106925855 -"Tfru25667_t",0,0,0,0,0,0 -"Tfru25668_t",0,0,0,0,0,0 -"Tfru25669_t",0,0,0,0,0,0 -"Tfru25670_t",0,0,0,0,0.20954998362628,0 -"Tfru25671_t",33.5521318994326,20.8772461352893,43.4522256894185,40.0864635611932,46.3747737757701,35.775328939192 -"Tfru25672_t",0,0,0,0,0,0 -"Tfru25673_t",0,0,0,0,0,0 -"Tfru25674_t",2.18020008922441,2.45000623764131,1.87748397839361,1.05240814323701,0.880617491744348,1.8077958772464 -"Tfru25675_t",0.879689809125105,1.4122200003557,1.5150935281138,1.81987107491696,1.90350377796647,1.60903297974811 -"Tfru25676_t",0.3235316178618,0.173128382585326,0,0,0.186685094527135,0.562162148817286 -"Tfru25677_t",0,0,0,0,0,0 -"Tfru25678_t",0,0,0,0,0,0 -"Tfru25679_t",20.3035897119273,24.654542348107,20.0166012558118,9.96073703949112,10.2029307245072,14.4552215797212 -"Tfru25680_t",1.62410218714573,1.18512311101906,1.21989709941935,1.52722045390658,0.551679432394162,1.05394045436961 -"Tfru25681_t",5.14472768413043,6.9959832294278,5.05586055392009,9.39108542802067,11.6824115871651,8.67950412533864 -"Tfru25682_t",6.30954150995572,10.3166697522508,11.2694300255252,12.3277914748025,12.0346974601947,11.6262143760603 -"Tfru25683_t",3.40447295617308,6.34951954271964,4.22519676091092,7.25020151121564,11.3534131176398,9.81682719515448 -"Tfru25684_t",10.1283538350624,11.7851078861459,8.31637669532184,12.2632947831028,10.1935295773344,11.1538395834405 -"Tfru25685_t",16.2372996862895,20.9667200139327,9.119207880543,10.2233933751764,16.4980991047932,12.9128276740686 -"Tfru25686_t",13.2694214356575,14.6717249409339,11.1242889615196,15.8163167635434,15.1360408152149,11.3157432316344 -"Tfru25687_t",6.65805420209603,7.00483904365506,5.91789185241675,4.94386289535358,4.28091695958403,4.54072477064381 -"Tfru25688_t",3.0660721449297,2.95329219051173,0.528070919467971,2.53719252049337,1.06151597544519,1.34595021517017 -"Tfru25689_t",1.05540674335989,1.69430917128102,1.09063893418242,0.655016410758427,1.46158481041847,1.08104376579056 -"Tfru25690_t",12.4965435447528,12.9809497157695,11.9370431346266,10.3192377044901,10.7252920369521,12.9076625635393 -"Tfru25691_t",53.4079889451893,52.1005966836563,54.3851785926881,20.3637661869043,20.0764442549419,17.8262934531258 -"Tfru25692_t",0,0,0,0,0,0 -"Tfru25693_t",12.9675459943543,12.4368737691652,13.1828549219738,10.3771286304144,9.22993070294452,10.1399678528257 -"Tfru25694_t",0,0,0,0,0,0 -"Tfru25695_t",0.26771439871103,0,0.115185324432021,0.283309988385061,0,0.198180364105728 -"Tfru25696_t",0,0,0,0,0,0 -"Tfru25697_t",20.7758733527034,23.2278314631615,15.1933103209331,33.8555848865868,28.3291424871174,27.9276964667447 -"Tfru25698_t",0,0,0,0,0,0.0714709997981136 -"Tfru25699_t",0,0,0,0,0,0 -"Tfru25700_t",0,0,0,0,0,0 -"Tfru25701_t",0,0,0,0,0,0 -"Tfru25702_t",0,0,0,0,0,0.0336610404306559 -"Tfru25703_t",0.988357373781735,0.595001514855746,0.744735311429467,0.383377252179197,0.213864247995056,0.451948969311601 -"Tfru25704_t",1.92390175805841,1.54427874079372,1.10451474755632,0.663349952857161,0.555067513861158,0.938397859912339 -"Tfru25705_t",0.619241106423446,2.48526431266528,2.31079682451263,0.427021345588622,1.07194856488922,1.81223763615856 -"Tfru25706_t",2.40029647918421,1.80101907809338,2.07695993592917,3.52392313423775,2.48401331522208,1.76482090587024 -"Tfru25707_t",0,0,0,0,0,0.122930119652755 -"Tfru25708_t",6.95658094024636,4.6144836670622,7.31273343756432,8.6804528054044,3.84685087825495,6.00062752389103 -"Tfru25709_t",0,0,0,0,0,0.177132737251809 -"Tfru25710_t",10.822467443217,12.2492743126311,11.8005987120189,6.84559937471658,7.14334337140113,6.3230969793586 -"Tfru25711_t",0,0,0,0,0,0 -"Tfru25712_t",0,0,0,0,0,0 -"Tfru25713_t",0,0,0.0235807418407542,0.0283242646112401,0,0 -"Tfru25714_t",31.1805902384335,38.0995458790375,29.3260000301286,80.5573090439936,77.149637557806,86.4505716030067 -"Tfru25715_t",0,0,0,0,0,0 -"Tfru25716_t",0.549549139450578,0.210522420268531,1.13938498739823,0,0.455585064432028,0.791020457938365 -"Tfru25717_t",0.327780149644473,0.54555565771475,0,0,0.271055622771204,0.474340889374902 -"Tfru25718_t",0,0,0,0,0,0 -"Tfru25719_t",0,0,0,0,0,0 -"Tfru25720_t",2.97142811731808,3.03559186571635,5.81557202310562,0.279417504267796,0,0.395273696632654 -"Tfru25721_t",0.866086358468531,0.695190773370975,0.372916061687804,0,0,0 -"Tfru25722_t",0,0,0,0,0,0 -"Tfru25723_t",0,0,0,0,0,0 -"Tfru25724_t",0,0,0,0,0,0 -"Tfru25725_t",16.2193444171465,16.9168446111973,21.6200781243719,12.4069447545314,14.6688622353141,13.0391196279079 -"Tfru25726_t",0.192243425106287,0,0,0.596559568608361,0.332786472852719,0 -"Tfru25727_t",0.14921914168996,0.119775319745976,0,2.00654523935115,3.22885631964117,1.4192642588684 -"Tfru25728_t",0,0,0,0,0,0 -"Tfru25729_t",0,0,0,0,0,0 -"Tfru25730_t",0.542585856435613,0.435523175567177,0.389374144065844,0.0935401978765174,0,0.132325209529338 -"Tfru25731_t",0,0,0,0,0,0 -"Tfru25732_t",11.5507583594097,13.9502795229281,12.7100048421462,12.6669861466888,12.1729733009026,12.4025614035403 -"Tfru25733_t",242.366217414722,238.105913687719,215.116463138231,232.242925549168,118.401302900323,60.3771820889424 -"Tfru25734_t",1.32256091272497,1.44319088054447,1.53342407726492,3.16894926294871,4.67202000807512,17.0022512232756 -"Tfru25735_t",0.241458805461094,1.13625883657022,0.818513996431569,1.69785563824071,1.21018032193789,6.36302459382748 -"Tfru25736_t",0,0.648399010801338,0,0,0,0 -"Tfru25737_t",28.2215058787287,31.7290018044321,26.8781636630956,21.4588913566821,17.3898515333021,20.7846253472957 -"Tfru25738_t",0,0,0,0,0,0 -"Tfru25739_t",24.5423572590745,24.8951944685497,24.5023211382481,16.0407175604137,18.3243556307802,17.4627858575744 -"Tfru25740_t",0.469331713806969,1.88361745857499,1.616664043965,1.94187360507899,1.62489037582836,0.34338022249373 -"Tfru25741_t",3.01049668955046,2.93527506076901,3.95997961270174,3.26678214781054,2.88829372052256,3.6221903159373 -"Tfru25742_t",5.7367898010647,5.49673295278404,4.1613807708121,7.48436673996915,6.03898430204434,7.88401413337419 -"Tfru25743_t",3.44304822833801,4.00731894568146,2.37199068745685,3.02721382185213,0.894022676044906,4.66026068355733 -"Tfru25744_t",0,0,0,0,0,0 -"Tfru25745_t",10.605961187093,6.60893155482075,12.4982632236098,3.46440573397812,6.40171719081547,10.2101428283019 -"Tfru25746_t",0,0,0,0,0,0 -"Tfru25747_t",7.64621865597771,11.1733462221841,12.3249411099712,29.1014797881338,48.0233790947125,53.4322865468511 -"Tfru25748_t",2.46399149748659,3.20214967957748,3.33436959067782,3.88374721015797,3.96067029108162,3.9488725586779 -"Tfru25749_t",1.45682734285747,2.33873427804571,2.92728330504068,2.51152727824522,2.9421786718395,3.90818299474078 -"Tfru25750_t",37.9789841372206,31.9956255901374,37.1957408572925,27.7004026595971,23.4991491003014,27.7642392899172 -"Tfru25751_t",151.306647169518,177.23361004464,187.492824104083,181.532139722966,209.766116331905,176.028207984443 -"Tfru25752_t",36.9645657703896,45.3153153603225,59.0341042149772,41.7114450268876,47.1185711067383,40.8127997147257 -"Tfru25753_t",22.2995888524107,18.896778780058,18.6214193668123,12.807094783056,13.0749076576531,16.5065741879349 -"Tfru25754_t",53.0945581065597,44.2363792803148,35.3047093834668,77.166173299742,67.4784475108845,55.5644140694458 -"Tfru25755_t",24.4084202781908,25.7431961720245,21.7525970307487,25.5412142330195,26.7763818604621,31.9784432880479 -"Tfru25756_t",1.69627753311105,2.22150760417271,1.30698955520338,1.56990472376603,2.31818844798042,2.02488507398269 -"Tfru25757_t",0,0,0,2.90842434970969,0,0 -"Tfru25758_t",0,0,0,0,0,0 -"Tfru25759_t",9.27845697835914,7.60954318318914,15.7197774190943,14.5005273613356,14.3158108861997,9.96132422156181 -"Tfru25760_t",0,0.0775989701000974,0.0832516869590724,0,0.0836753099175133,0.070730793816315 -"Tfru25761_t",2.80727744162015,2.37853328339611,2.82040848140367,1.50567303661137,2.38479811192507,2.85264819738758 -"Tfru25762_t",9.14964262450525,2.67063317017583,8.59552838314208,10.3246124333871,18.7184105196794,8.51990707560544 -"Tfru25763_t",0,0,0,0,0,0 -"Tfru25764_t",0.074942352160078,0.180464330999959,0.0645367671431168,0.232557119965971,0.389190959776908,0.38381393290334 -"Tfru25765_t",0,0,0,0,0,0 -"Tfru25766_t",0,0.237024622203812,0.508581483075107,0.152722045390658,0.255584690046816,0.108022952243195 -"Tfru25767_t",9.30862900514653,8.96622781389269,10.0602629960254,9.09910331487911,10.1114542514671,11.0330633704966 -"Tfru25768_t",165.007967617298,168.351233214817,181.113757904679,139.277871072144,77.1268224562584,35.6921243957311 -"Tfru25769_t",2.21644398290627,1.43475542589329,1.53927055249859,2.8103455876058,1.79463956189894,1.46469929799028 -"Tfru25770_t",41.1895536597873,42.1459406356154,44.6892832857086,30.3724114347791,33.3565936314619,30.2103752787415 -"Tfru25771_t",6.04701940771344,3.98707099072145,5.9513185371668,5.80814894475424,4.48620119187573,4.42422024457217 -"Tfru25772_t",2.30165415812185,0.461873322034141,3.34475056698753,3.2735865825347,3.23726019225393,2.21021619238687 -"Tfru25773_t",0.318623426440382,0.341003818037849,0.182922164266584,0.219718947730176,0.0919264782785323,0.388527558953083 -"Tfru25774_t",37.9323032123452,33.6815402023502,42.6524389656159,30.4227388075869,33.0487702955866,20.1552885124123 -"Tfru25775_t",0,0,0,0.302783427969633,1.01343337029016,0.21416397152048 -"Tfru25776_t",2.47672101330918,2.30609863855254,2.73002701763901,1.74207587861302,1.62920170052837,1.44964763741457 -"Tfru25777_t",0,0,0,0,0,0 -"Tfru25778_t",0,0,0,0,0,0 -"Tfru25779_t",63.1758033166659,49.6310596803532,64.2429957633576,62.5671675403314,80.2760841077763,55.5644140694458 -"Tfru25780_t",19.9848473377012,16.338514431428,18.166104890501,19.5235287893899,25.9463497347306,16.7878136970723 -"Tfru25781_t",27.2240385959164,24.1312741611476,24.738495320872,29.0238683160712,27.9001430485797,22.9730243486263 -"Tfru25782_t",10.1184148999613,9.86225370383592,10.8474117345681,9.57631666920916,9.97916339477135,11.85991117502 -"Tfru25783_t",0.210201109519885,0.224965821574594,0.308684806753027,0.144952199878707,0.0606454081053537,0.256318014288481 -"Tfru25784_t",0,0,0,0,0,0 -"Tfru25785_t",14.065085703817,20.4436417924795,19.9687270317352,20.053579344758,25.0056659194219,14.4623670179712 -"Tfru25786_t",16.5777152976298,14.5072080526154,14.7589554087866,7.54240706809518,7.39005687804875,7.18156299900184 -"Tfru25787_t",19.279983943605,18.1347201977853,16.6600544656867,8.36092976887123,5.50514909665507,9.25853819151273 -"Tfru25788_t",99.8461985909855,96.087358586502,93.7258396958289,45.3928465359778,68.8806863909955,65.0979786979048 -"Tfru25789_t",2.88624607312948,1.73755043602046,1.77535499306586,1.59936522381505,3.03346098996668,4.2987833252804 -"Tfru25790_t",41.7326802126931,42.0600082265344,41.9055351989307,38.4158929616448,44.0056907691032,40.9007534340493 -"Tfru25791_t",12.7167078068818,12.2971707599507,12.7618187880575,8.80381612076185,12.5667549775402,11.5018049973079 -"Tfru25792_t",0,0,0,0,0,0 -"Tfru25793_t",10.0200118070859,11.1334168967854,8.22927525637293,10.7963776152065,8.11054475554967,10.8946903391868 -"Tfru25794_t",18.3957148199774,18.6350201217897,21.602058046482,24.5229758341635,26.3098101807501,20.0805054936292 -"Tfru25795_t",0,0,0,0,0,0 -"Tfru25796_t",1.36049193152142,1.36505070884584,1.17159054198274,1.75908590743491,1.47194016838703,1.36865517832015 -"Tfru25797_t",0.80521127895956,1.18493379422816,0.577841181848514,0.832896266715188,1.16156300827986,1.57099194444416 -"Tfru25798_t",1.04037618292814,1.25263476811736,2.46378599269899,1.34518334097964,2.02608234942685,2.85441454302064 -"Tfru25799_t",0,0,0,0.244785475569816,0,0.34628202719086 -"Tfru25800_t",0.181447897994487,0.291289438518292,0,0.281529731621872,0.0785246698901934,0.331884772280657 -"Tfru25801_t",0,0,0,0,0,0 -"Tfru25802_t",0.357998764651054,0.191572457434615,0.513819005450525,0,0.10328671067943,0.0873083236170138 -"Tfru25803_t",1.52468923360159,2.20918936244599,1.70688622064726,1.57711150321751,1.33310349824922,1.33862199258899 -"Tfru25804_t",0,0,0,0,0,0 -"Tfru25805_t",5.69822903857664,3.58491594040798,5.1059762873441,8.60226868317758,8.86429082890599,6.59157836818166 -"Tfru25806_t",0,0,0,0,0,0 -"Tfru25807_t",0,0,0,0.280771708650354,0.234939723160966,1.04262217799187 -"Tfru25808_t",10.373232497694,8.12080319564296,10.366611739236,6.09351648788886,8.31332061566148,7.12095205305595 -"Tfru25809_t",0,0,0,0,0,0 -"Tfru25810_t",43.3429332387723,52.8300708094847,45.8496734952846,65.0357589153245,90.0818007637775,70.8609925386902 -"Tfru25811_t",0,0,0,0,0,0.185135722368608 -"Tfru25812_t",0,0,0,0,0,0 -"Tfru25813_t",0,0,0,0,0,0 -"Tfru25814_t",4.65431450257326,4.38971570055163,3.40686197076558,5.08514702451908,5.99234589603876,5.00148513130151 -"Tfru25815_t",6.27052572148298,6.06342297402829,6.1893323132331,5.42406576486325,6.34778213167342,9.25597801837639 -"Tfru25816_t",4.71469238733312,4.03698588259135,4.9950343971373,3.74944250016203,4.26321640093817,4.30671094752196 -"Tfru25817_t",0.308294960629165,0.247462403732054,0.265488865935537,0,0,0 -"Tfru25818_t",3.05219355750941,2.36961095652298,2.36987157725364,5.79670667579266,9.48441447630248,11.0922651145875 -"Tfru25819_t",0,0,0,0,0,0 -"Tfru25820_t",1.98209600368206,0.734303139930867,2.10078304079663,2.20795610450451,0.659835247897632,0.669310996294494 -"Tfru25821_t",0.125764037083005,0.100948360803869,0,0,0.108853060356765,0.368054250457352 -"Tfru25822_t",9.8954530331753,6.02808350632896,9.91275435130705,5.43117773920529,8.28203056353646,10.0471732408502 -"Tfru25823_t",9.14726165419771,11.1101046947754,7.98083113107795,6.97182701193115,8.33396496485032,9.42229427137882 -"Tfru25824_t",9.05945724759863,7.58974629242431,8.52630712639174,5.78642861077381,5.69884578334498,7.53372565933209 -"Tfru25825_t",5.68946355656777,5.48990350642598,5.52496101768587,2.37907497509857,3.35279973802048,4.87115027442475 -"Tfru25826_t",0,0,0,0.373490732782026,0.520872810303145,0.176117649932314 -"Tfru25827_t",0,0,0,0,0,0 -"Tfru25828_t",3.4609652182513,2.83653511996856,3.45100986835114,8.17738469666989,9.68046409615089,10.2086374299665 -"Tfru25829_t",8.67799105833033,10.1202666167106,9.62231566609236,9.6045855158252,6.75538190921101,10.5133030531126 -"Tfru25830_t",33.0898014630395,30.7579354516246,30.9314846840355,21.9907278256802,19.3656258847768,16.4324955862357 -"Tfru25831_t",13.5361988148368,15.0043860267971,14.4321377121735,19.668919894411,17.8530154848047,16.6631619989668 -"Tfru25832_t",11.0782914423887,10.744899151058,12.322621950497,4.77466174875191,7.59100572553881,4.72808152510598 -"Tfru25833_t",0,0,0.390003859662717,4.45034510166687,4.70386054889395,1.98808818845427 -"Tfru25834_t",0,0,0,0,0,0 -"Tfru25835_t",90.4303837299642,100.41408388992,100.778530103107,73.8070966131304,101.926393127425,88.5741036799329 -"Tfru25836_t",0,0,0.0832516869590724,0.799989356292609,0.669402479340106,0.56584635053052 -"Tfru25837_t",3.44854454249955,4.99792226465678,3.58841350579632,4.26071868252365,3.64812901939115,3.9948784607794 -"Tfru25838_t",3.01653058425305,3.63196615890402,1.94826883215711,3.43227031274733,3.00254653379055,3.75190670394406 -"Tfru25839_t",0,0,0,0,0,0 -"Tfru25840_t",101.819028068621,87.8189332617504,99.0169476604971,75.3657253838478,58.5731796628671,59.5956156104602 -"Tfru25841_t",90.4565441300572,88.4678093342092,95.9380220085237,75.08523953717,69.620928504946,72.1278892207785 -"Tfru25842_t",0,0,0,0,0,0 -"Tfru25843_t",0,0,0,0,0,0 -"Tfru25844_t",0,0,0,0,0,0 -"Tfru25845_t",0,0,0,0,0,0 -"Tfru25846_t",66.7458589762142,92.550938995788,59.6022504025281,34.9189849507804,42.694367306169,33.7211979597925 -"Tfru25847_t",5.87188317644643,5.79218316777467,5.57442779875385,4.97610221495188,3.58211359378666,4.63252450901962 -"Tfru25848_t",4.31961091520657,4.69863441973223,5.00614276756871,7.85054427656392,7.02329779335998,7.11825056134408 -"Tfru25849_t",0,0.552733647331449,0,0,1.19203023397442,1.00762393094419 -"Tfru25850_t",0.800861551682054,0.642836082144753,0.827596369503534,0.662717588768615,1.17839404519678,1.87500659146243 -"Tfru25851_t",3.96408244885632,4.63554872811367,4.43604869165583,3.4551396587615,3.60521335901606,3.84248637477475 -"Tfru25852_t",65.9983319972091,54.1896087779696,71.1616616962811,81.3521091149048,68.548566820543,46.4760354169992 -"Tfru25853_t",0,0,0,0,0,0 -"Tfru25854_t",0,0.230148481286637,0,0.29658308473476,0,0 -"Tfru25855_t",0,0,0,0,0.699171498140063,0.591010121455652 -"Tfru25856_t",44.3559117863905,53.1471262059246,47.1620806623145,121.779958688003,101.998000807609,80.5065340564014 -"Tfru25857_t",31.0723311346395,26.7886526779755,38.6504509962936,23.80790241843,24.4039614492946,30.7325299131835 -"Tfru25858_t",0,0,0,0,0,0 -"Tfru25859_t",5.66638904910056,6.72357528028585,12.5172939650399,13.2514365953631,14.5001214476413,12.0767126345082 -"Tfru25860_t",73.1604889000313,94.0851288878052,62.8897406438896,72.5208712230814,54.8371004350809,48.7448529432217 -"Tfru25861_t",0,0,0,0,0.164139603427357,0 -"Tfru25862_t",16.5654264056375,22.8894009987229,19.8695980473938,17.6245542410267,23.5551890045259,39.2164395793649 -"Tfru25863_t",0,0,0,0,0,0 -"Tfru25864_t",1.4712850572933,1.06287486016263,1.20365026565783,5.8592040058677,6.43090917351158,8.82685622725564 -"Tfru25865_t",201.773814815914,164.549705004518,216.182250224695,0.256717411602023,0.214811947764606,1.18027441320962 -"Tfru25866_t",1.24000556120218,1.08864053302327,1.33479180751723,5.41113649293516,4.93032062490447,3.77068863326026 -"Tfru25867_t",2.15526354090298,2.66706540419928,3.5186852768768,2.36870178257163,2.56499931855107,3.18659048805913 -"Tfru25868_t",3.43470650034688,3.79849543705607,3.57127550051233,2.15799672738865,2.00392484341824,3.10862053028621 -"Tfru25869_t",3.82662008242685,3.86875115709404,3.39592199429888,2.20570778838379,2.88225947576091,3.18438592285476 -"Tfru25870_t",21.0025941928619,17.1955437793311,24.9592720087647,26.9386415864583,26.5405531761865,25.2006745288149 -"Tfru25871_t",17.4222861895149,15.9305998429386,14.4205890216966,13.0056658882446,9.51624137051827,9.48789514098448 -"Tfru25872_t",0,0,0,0,0,0 -"Tfru25873_t",27.2899950021899,24.106404261645,34.5024553061249,14.5292652895938,17.2521700691553,12.2342873858236 -"Tfru25874_t",1.90862710143999,1.87795763330554,2.09428785688064,2.8658468099874,2.93093546171312,3.42348446083159 -"Tfru25875_t",0,0,0,0,0,0 -"Tfru25876_t",0,0,0,0,0,0 -"Tfru25877_t",0,0.41117990864015,0,0,0,0 -"Tfru25878_t",0,0,0,0,0,0 -"Tfru25879_t",0,0,0,0,0,0 -"Tfru25880_t",31.5185988809982,58.6870043567329,32.7061740782121,22.5582018802305,46.1140177958588,62.382577158403 -"Tfru25881_t",8.81227728371363,9.43125944292996,9.61236785580785,11.546000228794,4.06790737444928,1.28947677957368 -"Tfru25882_t",7.60399266306449,13.8249715847253,9.62505708617986,7.96019943456042,4.0440633154136,2.61410832413166 -"Tfru25883_t",16.1331402699267,21.7934981085337,16.434506905951,22.2843639322896,20.5199490406498,21.5199682530292 -"Tfru25884_t",0,0,0.0509118338968571,0.24461321274394,0.0511708967757347,0.0432547922775353 -"Tfru25885_t",3.23709708660623,2.84581764291862,2.1239109274843,4.62397517613074,5.33679591327112,3.94729742004261 -"Tfru25886_t",6.54352180883133,7.11609851938028,7.27092622788281,20.7421863406835,23.7507531693002,21.1575708447582 -"Tfru25887_t",118.745422497975,118.657018976645,154.430260237767,121.157027692153,123.054183672651,106.972831983473 -"Tfru25888_t",8.27045159926166,9.82677372333001,8.85579036129858,5.79700836412585,4.80363479304958,4.41879639943518 -"Tfru25889_t",0,0,0,0,0,0 -"Tfru25890_t",3.4660469787827,3.9082286797663,4.29952437723944,3.41449288122926,4.03568978780454,3.23023644470649 -"Tfru25891_t",0.916476837506699,0.770668628765538,0.864390372597912,0.135426769600963,0.339960830579154,0.542808320544634 -"Tfru25892_t",0,0,0,1.1903951209215,2.4902001478872,0.420993560454568 -"Tfru25893_t",9.61950879062375,9.42406000824564,9.68574470967406,7.96019943456042,8.71029021781391,11.2968665447189 -"Tfru25894_t",5.19057247786975,3.70344192312959,4.30432177380614,2.62856784711429,3.99343767423263,4.21956932446529 -"Tfru25895_t",2.79359807095415,2.85983057421429,3.24248269155246,1.67515843522476,1.7170980104085,2.16238523726534 -"Tfru25896_t",4.53344360318097,4.20748682230764,4.02598419380324,5.27547787147091,6.49887647364403,7.25557198625032 -"Tfru25897_t",5.5299887324758,6.93184812618237,6.58874419541102,3.60446060960784,4.13072334720839,5.04357118503189 -"Tfru25898_t",1.02273502156545,1.17275660899104,0.754911818790615,0.906770544284709,0.758753158104199,0.748270293538511 -"Tfru25899_t",35.6858234230265,24.4670237122719,28.8102405988702,17.6873751246055,28.9568403832311,28.8287446010265 -"Tfru25900_t",7.3371508097334,6.92003217423204,6.47636321979212,6.83047680738482,7.62066490672339,6.44175299490421 -"Tfru25901_t",35.8396961094665,42.0836340707897,32.0093505705964,67.6287728624169,65.1890747901298,46.6667138491717 -"Tfru25902_t",1.00277638056104,1.11792945983065,0.575695352525999,6.28114985223742,12.2475573321307,10.5566647845039 -"Tfru25903_t",252.737099464855,210.800536356296,255.94576784724,326.418345621704,309.797638745561,239.662081630712 -"Tfru25904_t",8.53230389085013,8.42918812712307,9.52767241535402,8.63169319266555,8.84576900747408,8.91792162659498 -"Tfru25905_t",1.17771556221655,1.41799426437584,0.676128186611532,4.4667630004679,4.75698046942274,2.44136919871126 -"Tfru25906_t",0,0.0675686423015878,0,0.0870729898068984,0,0.123176472597951 -"Tfru25907_t",245.833643348223,201.195047628647,233.048084895591,193.741684476293,214.565442115395,148.120717848796 -"Tfru25908_t",6.24194029605151,7.06368018448316,5.99209340534166,8.57345475031675,7.08539286902013,7.93580553178567 -"Tfru25909_t",0.0892777649005817,0.0716615356184746,0.230645215624125,0.184694673384239,0.309091793064055,0.326594366771401 -"Tfru25910_t",0,0.0930117310579098,0,0,0,0 -"Tfru25911_t",29.4844110784407,33.0683534217905,30.9556188514501,30.9159348231686,49.9907679688444,43.5870015595707 -"Tfru25912_t",0,0,0,0,0,0 -"Tfru25913_t",3.90453025474493,3.74068918385072,4.50127018388082,13.9402942871356,13.6815404227122,12.3022271166738 -"Tfru25914_t",7.98871680955482,8.18152820683156,6.61320902998252,12.3950804845667,10.5948086046631,11.9724886471625 -"Tfru25915_t",1.49042655419481,1.83438275031419,1.58296362554409,1.79861592782671,1.97802296785492,1.3085405994971 -"Tfru25916_t",0.162182194539474,0.260361023231601,0.139663544338675,0.503275157300876,0,1.30524258318563 -"Tfru25917_t",0,0.149189170391559,0.160056893733261,0,0.160871336987432,0 -"Tfru25918_t",63.0659615098677,65.2853462699061,73.748541484808,36.348269855734,34.1412648530612,30.4771349277607 -"Tfru25919_t",67.6927315108324,63.4427513058125,79.4814846136907,36.1309305139241,25.4884643968615,29.6599226476299 -"Tfru25920_t",12.6378125352856,12.3475653452802,11.2845044018254,8.08984304434031,7.26241848308735,7.91997380006963 -"Tfru25921_t",0,0,0.306549643929805,0,0.308109509823386,0 -"Tfru25922_t",1.57871848966478,1.62926589302782,1.55373349728717,1.86628389427725,1.70804332291353,1.44381013014981 -"Tfru25923_t",0.694300634474772,0.955374333180419,0.768726615946759,0.666874244247167,0.686789556725564,1.05223538073492 -"Tfru25924_t",0,0,0,0,0,0 -"Tfru25925_t",0,0,0,0.100693909417479,0,0 -"Tfru25926_t",0,0,0,0,0,0 -"Tfru25927_t",26.2893184025579,23.2921475792583,24.401428246355,12.1039613825637,11.85403708125,8.86847521542364 -"Tfru25928_t",9.99042318363159,13.4867010033969,6.25692678637267,7.98529916250724,7.07486052826888,9.96730699887206 -"Tfru25929_t",0,0,0,0,0,0 -"Tfru25930_t",2.55683755391362,1.75913491348656,2.20182613813929,22.2914425469991,23.0787418923361,39.0169510202224 -"Tfru25931_t",0.256731432902553,0.41661967845404,0,1.00887054313293,0,0 -"Tfru25932_t",8.86719899578004,8.37834863299085,7.24329846236069,7.65212979419997,7.060873905458,7.97043900040483 -"Tfru25933_t",3.08537585204686,3.46720015302439,3.79568289440891,3.82974967549418,3.35719742917737,3.48280506886086 -"Tfru25934_t",15.2881074336733,17.8710702341832,16.1052300563545,10.1330807289767,9.2498176518003,12.8142704231671 -"Tfru25935_t",58.9860092225057,52.7272619015784,52.7200164230769,38.8271429866591,42.158558673919,40.2138423332152 -"Tfru25936_t",0.407817362968192,0,0,0,0,0 -"Tfru25937_t",3.1818981856377,4.14618205957849,2.95361260467143,4.23167021096959,4.36354599450808,3.80944296021819 -"Tfru25938_t",11.9141988875871,10.2989353116849,11.7726210528824,9.47987387206742,10.2460416993995,9.89028689933532 -"Tfru25939_t",3.03352696892259,2.74917555317645,2.6787508972627,3.3407691413261,3.53902288994491,3.95188620750017 -"Tfru25940_t",43.989685474813,46.7255782794854,48.420361080566,24.9748645645346,26.0510229644371,28.9421404536566 -"Tfru25941_t",60.5639166450087,70.003838675265,75.1441060806376,29.8157199765227,38.4675370495813,36.6753815119756 -"Tfru25942_t",52.862059875939,57.0825381069282,53.4427439059656,63.7519734624549,71.3596925900434,79.8143920205954 -"Tfru25943_t",3.40295197048901,2.21933054486278,1.83153711309959,2.85996194874608,4.60214204546323,4.04580140629322 -"Tfru25944_t",2.64032612710263,3.08267451506215,2.89382863869736,3.47595375309139,4.98609218182759,5.97089152599098 -"Tfru25945_t",2.22544044427675,1.11644875855935,2.39555350885543,3.16518967582825,5.29703501656629,3.0529003225022 -"Tfru25946_t",0,0,0,0,0,0 -"Tfru25947_t",0,0,0,0,0,0 -"Tfru25948_t",0,0,0,0,0,0 -"Tfru25949_t",0.61321442898594,0,0,0,0,0.448650071723389 -"Tfru25950_t",0,0,0,0,0,0 -"Tfru25951_t",3.81211469938931,4.15685989830727,4.05705855810524,6.50997331754058,10.0853105989449,10.393278523724 -"Tfru25952_t",0,0.162099771675444,0,0,0,0 -"Tfru25953_t",0,0,0,0,0,0 -"Tfru25954_t",0,0,0,0,0,0 -"Tfru25955_t",4.68941533047272,5.20567437779572,4.21014261568202,8.87565388259677,10.6220936474504,6.78889615659516 -"Tfru25956_t",34.6108498151721,31.4999564793019,33.4109854759464,26.3092469911874,19.7399195604344,18.1201342860371 -"Tfru25957_t",0,0,0,0,0,0 -"Tfru25958_t",0,0,0,0,0.251604997641242,0 -"Tfru25959_t",0,0.129430911740853,0,1.33433925262625,1.11652735997419,0.117975162814545 -"Tfru25960_t",8.08382431783721,11.0061993572179,8.28318794267818,33.6587482790213,38.9696607796107,36.4597857922606 -"Tfru25961_t",3.38917167904372,3.13260781252496,3.80301440904604,4.14309891108081,4.88907266198967,7.06322203383802 -"Tfru25962_t",0,0.074512160239762,0,0,0,0.0679171931783179 -"Tfru25963_t",0,0,0,0,0,0 -"Tfru25964_t",82.3362050017323,100.517179671095,66.8554883579221,53.3994352789765,67.6312835229487,66.3691347759963 -"Tfru25965_t",27.7748592591316,28.62483478272,29.5288636601771,39.0158074326584,43.6283065909914,48.1685366802634 -"Tfru25966_t",3.83190439786662,5.0521669034023,4.59096924300606,22.4767250036815,13.8091391321905,6.46594816206093 -"Tfru25967_t",0.899148323016913,1.22817760324566,0.659630708097762,0.59461834697252,0.456876048091247,0.653647508375731 -"Tfru25968_t",0,0,0,0.283058123215911,0.236852913088987,0 -"Tfru25969_t",171.052055797535,158.851091715268,171.168472314702,105.711995583707,63.7183171861559,59.8809087999247 -"Tfru25970_t",25.2516739428628,22.2179756414342,28.0182830625322,23.106050959856,29.8420979572292,20.9620724263369 -"Tfru25971_t",0.212684498155563,0.213397167775268,0.320518994792429,0.989986828412103,0.644299886364852,0.272313556192813 -"Tfru25972_t",19.993123710962,22.5753690026821,20.1389609869292,19.3463046838447,16.3096473237351,14.5456366545066 -"Tfru25973_t",0.11774404593055,0.094510868979656,0.40558214978239,0.243584705892879,0.203822969357587,0.430729220927664 -"Tfru25974_t",24.4072703687158,25.5990355361821,25.9050618992638,16.782715508214,17.198558068465,18.2230416979474 -"Tfru25975_t",1.39243718405714,0,1.1991002646536,0.720156164314514,0.602600919765075,1.35834386356636 -"Tfru25976_t",121.766865184893,141.687708664467,132.696678192613,88.8923522362526,105.999952405641,105.753231192412 -"Tfru25977_t",0.450457784297305,0.47004587947496,0.310330148921968,0.605729206302788,0.857750442360868,0.790971279267059 -"Tfru25978_t",0,0,0,0.348291959227594,0.510016944116466,0.923823544484635 -"Tfru25979_t",22.3005073171398,49.391254025783,19.6105662664533,9.76391503677355,11.0806911636764,15.4525922878112 -"Tfru25980_t",1.39243718405714,2.42164520779226,3.04771317266123,4.14089794480845,7.63294498369095,7.42844300387852 -"Tfru25981_t",0,0,0,0,0,0 -"Tfru25982_t",71.8420139714116,62.1200886309418,72.0942244866664,42.6942175930112,45.583070424346,37.4630607980008 -"Tfru25983_t",0.614560181210296,0.049329557437443,0.476306835191591,8.13683395017735,5.7447660470947,2.42802723527754 -"Tfru25984_t",0,0,0.466746554628603,0,0,0 -"Tfru25985_t",0,0,0,0,0,0 -"Tfru25986_t",2.0490335797914,1.47159125197527,2.60035949562022,2.00793220653546,2.52024877611632,1.89366037976003 -"Tfru25987_t",94.8692211838981,89.9680306531774,102.178060382757,98.9529079142976,118.240229821529,87.702036814056 -"Tfru25988_t",0.180344279294699,0.241264776447172,0.103535908361265,0.68399805517004,0.754454914215117,0.593759075245867 -"Tfru25989_t",0,0.221093459072081,0,0,0,0.604574358947978 -"Tfru25990_t",26.9346246128177,31.9150939764036,38.1057587906932,28.5240479728579,31.0837807762248,32.8439250969319 -"Tfru25991_t",21.6323831246423,24.3205846154792,19.1263364634674,12.8615070093753,10.1019233509632,12.4451950570052 -"Tfru25992_t",0.0716812088493579,0.230148481286637,0,1.03804079657166,0.372255175691053,1.04889180591088 -"Tfru25993_t",13.9051658104465,13.8587479276286,15.4670151378652,10.4278612592742,10.3303806410853,13.3103646796432 -"Tfru25994_t",0,0,0,0,0.174933065721698,0 -"Tfru25995_t",0,0,0,0.0624497620030791,0.0261278635710812,0.0220859000454106 -"Tfru25996_t",2878.48306048612,3568.65802305488,3161.72628154992,8493.63296697087,6620.25391651837,2760.77122743646 -"Tfru25997_t",8.05867564014511,13.8249254799711,7.66547084545224,20.3762806215702,10.4397933221913,11.7535067379594 -"Tfru25998_t",11.6446685360182,11.0808772808143,10.1150297937593,9.60111773905314,10.9844939588943,10.2482924178171 -"Tfru25999_t",14.9589224139938,15.5450846223573,15.6423169659317,19.4797090296457,23.2360615389223,18.1756774685314 -"Tfru26000_t",0.79543692500278,0.392911901045795,1.05383417286867,1.39240682024782,2.85983073065494,3.71565911550572 -"Tfru26001_t",0,0,0,0,0,0 -"Tfru26002_t",5.60713676955575,6.67351142860837,5.49461133929878,5.19993081590196,3.84906425620561,3.39507810318312 -"Tfru26003_t",0,0,0,0,0.347913130709661,0 -"Tfru26004_t",2.96763928335503,3.43297843722831,3.26965053982688,2.0765438005481,1.17097619421709,2.04351367734451 -"Tfru26005_t",0,0,0,0,0,0 -"Tfru26006_t",0,0,0,0,0,0 -"Tfru26007_t",26.6970095216905,27.2652035159951,27.0501561392772,24.7946667309764,26.204515903762,25.7247275405867 -"Tfru26008_t",0,0,0,0.180288057732956,0,0.127520871009082 -"Tfru26009_t",5.3092059669688,6.58040708808864,8.15706107659187,6.38011957467982,5.87927923391613,5.36962418557575 -"Tfru26010_t",0,0,0,0.250428944747218,0.20954998362628,0 -"Tfru26011_t",0,0,0,0,0,0 -"Tfru26012_t",0,0,0,0,0,0 -"Tfru26013_t",0,0,0,0.676255593986651,0.282933246374782,0.956654627647902 -"Tfru26014_t",41.3581890385502,47.5789718455146,38.3586586438705,37.8380629224255,24.6399993780086,19.7722319228217 -"Tfru26015_t",18.9681112885278,19.8911649904434,16.5978882226815,20.0000252362869,19.383297174439,20.4137416466338 -"Tfru26016_t",7.32547229979403,13.3000338614814,9.96318164534211,10.8849070814799,10.5674099009322,9.27292944093449 -"Tfru26017_t",3.96275362129469,8.27014684170566,5.21186976094721,8.0489495140195,6.79743484622365,6.69473636187819 -"Tfru26018_t",0,0,0,0,0,0 -"Tfru26019_t",23.7857052233573,23.8311710539994,25.5666156454464,25.0556641079655,33.128820111084,31.7353772466921 -"Tfru26020_t",0,0,0,0,0,0 -"Tfru26021_t",0,4.3946154124815e-07,0,0,0,0 -"Tfru26022_t",0,0,0,0,0,0.0820080851586093 -"Tfru26023_t",0,0,0,0.0893102197608269,0.149463194898909,0.0631706678585588 -"Tfru26024_t",1.21252090185594,0.973267082719365,0.745832123375607,0.89586436935345,0.449776356608159,0.380196246348728 -"Tfru26025_t",0,0,0,0,0.231572752606112,0 -"Tfru26026_t",0,0,0,0,0,0 -"Tfru26027_t",0,0,0,0,0,0 -"Tfru26028_t",17.0563312234591,14.9663264602639,16.877626045366,10.6294928767296,11.6452184469439,13.0991111105395 -"Tfru26029_t",5.27006714333999,5.15059317376241,5.65919348373543,5.58098878319714,6.96280350767184,8.29261878550453 -"Tfru26030_t",9.99825853895538,10.4363551712373,7.05618124161826,8.14191808736513,10.8690584754023,8.42438953929718 -"Tfru26031_t",4.55228642603903,5.64714081423024,5.34574255917,3.85265810071705,3.58196277430143,5.14732028102671 -"Tfru26032_t",2.70698177838947,3.30602333956361,3.27983433479165,1.67938947956106,1.31369071899045,2.33386257744874 -"Tfru26033_t",2.79620336887214,2.89285746374638,3.47815942151125,4.43492620124456,4.46394162605065,4.04614668975415 -"Tfru26034_t",0,0,0,0,0,0 -"Tfru26035_t",34.4933116306125,32.3631602545017,30.8921487890137,23.4690308146681,24.5475569322792,20.6379032993677 -"Tfru26036_t",0,0,0,0,0,0 -"Tfru26037_t",4.20051883857237,4.14975415489136,3.0607802909299,5.68184748101477,5.03403537588363,8.27414266893546 -"Tfru26038_t",0,0,0,0,0,0 -"Tfru26039_t",0.818282890630982,1.09469975676923,0.704666064617863,1.97497372334738,1.8886712809953,0.997809412765872 -"Tfru26040_t",37.353666471852,36.0023934153838,35.1219412675584,16.647989027964,13.0119510885413,10.6884504034922 -"Tfru26041_t",0,0,0,0,0.229381212360628,0.193896087780371 -"Tfru26042_t",14.9221971382912,12.8089559150467,13.5591054262605,6.92114685350054,6.52677995777579,6.0998826755634 -"Tfru26043_t",0,0,0,0,0,0 -"Tfru26044_t",0,0,0,0,0,0 -"Tfru26045_t",1.63656578126195,3.50303922166151,4.69777376411905,10.1570077200721,6.13818166323468,7.58335153702057 -"Tfru26046_t",35.0981233040274,48.8708105786916,31.8990854813777,48.1595297702978,28.518706297806,15.9464771534938 -"Tfru26047_t",0,0.170717734220214,0.366307422619919,0,0,0.155607746395893 -"Tfru26048_t",0,0,0,0.079395928576779,0.0996535098012595,0 -"Tfru26049_t",2.32823215070986,1.86882692887717,1.83788192988862,4.11414849528715,2.85481605868689,4.68440409762232 -"Tfru26050_t",3.09468480248456,3.51078169538328,2.70052770801816,6.91434808448925,6.71424495670137,6.55104026636737 -"Tfru26051_t",0.302195599897293,0,0,0,0.78468177321927,0.442194675009912 -"Tfru26052_t",3.88411612086173,3.85334314382769,4.73535595423204,2.66339313548561,4.15507681818966,5.01299448973574 -"Tfru26053_t",0,0,0,0,0,0 -"Tfru26054_t",0,0,0,0,0,0.0863273312168226 -"Tfru26055_t",0,0,0,0,0,0 -"Tfru26056_t",0.0919150730541,0,0,0,0,0.0672484243176999 -"Tfru26057_t",3.37803962542533,4.12617600628402,2.90900606162759,1.97497372334738,1.52546526541928,4.40571233021239 -"Tfru26058_t",75.0549558973338,74.9641502473078,68.6733445985287,28.2310964718082,24.7300891844029,25.8964465258343 -"Tfru26059_t",0.745433689187644,0.538510687802007,0.898704546179303,0,0,0 -"Tfru26060_t",0,0,0,0,0,0 -"Tfru26061_t",33.4348602767977,29.5552389746985,27.4257688994932,29.1122071260173,25.7337408733598,33.5967707363324 -"Tfru26062_t",141.682658692118,122.705440609445,133.748382460802,35.613359396573,34.3122859420639,48.5125003542386 -"Tfru26063_t",11.9269968573894,11.7707824893883,14.1997409928323,10.0449400545116,12.0719648441585,11.9210744426644 -"Tfru26064_t",20.8667430014462,22.2452054066379,14.9745337060665,11.1293473983198,10.6295787942691,12.7223927195607 -"Tfru26065_t",21.2864130333059,22.3259577421098,22.7302418411194,20.2568250813603,16.7045318028571,19.5193095394578 -"Tfru26066_t",32.6042859397597,29.5730377758833,34.2542458526272,27.3174890686031,25.5862427614266,18.2884395343685 -"Tfru26067_t",0,0,0,0,0,0 -"Tfru26068_t",30.8335957299462,29.7711750872858,25.7827817543515,70.2586396901451,50.667625562233,50.0220965608287 -"Tfru26069_t",0,0,0,0,0,0 -"Tfru26070_t",0.764502923097095,0.818202285342583,1.0241051805299,0.351461451273143,0.294090371358217,0 -"Tfru26071_t",0,0,0,0,0,0 -"Tfru26072_t",0,0,0,0,0,0 -"Tfru26073_t",0,0,0,0,0,0 -"Tfru26074_t",3.66227534142373,3.42957720363792,3.05820727999721,1.49231832200093,1.44082914765493,1.94869410281779 -"Tfru26075_t",3.82348111728459,2.55752863528387,3.65844328533168,2.41690842503194,3.95283856597689,4.58462519564638 -"Tfru26076_t",0,0,0,0,0,0.163037293969172 -"Tfru26077_t",0,0,0,0,0,0 -"Tfru26078_t",0,0.162620992806233,0,0.349271880334745,1.0521295801686,2.07518690732143 -"Tfru26079_t",21.3545929782171,20.7197920443249,20.8145495660494,33.7400538882474,30.7713614922495,29.0156288007202 -"Tfru26080_t",0,0,0,0,0,0 -"Tfru26081_t",0,0,0,0,0,0 -"Tfru26082_t",0,0,0,0,0,0 -"Tfru26083_t",61.8775981377141,71.8181948050845,64.5190774126611,72.3832297799019,48.2585155117095,20.0174886542183 -"Tfru26084_t",2.01624904202125,3.23680824002304,3.47259436558689,4.17114450268876,4.07197528082923,4.91720478490671 -"Tfru26085_t",8.14516850931292,7.63333584710028,7.52836130625581,10.3219946475049,9.59675102678323,13.0730254148489 -"Tfru26086_t",0.945454400964843,0.758897966429087,1.33758156531429,3.4228644272805,1.57819437025291,1.18582108989796 -"Tfru26087_t",0,0,0.0668629537591811,0,0,0 -"Tfru26088_t",0,0,0,0,0,0 -"Tfru26089_t",0,0,0,0,0,0 -"Tfru26090_t",0,0,0,0,0,0 -"Tfru26091_t",0,0,0,0,0,0 -"Tfru26092_t",0,0,0,0,0,0 -"Tfru26093_t",0,0,0,0,0,0.841987120909137 -"Tfru26094_t",0,0,0,0,0.0530757987724957,0 -"Tfru26095_t",4.48248137678979,3.36587202322298,3.98461774691546,4.03832837063113,6.75825747536872,6.3475104812094 -"Tfru26096_t",1.45812402941097,1.62056487357239,1.44884611416757,1.6242774547156,1.35913727697793,1.8053822645932 -"Tfru26097_t",2.88585263718713,2.95986758662337,2.34709383863812,4.31177469372023,3.33040508328179,3.16709277731336 -"Tfru26098_t",1.44845477192151,1.41178520355756,1.78191418639,1.17720108633021,1.70143231779318,2.42226836754198 -"Tfru26099_t",0.638862180771464,0.256401159760398,0.275078767937011,0,0.82943548652075,0.467414903622644 -"Tfru26100_t",0,0,0,0.0569455070952062,0,0 -"Tfru26101_t",0.0807792084340841,0,0.0695631884302249,0,0,0 -"Tfru26102_t",0.0404284777533433,0.0324511573710224,0,0,0,0 -"Tfru26103_t",0,0,0,0,0,0 -"Tfru26104_t",0,0,0,0,0,0 -"Tfru26105_t",0,0,0,0,0,0 -"Tfru26106_t",0,0,0,0,0,0 -"Tfru26107_t",0.286724835397432,0,0,0,0,0 -"Tfru26108_t",0,0,0,0,0,0 -"Tfru26109_t",0,0,0,0,0,0 -"Tfru26110_t",9.47904693660137,7.64594498256739,9.84349896459554,7.59403613092421,6.8772496562127,7.47915550984684 -"Tfru26111_t",3.13531549673344,3.12968898882656,2.90767470873897,12.1824694934901,9.63719372065759,10.6755103908972 -"Tfru26112_t",16.8078512481892,17.200295882641,14.349769031698,10.5449611107018,10.3234161923224,11.642230307437 -"Tfru26113_t",0,0.0773320011662667,0,1.39516492383255,1.00064923373834,0.352437269646661 -"Tfru26114_t",1.79973725500676,1.93523801786819,1.78378685287529,3.09098555246607,2.55703494571292,3.65212764530215 -"Tfru26115_t",2.27216677388968,1.96781046668781,1.36452773888754,4.51502889636425,4.96834808153639,4.46223210127439 -"Tfru26116_t",88.0302907778482,70.6134483881045,99.7387540521904,118.114933357474,87.8919768702012,59.8026899697697 -"Tfru26117_t",0.0828777146709445,0.155223457783259,0.214110964717825,4.1720589275842,5.23654452670565,5.57854538378173 -"Tfru26118_t",509.620390160278,437.669673375771,616.571781367513,41.7984604193823,77.9146557134603,118.231628266832 -"Tfru26119_t",0.743454654646386,0.596756675909071,1.92068270659134,8.45917940742002,9.00879478589413,4.35150861902287 -"Tfru26120_t",0.808656033094146,0.576971165920724,1.47012684853609,1.76585885852236,1.47760753160221,1.05180851039791 -"Tfru26121_t",22.7289699484987,26.1308791164924,21.8158523490336,11.3878710323215,10.3486589142558,14.4640652761932 -"Tfru26122_t",6.89821275542677,5.14155756727742,7.00119831942909,0.509670638283194,1.06618540056186,2.16299330767312 -"Tfru26123_t",0.763730680820012,0.613031850063134,1.31537662449809,0.7899894716487,1.32206986709157,1.11754651727253 -"Tfru26124_t",0,0,0,0,0,0 -"Tfru26125_t",16.6651019139013,10.8113499891361,16.317104416568,12.5153226164296,11.4603341588655,15.199240337501 -"Tfru26126_t",38.8660106060077,33.836740951583,40.6783741026853,17.9364161636388,32.0872480265892,23.6235817126292 -"Tfru26127_t",4.04057924351651,3.51356939968256,3.47955347338359,1.91560577575177,2.11292733991107,2.83305886975288 -"Tfru26128_t",11.938548560599,12.1995591142421,12.6329960236788,7.51877778264392,7.20656349038401,5.80163123688935 -"Tfru26129_t",0,0,0,0,0,0 -"Tfru26130_t",0,0,0,0,0,0 -"Tfru26131_t",0,0,0,0,0,0 -"Tfru26132_t",10.7696731969992,11.3408367876874,11.3021543081853,26.4708349498612,15.0463107369316,7.24608701992746 -"Tfru26133_t",17.9126602924195,16.6067586982126,16.6595678560402,22.5121738273243,25.5816296642274,22.6070849041581 -"Tfru26134_t",0,0,0,0,0,0 -"Tfru26135_t",0.393184290662001,0.21040095169106,0.451455325849822,0.948973333527289,1.24781948128161,1.7260079202415 -"Tfru26136_t",0,0,0,0,0,0 -"Tfru26137_t",0,0,0,0,0,0 -"Tfru26138_t",0,0,0.230400369323038,0.276747910277977,0,0.587245794519532 -"Tfru26139_t",0.4922483013952,0.131706064486298,0.565200905995577,3.05503747830298,0.994134590289518,0.480195779893576 -"Tfru26140_t",13.6247951822374,12.5303229939636,12.778068020512,18.7149184342412,18.1903970356399,16.7081646540515 -"Tfru26141_t",7.42307676942663,8.60652027566002,10.1466642310566,23.6442856977464,16.3172722172946,9.56889430677128 -"Tfru26142_t",11.5969380454968,8.44271812411685,11.4963497283723,3.48711251313341,6.06921332993995,4.14371189840749 -"Tfru26143_t",5.54930929132497,6.65055210029894,4.31419407145248,3.90646178673114,3.43556236916829,3.43978775175141 -"Tfru26144_t",1.09790908655812,1.10974790444215,1.22560506237182,9.64914011691995,8.4469131831542,7.3575409296661 -"Tfru26145_t",25.9176927130523,26.0671809907553,28.037317872367,19.9901688171856,26.556360533647,20.5045496021592 -"Tfru26146_t",0.106612153263258,0,0.459046421113159,2.53638757363902,3.69105808722432,4.29007397265327 -"Tfru26147_t",0.111864682784883,0,0.0963325112748787,0.231421687955485,0.580936172982576,0.24553286215597 -"Tfru26148_t",4.31303273603413,3.23620615594904,4.36012127482303,9.50456104360926,8.19653825463195,9.74111439212682 -"Tfru26149_t",0.181056846490188,0.290661659555968,0.31183498261825,0.936409955035395,0.313421742751375,1.72208141754938 -"Tfru26150_t",4.88507164087988,5.72694648575768,5.70130737922394,6.18331482474175,3.3380494713842,2.16326912931398 -"Tfru26151_t",0,0,0,0,0,0 -"Tfru26152_t",0,0.787161537163244,0.56300168068042,0,1.41466623187391,0.478327313823951 -"Tfru26153_t",0.507615569615997,0.73341576453518,0.9616953179961,0.892616522697184,1.53775501579527,1.15130927771463 -"Tfru26154_t",0,0,0,0,0,0 -"Tfru26155_t",0,0.526824257896259,0.56520090594308,1.35779443467521,0,0 -"Tfru26156_t",1.64916444008615,0.85654567573537,2.17204228077746,10.0345085250906,9.7399606708141,7.52343688406009 -"Tfru26157_t",0,0,0,0,0.0833874361448613,0 -"Tfru26158_t",0,0.072822359629573,0.0781271230749826,0.187686487747915,0.392623349450967,0.862900407929708 -"Tfru26159_t",0,0.170717734220214,0,0.439994145960935,1.2885997727297,1.86729295675072 -"Tfru26160_t",144.783840818878,151.105832808852,138.254482351692,143.794895346696,109.281735078015,65.2694735873914 -"Tfru26161_t",0.199399485206323,0.222666290442944,0.137081706308407,0.246364617449347,0.380387607575069,0.903028459312997 -"Tfru26162_t",49.2756191231406,54.1484743089656,50.7366591233293,127.505780195175,90.2738979368739,52.4578435826618 -"Tfru26163_t",4.9952115918158,6.1965923529121,3.51952131733462,2.34861740073742,1.96523903563025,5.3158970660651 -"Tfru26164_t",7.91306531599191,7.72785850273136,7.26864336250513,5.66138464494868,4.33771755745074,6.12720769069856 -"Tfru26165_t",0,0,0.2494679860946,1.79790711366796,2.0058991536088,1.69558785727939 -"Tfru26166_t",5.54422284834484,6.057271761379,4.50917386414803,2.94707353034787,4.198874603166,4.61973868539227 -"Tfru26167_t",307.101477629405,317.771935013148,299.545138353455,312.138321974929,299.610221405248,321.920681231129 -"Tfru26168_t",7.2686094009152,9.34345116536275,8.16440681764144,10.0246942095426,8.88978033985719,9.47987756569838 -"Tfru26169_t",0,0,0,0,0,0 -"Tfru26170_t",3.23772243135396,2.73563914876205,2.71479867220594,2.37958294456053,1.84365731030221,2.80520049917545 -"Tfru26171_t",21.6299832085803,14.9159459888209,16.980146706439,19.777830743052,18.2560363046704,12.633998783658 -"Tfru26172_t",3.31619908308339,0.887282960749781,5.23554523448526,0,0,0 -"Tfru26173_t",6.44616735860981,1.9684509387777,6.15451461941473,0.144952199878707,0,0.0512636028576962 -"Tfru26174_t",281.893491222394,284.318139996665,280.707574588844,305.355466211079,241.808565795181,195.450993238053 -"Tfru26175_t",0.40152018309883,0.322292487213529,0.5585514835721,1.53350900871679,1.41685064296725,1.19766476867574 -"Tfru26176_t",0.69943884453564,0.623806706910126,0.83656008287967,0.321549838398833,0.57175548261398,0.511735003179833 -"Tfru26177_t",1.15026432743302,0.857345296059462,1.52120576361841,5.18418530412163,4.3734977267253,4.05759563646014 -"Tfru26178_t",15.227152703266,17.8099883783854,13.9371343034104,7.69534039071242,3.91622983381936,3.97883608404827 -"Tfru26179_t",0,0,0,0,0,0 -"Tfru26180_t",38.6731773434231,41.3896155630907,37.725139275606,62.8293331182968,61.6980278513695,66.1408803723375 -"Tfru26181_t",0,0,0,0,0,0 -"Tfru26182_t",27.6118021556361,26.4075264402039,27.3193612744013,24.9150531252923,30.0008168865634,24.0702332187087 -"Tfru26183_t",0,0.0806620873408906,0.0865379377600884,0,0,0 -"Tfru26184_t",260.878679836532,329.601167238529,298.92335239899,726.580392040141,341.526048313995,117.303888782821 -"Tfru26185_t",32.8641629339082,26.9035227269835,29.2381650023826,33.3187276850729,32.4009876237069,39.3312688526303 -"Tfru26186_t",16.8020753542895,19.8928839800105,17.7247004120213,15.2072976697748,18.1784610795798,17.2102167513858 -"Tfru26187_t",22.8150007983372,48.8636184831195,23.5949860452164,85.7960666213546,72.7138443183191,62.713081345695 -"Tfru26188_t",0,0,0,0,0,0 -"Tfru26189_t",40.7563854877698,37.7263122662589,45.5582481632759,0,0.196523903563024,0.498365349943603 -"Tfru26190_t",35.7747537447791,32.5874832857198,38.0766926144389,25.7786043889553,46.6203595150945,22.6450220412971 -"Tfru26191_t",0,0,0.347815942151125,0.417782903015792,0.699171579983837,0.147752547659562 -"Tfru26192_t",0,0,0,0,0,0 -"Tfru26193_t",45.3843186395258,44.5244739190115,47.4097235207379,67.4279497482708,60.4748804231564,60.6282830218107 -"Tfru26194_t",4.79957717483936,5.79306031250439,5.69458449849459,14.9305673270747,14.8320241055564,15.2166991106352 -"Tfru26195_t",8.03040366197659,8.11043731559321,6.80140922172829,14.5592075529957,15.0850674925084,14.3655208102616 -"Tfru26196_t",8.32497194364947,7.19109812052351,6.84154658042131,10.1411125593209,11.9970527849138,10.6976411971462 -"Tfru26197_t",32.0608217531276,37.6433070652495,34.2148957418427,35.3961939044981,38.0465549549652,42.0744969396527 -"Tfru26198_t",0.697181549970518,0.524638265173635,0.900569078432787,1.53244849073012,1.81030317804944,2.07221415389759 -"Tfru26199_t",0.363331759222983,0.226830627159487,0.278119042642706,13.863727126698,12.4392737036625,12.9073672004455 -"Tfru26200_t",45.8640987645327,46.6144259078252,40.7489424274402,21.0049163166855,16.0977938475797,15.5051167483709 -"Tfru26201_t",9.57858898335541,12.1323879319261,13.0918502744415,19.3613532795101,26.2408747801465,30.989705895726 -"Tfru26202_t",9.83025985458431,8.11440516801889,9.3058804771388,4.18268293940457,4.22404074878202,5.1008348403633 -"Tfru26203_t",0.267123614535604,0,0,0,0.115602296213544,0.293156088202119 -"Tfru26204_t",7.22014315262631,7.88183824873846,6.24527570994655,8.03266623613555,8.22127498786189,8.12334251334098 -"Tfru26205_t",13.7316453403077,11.2959678454847,12.522786367967,14.6448812947505,14.6165900254083,15.6626700674323 -"Tfru26206_t",0.597938624707811,0.2999711077268,0.514916127882092,2.93786126818222,4.91659445568705,7.21831663441446 -"Tfru26207_t",0.0336714936959709,0.0540549138412702,0,0.0696583918455187,0.0874314761342514,0.123176472597951 -"Tfru26208_t",0.330099712265019,0.198723492191507,0.0355332593160284,0.640217415230486,0.785709516209734,0.633971638680713 -"Tfru26209_t",204.094841827733,236.81290465926,187.958927828737,183.479260970723,149.731448087587,169.914629601275 -"Tfru26210_t",5.03316606396985,5.33682325208384,5.13697391484738,10.9266297711822,9.9497494074623,7.77405712301079 -"Tfru26211_t",89.6277656782265,81.5922435064962,84.6395578205029,47.2614240065769,47.257805123405,62.9310067387615 -"Tfru26212_t",1.78492301922339,1.57599551385304,1.33214491158164,1.10777562952629,1.02994113765324,1.52356734697112 -"Tfru26213_t",3.80118125707108,2.77687539724237,3.0527170438724,2.51816680129905,2.69858191928688,2.74983490834837 -"Tfru26214_t",5.36780297829735,4.85575948905264,5.37456764159689,6.87435072873043,6.80309547501514,5.14286758182166 -"Tfru26215_t",111.335857216055,130.11117336435,134.639185084656,257.494995130322,170.686181926159,66.4469646754631 -"Tfru26216_t",1.02590690765675,0.2744918793093,0.687137058035329,1.41490654806976,1.38126705625029,0.500393974163183 -"Tfru26217_t",6.84690004734953,4.44904108132757,5.24108679712328,21.1345182917587,15.0507310361333,8.66713004020074 -"Tfru26218_t",9.16476837506699,6.91850246278154,11.7444344102977,29.2296111055412,27.8579013946807,14.6079298028924 -"Tfru26219_t",15.568154926761,14.4864015582129,16.832668299904,13.7773733178468,13.4747686794414,13.9213930972578 -"Tfru26220_t",10.6971124391987,9.19711096662123,9.86707687142412,10.4630467261408,9.83980631691691,14.1464602264226 -"Tfru26221_t",0,0.0730590520227352,0.0783810573861689,0.188296519669089,0,0 -"Tfru26222_t",0.773101626731111,0.709204259600188,0.91938026426625,0.495041616895136,0.477961290435927,0.457890454447161 -"Tfru26223_t",55.4213776714933,51.7471956952082,55.9705486836394,44.3352177602874,46.8078302173839,44.7573592985594 -"Tfru26224_t",35.5976172760371,43.4317489939901,44.4496983698217,92.7902908664226,98.5950431434835,84.1237895081356 -"Tfru26225_t",46.9331713806969,52.3645653483847,43.2457631760639,81.5586914133175,85.712967324946,79.6642116185455 -"Tfru26226_t",9.70307411871604,11.0503078310162,11.7838530450411,20.7596448234974,21.4624278886253,21.2973701866323 -"Tfru26227_t",110.839497095232,111.047755842486,101.400688993065,55.2228136579841,58.1710754546552,58.6892184148639 -"Tfru26228_t",37.7514984226124,45.6669939039072,45.3305435492149,21.9997072980467,26.6924238636867,30.3435105471991 -"Tfru26229_t",14.0707034986661,13.9517596586865,14.968079165676,3.85265810071705,7.88031810346315,8.17515574045418 -"Tfru26230_t",0,0,0,0,0,0 -"Tfru26231_t",0,0,0,0.0635690152357605,0.0531922782138398,0.134890401959863 -"Tfru26232_t",0.69943884453564,0.561426036219113,0.435011243097429,1.00484324499635,0.672653508957623,4.0370205806409 -"Tfru26233_t",19.290426188009,20.2025650220722,18.1355768967277,9.97683736875754,10.7687622699684,10.4390386933386 -"Tfru26234_t",4.55787321760527,2.98864744598964,4.12772296910474,2.03634580542796,1.79654684128297,1.7691165971423 -"Tfru26235_t",0,0,0,0,0,0.400859085824202 -"Tfru26236_t",7.47999367931824,6.98978523764093,7.73930915000456,8.71875443051161,11.4989335201063,13.3548668194189 -"Tfru26237_t",23.6935515738223,21.8632067047255,18.8211901696527,8.55410493924833,10.1117689755162,12.9172664791372 -"Tfru26238_t",0.765470403384487,0.691231828192325,0.494389858547384,1.18768351472371,0.331270361359085,0.210017288700607 -"Tfru26239_t",6.89269032488263,7.27900293545688,5.62076618071249,5.33307376698461,4.36757802651927,6.64812507806523 -"Tfru26240_t",0,0,0,0,0,0 -"Tfru26241_t",5.84882369927798,4.26794335550535,5.95249561757367,6.04991950696285,5.06235625000955,6.22430985583571 -"Tfru26242_t",0,0,0,0,0,0 -"Tfru26243_t",0.461595476766195,0.741027527659172,0,0,0,1.35088043574457 -"Tfru26244_t",18.9663315979861,15.5041022615228,19.4391535978978,15.7669647387455,15.711024534152,12.5143542859799 -"Tfru26245_t",4.97691805518054,5.87246755775873,4.71447201209581,4.89063398317064,5.08307679476401,5.68042022092116 -"Tfru26246_t",0.263355413076638,0.422780595717772,0.566972695669545,2.31548643426934,3.53311782737914,2.89020657490804 -"Tfru26247_t",1.70035994964699,2.17364371494028,1.62696512670391,1.30283124178838,0.926638195960587,1.33619695274734 -"Tfru26248_t",8.44565623840424,8.51872426807886,7.62978339868992,5.37348692862192,4.99287019029429,6.64550153661519 -"Tfru26249_t",0,0.455631790655301,0.244411202592682,0,0.491309758907561,0.622956687429504 -"Tfru26250_t",0,0.318082570834833,0,0,0,0 -"Tfru26251_t",0.494906490553446,0.248282419061063,0.106547446196515,0,0,0 -"Tfru26252_t",195.00421892975,400.13523506767,161.041084632806,462.405437186909,439.112164157399,270.385205229612 -"Tfru26253_t",28.3092038847706,27.9439090268894,27.3944323985866,9.83272277549424,9.12982759927281,11.0728618942805 -"Tfru26254_t",53.0252103661715,58.8470213924289,51.3805469055211,60.2854767276003,61.2201082240952,46.4192767953324 -"Tfru26255_t",76.4297123656184,80.103335378643,72.166863764795,68.1011952861538,60.6697712173861,53.8674010097674 -"Tfru26256_t",0,0.10326723586062,0.110789764115519,0,0,0 -"Tfru26257_t",5.1001240535786,5.8038810683002,5.73986394931606,4.9823957675003,4.414331189645,4.98985003390623 -"Tfru26258_t",26.4526344580982,32.2229723340654,24.2678667485696,11.1373518196362,12.1956764204776,9.91999383273818 -"Tfru26259_t",5.68277633177773,4.63747892450514,5.46467076642398,7.73958135553042,7.4599321679448,5.47434016491977 -"Tfru26260_t",33.536400404731,30.7257502698357,32.9639754206453,29.0830807970348,31.6657063966873,29.4933149973345 -"Tfru26261_t",7.36701298467667,5.75425504863769,6.65705762342884,4.44233177253126,4.91812081114859,4.39899366433376 -"Tfru26262_t",6.93253330944508,7.65881867096187,8.73027273431323,8.7901226231681,10.5812515245824,10.6895756219787 -"Tfru26263_t",2.37765217277681,4.81667892978461,3.12003087730173,6.32417461815818,4.85085619104689,4.26610590439144 -"Tfru26264_t",2.44013542489681,2.51826367283345,1.62102434117902,14.9278511802887,19.189213687324,18.1079636832897 -"Tfru26265_t",0,1.74396995048784,0.623669962787562,6.74215164978073,3.76106089824811,10.0675528630645 -"Tfru26266_t",8.3744521148753,8.00239379157254,8.69980128722306,50.4618286148947,42.2246532671251,37.054094610522 -"Tfru26267_t",0.540259657694196,0.867311961633242,1.16311440462112,25.7064103926373,23.8482704838217,15.0204004720409 -"Tfru26268_t",18.7240108606174,17.9716652521681,17.8304889589548,33.9192421071123,25.2955000871511,19.0628664320016 -"Tfru26269_t",7.41268030336301,9.45002405947362,9.26225429340849,11.877177616532,12.957657378524,15.9511400933506 -"Tfru26270_t",0.717016017963989,0.815341099067381,0.668914870253656,2.90486889038576,1.96523903563024,2.18581293834914 -"Tfru26271_t",1.40739033251136,1.21658385339921,1.86458030843902,1.23181350786099,0.937034076266998,1.10890571851712 -"Tfru26272_t",0.342201127378605,0.412017342262635,0.442030851124851,0,0.296186738567491,0.25036684246997 -"Tfru26273_t",1.62731964690455,0.326554503714211,0.875856125513728,1.26245293695813,0.528187731125804,0.297651621435243 -"Tfru26274_t",0,0,0,0.302783427969633,0.25335834257254,0.42832794304096 -"Tfru26275_t",0.21449457899093,0.172170651107195,0.123141644199888,0.295825851326926,0.123768245648203,0.261553446069692 -"Tfru26276_t",12.3835365067947,14.7467042113267,14.0185470386723,6.85568733308682,7.04493993395479,9.74082955033944 -"Tfru26277_t",21.7416185061181,21.9675549828315,22.9108453517753,33.8323534991585,42.0106092599596,46.6743757364889 -"Tfru26278_t",0,0,0,0.824989023676753,0.460214204546323,0.680783890482032 -"Tfru26279_t",0,0,0,2.18810038414026,0.26156059107309,0.221097337504956 -"Tfru26280_t",8.2607114883995,8.13962572376461,8.39055262402007,19.0339415253586,18.9977235864754,16.9111242446983 -"Tfru26281_t",126.097128629765,136.56921501498,121.091276046462,283.307104438856,182.702358345446,70.5356317619208 -"Tfru26282_t",0.0841787342399273,0.202705926904763,0.0724906973621582,0,0,0.123176472597951 -"Tfru26283_t",15.1105015124131,12.7729201703481,13.0124407549861,18.776789573504,27.7487372468237,39.7456117062729 -"Tfru26284_t",4.07631850900124,3.57873036481344,5.21064671486446,5.86353078137099,5.18203287787869,4.52017498344097 -"Tfru26285_t",12.6453771295323,11.5571580878588,9.59578050834816,14.1162056291714,15.0629275115445,11.9082828277632 -"Tfru26286_t",5.45002315520781,4.39198784124008,4.84229274077302,4.49650343912581,4.17433061732144,4.75485917822796 -"Tfru26287_t",2.86120323094453,4.35266542276352,3.40257178568859,12.0638031651242,11.7455382648469,8.11426511493212 -"Tfru26288_t",1.90249959315554,3.05419927371325,3.10422619168965,4.03939798482014,5.89337474808784,6.15383197308192 -"Tfru26289_t",2.15227267561351,2.67776087385976,2.59480791685075,3.37651357313531,3.07372783412194,3.77923510461076 -"Tfru26290_t",390.048177867435,433.938983583323,402.834100273212,931.059041006621,825.113265884822,425.865057368474 -"Tfru26291_t",7.79719477362352,6.21159990386739,7.11845495562329,8.97489803659325,8.72769101378289,7.72066348133146 -"Tfru26292_t",0,0.253509417357085,0,0,0,0 -"Tfru26293_t",37.5812842908769,40.9813970243284,39.7339093179127,30.0108415169957,30.9237432113571,34.1608743133235 -"Tfru26294_t",0.203414955863069,0,0,1.47286175978449,0.704250308167739,0.148825810717622 -"Tfru26295_t",0.22417712280573,0,0.0482626524132314,0.927539360397968,1.26121411092481,0.369036383213742 -"Tfru26296_t",0.211081348671978,0.127073187846076,0.272659733545605,4.25760666992977,3.15154224746483,1.58295694276475 -"Tfru26297_t",1.28527697425024,1.40681860257965,2.01239821884378,0.241721401466717,0.505659557151036,0.427434352061041 -"Tfru26298_t",3.79976262429162,4.86093110369783,4.49923887288635,5.83419799547141,5.03601183264683,4.99539355479395 -"Tfru26299_t",89.4055385824578,90.9424333715297,107.921224002796,79.8831573531552,83.6542759405249,62.8184189418209 -"Tfru26300_t",7.41135115143485,7.65382977868948,6.4601338626111,10.1903969630705,7.78378430303684,8.13362276346903 -"Tfru26301_t",22.7055072355263,25.1937578362343,23.2334413758691,23.0717121131264,28.3225625723182,25.8954544578539 -"Tfru26302_t",2.99609046973778,2.74159043221692,3.04450587880071,4.36973501413949,2.93033680740729,3.00310741662402 -"Tfru26303_t",10.6774478864356,8.44006449890001,9.10155781525781,7.84892782956119,10.7428840960613,12.0550827014315 -"Tfru26304_t",0.0535780464103619,0.0430060618730769,0,0.0554201810122989,0.139120875609029,0.0391996555015164 -"Tfru26305_t",3.31760723556034,3.69380982895584,4.14720664781468,7.30614483133858,9.5407974073718,4.54136747761772 -"Tfru26306_t",0.675028593488621,0.812748599547294,0.713416483243504,2.28514125477155,2.60261385799681,3.61427123157298 -"Tfru26307_t",0,0,0,0,0,0 -"Tfru26308_t",1.61947714258212,1.29992298827922,1.13312567177909,1.15167142421703,1.31410562021059,0.518380022632101 -"Tfru26309_t",20.75415586301,20.5859335151941,20.6372902236492,18.6211808201324,20.2460749421343,20.3019260391038 -"Tfru26310_t",6.11168737766559,5.32583751440413,5.03046979998636,4.05155381188304,3.56555024390471,5.06444423810588 -"Tfru26311_t",0.552699847180565,0.887282960749781,0,0.571702919916336,0,0.404375393594583 -"Tfru26312_t",10.1954340742048,5.23755378772696,7.37504871512676,5.48390762016845,10.5893948036387,6.86260376702276 -"Tfru26313_t",8.24318937005852,4.92729159831829,9.51519855104037,7.43810563031038,4.40229955163101,5.13278161389375 -"Tfru26314_t",1.51618399423449,1.43828640725316,1.0979456483983,3.52870612752304,4.11587798028221,2.54633758919776 -"Tfru26315_t",0,0,0,0,0,0 -"Tfru26316_t",0,0,0,0,0,0 -"Tfru26317_t",0,0,0,0,0,0 -"Tfru26318_t",0,0,0,0,0,0 -"Tfru26319_t",0,0,0,0,0,0 -"Tfru26320_t",2.64860593867391,3.92405453648697,2.33100389496553,1.50027553440694,3.27700928760344,3.48086974596587 -"Tfru26321_t",0.133613718912867,0.35550914643185,0.0910071299714183,0.439409995973554,0.898454929292878,0.769721474723988 -"Tfru26322_t",0.317020289703575,0.254466056667866,0.546005403527803,0.655840330771959,0.554078173984302,0.232678606628942 -"Tfru26323_t",257.590640541865,288.141879433788,249.419835104637,634.649092878312,400.059808905752,203.772491538368 -"Tfru26324_t",5.37666411205667,4.85521236003456,4.63012582078253,3.47595375224063,2.3268430176167,4.91720478490671 -"Tfru26325_t",6.71527267467468,6.91435056954748,7.25850071999612,4.93416808942134,6.37348470044803,7.14946395995904 -"Tfru26326_t",0,0,0,0,0,0 -"Tfru26327_t",0,0,0,0.3729564112759,0,0 -"Tfru26328_t",0.127772436154293,0.0769203479281193,0.220063014349609,0.429538011313574,0.359422044158991,0.280448942173587 -"Tfru26329_t",0.859441194592813,1.00029240178647,0.88813155151837,0.48894490132999,0.446325387120117,0.314399282999374 -"Tfru26330_t",1.20623007188734,1.19603345047017,0.672130807129876,0.6605486439574,0.859792078088232,1.19400031757322 -"Tfru26331_t",1.44055205687595,1.10374404158743,1.24053449047821,0.135461954524216,0.0566748591725012,0.0479072952660777 -"Tfru26332_t",14.9573371106435,30.4551319394215,17.775149205055,99.1214111786594,120.743819823535,76.0926497316462 -"Tfru26333_t",2.8402084673621,4.55956083744736,3.28259031524833,137.460982495473,113.599208739296,70.2145345347589 -"Tfru26334_t",3.09557171317514,4.41734321503277,3.48029544572098,3.64672732540294,3.12587662371484,3.33433794349848 -"Tfru26335_t",1.51972461598132,1.65900084701699,1.46575980252399,1.19470190500608,1.84152283005873,1.28978779664613 -"Tfru26336_t",0.976864846179621,2.54835920122325,3.57522433559993,1.01045167241029,1.26826472648231,1.25074249646699 -"Tfru26337_t",0,0,0,0,0,0 -"Tfru26338_t",0.776077383569953,0.85654567573537,0.66832070177768,1.7058664492654,1.2594776729501,1.34854057355794 -"Tfru26339_t",0,0.413702484766777,0,0.266560870635842,0,0.188543128301772 -"Tfru26340_t",0,0,0,0,0,0 -"Tfru26341_t",0,0,0,0,0,0 -"Tfru26342_t",0,0,0,0,0,0 -"Tfru26343_t",0.18334870530652,0.147170460534667,0.094734678263772,0.075861059648437,0.253911285266937,0.295118139716349 -"Tfru26344_t",4.36417541669857,4.46637500761846,5.1032163782893,5.9813489907092,6.32704879133426,5.10878419336126 -"Tfru26345_t",1.92880967077303,1.03214548495385,1.29188778513275,1.99512651644276,2.04043950893242,1.72478484206672 -"Tfru26346_t",0,0,0,0,0,0 -"Tfru26347_t",6.24800792069056,6.30283011716539,6.39841508053687,4.62878263602622,6.72329012792498,9.01899370316698 -"Tfru26348_t",0,0,0,0,0,0 -"Tfru26349_t",25.8383656680238,28.474470682618,28.0593197443786,22.6660535726222,20.6032855396427,22.5598180501233 -"Tfru26350_t",1.96133175341901,2.88625896959856,1.40750420170105,2.02876678195995,1.69759947824869,0.956654627647902 -"Tfru26351_t",9.70307411871604,10.9837397115523,24.7818000401773,9.95090413027149,12.920525150343,10.6790232274852 -"Tfru26352_t",0,0,0,0,0,0 -"Tfru26353_t",26.1068103114458,21.492750603023,23.9230853597491,11.4249475948223,12.7466500000241,13.9582008370659 -"Tfru26354_t",28.1903266192083,26.6776974090072,27.9124081821291,15.9880618290428,17.260006897294,18.9258477825739 -"Tfru26355_t",0,0,0,0,0,0 -"Tfru26356_t",0,0,0,0,0,0 -"Tfru26357_t",0,0,0,0,0,0 -"Tfru26358_t",0,0,0,0,0,0 -"Tfru26359_t",3.89082689783598,2.81723399282717,3.43313042767432,2.48491228735663,2.64811439363928,2.87194567232478 -"Tfru26360_t",2.24816501219366,2.27944242310934,1.73222136823433,3.07514687522714,1.84344957426724,2.25083317674059 -"Tfru26361_t",0,0,0,0,0,0 -"Tfru26362_t",0,0,0,0,0,0 -"Tfru26363_t",1.16561163383954,2.84514198826513,1.41530505075599,8.30407277533996,5.77383474913076,3.4633643702455 -"Tfru26364_t",0,0,0,0,0,0 -"Tfru26365_t",0,0,0.0431657016512135,0.051848952164251,0.0433853486386152,0.0733473267617872 -"Tfru26366_t",0,0,0,0,0,0 -"Tfru26367_t",16.9960239762406,20.0743726964292,18.5479296101197,31.5707828728531,38.2564940338179,36.4832098726434 -"Tfru26368_t",0.702036574691761,0.563511183985944,0.806080400751353,0.968232243200943,1.21527316409447,0.856059329058185 -"Tfru26369_t",3.30818063970467,3.63372255013803,5.62272403891973,3.7821258453326,4.67177030853449,4.90446591360734 -"Tfru26370_t",0,0,0,0,0,0 -"Tfru26371_t",8.46860634478934,8.35235370451659,7.37034103689675,0.931891086619674,1.24763700707035,1.71377110507863 -"Tfru26372_t",0,0,0,0,0,0 -"Tfru26373_t",0,0,0,0,0,0 -"Tfru26374_t",6.56564223435824,7.18651918475857,4.49751342603941,5.40223718286849,4.13293608914069,4.03944442908699 -"Tfru26375_t",10.3473191331402,12.8538939181935,10.395718716728,11.4675893613719,11.3015652459557,8.29147434608028 -"Tfru26376_t",3.679286573932,1.59969993653431,3.43246097655708,7.92872662657706,11.1459177422241,12.1135519365854 -"Tfru26377_t",22.4220804166623,22.7495910743804,23.6323681683954,25.8505804326544,27.1762152321081,32.2465242883256 -"Tfru26378_t",14.9376739446558,15.7765553181448,15.184862843432,10.5719181661536,13.2206989669671,16.1879903553428 -"Tfru26379_t",14.9654112467356,18.2916794985343,16.658553018817,19.7897164586428,16.2649388606766,17.0148723304801 -"Tfru26380_t",0,0,0,0,0,0 -"Tfru26381_t",0.0681902408859151,0,0,0,0.118041955062206,0.249452353191468 -"Tfru26382_t",6.85230526716713,7.28890007809581,6.38062349049649,9.96916444437682,10.5599017942386,10.0267935791041 -"Tfru26383_t",0,0,0,0,0,0 -"Tfru26384_t",0,0,0,0,0,0 -"Tfru26385_t",401.342348563216,501.337524805795,407.784624983195,504.919572200143,316.725865067138,173.31076890751 -"Tfru26386_t",0,0,0,0,0,0 -"Tfru26387_t",22.9119209376675,27.9777308049191,23.5788261905466,21.9348145444113,23.8394518606481,21.0431636156071 -"Tfru26388_t",23.1951727075013,26.9548763186024,19.9745726778217,18.1437146452572,12.2854434768589,20.6009266451046 -"Tfru26389_t",9.00111179692688,6.26168260871032,7.23457159673221,6.82776630070467,5.19384602272905,9.21975897394241 -"Tfru26390_t",1.14932763009798,3.99768661664208,2.21514570063153,5.26488109181594,6.86873447958063,4.56483180469515 -"Tfru26391_t",11.9916932585671,13.475700431616,14.51635083849,11.6243151612355,11.4467960468479,11.1298884840586 -"Tfru26392_t",0.523196296619335,0.53994799390824,0.257458063941046,0.618497109090994,0.0646920323116718,0.273421084636912 -"Tfru26393_t",0,0,0,0,0,0 -"Tfru26394_t",0,0,0,0,0,0 -"Tfru26395_t",0,0,0,0,0,0 -"Tfru26396_t",57.315487728032,85.7098710994772,70.3173277681496,120.196525427882,134.554583456605,79.8471296604564 -"Tfru26397_t",14.2736077038867,18.6587853687773,16.5060614100456,38.3873533411792,46.9463169627983,48.3366004459864 -"Tfru26398_t",41.2550957359786,45.1563649667307,44.6508715736506,61.1007495660595,63.2999984021081,50.7635538744637 -"Tfru26399_t",1.39090027767297,1.33973851027122,0.718666052656628,1.43872257992193,1.44464591360899,1.62821350533451 -"Tfru26400_t",1.52900584619419,1.29548695179242,2.12136073109766,3.07528769864,2.05863259950752,1.98875825525186 -"Tfru26401_t",0.225430349118374,0.301580970558965,0.323549713628953,0.932724620686418,1.23574511811097,1.20950922735269 -"Tfru26402_t",0,0,0,0,0,0 -"Tfru26403_t",0,0,0,0,0,0 -"Tfru26404_t",0.101892512761004,0.122680724712525,0.0877449556912479,0.263489520398073,0.352765769888752,0.186370708994475 -"Tfru26405_t",13.3758359801853,12.22676811207,12.209020876473,9.12197808131717,10.956380359365,9.8479930108561 -"Tfru26406_t",19.438571221053,25.5565810237242,21.1649700968557,13.7512798077751,17.3082156023658,14.058497726246 -"Tfru26407_t",7.16701738973862,7.65601692623879,8.12091102905769,7.97083686164317,8.302157978615,8.08232024657308 -"Tfru26408_t",1.24121085432154,1.2584790982952,1.18138416432046,2.43262704337655,2.60096177188389,2.86773218474546 -"Tfru26409_t",8.26433440133322,7.4316510706588,5.51154492947167,5.14194342173282,5.86228478601832,5.50094100517138 -"Tfru26410_t",39.3030526070318,54.403270360082,32.7615740586046,31.7086021263785,27.2114231871021,30.2199189780397 -"Tfru26411_t",22.6909056231562,29.9222626763469,26.0537626635132,176.871280201515,184.00577324282,179.454258271225 -"Tfru26412_t",14.5262899316624,15.7409622662125,15.428193030519,23.0394629167441,24.3077981006484,20.0159993094544 -"Tfru26413_t",2.41370595672155,2.47561151698427,3.17559008635983,3.74504195265233,4.7005757300749,4.21867130492297 -"Tfru26414_t",42.8640305274393,33.5914114211001,54.662701748628,18.8173146949417,21.8952468021704,21.1928784345596 -"Tfru26415_t",13.1514041673364,11.1929433280237,14.2506035857815,13.2891246381562,12.2295625513347,11.2563451286821 -"Tfru26416_t",35.6241185202868,42.4342629659194,44.2153143362335,34.4885250401044,27.2494034291487,24.7653485517749 -"Tfru26417_t",45.8408514677163,50.4624892777435,40.1204527302696,19.5474013954471,19.757436540835,22.0398098709283 -"Tfru26418_t",0.996733283729037,2.28588152599948,0.735719145431531,1.76743411174138,2.7113636864458,2.70862975506071 -"Tfru26419_t",2.5152807416601,3.63414098893929,2.16603940022257,2.08140943298885,3.04788568998942,2.57637975320146 -"Tfru26420_t",0,0,0,0,0,0 -"Tfru26421_t",1.49402858827472,2.3062074219215,1.97936295396536,1.42652000810864,1.09418917578866,0.840835291742513 -"Tfru26422_t",0.68601438318393,0.635365939230382,0.772535911712548,0.600431709861891,0.50241977858135,0.579130588816373 -"Tfru26423_t",24.7175159640131,18.635803668797,24.3006944728121,13.7106585646621,14.016039949227,15.6140464555224 -"Tfru26424_t",0,0,0,0,0,0 -"Tfru26425_t",0,0,0,0,0,0 -"Tfru26426_t",22.4605603938673,21.22320913058,22.260220297672,20.3388944980371,20.9069355380533,20.7574310858311 -"Tfru26427_t",29.8920642930964,28.4632120013551,24.7321401097972,13.2369169085748,7.60958835889385,7.71886797819627 -"Tfru26428_t",792.21785295475,638.258124985759,808.463375936074,355.416271253594,379.566267341626,377.702792633091 -"Tfru26429_t",6.82291342657137,7.52512765223634,5.83071486408333,4.84866456568854,4.77846714057149,6.43992257325346 -"Tfru26430_t",9.64338347635022,8.40303759518784,8.9777517229494,4.26855747858947,4.17333853119618,4.83075961406898 -"Tfru26431_t",17.4041654005798,21.6723582753355,17.0940045566949,18.5864268432378,17.1809867314281,13.2841618661712 -"Tfru26432_t",0,0,0,0,0,0 -"Tfru26433_t",7.79658345428449,7.87544584139966,8.37369600874365,10.3299981191975,11.3733854512491,10.8957874561879 -"Tfru26434_t",25.7470651112494,29.0109611511919,32.4775012688336,65.768045831873,62.4606691482539,49.3489257311061 -"Tfru26435_t",26.8891344337678,40.8334372940218,36.172857983717,10.3737374119077,10.6932123997528,24.0330510739816 -"Tfru26436_t",7.96306888828886,4.63405603197287,9.25750867829723,13.1789715757019,13.7846150366482,16.3130016600813 -"Tfru26437_t",0.0335103218075179,0.0806942620865392,0,0.0693249651593814,0.14502162807802,0.0245173752797677 -"Tfru26438_t",0,0,0,0.0693526287528209,0.116063598273454,0.0490543174991043 -"Tfru26439_t",8.59948738605368,5.57521104471133,4.27238480122641,4.4475786210815,2.5764747986806,4.35579164123937 -"Tfru26440_t",5.90697961619374,16.8583762526803,11.8692190248047,7.46786939071364,9.08923053894565,14.4058733954692 -"Tfru26441_t",14.4150646489753,13.5613506399471,14.0153139789309,45.6940414958969,74.1895865461816,77.1148352065255 -"Tfru26442_t",11.2367495911293,10.7614893195877,12.5006087865658,8.92933010624796,10.1849471949884,11.0439516220759 -"Tfru26443_t",84.8561188194821,81.9158685105652,65.0625901989003,25.223993258591,26.9626838831351,34.9608310086276 -"Tfru26444_t",0,0.297063898753236,0.239027695927645,0.191407144994019,0,0 -"Tfru26445_t",4.61146690400289,5.09473311147159,4.61594096207042,3.06266939962478,2.53327551605244,3.0875703538468 -"Tfru26446_t",38.3428143093884,41.9359608602066,39.9703644268474,21.492774540912,23.1597475675785,24.3891607496125 -"Tfru26447_t",340.774486058829,345.98679636481,354.304773973308,193.380525700155,298.170653361638,298.544576299549 -"Tfru26448_t",10.3615282797082,11.2488899229752,10.3992954629319,9.32986699476614,13.226564405728,14.5072812012569 -"Tfru26449_t",126.176999393857,166.329068101079,103.986540245274,130.582044336927,131.06377012026,136.772750343861 -"Tfru26450_t",467.352855305918,469.426075755771,438.945712209287,208.40782889237,253.144185807328,258.804886575536 -"Tfru26451_t",0.1429355623504,0.143414515136079,0.0307723164472284,1.40457510227002,1.1443693065835,0.653605485180537 -"Tfru26452_t",18.6411707206935,18.9797951574238,19.3388771647869,19.411506439453,20.1952821524445,15.8811435292279 -"Tfru26453_t",0,0,0,0,0.0753511340086208,0.0636943625143811 -"Tfru26454_t",0,0,0,0,0,0 -"Tfru26455_t",0.081961343191656,0.394732712294544,0,1.10213167780946,0.638463023282801,2.69846604115805 -"Tfru26456_t",22.4216883950823,22.3259577421098,21.0193634229707,37.2843012367066,38.5678160742436,31.9784432880479 -"Tfru26457_t",6.81944987841909,6.80019423056073,5.30791234853168,5.45322123299538,5.33492145326412,7.04267154426494 -"Tfru26458_t",0,0,0,0.330413854856596,0,0.233707451811322 -"Tfru26459_t",77.5663990077284,54.7897228263,111.601487983854,184.166299702143,114.33838872213,80.4982743748867 -"Tfru26460_t",10.8915187061249,7.90714922577358,8.78184991512203,8.25216105709144,14.1104487322915,17.6122012879877 -"Tfru26461_t",0,0,0,0,0.0785246698901934,0.398261726736789 -"Tfru26462_t",31.0825911086039,27.4543541971081,30.0455090830576,11.2981409136514,9.12974716923917,8.44802085280823 -"Tfru26463_t",0,0,0,0,0.177784460435988,0.450843959606682 -"Tfru26464_t",111.181019072994,99.2701412145944,114.03190918287,458.399477289654,576.574832457155,523.481234432087 -"Tfru26465_t",10.8116309477077,7.64974937752256,9.65529097754123,5.46742010734107,4.71357618078713,2.69532197522724 -"Tfru26466_t",8.79950586736505,7.32972880619398,8.2925919488363,8.41510542991492,5.89183323527882,8.86748886823236 -"Tfru26467_t",0,0,0,0.161322111065504,0.044996190791039,0.114105927895503 -"Tfru26468_t",0,0,0,0,0.103876920454742,0.0878072283233967 -"Tfru26469_t",0,0,0,0,0,0 -"Tfru26470_t",1.12101758643219,1.11154129148876,0.85179414404357,1.77344579239356,2.68253585789717,1.54386335513665 -"Tfru26471_t",9.1462910194721,13.8673740155896,11.3769472690723,49.4061974985772,68.3158295410014,85.257986210782 -"Tfru26472_t",20.7734749834852,28.689891225408,17.6260471629748,27.4916342289955,19.8310484504507,28.162172865904 -"Tfru26473_t",0,0,0,0,0,0 -"Tfru26474_t",36.7046693628305,36.5989172412399,44.6639087722964,32.4249417265987,33.6437190129536,27.5216685789751 -"Tfru26475_t",20.4115437440402,18.3830543214938,18.5721010915324,14.075559236471,11.4186509552505,15.2375250353684 -"Tfru26476_t",0.320854398872492,0.214619684968124,0.368405937453514,0.553143499855408,0.277710417511085,0.391247993802532 -"Tfru26477_t",75.8564284377481,71.1026810252617,76.0693925245812,59.2956816703825,75.6010116662523,61.1035006509284 -"Tfru26478_t",6.09181484177444,5.7995088631808,6.83197317736307,9.52516837904469,7.60245927105528,9.63954563887543 -"Tfru26479_t",27.6964515432885,22.1257937369746,26.2869320351522,13.4056947799335,17.9934023528495,24.7400475730291 -"Tfru26480_t",3.72479742793887,4.45223623485633,4.25357944483226,17.5472846089794,30.171865040035,30.1252847438198 -"Tfru26481_t",22.2867346159727,24.942559713205,21.75123850461,22.350435324956,22.2293460397084,24.2878609318986 -"Tfru26482_t",25.9602881010481,30.9673177545809,40.324612340144,36.0726760954737,46.1873345884602,35.3490043636679 -"Tfru26483_t",4.97429862462518,5.85606754094866,6.04467495254217,7.37496766692087,6.8408419325787,9.09844635587828 -"Tfru26484_t",0,0,0,0,0,1.61219829052794 -"Tfru26485_t",25.1220740827801,17.3462392326648,20.9360592831802,13.691457709122,21.9778178968553,21.147142769847 -"Tfru26486_t",423.283052194601,382.083898181901,435.212602524371,264.494557872907,195.640920290023,141.30516376169 -"Tfru26487_t",0,0,0,0,0,0 -"Tfru26488_t",2.43367256000717,3.43809295567476,3.94003319868991,2.21526600718454,3.11751128595342,2.06545392232324 -"Tfru26489_t",29.4539456275421,33.2255728830853,28.2684620177056,44.2511755714855,27.5884187572256,19.2613071906551 -"Tfru26490_t",0,0,0,0,0,0 -"Tfru26491_t",19.0068725727257,18.4385084823429,18.1448854527242,12.9758454583728,16.968130445322,21.1770374191722 -"Tfru26492_t",47.5258702878474,99.8015874251372,66.9714627812817,271.869239973933,240.994455455,246.562697132098 -"Tfru26493_t",1.8113120248464,1.45390513896989,1.78264597866367,2.76577429019078,4.32998251587526,2.46112662549151 -"Tfru26494_t",0.151007268013387,0.282824766398378,0.195060348623998,2.00455691273245,2.70117336592917,2.39378603278283 -"Tfru26495_t",13.9846541820763,14.3501788115412,10.6312911878973,14.4124911713545,13.1682998552078,10.269162434407 -"Tfru26496_t",12.5454194249053,9.28631068508155,12.6531438153385,10.9570302792102,7.43616304475546,7.07151763255246 -"Tfru26497_t",1.91398742847887,1.70092648944387,1.47163783497628,18.5959283373278,14.4954368250514,8.50208313302214 -"Tfru26498_t",0.645052253089724,0.542426731398048,0.396777235653202,0.667230610739662,0.505141880090699,0.966361086849814 -"Tfru26499_t",8.07422385446405,7.40688384625918,10.4297027596072,2.18738508489733,2.82868501924811,20.2539327574334 -"Tfru26500_t",1.34416602834316,0.760159511100553,0.815533525451073,1.16918444422165,1.34851129463064,1.11754654229778 -"Tfru26501_t",0,0,0,0,0,0 -"Tfru26502_t",0,0,0,0,0,0 -"Tfru26503_t",36.1334768344853,49.0048633059825,40.0685435258224,41.6121672786602,42.198324244925,42.7206367419787 -"Tfru26504_t",79.4101320063685,125.449107163031,71.8814879110392,174.94475781684,158.818033086474,108.191674288353 -"Tfru26505_t",0.638862180771463,0.384601739640597,0.206309075952758,1.15644849199808,0.345598119383646,1.16853725905661 -"Tfru26506_t",9.63085982915966,9.30701142383464,9.14077342273227,4.28855437568009,3.89249628535722,3.9075979252608 -"Tfru26507_t",0,0,0,0,0,0 -"Tfru26508_t",0,0,0,0,0,0 -"Tfru26509_t",29.3290664468367,26.6541901487253,34.6745739252198,22.4188733187551,22.7176981065518,22.6947913205087 -"Tfru26510_t",0,0,0,0,0,0 -"Tfru26511_t",29.9954970415154,32.286903906901,32.7584568881267,47.5506669369547,42.2754908827436,35.0628316656628 -"Tfru26512_t",0,0,0,0,0,0 -"Tfru26513_t",0,0,0,0,0,0 -"Tfru26514_t",2.36824504251855,2.20109363556923,3.43481144059033,0.90251024746438,0.863072336122481,2.37105572030537 -"Tfru26515_t",25.2503098723171,21.9727151178939,26.2151611230308,24.1656897160145,25.3272940884033,22.4451061163739 -"Tfru26516_t",24.6707443378285,31.2674675503793,23.3697907839161,28.2051888774803,24.2754101588206,32.2050313464328 -"Tfru26517_t",0,0,0,0,0,0 -"Tfru26518_t",0.123002015770787,0,0.105923449439874,8.65171505161838,5.74897158592859,2.33981194068202 -"Tfru26519_t",7.71609450546406,7.60730722155001,8.18553857867804,12.6372029126534,10.9373236711748,11.7612011315032 -"Tfru26520_t",2.87706769765181,0.461873322034061,0.495518602516584,0,0.498040029577441,0.841987120909137 -"Tfru26521_t",3.45678607663063,4.07796133830892,3.5631618213387,3.79234355854733,5.53060411897439,5.55638009652417 -"Tfru26522_t",1.29246733494535,1.55615780808426,2.782527537209,2.0053579344758,2.51701768794181,3.78246522008478 -"Tfru26523_t",67.4694735729241,68.4816942141398,72.5331401020646,55.381128449513,55.5714613313578,49.2038950423594 -"Tfru26524_t",0,0,0,0,0,0 -"Tfru26525_t",0,0,0,0,0,0 -"Tfru26526_t",0.8296998328297,1.92470324956769,0.911442090928301,1.36848572956354,0.810709206851641,1.25833980746915 -"Tfru26527_t",0,0.278288791337282,0.143855070928214,0.698863272018652,1.22565436035478,0.636650521332454 -"Tfru26528_t",0,0,0,0,0,0 -"Tfru26529_t",0,0,0,0,0,0 -"Tfru26530_t",12.5646482787615,10.6748661400803,14.1829850972257,14.9837885183867,14.8950293359958,13.1949748543828 -"Tfru26531_t",0.289192346889664,0,0.249038609182217,0,0,0 -"Tfru26532_t",67.9820812032095,60.77888281136,61.3986668407816,80.0384087882871,86.5868804053652,93.4107159203487 -"Tfru26533_t",0,0,0,0,0,0 -"Tfru26534_t",0,0,0,0,0,0 -"Tfru26535_t",0,0,0,0,0,0 -"Tfru26536_t",0,0,0,0,0,0 -"Tfru26537_t",0,0,0,0,0,0 -"Tfru26538_t",0,0,0,0,0,0 -"Tfru26539_t",2.22176203031927,3.12088948838937,1.31537665395334,3.73449576778413,4.32677420737105,5.28294729086222 -"Tfru26540_t",0,0,0,0,0,0 -"Tfru26541_t",17.1416745674176,15.6739090102038,15.7015966801312,16.601944658052,19.9805606861214,22.8645289921992 -"Tfru26542_t",4.84675250604504,6.06232683678128,3.5021467278665,9.45053739235721,8.05252785222764,7.62199349305877 -"Tfru26543_t",7.54272732622903,8.55967091546863,3.58368871665307,10.7614667278371,11.9313738355137,15.7944271380475 -"Tfru26544_t",6.68264360681968,7.4539101620014,6.87583250930157,13.1066438003962,14.1221102601694,13.3343621524167 -"Tfru26545_t",0,0,0,0,0,0 -"Tfru26546_t",118.251340831647,193.964711515326,117.313956912789,165.335817730863,88.0621892997951,47.8459795149937 -"Tfru26547_t",7.43255344090554,6.65295706333789,7.3315497682815,5.63794107404903,4.21077489886244,3.65824216661015 -"Tfru26548_t",29.1326306546148,32.1532740655582,26.3274228470198,24.4402998264238,26.2414881713289,23.1733189264771 -"Tfru26549_t",55.7335027810579,47.4737419698196,58.2185977415218,43.628042353164,47.3424669842293,53.47397034227 -"Tfru26550_t",0.064923011415338,0,0.0559085903921436,5.2716841116243,3.93351553499407,1.02125099402405 -"Tfru26551_t",1.0245167898957,0.41117990864015,0.441132414435573,39.2104539220675,44.3377099501946,43.4752862186574 -"Tfru26552_t",22.315256327843,23.7070916053317,29.3904471090402,34.6237580842178,38.0611528818349,60.0244724811218 -"Tfru26553_t",20.4168644743358,22.8360475157119,18.7349463660686,91.7457912917547,124.279837500235,89.6263422169492 -"Tfru26554_t",0.484209664388746,0.194332867484105,0.208489095007014,11.7701604031192,13.2016489684556,11.159362446864 -"Tfru26555_t",0,0.177924815348244,0,0,0,0 -"Tfru26556_t",9.39246448376431,9.65411458081045,8.98704546179303,9.1756543171667,8.37268823732197,9.0450255262897 -"Tfru26557_t",12.3265789845239,15.5264503650845,17.800638917495,64.1442932991469,57.1205819927202,62.7137856467782 -"Tfru26558_t",13.5340882028658,4.90184614072383,14.3554367636755,4.78029003372096,3.71426316753693,2.53588655472285 -"Tfru26559_t",29.7943778084785,25.2875643813692,28.8121019986583,41.1759056507192,45.4461526989494,34.8421124015804 -"Tfru26560_t",7.63730697922249,8.5073809668923,6.71110537731298,13.3814546153333,13.3556040584668,13.7982787365338 -"Tfru26561_t",6.08525867962195,6.6483737340689,5.82259283440112,8.3926448766794,8.04680369719829,9.39908359518049 -"Tfru26562_t",57.9861096813449,62.0591053690144,56.8974578210044,117.738132764486,119.075754079172,117.569257291959 -"Tfru26563_t",0.0817221563924586,0.0655967947636037,0.28150084034021,0.422659746241657,0.282933246374782,0.0597909142279939 -"Tfru26564_t",1.01391834034506,1.45330829777984,0.623669965236499,1.72299431726513,2.7581113362121,3.97403404049856 -"Tfru26565_t",90.6062327989578,81.923349070221,89.9837210999901,65.7127620677401,73.0143147493865,71.6245738472666 -"Tfru26566_t",0,0.577059333886176,0,0,0.177784460435988,0.225421979803341 -"Tfru26567_t",14.1314383160163,15.7487317908999,12.3104119320499,15.4223204062075,17.6909840637939,15.8232821005985 -"Tfru26568_t",7.80151257301181,9.10012990851347,7.14852454207032,9.85860625304967,7.91669485258917,7.19810398698659 -"Tfru26569_t",0.10245167898957,0,0.0441132414435573,0.105974199789372,0.177350839800778,0.18739347508042 -"Tfru26570_t",31.4695957403169,31.7347095785352,30.5496442671104,25.6269287968772,26.2643735519467,26.7780502313481 -"Tfru26571_t",32.2964420135517,38.5675117137235,34.5519044419938,52.672176565123,59.1657459665568,44.4317000867565 -"Tfru26572_t",23.0522449514424,20.575343548857,21.7255056685336,15.9925281862864,14.2799477396217,13.0520684269868 -"Tfru26573_t",0,0,0,0,0,0 -"Tfru26574_t",103.93638273027,136.273095281934,128.097801165621,306.071166703572,327.875631635166,318.860010619723 -"Tfru26575_t",4.83059666435823,5.81613980771492,4.52160724796462,52.4651769607231,52.3539679091897,38.2619997419201 -"Tfru26576_t",13.6039530567401,14.9426516799,14.7979873569751,19.6263013757646,15.596293312594,11.9612403355309 -"Tfru26577_t",12.010387774894,11.7587487106045,12.1321779435865,7.37232338183493,6.78039062775322,8.62000715348903 -"Tfru26578_t",0.626943110226831,1.50970533618224,0,0.648498834523854,0,0.458694476310507 -"Tfru26579_t",4.74885822335551,5.48462830557012,3.854123136126,2.33238051752777,1.62637716043414,4.54926428971157 -"Tfru26580_t",24.766064828577,32.2968066968217,23.8364497696169,79.2207461480778,81.5403803338375,76.184190585791 -"Tfru26581_t",0.0901398892397505,0,0,0.0932391028189749,0,0 -"Tfru26582_t",0.207946477157048,0,0,0,0,0 -"Tfru26583_t",0.214312185641448,0.172024247492308,0,0,0,0 -"Tfru26584_t",35.2240817404948,39.1598156937198,40.7147414973675,32.7331967779906,37.9872774129335,36.3829053680801 -"Tfru26585_t",0.95885416859422,1.3616950091226,0.825719321840773,63.7817677257331,40.7938073041316,18.3477790526501 -"Tfru26586_t",46.9670646286468,60.3688368715048,64.4477798354834,209.332243911076,165.396148407412,186.797684612678 -"Tfru26587_t",0,0,0,0,0,0 -"Tfru26588_t",0,0,0,0,0,0.164785683180637 -"Tfru26589_t",0,0,0,0.337252951464235,0.188134137951666,1.03369440846431 -"Tfru26590_t",20.595474351039,28.8341669114814,41.287378382783,59.6500615553311,60.4089466717742,88.9736527361306 -"Tfru26591_t",10.8753158971257,11.038772396616,12.0906539014068,6.78525218925373,9.01452453535325,10.6932364355479 -"Tfru26592_t",16.1344432210065,14.0672543578478,15.0919871057892,14.6749703152037,13.7241361792854,19.9456154403477 -"Tfru26593_t",11.0149474978868,8.70405295735535,12.0903845978184,21.4295382536035,23.3158522542436,20.9198335414506 -"Tfru26594_t",1.02869849107895,1.37619397993846,1.10733238725664,5.6750265356594,4.15507681818966,3.19869188892374 -"Tfru26595_t",0,0,0,0,0,0 -"Tfru26596_t",4.4925335171897,4.32728374440543,3.79137976727728,4.64699699611148,7.62134411036927,6.15450992595403 -"Tfru26597_t",0.343460248452361,0.220551120251789,0.41408014045138,3.55269189809013,2.8538548873911,2.76416867575697 -"Tfru26598_t",20.7973571160586,15.485544311718,20.0305728248596,10.7562086822046,18.237674307852,14.8156821731334 -"Tfru26599_t",0,0,0,0,0,0 -"Tfru26600_t",17.9326094268519,20.9654052721019,17.9605373747458,27.4205168457325,32.5609558084352,27.6664074392512 -"Tfru26601_t",7.78747874566788,8.47654311660129,6.9094223114965,6.95678946370116,7.09776991590333,7.12200482538787 -"Tfru26602_t",93.6527287227877,112.270558484742,109.091231333479,98.5923557934892,136.41040451273,124.795154449598 -"Tfru26603_t",1.68901981271267,1.88625188858698,3.35168089709265,5.24127641965266,15.191091601467,19.1272388970196 -"Tfru26604_t",0,0,0,0,0,0 -"Tfru26605_t",0,0,0,0,0,0 -"Tfru26606_t",0,0,0,0,0,0 -"Tfru26607_t",0,0,0,0,0,0 -"Tfru26608_t",0,0,0,0,0,0 -"Tfru26609_t",0.495149568397529,0.397446984383013,0.426399111792341,0,0,0 -"Tfru26610_t",0,0,0,0.238079024184341,0.199216011831011,0.673589696727427 -"Tfru26611_t",13.3591741077328,14.0696373861478,11.0024167826674,8.48585294578073,9.0407287759703,11.6107957196039 -"Tfru26612_t",0.245285771595467,0.738323047631218,0.52807091947032,0.824587569164015,1.43304656685738,2.87136045904246 -"Tfru26613_t",0,0.0529305376899408,0,0.204628360660796,0.228300924076355,0.337720108936141 -"Tfru26614_t",9.8378869562866,9.87085204408865,9.97679750244273,4.88722311201216,2.74497563297198,2.22562235118625 -"Tfru26615_t",0,0,0,0,0.0860518867672415,0 -"Tfru26616_t",0,0,0,0.607684222568105,2.03395368722464,2.14912796595613 -"Tfru26617_t",0,0,0,1.36133958998357,2.27824055305438,1.28386547940215 -"Tfru26618_t",34.5832190092989,35.1744316582955,43.3122378489242,37.9774082515859,36.9036427931318,23.5693086552275 -"Tfru26619_t",0.761423354423995,1.22235960755863,0.546417794315966,2.36280844243372,2.08695323572215,1.20701779115243 -"Tfru26620_t",0.280502092726035,0.33773040910009,0.603887445471068,0.725365975186015,1.94227297010535,1.23135345228136 -"Tfru26621_t",0,0,0,0.0809868069219801,0,0.057283373556736 -"Tfru26622_t",1549.46638657838,1219.70352199471,1752.12280858629,2806.28953784737,3070.34207634102,1944.98498688094 -"Tfru26623_t",31.6960571134471,31.738751419458,31.8702736917894,230.319352221455,220.802750077479,132.573319297206 -"Tfru26624_t",5.7462638010566,6.18063589074961,5.83912071419781,7.01372337320081,4.77464367616869,3.19517410862155 -"Tfru26625_t",228.651926778604,200.737412638379,206.280482238723,241.941285460395,163.403514422627,59.0385189867845 -"Tfru26626_t",5.78335365675247,7.70432300851545,6.19808944495487,15.9367576971311,28.0421635293862,36.4066410710035 -"Tfru26627_t",14.2439739162662,13.4167008251786,11.7655662646,15.3350900871679,16.3543248466808,18.6096634422424 -"Tfru26628_t",0.176307191545535,0.141518373592832,0.151827315776357,0,0,0 -"Tfru26629_t",0.157470246994278,0,0.135605840613747,0,0,0.0576054918710194 -"Tfru26630_t",0.189639676684983,0.304440203236951,0,0.980799591730075,0.656558413709427,0.832483880266967 -"Tfru26631_t",0.147472867357719,0.0403958735232974,0.0846643838120935,0.0508477728655849,0.0850951952233108,0.431586142724712 -"Tfru26632_t",0.104231236689141,0.2509931948523,0,0.107814942713753,0.1804313754797,0.152518758874386 -"Tfru26633_t",1.40568543810493,1.65889455188586,1.54873949044457,3.20738842866454,3.65000596479751,4.12892749325815 -"Tfru26634_t",332.90091502309,134.867003053589,394.858840544225,268.005766156763,143.388975299715,86.1659672594853 -"Tfru26635_t",0,0,0,0,0,0 -"Tfru26636_t",0.0767919348916339,0,0.0661295392755337,0.238296646692737,0.199398110562118,0.561837841191752 -"Tfru26637_t",0.143118188707747,0.229756405509317,0.24649306973572,0.148038916230468,0.247747340096487,0.1047104937417 -"Tfru26638_t",0.542002430783529,0,0,0,0,0 -"Tfru26639_t",0,0,0,0,0,0 -"Tfru26640_t",0,0,0,0,0,0 -"Tfru26641_t",0,0,0,0,0,0 -"Tfru26642_t",0.506086607056912,0.406225933837257,0.522981079282655,1.15167142421703,1.22649857886321,3.92487731421448 -"Tfru26643_t",2.94633548866688,1.53403234161861,2.4000948425215,5.84816863671773,4.8935383380101,3.43738249265999 -"Tfru26644_t",7.56675448980704,8.48758896865048,9.85773035122078,5.11759934779621,5.45773658278376,4.75537991728326 -"Tfru26645_t",19.4317630482434,16.9050753574435,16.1324934498017,9.38796373757369,10.2725929646379,12.1738276387424 -"Tfru26646_t",14.0996436539492,12.4964187618888,14.0391162104636,12.7613686739369,19.4496821340958,22.3509308459555 -"Tfru26647_t",0.585995018697477,0.641409369216721,0.27525319962245,1.21228570970213,0.829961444343528,0.935422597230859 -"Tfru26648_t",212.760537970806,177.255840829064,186.462010737837,59.4473414015896,57.5812940066091,49.5918732430539 -"Tfru26649_t",30.1887997960322,30.0767576355829,35.748870135666,26.0803747822171,25.9051481146386,17.4991518259552 -"Tfru26650_t",10.7651487822709,7.79382218789269,8.5433383177623,15.5020550546161,13.8850556989755,13.4358296605399 -"Tfru26651_t",29.8193828813329,24.1655905350969,27.098779274491,12.9755099571457,15.2624622033332,16.7298243042786 -"Tfru26652_t",5.78209070896602,4.50466733919128,7.46888970513994,24.0036963797455,20.4599683405797,7.9630846738627 -"Tfru26653_t",37.7787936610821,32.9551831499843,36.4699656468276,22.7507239999564,23.217664869607,22.2763512512437 -"Tfru26654_t",0,0.244767713310289,0.393896820149368,0.157711150321751,0.263934099159053,0.669310996294494 -"Tfru26655_t",7.79954717468985,8.8072083657116,10.2456560772133,7.79423146837958,8.63870219674758,9.33340404916672 -"Tfru26656_t",11.1359908769844,11.4859266787172,10.732606214949,10.4445725753948,11.7111239647293,11.8413113195735 -"Tfru26657_t",22.3539061420209,25.076145268039,24.1415366259921,24.8282410935099,30.1322364677876,30.6319872853376 -"Tfru26658_t",0.389538068492028,0.41689956733839,0,0,0,0.190000184934707 -"Tfru26659_t",59.3331713955648,61.4803063397227,61.8944889416409,35.8475166350115,42.1343463866985,63.1422765471617 -"Tfru26660_t",0,0,0,0,0,0 -"Tfru26661_t",4.15892954314096,3.81519123151257,4.09310981428197,4.79357130023211,4.11393744375214,3.91220324213154 -"Tfru26662_t",0.980971237405972,1.38583569395017,1.4867872501481,0.162351880107024,0.645288669802925,0.861257260528412 -"Tfru26663_t",8.27764422289047,8.21252600880045,10.1390262891936,5.84998336658587,6.27457285733353,6.95901840139527 -"Tfru26664_t",31.3313035999709,8.7808483144746,61.2789250293056,2.08733000343667,2.02238252212771,3.2636314952059 -"Tfru26665_t",15.6943689714571,12.9039032248556,14.8992863796489,12.7746267230318,11.6035677314634,8.27740838006277 -"Tfru26666_t",0,0,0,0,0,0 -"Tfru26667_t",15.7008361519642,16.0160044362209,16.149854829849,41.1091869890269,30.3878752375065,18.62698438606 -"Tfru26668_t",3.19762679752914,2.84667391421181,4.50596154814467,5.65293516938737,2.26444497877118,1.48877307537939 -"Tfru26669_t",3.60624954702102,2.99659166792525,3.93658672132349,3.02096948009,2.70368889091694,2.04388046581062 -"Tfru26670_t",1.07784574303543,1.11235620445906,0.875149789928636,2.99431499991377,2.77208204146084,4.05561245188709 -"Tfru26671_t",0.107019588243882,0,0.0921601477292151,0.110699164111191,0.277887303127334,0.391497196346355 -"Tfru26672_t",0,0,0,0,0,0 -"Tfru26673_t",0,0,0,1.26201640413069,1.35772738353708,1.14768783908174 -"Tfru26674_t",5.72060831648326,6.84039415581205,6.1959826942976,17.8738934653523,18.7590998855614,13.8938218772156 -"Tfru26675_t",14.3939079753238,12.1802286695523,10.6754164837858,7.74122778731925,6.23914390379893,8.22165508539743 -"Tfru26676_t",0,0,0,0.36283442099075,0,0 -"Tfru26677_t",0,0,0,0.0979693842472206,0,0.0692954451255668 -"Tfru26678_t",0,0,0,0,0,0.134203187393838 -"Tfru26679_t",0,0.0842918812712307,0.271296434877877,0.434494219136423,0.545353832387393,0.0768313247829721 -"Tfru26680_t",20.6415789236216,19.5686713244435,17.6292391791219,16.4308228470194,20.8068937735938,20.6955155937146 -"Tfru26681_t",0,0,0,0,0,0 -"Tfru26682_t",14.0299872408421,12.6565408003624,13.4690056468129,8.72495959718953,8.18122466346375,10.4509208685617 -"Tfru26683_t",0,0,0,0,0,0 -"Tfru26684_t",0.407817362968192,0.65469422346587,0.351192795958417,0,0,0.895122230481229 -"Tfru26685_t",77.1549305957358,80.4399674089846,77.390595270801,67.5587666774781,77.3528581249774,57.1789206396718 -"Tfru26686_t",48.9614616215761,44.8303954531705,44.3520710946848,25.8759296109908,22.6941297553989,32.0538329508578 -"Tfru26687_t",7.08644987436415,7.00714905433214,6.19095368914471,24.1149603285985,25.9565312236542,34.2641409301079 -"Tfru26688_t",0.0870573852553859,0.139758559620693,0.0749696538522631,0.270151846095185,0.150702268017242,0.254777450057524 -"Tfru26689_t",49.3750517631467,44.5012444660822,46.489304845499,56.5940484709103,46.4633590048465,30.6215821517694 -"Tfru26690_t",5.05351075451985,5.36310072198061,5.08201638204824,3.29773569631197,2.55393801198779,4.16880502657709 -"Tfru26691_t",18.3666410755391,18.9742048529572,22.1137714799241,27.2658315652411,25.3173708962568,28.492912348665 -"Tfru26692_t",0,0.581323316829279,0.623669962787562,0.749127961086748,0,0 -"Tfru26693_t",4.24955213240785,2.62387179054415,1.40750420170105,1.3525111879733,2.54639921737304,4.06578216750358 -"Tfru26694_t",0.115398869191549,0,0.397503933886999,0.358099631156393,1.49822481425108,1.51974049021264 -"Tfru26695_t",29.0217665210455,30.1611676985058,26.3075330790669,56.5632474366689,56.5845915786192,64.1471715278924 -"Tfru26696_t",18.9782477646342,19.1433971320807,19.3394044943065,10.3388684674028,9.08923053978988,9.95104507731265 -"Tfru26697_t",0,0,0,0,0,0 -"Tfru26698_t",41.8042066231126,40.6536920198089,37.0048649705847,39.7348679400062,43.5172092430377,42.2973974470339 -"Tfru26699_t",0,0.0238449451969535,0,0.0614560423106681,0.128560545117254,0.173875699650291 -"Tfru26700_t",53.7015483478502,52.2487205942738,53.7775661065429,28.4051910815579,18.3105080123612,14.2872778288917 -"Tfru26701_t",8.84957792830543,8.59542031241025,9.53474082495281,7.02212879412401,5.6660138429859,7.00683943186701 -"Tfru26702_t",0,0,0,0,0,0 -"Tfru26703_t",0,0,0,0,0,0 -"Tfru26704_t",0,0,0,0,0,0 -"Tfru26705_t",75.5789555945662,111.088468481868,76.9245587501829,0.0785703832073098,0.394469318182563,4.05691624532149 -"Tfru26706_t",0,0,0,0,0,0 -"Tfru26707_t",0,0,0,0,0,0 -"Tfru26708_t",5.6973329351423,6.38615858106275,6.38686096020684,8.54342565717686,8.98710435394954,10.5812643120048 -"Tfru26709_t",0,0,0.0522729161614407,0,0.0453045758992642,0 -"Tfru26710_t",0,0,0,0,0,0 -"Tfru26711_t",0,0,0,0,0,0 -"Tfru26712_t",0,0.130432311444844,0.139933686590781,0,0,0 -"Tfru26713_t",16.2362660817439,20.8323126772822,7.94425870799055,6.23432408131325,13.5207294706098,13.3189295084977 -"Tfru26714_t",0,0,0,0,0,0 -"Tfru26715_t",26.3409159079306,27.5238795987692,27.5155320469832,20.4752377849075,23.3385808294419,23.1491783761682 -"Tfru26716_t",0.105540674335989,0.0423577292820255,0.18177315569707,0.655016410758427,1.27888670911616,0.617739294737464 -"Tfru26717_t",0,0,0,0,0,0 -"Tfru26718_t",22.80281655225,21.91588913052,26.3545108167081,42.0528333521324,35.577845255749,31.8301202672313 -"Tfru26719_t",1.50206758970279,1.12107144476166,1.65659889134965,2.39871338042693,2.25805225455257,2.41001646119737 -"Tfru26720_t",2.12898380394255,5.85906560083213,1.86248021798703,3.67030514958362,4.35815076565951,5.9338754458289 -"Tfru26721_t",11.5179307828789,11.9244474456447,10.7688642682358,8.6558445446316,10.1726139225404,13.1391454133611 -"Tfru26722_t",7.56946288169133,5.64798392274236,7.16112416936528,5.40360830905704,5.90569293955891,5.85010087179991 -"Tfru26723_t",19.3959979750491,16.6942474172785,21.9351405853972,20.6671798254043,16.3833696516936,17.3538346936783 -"Tfru26724_t",30.11581007281,26.9543865665352,28.9178857620973,9.21979273599319,8.53497009446607,12.2193492217402 -"Tfru26725_t",0.242921571387318,0.389976896483766,0.174327026427552,0.837579217612382,1.01624167962952,0.829408036211362 -"Tfru26726_t",0,0,0,0,0,0 -"Tfru26727_t",17.2821346501263,15.6060397325021,15.502653421593,12.1658381358198,11.4264612500216,12.9954697918627 -"Tfru26728_t",1.48760219818966,1.25691528456635,1.95528962074146,3.80637992533306,4.47261297764125,2.69231855716659 -"Tfru26729_t",33.5828282779263,33.8023280224732,30.2970637934685,14.9977700006481,14.8565088010779,19.734340274205 -"Tfru26730_t",50.3139069675152,46.6847342425278,46.507960264779,17.1887822955069,20.3758574738147,22.6272472987215 -"Tfru26731_t",2.68053413919049,2.78731674109363,3.30513423201475,4.28507714304232,5.00929311837586,3.38748698100414 -"Tfru26732_t",3.01014379311375,6.26011365792854,3.73361426572778,6.28667408843333,4.6931756892745,4.66238076634295 -"Tfru26733_t",3.56245194870765,3.02663846575335,1.94826883215711,3.68014619077899,2.74093734802378,2.1119218701758 -"Tfru26734_t",0.738871677696884,0.726279722832799,0.584324481640473,0.324948858962882,0.317811895034875,0.116317231177026 -"Tfru26735_t",0,0,0,0,0,0 -"Tfru26736_t",7.86440751715092,7.64939539289583,6.37407189140387,6.69925007479067,6.24634345465736,5.68619496191159 -"Tfru26737_t",3.9683293550332,3.59193544311576,3.6354631139414,7.86019692910112,9.35414278667823,8.27770654948202 -"Tfru26738_t",0,0,0,0,0,0 -"Tfru26739_t",4.20051883857237,3.37167525084923,3.40450428082042,1.53350900871679,1.49704973596539,3.61559175449281 -"Tfru26740_t",0,0,0,0,0,0.137300952702258 -"Tfru26741_t",3.12804594361773,3.2281997082599,1.15445291437395,6.47119049777652,2.70743037355443,3.92330169104539 -"Tfru26742_t",3.36658559240262,2.10929446972558,1.9200758740172,2.48162903492696,2.55015378177991,4.42781473630778 -"Tfru26743_t",0,0.155376739670471,0,0,0,0.14162456181193 -"Tfru26744_t",0.807791989782145,0,0,0,0.699171498140063,1.1820202429113 -"Tfru26745_t",1.22600271869381,1.31211823521582,0.754124905845385,0.845436979556626,0.707431424917628,1.36683941240034 -"Tfru26746_t",4.29863996828318,4.27553925024263,3.62130947556677,2.02989512833479,1.69854363813649,3.07667151522469 -"Tfru26747_t",5.68491271385735,4.30966009507044,4.07964563726131,2.28681167966539,2.46024285287546,1.84857322786098 -"Tfru26748_t",7.50675472316741,6.81146515323077,7.42007343255732,4.32131002715324,4.18090480151951,4.58480632737549 -"Tfru26749_t",34.9776173587934,40.0558694651298,36.7445271289637,9.85011417769766,13.512490960516,14.034801126568 -"Tfru26750_t",0,0,0,0,0,0 -"Tfru26751_t",0.183428770243335,0,0,0.189735466871801,0.158763852223404,0 -"Tfru26752_t",0,0,0,0,0,0 -"Tfru26753_t",0,0,0,0,0,0 -"Tfru26754_t",0,0,0,0,0,0 -"Tfru26755_t",6.18329564068553,5.88967806330876,6.03472606205288,5.11671308109625,4.06740836716799,4.52392491361956 -"Tfru26756_t",0,0,0,0,0,0 -"Tfru26757_t",2.29216129516005,1.32642046670465,2.86904013195724,2.50881814349077,2.39918775669581,3.35405783316528 -"Tfru26758_t",5.64775641262245,1.13333621696933,5.4715247283258,4.38145430364704,7.94352919860414,5.68164417659016 -"Tfru26759_t",123.404230177597,129.836446604638,129.01438513553,221.800423765201,148.914853461851,80.3521918867034 -"Tfru26760_t",0,0,0,0,0,0 -"Tfru26761_t",10.8719311115991,9.52002423769195,13.1924540881791,6.64520570443942,3.84955646391101,5.06182845628993 -"Tfru26762_t",0,0,0,0,0,0 -"Tfru26763_t",9.87435398619625,2.64198433835201,6.88364088496106,0,0,0 -"Tfru26764_t",92.4975158596317,112.948652619957,96.9199562374847,116.798153196848,66.6454854220611,37.9769476526082 -"Tfru26765_t",0,0,0,0,0,0 -"Tfru26766_t",0,0,0,0,0,0 -"Tfru26767_t",7.6432841320139,3.29844966821486,5.27977931047796,1.12215294318153,0.569077239822493,0.625353768532898 -"Tfru26768_t",0,0,0,0,0,0 -"Tfru26769_t",25.4498204748125,27.5153714443337,28.7370154615618,12.490869360027,11.9129327631249,12.2550119282886 -"Tfru26770_t",3.31666334166991,3.1153656244722,3.91961249886559,4.19713021425356,3.87847888636141,4.23362864826793 -"Tfru26771_t",230.893035513783,189.248868918633,247.842420507788,290.410329693763,207.35173670127,145.533399717939 -"Tfru26772_t",0,0,0,0,0,0.0525791786367645 -"Tfru26773_t",8.30987449700878,8.92171164039404,9.87355973345195,7.14485485558225,6.64621531957924,7.84987825829365 -"Tfru26774_t",9.7397117094579,10.1942377349476,9.82837612223566,8.03303918934552,9.20992512305573,9.00943420335567 -"Tfru26775_t",1.18124826731507,0.796458720673046,0.691719444008086,1.41736021990509,2.65826764943236,2.24703537048062 -"Tfru26776_t",12.0945973455446,14.7656123054432,14.0325742178212,10.6376170892021,9.90412707094346,8.90183625071677 -"Tfru26777_t",1.12972389301457,1.07168162007433,1.68040171562499,5.09919865979176,4.71128820155368,6.5372374142969 -"Tfru26778_t",1.95226512737247,2.78024196097013,1.84389381026443,2.34509623521908,1.96229265026948,1.70480300867764 -"Tfru26779_t",4.15630285079793,4.96878458019886,3.65536249098613,2.83564648278508,4.28628977034302,4.72310459718481 -"Tfru26780_t",4.98328074565195,5.16892793060851,5.44748348833874,4.66033886180996,4.31319932440733,5.01110048963697 -"Tfru26781_t",0.303013081231551,1.15530802103039,0.717586001480408,106.174872304753,80.6474558264495,59.5252247552116 -"Tfru26782_t",0,0,0.106390758775638,0.255584834786131,0.106932123997528,0.271169381586961 -"Tfru26783_t",12.6903892403999,12.3254593762162,18.1410707712901,33.7356538725259,37.7848375309694,25.8116112261828 -"Tfru26784_t",0.261918555795627,0.367914680529144,0.112775862770747,0.67730977262108,0.510073732552511,0.670702133725088 -"Tfru26785_t",17.7856771994083,21.4684053662734,11.7191937653742,12.7525969690402,14.5777554768082,21.0962675266156 -"Tfru26786_t",18.1309258179665,21.2424580147337,16.6802455045558,17.9389034174287,21.0538744943122,23.3171741700602 -"Tfru26787_t",0.189639676684983,0,0.163308613921973,0.196159918346015,0.164139603427357,0.138747313377828 -"Tfru26788_t",31.7182034749342,29.3129317726892,28.4953534320709,23.3208121699754,20.7011862906235,19.0039929871351 -"Tfru26789_t",0.147645653376885,0.237024622203812,0.254290741537553,1.37449840851593,1.78909283032771,1.62034428364792 -"Tfru26790_t",1.06342249077781,0.426794335550535,0.457884278274898,1.09998536490234,2.76128522727794,3.50117429390759 -"Tfru26791_t",0,0,0,0,0,0.180249442306093 -"Tfru26792_t",0.322767825640537,0,0,0,0,0 -"Tfru26793_t",0,0,0,0,0,0 -"Tfru26794_t",8.39457587065763,6.99249960537931,7.35481206597437,2.29161028543807,2.3565003084795,2.43023057379922 -"Tfru26795_t",0.388337643011313,0,0.278681494481641,1.33896523616771,1.00835839578563,1.13648800911638 -"Tfru26796_t",0,0,0,0,0,0 -"Tfru26797_t",0.189425877725924,0.228072733992056,0.163124500490268,0.195938768494441,0.163954553141644,0.277181780502267 -"Tfru26798_t",0.287051401269183,0.153607072931628,0.247194929273692,0.0989736262269757,0.414087951698856,0.910074917702631 -"Tfru26799_t",0.247089343445434,0.0991669191426244,0.319172276326914,0.383377252179197,0.641592743985168,0.271169381586961 -"Tfru26800_t",3.88992771124075,4.23577292820255,4.49239370508473,3.15031702317148,4.17595660119564,4.47860988684662 -"Tfru26801_t",22.8579470367542,26.2109030101354,24.0300257983703,34.6981249204352,42.7804066395764,41.4834856072019 -"Tfru26802_t",24.7271921778029,26.9900112444827,29.8470626220325,24.7212228129344,25.4319356975402,17.410053891708 -"Tfru26803_t",0.143118188707747,0.37335415895264,0.30811633716965,0.222058374345702,0.185810505072365,0.366486728095949 -"Tfru26804_t",0,0,0,0,0,0.0132639317709058 -"Tfru26805_t",0.971218228571647,1.16936713902286,0.836366658583051,1.00461091129809,0,0.355289363158253 -"Tfru26806_t",1.57028733501458,2.52087856174933,0,0.812138685323525,0,0.574439781729902 -"Tfru26807_t",0,0,0,0,0,0 -"Tfru26808_t",13.4602261125524,6.89237482217798,11.1916024701003,17.0436958887768,12.2528853685565,10.8667509085309 -"Tfru26809_t",61.0017810618911,55.2504667112693,52.864821219011,27.1996381139487,29.8720856405522,33.0312807122191 -"Tfru26810_t",0,0,0,0,0,0.165451035871811 -"Tfru26811_t",14.8035906205194,13.3678754438956,14.9790689447991,16.0782001794976,8.96910855027724,17.6001272630597 -"Tfru26812_t",7.30525015403891,5.57059389270742,5.34729204976686,6.04513696189806,7.27138443183191,4.54306963934096 -"Tfru26813_t",0.829574552243689,0.384163530290455,0.659436833732781,3.43238881809252,4.83286090228098,4.64547926526744 -"Tfru26814_t",0,0.676590351340983,0.241958916279043,0.290631584706638,0.972760459107947,0.616706285883388 -"Tfru26815_t",0,0,0,0,0,0 -"Tfru26816_t",7.6373069792225,6.49092561660814,5.22281906716769,7.89989489338951,5.63823926532421,9.53201462548104 -"Tfru26817_t",9.37943117129311,8.82743746084511,8.708482210946,12.944606588777,14.0263539596878,12.9108070294347 -"Tfru26818_t",6.61118128143828,4.40065099918901,4.99893622807605,4.5033949776136,5.44307087987417,3.77520521006543 -"Tfru26819_t",0.512258394947851,0,0,0,0.443377099501946,0 -"Tfru26820_t",6.20531192061828,4.9808838933,4.93266245232504,5.43117773920529,4.95776211261267,4.19079953361666 -"Tfru26821_t",63.6864690284859,65.4311127282706,89.0894842917745,753.773903823161,782.261252675156,615.777905037885 -"Tfru26822_t",30.3855348001216,31.300347606678,30.9637726076291,23.4562853733394,21.137179125352,20.9549333232594 -"Tfru26823_t",0.127772436154293,0.128200579880199,0.0550157535874022,0.198248312913957,0.082943548652075,0.233707451811322 -"Tfru26824_t",1.34563399269883,1.10466244112279,1.31681317741962,1.55007038497887,1.24410290606516,0.917388952632503 -"Tfru26825_t",2.65855622694454,1.70717734220214,1.83153711309959,0.549992682451168,1.38064261363897,0 -"Tfru26826_t",27.3981209959514,26.871998239851,27.5376080515138,17.3961031345974,22.005505517386,20.5076092465828 -"Tfru26827_t",0,0.602982161105674,0.862542068166127,0.388519420986369,1.19203023472654,1.55723698516903 -"Tfru26828_t",1.0583984475143,0.637166976538437,1.02537235229434,0,0.229019982104942,0.871158328247873 -"Tfru26829_t",0,0,0.522289758847494,0,0,0 -"Tfru26830_t",31.2275413657025,28.7257858542747,33.7930646953145,9.5760239085988,11.1223478973745,9.09844635587828 -"Tfru26831_t",0.83233530486903,0.311779745785266,1.05125875249904,1.09054031223145,0.624359297317138,0.771358082365374 -"Tfru26832_t",0,0,0,0,0,0 -"Tfru26833_t",0,0,0,0,0,0 -"Tfru26834_t",10.5012970964309,11.2019473794662,10.2331111401305,8.57554379874519,8.01287429165687,8.69407096228369 -"Tfru26835_t",0,0,0,0,0,0 -"Tfru26836_t",0,0,0,0,0,0.897300143446778 -"Tfru26837_t",0,0,0,0,0,0 -"Tfru26838_t",19.859863927209,29.8579872120232,21.5815550446942,76.3014238483475,26.056931078422,7.14978181845294 -"Tfru26839_t",0.943313345518234,0.489939600519703,1.099043241249,2.0088900488474,2.01716080671691,1.98929189662649 -"Tfru26840_t",93.4279101105955,110.689338751189,85.3473481964567,188.409681856844,124.790930329215,57.0356382552597 -"Tfru26841_t",0,0.196027630863327,0,0,0.211377454413718,0.357354998990568 -"Tfru26842_t",15.1597672369529,15.1091612744823,13.9251904418519,10.7153461561464,13.9960482296915,12.4778692880616 -"Tfru26843_t",0,0,0,0,0,0 -"Tfru26844_t",8.45584407392015,12.7576901383484,8.89993896337491,5.75006329146059,6.16678456008111,7.56140530948915 -"Tfru26845_t",71.9174893306222,74.675031450644,73.447707071279,38.6511232255402,41.091905928555,49.6214496694291 -"Tfru26846_t",0,0.140194397124708,0,1.17430870036871,1.20937786808015,1.21396687806775 -"Tfru26847_t",19.4550346207562,20.5303626610415,17.3395400213445,24.6272027040888,26.9070662781148,31.4541844617577 -"Tfru26848_t",0,0,0,0,0,0 -"Tfru26849_t",60.7513055165426,63.2537423093203,73.5415129255733,44.1675941766777,62.4978496620263,69.8466588936111 -"Tfru26850_t",0,0,0,0,0.078779896336207,0.133185395073408 -"Tfru26851_t",0,0,0,0,0,0 -"Tfru26852_t",0,0,0.234507993411455,15.7741823479026,44.0761390195321,64.3540172574392 -"Tfru26853_t",0,0,0,0,0,0 -"Tfru26854_t",1.46228056143451,1.32519521369706,1.99042115800352,10.3927309012979,8.32881765353009,7.24742423556391 -"Tfru26855_t",267.044391562472,252.811543523752,295.709675532287,170.163135251147,218.418011450464,218.282759991775 -"Tfru26856_t",0,0,0,0,0,0.17314101359543 -"Tfru26857_t",0,0.042517972898477,0,0,0,0 -"Tfru26858_t",0,0,0.0914610821332919,0.219718947730176,0.275779434835597,0.310822047162466 -"Tfru26859_t",14.960752027792,16.0731916067881,13.2798985474468,16.1893736445352,16.1364969583119,20.3760883260047 -"Tfru26860_t",1.13584385219283,1.18185912648696,1.19549755980236,0.913808573046058,0.983111565645776,1.10803312656465 -"Tfru26861_t",3.85993623003948,4.55631790655301,3.03069891214926,2.93577175092178,4.42178783016805,1.66121783314534 -"Tfru26862_t",3.39970049884455,2.12245744208135,3.25295485465081,4.45434721057125,9.08923053978988,12.6025482377825 -"Tfru26863_t",0.856947212934216,1.6840586901885,1.60315867251085,0.794713309711361,0.792869916942628,0.951270711347386 -"Tfru26864_t",62.6345539257237,51.6917578845867,61.9438278881098,28.0069779378728,26.0573993700097,22.5901471898238 -"Tfru26865_t",1.81644057884211,1.09351629757272,1.17317377244487,1.87889392058994,0.786095614252098,1.66121783314534 -"Tfru26866_t",0,0,0,0.14829154236738,0.186127587845527,0.104889180591088 -"Tfru26867_t",13.4154256732262,17.6121574494325,13.4011581742372,19.612372134192,22.0360621177589,23.4256473575336 -"Tfru26868_t",8.23671846135874,7.9273030547209,7.95220917258526,7.65269180183623,6.15117567688942,8.01718375932598 -"Tfru26869_t",13.1294692217904,13.948778582203,12.4557450104961,13.3589075451068,15.2262389970662,13.744029448096 -"Tfru26870_t",8.4991042648157,8.65877690879569,9.85252941190735,10.8200895037864,11.3173298549913,10.7623645610389 -"Tfru26871_t",3.32639728201481,3.42903155809274,4.11401735191434,3.24430788385564,2.05323459891867,4.1036675772694 -"Tfru26872_t",0,0,0,0,0,0 -"Tfru26873_t",0,0,0,0,0,0 -"Tfru26874_t",1.73955713168649,2.3819386668606,4.31783201267267,0.952606083368528,0.619971876039261,2.17111660775268 -"Tfru26875_t",10.5169473156506,12.4616313295173,11.3208646446804,9.06545315634862,6.93544863840897,9.80143278900509 -"Tfru26876_t",0,0,0,0,0,0 -"Tfru26877_t",18.9535606130705,19.7366356147272,21.3634126419513,17.2586553942691,16.9750089523602,17.5614456646793 -"Tfru26878_t",1.63656578126195,6.56819854061533,2.34888688205952,1.12855641334135,2.83300692149293,1.99561882553173 -"Tfru26879_t",6.65428726902554,7.34424312066169,5.37220663124509,4.73211525792144,2.15981715796987,3.95567216704411 -"Tfru26880_t",3.34975675391363,3.54430746804269,2.3601683505461,2.59869673430031,1.91092114656208,1.89380338386664 -"Tfru26881_t",9.15902603899239,10.6473955289976,10.6070786568794,7.51380980461484,7.38072855862637,6.23893464403082 -"Tfru26882_t",7.33024673283801,6.57606464665205,7.92151552081398,7.13626091310464,6.5311836214059,4.57438854139851 -"Tfru26883_t",0,0,0,0,0,0 -"Tfru26884_t",0,0,0,0,0,0 -"Tfru26885_t",0,0,0,0,0,0 -"Tfru26886_t",0,0,0,0,0,0 -"Tfru26887_t",2.7870741109011,5.43303120989923,2.4000948425215,8.03093580394337,6.37538445444978,5.0978130187754 -"Tfru26888_t",0,0.418841646068227,0,0,0.903277569171665,0 -"Tfru26889_t",19.1074280914046,17.254308453048,20.2997249995148,14.6084582948216,15.7291999452482,15.1953176332207 -"Tfru26890_t",10.0551279969971,9.36382349458646,7.38451090444792,5.42554957574497,5.48179499912716,7.48408759543977 -"Tfru26891_t",0,0,0,0,0,0 -"Tfru26892_t",0,0,0,0,0,0 -"Tfru26893_t",0,0,0,0,0.248170117127369,0 -"Tfru26894_t",0,0,0,0,0,0 -"Tfru26895_t",0,0,0,0,0,0 -"Tfru26896_t",6.59498096369303,6.94489824805819,5.913747758231,6.44622320072763,5.7867337394125,6.46301673363424 -"Tfru26897_t",1.18116522701508,1.18512311101906,1.39859907845654,0.763610226953292,0.255584690046816,1.29627542691833 -"Tfru26898_t",0.0528648613180534,0,0,0.0543797520821556,0,0 -"Tfru26899_t",17.3172333250578,18.0034735092515,14.4691431934868,11.7231459125488,8.91773562394479,9.50968850143957 -"Tfru26900_t",0.158013247845983,0.126834178715332,0.136073446960691,0,0.0455886171274728,0 -"Tfru26901_t",0.287706769765231,0.0461873322034141,0.346863021761669,0.357118536276512,0.298824017746517,0.252596136272785 -"Tfru26902_t",2.97660776389038,3.42929871282706,3.43785394759794,2.28204550275904,1.81860385956613,2.40838500361797 -"Tfru26903_t",1.67088168416847,1.37237475520228,1.10425930940117,1.08523070459606,1.14351096522796,1.19404834075294 -"Tfru26904_t",0,0,0,0,0,0 -"Tfru26905_t",11.6374333849224,12.8185024703671,17.2634873289327,13.0919390599246,20.1451904380378,17.9609729927433 -"Tfru26906_t",260.395482237438,291.08305549908,235.17096491772,288.815327672255,255.863824243238,194.514099808628 -"Tfru26907_t",0.757988361847646,5.6786109487987,0.326371650980905,7.5791472811767,8.52884188996825,11.183868028559 -"Tfru26908_t",1.75631449696406,1.52723966066341,1.32339724330672,1.36252542586335,1.01343337029016,1.23144283624276 -"Tfru26909_t",95.2006257648609,98.267910889562,86.0094197783807,69.4499706134561,70.689999744847,72.8293750626662 -"Tfru26910_t",29.8393703387382,29.211858604868,30.0790072196551,22.0672582665138,23.2322241183011,26.9324079571182 -"Tfru26911_t",0,0,0,0,0,0 -"Tfru26912_t",0,0,0,0,0.0578931881515279,0 -"Tfru26913_t",0,0,0,0,0,0 -"Tfru26914_t",95.1498742439046,84.5713018721298,94.4891008547037,61.741388487231,86.2924517103587,100.857031869802 -"Tfru26915_t",7.27076431538884,4.7219370153514,5.0089874155265,5.46963611816111,4.40516602085804,6.1900296284629 -"Tfru26916_t",30.6600370583296,22.5029218750875,35.6076570777214,67.9867070568376,46.9069218928442,31.5557226787207 -"Tfru26917_t",17.1246014808344,19.8478872170649,20.0372504004867,25.1005801183016,21.7343940512709,17.8102595657786 -"Tfru26918_t",29.7267487037429,30.8267451506215,31.4823115638504,47.1736580776688,45.7058450000863,35.3930674165076 -"Tfru26919_t",7.36113176161501,6.56515347870504,7.24463358783761,7.61422414620157,7.18036571154472,8.63417391163303 -"Tfru26920_t",4.23485550482773,1.65368268434022,2.16840020610837,1.89425272648032,1.48597774492478,2.00975672456821 -"Tfru26921_t",5.77170527417523,5.66235538291032,3.31354424266897,3.31674976428581,5.55067513861158,5.16118822951787 -"Tfru26922_t",3.98783434041681,3.30765610051665,3.20518994792429,3.02495975348143,4.48708849432665,3.30666461091273 -"Tfru26923_t",25.1176535592651,32.0913097736733,22.0140878308689,58.9190303349081,71.4596028639119,62.5524558427665 -"Tfru26924_t",116.150240263035,136.261499059431,121.609194639497,156.340903665632,150.797987330753,112.398440273347 -"Tfru26925_t",38.0228003491544,26.0224578674405,37.7755620296844,12.5442351975547,5.99308959841315,5.53449085621028 -"Tfru26926_t",2.65519522033652,2.55752863528387,2.65237138186547,1.53803263411123,1.10311773934239,2.25345984192788 -"Tfru26927_t",0,0,0,0,0,0 -"Tfru26928_t",1.20878239958651,0.97026625923505,1.04094555348596,1.87551461497323,0.523121182145027,2.21097337504468 -"Tfru26929_t",17.1848105559817,14.1318507097098,13.2496482090699,8.27419515257517,6.2610098296867,10.1648367731094 -"Tfru26930_t",0.0552699847180575,0,0,0,0,0.040437539359459 -"Tfru26931_t",0,0,0,0,0,0 -"Tfru26932_t",0,0.729303958014379,0,0.109224942114199,1.3382916132206,0 -"Tfru26933_t",60.7133814356913,67.4335049096754,57.1470360514028,41.6238158846469,32.9961982095864,32.02381263169 -"Tfru26934_t",8.6384296366245,8.25716387963077,8.57472771670527,10.7770936614686,7.81930664961516,7.47808812644313 -"Tfru26935_t",2739.77453409262,3737.06384631571,2715.67332933262,509.908634264067,482.089584577402,404.802927050373 -"Tfru26936_t",0,0.245212745516308,0,0,0,0 -"Tfru26937_t",25.5878933830592,23.9363204831281,22.3111979014071,22.6865683884972,21.7586465441077,28.0111761193492 -"Tfru26938_t",0.439844904562552,0,0.7575467640569,0,0.761401511186587,1.28722638379849 -"Tfru26939_t",46.064692858403,40.1994241505117,51.9593850183198,50.7425598747318,58.0675155543036,43.2068731841577 -"Tfru26940_t",0,0,0,0,0,0 -"Tfru26941_t",9.00532242626399,8.67802203094081,8.37205306116442,9.26886302670145,7.50062432326694,8.01819537293274 -"Tfru26942_t",3.70394140178177,4.09759148520615,3.99409817187067,3.33069257992807,2.41412651394915,3.11563158903475 -"Tfru26943_t",0.259358265588132,0.350372145702343,0.398965345408643,0.513506874184305,0.413986139730498,0.184379268749522 -"Tfru26944_t",0,0,0,0,0,0 -"Tfru26945_t",0,0,0,0,0,0 -"Tfru26946_t",0,0,0,1.14844286996411,0,0 -"Tfru26947_t",0,0,0,0,0,0 -"Tfru26948_t",0.416686340339114,0.360194227484847,0.57964900240981,1.35934856807275,1.49811048958002,1.31325576126561 -"Tfru26949_t",0,0,0.18177315569707,0,0,0 -"Tfru26950_t",0,0,0,0,0,0 -"Tfru26951_t",0,0,0,0,0,0 -"Tfru26952_t",0,0,0,0,0,0 -"Tfru26953_t",1.13187633374705,1.00948360803869,1.29962364013354,4.29290695553951,5.00724077641119,9.84545119973415 -"Tfru26954_t",2.4002964791805,2.40833946488858,1.0335102281046,2.48282410934715,0,2.19518070808152 -"Tfru26955_t",0,0,0,0,0,0 -"Tfru26956_t",4.5005558984704,3.01042433111538,5.16755114053099,9.62094342373508,10.7772304971794,11.6344577528501 -"Tfru26957_t",2.64967793156699,5.75499300701538,8.32177066786809,14.8324557182007,14.8395600649631,8.32458138650385 -"Tfru26958_t",0,0.0426794335550535,0,0.219997072980467,0.184085681818529,0.739136795380491 -"Tfru26959_t",0,0,0,0,0,0 -"Tfru26960_t",0,0,0,0.361325753959603,0.151172233510019,0.511143948660106 -"Tfru26961_t",0.22382871253494,0.29943829936494,0.160625479501407,0.270111859143425,0.58119413753541,1.96513512766394 -"Tfru26962_t",19.819349449602,24.2190757455367,25.7285820870099,17.1349832898871,22.0189810259699,21.6426266994288 -"Tfru26963_t",55.7655085000061,56.3883617324401,62.9906662415437,50.1915733928121,56.4159134737217,51.9273779252802 -"Tfru26964_t",79.0045771192627,74.2467347984934,82.0917709682281,58.3077734488775,66.1206200925647,53.821736324652 -"Tfru26965_t",0.101954340742048,0,0,0.105459761926316,0,0.149187038413538 -"Tfru26966_t",0,0,0,0,0,0 -"Tfru26967_t",0,0,0,0.149567717430782,0.125152916210532,0 -"Tfru26968_t",0.0962869647810286,0.11593152724983,0.0414588630185868,4.73088261523899,6.87552109600152,2.32475297910655 -"Tfru26969_t",5.12953453828376,4.30037277584569,5.49709646428263,4.95217291824417,8.38626427009107,9.17388952632503 -"Tfru26970_t",0.108680953132532,0,0,0.899341203904627,1.03473775873417,1.66981404444234 -"Tfru26971_t",3.50427477202525,4.29324181227783,2.46181909439127,3.05242920139748,3.83124536474129,2.15903613001546 -"Tfru26972_t",5.25064854772777,3.16094554737756,2.26080362377232,1.35779443467521,3.40846145210462,1.9207831193959 -"Tfru26973_t",0.16421105702003,0.0527236161196126,0.0848464221666543,0.0339714010270855,0.0568521065819539,0 -"Tfru26974_t",0,0.149024320479524,0.159880035287147,0.384083287634407,0.64277431441608,0.33958596589159 -"Tfru26975_t",0,0,0,0.0400824925402604,0,0.0283510423553403 -"Tfru26976_t",0,0,0,0,0,0 -"Tfru26977_t",0.034458727141693,0,0,0,0,0 -"Tfru26978_t",0,0,0,0,0,0 -"Tfru26979_t",0,0.0703164807267827,0,0.634298130126165,0.0758225696749938,0.256371469557363 -"Tfru26980_t",0,0,0,0.540583787417012,0.735054413793272,1.38607055596031 -"Tfru26981_t",24.858605187799,13.5553816035214,23.85023603322,10.1781813863638,9.94427252905881,13.9041839971758 -"Tfru26982_t",4.49616143358027,4.92165024565844,4.4554499946416,5.01140401191123,6.98099556403107,6.2561504238734 -"Tfru26983_t",0,0,0,0,0,0 -"Tfru26984_t",0,0,0,0,0,0 -"Tfru26985_t",2.38197360529731,4.92698455413082,2.20902949518882,1.89528557965724,3.56829116065906,16.6900762233021 -"Tfru26986_t",1.870094003474,3.46404991525606,4.2119081213917,2.52958963195863,3.23726019225393,3.36794848363713 -"Tfru26987_t",0,0.232529327644774,1.247339930473,0.599302371222653,0,0.211948482159923 -"Tfru26988_t",1.23940902228563,1.03810398999848,1.67058741169187,1.72794365532125,1.11939208700427,3.54833571800769 -"Tfru26989_t",5.69142464136463,4.25059501432539,5.22082486362925,1.63815198967488,2.16321009606781,2.96915163815197 -"Tfru26990_t",16.2378265550783,12.8845033866389,16.8553903130863,13.4239258748119,10.9638132185701,8.41829848588529 -"Tfru26991_t",0,0,0,0,0,0 -"Tfru26992_t",0,0.603882134480459,0.215957361096818,5.44739021006859,3.4729000271436,5.50433371579502 -"Tfru26993_t",5.21867139505946,6.48872947179267,6.43268850867561,5.18641089833976,3.98553348882382,3.06950968682276 -"Tfru26994_t",1.85751586831341,1.35544733702482,1.67231303241304,2.79473668590262,3.06932810187879,3.4593400505298 -"Tfru26995_t",3.75046324872533,2.40833946489231,3.55269140911506,4.65529520503311,3.24615376421067,5.21355418170168 -"Tfru26996_t",0.268403759653187,0.754048778145195,0.462272945478811,4.02566528912341,2.4392823173877,2.16011392361072 -"Tfru26997_t",0.773101626731111,0.827404969533553,0.721237965933007,2.39904783572258,2.23048602203433,2.54533223207392 -"Tfru26998_t",26.0226095760958,20.176197023051,20.5729260751659,31.378761062562,39.0116204115112,42.4610310608918 -"Tfru26999_t",0,0,0,0,0,0 -"Tfru27000_t",8.81642702747783,7.58711988838928,7.11776721173038,4.69130993416723,3.63202350530453,5.79917567483987 -"Tfru27001_t",4.47512902898751,8.49041709656949,4.72962307777413,13.4661646608867,9.85950431434835,6.54833567157535 -"Tfru27002_t",0,0,0,0,0,0 -"Tfru27003_t",19.1217648621578,20.5068308167323,19.4361624987136,24.4808310035821,22.383925956199,26.7189532454217 -"Tfru27004_t",0,0,0,0,0,0 -"Tfru27005_t",0,0,0,0,0,0 -"Tfru27006_t",0,0,0,0.0663096862474511,0,0.0469019914737716 -"Tfru27007_t",1.18485972698584,0.582910188954826,0.954515815766871,11.583876815921,11.6448012739073,6.68341642334134 -"Tfru27008_t",0,0,0,0,0,0 -"Tfru27009_t",0.0668872426524263,0.0536890963511024,0.0576000923307595,0.691869775694941,0.173679564454584,0.0978742990865887 -"Tfru27010_t",0.453409897764173,0.805874578074989,0.278896360707147,3.71849331720455,4.7933952885245,7.22700202276222 -"Tfru27011_t",0,0,0,0.136205084368785,0,0.192680438327203 -"Tfru27012_t",0,0,0,0.036359348881709,0.0304242026436481,0.231458384283431 -"Tfru27013_t",0,0,0,0,0,0 -"Tfru27014_t",0,0,0,0,0,0 -"Tfru27015_t",0,0,0,0,0,0 -"Tfru27016_t",0,0,0,0,0,0 -"Tfru27017_t",0.624148415835419,0.701388610875025,0.859978793074994,2.51787140361375,1.94479821356574,2.92255856529582 -"Tfru27018_t",0.0943936817656713,0.454607898990907,0.487723927870341,0,0,0 -"Tfru27019_t",0.0647229405018855,0,0.167208896688984,0.535586094467086,0.0560199108769792,0.426183003418644 -"Tfru27020_t",0.415207792939608,0.666558533940539,0.357557080563924,0.930547751033526,0.598960826345297,2.07129587680762 -"Tfru27021_t",0,0,0,0,0,0 -"Tfru27022_t",0.152885126062689,0.184076901775208,0.164571692373598,0.11860624726199,0.198490930805239,0.195748598173177 -"Tfru27023_t",0,0,0,0,0,0.0614036561702075 -"Tfru27024_t",0.851532226544412,0.827404969533553,0.636812117077972,1.80797807909528,1.3382916132206,2.18054226644658 -"Tfru27025_t",30.3989643920635,37.4951054414371,30.2626647631096,3.79113861008684,5.53595564100119,13.9860615173794 -"Tfru27026_t",28.0582334155983,27.3361250166651,26.4619049113157,21.2891544046306,25.2098364898231,32.9717215792354 -"Tfru27027_t",38.3689183463626,32.0057531274643,32.6095615256195,19.714364569772,26.046750203577,29.7234020652931 -"Tfru27028_t",0.267548970609705,0,0,4.15121865416965,6.94718257818335,4.3064691598099 -"Tfru27029_t",24.851944253933,21.0323150696061,32.101957567543,37.7213630761525,39.5133108996653,24.3093323429082 -"Tfru27030_t",0.151688913821452,0.263808475841348,0.152398438691555,0.470712966864617,0.328229811849168,0.295949731333748 -"Tfru27031_t",0,0,0,0,0,0 -"Tfru27032_t",0,0,0,0,0,0 -"Tfru27033_t",0,0,0,0,0,0 -"Tfru27034_t",0,0,0,0,0,0 -"Tfru27035_t",0,0,0,0,0,0 -"Tfru27036_t",25.5361938203959,23.7651119002589,20.3970300524924,14.1641287295574,15.3756146576181,18.953983206372 -"Tfru27037_t",8.07265835425961,10.9826555402255,9.07267122067168,11.3223249286364,12.3163514806273,10.7113377873329 -"Tfru27038_t",3.24503601263102,5.49886950782278,5.89943606601393,5.9673025804144,4.68114877585745,7.91395620082117 -"Tfru27039_t",5.72798023441687,5.0157152491972,4.63371321279019,4.66811970973017,6.30987905241612,4.95276308518333 -"Tfru27040_t",0,0,0,0,0,0 -"Tfru27041_t",0,0,0.0402815790464554,0.0483846569194235,0.0404865502885964,0.0342233072529943 -"Tfru27042_t",0,0,0,0,0,0 -"Tfru27043_t",0,0,0,0,0,0 -"Tfru27044_t",0,0,0,0,0,0 -"Tfru27045_t",0,0,0,0,0,0 -"Tfru27046_t",0,0,0,0,0.168709615587747,0 -"Tfru27047_t",0,0,0,0,0,0 -"Tfru27048_t",3.28165534232986,1.58047277368878,4.52160724754464,4.75228052136322,3.40846145210462,2.88117467909384 -"Tfru27049_t",0,0,0,0,0,0 -"Tfru27050_t",0,0,0,0,0,0 -"Tfru27051_t",0,0,0,0,0,0 -"Tfru27052_t",3.67003234505926,4.44557658173925,7.75748344368831,2.07066347483601,5.08246092137576,3.95446373783685 -"Tfru27053_t",3.55529807653461,1.79681753180053,1.47412900874082,1.49825592805663,1.36765851382418,0.867061972472413 -"Tfru27054_t",0,0,0,0,0,0 -"Tfru27055_t",5.8296173995396,8.33303769221292,4.81387843889769,16.4380892791156,13.9621640230993,10.6336890574152 -"Tfru27056_t",8.72415451088108,7.89194316957017,7.75132671079649,5.29987454111461,4.59455609703664,6.01141793906331 -"Tfru27057_t",0,0,0,0,0,0 -"Tfru27058_t",0.0870573852553859,0.0698792798103467,0,0,0.376755670043104,0.127388725028762 -"Tfru27059_t",0,0.0764985876539814,0,0.0985806509668572,0.0412443813490182,0.244047316383803 -"Tfru27060_t",0,0.042517972898477,0.0456152055280163,0,0,0 -"Tfru27061_t",0,0,0,0.223581930944986,0.124723575160067,0.0527144595423479 -"Tfru27062_t",13.0853859107359,14.4752550036459,11.4578948063606,9.89554896986095,11.4210226677988,23.3309782063476 -"Tfru27063_t",0,0,0,0,0,0 -"Tfru27064_t",0,0,0,0,0,0 -"Tfru27065_t",17.2738099224529,17.4848229358655,15.6520046106257,12.0553309355771,12.0088925381204,14.668375136105 -"Tfru27066_t",0,0,0,0,0,0 -"Tfru27067_t",0.158510144851788,0.381699085001799,0.341253377204877,4.09900206732475,5.04195052584571,8.87184354097716 -"Tfru27068_t",0,0,0,0,0,0 -"Tfru27069_t",0.376728146957163,0.151196199589652,0.64884050195008,2.53292594115404,1.14124867764178,1.10251228388121 -"Tfru27070_t",16.3977473377424,25.4227919983819,20.8912762686708,95.4957882700909,97.4054438595664,209.864018328397 -"Tfru27071_t",0,0.674335050169846,0,0,0,0 -"Tfru27072_t",0,0.586378304495518,0,0.755642120237258,0,0.267239390549468 -"Tfru27073_t",0,0,0,0,0,0 -"Tfru27074_t",0,0,0,0,0,0 -"Tfru27075_t",2.29119204246004,3.06515925031567,3.94612987349426,0,0,0.558773258636267 -"Tfru27076_t",0,0,0,0,0,0 -"Tfru27077_t",0,0,0,0,0,0 -"Tfru27078_t",0,0,0,0,0,0 -"Tfru27079_t",32.7845372766624,29.9845041069894,34.4761948512724,10.2713455180468,15.2794569674517,9.57148211179991 -"Tfru27080_t",21.6468455484711,26.4769590250737,21.3042599167904,8.26338698971112,8.92194408813731,9.80424267169215 -"Tfru27081_t",18.3460498463053,14.1428107819406,13.3741810058716,5.07301358559283,3.93047807126049,5.71458934601998 -"Tfru27082_t",0,0,0,0,0,0 -"Tfru27083_t",0,0,0.112863831462455,0.813405714451962,0.794066942633749,0.383557315609221 -"Tfru27084_t",0,0,0,0,0,0 -"Tfru27085_t",0.947485452309558,0.760528252071255,0.543952751634841,0.326687382809341,0,0.462143306965246 -"Tfru27086_t",80.1306790875085,79.6505876310741,71.446213282226,101.099010136539,80.9797164966004,32.2063812589368 -"Tfru27087_t",0.781491876943698,0.313644209381324,0.336491702174111,0,0,0.285883999192455 -"Tfru27088_t",2.40627480167284,4.45077928505627,4.32452598560003,1.83970155051537,1.62994918770827,0.995075688347335 -"Tfru27089_t",14.0618227214011,9.26125390791205,13.9723485774014,10.0698231044493,9.98645072182923,11.343337221177 -"Tfru27090_t",7.51280500238375,6.65854823642326,8.59252797936453,4.69504698833955,5.35108868295035,4.69504881766462 -"Tfru27091_t",10.8727256110957,11.3292624988342,9.4212266774311,6.21703946995847,5.61135776089922,4.15037381464287 -"Tfru27092_t",0,0,0,0,0,0 -"Tfru27093_t",3.45774416589799,9.35434292156341,3.41877621187569,3.57662924289129,8.31332061566148,15.6473551692151 -"Tfru27094_t",51.3898061990755,42.5171508538882,48.9557476471357,10.0806392409739,13.1603466891909,18.0235889716446 -"Tfru27095_t",1.13090891807718,0.972598630052662,1.32170058017427,3.0080369017137,3.28610642592403,2.06853566723386 -"Tfru27096_t",74.9553661014711,80.3548951998798,59.9992913861652,62.7024591687892,70.1013708697567,87.964965859307 -"Tfru27097_t",0.904031725442171,0.984809066351043,1.05654773511241,5.00954134284884,5.25372895151575,6.00004811525747 -"Tfru27098_t",0,0,0,0,0,0 -"Tfru27099_t",0,0,0,0,0,0 -"Tfru27100_t",325.768499056673,262.22104804159,400.653720493561,246.055965402257,268.922668796827,214.960684773229 -"Tfru27101_t",331.099720216881,331.530668628395,422.651288020272,554.484573151807,709.804183082539,489.436946976605 -"Tfru27102_t",0.0425153728600442,0.102378803163438,0.0366122044369605,0,0,0 -"Tfru27103_t",0.590236839143659,0.315847798674401,0.931853484358048,0.101755086448811,0.0851450167661816,0 -"Tfru27104_t",4.36853959211527,6.36572287360334,5.67190413184682,10.7754566345833,12.6812944491148,13.964861592553 -"Tfru27105_t",0,0,0,0,0,0.0496486751424699 -"Tfru27106_t",2.82078637334787,2.51029836194614,3.37965388461005,2.22004345544158,2.06995615212733,2.916225466215 -"Tfru27107_t",0.111419597840116,0.0894343567864517,0.0959492254209999,0.0576252280021781,0.530406026194635,0.203796617461465 -"Tfru27108_t",0.0602656935232765,0,0,0.0623377645819832,0.156486035118334,0.088185164743727 -"Tfru27109_t",3.73631055722071,4.36227525716342,4.09504052645852,14.3465072356366,17.4434828688151,15.3662649565944 -"Tfru27110_t",12.9246733494535,0.894343567864517,20.533134240094,59.4692352982478,10.029495768044,4.23896964319846 -"Tfru27111_t",0.223431853115552,0.358688856473322,0.769635276249297,1.61779762444413,2.12726672207848,1.22603177845168 -"Tfru27112_t",0.809206781511315,0.649534636766051,0.57015012583792,1.75015184590853,1.40079209720054,1.93760258647075 -"Tfru27113_t",35.2939838759741,35.7985634526831,33.939396987905,50.2807441368566,42.6285490879515,38.5379273895494 -"Tfru27114_t",12.34538967986,12.7335861788134,15.9468881632845,11.0459221029539,11.3264768519351,10.1613802064181 -"Tfru27115_t",0.45807184717256,0.661833746077275,1.02562083705195,10.2345421301491,7.5330591169469,6.30067134534297 -"Tfru27116_t",0.73371508097334,0.14723472711132,0.157960078531515,6.07153493989762,4.44538786225531,3.8918924344213 -"Tfru27117_t",0.9164768375067,0.735638236548923,0.263075330790669,1.26398318294232,0,2.011583776136 -"Tfru27118_t",0,0,0,2.46715960392922,3.67009939777005,1.16337652668223 -"Tfru27119_t",3.08803458443586,3.11427120248091,2.38652220439226,1.80186104071655,2.87839911533403,2.02759386797664 -"Tfru27120_t",34.9626163755215,33.8602280510816,33.4329564002695,10.7236871106011,9.77769140620801,12.3976333437034 -"Tfru27121_t",159.305984168263,153.054469893322,171.258219748635,132.151146318257,50.3867717890427,22.9537567816348 -"Tfru27122_t",5.94534974074859,8.71448372527185,6.45546388632487,4.2780969268817,3.02042122553018,1.51298608803391 -"Tfru27123_t",1.23242606510681,0.412185238490126,1.41507512894736,3.93063230025615,5.15574935264365,3.98245497652569 -"Tfru27124_t",0,0,0,0,0,0 -"Tfru27125_t",0,0,0,0,0,0 -"Tfru27126_t",0.887433557444868,0.712325757221668,0.509476873010098,1.52990922231135,0.512069326185346,0 -"Tfru27127_t",0,0,0,0,0,0 -"Tfru27128_t",0,0,0,0.290631584706638,0.486380229553974,0.205568761961129 -"Tfru27129_t",99.2730294033784,100.701404907901,97.386284845747,122.284434109343,94.4653623524599,54.1489368086726 -"Tfru27130_t",6.65935913432206,7.81241826416285,4.8524565587913,6.88832298630915,7.98078779103502,4.49744340193008 -"Tfru27131_t",0,0,0,0,0,0 -"Tfru27132_t",12.1287815609927,4.72869009842143,11.2973569424691,1.17776865529025,0.599878503509998,0.14487933960254 -"Tfru27133_t",0.149840148819466,0,0.172046886961793,0.878287957826301,0.172922340828345,0 -"Tfru27134_t",0,0,0,0,0,0 -"Tfru27135_t",16.7567867414747,18.5396698429446,17.3551717549909,144.753330148954,156.599357440261,129.722754296641 -"Tfru27136_t",5.12134311364092,5.00919052205295,7.03888475904383,4.03446388378592,4.66754188397768,4.5410197610929 -"Tfru27137_t",1.49062997911121,1.22717934516805,1.48114523136239,0.434889573293963,0.496227327013096,0.53131762361291 -"Tfru27138_t",0,0,0,0.206410555409227,0,0 -"Tfru27139_t",0,0,0,0,0,0 -"Tfru27140_t",0,0,0,0.196159918346015,0.49241881028207,0 -"Tfru27141_t",7.12169183798565,8.48909098690974,5.03114877540023,4.36699773548283,3.94943215333002,5.67849791289378 -"Tfru27142_t",0.730525015403891,0.469102643596415,1.13236772818592,0.604513696189806,0.632294298420166,0.962061805978086 -"Tfru27143_t",0.590236839143659,0.631695597348802,1.27070929685188,1.22106103738573,1.27717525149272,1.29551648345995 -"Tfru27144_t",0,0,0,0,0,0 -"Tfru27145_t",4.24027138278599,6.95341544240594,4.56439848374977,8.30953061045604,10.5228631170438,15.7177016156963 -"Tfru27146_t",0.203908681484096,0.163673555866467,0.175596397979208,0.84367809541053,2.38261383081871,4.99776578685353 -"Tfru27147_t",1.716833312768,1.74555394458134,3.05547301769816,17.2850561291329,11.7887567764032,12.3097599379803 -"Tfru27148_t",14.5073730078074,16.3381243278183,15.1531736005328,6.04811388423649,6.20669715126821,8.27336655575012 -"Tfru27149_t",0,0,0,0,0,0 -"Tfru27150_t",0,0,0,0.217247109568212,0.818030748581089,0.0768313247829721 -"Tfru27151_t",9.21467376489622,12.825742494479,11.3119322516174,16.9336136746284,15.6966875132894,14.7028439491335 -"Tfru27152_t",0.131953471368766,0.0353055000088924,0.113632014608535,3.27576793485052,0.989821964542563,0.997600447443826 -"Tfru27153_t",0,0,0,0,0,0 -"Tfru27154_t",0,0.530972480448697,0.227860522732075,11.6321287012901,6.75608947209579,6.67888051656703 -"Tfru27155_t",0.117854164280731,0.031533086283369,0.0845753050823403,0.182859386122413,0.187012459083823,0.603584875545444 -"Tfru27156_t",3.66338708372841,3.37763578458673,3.1973651723969,2.35553731058049,3.34218023384142,4.05662150887113 -"Tfru27157_t",0,0,0,0,0,0 -"Tfru27158_t",0,0,0,0,0,0 -"Tfru27159_t",0,0,0,0,0,0 -"Tfru27160_t",0.0922177571585592,0,0,0,0,0 -"Tfru27161_t",0,0,0,0.0892185254900253,0,0 -"Tfru27162_t",0,0,0,0,0,0 -"Tfru27163_t",4.1022360987075,3.70438379543964,4.04782744476995,2.47524682315765,4.06842465667095,2.56364949428432 -"Tfru27164_t",1.02590690765675,1.9214431551651,1.27611167920847,1.17908879005814,1.08528125848237,1.33438393110182 -"Tfru27165_t",17.1155469094068,15.2480238956316,15.063025936503,21.9841104906339,18.2327251425039,16.1460455663321 -"Tfru27166_t",13.2647963323338,12.6949715922663,12.5945983263144,9.49906390014852,10.1563871618705,7.46539188174628 -"Tfru27167_t",3.9861142105791,3.58740429277991,4.26480856170351,3.43597153882146,4.33878438419876,4.94901991412962 -"Tfru27168_t",0.217643463138465,0,0.187424134630658,1.80101230730124,1.31864484515086,1.27388725028762 -"Tfru27169_t",11.2325851950682,15.4026390289491,13.3003266123973,40.6657542144396,32.4072843758525,18.6620933734684 -"Tfru27170_t",0,0.313644209381324,0,0,1.3528157082478,0 -"Tfru27171_t",1.1110850711874,0.941393530729395,1.00996958367468,1.53238225705719,1.70965688331096,1.35485069418907 -"Tfru27172_t",13.2954631586591,13.903377137802,13.0003335754847,11.1226136802893,12.7455540482299,13.5641683097303 -"Tfru27173_t",0,0.0624962975134241,0.0670488563182891,7.0066723011805,6.94117327598412,7.91811243361122 -"Tfru27174_t",0.0788089838381308,0.09488767122465,0,0.774426844614638,0.750330476080215,0.201808357778914 -"Tfru27175_t",1.17405806047054,0.628262469102341,0.224676136544826,2.29391357929168,6.77458176878749,10.5941329824968 -"Tfru27176_t",39.7272497530923,28.8164869595357,45.8241845173334,37.7001491658502,63.0922727273918,76.7979923210273 -"Tfru27177_t",25.1417915884235,21.1652606986674,24.2912622955267,15.8574532530836,11.1459177421745,18.3946529406589 -"Tfru27178_t",40.7342295843402,39.9908229450196,40.058293561393,28.1993978834381,27.0064278065769,31.8483857648024 -"Tfru27179_t",0.248062136136164,0.0663715600560872,0.0712064133537735,2.8225018172248,6.58432448551708,2.54087845738963 -"Tfru27180_t",76.7443577516445,84.4348296283894,70.8325494944011,47.1090962297151,62.6432440594224,61.0133663398074 -"Tfru27181_t",19.2245397845385,25.4302853706945,15.7386267676716,36.2933088124216,76.5939057904099,70.1691934908622 -"Tfru27182_t",0,0,0.327356180848117,13.7622603346378,9.21261375978703,3.33746931183952 -"Tfru27183_t",1.82631253850973,1.59921355771505,1.42975723255798,6.69773697483024,6.4666462338426,3.27975615674347 -"Tfru27184_t",0,0,0,0.230704895116685,4.95483717921289,8.70301732054906 -"Tfru27185_t",0,0.322648349363563,0,2.07891970878671,5.56661009135457,12.3518302043439 -"Tfru27186_t",0,0,0,0.182560596275808,4.43004513704045,9.5554924940167 -"Tfru27187_t",6.92617073285454,10.5957592752197,8.84147450232461,27.5615149675287,59.6662582864189,38.0356044318419 -"Tfru27188_t",5.74216542568586,6.96378692225918,7.14857371743589,15.4300324477868,11.8848779717906,10.5029448440319 -"Tfru27189_t",0.123002015770787,0.0987313397027593,0.105923449439874,2.03569765920433,1.49047411487038,0.989920436442394 -"Tfru27190_t",0.0718856618124194,0,0,4.11443470488569,2.63395842225514,0.701255674003168 -"Tfru27191_t",2.80754472500981,2.25356186432082,2.9756592685834,2.12220826827559,2.94406953216844,3.71318484812307 -"Tfru27192_t",0,0,0,1.35779443480132,2.27230763494747,0.240097889946788 -"Tfru27193_t",10.5483881148006,12.8516769651204,12.0035492860765,17.9253220450901,15.6514104362301,17.7780105775846 -"Tfru27194_t",4.56098367760923,3.12957597714552,3.99105088086544,11.5662208946999,8.21373547903954,6.08191922975541 -"Tfru27195_t",6.48728778157895,5.07703995301621,4.18990633016026,2.34861740073742,1.68449060196878,1.77987624979858 -"Tfru27196_t",9.75120444668587,9.03127299334615,11.6269900661947,8.14676660880794,2.92153838778961,5.4879517702123 -"Tfru27197_t",1.34557010149254,1.31485942930053,0.806080400751353,9.37974985600914,8.50691214866128,5.9782377293265 -"Tfru27198_t",88.9775712849264,92.3960364371537,97.4528410461064,94.270725180242,139.819937146793,115.503749956509 -"Tfru27199_t",4.30087253096147,3.91252418187283,10.3703756676868,5.9316616946952,7.69327363094843,5.24445902955441 -"Tfru27200_t",161.507026516878,212.489275252327,169.286098794572,172.242837566208,174.050633318601,131.850496128552 -"Tfru27201_t",606.999876435596,575.023888235741,646.193078826906,456.201756408693,1134.91078436434,2373.08578807928 -"Tfru27202_t",0,0,0,0,0,0 -"Tfru27203_t",0,0,0,0,0,0 -"Tfru27204_t",1.14004123084314,2.06582828183825,2.08489711054303,0.894367157652964,1.48072426773509,1.05380801610515 -"Tfru27205_t",0,0.819761702472958,0,94.9294136737979,86.3653009929311,35.2467786055011 -"Tfru27206_t",0.770737401572913,0,0.331861082419422,0,0.333549744579445,0 -"Tfru27207_t",0,0,0,0,0,0 -"Tfru27208_t",0.817800127863648,0.596756681566235,0.512182059946435,0.153803263411123,0.386091208769836,0.598332440787747 -"Tfru27209_t",6.58239624138158,6.64530501782885,7.07094639100121,7.72122198788474,16.4457806212676,15.1428459184533 -"Tfru27210_t",109.26205071431,93.9391601681693,117.509515530919,55.7559055770439,76.496645467827,83.8482897053477 -"Tfru27211_t",0.798198354123016,2.48270624171796,0.51552766722637,1.85769499868304,1.27160618534377,1.45997766808498 -"Tfru27212_t",0,0,0,0,0,0 -"Tfru27213_t",0,0.0911263581310603,0.0977644810370728,0.117430870036871,0,0.415304458286336 -"Tfru27214_t",0.305863022226144,0.736531001399103,0.877981989896042,1.37097690504211,2.11787896072774,1.64105742254892 -"Tfru27215_t",0.600074119795126,0,0.516755114052301,0.620706027336788,1.55815380681871,1.31710842484891 -"Tfru27216_t",0.606026162463101,2.43222741269557,2.02228782235388,0.313431357357203,0.131134074514552,0.332543155057048 -"Tfru27217_t",12.2982881033591,10.9744196437693,11.5429941711103,13.2410683454418,13.0229422014062,14.146525536426 -"Tfru27218_t",1.57991714288086,1.92982230220316,2.42532653692951,1.70529211108326,1.54583806400351,2.01030449145961 -"Tfru27219_t",0.740179531025969,1.78238339251942,0.956110783710581,7.65628579976076,6.40650610734089,4.87388139592422 -"Tfru27220_t",1.00144819992454,1.78631801369496,1.1498656842506,3.68312980460014,2.98560155479191,2.60514160853521 -"Tfru27221_t",12.4435432678711,11.7585853184005,12.1048670525448,7.45722836919096,3.13421742751375,3.56458810905325 -"Tfru27222_t",26.4763581184802,31.4721528372471,28.5898792562522,33.6640705194934,39.1892602877059,27.1194987760859 -"Tfru27223_t",14.0321019770097,12.4335096018301,12.5545711006393,16.7765663788033,10.8834170454751,9.59974904012841 -"Tfru27224_t",3.34459119852081,4.87853696398561,3.65444969356044,14.7311396214061,20.699788729316,25.3122378223353 -"Tfru27225_t",0,0.208772461352894,0.223980544790817,0.269036668195928,0,0.190294302868042 -"Tfru27226_t",0,0.514759580264575,0,0,1.66520254158347,0.938397859912339 -"Tfru27227_t",0,0,0,0,0,0 -"Tfru27228_t",0.109531130080114,0.351674080922996,0.28296890208905,0.679782350669762,0.663620482696523,2.40410925005389 -"Tfru27229_t",0,0,1.32339724330672,0.529870998946858,1.33013129850584,0.74957390032168 -"Tfru27230_t",0.672083014007084,0.26973402000192,0,0.695190750448126,0,0.983440956981342 -"Tfru27231_t",0,0,0,0,0,0 -"Tfru27232_t",0,0,0,0,0,0 -"Tfru27233_t",0,0,0,0.234861740073742,0.196523903563024,0.511118843261207 -"Tfru27234_t",14.2790552872704,18.0775218424159,12.1964680074071,13.5291613144275,16.8471044182932,12.230725861352 -"Tfru27235_t",20.6109854689518,20.5146089845586,18.1041781861586,33.6850277838836,35.9644529307486,32.0897073872747 -"Tfru27236_t",3.09941195855825,3.27347111732935,2.5285881309006,9.61793028768005,8.33032391219577,8.83187267408146 -"Tfru27237_t",0,0,0,0,0,0 -"Tfru27238_t",2.5472253826583,2.50753880211899,2.93852736480996,5.31932282009122,4.4926173835117,5.48544012180488 -"Tfru27239_t",0,0,0,0,0.101555648489272,0 -"Tfru27240_t",0,0,0,0,0,0 -"Tfru27241_t",0,0,0,0,0,0 -"Tfru27242_t",0,0,0,0.0779361828047396,0,0.0551256141940607 -"Tfru27243_t",0,0,0,0,0,0 -"Tfru27244_t",0,0,0,0,0,0 -"Tfru27245_t",0,0,0,0,0,0 -"Tfru27246_t",0,0,0,0,0,0 -"Tfru27247_t",0,0,0,0,0,0 -"Tfru27248_t",15.4326953448196,15.0918452366602,13.1027169928082,9.66791794197474,7.14909724216332,10.0983992211513 -"Tfru27249_t",0,0,0,0,0,0 -"Tfru27250_t",0.0428405796896723,0,0.0368922569951218,0.0443135358629702,0,0.846280782923099 -"Tfru27251_t",0.190212173822145,0.0508932113335733,0.382203782469462,0.0655840330771959,0,0.0463887243972662 -"Tfru27252_t",0.134920305307464,0.144397227017098,0.232373820023878,0.465197236762766,0.0778520817112624,0.164521038079169 -"Tfru27253_t",0,0,0,0,0,0 -"Tfru27254_t",0.568919030054949,0.456660304855426,0.816543069609863,5.10015787699639,5.25246730967542,5.27239790835746 -"Tfru27255_t",0,0,0,0,0,0 -"Tfru27256_t",0,0,0,0,0,0 -"Tfru27257_t",0,0,0,0,0,0 -"Tfru27258_t",3.8912169763497,4.08445220411664,3.09316600335822,1.96090027638766,2.59075454815864,4.23393523744645 -"Tfru27259_t",8.23514976814612,7.60885811193056,7.80599050988532,6.25083361804163,6.9739653224904,8.01906633842022 -"Tfru27260_t",0,0,0,0,0,0 -"Tfru27261_t",0,0,0,0,0,0 -"Tfru27262_t",3.32571198923114,3.8301302333227,4.60721426987101,3.14092206604643,3.1288229052633,3.06796339925121 -"Tfru27263_t",0,0,0,0,0,0 -"Tfru27264_t",0.514699381172925,0.367234880963837,0.492482749948495,0.591551013119705,1.68296167925313,1.29708431219722 -"Tfru27265_t",1.2868110227574,0.737784518785389,1.02898720741427,1.52120514358485,1.35244568206939,1.344968486354 -"Tfru27266_t",19.6045638219522,19.9153274189411,20.2590145708346,21.8078200270462,20.4177359333,18.8580634968458 -"Tfru27267_t",0,0,0,0.280771708650354,0.176204792370725,0.496486751424699 -"Tfru27268_t",0,0,0,0,0,0 -"Tfru27269_t",17.4647701915992,13.8524044817142,14.3859188694486,15.4232952068147,14.2798757535565,17.3738542155086 -"Tfru27270_t",0,0,0.0709967772006221,0,0,0 -"Tfru27271_t",15.1077484278065,15.3000389534335,13.5572224039813,10.8075872995278,10.5710042580413,7.54109137365642 -"Tfru27272_t",3.03984915949316,3.54913184299919,1.78484496630182,0.571702919916346,0.837165970770121,2.42625236156754 -"Tfru27273_t",0,0,0,0,0,0 -"Tfru27274_t",0,0,0,0,0,0 -"Tfru27275_t",0.132299805939287,0.10619449608974,0,0,0,0 -"Tfru27276_t",0,0,0,0,0,0 -"Tfru27277_t",23.0351033083001,26.6471108534859,21.0035949582873,29.7838779246742,41.0481379216317,39.4070343241696 -"Tfru27278_t",4.48910410213629,4.63283622238117,2.20902949511265,2.65339981142865,2.22027005544463,2.81519357973702 -"Tfru27279_t",5.8023695881106,5.25455883249231,4.9974252432722,8.10508696854249,6.5674251361882,4.71691722398412 -"Tfru27280_t",0,0,0,0,0,0 -"Tfru27281_t",0,0,0,0,0,0 -"Tfru27282_t",14.4432895975327,17.1499249788872,11.7019011585168,11.4922173932319,13.8326438326812,10.3796540500292 -"Tfru27283_t",0,0,0,0,0,0 -"Tfru27284_t",2.55373516938624,3.70853923123669,3.21384202783672,3.20774224757702,2.77972043701069,1.92570319122134 -"Tfru27285_t",5.8167174352186,5.82318989440502,4.75408683275357,3.28882823614311,2.5093997077609,3.27100635186809 -"Tfru27286_t",0,0,0,0,0,0 -"Tfru27287_t",0,0.315109836527965,0.0676128186611532,4.30433525499634,12.9118041312903,22.8627044961667 -"Tfru27288_t",0,0,0,0,0,0 -"Tfru27289_t",1.79126602924195,2.0129404482682,1.31116969237354,0.463213453237125,0.620160719132785,0.393166693985358 -"Tfru27290_t",0,0,0,0,0,0 -"Tfru27291_t",0,0.230148481286637,0,0,0,0 -"Tfru27292_t",19.5838759096354,21.3465002636547,25.584511474576,45.8089269447143,61.0603672818732,74.0023038174534 -"Tfru27293_t",4.2059110322034,4.41477375592582,5.29358897322687,5.5775894625985,4.76046991044194,6.54890881333678 -"Tfru27294_t",0.630471870705047,0.2530337899324,1.76452965774229,23.8034356449973,9.41323688173361,1.26850967746746 -"Tfru27295_t",9.78564562683365,8.24585634088792,8.60176226582346,8.44208197645442,8.78610975330099,8.46667087990219 -"Tfru27296_t",21.3954484727283,20.1815381921335,18.4247362967422,20.2555578417556,23.5404531965781,21.4906612054817 -"Tfru27297_t",0.575413539530462,1.45160186925016,0.707883717880958,1.27542334384469,0.640337180885393,0.420993560454642 -"Tfru27298_t",2.31088715474469,3.78709655682779,2.07294315092934,1.64335922424091,1.87514211709132,1.79640002930961 -"Tfru27299_t",0,0,0,0,0,0.241988424513298 -"Tfru27300_t",6.06015447714826,5.0789733269511,6.1140827850837,1.90513731163071,2.57121090234509,2.2169151705412 -"Tfru27301_t",3.02371978652097,0.787161537163244,4.85588949586862,0,0,0 -"Tfru27302_t",0,0.0855755139809449,0,0,0,0 -"Tfru27303_t",7.27958768277179,7.50138521851702,7.20068601549401,6.81759079207034,5.70471612333416,7.9170451766997 -"Tfru27304_t",0.0739094223795725,0,0.0212157524831184,0.178384723399118,0.0639711240337118,0.144199553844874 -"Tfru27305_t",89.2042176846745,91.926354598115,84.1983371305684,34.9207100387852,51.3604742712084,65.2650635250719 -"Tfru27306_t",137.124375308768,102.543511761365,153.659909120913,151.175261368954,135.714148592094,72.0349560740404 -"Tfru27307_t",24.3620425160009,30.4963952493382,22.6444588528677,14.1998110741938,14.8105298553999,19.5924298871192 -"Tfru27308_t",16.338924731966,13.1149389542987,14.8458283914795,15.7030070009488,11.3580583774403,11.6717724632019 -"Tfru27309_t",8.41064984840006,7.86981408665037,8.0706033258865,8.79925363697333,10.3995772766475,8.43913864893058 -"Tfru27310_t",1.5974315375729,0.874245959597899,1.50068900883182,9.16305872681826,8.17009486722686,9.56241207324804 -"Tfru27311_t",0.98479251400254,1.21611370634778,0.848056183567755,3.44774493092924,3.60618704915018,4.1567894382131 -"Tfru27312_t",29.1905214349388,29.800387397359,26.996832593989,22.1307803205001,18.7366781754814,17.8486655704101 -"Tfru27313_t",22.2584194126412,23.1498527532535,22.2630888827619,21.3663652090798,16.5667624684005,18.3127858657971 -"Tfru27314_t",0,0,0.0236733363767781,0,0,0.0402258244937027 -"Tfru27315_t",125.422960839696,253.78501680666,104.946316606701,51.3460388423458,56.3004288373375,72.6358881267733 -"Tfru27316_t",0.359787480819903,1.15517781613678,0.464747640047755,0.372157789410213,0.778520817112624,0.526467321853342 -"Tfru27317_t",0,0,0,0,0.205988227530649,0.174121982510985 -"Tfru27318_t",6.3993732527409,5.76380268745705,6.247747835983,7.73545952581232,10.626912588594,11.2422806502631 -"Tfru27319_t",0.154430839653396,0,0.199482672704321,3.27468069569731,6.48276001735014,5.76234935872291 -"Tfru27320_t",9.20279645961084,9.28959488200784,11.5272842039397,7.21152230931823,7.42224303000269,7.39621051852678 -"Tfru27321_t",6.24401448976974,5.92321327851892,5.62145765963169,21.1375566066368,10.3175049370588,17.4427872480261 -"Tfru27322_t",21.0895014791771,22.9738975713037,23.5497778873302,36.9170260673154,28.7846528542863,24.3316857519592 -"Tfru27323_t",0,0,0,0.214830269041495,0,0.303906352664414 -"Tfru27324_t",8.98295219008752,10.2034557019647,10.1196428522033,10.6943432551399,10.1711362597245,10.9950947638308 -"Tfru27325_t",14.7435429433335,16.1885069991105,19.2243169085648,3.66874257880092,4.81548637869663,7.73401415033892 -"Tfru27326_t",0.948857426610614,0.585868853318719,1.38280256410386,0.603988488808234,2.08475835143747,2.29626200915225 -"Tfru27327_t",1.61558416868168,0.486299315026331,0.869539855377811,0.208891451507896,0.174792894995959,0.886515285957371 -"Tfru27328_t",140.168992663087,142.245974288265,131.209890064447,124.275702981599,124.866135692888,110.144321725708 -"Tfru27329_t",0.475829698516694,0.551690097684581,0.50081993432459,0.546877557125769,1.00673667401071,0.967039959508774 -"Tfru27330_t",2.49535772588458,5.34126772411759,4.91173177713837,6.26851631568814,9.35920768453611,6.78115228636133 -"Tfru27331_t",0,0,0,0,0,0 -"Tfru27332_t",0,0,0,0,0,0 -"Tfru27333_t",8.6681372553623,6.8363901306961,7.94197121898045,6.93314110919548,6.84827447988968,6.41566911205142 -"Tfru27334_t",0,0,0,0,0,0 -"Tfru27335_t",2.19572575652647,2.64369991259769,3.00070299183106,20.9347214674822,17.1042792885137,10.5119221634885 -"Tfru27336_t",0.438110920304304,1.10368987020708,0.972533602565238,0.972317661658765,0.676981513253856,0.548158053332867 -"Tfru27337_t",7.99110439950766,7.62219358746645,8.04337793337746,8.53422864023364,7.54535259140062,9.90882063908868 -"Tfru27338_t",8.37572974933566,6.02253044804058,6.88987062400155,10.4259480444023,9.44984046423725,7.94244746068912 -"Tfru27339_t",13.4088223511431,12.6080885601789,14.1392278763714,12.0016644243546,10.0899340975909,9.49004506765571 -"Tfru27340_t",3.88404139183062,4.73420155084995,6.93726043523339,28.4206835120058,38.473592284864,29.4695492318249 -"Tfru27341_t",0,0,0,0,0,0 -"Tfru27342_t",0.112163386877767,0.0900313818651329,0.0965897409445045,0,0,0 -"Tfru27343_t",49.1325993596279,56.4632730054751,53.5316114068068,44.3361448098391,58.4678666559545,63.5079218730853 -"Tfru27344_t",1.29518450523605,0.47255434489828,1.21674644934717,0.548065588258978,0.91720336210914,0.516875065113197 -"Tfru27345_t",0,0,0,0.812138685323525,0,0 -"Tfru27346_t",0,0,0,0,0.420311238834214,0.710578726316506 -"Tfru27347_t",0,0,0,19.622319573903,20.7753840909483,9.91371932683512 -"Tfru27348_t",16.160411939062,19.6482348422897,18.4189941642689,40.8068120942836,42.373555670647,49.2937608508574 -"Tfru27349_t",6.77841669059162,7.89653325439876,6.84456077521242,8.46961241158468,6.82746913806423,7.96566109138704 -"Tfru27350_t",0.924319548830106,2.06092619245063,1.7688439111842,3.71816568943149,5.42242604329763,3.75703299672235 -"Tfru27351_t",7.96520566884922,8.37188774271687,7.04044176856602,4.601441462053,4.78688635226143,4.99197444743747 -"Tfru27352_t",0,0,0,0,0.127122105451607,0 -"Tfru27353_t",3.53727902195568,1.96567302073801,2.46034013816374,19.6313987269736,18.6642013351475,7.51516116095792 -"Tfru27354_t",7.79128494251327,5.71009518288982,2.33373277314303,1.40159425527879,0.293200985154512,0 -"Tfru27355_t",5.06251456114586,6.5895933241353,7.30526773612525,11.7469121134603,15.5138658073287,11.11176162985 -"Tfru27356_t",0,0,0,0,0,0 -"Tfru27357_t",13.262338523119,12.669552360056,14.3163284515878,9.12945051881979,8.0029689688867,8.91738777914652 -"Tfru27358_t",1.73591840517647,1.94426251850989,1.80777377717759,3.13186606777816,2.97005130564974,3.72157498227948 -"Tfru27359_t",9.69694242521494,10.6171901516103,10.5440032846154,12.4339303135849,13.8852500586577,13.3392257495543 -"Tfru27360_t",22.5182453201818,26.8343638521196,25.805791468796,15.050521405138,19.6402342385563,19.5167406459014 -"Tfru27361_t",0,0,0,0.72516420440015,0.404527645720829,0 -"Tfru27362_t",172.646875611807,242.552673332017,152.977725393693,53.7854077433193,64.4654677051176,67.8281827599454 -"Tfru27363_t",0,0,0,0.560637702111514,0.134034736070634,0.0566498247247721 -"Tfru27364_t",0,0,0,0.208640681458066,0,0.147575173652768 -"Tfru27365_t",28.5537938193615,33.3001840265253,25.0527549831691,30.6761491677588,23.4107580528432,35.150065756669 -"Tfru27366_t",35.1991103985115,34.3237644194471,33.5087358736232,33.4226322412633,52.1254726864546,53.5178589650294 -"Tfru27367_t",38.8408388913782,44.1256170199766,41.0350885251028,58.9166459626642,49.9437778552708,42.7622498939792 -"Tfru27368_t",1.22642885797188,4.4299382857676,2.64035459733986,3.17149065061672,1.59227396316779,0.448650071723389 -"Tfru27369_t",28.9281014354512,32.2058602970268,28.8359103738121,27.3608387993927,37.8146289438428,51.6799382738294 -"Tfru27370_t",1.02313043429368,0.821247016445008,0.930019352761329,0.470359100553638,0.245987294716912,0.457453083958156 -"Tfru27371_t",18.1695749420319,22.1068291916808,18.323189303078,8.30905279623439,12.2086420454776,16.7918205558687 -"Tfru27372_t",0,0.137339114087545,0.147343617041617,0.884916943251371,3.99852097066113,3.63031921581457 -"Tfru27373_t",32.6994235741172,34.9616787549597,23.4845324140439,14.1711960702957,17.1157202780043,32.8128857842355 -"Tfru27374_t",0,0,0,0,0,0 -"Tfru27375_t",4.39802263272725,4.77231785384379,4.80434468615533,8.71937017559279,8.31821001411696,8.49129522565082 -"Tfru27376_t",0,0.060316194111793,0,0.233181155171605,0,0.164933076457185 -"Tfru27377_t",2.89013839093539,1.85392989063024,2.69762419821602,2.09080903341887,1.86238131327543,2.49380724965255 -"Tfru27378_t",8.74933244597742,7.91552131817751,7.48030130132808,6.20706027337747,4.90328121027626,7.46054422468021 -"Tfru27379_t",0.471589925741886,0.378536114770563,0.754205539355766,1.88153070035019,3.90683846778458,7.34426135856478 -"Tfru27380_t",0.248551410566413,0.249384264116067,0.107020289892654,0,0,0.0909246447135765 -"Tfru27381_t",32.7245389553376,33.4474971645913,33.1236818448943,12.7225459019538,17.3558332933699,19.033989245258 -"Tfru27382_t",1.11102227673328,0.960395798817685,1.10395293948271,2.0332384618795,1.92325529224445,2.7512336036222 -"Tfru27383_t",0,0,0.0685741383577573,0,0,0 -"Tfru27384_t",0,0,0,0,0,0 -"Tfru27385_t",21.0025941928619,18.1720159623692,26.0726443908609,41.1923090869596,77.4355225208073,69.4475351285047 -"Tfru27386_t",1.98673188310855,0.227815895327651,0.977644810370729,0.293577175092178,0.736964638361342,0.415304458286336 -"Tfru27387_t",2.19922452281276,0.353055000088925,1.13632014608535,0.909935537458478,0.380700755593294,0.321806595949622 -"Tfru27388_t",12.1204398205502,10.6943003551165,12.0310606950248,10.144578684683,9.60975916101133,9.47699160318599 -"Tfru27389_t",0,0,0,0,0,0 -"Tfru27390_t",0,0,0,0,0,0 -"Tfru27391_t",11.6126654716472,17.6958333899862,13.0472295535221,7.03824329054681,8.32361500836049,7.16871108126219 -"Tfru27392_t",34.7660944487768,33.1615919293184,33.7507456489126,34.0536632780907,36.8757366356349,33.6674696524286 -"Tfru27393_t",1.58510144851788,3.0535926800144,1.63801621058341,3.44316173655279,2.46952678816933,1.85554897589065 -"Tfru27394_t",15.2268807898248,14.8660226969261,14.0169824686903,12.3929601140048,13.592531125413,12.8867085658712 -"Tfru27395_t",0.311919715735572,0.250371924568012,0.179073554374836,0.322644222131007,0.854927625029741,0.72267087667152 -"Tfru27396_t",22.8377723262187,20.9502151509078,21.9144304678052,32.7347101019286,33.3212956487831,21.6022831622803 -"Tfru27397_t",18.2154479004081,18.2398095513671,19.3061809108163,16.384118488103,15.3442557626039,13.2825147413057 -"Tfru27398_t",18.9330702772725,16.1182524186939,13.1281006536026,14.666829250849,13.0530218093373,14.3918188861762 -"Tfru27399_t",38.3229604921687,34.3078831346749,31.9489020233292,37.3984107903729,31.4139201719235,30.07172460576 -"Tfru27400_t",9.27761205777599,8.52548502118769,9.25672527229923,9.39804708566216,9.96838688293787,9.3157249851098 -"Tfru27401_t",8.29982035573336,6.3371245678612,5.83995538532298,6.28184413209287,5.16881543949497,6.51677742737499 -"Tfru27402_t",0,0,0,0,0,0.0161750157437836 -"Tfru27403_t",1.22048973517841,1.30621801485684,1.75171225102746,0.84163529130542,0.704250308167739,1.63708391789384 -"Tfru27404_t",4.57051272590776,4.1927567886208,3.18621028872118,2.4763919225392,3.76755670043104,2.54777450057524 -"Tfru27405_t",0,0,0.475958657680478,0,0,0 -"Tfru27406_t",4.79745394815153,4.23296631318473,4.38363318198488,4.43206832074643,4.08896509026293,3.26884799425374 -"Tfru27407_t",0.317619571914735,0.254947088911095,0.0683796937310339,0.0821350130692671,0.0687276411326267,0.116191039369334 -"Tfru27408_t",0,0,0,0,0,0 -"Tfru27409_t",0,0,0,0,0,0 -"Tfru27410_t",55.7639377268176,57.4121875712271,56.1817056753608,103.306881145604,114.295657017447,94.9935239490364 -"Tfru27411_t",0,0,0,0,0,0 -"Tfru27412_t",5.77776711172601,6.2202353063255,5.18776320496592,6.91112056514258,6.06738727036821,6.75154014390133 -"Tfru27413_t",1.87523162436267,0.903127299334615,0.968915838849562,1.93970633543046,2.27230763494747,2.19518070808492 -"Tfru27414_t",13.6608889199919,13.9200614056482,12.292431778303,10.153711060637,8.14225131120418,11.1917879138584 -"Tfru27415_t",17.1339348947084,14.6241336181412,11.7670742838597,11.7784577476741,12.6116931468186,11.4784147868537 -"Tfru27416_t",3.89652153529374,3.93176999285342,3.66934349011883,1.030810334802,1.40464979273154,1.40644783209926 -"Tfru27417_t",15.9526486101146,13.6862576150378,14.7902832397047,13.4366399703348,12.2654178825475,12.3991168774296 -"Tfru27418_t",0,0,0,0,0,0 -"Tfru27419_t",0,0.305128981977306,0,0,0,0 -"Tfru27420_t",0,0,0,0,0,0 -"Tfru27421_t",5.93551575015661,7.32972880619398,7.47048154011546,13.9321515918744,16.7953173017857,11.6917233365392 -"Tfru27422_t",7.86368581324001,10.0992456811709,6.99755755067223,15.319140955512,18.7172922192241,15.1505139665642 -"Tfru27423_t",9.04239856995449,7.70131951447456,8.06080400751353,17.9122964992174,17.2163698246716,15.0666441914241 -"Tfru27424_t",59.9812078695706,55.3602573938563,69.6603946323982,74.3763030137458,78.2705791461382,72.0671116304909 -"Tfru27425_t",0,0,0,0,0,0 -"Tfru27426_t",0,0,0,0,0,0 -"Tfru27427_t",0,0,0,0,0,0 -"Tfru27428_t",0,0,0,0,0,0 -"Tfru27429_t",0.368871028634237,0.0740214105565144,0.158827038347824,0,0,0.0674698790629832 -"Tfru27430_t",0,0,0,0,0,0 -"Tfru27431_t",77.2325312770751,88.5414996621903,79.3097426429694,24.3425085374907,23.6168926490939,22.7727195340111 -"Tfru27432_t",29.1009396148882,28.3885678516509,32.4686841573186,18.676110557065,19.9480457864415,19.659494483026 -"Tfru27433_t",674.130091864964,785.867600388486,738.896794179584,907.50542208899,761.721856944342,539.505814756529 -"Tfru27434_t",0.168132842104298,0.0899713209032483,0.144787957239694,0,0.0485082350355697,0 -"Tfru27435_t",0,0,0,0,0,0 -"Tfru27436_t",21.0473758435929,20.8483117856349,22.4441400282764,26.4958095251635,28.9149935295661,26.1455851500263 -"Tfru27437_t",0.295811185814956,0.237441919073889,0.254738436505049,0.61196368892454,1.02413865237069,1.51498386896001 -"Tfru27438_t",74.0019203329717,69.1376008116376,79.3452292812506,47.8727926644174,38.5357124401777,40.6512597840881 -"Tfru27439_t",0.938663427613938,0.753446983429996,1.21249803297375,0.970936802539494,2.84355815769963,0.686760444987461 -"Tfru27440_t",1.01014481087913,1.35137284603176,1.08736046043237,1.04487587768278,1.09289345167814,0.615882362989757 -"Tfru27441_t",5.96571741664948,5.11654999156109,7.53014747910061,7.77693933084648,10.1148635578985,9.56654627647902 -"Tfru27442_t",118.773291297564,130.128121204753,120.786714786309,42.2925407540036,53.1626753527649,74.8258628789906 -"Tfru27443_t",25.2444974534891,27.2391498098164,24.6413276060788,6.48225013771441,6.34519120019111,11.073226823049 -"Tfru27444_t",0.771917703872411,3.20128431167921,0.775528348808633,8.11765616150745,12.0261794584662,4.89461425876208 -"Tfru27445_t",0.299324382796131,0.0800872981199342,0.171842555742123,0.103205277704614,0.0863584849386212,0 -"Tfru27446_t",28.9690954384302,25.45584218427,24.8154996694102,61.980482076448,52.9187868813901,42.2781445992689 -"Tfru27447_t",13.9332160197191,14.2493764942919,8.55160152667075,3.06891768685275e-05,2.55341921356927,6.85223964107062 -"Tfru27448_t",0,0,0,0,0,0 -"Tfru27449_t",0.0184273693291177,0.0295825861008926,0.0476063057473792,0.095304720143984,0.0637980647671147,0.16178563674414 -"Tfru27450_t",3.84047436669474,3.46800882944492,4.49576949226196,4.22080098589668,3.79150759659806,4.96110840027191 -"Tfru27451_t",0.236648948651965,3.03925656414578,0.489097798089694,71.8690156272979,98.2763450814915,113.476620310445 -"Tfru27452_t",1.02288971188104,1.2137316943237,1.22554944995124,8.09645130418322,10.9705905932879,7.93937247095614 -"Tfru27453_t",18.4193874204778,23.9352882112425,19.1503365796149,19.5754748461196,12.9290659015193,7.6420462083598 -"Tfru27454_t",0.0807792084340841,0.0648399086701775,0.13912637686045,0.250669741809475,0.769088737982221,0.354606114382948 -"Tfru27455_t",13.0200583926229,17.0450003456216,16.0175016902068,14.5900272846548,19.3188073465645,18.0312629379964 -"Tfru27456_t",10.303369808444,12.4054735802417,10.5052048405061,13.841068833653,13.0487281017212,12.9881039611884 -"Tfru27457_t",3.38296819213863,4.52573859174368,9.22529264014206,6.99856460353931,7.80819804760429,5.77524052059892 -"Tfru27458_t",8.13003646175298,9.47798111989876,8.66815030024554,6.40728802413159,6.19910654326683,6.93960352878458 -"Tfru27459_t",9.22768440510178,8.94998464756317,7.4497876854337,5.17018292793913,5.15819032921714,5.7667447434359 -"Tfru27460_t",7.60643670040591,7.44112646307065,5.99469352195794,4.03935611969997,3.26242389625441,6.36016787209082 -"Tfru27461_t",0.591622371629911,0.652965277453196,0.509476873010098,0.764954611155675,0.640086657731682,0.973918201474295 -"Tfru27462_t",0,0,0,0,0,0 -"Tfru27463_t",0,0,0,0,0,0 -"Tfru27464_t",0,0,0,0,0,0 -"Tfru27465_t",1.01707477931534,0.89802488521408,1.88309066985451,2.47230366820967,3.16912638675483,4.50198077420805 -"Tfru27466_t",0.0607889846392528,0.292764855355939,0.15704569312757,1.69773428606128,0.999683822031883,1.73454220928273 -"Tfru27467_t",5.03287971441851,4.28839801490501,3.66729435779619,12.5743027473582,17.2904809531118,14.2757558306426 -"Tfru27468_t",28.1064128169181,26.7750681685086,23.2064842579361,10.0636528697039,6.28226228485477,6.32728557036241 -"Tfru27469_t",56.6542897514187,51.2654981998344,52.562937624952,21.7534093860904,19.0669723873003,11.8951535859502 -"Tfru27470_t",76.0872424352181,75.1055804380786,72.8872258174895,39.5467792267882,49.5281424623281,58.8886800731762 -"Tfru27471_t",32.7773350496684,32.7093978641261,34.3292501075697,17.868479310707,24.9195072795645,23.5490035890164 -"Tfru27472_t",9.46595794607859,7.83558332943835,7.89689153165652,5.20169135585859,4.86465859876078,5.19423040786291 -"Tfru27473_t",7.85551575005742,9.00281079967015,8.4935749655273,6.54562719737988,6.76144318596317,6.67334935257815 -"Tfru27474_t",0,0,0,0,0,0 -"Tfru27475_t",0,0,0,0.26439810495117,0.294985169648353,0.249351155482262 -"Tfru27476_t",30.2106281000772,35.686133548749,27.5433021381997,69.9593788447668,53.8829543048487,49.0941892350026 -"Tfru27477_t",46.8760540883162,49.4331721622786,42.7761696018696,31.9260964692664,31.8488307777712,43.2231333451852 -"Tfru27478_t",0.0613214428988667,0.0492215365087479,0.105614183894064,0.570868317113549,0.265378993862478,0.493515078897923 -"Tfru27479_t",7.48228293531947,8.60377777350093,7.58221463950322,6.69560271411555,6.26531881450305,7.20572159522158 -"Tfru27480_t",3.92854279866481,1.94053251847438,2.60236388372064,12.8160165356787,7.58525714111962,7.5173094751685 -"Tfru27481_t",6.78803844313295,6.31177606958976,9.60751108047522,2.36364855210214,1.80330333909431,2.2127421537496 -"Tfru27482_t",34.0092385274841,28.3419697228636,34.8191418159204,6.51975852392546,8.88317745450497,13.0604957997395 -"Tfru27483_t",29.9775399671371,56.7990060426491,39.7480823193169,19.5775011529493,15.8004647174254,12.9541187134081 -"Tfru27484_t",26.4338976855775,27.9538447545436,29.9500022817457,19.1447508320932,21.2653695647914,25.3091422814496 -"Tfru27485_t",0.515401084487408,0,0.665758122399698,0.533121741271685,0.446097204406865,0.377086256603544 -"Tfru27486_t",3.04109961163611,3.35641880175037,5.89241125526611,6.29131901012016,16.1220740796273,5.00620396775927 -"Tfru27487_t",0.938355062493171,1.04118749533452,1.11703306520019,1.08480816867175,1.21826743108879,1.29230086362949 -"Tfru27488_t",1.45499899528862,1.87879494399731,1.30745269820664,2.8137426841666,1.58787762442112,2.26791259901544 -"Tfru27489_t",0,0.618656009330134,0.331861082419422,1.99309274833222,3.33549744579445,1.9736487100213 -"Tfru27490_t",8.49543135891042,6.44027856903785,9.14482364756889,16.8427534384344,18.9954705663025,9.84131575871778 -"Tfru27491_t",6.04638756166649,4.14307666868542,5.71484590731631,8.03394811276242,7.9138531557679,8.55979183070678 -"Tfru27492_t",1.01523113923199,2.13912931322761,1.5299698240847,1.57520562828915,1.53775501579527,1.67125540313414 -"Tfru27493_t",0,0,0,0,0.106462436776455,0.0899927669493085 -"Tfru27494_t",0.103397386795628,0.207487707744568,0.0890408811906879,0.641714539032256,0.492216792308621,0.718668391816109 -"Tfru27495_t",0,0.144397227017098,0,0,0,0.526467321853342 -"Tfru27496_t",0,0,0,0,0,0 -"Tfru27497_t",0,0,0,0.332971984284203,0,0 -"Tfru27498_t",0,0,0,0,0,0 -"Tfru27499_t",0,0,0,0,0,0 -"Tfru27500_t",0,0,0,0,0,0 -"Tfru27501_t",0,0,0,0,0,0 -"Tfru27502_t",0,0,0,0,0,0 -"Tfru27503_t",0,0,0,0,0,0 -"Tfru27504_t",0,0,0,0,0,0 -"Tfru27505_t",0,0,0,0,0,0 -"Tfru27506_t",7.70808832286682,5.24968899112762,6.83898334446549,2.89931267635055,3.16733149486654,4.10146831093531 -"Tfru27507_t",8.13519124883461,7.14797485308863,6.75543604053507,6.32619976677967,6.34973048257844,7.81200397239972 -"Tfru27508_t",0.854342814624889,0.602641493218044,0.601952028080344,2.35657881565518,1.85986104111571,2.23509308459555 -"Tfru27509_t",3.39002911832835,4.19113621163077,4.09377428016092,3.42597482621484,2.76555437574312,2.42325143100283 -"Tfru27510_t",4.46815853612196,4.09198495551932,4.05435566906554,2.38843868452647,2.53064423381621,3.34585815581745 -"Tfru27511_t",8.11571941641153,7.73576812270314,8.57228483538651,9.6408528623478,7.90248572214184,8.67469146228878 -"Tfru27512_t",37.0450012465585,38.8818720417081,33.5945798082818,25.4225340984077,20.6151484157788,19.5184259129508 -"Tfru27513_t",59.8150407519561,55.299658199037,57.8316840153324,35.092035692404,35.7553598483565,35.6268521537587 -"Tfru27514_t",7.68215693631524,7.63718387356788,8.34524827644476,7.65468003512155,7.35068644325289,5.98149911062065 -"Tfru27515_t",16.1010761217768,18.1112151675343,13.9597991697265,16.3147764160743,11.9451686885374,9.69657397521734 -"Tfru27516_t",129.849710141669,155.589476585842,118.277174583675,112.016663797646,87.3893565083246,65.018313792 -"Tfru27517_t",0.0451183548718837,0,0,0.420026635040581,0.39051473855166,0.330102362118033 -"Tfru27518_t",0,0,0,0,0.348468902483957,0.0981869965277599 -"Tfru27519_t",0,0,0,0,0,0 -"Tfru27520_t",0,0,0,0,0,0 -"Tfru27521_t",10.9920119140212,13.7072778889665,11.3251471257432,20.303468183945,19.7074905161799,29.0092104788044 -"Tfru27522_t",15.3562755911149,14.489276536236,14.218659044516,13.9374418562091,13.7726833433883,15.7105193649906 -"Tfru27523_t",7.57218986734118,8.04930997766686,8.81190206667892,17.7819802228792,20.9019089636094,24.4063453147371 -"Tfru27524_t",40.2653285117588,37.9562849984654,39.9185681299598,32.4585178496884,28.913622244773,26.5728152052202 -"Tfru27525_t",12.9570144338129,14.5113957566122,11.9149905278485,15.5769538070747,12.769583215137,15.4082110847744 -"Tfru27526_t",0,0,0,0,0,0 -"Tfru27527_t",1.14872894400338,1.16794584806081,1.64871731922137,3.88153450094526,5.30274160935782,3.24974792154048 -"Tfru27528_t",3.02786330452987,3.33666090798763,4.0216616695397,8.38730441338483,8.52844111735935,9.42439219084961 -"Tfru27529_t",4.31877089889938,7.09826368599838,4.64889851687917,16.9117700961301,10.9471271127947,5.60483103679944 -"Tfru27530_t",0.893727412462207,0.860853255535973,0.769635276249297,9.79923132520444,6.9619638177114,2.48475773766208 -"Tfru27531_t",4.39844904562552,6.35499000160064,5.3028273483983,3.63974214983391,3.80700755593294,9.65419787848865 -"Tfru27532_t",4.4215987774446,4.43641480374898,3.68867959702377,3.57314324947716,4.4250201312135,4.0437539359459 -"Tfru27533_t",1.28260117208317,1.10305624346213,1.42009038976424,4.2643925542288,3.88547259716209,1.67571046418696 -"Tfru27534_t",204.541584988049,177.688286216861,221.652675775595,38.6790106056163,52.2158763354101,62.2858098834065 -"Tfru27535_t",4.26321314959584,3.82458685170957,5.39893402742044,4.99344102589621,5.8062547328807,6.05476708737452 -"Tfru27536_t",16.2974675717337,21.346645257,22.6080362398231,80.1980401230703,92.3678298361764,76.4820914885041 -"Tfru27537_t",4.97691805518054,8.30934185043412,8.40033194882526,9.26646438916542,13.0953842848158,10.7782332396966 -"Tfru27538_t",3.63288115768422,6.92560321796058,3.94828102344633,11.007432518841,19.2276334032035,9.02902250746215 -"Tfru27539_t",0.206413702141149,0,0,0,0,0 -"Tfru27540_t",8.91128034188151,12.9213901828952,8.60227076088393,42.7432294274497,30.3544534023436,20.4533004897014 -"Tfru27541_t",3.24075637397275,6.30313177458461,5.68890644847774,16.503044525063,14.5643456720669,9.02825062731661 -"Tfru27542_t",39.2571833753644,39.0736177071146,38.5393046421589,38.1705182102057,26.5031755293312,30.4453084316848 -"Tfru27543_t",1.47880797334484,0.960913315413862,1.21283681420677,3.20498669606079,4.26652900442777,4.94605678401698 -"Tfru27544_t",4.67905895942239,4.780096558166,4.57884278274898,12.5398331598866,14.3586831818453,9.80328802294126 -"Tfru27545_t",0.099774794265377,0,0,0,0,0.218996650212747 -"Tfru27546_t",19.460631581234,21.3397167775268,23.7641940424672,8.63488511448335,10.2167553409284,14.6271281612139 -"Tfru27547_t",14.3581371209383,14.5901583582203,13.5483795357194,10.9808539018114,12.6918710082884,8.82861768415244 -"Tfru27548_t",0.0683566938742453,0,0,0.0707069518529574,0.0591650482655159,0.0500122537236596 -"Tfru27549_t",6.28029902191752,7.45202330631899,4.93800661532864,14.9695733136926,11.42308496875,7.32519672903743 -"Tfru27550_t",449.975103005338,506.002530194512,417.793814267968,870.801528904116,690.835704216519,410.927359733428 -"Tfru27551_t",19.3455087794801,18.6339190010236,19.7258227390104,11.8469432960867,10.726959785675,7.45475312756618 -"Tfru27552_t",16.1316683576096,19.0024590197488,17.9060157350818,22.3748269954293,25.7943749483314,27.5903011689476 -"Tfru27553_t",15.4755957210561,13.3559435144443,15.831887981793,8.66581268083725,10.1718812689061,7.91724454827303 -"Tfru27554_t",12.3846819017691,14.1555387569621,11.8446450734725,14.9947733234581,14.9181936033508,18.1639273264092 -"Tfru27555_t",4.35968182586589,4.33263047061351,4.17149927324578,8.30334916306838,11.080775287388,9.92351871990942 -"Tfru27556_t",0,0,0.0554798435333082,0.0666402176589606,0.0557621505508582,0.0942715641508861 -"Tfru27557_t",0.0397870598017748,0.0479044553755514,0.0342627118008212,0.267507688788705,0.137748225087983,0.145548330159549 -"Tfru27558_t",0,0.141667027346606,0,0.365121192551616,0,0.129128276946172 -"Tfru27559_t",0,0,0,0,0,0 -"Tfru27560_t",0,0.0581323319111936,0,0.0749127964028316,0,0 -"Tfru27561_t",6.73011305627618,4.47072961438572,2.3982005293072,2.64057260248655,3.01300459882538,5.43337545426543 -"Tfru27562_t",5.42266136150439,6.25558950206214,4.74013448764893,4.70713815087789,6.06145247804346,6.39970295305457 -"Tfru27563_t",33.0342310671646,70.4409037960084,30.0380139789408,14.4103610366854,12.4691454138826,9.65217648027288 -"Tfru27564_t",22.3783099696869,25.3243730631471,18.9552094237818,38.6301410550986,30.8636928722297,23.673442256273 -"Tfru27565_t",53.9516181101039,48.5644967324155,49.7791623629133,53.8135042049699,63.3744514700946,41.7285727261647 -"Tfru27566_t",7.54318523828137,8.84471148550238,9.6163759780656,11.7803010117974,10.9454818472118,10.1720345487315 -"Tfru27567_t",37.8416785237026,45.4507765092451,40.395680611772,131.018190748406,128.130122146818,86.9852443578143 -"Tfru27568_t",83.194742045511,104.505565420739,96.6658170875543,93.015510019011,106.423417776569,111.74109177174 -"Tfru27569_t",6.6780903633901,6.64686376955969,6.67098811782379,6.07877444896745,7.28294466145326,5.37452828370552 -"Tfru27570_t",0,0,0,0.265475082975411,0.111070026962809,0.0312958553087463 -"Tfru27571_t",0,0,0.0308510515852597,0.96348398273322,0.744192862959342,0.445588919850073 -"Tfru27572_t",40.4795762167507,34.4515001418493,38.7128407477068,39.9776763370075,43.4874565293579,52.5355111833204 -"Tfru27573_t",258.875152861914,277.699688685016,260.503514929579,293.438458382155,351.721752048896,247.612807202801 -"Tfru27574_t",0.412068065096002,0.248069301104787,0.133069986451442,0.266397436625643,0.0891647385877609,0.226113034309176 -"Tfru27575_t",24.9261557453745,25.5654497042414,26.235259636542,16.2338499457565,23.9715970280173,26.342168497019 -"Tfru27576_t",0.88431975548892,0.177456592149959,0.951917315360973,0.914724671866154,0.191352221890313,0.80875078718918 -"Tfru27577_t",24.3834995995177,23.0260748838484,25.2327741057148,19.7112011608231,25.0064684119097,26.6848308514518 -"Tfru27578_t",12.1799431006931,12.2834265644321,10.2198409173327,21.9669939786444,29.7342857807253,23.9919378504448 -"Tfru27579_t",12.5984837148111,11.0004913085498,10.7433652826548,16.464374946062,21.4896803983913,27.2478611958924 -"Tfru27580_t",193.913503995587,153.436385669243,167.420944190308,79.3762573467137,66.3649489561972,62.1072320932205 -"Tfru27581_t",276.431202979579,214.696379943782,264.115058660522,333.538209395901,269.201622163777,186.20297535638 -"Tfru27582_t",8.35117988677593,9.30462309581538,10.9484614668817,8.89617243929175,8.63072336122481,8.93705617653563 -"Tfru27583_t",41.0763267260886,25.8467488517189,38.0392708035156,20.9240459338425,24.476158898304,30.3549804056558 -"Tfru27584_t",30.1024384775205,37.5383953887967,31.9405674700828,40.430997722201,46.1938956135574,42.6996759305732 -"Tfru27585_t",8.81946096735744,7.82333237447271,8.11273164442444,9.58919541189839,8.7395404891985,8.15745649350972 -"Tfru27586_t",5.04958154127944,4.96844050537162,4.62900363921535,4.88621710323074,5.04027132211325,4.76704293369871 -"Tfru27587_t",9.43560103989461,10.5725278675432,10.5590098561363,13.4757614144934,17.079876772604,15.9795138431176 -"Tfru27588_t",0,0.0933982063947155,0.100201822669576,6.25864249171579,4.8341613951237,6.12947965027589 -"Tfru27589_t",10.1965101094633,16.0488183444116,11.9112735524218,2.93484221896898,2.80111379168195,2.20560636843994 -"Tfru27590_t",37.9956022216319,40.7666189420861,28.1983870191248,31.3033335150559,32.7212299432436,33.7708595750609 -"Tfru27591_t",17.2050771616802,21.1507303558808,12.2800846291585,10.2611180903067,11.6717794385494,18.4848796156819 -"Tfru27592_t",0.987067090003951,0.968366260035027,1.03890714835741,2.38234428247125,1.80360710450139,2.04616060779717 -"Tfru27593_t",5.75705627621594,3.93647364312347,5.32493848491265,10.5866611769281,13.1955326618269,13.1822272977891 -"Tfru27594_t",8.5537838167292,8.09202060203815,11.0491638932081,4.42394114029813,3.96620969009013,5.36422340302933 -"Tfru27595_t",2.2007274097304,2.61132023983767,2.80154253176851,2.07844615076649,2.48452771019313,2.17017864990627 -"Tfru27596_t",10.6381039892974,10.1202967404333,10.518215088543,9.50951391544021,7.54041428835096,5.28490613410752 -"Tfru27597_t",0,0,0.252075665391756,0,0,0 -"Tfru27598_t",3.83980946462294,2.80194619184146,3.30666014809601,7.94366162410081,7.95622396280776,8.00237621008242 -"Tfru27599_t",3.04498577517328,3.00818609741195,3.00880184901735,6.11764630103793,4.47703734766602,5.84089439335234 -"Tfru27600_t",36.5076859667535,43.0563357954698,30.7492274346971,14.9616179651805,10.0247167834023,9.21585395109602 -"Tfru27601_t",0,0,0,0,0,0 -"Tfru27602_t",0,0,0.0811519517893316,0,0,0 -"Tfru27603_t",93.5501740314276,93.4066146219919,95.4000679217719,274.831484083939,156.362660621081,76.6819851235474 -"Tfru27604_t",6.64570478329593,4.75455495390605,5.34972620223501,6.20172316222238,4.37658564254715,7.08195874181824 -"Tfru27605_t",11.1673220208788,9.43248853843138,10.9367111888215,11.7022769706595,13.1402950636059,11.4279086036879 -"Tfru27606_t",2.07946477157048,2.20327293619851,3.50984166574679,5.67853830950573,6.04748804231564,6.08564948776017 -"Tfru27607_t",4.63693638024223,2.8462193676,3.75821901129527,2.25711282668272,3.06909083161736,3.79167576851031 -"Tfru27608_t",151.835268109864,113.52337771208,145.687015182126,172.203213455904,260.168800771967,211.462361787997 -"Tfru27609_t",4.76259030726796,5.06267887512601,5.06198319077551,5.9471118860348,6.16470794527118,6.49809365886628 -"Tfru27610_t",0,0.609338900755885,0,1.57046103302322,1.53312322357902,1.29595005658025 -"Tfru27611_t",1.10539969436115,0.917878924913583,1.57558728059747,2.83880070579151,5.27868198318106,4.76884084859827 -"Tfru27612_t",2.42337596934644,1.29679802160268,0.695631802872826,2.50669712466524,1.39834299628013,2.36404048582261 -"Tfru27613_t",17.4257331731168,14.4290032569094,21.166650523223,13.281482681026,13.0186358823191,7.78378486884259 -"Tfru27614_t",0.240029647918421,0.578001471574154,0.20670204562124,2.48282410935099,2.4930460909138,0.878072283233967 -"Tfru27615_t",0,0,0,0,0,0 -"Tfru27616_t",7.30525015403891,1.75913491348656,7.54911818790615,15.8684845249824,1.58073574605042,7.21546354483565 -"Tfru27617_t",10.1391834034506,17.6632854653242,8.63543028788999,12.3317987924661,9.06512117496285,7.98882740448941 -"Tfru27618_t",0,0.187837061328648,0.201520100187838,0,0,0.171211865811637 -"Tfru27619_t",34.480859320395,32.3927487790034,35.219404491946,46.4177256161881,53.8997727114813,51.90970625466 -"Tfru27620_t",0.0609212304361475,0,0.262312240636091,0.819205924405149,0.31637640747637,0.089144394236951 -"Tfru27621_t",0,0,0,0,0,0.0482457298480202 -"Tfru27622_t",0,0,0,0,0,0 -"Tfru27623_t",0,0,0,0,0,0 -"Tfru27624_t",0,0,0,0,0,0 -"Tfru27625_t",0,0,0,0,0,0 -"Tfru27626_t",0,0,0,0,0,0 -"Tfru27627_t",0,0,0,0,0,0 -"Tfru27628_t",0,0,0,0,0,0 -"Tfru27629_t",0.0657872958272885,0.052806190303042,0.0566528707654142,0,0.113882293372465,0.0481323882743756 -"Tfru27630_t",0,0,0,0,0,0 -"Tfru27631_t",0,0,0,0.229284548356952,0.167874970391898,0.182449056212863 -"Tfru27632_t",3.71179867915084,4.56839651072355,5.70028837151357,18.6851711322291,14.6177315897652,13.3521300801041 -"Tfru27633_t",0.100581115559949,0.121101774948191,0.108269553977004,0.884334238290236,0.565866492749564,0.496724518201795 -"Tfru27634_t",0.0660718653334231,0.159103826229614,0.227591713621499,0.751779223043752,0.629061964216681,0.676768256051347 -"Tfru27635_t",0,0,0,0,0,0 -"Tfru27636_t",0,0,0,0,0,0 -"Tfru27637_t",946.948607949155,2310.38404308699,1482.28007502444,2580.52550432342,2977.43280984565,2080.71071692174 -"Tfru27638_t",4855.05538164611,4976.42195251923,5666.31794365186,3246.60680450924,4843.75450285005,2993.89304065698 -"Tfru27639_t",28.2172257848567,26.7674981737579,35.3444719218024,10.6135992457146,8.32601270791737,4.6919892995617 -"Tfru27640_t",16.5532358609549,16.5869922192454,15.7455582723713,14.2686446722199,14.8424266895732,20.3432329367406 -"Tfru27641_t",18.239094956959,14.5134141436931,17.9504408039498,10.3723244041966,18.3151412380728,15.8861761769303 -"Tfru27642_t",0,0,0,0,0,0.318471812571905 -"Tfru27643_t",0,0,0,0.308699267592485,0,0.218348347518216 -"Tfru27644_t",0,0,0,0,0,0 -"Tfru27645_t",2.81393980448052,2.65151160503677,1.86132181857961,19.868619146918,18.7432288024405,18.4395179479133 -"Tfru27646_t",0,0,0,0,0,0 -"Tfru27647_t",0.705969551577806,0,0,0,0,0 -"Tfru27648_t",0,0,0,0,0,0 -"Tfru27649_t",0,0,0,0,0,0 -"Tfru27650_t",0,0,0,0,0,0 -"Tfru27651_t",0,0,0,0,0,0 -"Tfru27652_t",0,0,0,0,0,0 -"Tfru27653_t",0.872943054032853,2.2689155572266,0.608548823080839,1.20394241819098,1.47514478824893,1.94644424982097 -"Tfru27654_t",0,0,0,0,0,0 -"Tfru27655_t",0,0,0,0,0,0 -"Tfru27656_t",0,0,0,0,0,0 -"Tfru27657_t",0,0,0,0,0,0 -"Tfru27658_t",0,0,0,0,0,0 -"Tfru27659_t",0,0,0,0,0,0 -"Tfru27660_t",89.3213776018263,92.4304077387979,86.8980151562856,79.1578548656587,67.4901486057961,44.1559337833173 -"Tfru27661_t",0,0,0,0,0,0 -"Tfru27662_t",0,0,0,0,0.150983896009799,0.0510507141415097 -"Tfru27663_t",812.284975971503,1005.56283647089,1028.54957373766,661.012448877447,660.658192678312,537.377755740648 -"Tfru27664_t",647.888025502829,900.911626806412,807.378189998953,453.959560042626,422.903718451836,425.829934372921 -"Tfru27665_t",0,0,0,0,0,0 -"Tfru27666_t",1.55878628775147,2.10729703178077,1.48365237823839,0.806190445663285,0.816610556309247,1.08044050476055 -"Tfru27667_t",0.342899497026316,0.550477591975384,0.885865909805313,0.354689158478713,0.593582402598523,0.250877795209705 -"Tfru27668_t",1.18403032685887,1.13942024448656,1.16435912521226,0.643771507928482,1.62524393282065,0.85135241080109 -"Tfru27669_t",66.4113650367173,57.0386168918368,71.4878616278991,129.317844667876,112.37594121922,59.1570832716323 -"Tfru27670_t",0,0,0,0,0,0 -"Tfru27671_t",5.74643469366034,4.38693805872576,5.3788636407014,4.78105163064614,3.94655065816899,4.54704345927478 -"Tfru27672_t",0,0,0,0,0,0 -"Tfru27673_t",0,0,0.695631802872826,0,0,0.591010121455652 -"Tfru27674_t",0.375717248530624,0.60316194111793,0.776519312709487,0.621816413790946,0.650392167426825,0.769687690133531 -"Tfru27675_t",6.53163787231093,6.61679968799366,5.35319506890396,7.54831780161936,5.77032115770039,6.06411314104745 -"Tfru27676_t",17.9655591873767,13.1845549524043,15.6184234064114,6.72536876871042,6.21992150991731,4.88215342816442 -"Tfru27677_t",7.45253342327357,8.97300671596973,10.2100808825008,4.90557989347575,9.67563251009891,5.94823159610107 -"Tfru27678_t",4.28577347215832,4.69778120524248,3.57164807299454,1.85905370776967,2.71231015559281,4.21455429418388 -"Tfru27679_t",3.65064103297979,5.01813698388207,4.20477545275145,9.48759783231081,8.57083336071441,12.9874569649435 -"Tfru27680_t",0,0.117890743036686,0,3.49418427976844,3.6865410580966,3.11623555063803 -"Tfru27681_t",0.443196594925573,0.513854375862133,0.466472963447698,0.916869395598548,0.596713845519617,0.720575144506187 -"Tfru27682_t",0,0.121065538630134,0.129884588810474,0,0,0.110350197174825 -"Tfru27683_t",110.539969436115,90.9868345205247,113.883926092276,72.3464058657777,80.020020063222,81.1691699142596 -"Tfru27684_t",23.0333085982644,23.2221341780344,21.6558037200531,24.5158327618697,24.9442194416485,21.7366502962157 -"Tfru27685_t",14.825360606726,12.1735942119911,12.1065346192967,12.6911090376562,7.74336070326927,8.54027707526749 -"Tfru27686_t",21.0617564300249,18.1405626172452,23.5378315330665,15.0543067475437,11.4703529065517,8.65705067977151 -"Tfru27687_t",3.28379322885137,3.07514355126314,6.71613324127644,5.66116246431822,2.48695558743437,3.10328477950767 -"Tfru27688_t",1.9939171702084,0.746890087213437,2.06047925223704,0,0,0 -"Tfru27689_t",0.340951204429576,0.109469975676923,0.293610860257443,0,0,0 -"Tfru27690_t",14.8879148708894,14.1230125582177,12.5710047308199,7.79989622385294,10.2083878099366,11.8827733611409 -"Tfru27691_t",0,0,0,0.464699699611148,0.544381722169234,0.657380318998692 -"Tfru27692_t",21.8900277503067,26.0236343304983,25.2700529013009,38.6761051400309,40.6583044991164,36.3596128550403 -"Tfru27693_t",0,0.172024247492308,0.184555397876107,0.221680724049196,0,0.627194488024262 -"Tfru27694_t",2.10025941928619,4.04601030101908,2.53210005886019,0.868988438272847,1.45427688636638,2.45860239305511 -"Tfru27695_t",7.88367172048774,10.4808673486809,12.0929789153775,8.15473021253111,9.80890568516914,7.750726019162 -"Tfru27696_t",7.72409455853184,9.75277965121678,9.11795180581295,10.95212701129,7.88734881552014,8.06411425408055 -"Tfru27697_t",6.42666131453502,4.09493681885474,5.02083833212475,6.30496343226355,5.16107727811413,6.15620078702679 -"Tfru27698_t",10.2047223530455,9.50171464557572,8.78781852018632,9.18335792647891,8.14801352974787,9.46334203825493 -"Tfru27699_t",11.1583486161857,11.6953828679293,13.9767793746085,7.44029617840637,11.1744656471621,11.6048191988331 -"Tfru27700_t",14.8982698258011,14.1473065999044,12.936413064699,10.0001620220245,9.05436479856318,14.980861438946 -"Tfru27701_t",0,0,0.350342450205491,0,0.704250308167739,0.446477432152865 -"Tfru27702_t",0.743454654646386,4.1772967313635,1.28045513772756,2.30704892929637,1.28697068369916,0.543938577377859 -"Tfru27703_t",2.91125068019867,3.79730752261485,2.68610331562255,2.20473551789522,1.25989334214909,1.29320051614904 -"Tfru27704_t",0.904417931750032,0.967945048090688,0.692303502080707,0.415783941757343,0.521869696064491,0.3676139941769 -"Tfru27705_t",0.231009285347702,0.123617791048551,0.132622760710236,0.159301271910696,0.133297606449714,0.112676553302251 -"Tfru27706_t",0,1.02951916052915,0,2.65339981142865,0.555067513861158,0.938397859912339 -"Tfru27707_t",10.4279753944388,10.8291198902372,12.4598517802718,13.4831410127672,13.5950632123467,13.5900248646374 -"Tfru27708_t",0.37074305724381,0.119035313357431,0.446972649401622,1.91745021684211,0.513425202600664,1.19349630730831 -"Tfru27709_t",8.45074795925803,6.38423716137132,7.4486121765287,10.0782091065963,12.47752358125,12.4384913968173 -"Tfru27710_t",0,0,0,0,0,0 -"Tfru27711_t",18.517684345084,17.3775158795795,16.6500675322133,13.8024095544147,19.0918035325246,17.0348869210869 -"Tfru27712_t",2.18445183371044,3.28765734102308,2.42981277897124,2.07126171635998,1.41803813405173,1.99778092610112 -"Tfru27713_t",0.952258678769555,1.27393271442666,1.27561715811596,0.437777550767177,0.641054043108606,1.39341445450227 -"Tfru27714_t",14.9307541655416,17.5774539143799,15.6006164763898,9.06054295829508,9.99384590156992,9.17606343379572 -"Tfru27715_t",17.9414435542799,16.7512930059359,17.1890937165543,13.9933245510718,13.7313697425152,15.3003153215876 -"Tfru27716_t",5.27419405740029,4.6870821872792,6.4884050195008,11.1059060496754,9.61909599726642,11.3007509097824 -"Tfru27717_t",12.9978318778466,12.4688367767255,12.8311269829034,11.3460377223549,8.12199921442356,9.13857870626144 -"Tfru27718_t",14.723468093965,11.9572813019808,11.038315425959,6.98774208095691,7.79612351454143,9.63163824083444 -"Tfru27719_t",5.2041825825247,6.56432343499978,6.40227568863781,42.2958970371001,34.1047231180278,15.7742187439579 -"Tfru27720_t",0,0.65469422346587,0,36.2781581026528,38.8277809466752,17.3056964559704 -"Tfru27721_t",58.1610300725405,53.330824881221,69.911004372376,47.8361423953081,68.1692290484241,58.8055139685056 -"Tfru27722_t",0,0,0,0,0,0 -"Tfru27723_t",0.467590223217704,0.625542718153846,0.536888430185038,1.4049375757923,1.04069642014027,1.17293514643498 -"Tfru27724_t",4.4558256028434,4.4659230673519,4.48012461266219,4.78342259599732,4.44038097471386,4.63455009585359 -"Tfru27725_t",2.28082470872708,2.44103185581845,1.30942472339247,3.9320743813251,6.90946031984028,3.05934686918622 -"Tfru27726_t",36.1283156987303,41.8366126309503,28.3741225468605,25.0133139915693,18.8455605687387,19.947949462001 -"Tfru27727_t",0,0.627288418762648,0,0.80836133792823,0.676407854123899,0 -"Tfru27728_t",1.39640812037605,1.26922021175943,0.937258114464433,1.0195904433414,1.22641292054852,1.62264152071591 -"Tfru27729_t",129.111914231501,152.12398489228,120.743893130627,174.401991158236,164.339356074087,113.612050777825 -"Tfru27730_t",0,0,0,0,0,0 -"Tfru27731_t",0.242104832194373,0,0.625467285021042,0,0.838199934505119,0.885663686259045 -"Tfru27732_t",0,0,0,0,0,0 -"Tfru27733_t",0,0,0,0,0,0 -"Tfru27734_t",1.92390175805841,3.08855748158745,2.76128686889081,5.97014957571445,7.21587768019505,5.63038715947404 -"Tfru27735_t",0.638862180771464,0,0,0,0.276478495506917,0 -"Tfru27736_t",6.03389446424761,6.51981402097917,8.39370185257521,7.44161369791664,6.4277431441608,9.50840704496451 -"Tfru27737_t",0,0,0,0,0,0 -"Tfru27738_t",0,0,0,0.0771063387997202,0,0 -"Tfru27739_t",0,0,0,0,0,0 -"Tfru27740_t",5.26365900479511,5.49016147040936,4.37915661254202,3.59899636382028,3.01151142840472,4.59084163658963 -"Tfru27741_t",0,0,0,0.387941267086092,0,0 -"Tfru27742_t",6.54060026767324,5.25001336637423,4.88145834382339,5.41238473664749,5.53530994810733,5.52972856569488 -"Tfru27743_t",23.9310996277947,23.4777044840999,22.8362439623465,21.4087827393139,22.5792348054318,18.5604500587779 -"Tfru27744_t",5.80027100203757,3.90483547982539,4.51153685320301,4.64492706426466,4.21060123001402,2.87475780925152 -"Tfru27745_t",9.15752922153218,9.50780461732366,9.17179100535003,10.7079144052578,12.3630766109938,11.7977958434516 -"Tfru27746_t",409.01052005299,410.766379132032,393.353992817219,491.599173651496,383.929098000725,194.932046877941 -"Tfru27747_t",10.7735802026453,12.4281792708248,13.2321176366505,13.9452244123673,15.4905456711766,15.0755227324683 -"Tfru27748_t",16.5085893219001,15.7541158009112,19.5870497379079,12.332805346667,11.9072889167553,11.8098804906577 -"Tfru27749_t",0.540259657694196,0.433655980816621,1.16311440462112,1.11767001707119,0.233806573370801,0.197636848316327 -"Tfru27750_t",12.1657678177672,10.6883077116258,9.32988700156388,9.95455055370191,8.90587430411689,9.47660144297178 -"Tfru27751_t",8.40878771190226,6.9984034265782,8.17559982104304,7.57559109010922,8.21720104150745,8.36355749482538 -"Tfru27752_t",0,0.254466056667866,0.273002701763902,0,0.274391865352147,0.115971810993166 -"Tfru27753_t",18.4193874204778,15.5061000841194,17.2159591473305,11.2818760405595,8.68418461555682,7.55987366848496 -"Tfru27754_t",0,0,0,0,0,0 -"Tfru27755_t",0.244216211544905,0.400202873315584,0.637936177034797,0,0.211377454413718,0.369308756043542 -"Tfru27756_t",0,0,0,0,0,0 -"Tfru27757_t",8.56328947777629,8.75477908482311,6.90855012993736,5.03491155222465,4.99322536091461,6.19926569064325 -"Tfru27758_t",9.02124851236968,6.78860788761551,6.79758405063099,8.74820575442413,8.78422280355483,5.36272334055614 -"Tfru27759_t",0,0,0,0,0,0 -"Tfru27760_t",19.9169730218591,18.6682218163322,32.4692751086445,68.3702136076499,52.5476787469363,51.6893047844091 -"Tfru27761_t",1.10057262146001,2.06128617955848,0.947760471189091,5.12285760553861,8.41448416784042,12.4808964276269 -"Tfru27762_t",0,0,0,0,0,0 -"Tfru27763_t",1.80451883279959,4.02347881962915,3.28059332549223,10.3697904328502,16.4864324826738,17.0165798087346 -"Tfru27764_t",5.08187788824615,6.17389958584983,6.50019684438017,5.41235184510933,6.61426219173395,11.5014882992037 -"Tfru27765_t",0,0,0,0,0,0 -"Tfru27766_t",0,0.443641480374891,0.475958657680478,4.00192043941435,1.43514166417732,0.404375393594583 -"Tfru27767_t",0.210025941928619,0,0.152470899514466,0.325870664352317,0.272676916193696,0.0768313247829721 -"Tfru27768_t",1.20301255519972,0.965634916710997,1.38130245283883,2.90354132119805,1.73541394554461,2.78719841694792 -"Tfru27769_t",0,0.452573859174368,0,0.583213716961609,0,1.23755154012834 -"Tfru27770_t",157.173844136961,142.720025808099,129.489673896141,155.31793352421,112.476351591121,80.2935971402808 -"Tfru27771_t",5.48291073925328,5.0367302514499,4.66915788332242,8.00301172303492,9.91312743425959,7.39898472166693 -"Tfru27772_t",3.23709708660623,1.8559680279904,1.72567762858099,3.82673807679786,2.80181785446734,0.563899631434658 -"Tfru27773_t",0,0.0825379498371904,0.0442752239702778,0.21272666787585,0.133501550156033,0.338546841148959 -"Tfru27774_t",0,0,0.176452965774229,0,0,0 -"Tfru27775_t",26.4338382962389,24.4822279361027,27.2794037278477,25.7929052379074,27.1403266054363,27.169905426437 -"Tfru27776_t",0,0,0,0,0,0 -"Tfru27777_t",0.133561807267802,0,0.115017036514203,0,0,0 -"Tfru27778_t",19.0342769204103,17.9174503546674,19.1481452148615,25.3268514965206,26.1350480608582,18.6737308432352 -"Tfru27779_t",0.631656968206372,0.760528252071255,0.815929127452262,0.653374765618681,0.956761109451566,0.346607480223934 -"Tfru27780_t",0,0,0,0,0,0 -"Tfru27781_t",0,0,0,0,0,0 -"Tfru27782_t",0.61321442898594,0.984430730170578,1.05614183893594,137.642694236766,132.158738942926,57.4272091805938 -"Tfru27783_t",1.66632152273945,2.11774643854993,0.478318783255761,5.17084029385495,16.4657796224954,16.1536272932133 -"Tfru27784_t",3.28165534232986,4.21459406317008,0.56520090594308,11.5412526947393,22.7230763473641,21.6088100932038 -"Tfru27785_t",45.8861025300569,37.748103351899,40.1046903732514,29.9895466469162,36.9496980639284,31.9017022468428 -"Tfru27786_t",40.0664873833057,38.9039452021065,38.955385520926,28.0750110826612,34.6789103671983,36.8790358958266 -"Tfru27787_t",0.0910188264046018,0.219177156068206,0.156762114772338,0,0.078779896336207,0 -"Tfru27788_t",0,0,0,0.223390344029009,0,0 -"Tfru27789_t",0.929551141730003,1.39371962352432,1.46503850706495,2.12258136279589,1.97344462659321,2.37391149642586 -"Tfru27790_t",16.9976489804606,16.021517453539,21.2504704895783,17.8795635536453,20.9354135815496,23.0415065080053 -"Tfru27791_t",3.32292565323169,3.82989480826687,3.52190098015905,20.2705213795897,15.855452868599,7.35585908672674 -"Tfru27792_t",40.8586447821432,36.2099515773585,41.037793226192,28.0750110826612,36.1945339212278,37.519614683099 -"Tfru27793_t",0,0,0,0.218730829325448,0,0.15504187923425 -"Tfru27794_t",7.64340219628492,8.61082266777138,6.92856018842144,8.80778385160826,8.3565790756887,9.32032032482982 -"Tfru27795_t",0.557513906405292,0.419536530590945,0.360078221322773,0.50459718522687,0.33175125985131,0.229442363516134 -"Tfru27796_t",41.1391020272552,40.3210648555166,44.3770113408487,43.0014897289656,44.6028220303091,36.1186434031292 -"Tfru27797_t",0.219922452281276,0.0882637500222311,0.37877338202845,1.59238719055234,2.37937972245808,4.5052923432947 -"Tfru27798_t",9.37745287322256,10.2430640532128,8.90793050462074,6.59991218941402,8.28385568183382,7.5681949383457 -"Tfru27799_t",1.1029808766492,0.66400606690685,0.712375758979108,2.28180771537728,2.94355824920985,3.09342751861419 -"Tfru27800_t",0.954663372402812,0.383144914869231,1.64422081744168,0,0,0 -"Tfru27801_t",0,0,0,0,0,0 -"Tfru27802_t",0,0.124416060916946,0,0,0,0.907233355370889 -"Tfru27803_t",0.376728146957163,0.302392399179303,0,1.16904274207109,1.14124867764178,1.24032631936637 -"Tfru27804_t",1.50242104509295,1.80894648331702,1.40163086076996,1.6835841576076,1.30039661970168,2.1068500387581 -"Tfru27805_t",38.8567190551667,38.8328228159966,30.8824948416743,24.6239868249161,25.1241619308269,27.8109731389917 -"Tfru27806_t",10.0254074999159,12.7329125787358,10.0540874154138,8.0072952771365,9.2265300947716,7.89203940368898 -"Tfru27807_t",159.060667779668,155.090914455654,154.385889771889,106.068871362565,123.744824831202,121.076428185781 -"Tfru27808_t",88.8633510393744,136.944550624993,111.443978383724,29.5612241517721,71.6870762984198,164.196135428359 -"Tfru27809_t",0,0.402588089653639,0,0,0.217056251696475,0.183477790526501 -"Tfru27810_t",0,0,0,0,0,0 -"Tfru27811_t",0,0,0,0,0,0 -"Tfru27812_t",30.5690577198776,30.0649380676615,30.43028260648,22.3048961159054,23.5456921698414,21.863869574739 -"Tfru27813_t",32.935886347897,38.6976364017923,24.2522570572648,26.1684018343528,15.2864331805557,25.8432637906361 -"Tfru27814_t",0.917143851216675,0.44170418133396,0.31592015706303,0.189735466871801,0.317527704446808,0.939422311756865 -"Tfru27815_t",0,0.0709452972298628,0,0.274273047324412,0.114750937903712,0.193998084670314 -"Tfru27816_t",0,0,0,0,0,0 -"Tfru27817_t",0.542391241709488,0.241870534494206,0.467081379990606,1.43376858538561,0.782430175591668,1.27868488878404 -"Tfru27818_t",60.6608734766074,68.4654056275648,62.9999882463739,12.9884392909109,12.187978887519,13.474191050907 -"Tfru27819_t",0,0,0,0,0,0 -"Tfru27820_t",0.142390469104148,0.114294076299974,0,0,0,0 -"Tfru27821_t",0,0,0.143828461167861,0,0.289120653353157,0.122196938024608 -"Tfru27822_t",3.44304822616559,9.39647200463463,13.6389464442713,4.98599923284578,5.36413605288488,9.06861537849773 -"Tfru27823_t",6.53084201050121,8.10155183949638,7.92479574201573,1.53531526196616,5.90960572198353,5.21258457891543 -"Tfru27824_t",0,0,0,0,0,0 -"Tfru27825_t",110.089427380593,97.1953303947414,123.99061391812,92.0983599567608,79.2184595387374,57.2047446606868 -"Tfru27826_t",1.06342249077781,1.70717734220214,1.37365283482469,2.19997072980467,0.460214204546323,0.389019365989732 -"Tfru27827_t",10.6740046591262,11.7426935534252,10.4050916870285,11.5938775235858,11.8649484763204,12.8043949202967 -"Tfru27828_t",0,0,0,0,0,0 -"Tfru27829_t",0,0,0,0,0,0 -"Tfru27830_t",6.08639327905342,5.2319138757195,5.57338582012047,4.38560693527545,5.24087375352473,5.43728771422558 -"Tfru27831_t",0.512258394947851,0,0.441132414435573,0,0.443377099501946,0 -"Tfru27832_t",0.300037059898027,0.120416973244615,0.129188778513275,0,0.389538451705281,0.768313247829721 -"Tfru27833_t",58.8442727165645,65.6511216244652,63.7407189140387,54.3596291783014,42.923590919184,34.1171697714696 -"Tfru27834_t",39.7442858947074,40.1162494435319,40.9890742025121,36.1873372311922,25.7485284413311,24.2029555690269 -"Tfru27835_t",4.44580461016784,3.32245371434048,2.37631913761644,2.06146892291004,4.77682188952461,6.28110100415539 -"Tfru27836_t",9.7540137824527,7.07167842874745,5.4191547541149,3.5801021801503,11.4381328141176,13.5821667781134 -"Tfru27837_t",8.08623024030831,6.58975471510577,7.60135002449893,5.04409159614657,4.75498320670859,4.51616898063025 -"Tfru27838_t",0,0,0,0,0,0 -"Tfru27839_t",0,0,0,0,0,0 -"Tfru27840_t",0,0,0,0,0,0 -"Tfru27841_t",3.4389386471525,2.38830502842145,3.70044427043482,2.47806881602755,2.62503157895311,2.48503180799652 -"Tfru27842_t",5.17774145643244,4.16056806858243,5.20693110686098,5.38682409662107,6.41880871887324,6.27848522890192 -"Tfru27843_t",0,0,0,0,0,0 -"Tfru27844_t",0.2156877452412,0.432820956463316,0.185739963972873,0.66931073551182,0.74674037810854,0.946830189880016 -"Tfru27845_t",6.6112230231737,11.1545456137337,5.50599029107573,16.7589020583295,15.6796873717732,18.5683988654887 -"Tfru27846_t",3.60802460239479,6.95629841227841,3.32028759597907,21.1118454266708,33.0350475871437,50.6730893221253 -"Tfru27847_t",20.5668557241303,18.4113055191601,23.4748339778147,16.5865013114319,11.706627218053,11.9359535264501 -"Tfru27848_t",262.072995662804,199.771758612817,284.409095896975,3.86971413918377,7.44180750445297,10.7083658916267 -"Tfru27849_t",12.7457240889598,15.2540689976018,14.2208427642694,22.3008733378913,16.7888439299707,18.9860871226564 -"Tfru27850_t",0.127384953406289,0.10224943899467,0.109697825576094,0.0658823683300111,0.055128009339135,0.0465997420973296 -"Tfru27851_t",7.15325231152529,10.7928145033586,8.75373899990077,13.6857334068579,10.8931111206701,6.45343777946603 -"Tfru27852_t",16.0450215219173,21.5859773961565,16.9309409258016,5.61014728138488,6.06356200098962,7.64696440341619 -"Tfru27853_t",0,0.199507411292854,0.642121739355922,2.05677736869313,1.07564858459052,2.00034218369868 -"Tfru27854_t",74.6229230597536,68.4342641486203,64.7353634802442,23.5548590208397,28.6919752351639,29.7532742677664 -"Tfru27855_t",0,0.130938844693174,0,0,0.141191930715183,0.238699261461661 -"Tfru27856_t",0,0,0,0,0,0 -"Tfru27857_t",0.928291456038093,0.812859929888312,1.16276389299743,1.00385404722629,1.0956380359365,1.2348580577876 -"Tfru27858_t",336.725074024532,305.727819328428,299.68432871457,76.5049219048999,83.600213199174,73.9681232572926 -"Tfru27859_t",208.773571283758,195.127894049953,153.435877861633,40.6835038385595,33.4565713986786,44.3281454831652 -"Tfru27860_t",11.0837219774095,7.93335353140995,9.9703339652598,12.1220235927137,14.1150403676737,13.5326434239588 -"Tfru27861_t",0,0.043930622160902,0,0,0,0 -"Tfru27862_t",0,0,0,0,0,0 -"Tfru27863_t",0,0,0,0,0,0 -"Tfru27864_t",4.4994080902841,16.5617101074614,15.8861671634687,549.650146840216,251.522027668799,191.073097226146 -"Tfru27865_t",17.7150495385455,28.5062872654052,29.464830481253,132.211002672419,80.5072025079694,89.9914659571642 -"Tfru27866_t",30.5203861231618,28.3943950505807,28.5503297530092,17.1959947754899,14.7185122940404,17.2696391657194 -"Tfru27867_t",0,0,0,0,0,0.201524786315993 -"Tfru27868_t",0,0,0,0.695190750448126,0.581710754404176,0.491720478490671 -"Tfru27869_t",6.24498291866719,6.72198477990414,6.24186776808959,4.55355871870977,4.62547242678071,4.62897964571063 -"Tfru27870_t",3.47813661792617,2.57707662485291,2.07360332390734,1.93723537194584,0.694718257818335,2.74048037442448 -"Tfru27871_t",28.7682592725755,32.6188330465561,27.1676401873504,26.9733280997506,22.875836526614,25.6642450430516 -"Tfru27872_t",0,0,0,0,0,0 -"Tfru27873_t",0,0,0,0,0,0 -"Tfru27874_t",0,0,0,0,0,0 -"Tfru27875_t",3.62895795988974,2.03902606962804,2.81257643069937,5.44290814468953,8.71623835781146,5.11102549312212 -"Tfru27876_t",0.100131557534502,0.160747330195434,0.172457010649425,0.310722921909242,0.173334551414348,0.146519808882903 -"Tfru27877_t",0,0,0,0,0,0 -"Tfru27878_t",0.389839335366346,0.156458248299268,1.00713293690163,0.604864342185276,0.674838462350989,0.855662085750038 -"Tfru27879_t",0.226443064073982,0.181761469048476,0.780007719325433,0.234228689561414,0.587982568611744,0.662696062818089 -"Tfru27880_t",7.31603281109284,8.55982499108587,7.79518415590063,9.68393019772692,4.50772171419838,3.2660400793352 -"Tfru27881_t",6.0649202482061,6.58107736128325,6.52852383395961,3.48524774708361,3.59680780718958,2.62952127599477 -"Tfru27882_t",0,0,0,0,0,0 -"Tfru27883_t",1.61207457237028,1.73344636357926,2.06926559066882,1.54165218954994,2.3693866722117,2.18087467885048 -"Tfru27884_t",0,0,0,0,0,0 -"Tfru27885_t",0.771917703872411,0.619603415163717,3.76685197992765,16.1022359924984,11.246704863936,7.5301757827109 -"Tfru27886_t",0,0,0,0,0,0 -"Tfru27887_t",0,0,0,0,0,0.167024619093418 -"Tfru27888_t",0,0,0,0,0,0 -"Tfru27889_t",0.224626675859485,0,0,0.464699699611148,0,0.164345079749673 -"Tfru27890_t",0.322187446870364,0.258613633813939,0.24277085895112,0.499897471681407,0.383438296980589,0.530379231483604 -"Tfru27891_t",14.2214097755134,12.0277762870922,11.4104308420973,5.45360208990391,2.8220897464583,2.03022493233287 -"Tfru27892_t",2.35505164463217,2.70516235689208,2.34275638947224,4.62004486273625,4.25247712059768,5.70386248751306 -"Tfru27893_t",0,0,0,0,0,0 -"Tfru27894_t",38.8255127708682,46.4780731790372,40.3521921730707,35.6596849171726,39.6884329546204,32.3242545700473 -"Tfru27895_t",0,0,0,0,0,0 -"Tfru27896_t",4.48910410213629,1.54427874079372,1.10451474755632,1.32669990571432,1.11013502772232,0.46919892995617 -"Tfru27897_t",0,0.210729703178077,0,0.271558886960264,0,0.384156623914861 -"Tfru27898_t",7.45087963229274,7.57186630784693,7.77024776867476,5.72726310008955,4.43737861991369,5.2012743872606 -"Tfru27899_t",0.272760963543661,0.218939951353846,0.234888688205954,0.28213910333534,0.708251730373238,0.199561882553174 -"Tfru27900_t",0,0,0,0,0,0 -"Tfru27901_t",0,0,0,0,0,0 -"Tfru27902_t",16.8560146010127,15.8030364887315,20.4379550726619,8.36907003152019,8.28681050818724,6.51154726892605 -"Tfru27903_t",0,0,0,0,0,0 -"Tfru27904_t",0,0,0,0,0,0.0304584042747164 -"Tfru27905_t",7.60186703964373,6.92327748724262,6.3365447280061,6.30067023109662,7.46540048975781,8.73488379203163 -"Tfru27906_t",10.619289198638,9.09215797981815,9.14482364756889,11.7166980441283,10.4168709557142,9.66866109628413 -"Tfru27907_t",2.44013542489681,2.63018650273716,3.12197280523366,4.61537427796367,3.80163667390382,5.40688493078509 -"Tfru27908_t",0,0,0,0,0,0 -"Tfru27909_t",188.434480201749,133.606563772714,444.216195612253,79.5895911617055,139.991132283134,143.609945432475 -"Tfru27910_t",3.03130225463986,2.43316770679841,2.23749637012682,4.03138966209053,2.6236954135476,6.33660410581214 -"Tfru27911_t",141.228917294927,150.647549171145,147.047855352378,283.404893988912,358.549597919645,229.408638852727 -"Tfru27912_t",0,0,0,0,0,0 -"Tfru27913_t",3.32871304188754,1.1450972550054,2.45702431587511,1.96752099231588,3.70429018225399,4.29095700674712 -"Tfru27914_t",0.181447897994487,0.582578877036584,0.546889861524878,1.03227568261353,0.94229603868232,1.32753908912263 -"Tfru27915_t",0.121402278571456,0.0974472615852378,0.313637496968644,3.01383273389426,2.83710086213095,3.01995958684515 -"Tfru27916_t",9.37347282593119,11.4669146359431,8.15831761207936,7.88104072896615,6.46441694715366,9.24176317198519 -"Tfru27917_t",33.8360488627787,39.4278711893536,33.6766130789435,42.0865165838543,45.9821550017977,36.5551296834417 -"Tfru27918_t",131.287625502819,171.960020949519,85.5561027072961,37.2873607179151,106.879796542196,188.990437689986 -"Tfru27919_t",9.18863495937706,10.0406505631907,8.44476647781627,8.54611791316126,9.02239796229143,12.5980775195609 -"Tfru27920_t",0,0,0,0,0,0 -"Tfru27921_t",0,0,0,0,0,0 -"Tfru27922_t",1.70620687833694,1.49997158161571,2.93860741840641,3.36165740144235,3.09420614120507,2.85331032076028 -"Tfru27923_t",0,0.581323316829279,0,0,0,0 -"Tfru27924_t",0.771917703872411,1.34247406618805,0.332369292346557,1.59691596619819,1.78165621606907,1.22365356469052 -"Tfru27925_t",0,0,0,0.140159425527878,0,0 -"Tfru27926_t",0,0,0,0,0,0 -"Tfru27927_t",0,0,0,0,0,0 -"Tfru27928_t",0,0,0,0,0.34218279679209,0 -"Tfru27929_t",0,0,0,0,0,0 -"Tfru27930_t",9.60118591673685,7.70668628765538,10.1284002354407,2.23454169841589,2.70079993182328,1.93175902311473 -"Tfru27931_t",6.10540528862263,5.88082892589982,5.25768284647049,2.27351626292314,2.3251519985509,2.50148499293398 -"Tfru27932_t",0,0,0,0,0,0 -"Tfru27933_t",0,0,0,0,0,0 -"Tfru27934_t",7.97964090998807,8.13232237664809,6.8716848677712,7.92940357228691,8.4587076101353,8.13411677531573 -"Tfru27935_t",0.766052067824749,1.79344428236661,1.09947896607042,1.25461856589545,0.884058897487162,1.30776723034846 -"Tfru27936_t",2.31930488019333,1.24110745430033,2.66303248959879,1.59936522381505,2.23048602203433,1.13125876981063 -"Tfru27937_t",155.777088766787,110.826814299215,156.532771095457,204.972160776465,167.600520087964,113.007509097824 -"Tfru27938_t",0,0,0.36172857983717,0,0.363569221591595,0 -"Tfru27939_t",0,0,0,0,0,0 -"Tfru27940_t",19.9621918224543,17.8971726968155,19.2591696554466,22.0134405023609,21.6999430688177,30.8439245040945 -"Tfru27941_t",11.5959686125937,10.3743853872284,11.3381495908703,9.30835925971633,9.93215702406946,12.4609251409335 -"Tfru27942_t",0,0,0,0,0,0 -"Tfru27943_t",0,0,0,0,0,0.0515214248335102 -"Tfru27944_t",0,0,0,0,0,0 -"Tfru27945_t",0,0,0,0,0,0 -"Tfru27946_t",11.165936153167,8.5358867110107,10.0734541220477,10.4498609665722,9.66449829547277,7.39136795380491 -"Tfru27947_t",3.78912781829982,4.08424579355448,4.38176372483169,2.46362701572199,2.52999200592089,2.69305674497016 -"Tfru27948_t",0,0,0,0,0,0 -"Tfru27949_t",0,0,0,0,0,0 -"Tfru27950_t",0,0,0,0,0,0 -"Tfru27951_t",1443.54200310854,1523.3261862141,1277.7358651207,480.409936197231,355.620125786649,302.458058935406 -"Tfru27952_t",43.1404637474965,39.639965787008,47.9045957081618,32.2934892601369,36.8482319180641,29.0713120800411 -"Tfru27953_t",0,0,0,0,0,0 -"Tfru27954_t",4.00645612024787,8.03976214807566,4.63616361639293,3.62618126253945,3.79282347412991,9.06861538421966 -"Tfru27955_t",0.137047922955053,0.11000571780911,0.118019112508049,2.33903902634616,2.13515366676956,2.10565457806514 -"Tfru27956_t",17.2646928136611,15.2266117629893,17.300955351281,20.053579344758,15.8100496019961,14.3150955400349 -"Tfru27957_t",21.1629193386425,11.8394703460852,15.4632064657885,5.30679962285729,2.22027005544463,4.22279036960553 -"Tfru27958_t",0.724227383116962,0.581323316829279,0,0,0,0 -"Tfru27959_t",0.815634725936383,1.30938844693174,1.40477118383367,0.843678095410531,2.4708587875157,1.49187038413538 -"Tfru27960_t",22.5876956413797,12.7233028333933,25.9352566675707,12.7069064087067,24.0092882183129,24.3540803085648 -"Tfru27961_t",315.823544995702,287.603020094159,282.78312435924,121.099692006051,138.478494131847,156.519626716866 -"Tfru27962_t",7.38605127599226,5.92864054318356,7.14018977784089,9.06941988895086,8.37260941385069,7.49573900321679 -"Tfru27963_t",4.33437452235085,4.29773476587762,3.73255590727277,4.74712955657397,2.53781247241478,4.7567800472614 -"Tfru27964_t",5.58414616649207,4.98031794807862,4.91566164623628,4.36419599723438,4.94067479858593,6.62769478186938 -"Tfru27965_t",43.2439472925413,43.208063536352,36.5607706698694,20.9675494489427,25.2451550649392,29.1670659229728 -"Tfru27966_t",25.0243675489418,21.7262964492412,31.8848900160423,27.2054131131013,24.9746638540123,21.1110995756252 -"Tfru27967_t",0,0,0,0,0,0 -"Tfru27968_t",0,0,0,0.605566855939266,0.760075027717621,0.42832794304096 -"Tfru27969_t",0,0,0,0.299651185611326,0,0 -"Tfru27970_t",3.81865348961125,3.50303922166154,5.16755114053099,7.61775579005417,9.20727249485209,3.59211388595714 -"Tfru27971_t",3.52984776350619,3.11667460162534,4.13404091242479,4.81959974168133,4.0328686764782,3.30568388982199 -"Tfru27972_t",5.15587149860869,5.41659020443288,5.71322215446793,18.4307114615631,12.2392887774066,7.37802613439371 -"Tfru27973_t",0.753456293914327,0.453588598768955,0.32442025097504,1.75356411310664,0.489106576132191,0.964698248396063 -"Tfru27974_t",29.043280061832,28.4498590308533,27.9749119361908,12.7399713421563,14.9431139732269,15.0317879985123 -"Tfru27975_t",0.246985567996695,0.22657204541616,0.15192296507231,0.0729935689435402,0.458088057444261,0.206518470647216 -"Tfru27976_t",65.9966132906467,85.6535193533045,70.3283835029574,236.130896784525,148.923546536557,41.6071174209326 -"Tfru27977_t",0,0.104873258191267,0.0562563887771648,0,0.0565426472148671,0.0955910728248487 -"Tfru27978_t",0,0,0,0,0,0 -"Tfru27979_t",5.27813885475063,6.00193500151172,5.3028273483983,7.73445206839707,5.7105113338994,4.18348574734508 -"Tfru27980_t",6.07867290183015,4.8792332016,4.16088533393405,5.80400441146984,4.85658329398791,4.78948518127619 -"Tfru27981_t",1.79361947450947,2.00451049566008,1.47329098045029,4.62394898998854,3.4153653268253,4.22957136923177 -"Tfru27982_t",7.76566506735587,3.400008650908,9.119207880543,1.46048476788235,5.4993663682644,6.19815728355291 -"Tfru27983_t",19.0212173822145,7.43823857952225,11.5501143053958,5.04492562132277,11.3978159453969,25.2461711623583 -"Tfru27984_t",0,0,0,0,0,0 -"Tfru27985_t",0.0675324572117745,0.163175647169314,0.0582647399847606,0.14008004264367,0,0.0988184241581635 -"Tfru27986_t",0,0,0,0,0,0 -"Tfru27987_t",86.0207006488498,79.2386148373383,80.8194585177756,75.7355162827216,84.8938711373826,82.4436885580507 -"Tfru27988_t",2.85926406090941,2.7958198243428,3.17855559015335,1.50567303661137,1.57486667768637,1.48337706264154 -"Tfru27989_t",0,0,0,0,0,0 -"Tfru27990_t",0,0,0,0,0,0 -"Tfru27991_t",0.241062774093106,0.0483741068988412,0.518979311100674,3.74026587491899,0.938916210710002,0 -"Tfru27992_t",0.244216211544905,0,0,0,0.211377454413718,0.357354998990568 -"Tfru27993_t",2.74319597621053,2.40833946489231,2.95288636601771,3.99025303288552,4.15507681818966,2.13246125928249 -"Tfru27994_t",0.064425135560926,0,0.0554798435333082,0.666402176589606,0.557621505508582,0.424222038678987 -"Tfru27995_t",123.906698117314,180.312385143973,125.219187422296,74.2771085865085,90.2817542868035,71.6324467430724 -"Tfru27996_t",0.0549446545267805,0,0.047315706976739,0,0,0.040199515909992 -"Tfru27997_t",6.24715339325667,1.15442635731826,0.700075296461749,0.603872949522281,0.438636228339718,0.815706681893539 -"Tfru27998_t",4.46419743430402,3.48705107880826,2.9000344652342,2.35213371260336,2.54921707558605,1.40487362867793 -"Tfru27999_t",13.4843445395279,14.1719375439852,13.7841144741647,10.9376142923488,11.5871945911409,15.4017528664249 -"Tfru28000_t",9.164575213222,7.20011922096112,7.15475754169082,6.20669043403432,6.75635332918513,6.53157553871306 -"Tfru28001_t",0,0,0,0,0,0 -"Tfru28002_t",6.23699085142354,4.66497250679927,4.19100604310781,3.86108473698284,1.92213199266648,4.83976849026596 -"Tfru28003_t",52.6113486485955,58.1986740874118,62.2317642344688,47.6022197284983,44.1884417683365,34.809741442328 -"Tfru28004_t",3.69573545882977,2.09825283851132,3.33783882682367,3.26336859866412,7.09974231005046,11.8049846662249 -"Tfru28005_t",0.486734512001434,0.625107810122684,1.00596592306976,0,0.50554237069515,0.142445098091258 -"Tfru28006_t",0,0,0,0.11374194218231,0.190350377796647,0.160903297974811 -"Tfru28007_t",31.3569789068581,32.7544948823406,25.5861737500941,21.2019563003336,17.2934436683187,25.3496077739454 -"Tfru28008_t",0,0,0,0,0,0 -"Tfru28009_t",0,0,0,0,0,0 -"Tfru28010_t",0,0,0,0,0,0 -"Tfru28011_t",0,0,0,0,0,0 -"Tfru28012_t",626.328277354316,1013.28498955353,700.81047449213,11641.8037430575,11017.2168433453,4497.81260358123 -"Tfru28013_t",0,0,0,0,0,0 -"Tfru28014_t",0,0,0,1.01259245985183,0.462164264735079,0.325556460944797 -"Tfru28015_t",0,0,0,0,0,0 -"Tfru28016_t",3.38367785611871,2.16432269091643,4.14314672941251,5.1953367926948,6.08618080197384,5.60883176515089 -"Tfru28017_t",0,0.566668108484667,0,0,0,0 -"Tfru28018_t",6.76089470291827,0.904473241658512,5.60652344307983,21.7570875752367,14.8461947415942,11.3586697741741 -"Tfru28019_t",0,0,0,0,0,0 -"Tfru28020_t",31.8508906716096,10.5548094809193,37.4939536666005,22.2158783349754,17.4513226363966,21.2722554877377 -"Tfru28021_t",0,0,0,0,0,0 -"Tfru28022_t",12.4201387585695,14.6740683674834,14.421072950319,23.6734391821839,19.6883000396777,23.6875313616605 -"Tfru28023_t",16.8034522219218,14.1433401229628,17.0033114455191,21.1068281810631,26.1861722583542,26.9745055670279 -"Tfru28024_t",0,0,0,0,0,0 -"Tfru28025_t",0,0,0,0,0,0 -"Tfru28026_t",28.1757879018085,35.8953734398103,29.1608885899503,72.4602666990589,61.079629227388,108.556751816433 -"Tfru28027_t",0,0,0,0,0,0 -"Tfru28028_t",0,0,0,0,0,0 -"Tfru28029_t",0,0,0,0,0,0 -"Tfru28030_t",0,0.420408385392672,0,0.288940461603607,0.241775043452433,0.0766397254692989 -"Tfru28031_t",0.506086607056912,0.812451867674513,0.435817566068879,0.261743505503869,0.876070413473724,0.370271444737215 -"Tfru28032_t",0.0714981929969765,0.114780434071463,0,0,0,0 -"Tfru28033_t",2.9814408160214,2.28678289884096,2.62452912815612,1.57624085806589,1.26159666798345,1.01795446084695 -"Tfru28034_t",14.303696385604,12.859056575316,15.3560146264587,17.9518610403698,17.2499358257987,14.5813819565414 -"Tfru28035_t",2.87615143405433,3.11396758836394,3.85920618616089,14.1833304017463,15.5153744246095,17.2748137887829 -"Tfru28036_t",1.90623221199394,1.53009573782461,5.9799538319921,23.0979098665716,29.2269584942352,38.6522580431678 -"Tfru28037_t",6.78387218627512,9.57049744939259,8.14331876305537,31.3289469589395,34.9927962053901,38.854340428583 -"Tfru28038_t",137.844077185967,127.98909156217,164.502287637702,97.9779647143553,115.842343997145,131.584291047378 -"Tfru28039_t",1.86920492198523,3.41752003176312,3.39819185013905,16.1122701781121,18.7503809892231,17.3688049169361 -"Tfru28040_t",2.22925031450021,2.20785924836265,2.52350774720559,2.39887670740846,2.06953590719804,1.77568651328076 -"Tfru28041_t",0.0182591560033574,0.0732813573320849,0.0314478226330945,0.396625890104972,0.584745107537015,0.360694765336274 -"Tfru28042_t",173.313576583392,194.596953613115,218.886701707975,827.830096117599,918.324765140123,694.748193424711 -"Tfru28043_t",6.35479400691736,3.77464400246359,9.30315560852025,16.9590784473823,11.2755961310555,7.67150897984291 -"Tfru28044_t",0.0326507488423814,0.026208124763694,0,0.0337733555488864,0.0565206718370144,0.0238884803056268 -"Tfru28045_t",0,0,0,0,0,0 -"Tfru28046_t",3.91303085722521,8.46123827209312,2.81955737135436,45.5971119702102,47.8307797226966,53.2852990129814 -"Tfru28047_t",0,0,0,0,0,0 -"Tfru28048_t",0,0.100049710707692,0.107337857518448,1.4182303888726,0.431536168061241,1.00313895859073 -"Tfru28049_t",0,0,0,0,0,0 -"Tfru28050_t",66.9437018052794,45.4512443264085,74.2825304106565,45.8442719403785,45.0024264836211,39.6861016201809 -"Tfru28051_t",3.22276477861859,3.94604385665059,2.39898017837395,5.81962348128109,5.15332186651286,5.27528471851876 -"Tfru28052_t",13.0466042301087,14.0935046769895,11.9701184619557,16.1437619882328,9.92032128580841,12.4892719531101 -"Tfru28053_t",13.0051650873949,12.838763410707,12.4867161011407,14.2254335090929,15.9789319809829,13.9991595334099 -"Tfru28054_t",21.5932921545361,23.0749024979994,20.8559134312368,27.0201092525463,22.6094609677273,19.0157528837856 -"Tfru28055_t",45.0528834421011,36.9076123673401,40.9084214106073,21.9988398017022,25.0025521473084,26.8061341356363 -"Tfru28056_t",2.49570575346141,2.34183301941829,1.96756131292184,0.872624373161017,0.578059850229314,1.13157432316344 -"Tfru28057_t",19.9234095110152,22.6222084518441,17.6575018220911,27.7784347609946,21.9506713826546,20.8325252178335 -"Tfru28058_t",0.33559404835465,0.269374853596476,0.433496300736954,9.71971089413037,5.8577730775743,5.93371083543593 -"Tfru28059_t",6.93663661415621,7.73320011662668,6.30536056596901,16.3433605363242,11.6742410602806,9.30434391867186 -"Tfru28060_t",13.2840039725486,12.3032459196931,16.2793574592227,11.4757812873564,17.6888587394694,28.0357570884868 -"Tfru28061_t",0.161248323937519,0.129430911740853,0.277718679337558,0,0.139565919996774,0.117975162814545 -"Tfru28062_t",48.8118685474979,50.6489610675016,42.826551569043,104.151752966716,109.070766477479,78.154842494562 -"Tfru28063_t",0.210025941928619,0.202300515050954,0.253210005886019,0.173797687654569,0.0363569221591595,0.122930119652755 -"Tfru28064_t",11.2297107678597,11.3038823438876,10.5329926065303,7.81712865353825,7.59187175144299,10.8807367467215 -"Tfru28065_t",8.05974552151074,8.11309357235596,7.32500374170268,6.0557631792139,6.27156907245502,5.45502405959102 -"Tfru28066_t",379.591544781671,451.058363062019,218.050748126014,195.438695697021,131.139609245193,267.539859356356 -"Tfru28067_t",696.695597617704,852.208651653847,531.58696683921,536.864534902173,503.251434586868,536.187248418714 -"Tfru28068_t",0,0,0,0,0,0 -"Tfru28069_t",0,0,0,0,0,0.608564791114674 -"Tfru28070_t",16.7745760492906,14.8993832688918,13.4982186911415,10.8090214907915,11.7817849222808,10.3615403635301 -"Tfru28071_t",4.13599728098894,7.38342433821257,3.10582238694379,2.36156763453432,2.10494980598521,2.28769127750795 -"Tfru28072_t",3.28165534232986,4.74141832106633,5.6520090594308,0.678897217337604,0.568076908684103,0.480195779848974 -"Tfru28073_t",20.1234158313002,32.7758198803483,25.7416152163195,29.4041436671393,24.3506827484603,20.5121769420586 -"Tfru28074_t",10.5513827741564,13.8297649398903,12.0767888339913,10.9141632151916,11.6758319175679,13.4851800572975 -"Tfru28075_t",8.1961343191656,10.4461922735606,7.34425857546791,27.0377417840991,28.4240670275301,30.3881310941221 -"Tfru28076_t",2.23365846659683,1.39448902546202,2.7784174522205,2.05373929281618,3.11477324258678,2.26975848694157 -"Tfru28077_t",17.5747587114299,22.3156865114818,23.8760433219845,23.8207831591475,23.3418652635902,19.5646222891897 -"Tfru28078_t",0.137496524994186,0.220731603983583,0,0.426671900952298,0.238015857015774,1.00597479257574 -"Tfru28079_t",23.0516277726533,36.5950118689734,22.3874700326053,23.8441949526086,30.2604870410078,27.9216277869826 -"Tfru28080_t",18.5792157649893,38.9039406480803,23.6514812976761,57.6540338673004,46.1453188772442,40.1886882589843 -"Tfru28081_t",17.6231541260724,28.4522774445918,15.0899884318247,37.5974735510183,27.7335282262957,27.2526844522199 -"Tfru28082_t",33.2382252925146,45.8939462456792,37.8140947343393,42.4242994365509,46.9802696503114,49.5290137257926 -"Tfru28083_t",36.0750441430333,35.3034232147743,27.6068218415042,18.2349949433951,15.4867214065385,14.4623670179712 -"Tfru28084_t",0.742857029329519,1.24676094484779,0.697868642772674,1.04781564100424,1.63664601359561,1.28463951405613 -"Tfru28085_t",6.02533439959152,6.08007012448222,4.59573195694765,10.3281412745543,9.68524565715315,7.43122649540222 -"Tfru28086_t",2.95811185814956,3.50226830633987,2.61106897417675,6.27262781147653,3.45646795175108,4.16620563964004 -"Tfru28087_t",1.05354397251699,0.626414352224659,0.571238816277927,0.524702726314306,0.472825741038768,0.342582776552035 -"Tfru28088_t",1.93996564755984,2.48091955835481,2.88816556895431,5.33977239956309,6.46029066937707,7.72222473748228 -"Tfru28089_t",14.2237886089677,8.84468604166193,13.3031770895967,4.95394180412724,2.80507757764626,2.81901474557326 -"Tfru28090_t",0.0447577926326305,0.0359262147133642,0.231259614174003,1.11112000631584,0.426133344433409,1.96478614255869 -"Tfru28091_t",0.0811851341046071,0.195497212070887,0.419476513147085,1.98184452485883,2.43129011733073,2.83922483542796 -"Tfru28092_t",1.55132798015457,2.29886948921538,1.54145701635157,1.35779443480132,1.44601394951203,1.57154982510625 -"Tfru28093_t",10.5818108748263,10.5534949711249,8.71635132137758,6.99569005619433,7.12802745508166,7.50641201603627 -"Tfru28094_t",292.587863928144,249.138565333687,302.569028849022,98.7778729711622,81.5792021847151,88.2614036423109 -"Tfru28095_t",0,0,0,0,0,0.0668098476373671 -"Tfru28096_t",11.2171799709715,8.27604683626801,7.57461325309745,6.08028355486202,4.17495756851593,5.51093637584352 -"Tfru28097_t",10.360892056784,6.76902734023331,4.78955524333238,4.50354026794741,4.94915591178707,5.07526679223677 -"Tfru28098_t",42.2461359290453,50.7362987078077,37.4869771074084,40.8740259684742,29.6833762178989,26.2078553370597 -"Tfru28099_t",0.538959915133584,0.540765878243662,0.174047432159023,0.62717690011673,0.524799197165093,0.246451723441771 -"Tfru28100_t",9.0740582323883,15.4943864656403,8.93868949776983,18.4603761498377,11.331651306681,6.65116131640556 -"Tfru28101_t",18.5930207337947,15.1437326156939,16.9532678589267,19.3029978558574,16.6845436108755,14.0034310426247 -"Tfru28102_t",11.1771231471913,12.0595810333592,12.0426965317077,8.17365362731885,10.8890781714314,9.28061546883426 -"Tfru28103_t",0.760274902909027,0.381411227471632,1.30942472339247,0.0983018595331274,0.0822554799980985,0.139061221326646 -"Tfru28104_t",4.22030150186235,3.91685978905562,4.59968837783528,3.75151994544792,4.22356709541257,4.63159006540994 -"Tfru28105_t",1.12566795391925,0.760885811193056,0.561215003978683,0.490261460238559,0.564070724613194,0.216731522660006 -"Tfru28106_t",4.39765510175447,13.7544874854138,7.44351229267822,470.414499346619,607.829987433458,557.734396655597 -"Tfru28107_t",0,0,0,0,0,0 -"Tfru28108_t",45.3749453570963,32.6187486539663,41.1433936717098,30.1626646167779,32.9782407511995,36.2248406601845 -"Tfru28109_t",10.5748503080329,11.1332082527541,8.94729887289857,6.76478892311661,6.48996889453078,7.81074904737839 -"Tfru28110_t",11.1827456600928,7.7980509129458,14.7460069983538,15.7603560352313,12.4012796050378,11.0453019321943 -"Tfru28111_t",3.7556220702504,2.59716387960876,2.08976621088874,2.03202248289386,1.90036181849802,3.38184648288185 -"Tfru28112_t",11.2339457310656,14.3100170530229,11.9875168899527,10.1045167241029,12.0485149015819,13.9368449606322 -"Tfru28113_t",1.35537042384696,1.30551555827451,1.01155612538493,1.6589991695986,1.83788689591879,1.98327700434669 -"Tfru28114_t",6.65428726902554,5.95551351239111,6.61855856969395,4.43958449652266,5.26995386544649,5.01457517791438 -"Tfru28115_t",1.36012482630514,1.63761884822682,1.17127440853913,4.17377069650746,9.22166940896113,140.178814261345 -"Tfru28116_t",25.5122237927405,24.4718364980992,24.121316084908,22.5131077254155,20.7256446381096,22.3988096040681 -"Tfru28117_t",0,0,0,0.132366860361439,0,0.187250753469544 -"Tfru28118_t",0.0341783469371226,0,0.0294327566995256,0.0707069518529574,0.029582524132758,0.0250061268618298 -"Tfru28119_t",0.0341783469371226,0,0.0294327566995256,0.0707069518529574,0.029582524132758,0.0250061268618298 -"Tfru28120_t",0,0,0.13952886396805,0.670386451898049,0.210358276716449,0.829807943654087 -"Tfru28121_t",2.68118223738662,5.32909158188936,3.13351505330071,10.3010787515626,6.63044173115371,7.0526018493792 -"Tfru28122_t",4.94663651254843,4.76468337705877,3.90482274603421,1.70557102703208,2.56888949505347,1.9905269619926 -"Tfru28123_t",12.2042101390954,13.3841838504995,14.6035693549128,10.9357497721836,10.8088146959663,11.6804378893032 -"Tfru28124_t",0.17649238817531,0.283334054693213,0,0.365121192551616,0.152760177139326,0.516513107784687 -"Tfru28125_t",0,0,0,0,0,0 -"Tfru28126_t",0,0,0,0,0,0 -"Tfru28127_t",0,0.143475542589329,0.153927055249859,0.184891157079329,0,0 -"Tfru28128_t",0.0778234152584043,0.0312336753205116,0.0335089004017758,1.08673866759457,1.11142050139163,0.711730660333229 -"Tfru28129_t",0,0,0,0,0,0 -"Tfru28130_t",36.659073500268,34.6800882944492,36.3205023020179,27.3110652028609,34.1309881494151,32.8649911724714 -"Tfru28131_t",11.9695438145176,9.37336064181462,10.2453099067695,7.09686474349675,7.95998643276125,7.95681486892292 -"Tfru28132_t",0.319431090385732,0,0.550157535874022,0.330413854856596,0.276478495506917,0.233707451811322 -"Tfru28133_t",6.06419794669476,6.66357489892498,6.13858515250129,2.82573360642159,4.80538240420382,2.20286847848434 -"Tfru28134_t",0,0,0,0,0,0 -"Tfru28135_t",0,0,0,0,0,0 -"Tfru28136_t",0,0,0,0,0,0 -"Tfru28137_t",0,0,0,0,0,0 -"Tfru28138_t",0.546705271831545,0.438829750652828,0.156932138757991,0.565502237487753,0,0.666649238897806 -"Tfru28139_t",15.3254083991619,16.1455993009787,14.9159338384163,11.3525805475075,12.6083388010387,13.5193932064669 -"Tfru28140_t",0,0,0.516755114052301,0,0.519384602272905,0.439036141616305 -"Tfru28141_t",0,0,0,0,0,0 -"Tfru28142_t",0,0,0,0,0,0.368054250457352 -"Tfru28143_t",0,0,0,0,0,0 -"Tfru28144_t",0,0,0,0.549992682451168,1.38064261363897,0.389019365989732 -"Tfru28145_t",4.13879989280251,5.07062656566781,5.12735411350871,5.6330279058309,5.15344445471233,5.04682859421425 -"Tfru28146_t",0,0,0,0,0,0 -"Tfru28147_t",43.4217856479989,54.8268013664486,42.2723868226135,36.69628595639,37.2631797496371,38.8888171775396 -"Tfru28148_t",0,0,0,0,0,0.0709758196609442 -"Tfru28149_t",3.2934283517117,3.99134196593122,2.73815879004014,2.0130934314609,1.78990536453295,2.54102852759222 -"Tfru28150_t",0,0.0690092646799447,0.154305220924766,0.0445585129840156,0.0388940105289969,0.233314958808313 -"Tfru28151_t",0,0,0,0,0,0 -"Tfru28152_t",0,0,0,0.0953884125436714,0,0 -"Tfru28153_t",3.14295646162139,2.18187276091356,2.04821036105981,4.74472959218743,4.55840075605236,2.79669129644792 -"Tfru28154_t",0,0,0,0,0,0 -"Tfru28155_t",6.94938778440282,5.33022190391606,6.78241087194693,0.638962086965328,1.20298639497219,0.2259744846558 -"Tfru28156_t",0,0,0,0,0,0.14806749775617 -"Tfru28157_t",0,0,0,0,0,0 -"Tfru28158_t",0,0,0,0,0,0 -"Tfru28159_t",6.96541731459469,6.87138880236362,6.22722618453861,14.2998097437304,16.7978184659408,18.0115966453246 -"Tfru28160_t",319.481188211418,359.968782176997,307.59941105578,607.291632329671,412.951861186195,241.261414685408 -"Tfru28161_t",0,0,0,0,0,0 -"Tfru28162_t",0,0,0,0,0,0 -"Tfru28163_t",49.2280317544884,46.751155612385,47.5099610347112,33.1169374341786,36.2682467392591,38.2657476114217 -"Tfru28164_t",8.59711216512119,2.66344184986295,15.3263814796359,131.050321032171,72.5832988168499,23.7252923925874 -"Tfru28165_t",3.30584243385458,1.43206693977356,5.64847876073032,59.8141948142834,28.0681797556035,12.822816978145 -"Tfru28166_t",0,0,0,0,0,0 -"Tfru28167_t",1.86185159331316,1.42157118684454,1.8770780359118,3.89870488522412,5.14892627335124,4.31916636617789 -"Tfru28168_t",0,0,0,0.59519756046075,0,0 -"Tfru28169_t",0,0,0,0.897020323378422,0.938243152494439,0.396548773073405 -"Tfru28170_t",2.51573723544262,1.49920224402552,2.13360777580908,0.51256123854569,0.461884673528342,0.61353507993662 -"Tfru28171_t",0,0,0,16.7113161206317,20.3758574738147,5.06580163404212 -"Tfru28172_t",0,0.0604784798358606,0,6.15695844157443,6.39099259479396,2.59090386712085 -"Tfru28173_t",15.7962719178854,13.7144119950122,14.4913521623179,6.70248181476754,7.58947262263345,8.70322604602202 -"Tfru28174_t",85.7161712236596,115.01349079039,88.1369128537266,71.9010738266366,55.7349771170872,33.0725702619088 -"Tfru28175_t",0.943936817656713,0.54119987975108,1.27737219204137,0.278969001050673,0.233431281920767,0.591958842629641 -"Tfru28176_t",0.233038493124681,0.37411098483764,0.50170399422631,0.301313605503761,0.504256895411367,0.170499472472615 -"Tfru28177_t",0.127481603598555,0,0,0,0,0 -"Tfru28178_t",0,0,0,0,0.443377099501946,0 -"Tfru28179_t",14.7346547974395,17.3282562178247,15.1232546974751,22.3302263539861,20.5635344911086,20.2446101195649 -"Tfru28180_t",0,0,0,0,0,0 -"Tfru28181_t",6.26943110234682,5.24802331155637,5.70744454327304,3.705707625897,5.27136611262867,4.7180003278243 -"Tfru28182_t",0,0,0,0,0,0 -"Tfru28183_t",17.3595570649106,33.3910551932066,15.8303729605347,87.4462955943612,65.6287490298478,44.5821748509678 -"Tfru28184_t",18.2602172441124,19.5428310718013,19.9296319464428,18.7496709213329,22.5783433790959,19.1833626209714 -"Tfru28185_t",11.7659492891322,11.5497171839974,10.6485665786143,14.1859843179243,14.27033519182,15.3525573161336 -"Tfru28186_t",1.65266314960225,0.663280377216242,2.37199068745685,4.55862787290674,2.38406046945308,1.81372307684393 -"Tfru28187_t",6.98648923869327,6.78489064852617,7.20486083043233,9.01107107449255,8.58531016078716,9.08723677104557 -"Tfru28188_t",0,0,0,0.0993129643740396,0.166203072727586,0.210737347976152 -"Tfru28189_t",8.28801923305759,7.25741758030327,10.2192379057138,21.2376098142915,30.6506787709506,42.8601650358822 -"Tfru28190_t",5.87306585332307,4.71419639936367,6.81676958963663,13.4706414443511,5.96739755803834,1.12094334029868 -"Tfru28191_t",0,0,0,0,0,0 -"Tfru28192_t",0,0,0,0,0,0 -"Tfru28193_t",0.129114308562675,0.725462912580264,0.259436481440593,0,0,0 -"Tfru28194_t",0.217643463138465,0.873490997629334,0.374848269261316,1.12563269206327,0.188377835021552,0.159235906285953 -"Tfru28195_t",0,0,0,1.09078046645127,0,0.257175982537145 -"Tfru28196_t",0,0,0,0,0.111867452797414,0.0945616305021195 -"Tfru28197_t",1.26015565157171,1.14118239259512,1.08518573951151,6.61768118377014,6.96374893663902,4.96448560136128 -"Tfru28198_t",0.679329192221947,0.181761469048476,1.56001543865087,9.60337627201798,11.5636571826976,8.61504881663515 -"Tfru28199_t",1.55191582705876,1.49483139200212,2.0492013143485,11.8790291438776,14.5964983052783,11.9599500647385 -"Tfru28200_t",49.0465205428682,48.723630792619,61.0547660765627,61.7835710448325,52.5389048542768,56.135719379004 -"Tfru28201_t",6.71197918015954,4.97314698983907,5.90706899470707,7.09534018958514,6.38400740283749,4.64090881919972 -"Tfru28202_t",0,0,0,0,0,0 -"Tfru28203_t",10.424645292761,15.7508916827293,13.7298439061673,15.2231551229602,8.49212780356153,11.6649018648081 -"Tfru28204_t",28.5484364178422,30.082611519553,29.9996456930826,22.6353275837538,23.9476732784883,25.6717839694003 -"Tfru28205_t",2.48184274066314,4.18346707638604,4.27448838803155,4.62091340883641,4.08142700752751,5.90137206604808 -"Tfru28206_t",11.1761267858295,11.6317094335949,11.0109037830931,9.01318335074429,5.16456842396178,4.71209026853854 -"Tfru28207_t",0,0,0,0,0,0 -"Tfru28208_t",14.1716533631447,12.8483741355177,9.39440729188765,9.7022980972211,6.00065705539526,5.0723593060603 -"Tfru28209_t",0,0,0,0,0,0 -"Tfru28210_t",22.9512884994161,24.3316770679841,23.8666279480194,13.4379655403018,14.992545220272,16.4751706751116 -"Tfru28211_t",4.4014548194608,6.0674793807993,3.95511886837907,3.85997142285205,4.05806192664878,3.50028814501012 -"Tfru28212_t",0,0,0,0,0,0 -"Tfru28213_t",40.0184565026152,46.0188108561854,41.3054932381633,27.3026772835725,22.6002489097478,35.5085311834817 -"Tfru28214_t",17.0716273653209,17.3812563733618,15.1655190691091,10.0375135116008,9.41002691178246,12.0300598376761 -"Tfru28215_t",0.127481603598555,0.102327018235181,0.439124224385031,0.395594129714498,0.331019018141058,0.559621182030753 -"Tfru28216_t",30.433260131956,33.9361673838187,32.1710884453882,28.0866111285584,20.8204500000393,27.33261879481 -"Tfru28217_t",75.3567466474398,81.9264520863365,62.1947580477271,42.0946515198985,41.2557947440797,58.5218554026202 -"Tfru28218_t",0,0,0,0.0735495927442104,0.0615436684877859,0.0260114514711713 -"Tfru28219_t",4.56804974440385,4.91373042353959,5.23173546328117,4.60518300161155,4.41541422854822,5.61549401118714 -"Tfru28220_t",7.01585587598812,7.07546412383778,8.83020516090735,5.39628794644808,5.13823739294332,5.39629004899676 -"Tfru28221_t",0,0,0,0,0,0 -"Tfru28222_t",0,0,0,0,0,0 -"Tfru28223_t",6.56331068526933,7.50724567571899,9.18451472242813,5.77062634790562,6.53288445047398,6.24254513861649 -"Tfru28224_t",28.9272843728489,31.8397374203907,26.2532907428214,27.2342768283449,26.9865813964895,21.0375256312963 -"Tfru28225_t",57.8990434505922,60.4037573897314,60.6139782429852,38.2489119548666,32.987940955222,29.7832625799629 -"Tfru28226_t",0,0,0,0,0,0 -"Tfru28227_t",18.8247328164864,23.5494838736311,21.298440815204,8.38951889154953,5.28670381813762,4.10255464872128 -"Tfru28228_t",15.8547382943765,18.3765542254586,15.1263164943656,4.62734642149989,2.67623389425293,4.33191494469381 -"Tfru28229_t",16.8275716750092,15.5435075258475,17.7845310875938,11.4722297617204,13.351100398356,11.5952087773406 -"Tfru28230_t",0,0,0,0,0,0 -"Tfru28231_t",0,0,0,0,0,0 -"Tfru28232_t",0,0.243442256379006,0.261175869918534,1.41171406939632,0.393757279702089,0.443791045677817 -"Tfru28233_t",52.0921163746292,76.3283416426748,47.7139163934034,236.302154804296,252.899898220986,197.353427717614 -"Tfru28234_t",0,0,0,0,0,0 -"Tfru28235_t",11.9457134256798,12.8474614576969,13.5143948972623,18.2519876440208,23.1792273245199,29.2473147129232 -"Tfru28236_t",19.9367909054629,16.707405720626,17.438556908568,25.2266046632938,22.9144375546161,25.9162379118682 -"Tfru28237_t",0.44765742506988,0.479101278983905,0.64250191800563,6.94573352083092,7.36179240878186,4.25779277660521 -"Tfru28238_t",7.51042134111832,6.56196290908948,6.86826417412347,7.52802484105037,8.60025294745941,8.99607283851256 -"Tfru28239_t",16.2373325792353,17.3371253604155,16.2519588726925,19.7433223040069,12.9000339383756,17.0855370974421 -"Tfru28240_t",175.991203683697,173.841663969631,245.044486144874,333.001676345778,271.190128210089,80.2330170252716 -"Tfru28241_t",16.3815854601258,15.0477268755315,17.652656450865,9.78631400766083,8.79541808229928,9.48574437362242 -"Tfru28242_t",0,0,0,0,0,0 -"Tfru28243_t",0,0,0,0,0,0 -"Tfru28244_t",0,0,0,0.411355473738626,0,0 -"Tfru28245_t",0,0,0,0,0,0.426840693238579 -"Tfru28246_t",0,0,0,0,0,0 -"Tfru28247_t",1.7429538749263,1.11922829903709,1.80113815686557,0.540864173198867,1.0560101871955,0.892646097063577 -"Tfru28248_t",0,0,0,0,0,0 -"Tfru28249_t",13.4866156689949,10.7126805628989,13.5496993116264,15.3308160932751,15.1993821735617,10.0214771456051 -"Tfru28250_t",10.590291139621,11.3579738323099,8.96657708494678,11.7828940782759,9.62842218198081,8.59469056894264 -"Tfru28251_t",0,0,0,0,0,0 -"Tfru28252_t",0.187662792490203,0.150633294900189,0.323212431723457,4.27053141667966,4.0065707219327,3.9817276283655 -"Tfru28253_t",0,0,0,0,0,0 -"Tfru28254_t",0.250777244093873,0.503235112067049,0.377925381919431,0.25939953381279,0.108528125848237,0.321086133421376 -"Tfru28255_t",0,0,0,0,0,0 -"Tfru28256_t",0,0,0,0,0,0 -"Tfru28257_t",5.76831812339164,5.93604797684724,6.68688395825753,4.97220497251188,7.80905722432652,5.57297637510291 -"Tfru28258_t",19.664478773372,18.2126502469695,16.4330989178105,10.8322658510466,8.76191752866171,7.91724454827303 -"Tfru28259_t",32.7051466767074,36.0806576659143,33.5032743686825,20.6825661507744,21.0628663431293,17.3508379214682 -"Tfru28260_t",11.9683900731382,12.395864892828,14.2962582104764,10.3831339131866,10.8937101322482,8.98248576506807 -"Tfru28261_t",0,0,0,0.587595487938063,0.874095799468899,1.52392710313333 -"Tfru28262_t",117.451400534839,111.625365100931,121.863900197571,166.204584795875,184.255469583313,221.990313159345 -"Tfru28263_t",0.945929646969148,1.61346880406578,0.86550117624657,1.03960615416174,0.767563451636021,0.432547922775353 -"Tfru28264_t",17.0370694151886,15.6558906752719,16.695165223254,14.7059581861559,16.1699318134444,15.7316167108072 -"Tfru28265_t",0.253807784807998,0,0.764984912042352,0.393801407072287,0.329518931956129,0.185695044792682 -"Tfru28266_t",0.0791803739598939,0,0,0,0,0.0579312533707613 -"Tfru28267_t",12.6565851467901,8.98131835379052,11.6890458113321,11.384128012308,10.7959419511915,8.45480080581178 -"Tfru28268_t",34.3834170187454,56.953603098153,42.8540937545093,36.9090288672438,50.8227764600782,37.759251561363 -"Tfru28269_t",0,0,0,0.36925854317543,0.205988227530649,0.34824396502197 -"Tfru28270_t",0.0841787342399273,0,0,0,0,0 -"Tfru28271_t",0,0,0,0,0,0 -"Tfru28272_t",20.2037225119064,22.4226746743593,21.9256341643634,20.0453774718153,19.0037409077325,16.5917952905559 -"Tfru28273_t",0,0,0,0.204467867828905,0,0.144623670179712 -"Tfru28274_t",0,0,0,0,0,0 -"Tfru28275_t",0,0,0,0,0,0 -"Tfru28276_t",0,0,0.0890957093194999,0,0,0 -"Tfru28277_t",0.0540955420292643,0,0,0.111910938605647,0.0468215352983381,0.0791565483919867 -"Tfru28278_t",36.0831454329824,43.776504896272,41.7470360992406,45.3013644870107,51.2573000932413,42.3202051263584 -"Tfru28279_t",22.7663617814226,23.3748063846843,22.8369442898987,68.3700849885902,67.9932909944973,57.2551242218313 -"Tfru28280_t",1.35251296550168,1.24072686323799,0.831942455927253,0.639549908572472,0.735834671114544,0.763365508423274 -"Tfru28281_t",10.3724003089657,11.6852283061923,10.9171513625947,12.0466267255153,13.7027533336327,13.5800059977412 -"Tfru28282_t",0.283818840444079,0.455631790655301,0,0.293577175092178,0.245654879453781,0.207652229143168 -"Tfru28283_t",5.51145864479974,6.57271276641649,4.67840150117426,6.35249280086992,5.92887015528937,4.66604484155257 -"Tfru28284_t",9.47412764511145,7.37190215950925,9.32418893941611,9.29987626690158,10.7941149793592,6.50723303110098 -"Tfru28285_t",14.0799514142091,15.5398440332437,13.0343538544678,4.00511431047541,8.93689706705597,16.3105605684522 -"Tfru28286_t",0,0,0,0.328664310995782,0.275014539781842,0.185975975268919 -"Tfru28287_t",0,0,0,0,0,0 -"Tfru28288_t",3.60941220250926,4.19884838212855,3.76143666455836,5.49205021697969,7.19894224571154,7.92233336491917 -"Tfru28289_t",92.444489400077,60.9954636915441,89.1504295189245,16.0797073223716,20.4686609006292,34.9673273421716 -"Tfru28290_t",125.350926100435,147.777538684373,130.840432517052,205.284768724899,208.361981108348,151.328533370006 -"Tfru28291_t",0.151643279370844,0.0304302820473757,0.0652939674796335,0.0784285594109067,0.0984393199255222,0.138684701774318 -"Tfru28292_t",0,0,0,0,0,0 -"Tfru28293_t",92.6861471781374,94.2444166502435,89.1558220872335,71.7925043667756,68.8341039157926,71.1979092308988 -"Tfru28294_t",30.7043001398184,33.8879035364542,34.8875280046001,23.8199876480882,27.6829356541824,24.3364196266876 -"Tfru28295_t",0,0,0,0,0,0.0463887243972662 -"Tfru28296_t",173.904216411254,163.531740993958,176.033387060825,147.331753133882,206.772593126686,283.399974541491 -"Tfru28297_t",1.55657130068854,2.10618146956172,2.10641311710369,12.4206923416447,13.2416953126002,14.8049773536272 -"Tfru28298_t",3.3051645588297,2.77178235536637,2.97369355121572,2.39826521425859,2.64724506619834,3.14002360827649 -"Tfru28299_t",0,0,0,0,0,0 -"Tfru28300_t",0,0,0,0,0,0 -"Tfru28301_t",2.61926116954859,1.71309135147074,1.75434184216641,1.40483119351268,1.76326874213014,2.27122622915022 -"Tfru28302_t",0,0,0.0943229673630168,0,0,0.0801369750017962 -"Tfru28303_t",0,0,0,0,0,0.0688298542288664 -"Tfru28304_t",0.723660254100174,1.74260428000038,0.509875836888728,8.64224993427185,13.5519929113234,14.2953193174896 -"Tfru28305_t",0,0,0,0.7899894716487,0,0 -"Tfru28306_t",10.0128646733411,8.03713286539642,10.3050583790822,5.55748419825658,5.28443636034295,3.93090498889625 -"Tfru28307_t",2.71001215391766,2.5535829389321,4.97186547321776,2.80318851055757,2.85552263802655,5.94823159610107 -"Tfru28308_t",10.9781863992346,10.3743853872284,9.52093759719705,22.3891367784848,12.9388861066888,11.5068972056796 -"Tfru28309_t",0.845174816614159,2.84930302888667,0.873388925160168,13.2883543880757,15.0694687420259,17.6851178172475 -"Tfru28310_t",3.51875923650042,2.11833000053355,4.16650720231295,14.5589685993357,21.3192423132244,27.9971738476171 -"Tfru28311_t",87.7580515716607,122.583583469537,83.1034432488367,79.4688311580373,102.177818410129,143.03764851789 -"Tfru28312_t",145.099171368278,128.152556879706,149.083205510609,205.523735943041,158.822728490924,125.909226611884 -"Tfru28313_t",17.3621594981399,17.0135002357721,18.5810545072733,19.4686075960168,17.8698161173753,13.0261138232489 -"Tfru28314_t",1.31266213693194,0,1.13040181188616,0,0,0.960391559697948 -"Tfru28315_t",2.65855622694454,2.13397167775267,0.457884278274898,4.94993414206051,5.06235625000955,5.83529048984598 -"Tfru28316_t",5.33060766316291,3.67974710118063,7.06931488514265,7.49888500032406,8.21260424407411,12.0902084683865 -"Tfru28317_t",7.23303626539886,8.08513963213846,7.84360440973454,8.97806932399242,11.3615381747374,10.2703097413973 -"Tfru28318_t",4.68895126166218,7.8411052345331,5.04737553261167,6.46689070342584,5.07305890592924,6.57533198142646 -"Tfru28319_t",9.90837567944298,10.7453640365835,10.4388423290526,18.4264800587341,21.7137954175156,21.97935012612 -"Tfru28320_t",26.7037804963632,25.3308636645378,24.244386783365,15.7982021698813,16.3794110170512,17.2047693310171 -"Tfru28321_t",6.52971648839686,5.43303120989923,5.76022762205161,8.23685723481371,13.439999660732,15.2643086962189 -"Tfru28322_t",36.0750441430333,41.6501060399022,46.9183246200564,96.4832751317646,130.564123400982,108.377362840922 -"Tfru28323_t",30.2190670115892,30.6915952687418,32.7503037209835,74.7074889020865,84.2199501892439,87.2843957240812 -"Tfru28324_t",29.3564350291238,31.5952489798681,27.3125399607391,43.0588653121714,38.9713525166721,24.5169620655776 -"Tfru28325_t",85.1061642945533,2.05232406573431,206.971656985094,310.568911417513,38.25380505442,88.7234776624235 -"Tfru28326_t",0,0.460296962573274,1.23456853186747,1.63665193666124,8.67757839395443,14.0514512268427 -"Tfru28327_t",0,0,0,0,0,0 -"Tfru28328_t",8.8431975548892,8.07993845108326,6.07606797038919,9.53649125988118,8.87548603661453,9.2232004666681 -"Tfru28329_t",0.843266015271743,0.846091656423897,0.907725419917615,9.92195080085684,15.6010883041814,40.9509997086657 -"Tfru28330_t",0,0,0.160947087802968,0.386646691111389,0,0.136740956232208 -"Tfru28331_t",0,0.0703164807267827,0.226316108344423,0.181228037178904,0.303290278699975,0.0640928673893407 -"Tfru28332_t",153.995880726504,176.44171643287,168.966110185098,59.3210289267249,74.3964787322967,74.0628572122799 -"Tfru28333_t",2.98422221039587,2.97607503304238,2.64774417964774,2.05788435328338,2.26986166332751,3.70510586682148 -"Tfru28334_t",25.4224262153341,24.465752219801,21.5842306562403,18.6112601057903,19.0985217096064,19.5168756827497 -"Tfru28335_t",24.5102439446594,25.4092227667091,26.8499564415219,24.6810633756875,21.7017092063437,19.5167406459014 -"Tfru28336_t",0.829049770770863,0.887282960749797,0.832927650940851,2.71558886960264,3.70744929912482,3.63937854235131 -"Tfru28337_t",4.02177335607993,5.47000506121816,3.94438079077765,3.69782314158658,5.41486074710887,4.90412711380673 -"Tfru28338_t",40.5496894568567,37.5291026401516,36.5906599908237,36.3179058548682,30.2790172389353,29.3313507378155 -"Tfru28339_t",13.6636467004131,15.4528715369217,13.8099567154236,31.4736131401783,31.6694465459285,29.7104457748459 -"Tfru28340_t",16.2441939460416,16.4632580607873,11.7279187994082,27.6650616090769,22.4390378951063,37.6953687216457 -"Tfru28341_t",0,0,0,0,0,0 -"Tfru28342_t",0,0,0,0,0,0 -"Tfru28343_t",0.560603086177438,0.899970515002654,0.413798184751767,2.81654975226661,2.42610538716984,2.81250988719364 -"Tfru28344_t",0.39941542046647,0.320603034946044,0.4586099268934,1.17058664426612,1.20997680719865,2.58133769476864 -"Tfru28345_t",0.134848116808102,0.216479951900432,0.348374234193101,0.697422502626682,0.350146922881151,0.29597942131482 -"Tfru28346_t",8.40103767714474,9.93756916039773,8.2245656047188,16.8309339623372,15.7674230837618,16.8220163735349 -"Tfru28347_t",0.126776222492124,0.0678405483068255,0.072782410430014,0.786810457188694,0.365763804418104,0.0927541144261233 -"Tfru28348_t",0.830757743104548,0.500124882697043,0.447130506597243,0.537075672603737,0.269643427632827,0.22792976449831 -"Tfru28349_t",11.0941122551004,10.1286212172689,10.2100808825008,7.97156732689809,7.0368236437083,4.95685966341756 -"Tfru28350_t",12.2942014787484,10.9824827210982,12.6363091618964,13.7424607468798,15.7327357887787,21.3265864543136 -"Tfru28351_t",18.8011891358197,16.4285592959226,17.4203565360677,22.2785987715843,19.1569051603503,19.6757840237413 -"Tfru28352_t",15.7519456446464,11.1562784035452,13.2988448469548,13.7376848697546,8.55456991980224,11.9766476867574 -"Tfru28353_t",22.406079198062,21.6138141450063,21.1347035410481,12.0764212296936,14.8781727582131,16.611195943616 -"Tfru28354_t",5.46964813161001,6.92856969147044,7.43328312585028,17.3267277621035,21.451693644265,18.6958828973417 -"Tfru28355_t",0,0,0,0,0,0 -"Tfru28356_t",1.08167867087701,1.01294964617788,1.3196106989768,2.14449936483642,2.18453609540014,1.58279124016423 -"Tfru28357_t",14.674640674495,18.4476132024283,16.8494643473136,23.3711308260072,33.0639661780157,36.8108676224517 -"Tfru28358_t",4.43338342237382,4.92451502522755,4.56981201606659,3.84467166186814,3.60468417995931,3.48935440912006 -"Tfru28359_t",17.8850216173589,19.6242036084584,22.6080362398231,26.646715782976,29.3979800271329,27.6112573438806 -"Tfru28360_t",7.21119113918004,6.94594043093404,6.52042933612066,9.6968666931734,9.98645072182923,9.76054598101277 -"Tfru28361_t",34.9983348910991,37.9565836622548,35.2136119636184,49.8794903405543,48.4551622959543,41.0117593366763 -"Tfru28362_t",10.0195862204479,10.4609107032186,11.1022616663952,14.2053155881133,15.5858698830759,17.1733069573282 -"Tfru28363_t",2.65855622694454,2.56076601330321,0.915768556549795,1.6499780473535,0.920428409092645,1.55607746395893 -"Tfru28364_t",0,0,0,0,0,0 -"Tfru28365_t",12.3317984251666,11.1358081679424,11.2832768022603,11.1613193906604,11.3406913157011,14.3794406015838 -"Tfru28366_t",0,0,0,0,0,0 -"Tfru28367_t",0,0,0,0,0.0313286705378367,0 -"Tfru28368_t",38.7226637304155,31.528512941716,40.2452989487712,65.4906518380463,73.3880124113366,67.0823964197818 -"Tfru28369_t",14.2159050559715,12.7646596494866,15.3544444978684,45.1109676847185,49.0088530061328,27.9707155615256 -"Tfru28370_t",1615.89793916072,2011.65012848705,1867.76011130386,4185.41817743749,3864.87603721264,1581.20136342609 -"Tfru28371_t",74.3454661694225,87.5527302812176,88.9001718335597,81.6255890817604,82.6419039724005,69.0801999818581 -"Tfru28372_t",76.9109083118885,69.0955984505018,88.394237467252,49.2630769584255,54.5353832387393,58.8679446224463 -"Tfru28373_t",23.2899994078316,26.7063317017583,27.9354672452118,14.6265342806317,17.9984716535379,27.993980391275 -"Tfru28374_t",22.1399187881432,22.0315242023,22.5917127479532,17.0974259515777,24.2816989149621,24.2975597508605 -"Tfru28375_t",7.27496583741691,8.26223506887052,6.66473661606945,5.56376752279713,5.22494689712472,6.56835277739274 -"Tfru28376_t",12.0014823959211,10.4590742475323,11.5162568274691,10.9953639128401,11.2780656493719,11.038622989227 -"Tfru28377_t",8.91428435195423,9.75725956837398,10.7006525225143,10.3384476579085,12.6255549620232,10.870026657398 -"Tfru28378_t",0,0.359325959237929,0.64250191800563,0.154349633796243,0.129154252785647,0.327522521277323 -"Tfru28379_t",4.36890366742088,3.9451888092277,3.13524229544676,5.55474733023813,4.96313346918104,4.52830343249587 -"Tfru28380_t",142.048079808211,152.883595343851,128.952096781647,70.4809324935038,104.213925731026,145.099769093949 -"Tfru28381_t",14.3639789305512,16.6877065283876,13.7530101220431,6.79355415747613,12.187134762013,14.2081774964236 -"Tfru28382_t",2.05587128917891,2.25028381591717,4.02367719507419,31.7050286711339,45.0518479258106,39.9283592198049 -"Tfru28383_t",0,0,0,0.0850282229229791,0.142297151307865,0.120283874415612 -"Tfru28384_t",0,0,0,0.130088089561803,0,0.0920135626143379 -"Tfru28385_t",9.14255354032301,9.739643653406,10.2677219753179,10.5028191386036,8.35078753705871,11.1894767888541 -"Tfru28386_t",0,0,0,0.426671900952298,0.476031714031549,0.905377313318166 -"Tfru28387_t",109.296394779959,118.008633779723,92.6929485832747,77.608671378644,76.8996741721697,85.4243018968572 -"Tfru28388_t",0,0,0,0,0,0 -"Tfru28389_t",3.87625518377575,3.88924385634782,5.58480682268567,5.70586907117929,6.77458176878749,5.89017432231481 -"Tfru28390_t",18.0559615747588,24.0115039186278,14.8702068640952,15.1934012661777,12.5582545624389,12.2143786264785 -"Tfru28391_t",15.6243597920729,15.5034039571759,18.6611379504783,14.6997109651762,16.5135179152818,16.8310864758212 -"Tfru28392_t",19.6807526003041,18.5795811025818,19.1741443018584,25.826579459158,24.5091419310698,28.0246286760827 -"Tfru28393_t",12.871101630013,13.9753195844227,11.3061005303727,14.007335894788,11.8994409031821,11.1531625291339 -"Tfru28394_t",37.3892336180618,43.3501103680615,27.427771438203,34.3775645910137,25.1701768794182,36.8114918740394 -"Tfru28395_t",55.7881408196076,48.4678317264559,52.5636842527065,40.7338330402562,44.30999887736,55.702710462481 -"Tfru28396_t",97.3189260970104,84.7926031530827,91.6856360868489,79.1553619893007,65.5144368188779,77.2877284715636 -"Tfru28397_t",0,0,0,0,0,0.215919413909992 -"Tfru28398_t",0,0,0,1.9239596419325,2.28069253396942,2.0412750495845 -"Tfru28399_t",4.80059295836843,7.8271032609,5.16755114053099,31.5008308873907,49.0818449148654,34.354578081529 -"Tfru28400_t",5.03103967357527,4.23061913604656,4.53879967096068,4.87360435913478,4.28541668035721,3.21347746240568 -"Tfru28401_t",0,0.0739808063817713,0,0,0,0 -"Tfru28402_t",0.503056148332021,0,0,1.04070471649443,2.1770612071353,1.84027125228676 -"Tfru28403_t",20.7908356812931,16.9356373736515,20.0260368672457,44.0468016833074,42.7885316703582,34.1973339272331 -"Tfru28404_t",3.73116230990567,4.61124426270533,4.36063356730039,5.36034461394953,4.63912788918426,5.19972307308095 -"Tfru28405_t",0.337843338222979,0,0.0969781715381152,0.815404700792215,0.584829847064228,0.411964207951593 -"Tfru28406_t",65.0464091029492,61.3447009522456,71.3658642839021,30.9932670986704,35.6182939437364,28.8594411825882 -"Tfru28407_t",0,0,0,0,0,0 -"Tfru28408_t",0,0,0,0,0,0 -"Tfru28409_t",26.4377703258389,48.9054493254169,30.3944461652318,595.52083070136,393.189078302732,214.734961406211 -"Tfru28410_t",11.3862891193274,31.109636111224,12.2566590909206,35.4088251563827,38.0310462898593,47.6874877714642 -"Tfru28411_t",4.49583338441114,13.8688006120976,5.16212873639612,13.4041238642296,13.5813895998539,18.7039531475861 -"Tfru28412_t",32.1939268246187,37.4589210641008,26.7651185522809,40.1145408280563,28.4672090677461,26.710658245919 -"Tfru28413_t",435.595654008783,513.623480944345,470.087801991035,251.891802812129,193.956972399745,126.314759511036 -"Tfru28414_t",0,0,0,0.383095564264297,1.33566944008668,0.270970138837815 -"Tfru28415_t",0,0,0,0,0,0 -"Tfru28416_t",39.2143231396134,43.4622209652423,42.8012318757819,57.4422319332283,61.0205473056397,65.2107088382264 -"Tfru28417_t",0,0,0,0,0,0 -"Tfru28418_t",4.85037489207348,5.02727363635591,3.48751769798168,21.8221311853271,20.6239939602407,16.2276026783766 -"Tfru28419_t",0,0,0,0,0.126020527414764,0 -"Tfru28420_t",0,0,0,0.105077199307478,0.175849683962078,0 -"Tfru28421_t",0,0,0,0,0,0 -"Tfru28422_t",11.9934760701066,7.73753359767935,11.3899859695226,22.376887069601,17.026390497485,22.2651951205624 -"Tfru28423_t",4.98938032189977,3.57191920635713,3.94824132085514,5.30041101996279,3.50146922881151,2.86113440604326 -"Tfru28424_t",3.40759718573734,3.8924176062846,2.59586812363647,3.79589333410916,2.94939150121107,3.16434785377608 -"Tfru28425_t",1.48690932338845,2.04602290822709,1.18899406773279,1.64789210797632,1.01119126106386,2.09804881834665 -"Tfru28426_t",2.94548577095014,2.56987442900094,2.64679448661344,2.64935499473429,2.99279542163813,3.93526297668882 -"Tfru28427_t",88.1962935746598,64.2298274901058,88.8603232044959,8.05551275339834,7.0775931897321,7.97692549311043 -"Tfru28428_t",4.52514910010138,3.31640188608121,4.3204116092964,1.62808138318098,2.38406046945308,5.11009279586981 -"Tfru28429_t",0.846553700671975,1.26195138947332,0.902585707847064,3.21075382663192,2.44240359994354,1.94659018643998 -"Tfru28430_t",1.79586802668911,2.11597583893264,2.05729139346498,5.58988444309656,4.64889453770779,4.84584311633729 -"Tfru28431_t",0,0,0,0.266560870635842,0,0 -"Tfru28432_t",0.572798023441687,0.613031863790769,1.64422081744168,1.18498423400843,0.826293685435444,0.69846658893611 -"Tfru28433_t",0.918703998715707,1.55678808666186,0.791143917019326,8.13026849902906,8.2609288502586,7.8418363083471 -"Tfru28434_t",0,0,0,0,0,0 -"Tfru28435_t",0,0,0,0,0,0 -"Tfru28436_t",0,0,0,0,0,0 -"Tfru28437_t",61.658992125833,60.257095308755,61.1951835981413,65.3734421452967,82.3200769622071,71.2769134133408 -"Tfru28438_t",0,0,0,0,0,0 -"Tfru28439_t",0,0,0,0,0,0.0858450556234325 -"Tfru28440_t",0,0,0,0,0,0 -"Tfru28441_t",0,0.139038154674195,0.149166424675121,0,0,0.253464164232485 -"Tfru28442_t",0,0,0,0,0.233806573370801,0 -"Tfru28443_t",0.230375804674902,0.0616394012952327,0.198388617826601,0,0.199398110562118,0.280918920595876 -"Tfru28444_t",0.155287202904709,0.872522246060799,0.668629537591811,2.40939493051621,3.62897189758709,8.40742038290564 -"Tfru28445_t",0.350408245136381,0.562531845814261,0.226316108344423,4.25885887370425,8.71959551262429,15.3562704670883 -"Tfru28446_t",0,0.0601547769999862,0,0,0.0648651599628181,0 -"Tfru28447_t",8.45871070467663,4.78361248404239,4.96652512362247,3.77821060118629,3.32786472852719,5.62609243262039 -"Tfru28448_t",10.5214273784049,9.30711634739212,9.98509562234232,8.99527968052403,9.19957902557647,6.67671576388767 -"Tfru28449_t",1.9884112845313,1.79556670163568,1.92636521806777,7.45581796151259,7.52954009213363,4.54623223567883 -"Tfru28450_t",0,0.0875759805415384,0,0.451422565336544,0.37773425619906,0.0798247530212697 -"Tfru28451_t",10.6868323808202,6.19530434785017,9.84208503443889,4.14535120730863,6.80889354924189,10.5337646698916 -"Tfru28452_t",6.91493353931047,7.05982543499117,7.20845400975154,12.0466267255153,10.0276853897465,9.7190239003442 -"Tfru28453_t",3.64766900500179,2.5619242068868,2.65038579527913,3.41935749116859,1.57859092142891,2.91896484928524 -"Tfru28454_t",0,0.327347111732935,0,0,0,0 -"Tfru28455_t",0.232715725128663,1.12077847673659,1.50302734004364,0.84250956619251,0.704981870122207,0.766184956284487 -"Tfru28456_t",37.9495150243435,39.0649270443221,47.8978533301631,22.1741877352382,30.088487304132,40.9060570568652 -"Tfru28457_t",48.1993458994928,39.6667676570498,48.32763782192,42.0139454442956,43.0658143222921,41.9012414287796 -"Tfru28458_t",0,0,0,0,0,0.159235906285953 -"Tfru28459_t",0.17429538749263,0,0,0,0.150858598170786,0.382562613027247 -"Tfru28460_t",141.177201201722,187.736474026575,156.035582663489,167.62735554849,175.545849005173,155.481142460216 -"Tfru28461_t",2.45062174720722,2.7047167007724,2.24225555414107,1.98037474538023,1.19311686210551,1.23266300472225 -"Tfru28462_t",75.8566978917759,82.0673845135821,96.0180672256968,114.854306127229,144.317553608877,120.886495074946 -"Tfru28463_t",62.271294995039,59.2795140838546,65.6097786887248,52.1182908565093,65.1523079079497,71.1270402102097 -"Tfru28464_t",20.4073789728212,18.4008835552419,19.0383463072194,15.268865676535,17.7221596273798,16.9713242111699 -"Tfru28465_t",42.6184028147124,45.8990827944074,39.0772480408037,32.0320555713713,32.1108582573599,28.2649545186992 -"Tfru28466_t",52.5967545116369,46.6624397180567,50.3725185675829,103.705926802476,91.5694400512929,59.5277656771223 -"Tfru28467_t",8.33690761854058,8.85054375130578,8.53326716286649,9.00872032782241,8.21858028616312,10.504001851639 -"Tfru28468_t",6.28468794234352,8.17467906695306,6.19454079937469,11.6308952756663,8.8147923035727,8.47602898011337 -"Tfru28469_t",11.829623459464,17.0595501952276,14.8490013680175,8.29583234628016,10.4124836732676,7.92151129027302 -"Tfru28470_t",0.462018570695403,0.803515641815582,0.795736564261418,3.02672416630322,7.93120758375799,9.46483047738905 -"Tfru28471_t",7.91691008219064,6.21759775071858,7.74957499854546,2.23874987487242,3.20433890216321,3.83375288408593 -"Tfru28472_t",53.5651993583616,80.4792239712241,50.070332031957,7.34022931511124,11.7887567764032,17.8365909305429 -"Tfru28473_t",0.444970215950463,0.571470381499869,0.459824465894707,2.66956193960938,3.1581224756897,3.58112107039277 -"Tfru28474_t",31.435030324726,28.7421496793705,32.3924978255826,24.0930605939172,28.6981279010415,31.0474123918076 -"Tfru28475_t",0,0,0,0,0,0 -"Tfru28476_t",0.938663427613938,0.861082266777138,2.13630605809661,1.59511046131488,1.21866778187127,1.03014066748119 -"Tfru28477_t",5.73192784312426,6.41338641788,6.83071198314159,9.58222950542077,11.7264228604319,11.8609350457517 -"Tfru28478_t",5.72798023441687,6.51346355277692,4.52160724796462,6.91240803171583,9.08923053978989,6.98466588936111 -"Tfru28479_t",27.5206406665086,32.3427155724095,27.6682675486738,17.2980457148357,13.5626135954231,15.703455723667 -"Tfru28480_t",20.6226130479252,22.9029914243541,18.3541557368037,5.21678914423666,7.44479738292,9.98301752936644 -"Tfru28481_t",2324.85424933846,2622.56583309093,2584.48202029483,7546.55959444898,7080.11940842245,3455.73683195999 -"Tfru28482_t",28.5378922943629,18.4329745222872,33.8949354439434,25.622836675975,25.2055307864517,33.3787108218536 -"Tfru28483_t",13.4531097385282,4.710006312941,16.2685426025575,1.77646699476561,1.36261037053068,1.88478888735059 -"Tfru28484_t",7.5587742596418,4.50712372864164,7.62512687574496,20.9986923387269,17.7578797178414,13.9046921972268 -"Tfru28485_t",0,0,0,0,0,0 -"Tfru28486_t",51.4395087718221,46.6986037417086,59.5788249143573,45.5405705618925,50.1608872570222,44.7018616919111 -"Tfru28487_t",23.2020445087468,25.5471902990424,15.4495984817518,14.6318381803641,10.5263368058347,25.9364882840259 -"Tfru28488_t",0.310383165411752,0.249138565333687,0.445478546597499,0.428073122301895,0.268647208072607,0.151391772971374 -"Tfru28489_t",0.40847833114156,0.109292552701758,0.351761990117183,0.140840913820559,0.235701278179316,0.199238443521484 -"Tfru28490_t",0.507615569615997,0.651925124031271,1.04912216508665,3.99052092499917,3.03157417399638,3.41678882418535 -"Tfru28491_t",16.5548758506374,14.5509658618906,15.9657286686936,13.7147528822375,13.6156106168943,15.1538912545639 -"Tfru28492_t",55.037363710557,39.3795364794318,57.4771263359115,48.2891921970298,52.955896636455,36.7165819040389 -"Tfru28493_t",0.638862180771464,0.512802319520795,0.550157535874022,0.991241564569787,1.38239247753458,0.233707451811322 -"Tfru28494_t",320.112016410358,250.416512677788,371.431490462918,423.05057950925,354.82331108075,220.667721944289 -"Tfru28495_t",4.717393773648,5.23573834447298,5.81774908299642,5.48200678563806,5.21724983497124,4.90016074872335 -"Tfru28496_t",6.50275785799319,6.08957766181526,5.317042455777,3.63493990989814,2.92788348897063,4.54139808724996 -"Tfru28497_t",0,0,0,0.884916943251371,0.148093369283746,1.00146736987988 -"Tfru28498_t",0.248404425699135,0.279145201134768,0.256696804142285,0.308334159056007,0.172001997204776,0.290786799888245 -"Tfru28499_t",22.0008535626997,19.4193411465501,20.4294053477469,16.8452558397719,14.9764767887684,14.0344265214003 -"Tfru28500_t",6.04701940771344,6.5873346803224,8.18306298860435,52.7201211908462,60.3767910406608,35.0777462248222 -"Tfru28501_t",0.647894936540726,0.866754563200316,0.371957408572925,0.446780688058019,0.560775148984466,3.00214945167398 -"Tfru28502_t",15.2087751051758,7.99319563778912,18.5541814657859,2.06010190107787,2.19395219925963,15.4987327579444 -"Tfru28503_t",0,0,0,0,0,0 -"Tfru28504_t",0,0,0,0,0,0 -"Tfru28505_t",1.19332921550351,0.383144914869231,1.33592941417136,0.370307573127633,1.0328671067943,0.611158265319097 -"Tfru28506_t",9.30653874414238,5.04741804019346,8.01434578082352,6.76458065721377,8.7082448285412,5.61282731947461 -"Tfru28507_t",0.211081348671979,0.169430917128102,0.36354631139414,0,0,0.463304471053098 -"Tfru28508_t",37.8673638581748,27.5772841412743,39.7361544418144,4.40979207481743,8.24813756446604,13.944312080014 -"Tfru28509_t",13.0918027462136,10.9109915279471,13.1930184953875,12.3894240204683,14.4656188962173,10.719702078473 -"Tfru28510_t",0.129246733494534,0.103743853872284,0.11130110148836,1.87166740551075,0.671204716784484,0.851054674519076 -"Tfru28511_t",0,0.1301805116158,0,0,0,0 -"Tfru28512_t",4.1979899289766,3.45084161736526,3.83288561416868,2.61585923622169,2.75796038052625,4.10753861573024 -"Tfru28513_t",13.0226700302833,10.3962353985747,13.8352801386752,10.1760229924116,9.06625860076767,7.19767760393134 -"Tfru28514_t",5.68041693472421,3.83963017890304,5.14916127882092,4.02023120909146,5.43413071418043,5.68715856044776 -"Tfru28515_t",15.5632126553557,15.164769791838,14.0023966388582,17.9404064675684,18.2287241056063,18.9210414580739 -"Tfru28516_t",10.2620875953733,11.6933384269202,9.49640519959767,6.58174614409388,6.41836325133226,6.44053018681862 -"Tfru28517_t",0,0,0,0,0,0.169792982945795 -"Tfru28518_t",0.190932674480562,0,0,0,0.165258737087089,0 -"Tfru28519_t",1.13584385219283,0.979254704803482,1.59399674640315,3.08954327077477,6.18996170962155,4.58602599605923 -"Tfru28520_t",2.87624685094827,2.98208082100788,2.88970049513288,3.84288753016523,3.63050577908868,4.64714432353498 -"Tfru28521_t",0.711952345520741,0.57147038149987,0,0,0,0 -"Tfru28522_t",0.887433557444868,2.37441919073889,1.0189537460202,2.44785475569816,1.79224264164871,2.59711520393145 -"Tfru28523_t",2.88035577502106,2.504673043488,2.68712659307612,3.47595375309139,4.36283065909914,5.61966261269739 -"Tfru28524_t",4.35210915754297,7.18296357282199,3.57938641282415,11.7788887663397,7.76194728248517,6.49784153199014 -"Tfru28525_t",0.104231236689141,0.1673287965682,0,0.539074713568763,0.0902156877398499,0.152518758874386 -"Tfru28526_t",6.20263529434051,4.66362558061389,5.81470240485917,10.720231201123,10.1255727134856,6.14650598263777 -"Tfru28527_t",0.525064854821547,1.68583762542461,0.226080362398231,1.90091220872185,1.13615381747374,2.11286143153173 -"Tfru28528_t",3.34786059363178,2.35135509399199,2.34245157553335,3.3547498862339,5.1615057610762,5.28155557661278 -"Tfru28529_t",1.75753926300099,1.4107427827821,2.42161392359611,4.36312186580509,2.73817823792833,2.57175982537145 -"Tfru28530_t",1.34123968720743,1.27233028333933,1.89001870451932,1.6396008269299,0.949817995449741,0.624463597655507 -"Tfru28531_t",3.02350970385672,3.46701825280126,1.67380833857816,3.35085516043514,7.85085208578252,6.00429890334795 -"Tfru28532_t",0.132927811347227,0.213397167775268,0.457884278274898,0,0.345160653409742,0.389019365989732 -"Tfru28533_t",1.68020753542895,1.7532711304416,1.59160575128355,1.76057629891699,1.97920379879865,3.98046210177153 -"Tfru28534_t",10.4915102398639,12.2549240245219,11.2597712642698,7.04585220221227,9.35182713506806,8.53522265995366 -"Tfru28535_t",0.0741486114487621,0.0595176566787154,0.0638532356288031,0,0.064178150325083,0 -"Tfru28536_t",0,0.197752214126055,0.212157524831184,0.254835319141597,0,0.180249442306093 -"Tfru28537_t",0,0,0,0,0,0 -"Tfru28538_t",0.227979312812612,0,0,0,0,0 -"Tfru28539_t",0,0,0.0868495990005209,0,0,0 -"Tfru28540_t",2.11081348671979,1.94845554697317,2.13583457944057,1.36461752241339,1.4159102850929,2.23930494342331 -"Tfru28541_t",5.33090394520069,4.24777984358958,4.75826385705216,6.07768662247336,4.1425673233688,3.75793788655945 -"Tfru28542_t",26.510303091717,21.9984240797046,34.7175272941151,37.2784666927518,35.2466526021905,33.130948389206 -"Tfru28543_t",0,0,0,0,0,0 -"Tfru28544_t",0,0,0,0,0,0 -"Tfru28545_t",24.7679995262435,26.0599601061654,25.6524650243092,25.619579455056,23.175727272771,24.4880716439752 -"Tfru28546_t",2.38016765813213,2.32044386398383,3.54561903072929,5.43684111536713,5.61087015594954,5.59681075252669 -"Tfru28547_t",2.53247869539388,2.74299508018782,2.99538802768396,4.70987056528125,2.72121814935085,1.81325553083229 -"Tfru28548_t",0.99420564226565,0.199507411292854,0.428081159570615,0.514194342173282,0,0.181849289427153 -"Tfru28549_t",1.19587724941562,0.71993065854432,2.05966451152837,1.54624277272749,1.03507251698675,0.218736867709529 -"Tfru28550_t",0,0,0.0307723164472284,0,0,0.0261442194072215 -"Tfru28551_t",0,0.135035151664752,0,0.177656837942817,0.307547211766437,0.123266077647596 -"Tfru28552_t",1.24995862071848,1.21454237696997,1.41632176913535,38.2436571894549,18.2781080862807,4.66884166261444 -"Tfru28553_t",7.87297245172422,7.39841883614917,8.84684755258906,0.893816679366356,1.32962458182069,21.9166841895198 -"Tfru28554_t",562.944533633673,594.8598478284,540.655038078055,475.228052180463,335.003068466541,205.24939620594 -"Tfru28555_t",10.9737792589699,12.4296881526227,9.66009560087651,19.2968405015596,29.6554285245975,31.5800162242928 -"Tfru28556_t",9.6462854330472,10.6992617563483,16.3117689446406,13.9691252081439,14.2695226845971,16.9381793258494 -"Tfru28557_t",0.623720672774881,0.38511424909757,0.785019190965873,0.297768739556658,0.705959653575913,0.737159483925718 -"Tfru28558_t",0.166908033320756,0.133973851027122,0.143733210531326,0.230195612787509,0.240774318934831,0.223879356983495 -"Tfru28559_t",3.59649252918381,5.03345591784298,5.16187874630429,4.48325538955255,3.91106297650673,3.71084334846408 -"Tfru28560_t",23.8481069544753,25.2331825224844,26.6045536138304,14.0159425527878,13.6045257111693,17.8446947883031 -"Tfru28561_t",216.955514758035,215.347730889271,188.747173430311,160.523933505799,152.684263731542,141.832816259238 -"Tfru28562_t",8.56416462233202,7.20163645812457,8.07743430704359,8.85862000181057,5.64767722860731,8.35447415115814 -"Tfru28563_t",19.3531758007523,15.1813650038238,17.0448021912802,16.3788396742526,19.415738535258,18.9865891610277 -"Tfru28564_t",0,0.471562972146745,0,0,0.127122105451607,0.214912796595726 -"Tfru28565_t",0,0,0,0,0,0 -"Tfru28566_t",0,0,0.151350870224757,0.0908983722042726,0.152121013218241,0.128587991268573 -"Tfru28567_t",1.49517911940285,2.85035950016175,1.36805024632522,2.60986516500187,1.77942666852394,2.66644864652807 -"Tfru28568_t",13.8860126894954,13.9325423588811,14.4199044952104,18.2500245665469,16.3668011275555,17.480340300647 -"Tfru28569_t",21.1880930620824,31.433675056985,17.1812200825505,10.2334261621925,10.9891383955065,12.48603276159 -"Tfru28570_t",6.98374770227191,9.23294934217882,9.72864151151312,11.6856635953561,10.0448220146333,36.142657428469 -"Tfru28571_t",0,0.0827404969533553,0,0,0,5.05295583848749 -"Tfru28572_t",0,0,0,0,0,0 -"Tfru28573_t",0,0,0,0,0,0.274397588510615 -"Tfru28574_t",3.78193566759575,2.94726857591716,3.4465397904066,5.31723694747371,4.32215158535463,4.43257642978685 -"Tfru28575_t",15.2168597465027,14.5454337433107,16.2041898925977,15.8339268911077,17.5696757427411,17.795429636445 -"Tfru28576_t",40.9390668530911,38.4234057774443,46.0882606797612,36.6122032368763,32.1122053588516,44.616769315594 -"Tfru28577_t",32.5093346283128,30.5782250143507,39.7324211363699,45.5294474307848,43.4155799187836,24.5206355690337 -"Tfru28578_t",105.41039992219,108.497649660389,114.677432178977,142.903852310498,141.125397308071,123.70704890018 -"Tfru28579_t",91.6287669089506,90.1823049070458,95.7187115115226,96.8049037220313,96.0381126865594,84.5290780575228 -"Tfru28580_t",0,0,0,0,0,0 -"Tfru28581_t",6.11886602469204,4.97786700420654,4.62841686799528,8.46750545167439,7.94413062926517,8.34860064570878 -"Tfru28582_t",34.0582608532895,34.9084048840523,30.4573960153958,12.6464013885861,12.3961231478215,13.2258496715802 -"Tfru28583_t",23.200540096766,23.7193433344626,17.8761216779997,10.1045167241029,7.82096581330757,7.68313247829721 -"Tfru28584_t",58.9996539137912,79.2729753607445,66.2708848533794,26.5339981142864,27.1983081791967,25.8059411475893 -"Tfru28585_t",65.8056414852723,67.7928309762225,67.7197021577934,33.3395208999884,27.8973186016997,24.1274924007628 -"Tfru28586_t",28.7403920533894,19.0765836561203,26.6536848301068,1.14340583983267,2.87028332835465,9.30063405267541 -"Tfru28587_t",12.4811246115704,15.7012852689417,14.4565722610858,7.85185035450704,11.5609326761532,13.350360518327 -"Tfru28588_t",0.0931378899905182,0.205589954320075,0.220566207217786,0.289020544880104,0.342609576887867,0.357751179698983 -"Tfru28589_t",15.5481891338201,12.2286132232293,17.3305782280196,3.50189370647266,4.9380297260948,5.55020316342664 -"Tfru28590_t",9.37305856540942,12.0516491404322,9.26742642558037,14.4532167935876,16.1502856698746,20.7000098175611 -"Tfru28591_t",4.07133233188748,4.46204926021054,4.71966460178972,4.53526118763089,5.82795024359314,5.78562072923033 -"Tfru28592_t",57.46309771167,52.598133913248,59.4681785252307,59.7864045531718,64.8607491319406,50.8930695362407 -"Tfru28593_t",0.173217271693706,0,0.149166424675121,0.35834574774138,0.599701808810879,0.633660410581214 -"Tfru28594_t",0.290024315666677,0.0775989701000974,0.166503373918145,0.599992017219457,0.920428409092646,0.70730793816315 -"Tfru28595_t",8.5724874256579,11.0095518395077,10.6303909176638,25.5376194104673,29.3823289286269,34.872013534149 -"Tfru28596_t",53.2192432036319,73.2309556745534,39.6100978826222,12.5826380202403,16.1220740796273,30.8715911345155 -"Tfru28597_t",51.5096133260565,75.807886979432,41.8175172269498,13.1647793314417,19.289498362727,26.1766022017408 -"Tfru28598_t",7.57940472767418,9.04907535102826,7.02066083687001,6.45647209634109,6.28459306466139,5.87156750426353 -"Tfru28599_t",3.82260245909378,4.25381986146438,4.78813425223968,11.4127747322287,13.4975543486435,14.5240601554574 -"Tfru28600_t",0.159412479642215,0.511829260090965,0.549113593680713,4.94680325392512,4.55323882828184,11.4299352238805 -"Tfru28601_t",4.98351228304321,3.19721532771587,4.29156228081335,8.67295237159087,7.0210813089349,7.78459839758193 -"Tfru28602_t",6.74223405936457,5.49776346635288,5.16096827283605,8.96663229300644,5.92826246671646,5.4026613095797 -"Tfru28603_t",33.3264304547891,25.9145287875189,35.5749595046473,20.4679094965092,31.2489248310132,27.1767000058778 -"Tfru28604_t",0.334702696300588,0,0,6.57800013035223,9.27029090910841,5.38737576167454 -"Tfru28605_t",10.3737509778508,8.19030425307505,9.0798267003662,3.69408040561331,5.7405666567094,4.60365832707687 -"Tfru28606_t",4.11239606573303,3.77250377717198,7.08279736743736,9.11526333852157,9.66128001431704,15.9035469480754 -"Tfru28607_t",4.69093474358336,5.1345308388567,10.2826398329348,4.85221970609204,5.90569293955891,5.92810221675724 -"Tfru28608_t",0.14921914168996,0,0,0,0.129154252785647,0.327522521277323 -"Tfru28609_t",0.0900915568594611,0.108472126032683,0.349121417537214,0.559134651971805,0.27292059529664,1.15349978226446 -"Tfru28610_t",6.99139130100679,8.44059433568481,7.04856772619112,26.1637249682961,21.0565124277676,22.1240946059763 -"Tfru28611_t",15.8755500767714,15.6351790090977,13.1813381237021,8.12662518862062,7.10489997692701,7.35360760902487 -"Tfru28612_t",4.51639785523301,3.99206349700549,3.98190820684756,2.94760878262149,2.14069557673131,3.83541973316597 -"Tfru28613_t",2.60069646665832,2.9098885842226,2.61286122396454,4.23896799157486,4.05860575697935,4.61276246351803 -"Tfru28614_t",9.55697677248319,9.1323815028419,10.1111564028158,10.544605101469,11.42308496875,9.78912653789547 -"Tfru28615_t",400.293746020379,519.367077382409,421.544044178521,82.7004493670785,113.942660331076,96.427865051227 -"Tfru28616_t",154.226676848431,179.584567386334,153.811283841779,29.4572351956897,37.6663875759089,45.7081271166495 -"Tfru28617_t",80.3176129573179,53.3539819914604,80.2957946451739,24.3507749186347,31.5626027535561,40.526413072337 -"Tfru28618_t",61.5822671356312,56.1437326838243,76.9287024993076,102.627141352585,93.1132033578475,83.4367327959879 -"Tfru28619_t",16.9294442135766,16.0596534373994,18.6919758879851,44.7394552869469,45.6126641870441,39.1000096305511 -"Tfru28620_t",19.9499582070621,16.697437101461,19.5972285496509,35.1017406151979,31.6279191575505,27.3218792187657 -"Tfru28621_t",397.265507691831,456.146092840918,380.558286732803,719.47481108508,705.025465869948,539.208552230305 -"Tfru28622_t",10.9548414893,14.2540091584905,12.4381754196502,11.1510559562421,9.69316612382907,8.75519747526892 -"Tfru28623_t",2.47425214777711,3.69707934166522,3.3107917139605,3.22868382140342,2.6687002219229,3.28630587200388 -"Tfru28624_t",32.7434231592935,30.0185070441227,35.113102125703,28.7605116169173,32.9568052171973,33.9061218995292 -"Tfru28625_t",5.33616399688347,7.13872610114658,5.18438355466953,2.68905217055115,3.43436723979031,3.90413246454191 -"Tfru28626_t",37.9246843711106,35.2580897660234,47.1280664016427,33.2698430653033,41.1352605000776,32.4886744796568 -"Tfru28627_t",0,0.873490997629334,1.12454480778395,4.50253076825309,6.02809072068966,1.91083087543143 -"Tfru28628_t",42.2677208131345,38.1420762752319,37.9815008829028,43.9925396875629,31.5850761257698,37.8394274556138 -"Tfru28629_t",58.7530634969349,57.0791990853444,60.2103055470902,81.6288494274364,78.7186004942835,69.0787962693871 -"Tfru28630_t",0.743454661694225,0.447567511174677,0.160056893733261,3.46057342675027,6.75659615347212,6.11930905351106 -"Tfru28631_t",0.938663427613938,1.13017047514499,1.21249803297375,3.88374721015798,6.49956150331344,4.80732311491223 -"Tfru28632_t",0,0,0,0,0,0 -"Tfru28633_t",14.023370465713,15.2168342078512,13.4180616941145,9.40172962582678,9.88998191655653,9.69000943167005 -"Tfru28634_t",0.587941983625993,0.629239549147601,0.562563887771648,1.21631352168828,1.58319412201628,1.62504823802243 -"Tfru28635_t",179.534866095327,170.466423850042,164.522237326956,160.123250301037,189.351279874608,162.242797511251 -"Tfru28636_t",9.06489110082614,7.61983410640643,7.58742032606004,7.68142393143551,6.41168750620449,8.82448221296057 -"Tfru28637_t",4.52913664799453,4.08646493718654,4.35481914112847,3.82185835235524,3.92012212984857,4.52205446229735 -"Tfru28638_t",6.35280554464661,4.6596815722297,4.62182540078782,7.36430879892243,5.40376678767169,6.25068405014011 -"Tfru28639_t",32.4219151292793,29.3314179604794,28.460095087402,33.999867467605,31.5506765858804,25.5558351090483 -"Tfru28640_t",5.04350460892052,3.99049043410972,5.0257315551991,5.51502096330966,7.04688199654379,9.22503041991089 -"Tfru28641_t",0.574233607460338,0.645296698727125,0.890104502675195,1.72253347299471,1.78926752936397,1.55448203251946 -"Tfru28642_t",24.7666954897644,23.9958186683815,34.0118820522222,28.1010546921998,34.3738173141145,33.8456952810184 -"Tfru28643_t",8.73918712886463,9.62328639290998,9.60575632813811,20.3051663307874,20.7156535041735,21.8806616527774 -"Tfru28644_t",0,0,0,0,0,0 -"Tfru28645_t",12.3003240890466,14.6419363483094,11.8894851938512,9.69389492894012,6.44574914773944,8.08106364251181 -"Tfru28646_t",24.3630092637198,16.5212087291612,19.5333433112072,15.6417918889112,14.5427688636638,11.9856866661437 -"Tfru28647_t",4.89494528721286,5.5834265375089,4.45731899325422,5.81425216575085,5.04760168253734,6.15164663442141 -"Tfru28648_t",68.1759602071956,56.8418550143169,62.1188346526658,39.5821958794438,53.2981057830611,45.3747300288967 -"Tfru28649_t",14.8510544725956,15.3682944709419,16.4878018192679,26.8829178911097,31.1270702714468,28.2824495388272 -"Tfru28650_t",8.97820820427258,13.8985086671435,13.8064343444541,27.1973480671436,22.7577680683075,27.2135379374578 -"Tfru28651_t",7.83657505013331,7.30222982363322,6.62511075622647,6.32772958974259,5.20801749892462,6.20520385696037 -"Tfru28652_t",21.368493046396,19.7601316095066,19.1073354366951,18.954242590899,17.5323973060198,18.2681867706969 -"Tfru28653_t",11.6622445141268,13.5968310995302,14.7690689003869,12.0086341972378,11.3272822807432,11.3509595408009 -"Tfru28654_t",0,0,0,0,0,0 -"Tfru28655_t",21.4425244048147,16.0605787744098,22.7308106802255,21.0336999799168,16.7540820500704,16.7848728152715 -"Tfru28656_t",0,0,0,0,0,0 -"Tfru28657_t",0,0,0,0,0,0 -"Tfru28658_t",0,0,0,0,0,0 -"Tfru28659_t",0,0,0,0.127792417393066,0,0.271169381586961 -"Tfru28660_t",0,0,0,0,0,0 -"Tfru28661_t",0.115876381753721,0.0930117310579098,0.0997871944378399,0.359581422733592,0.10029495768044,0.169558785727938 -"Tfru28662_t",0,0,0,0,0,0 -"Tfru28663_t",0,0,0,0,0,0 -"Tfru28664_t",0,0,0,0.21643547653122,0.0905527326504596,0.153088567438052 -"Tfru28665_t",0,0,0,0,0,0.149914780064336 -"Tfru28666_t",0,0,0,0,0,0 -"Tfru28667_t",0,0,0,0,0,0 -"Tfru28668_t",0.208635041650946,0.111644875855935,0.0598888377213857,0.143872257992193,0.0601935797337078,0.356171704291924 -"Tfru28669_t",5.16104703715377,2.64670753479632,4.93827412746989,4.30045472865402,5.1495299303929,6.18846165487421 -"Tfru28670_t",0,0,0,0,0,0 -"Tfru28671_t",0.194019345892488,0.155735577406431,0.25062026316663,0,0,0.354879098304721 -"Tfru28672_t",20.7231328576447,20.775317308201,20.2893819601606,12.5411842166296,9.00550170165466,8.24147680374153 -"Tfru28673_t",0,0.735638236548923,0.526150661581338,0.315995795735581,1.05765591735737,0.894037233838221 -"Tfru28674_t",92.6824156639839,133.313242637264,98.8835915020318,141.921429734515,100.995173629223,55.3468787561023 -"Tfru28675_t",12.0349749049329,12.5144039543148,11.5080162143546,8.36653984755717,10.8563460586886,9.49134877318949 -"Tfru28676_t",11.0539969436115,11.6066203514298,12.760837524839,11.3722526772549,9.61932791124278,10.185888292707 -"Tfru28677_t",45.9504270738856,38.6997532245264,48.1138981192257,16.2035136970766,17.726510389756,17.3188842604711 -"Tfru28678_t",3.53140964304757,3.58054008939741,3.52125166213174,5.19086014012541,3.70004075071093,4.21552401464095 -"Tfru28679_t",0.914576418973767,0.419493032765067,0.675076665325977,0.608156760844138,0.735054413793272,0.286773218474546 -"Tfru28680_t",24.3753924845007,24.8494296998198,28.1749801517857,15.0337022292354,21.5490213573296,27.8953141958347 -"Tfru28681_t",0,0,0,0.426497393017348,0.446097204406865,0 -"Tfru28682_t",2.14454901858301,1.57170211471329,2.60958464921376,2.31473057919515,2.58251167390256,3.88846660388849 -"Tfru28683_t",6.75032737056195,4.9175007034668,4.8360741936367,3.9312778773991,3.97692193773386,3.85972354075161 -"Tfru28684_t",12.5816488434964,12.5918488041194,13.851975948267,7.57790865602861,7.65046134533973,10.9530154003403 -"Tfru28685_t",24.7194712035389,20.0575137523867,27.3031806529548,20.1034638704912,24.496348405745,17.8890845763338 -"Tfru28686_t",0.114925276021132,0,0,0,0,0 -"Tfru28687_t",20.4789838113224,23.648425859142,20.9622213024753,308.406644630241,212.259969924223,54.3480528991129 -"Tfru28688_t",54.835225005631,54.7368199719457,61.4484533112514,45.0855926133192,56.893258943622,43.9770930138519 -"Tfru28689_t",29.4590304892896,14.1772535761077,34.0681532911035,0.269662820255344,3.49748514176554,23.5560430987049 -"Tfru28690_t",12.9850690193107,12.6528718975075,13.4705538717221,7.55913738540722,9.2003138749275,6.62815167070931 -"Tfru28691_t",6.19164494763054,5.43472574898285,6.44436918479793,7.18781529006172,6.51571563615902,5.83364035467742 -"Tfru28692_t",0,0.526824257896259,0,0,0,0 -"Tfru28693_t",20.3472383562347,17.5347152718756,21.821961874278,33.1196930783039,38.7879199261167,30.5498700028579 -"Tfru28694_t",22.0181042417475,20.8969762799886,19.3186911869082,30.5578351920122,31.2429814598492,36.3049117106352 -"Tfru28695_t",18.7237203361584,23.1370090527484,26.7318481287292,18.6029782973366,34.1179328179796,31.9041512881785 -"Tfru28696_t",23.5187974091216,24.2364920232194,26.0020054944078,27.3019594909684,30.8456038856439,35.6166728089279 -"Tfru28697_t",9.55980149468195,11.6264663822387,9.47978347159479,20.3762806215702,38.3628213127683,103.642807776202 -"Tfru28698_t",12.3544671722717,13.650034752573,10.1384134833255,21.1985068852027,51.3274195188134,112.721389993011 -"Tfru28699_t",0,0,0,0,0,0 -"Tfru28700_t",224.702453533269,188.265179460828,233.16239784685,296.267183635167,223.3979554358,130.150412825131 -"Tfru28701_t",0.678996432392301,0.842299474863143,1.11628217142991,3.12861377482509,3.25903343381151,2.57421631895924 -"Tfru28702_t",77.7943623466543,103.720592918501,94.5685031592242,104.824165872375,130.428420301918,126.78891264634 -"Tfru28703_t",0.446863706231104,0,0,0,0,0.326941807587116 -"Tfru28704_t",0.677503038479415,0.32629115330799,0.700119831942909,0.280318851055757,0.351841182185415,0.693960352878458 -"Tfru28705_t",0,0.234415428796007,0.083830493589147,0.402775637669917,0.16851412356505,0.997115686638804 -"Tfru28706_t",0,0,0,0.0717579222355777,0,0 -"Tfru28707_t",0.631109446997294,0.448127886561874,0.898834379254452,0.225972145173523,0.189085408513398,0.479502055854434 -"Tfru28708_t",0,0,0,0,0,0 -"Tfru28709_t",3.49040247331229,4.54065148395168,5.18235787732335,4.97987643709368,2.92925040220889,4.84323537313864 -"Tfru28710_t",2.53552444984248,2.17089754581842,2.03790749204039,0.874233841320771,1.7556662612069,0.494688610272658 -"Tfru28711_t",34.4774936478632,37.0387288999419,40.6348319320575,15.3033650494908,18.1643583169114,11.6826529538111 -"Tfru28712_t",0,0,0,0,0,0 -"Tfru28713_t",0.207561153233965,0.458164641869568,0.178741731852832,1.34185984909334,0.853343447836975,1.67045252153219 -"Tfru28714_t",6.1619181309636,6.96627117944056,6.12845941046444,9.33623941946033,12.0939348504642,11.0484714977167 -"Tfru28715_t",2.7870741109011,3.19590071170543,2.5715301884159,4.53027147914754,6.89230751832408,5.68042022092116 -"Tfru28716_t",6.06457887027926,5.79026296878363,7.53143091758241,7.3296137270734,6.8514564555255,6.35201226169253 -"Tfru28717_t",0,0,0,0,0,0 -"Tfru28718_t",38.1976114834645,38.0444285012429,31.6348562207126,16.7622135301361,18.6134786398598,24.470136218043 -"Tfru28719_t",80.779208430199,75.2142940537884,59.5460892934086,74.198243572036,66.56113441126,53.9001293836158 -"Tfru28720_t",0.661499029696437,1.0619449608974,0.569651306830188,1.71060716195442,3.43529973157413,0.967953698053193 -"Tfru28721_t",1.03351957363819,1.18512311101906,0.890017595381436,0,0.511169380093631,0.432091808972778 -"Tfru28722_t",0,0,0,0,0,0 -"Tfru28723_t",0.150646222542942,0,0.21621552889251,0.0519419269738701,0,0 -"Tfru28724_t",0,0,0,0.436677607172285,0.548094303906928,0.463304471053098 -"Tfru28725_t",23.7555737044552,19.285990833403,17.6785021773233,18.1489470179088,16.0897849276525,12.9707703674654 -"Tfru28726_t",22.3087772473044,23.3654099318476,21.4966046458022,18.0145678220432,19.6679105066332,17.2320602079874 -"Tfru28727_t",0,0,0,0,0,0 -"Tfru28728_t",1.18882608638841,3.816990850018,1.74418392793604,32.1753078333496,38.2180688121025,8.6242641013628 -"Tfru28729_t",13.5899666441907,13.744426373047,14.794769703712,14.5398261198294,16.246700750542,18.7642844088355 -"Tfru28730_t",0,0,0,0,0,0 -"Tfru28731_t",24.4725880160304,23.7483213320685,18.5582488786026,24.5583689077109,17.3880932065546,19.2412361195617 -"Tfru28732_t",13.9751102043758,5.44852464490845,8.18359334612608,0.165206927428298,0,0 -"Tfru28733_t",0,0,0,0,0,0 -"Tfru28734_t",0.0836756740751469,0,0.0720574860233405,0.173105266588216,0.289696590909638,0.061220179109938 -"Tfru28735_t",2.08188980337406,4.22688150981099,1.89828409243996,2.40681928967698,2.22593400974446,2.15038110179747 -"Tfru28736_t",0,0,0,0,0,0 -"Tfru28737_t",0,0,0,0,0,0 -"Tfru28738_t",0.31138019559469,0.29992663461965,0.107258289054757,0.450920612891766,0.377314240347097,0.729014794086022 -"Tfru28739_t",3.51507852600199,4.79652546145916,6.96214003033883,20.3612353737571,22.2096679298632,27.5178301314746 -"Tfru28740_t",2.5361623176286,2.41742753834473,2.18402161411121,2.45940124039485,3.1555064515497,2.55137984184964 -"Tfru28741_t",0,0,0,0,0,0 -"Tfru28742_t",34.4798289029393,35.8913183054569,39.4484457750763,25.6450659633615,25.3906322831394,29.7915338832736 -"Tfru28743_t",10.6759029863953,10.2311523348216,11.2986480400446,11.5331897834906,11.0538860721435,11.8988179948926 -"Tfru28744_t",11.3113550772215,9.17398315097827,7.60999817329249,7.3126656797154,4.28328395703983,10.172338091883 -"Tfru28745_t",92.6818617524553,86.3851799067861,79.0738305847425,81.7257649791095,69.295513364162,79.4774317274649 -"Tfru28746_t",0,0,0,1.94549650357156,2.17056251693757,1.37608342893152 -"Tfru28747_t",30.0953981303487,29.3662037977191,29.9700419287842,29.5072474795533,29.3200985154512,29.8455129207878 -"Tfru28748_t",46.0441488074279,43.920506557115,38.2963658410607,24.5832255564029,29.4756018719502,27.1242571703448 -"Tfru28749_t",46.4486438056668,42.2334408583883,49.8695506260932,34.7939018784481,38.046270000465,29.4412471437271 -"Tfru28750_t",27.4923136501086,33.0573636067617,22.0715743629459,14.0488352471751,11.0919423536419,18.2712303004095 -"Tfru28751_t",0,0.0922482968768599,0,0.118876667342387,0,0.168167058348503 -"Tfru28752_t",5.30674000971521,5.85697419330057,5.477172179606,4.27834530687049,2.80318117901555,3.79695910678506 -"Tfru28753_t",0.668644272200264,0.785893605939843,0.658062225968699,2.00079771177091,2.02557042160184,2.48096603051326 -"Tfru28754_t",4.82079438244725,4.90144068600883,4.81566739798527,8.04495799778228,8.84583109916812,7.85360749120511 -"Tfru28755_t",22.5953086159808,22.2960122755854,26.4072835836639,20.4726295366606,13.8222474538362,9.32230432149308 -"Tfru28756_t",39.1779160905308,27.8811607281763,40.1727413184549,25.2758656324554,28.6660347793373,26.7432111263807 -"Tfru28757_t",0,0.471562972146498,1.01182819534819,0,0,1.28947677957368 -"Tfru28758_t",9.38535544313173,7.25782955904875,6.20950968112852,5.919539770251,3.46728140482448,3.51707426799436 -"Tfru28759_t",20.6869482685761,18.5149797011952,19.6546164767017,11.6534865710578,8.06997578561691,8.95329195158797 -"Tfru28760_t",0,0,0,0,0.148093369283746,0 -"Tfru28761_t",1.33068178624257,2.13622507973552,0.840340945767448,0.642335698828925,0.844616987857983,2.66110607484845 -"Tfru28762_t",0,0.337167525084923,0,0,0,0 -"Tfru28763_t",4.70526550145581,2.88412139583844,5.193862500717,0.398212624463117,1.51795703515839,2.03423059506851 -"Tfru28764_t",22.756761202198,20.2452735152572,19.5970336706367,10.0041558356468,12.1463306536244,9.71231193644794 -"Tfru28765_t",5.88130297233194,7.31262442874644,7.10050609700964,6.50101165214415,3.49345854652185,3.03739485758352 -"Tfru28766_t",68.1966587909397,68.6235080466961,71.9201529323314,126.770078053921,99.6607395656962,70.1424800371605 -"Tfru28767_t",46.183714979068,44.8379850112934,39.7712051129872,78.7094239901584,72.7138443183191,37.9731783220554 -"Tfru28768_t",1.57028741628874,0.157554918263983,0.676128186611532,0,0,0 -"Tfru28769_t",5.67521480748775,4.90049012917698,3.40624660645032,1.68994680933307,2.53047155253106,3.83763423685674 -"Tfru28770_t",2.53924018451893,2.55701328787613,2.82279492600539,1.97388837416803,2.18447892804622,2.55588360149986 -"Tfru28771_t",38.0736682905082,35.8759534080509,45.973386008862,23.9720948489061,22.566365478099,20.2864975781641 -"Tfru28772_t",5.57023414276278,4.88014907673639,4.97840212367408,4.78025432473873,4.57788478138758,4.83389719613428 -"Tfru28773_t",6.25609188723545,1.79344428236661,3.46335874312184,1.38668367809497,0.386775767650633,1.30776723034846 -"Tfru28774_t",758.440049512062,980.234525442425,697.994700981891,348.080843710409,887.596367796241,1093.32262842004 -"Tfru28775_t",17.1251921880258,16.080297350204,17.8081762381376,9.35833702755373,8.11039032781251,8.27414266893546 -"Tfru28776_t",3.60044471877632,3.50303922166154,3.38239711016574,5.30421514270439,10.5765591735737,13.7298575196584 -"Tfru28777_t",0.816162986769243,0.567769148459067,0.562272403891973,3.60202461460247,3.9088400766972,3.26433607886203 -"Tfru28778_t",27.1731676888779,21.9931377548656,21.6452142112808,19.6752099231588,19.2074305746503,16.2360535390432 -"Tfru28779_t",1.3731523251835,1.00867106136345,1.52129212449214,0.977306584749218,0.852925183120862,0.97929336180733 -"Tfru28780_t",0.295811185814956,0,0.254738436505049,0,0,0 -"Tfru28781_t",8.37127315038781,6.89864466737088,7.40117820570294,6.15757972203965,6.5693641456763,6.58748648272073 -"Tfru28782_t",6.95564481783564,8.03816883056246,6.37220046689083,9.43998009867743,10.0339127509131,10.2862842340092 -"Tfru28783_t",14.7069572322482,12.73502042144,11.4759220861713,4.27209799738315,3.57281210657327,3.4362808630013 -"Tfru28784_t",0,0.0448063156259034,0,0,0.0483148467231356,0 -"Tfru28785_t",10.6962813926511,6.43927368862452,9.21112564041599,7.83703100829623,8.67937133773039,7.98882740448941 -"Tfru28786_t",0,0,0,0,0,0 -"Tfru28787_t",0.308861679306792,0,0,0,0,0 -"Tfru28788_t",5.42248795524797,7.172472806352,5.85342611009238,4.34494219136423,5.48659007129135,6.25826063686755 -"Tfru28789_t",0,0,0,0,0,0 -"Tfru28790_t",4.23581730946684,4.53334486787734,8.5112606885068,2.92096953576469,1.23553099736526,3.6155917487392 -"Tfru28791_t",2.78420557023529,2.86640979539056,3.17945869885697,1.00171577898887,1.15252490994454,1.41706189801447 -"Tfru28792_t",32.0014589821411,29.428586977487,29.3612419867971,58.727148820933,54.8970479857859,61.0433651485325 -"Tfru28793_t",85.1671461590061,115.368165209781,83.0543761622692,56.0878940365434,24.2796657448432,23.3799969391213 -"Tfru28794_t",5.55866749442729,3.81785874243501,4.88555653531784,5.0384732096311,5.00961683229892,3.56379951244346 -"Tfru28795_t",0,0,0,0,0,0 -"Tfru28796_t",0,0,0,0,0,0 -"Tfru28797_t",0,0,0,0.142223966984099,0,0 -"Tfru28798_t",0,0.11054672953604,0.118599534372842,0.142457121028335,0.178804535208981,0 -"Tfru28799_t",0,0,0,0,0,0 -"Tfru28800_t",6.84867201941148,6.04702626511003,5.30797372587151,6.611868552076,4.34702330163864,7.18205862101696 -"Tfru28801_t",7.48496707937098,7.26344934358478,5.29124252421392,5.89340563190361,4.25453344415697,5.72148163277452 -"Tfru28802_t",17.424673911691,17.1666622492709,18.3823570889341,16.3510336556633,16.3763614730382,16.5346335144106 -"Tfru28803_t",37.3531479781843,27.3468122951615,52.6686238394836,60.8574964914208,62.5291690554926,87.8930334325075 -"Tfru28804_t",64.5267986558936,66.8692079038717,63.307906859727,67.6803308469527,72.0184339721785,59.1504759835434 -"Tfru28805_t",44.3984112996451,38.1549105007693,38.5180530985748,14.5115947452244,26.142698448433,40.5741848755656 -"Tfru28806_t",52.6113486485955,45.7893700257984,51.4985909668324,22.9333610671151,40.7653934623386,53.7490466099423 -"Tfru28807_t",31.1494394477508,26.7695727724856,31.0886124535119,27.5362079432554,26.2282682780435,30.5931884677386 -"Tfru28808_t",11.8440859054828,15.7529089588857,11.6227543685386,12.2513124084368,15.3771900279724,17.6837999992283 -"Tfru28809_t",312.68993854241,283.930547439935,342.92821285879,261.411160131749,190.156270503499,75.2138232085938 -"Tfru28810_t",142.171406843988,181.551744276497,168.855486863262,289.545540363786,213.725712449796,93.0685521257703 -"Tfru28811_t",81.6142294650881,108.581348182059,77.4105413722413,89.9031253770611,75.6048009636455,64.5462814944243 -"Tfru28812_t",24.5709170231464,26.6804403092802,24.3023235173769,37.2808849003013,34.1286856575508,33.3313241416897 -"Tfru28813_t",26.0249536737636,26.3870237022983,24.3773608151136,30.2256848094903,23.1182602859873,18.8737819575562 -"Tfru28814_t",14.9445210726278,16.7203185779147,14.3506515749778,17.5537245947745,17.7649383070688,15.5759955974943 -"Tfru28815_t",9.98143090353831,11.0640545713864,10.7444132624902,9.71005468508555,11.3133279703184,13.3884288730724 -"Tfru28816_t",10.9239499207455,8.14212599276285,10.3031050603776,8.34013671407376,12.1564940965611,11.4176581720826 -"Tfru28817_t",19.6824311293105,26.1063997994326,20.1017739366656,26.0075825454516,21.3467071534494,21.9079034666875 -"Tfru28818_t",0,0.5060675798648,0.135733050595561,0.163037230445187,0.272847445847351,0.230638123175901 -"Tfru28819_t",14.0082692701573,18.582796805241,13.1445509160821,12.135803038,9.7812177317496,11.8279330445902 -"Tfru28820_t",22.5824353489621,21.4832405363845,22.3679508992232,18.7447727282306,18.6208572562952,22.6754396593993 -"Tfru28821_t",371.010293356138,449.870476997827,389.179555819736,401.410902958523,365.507027087388,267.700615893564 -"Tfru28822_t",26.2532427386389,38.4581708264269,24.3036389555524,27.8347859108417,12.4976919910503,15.8464607350161 -"Tfru28823_t",12.324537103752,16.6995490217028,10.5159317960738,8.88871080871283,6.5569684647744,7.44529661423149 -"Tfru28824_t",26.3118001598307,29.7685082556391,26.0874886574018,12.8410001566341,11.6234026233744,6.11223178570856 -"Tfru28825_t",87.3837664178685,86.7002207361231,95.4739989099185,35.5647777825953,44.1336537715821,36.4993289625363 -"Tfru28826_t",0,0,0,22.1346111635536,20.2364000697209,6.08852007714119 -"Tfru28827_t",0,0,0.107337857518448,0.515720141408217,0,0 -"Tfru28828_t",0,0,0,0.371892341628893,0.103728736545391,0.175363936737169 -"Tfru28829_t",32.9424251381189,27.827867652557,30.9699126572919,16.9631304731343,24.0304314271157,25.5753587976195 -"Tfru28830_t",0,0.34230205592378,0,1.76444352948801,0.738211617444864,0 -"Tfru28831_t",286.399005307505,289.964065079862,317.663454816288,371.295051674889,420.41821773512,483.897641979007 -"Tfru28832_t",68.1684200088316,71.2868481608123,77.5132671079649,80.6917835539072,95.9822745001812,75.689830814768 -"Tfru28833_t",0,0,0,0,0.164139603427357,0.138747313377828 -"Tfru28834_t",0,0,0,0,0,0 -"Tfru28835_t",0,0,0,0,0,0.123672152568164 -"Tfru28836_t",0,0,0,0,0,0 -"Tfru28837_t",0,0.178868713572903,0.191898450842,0,0,0 -"Tfru28838_t",21.5942165644918,21.3697727166501,27.7664895790503,32.1280936685383,49.1586553137932,41.7702695298975 -"Tfru28839_t",61.7939724063186,66.370630156822,53.8475118846925,24.4260322842017,24.6412064371186,30.6248853250516 -"Tfru28840_t",16.4628410537872,14.4958009597081,13.919247015112,5.67629027375375,6.04509394570348,6.35090285616967 -"Tfru28841_t",22.6919786314138,17.0090469456942,19.972302918517,6.55840330771959,8.37617273180239,6.40896850225388 -"Tfru28842_t",13.1176612194325,12.3129437488351,14.5679086760362,7.26628557600162,7.75531616023027,7.39468723167172 -"Tfru28843_t",25.3266577031569,15.7675401436773,23.1931854130891,7.795337460977,6.41592743985168,5.42338763173921 -"Tfru28844_t",2.03414955863069,1.79604977042816,2.45239715143844,0.42081764565271,0.35212515408387,0.744129053588108 -"Tfru28845_t",23.5883407140936,9.10691179563548,55.1681527540608,14.0282681304096,10.1854191476037,6.13878424145355 -"Tfru28846_t",43.3273855988337,20.4096564821382,122.094343896614,34.5070469435222,24.4726982088289,13.9896262074564 -"Tfru28847_t",0,0,0,0,0,0 -"Tfru28848_t",9.83805727981424,10.3368464927351,9.75715248244997,20.9814971609299,24.1103799581795,18.8438933415079 -"Tfru28849_t",6.09721613683449,6.47386428504813,5.68264466257749,9.22077764083727,12.4585502667584,10.390051454344 -"Tfru28850_t",6.64236080167528,8.23235743345408,7.88363803659869,10.181511402951,12.7494983073497,15.4355107224783 -"Tfru28851_t",19.7590195367056,21.4057014280889,19.2763256360597,13.2920928880551,13.5142506710034,12.6367310498309 -"Tfru28852_t",11.9617423879876,18.756339143797,12.4568782460482,7.76910193157843,6.50090661124045,10.3798610965075 -"Tfru28853_t",0.161093723435182,0.193960225360454,0.069363102557463,0,0.139432107992942,0.294655128602002 -"Tfru28854_t",5.32391341167894,5.99844550441781,7.12941793981398,6.34058424437455,5.24216086946021,4.23465673803823 -"Tfru28855_t",2.19430088582139,2.0129404482682,0.809840104113066,1.45912237769694,0.813960943861781,1.72010428618594 -"Tfru28856_t",0.0224446638448965,0.0180158976801989,0.0193282703626593,4.57362335933077,2.99169971280287,0.870330796366021 -"Tfru28857_t",0,0,0,0,0,0 -"Tfru28858_t",0.0620002780601088,0,0.0533916723006892,0.833715844837417,0.85861365984731,0.272170006611267 -"Tfru28859_t",10.017841154633,11.2982929160533,10.4833037477338,26.5615333962644,25.5733218508201,22.7768636790577 -"Tfru28860_t",0,0,0,0,0,0 -"Tfru28861_t",0,0,0,0,0,0 -"Tfru28862_t",0,0,0.683821796325774,0.000652188701881725,0,0 -"Tfru28863_t",2.36123840038092,1.34667500604162,1.71232463828246,0.771291513259923,1.85793846429271,0.363698578854306 -"Tfru28864_t",0,0,0,0,0,0 -"Tfru28865_t",0,0,0,0,0,0 -"Tfru28866_t",9.8077491227507,9.71690265755081,8.59075212955519,5.10146648218882,4.55977409334356,4.63345681146143 -"Tfru28867_t",3.32714277254737,10.6825326807033,2.14888209578552,5.16230621669353,4.31963319684909,4.86851832891739 -"Tfru28868_t",7.26287314154354,8.1768172251134,7.47283593076787,6.82962470199467,6.01413158471127,6.92402058672893 -"Tfru28869_t",0,0,0,0,0,0 -"Tfru28870_t",0,0,0,0,0,0 -"Tfru28871_t",0.272760963543661,0,0,0,0,0 -"Tfru28872_t",82.4546290534577,86.789418494082,82.8403105676481,113.719474638175,145.203263191211,104.528543099797 -"Tfru28873_t",73.346520896434,59.6064951429717,76.1533852288778,94.4197783052793,96.6609240194964,98.8635887479615 -"Tfru28874_t",0.104231236689141,0.0836643982841,0.179517905626387,0.215629885427505,0.0902156877398499,0 -"Tfru28875_t",17.5952584328497,16.5893596118912,16.0661363917041,8.6378837447999,13.6096723242067,23.7441487760143 -"Tfru28876_t",64.3194802320707,58.6141340448881,79.5749719347895,41.8851150262298,133.246383343048,621.470013424529 -"Tfru28877_t",0,0,0,0,0,0 -"Tfru28878_t",0,0,0,0,0,0 -"Tfru28879_t",0.976864846179621,0,0.420614627717639,0.505225836205143,0.845509817654873,0.357354998990568 -"Tfru28880_t",35.3184000754059,42.5972864542891,34.3930067949378,64.0108704892733,116.0159382937,168.606397830534 -"Tfru28881_t",2.43965904529314,2.37295900811391,1.95261754746405,1.7813223879867,2.83203903392155,5.56482434369323 -"Tfru28882_t",15.3195392936169,14.6767040331084,11.0646389126664,13.2904114088788,9.83775540777258,13.7392486670727 -"Tfru28883_t",17.2763274812251,15.8387164001587,15.8256253678762,16.9067307043003,18.6915628036002,16.3576368892779 -"Tfru28884_t",2.16917594676142,2.10389633727009,2.60740342647556,2.33724700987855,2.77712907294279,1.52092132975437 -"Tfru28885_t",4.27332361120776,3.27766471258139,3.95257302761037,5.6972113134693,6.13711421526129,6.06776400697474 -"Tfru28886_t",0,0,0,0.0764954611155675,0.128017331546336,0.0541065667485719 -"Tfru28887_t",5.45004026523631,3.62775185217955,6.86826417412347,5.49992682451169,6.67310596592169,7.00234858781518 -"Tfru28888_t",356.672373947804,350.594550420163,377.414155423029,354.324268083375,189.023820960232,79.5510176956437 -"Tfru28889_t",0,0,0,0,0,0 -"Tfru28890_t",0,0,0,0,0,0 -"Tfru28891_t",271.911448472255,243.996041045408,260.665480423292,153.897189062861,206.485115156351,193.309959141942 -"Tfru28892_t",1.0605961187093,1.52341473128071,1.15368583602552,3.00248496944771,4.39665105180534,6.20776683960758 -"Tfru28893_t",3.11919715735572,0.667658465514699,1.61166198937353,7.09817288688216,15.8386591584457,18.4090897004745 -"Tfru28894_t",15.8863553102076,11.4709347923194,17.0857760253395,12.1270888578126,9.96738080663994,5.73538543384036 -"Tfru28895_t",2.49741830204138,2.67283917490938,3.1065047318799,1.86570597812502,2.28168958224288,2.94382615188266 -"Tfru28896_t",1.76775341903847,2.50003976515875,2.6096651050377,4.61486845976562,4.80873118738382,4.43435301352625 -"Tfru28897_t",4.99689973361769,3.50955044698061,5.37886364070141,3.23044029097712,1.35155844457842,4.79838757008897 -"Tfru28898_t",18.4524838474803,18.4453175387523,23.4901506142555,11.2624695274107,19.2944648293493,22.724462773463 -"Tfru28899_t",1.6580995415417,1.33092444112467,1.42787597304143,0.571702919916336,4.30542499253197,3.23500314875666 -"Tfru28900_t",75.365241147267,103.925970807048,72.0829591297798,103.836754064806,94.1494630731746,86.8026541010528 -"Tfru28901_t",3.38459071884968,2.32863902216925,1.97779655162769,3.62599492228957,5.2312118214618,4.77570249010704 -"Tfru28902_t",3.76005522634355,2.84565941887531,5.088253680574,6.55630663147032,8.46158546415222,7.54558279198499 -"Tfru28903_t",1.41856170908635,1.1386520546958,1.62879660714673,1.95644676534224,4.77483030232864,2.65233841652287 -"Tfru28904_t",13.3564884728799,11.6144112903677,16.9612364048074,10.7622416030335,9.34054566992232,8.35584914690388 -"Tfru28905_t",0.150594785505796,0.120879522437616,0.0185264317458217,0.289291925673419,0.428276163718652,0.17314101359543 -"Tfru28906_t",10.632088663321,10.2410063866694,10.8126180553979,8.34424414412255,9.96200117016745,10.445849862016 -"Tfru28907_t",0.3238729223348,0.627059408585346,0.163162333637641,0.529774012017312,0.338511201161221,0.511177339355868 -"Tfru28908_t",0,0.298378340783118,0,0,0,0 -"Tfru28909_t",2.56129197473925,4.83136392652176,4.41132414435573,1.58961299684057,4.8771480945214,3.46677928898777 -"Tfru28910_t",1.84132332649748,3.32548791864582,1.78386696906001,1.19039512092171,3.5858882129582,3.03115363527342 -"Tfru28911_t",5.05748087587309,4.0595421080459,4.59721940930182,7.84705278707922,11.6731255092954,9.45616305021196 -"Tfru28912_t",2.890380868303,4.79030770432474,5.83992504145962,4.76663468137802,6.37820303424511,6.07636569805969 -"Tfru28913_t",13.2557356791013,9.39647201056343,10.8222075115219,16.7387117208294,5.0661284975878,7.80908546974471 -"Tfru28914_t",65.8693185483071,52.178624704659,42.9610806901728,72.15508112137,45.2358620180802,42.3461080551908 -"Tfru28915_t",8.81084439310302,7.81241826416285,8.46974235716299,9.21975538167532,7.71476153133385,8.39522768360281 -"Tfru28916_t",5.51227435155526,5.02341354591252,6.35300317819597,10.1603482915967,9.72148584620842,8.09628563080555 -"Tfru28917_t",4.34536431576452,4.21459406356154,4.67752473927374,9.17681755934687,6.2684348550275,7.15326127289741 -"Tfru28918_t",1.37631678852306,1.10474287380381,0.853357069078513,5.46676868113979,8.14814376044073,9.2237868284669 -"Tfru28919_t",3.41447763338652,3.88270816355203,4.22680304974847,0.367903657185794,0.369418345393662,0.364314495160579 -"Tfru28920_t",1.16913049184917,1.34062634228598,1.43828461167861,0.691044483715981,1.30104294008921,0.733181628147647 -"Tfru28921_t",2.4197408251002,1.8815829482687,2.15902668101926,1.13414332627869,2.07808871284717,2.76620431261826 -"Tfru28922_t",15.9668014019457,17.0807221027127,15.3401298314444,32.2087023451823,39.3446570542139,40.0343947330414 -"Tfru28923_t",0,0,0,0.0920538599865303,0.0770273774558465,0.716224214078554 -"Tfru28924_t",19.402888001268,17.728218763679,24.1744898564398,12.8106403676587,15.5432541908938,15.1019803013213 -"Tfru28925_t",5.12138287469551,6.48247058779922,5.55526892833168,15.4849053478866,12.4457459208377,14.5195891617997 -"Tfru28926_t",51.2675684089802,45.6028548675254,55.8342288259901,52.3589943846982,50.3992727122057,83.8670022771432 -"Tfru28927_t",9.65949271380205,9.22774279179789,9.78278102555584,15.268865676535,29.5565585812115,33.1961092341651 -"Tfru28928_t",23.9153627304516,25.595198984435,25.8754750539306,27.9091177254271,24.945625422962,23.3298037296162 -"Tfru28929_t",126.232086746788,150.161207048131,121.663865125646,87.6827251504689,54.8164934616194,50.7720403978197 -"Tfru28930_t",4.80782276704067,4.46848527220982,5.01190200979211,10.2079967146509,7.22758091115822,4.25812161447798 -"Tfru28931_t",9.16249874446395,7.61507634664313,9.50276566347869,4.05441856787034,4.12729398656729,6.3930968615846 -"Tfru28932_t",0.345153561098798,0.110819235853713,0.416121620190663,0.071404144475994,0.119496868230598,0.101010780322724 -"Tfru28933_t",4.40753963983746,5.78920392832618,5.86586886222437,3.59200308348076,2.65885281291151,2.63840479381907 -"Tfru28934_t",20.5283028358719,21.7880114646655,20.1495595717057,17.7118662577905,12.8838658722673,13.2041327131361 -"Tfru28935_t",17.1839407032506,17.8015021985396,12.6478524418591,19.7497372334738,17.6699726577733,30.0877915234017 -"Tfru28936_t",21.3768052252514,22.9033619489758,18.5698079404159,30.6274878299951,31.1341571719306,34.0179674094763 -"Tfru28937_t",0,0,0,0,0,0 -"Tfru28938_t",0.0907239489972435,0,0,0.0938432438739575,0,0.132753908912263 -"Tfru28939_t",0,0,0.277718679337558,0.166792406578281,0,0.117975162814545 -"Tfru28940_t",51.7529572935558,63.0065726265566,46.444845136345,76.2189095859161,45.2935091326323,21.9585099227059 -"Tfru28941_t",0,0,0,0.157568166504596,0.131847405835574,0.111450697781283 -"Tfru28942_t",8.81227728371363,5.18719269361148,7.08279736743736,15.7997897867707,16.2716294977971,12.4649422025456 -"Tfru28943_t",2.06160433794963,1.32384795125368,2.92933573855867,1.70598957206939,3.12268043084806,3.01669005282835 -"Tfru28944_t",7.34071253342745,8.92764850180732,7.08770915479714,8.36008294543162,7.50884358803471,8.57147347975965 -"Tfru28945_t",11.9237609772751,11.3905488776666,11.4394467233989,7.26892649391749,9.22166940896113,11.1784809290282 -"Tfru28946_t",0.675686676445958,0.289259002753821,0.349121417537214,0.279567325985902,0.0779773129418971,0.0988714099083824 -"Tfru28947_t",0,0,0,0.330833161779002,0.830488069625471,0.0780013449573321 -"Tfru28948_t",0.0925224413782461,0,0,0.0957035724970095,0.160162652683522,0 -"Tfru28949_t",9.97211639168357,9.51469387697655,8.26345243972929,7.00640174195352,8.71263308181426,10.806287113932 -"Tfru28950_t",4.4215987774446,4.94863178109035,4.28813225973334,4.80446870238847,6.13292925679995,8.53142786233634 -"Tfru28951_t",0.87057385255386,0.698792798103467,0.937120673153289,1.57588576888858,2.82566752532328,1.59235906285953 -"Tfru28952_t",0.200502092533287,0.0402347881962915,0.302159911558495,0.725885330299514,0.433853486386152,0.40341029718983 -"Tfru28953_t",7.60117542639353,6.77924059898721,8.59934293876654,6.93751857876016,7.52508737770895,7.74219854702451 -"Tfru28954_t",43.3510544554181,46.7940764156647,38.2163499608746,45.3544555894512,41.5376302914512,40.5275520946268 -"Tfru28955_t",8.60685374495898,8.79790932757574,5.87023552411367,6.3867747133639,4.88617814911804,8.21359374071863 -"Tfru28956_t",0.533964259140556,0.357168988437418,0.536461876877158,9.66565529858568,9.39734004961327,5.53445983606155 -"Tfru28957_t",1317.8805730343,1714.38309687352,1333.95735791486,4015.47295525833,3706.84472001885,1907.49082902903 -"Tfru28958_t",5.79509189504273,7.40701944386913,5.05402848805887,15.8449122092808,12.2041689497354,7.58861239508442 -"Tfru28959_t",131.678236428486,162.851236210535,121.255495776403,134.806858331663,129.334081242242,141.017171965849 -"Tfru28960_t",27.1650320099291,53.3007345044429,32.0573831232941,39.5467792267882,28.3017956927589,44.5345643053396 -"Tfru28961_t",4.95483736240051,4.98628030055168,4.58529185709088,4.28374582247178,6.46487524308999,6.49278800982863 -"Tfru28962_t",5.71798375931318,6.35499000160064,10.2268813147681,9.55432314331402,15.2280302237317,13.1940704339345 -"Tfru28963_t",10.9380599051432,7.07259184626601,12.2320514339151,10.6855721161941,12.2285488636594,10.6702454671469 -"Tfru28964_t",139.360173741805,113.078309110288,157.880473892627,225.717052213968,170.103144831302,104.179947972868 -"Tfru28965_t",0.697760604414015,0.448063156259034,2.16316094254786,3.32005549506237,2.89889080338813,2.85883999192454 -"Tfru28966_t",1.29745755631579,1.95270767423701,1.81562607640278,1.17430870036871,0.842245300984391,0.474633666612955 -"Tfru28967_t",0,0,0,0,0,0.126211621820077 -"Tfru28968_t",0.346759528887775,0.48076420087156,0.542932202382243,3.60312279283863,3.57254314552515,2.52548744877612 -"Tfru28969_t",0,0,0,0,0,0 -"Tfru28970_t",0,0,0.0487504824578396,0,0,0 -"Tfru28971_t",19.6270022707095,20.352989022682,20.32128146013,17.6027367644736,16.9878393883446,17.3065023278862 -"Tfru28972_t",70.9530454843896,117.662567405002,80.8320169606813,178.129888079976,167.391107888212,128.517852364244 -"Tfru28973_t",1.93275406682778,4.03359922647607,3.88358904733157,1.53272500615609,1.00371870991545,0.518493602829873 -"Tfru28974_t",110.958807641083,80.6443746758556,115.799870445182,97.3753459894546,47.2757394706832,34.2722292680987 -"Tfru28975_t",97.0405576584475,58.0753859534031,77.365622789664,66.3268726355193,27.8983729221306,25.8404129065996 -"Tfru28976_t",16.1576377781661,15.6307790950987,17.0509080434641,5.26513283889607,6.14369334985241,7.03824476055242 -"Tfru28977_t",13.9291816408618,11.1806847696555,18.7424134630658,12.1568330742833,14.316715461638,10.9872775337307 -"Tfru28978_t",13.1889641633275,9.51897762113107,12.7893482053247,1.37570729014171,1.05521409960621,3.00027336883374 -"Tfru28979_t",13.2559649100087,16.2971786425868,15.7021993378052,14.8688434511399,13.9908794993304,10.8443680785553 -"Tfru28980_t",9.75285784708942,10.206687754224,11.4286031836872,11.4928669279289,11.0059161863143,13.4130218724718 -"Tfru28981_t",36.85616529328,26.9734020067937,37.3397243702883,41.4871899562518,41.2826987097551,44.4134625842211 -"Tfru28982_t",0,0,0,0,0,0 -"Tfru28983_t",86.7738760073503,122.112317473191,50.0946487208712,16.1506074876368,28.2244527288212,26.0822128868511 -"Tfru28984_t",0.757988361847646,0.709826368599838,1.74064880523149,2.22147420310352,1.74950602871144,1.10914393671659 -"Tfru28985_t",0,0,0,0.374160791506069,0,0 -"Tfru28986_t",6.12191507640925,6.98608743810727,6.03410273652873,6.86645824798562,7.78848903146174,8.58028490991577 -"Tfru28987_t",3.87511772284703,4.46540753739242,3.67375965746786,2.37487523503138,2.80016046443216,2.02914293537723 -"Tfru28988_t",16.5303436774007,23.9925139143988,13.8451370180264,51.9987690826339,73.1058326973936,59.973993685037 -"Tfru28989_t",1.23027748410069,0.352685695695526,0.983780656460921,3.09054465494527,1.82545215861889,2.12170185593145 -"Tfru28990_t",0.597702285330456,0.266535592952508,0.571902893023193,5.42688431806758,8.39226977903129,6.55951231348695 -"Tfru28991_t",123.09252369734,133.302830793884,120.545116940583,248.154430310906,235.570366773523,136.949856236865 -"Tfru28992_t",4.22398542426272,6.96938459672746,4.54686762365157,14.1999507371401,17.7722384856227,17.1690111246865 -"Tfru28993_t",11.3407337621594,11.4947531050657,13.3661486885307,16.4198458077502,23.0959801963957,20.4654034058368 -"Tfru28994_t",3.81865348961125,3.44830423382308,2.0552760218021,18.7622503718001,10.3286710679431,15.0170316621264 -"Tfru28995_t",0.0946595794607858,0.0759814141036446,0.0407581498408078,0.342699665797742,0.0819310921896553,0.242397419033602 -"Tfru28996_t",0.155863407739235,0.500434174523077,1.3422210754626,1.77344579239356,2.96791201299261,5.13159126565306 -"Tfru28997_t",0,0,0.0565200905995577,0,0,0 -"Tfru28998_t",19.7507839429562,23.2221341780344,25.8719778956386,14.3872257992193,21.1881400662652,20.5561955048482 -"Tfru28999_t",13.6933213239804,21.388600710233,14.9790689447991,21.0547859493421,24.0243979025283,19.4955255836969 -"Tfru29000_t",0.495344202661836,0.795206427087082,0.682506754409754,1.22970062019742,1.1147169529931,1.44964763741457 -"Tfru29001_t",8.11674557330806,8.86325617682779,6.95427186347084,7.586068759812,8.05950407844046,9.52572776122381 -"Tfru29002_t",0.125263981269554,0.167578292785747,0.179785576459826,0.388712522090239,0.505961143368025,0.672083159135343 -"Tfru29003_t",0,0,0,0.273839729423894,0,0.871291265793776 -"Tfru29004_t",1.91093527618288,2.49964129801796,1.95034786095862,5.27103349247219,3.24670071513977,4.09076640798975 -"Tfru29005_t",8.83127949888531,7.27045876193904,6.43506368443482,27.4047566786855,30.9670819468852,36.1169354235858 -"Tfru29006_t",0.790685899025388,0.634668282512796,0.510675642123063,10.2233933914453,27.7168065401593,26.1768843025279 -"Tfru29007_t",0.573753410810544,0.200078302708335,0.341403360247353,0.681998659699807,1.05143748807828,0.56399711794896 -"Tfru29008_t",7.60120897189329,9.0154179563558,8.69516370169023,8.3319620685175,9.23038671967858,11.8281850442388 -"Tfru29009_t",13.6873303147215,13.733194233224,15.3191581330519,12.592391207348,17.3525988790975,15.0533227459902 -"Tfru29010_t",30.2393371886755,29.5683562574474,26.7035234330057,17.8574849226226,23.1275709022926,27.0317540597682 -"Tfru29011_t",4.60544173508729,5.39325172540502,5.61369035446455,3.77420825944774,3.27366354187347,2.5718960414639 -"Tfru29012_t",4.93178325176513,2.5935963468071,6.73664561640073,2.99044604263935,3.38546238729016,2.11519436649478 -"Tfru29013_t",12.12682424862,10.9664334902668,11.5224247363276,11.0203681093908,13.1812489141004,14.7186006745746 -"Tfru29014_t",0,0.128526375508865,0,0.0552089223807399,0,0 -"Tfru29015_t",80.0342156203183,85.2371808331016,59.1444448538174,47.933937423832,44.6013259105143,63.626442846313 -"Tfru29016_t",0.758558706739932,0.761100508092377,0.816543069609863,0.588479755038045,1.96967524112828,2.21995701404524 -"Tfru29017_t",4.44646387146265,4.03753371090778,4.45130769763239,3.1907944640518,3.63208418526833,3.23286288865169 -"Tfru29018_t",0.0530703580362902,0.0425985502318285,0.182806610151444,0,0.0459342036123304,0.0388282121455323 -"Tfru29019_t",0,0,0,0,0,0 -"Tfru29020_t",14.0571818558165,11.5504914534043,12.6067782279885,17.6378841431617,22.2461167270897,19.1697958864445 -"Tfru29021_t",14.2640569459718,13.028721695319,16.8580766715683,12.2106103738573,14.559797867017,12.4513528688095 -"Tfru29022_t",0,0.57147038149987,0.919648931789414,0.736430879892243,0.616219019646772,0.260445168755838 -"Tfru29023_t",7.30632698926209,7.59422137868164,6.54779917511857,5.86669670885854,5.1662843398334,7.44756473721734 -"Tfru29024_t",0,0,0,0,0,0 -"Tfru29025_t",2.72068616240136,6.07934443479161,3.10279219466456,26.7732105270934,16.8962576889598,13.0999930570879 -"Tfru29026_t",0.113069147740844,0,0,0,0,0 -"Tfru29027_t",0,0,0,0,0,0 -"Tfru29028_t",7.2417600409584,6.67397938976186,6.44156605456754,9.21701110477407,8.87320413107547,7.36970210050219 -"Tfru29029_t",0.69103717673341,0.554682179928193,0.425062961030751,1.83804840057711,1.87979386016806,2.09457900700935 -"Tfru29030_t",0.0441230970438274,0.0354167568366516,0.0379966995627279,0.045640149068952,0,0 -"Tfru29031_t",127.30406786839,178.305770934481,122.765797770504,120.272264830892,92.1636824304584,76.925596347123 -"Tfru29032_t",8.72768798779922,9.95525013312713,9.27396480505987,7.5495350348127,9.76291591394199,9.97033473489845 -"Tfru29033_t",0,0,0,0,0.312523686181887,0 -"Tfru29034_t",0,0,0,0.197497372334738,0.165258737087089,0.558773271148888 -"Tfru29035_t",2.91927950171053,1.0414440929264,1.67596253206411,1.50982547190263,1.40374216830732,1.5425594164921 -"Tfru29036_t",124.15618056062,72.6233069624567,116.597421508882,29.5491038366421,21.5800644606681,21.7044627757129 -"Tfru29037_t",6.59282901694241,5.41572435886751,6.67346898093355,6.18142303498353,7.10446625463979,7.77128223137543 -"Tfru29038_t",0,0,0,0,0.0327687446229468,0 -"Tfru29039_t",0,0,0,0,0,0 -"Tfru29040_t",3.82509304018395,2.50174892137211,5.36797892507098,3.51698524764727,4.414331189645,3.83508804987517 -"Tfru29041_t",5.42002430783532,5.4381858884665,6.01384983848396,6.90015633368017,10.2845884023429,9.22738491190037 -"Tfru29042_t",4.55477946351221,3.89976896483766,5.22981079282655,2.51273765283715,1.83974786829482,2.44379153526562 -"Tfru29043_t",25.0434733606096,14.0152771709885,23.3705875809288,1.03205277704614,1.89988666864967,2.18996650212747 -"Tfru29044_t",50.3824607511934,71.344076029285,51.777839150667,53.2209326410385,35.4827104523622,23.4732194527892 -"Tfru29045_t",3.14696851098256,4.94219499310148,4.24176836291143,3.11363935537502,4.38177889214626,4.60487418894686 -"Tfru29046_t",0,0,0,0,0,0 -"Tfru29047_t",12.9957401017415,11.9640089546263,13.2068059207412,14.5893220208564,17.6453683792988,18.3854431152215 -"Tfru29048_t",1.5379474008503,2.16034112182559,1.65550837454082,2.18738508489733,3.32786472852719,2.81304621631019 -"Tfru29049_t",2.33621737406695,1.05013244742801,3.29941529996083,6.18634705778222,2.99267212433571,2.87156008087638 -"Tfru29050_t",14.4087564811494,15.8782380999295,16.8245851087056,10.1045167241029,10.3574952662722,9.46990747325006 -"Tfru29051_t",0.385368700786456,0,0,0,0,0 -"Tfru29052_t",2.47089343445434,1.98333838285249,2.45517135636088,2.45754648832819,2.71443083993725,4.31089786112604 -"Tfru29053_t",57.868966025423,48.6221843966621,64.1152163326973,43.1559972461736,46.0080324050455,44.8934410991621 -"Tfru29054_t",0.0135435074595272,0.0108711115616612,0,0.238155786726397,0.187557876687587,0.0891803221727228 -"Tfru29055_t",7.20088943755264,6.38843731739854,8.59445347583049,4.3122734530833,5.35786221292877,6.65486362029954 -"Tfru29056_t",6.10802500960464,5.14391456625389,5.77730985675575,1.34646599494005,2.3400164440937,3.44321550874821 -"Tfru29057_t",0,0,0,0,0,0 -"Tfru29058_t",10.0232160669231,12.1210931309964,11.2436827013751,18.0755051917036,16.4376665334976,16.5482853378709 -"Tfru29059_t",0,0,0,0,0,0 -"Tfru29060_t",55.1681045618952,52.2065845292784,55.5095009611878,61.6701472322665,60.4831746518737,59.9071896464465 -"Tfru29061_t",20.8890666566842,23.3283476815514,26.5919388420838,4.69723480147485,4.71657368551259,9.30281986561393 -"Tfru29062_t",6.75526876680145,6.00708401018467,6.01692789480826,4.65835347280674,4.61447730991303,5.79036235652514 -"Tfru29063_t",0,0.0677723668512408,0.072709262278828,1.48470386438577,0.730792405209237,0.185321788421239 -"Tfru29064_t",0,0,0.142133037264114,0,0,0 -"Tfru29065_t",1.85772331927034,3.81073861275343,1.77753601885587,2.77563874632605,2.85852950637127,3.92651487834354 -"Tfru29066_t",0.29843828337992,0.718651918475857,0.514001534404504,1.0804474365737,1.29154252785647,1.09174173759108 -"Tfru29067_t",0.499401182921418,0.400859673152484,0.430060398749607,0.286984292692486,0.192110553020658,0.405977938087039 -"Tfru29068_t",0,0,0.201520100187838,0,0,0.342423731623274 -"Tfru29069_t",0.129246733494534,0.207487707744568,0.556505507441799,0.40107158689516,0.223734905594828,0.851054674519076 -"Tfru29070_t",0.0953579759040266,0,0,0.0986365991229111,0.247606734341609,0 -"Tfru29071_t",0.203414955863069,0,0,0.42081764565271,0.528187731125804,0.595303242870486 -"Tfru29072_t",6.87357628130025,7.07344458220118,8.70172247999904,24.5504425917643,19.068315817741,15.688634151488 -"Tfru29073_t",3.91124935502374,3.59732567985854,4.6312485488367,6.74287827951772,5.21903441276005,5.60399187553783 -"Tfru29074_t",3.80547756409635,3.81822907288951,3.5651211000496,2.49863967476489,1.72408301135181,2.70809517769938 -"Tfru29075_t",4.44107718615581,1.78238339251942,6.37407189140387,0.765628579976076,0,0.812313565987371 -"Tfru29076_t",902.935056468014,770.101959430663,842.614808162173,231.486835709352,407.564151959151,566.614878338128 -"Tfru29077_t",2.56302844387467,2.42303441755945,3.09002041081243,1.29611834861035,1.28173556086528,2.16690380404857 -"Tfru29078_t",2.1167968950286,1.38052844916661,2.16467496595472,0.821091437738123,0.687059946314826,1.16154443766383 -"Tfru29079_t",1.09522730453574,1.08596902251279,1.60891546246594,7.66362503078047,11.2639544112733,14.8006355716891 -"Tfru29080_t",1.14494550966198,1.26366023030124,1.35571188354646,1.33235024607421,1.36261037053068,1.047104937417 -"Tfru29081_t",4.71681933314652,4.4000617841128,5.04992858042786,14.3732533796267,14.5648367982065,16.1357440818867 -"Tfru29082_t",14.899953616068,12.2143707200576,13.786636439077,8.0340440519565,9.60371528732516,13.2207864532209 -"Tfru29083_t",7.20088943755264,7.15620869568,6.83382273278384,53.2540436515896,43.8403003062052,34.9795325892389 -"Tfru29084_t",3.8633534468475,3.66486440309699,3.26644536976708,5.0133948361895,3.83024430773754,5.49896438246021 -"Tfru29085_t",20.8890666566842,20.0477987888333,21.8992437523043,41.3356662529787,45.5935456266217,34.5533309294232 -"Tfru29086_t",1.3077968214977,1.1997065384786,1.5016160467666,2.0613513732195,1.77876713306488,1.77697356058468 -"Tfru29087_t",0.89214559403307,1.61124304022884,2.04872823978574,4.46029463892257,3.41047234413355,3.20923763695246 -"Tfru29088_t",11.3572676351062,4.55812956377232,11.7939338157646,29.5421516788582,8.23993862056498,5.74325608715657 -"Tfru29089_t",0,0,0,3.38566924002408,0,0 -"Tfru29090_t",5.97750502681644,7.21336137887396,6.23307717434813,17.2451722987351,12.9871290190996,8.33021139950908 -"Tfru29091_t",0.877392968892402,0.528199778200924,1.51113767033805,1.81511945331143,1.32897365594839,1.76531503417795 -"Tfru29092_t",0.818725924139715,0.730194964991712,0.979232755379452,0.846875576010354,0.354317595487207,0.632288108663333 -"Tfru29093_t",0,0,0.0191593527456128,0,0.0192568443639616,0.0813891152361993 -"Tfru29094_t",0,0,0,0,0,0.360498884612186 -"Tfru29095_t",1.48690932338845,1.34270253352403,0.640227574933043,2.69155710969466,2.25219871782404,0.951892519435053 -"Tfru29096_t",94.1182535155625,94.3000239466622,91.3182236130722,271.402368869797,196.086397178291,83.9166342730445 -"Tfru29097_t",55.2489602908056,58.8501620228695,62.6608103185382,41.6377049794231,40.3197468860906,39.6171331350491 -"Tfru29098_t",17.2221272381467,20.037384347904,19.17161473137,15.145227067041,18.1265226193524,15.8053010982114 -"Tfru29099_t",5.63198056568363,9.79481078458995,8.48748623081627,5.82562081523696,1.21866778187127,2.74704177994984 -"Tfru29100_t",14.0540723757842,16.7008213359822,12.9140483642803,9.58323698282204,6.65977265719184,4.82529441627638 -"Tfru29101_t",14.1377399607503,15.6855041861508,13.523273764456,18.0459400019381,13.3820963158681,12.9739847992669 -"Tfru29102_t",0,0.0833541471161738,0,0,0.0898811425442757,0 -"Tfru29103_t",32.1951398808523,29.6731744348859,34.3136578889723,41.5296548498295,41.4383675465984,45.05959751023 -"Tfru29104_t",0,0.169430917128102,0,0,0,0 -"Tfru29105_t",2.29379868317945,1.38089088771982,1.97530965098796,1.77949850840856,2.72987128840106,3.566232140097 -"Tfru29106_t",34.5582851816065,38.2932646218334,37.3752798557519,28.4046082316332,40.888948467088,38.2241161524149 -"Tfru29107_t",9.30157204028015,19.4025881854229,9.6426941592701,17.0978684258198,30.6649357562446,42.0025690915092 -"Tfru29108_t",22.1006551340654,39.3408747111537,24.7956686261827,27.6201304446888,65.7743488024629,58.506575618967 -"Tfru29109_t",2.34944274021844,2.28588152599948,2.61180296628194,6.76043547741079,5.05299596110353,5.25057460211769 -"Tfru29110_t",22.1514036928922,19.5774691984794,19.3801286813182,15.6003534500595,16.9291699254431,14.224032077633 -"Tfru29111_t",3.81865340410006,0,1.97306493674713,26.0696525644071,24.4582925411941,20.6746105695419 -"Tfru29112_t",17.7281739958645,19.1150092961531,20.5074470458868,29.8329889044851,27.1388678794356,28.1674526133479 -"Tfru29113_t",0,0,0,0,0,0 -"Tfru29114_t",9.63701123732169,9.31703864626994,9.74893230094205,27.7928071942275,27.1320314620593,31.8085419706709 -"Tfru29115_t",24.6531030328726,19.8862422095279,26.9305460655135,16.2872398482773,16.2826771894729,14.4225661817398 -"Tfru29116_t",36.9344152363868,37.8419669263339,40.0674886964826,59.9644550390561,38.7886249463138,29.2786255616677 -"Tfru29117_t",7.49975172431089,8.92424616121409,7.5914846825655,7.55346254097776,5.75105581530949,5.48709226327882 -"Tfru29118_t",90.3930953351919,84.3957316383,89.9493450067376,40.5052105724715,28.5928155789694,28.5238265313375 -"Tfru29119_t",23.8928594487603,24.7462403732054,23.5621368517789,9.96546374166109,15.009738506075,11.8418922601278 -"Tfru29120_t",57.7232588784461,62.4303739995954,63.0107848748618,56.0637702111514,61.4549264883858,56.3099257764234 -"Tfru29121_t",0.117387578162246,0.157041231991115,0.438050446006819,1.01186357507318,1.25310304600736,1.60318740115377 -"Tfru29122_t",1259.19735830055,1111.24262640156,1491.75215852241,1020.97881150688,1061.95390124207,961.706164203591 -"Tfru29123_t",0,0,0,0.469723480147485,0,0 -"Tfru29124_t",30.2579746846315,22.001609687745,25.4436204461738,21.7247109568212,25.2649798055176,27.346742719363 -"Tfru29125_t",0.075514945412537,0.121228773064242,0.0975447855740682,0.390556601470942,0.0326803794689074,0.0828742379681497 -"Tfru29126_t",1.59513373616672,0.426794335550535,0,1.09998536490234,1.38064261363897,0.778038731979464 -"Tfru29127_t",0,2.00297487763187,0.716294031928507,0.860384369448921,1.43987773228303,0 -"Tfru29128_t",0,0,0,0.730242383941173,0.611040707584934,0.516513106962742 -"Tfru29129_t",0.983399059197545,0.338295175670491,0.483917832558086,37.4188165309796,11.7339230379896,6.57820038275614 -"Tfru29130_t",3.26465194707697,3.1445675914656,6.74726884670368,6.30354307555433,6.96997989579742,4.77707718857858 -"Tfru29131_t",15.2367221377101,13.9131137044599,14.3249309502801,12.7547771562826,10.1085969763785,12.0169736216006 -"Tfru29132_t",1.77174784052262,1.54066004432478,1.78003519076287,5.80343772484502,4.34493973079587,1.72836723589111 -"Tfru29133_t",14.065085703817,19.5282548465476,17.3498775849502,34.9954619937934,34.8763235191938,42.8308561686071 -"Tfru29134_t",13.133697716291,16.9038166215083,12.8701273688696,28.5759001264925,34.6909715480929,36.6139574706994 -"Tfru29135_t",18.7743279918133,19.7505581849972,19.1071078288708,20.4006315079856,15.2239482178873,16.7190512620282 -"Tfru29136_t",30.2592532034664,36.4390182518472,28.1037951985563,77.1344278200115,281.252918844256,413.092622248202 -"Tfru29137_t",0,0,0,0,0,0 -"Tfru29138_t",0,0,0.171435345894393,0,0,0 -"Tfru29139_t",0,0.157554918263983,0.507096139958649,0,0.169892159622241,0.574439811461474 -"Tfru29140_t",0.288943686230258,0.521841397379932,0.373236711783838,0.523036893199478,0.250090608145551,0.422803506974223 -"Tfru29141_t",17.5748711050061,19.2095444558769,17.7107464905439,24.7545667875944,25.3527498735979,23.8017516538347 -"Tfru29142_t",12.5622993303099,12.0736821574926,12.4194072172329,9.23273500575183,10.5511972818023,12.0027686921161 -"Tfru29143_t",8.21103036296053,8.3883358421774,9.40844933017517,9.75681687559981,10.2786128882923,12.2135740850476 -"Tfru29144_t",25.6023358962572,39.8470711464,18.3106409215096,134.477756253381,119.587231564839,87.3718205796443 -"Tfru29145_t",7.28721885958254,7.51374738553143,4.79583730672693,17.8332606161776,12.9223475093205,15.9947863723084 -"Tfru29146_t",78.7297245172422,79.1476681742208,76.6451185163557,58.0980841588132,50.6088356455501,37.6517395050725 -"Tfru29147_t",0,0,0,0,0,0 -"Tfru29148_t",22.7631842225768,23.0107557339922,18.9287267010475,18.3951828592897,12.2523751222231,7.18220004745142 -"Tfru29149_t",2.21914202792503,2.54466056667866,2.58111645304052,12.9677519948092,16.4136224910648,14.7811344556744 -"Tfru29150_t",0.547298871475228,0.549132777011275,0.471307595879048,0.566116246431822,1.30269102198943,1.40148344880992 -"Tfru29151_t",0,0.22666724375457,0.0607947193003646,0.0730242385103232,0.122208141711461,0 -"Tfru29152_t",0.197578496640281,0.0317184877784499,0.272232233179431,0.0408743385829184,0,0.0578222575977213 -"Tfru29153_t",0,0,0,0,0,0 -"Tfru29154_t",4.05998103356437,2.25613957305896,3.22731818442084,2.90739626187941,4.59529871156663,13.4811841254881 -"Tfru29155_t",24.0736310277357,21.5072513547792,24.1389042482115,24.3043871352072,28.1864264040589,25.213341518573 -"Tfru29156_t",24.9725967537077,18.2975059344867,22.0566207217786,9.93508123025358,13.8555343594358,15.6473551692151 -"Tfru29157_t",2.37084498864207,1.4893289451604,1.50905174410598,2.77223305461276,2.94424154908531,3.01669005282835 -"Tfru29158_t",0,0,0,0.447932184676725,0,0 -"Tfru29159_t",48.4963319104121,43.1854987553051,45.3638813347059,42.2227666144459,39.16607513431,36.3949871334495 -"Tfru29160_t",0,0,0,0,0,0 -"Tfru29161_t",3.34731687439288,3.88421661639625,3.28986581922068,2.40862971197324,2.67677642575016,2.20944130168443 -"Tfru29162_t",1.10153466046478,1.32627085916272,1.16992635087196,1.93699345943685,2.16107579267731,1.74616647234028 -"Tfru29163_t",11.7580446191275,14.0201506374055,12.5467722418166,16.6570806119237,15.1917362368902,10.5974241079962 -"Tfru29164_t",6.84867201941148,8.06270168681337,10.8125390712197,13.6960134293003,13.4362538414285,15.3662649565944 -"Tfru29165_t",39.1473257612778,34.6256765170653,36.5907729026559,74.5165952203159,44.1510248556674,27.9314906014605 -"Tfru29166_t",0,0,0,0,0,0 -"Tfru29167_t",0,0,0,0,0,0 -"Tfru29168_t",0,0,0,0,0,0 -"Tfru29169_t",0.548144628659856,0.694713307180473,0.670787888434311,1.52192343241467,1.19857985140086,1.09759035404246 -"Tfru29170_t",0.665240540045398,1.1442336824149,0.654712361696234,1.47452789299691,1.97413151995436,3.05934686918622 -"Tfru29171_t",0,0.248602783472754,0.066678079232658,0.881002103318093,0.737191048388488,0.736447721422037 -"Tfru29172_t",14.03677759573,16.8372769097477,12.676345726459,27.24425579316,19.1567762565784,14.5777582441784 -"Tfru29173_t",0.211613039726568,0.339715390513776,0.273346533881992,0.109444387691794,0.0915791490155152,0.154823828278029 -"Tfru29174_t",0.0514454236199923,0.0206471233977295,0.13290701035046,0.744999273473353,0.779235931151612,0.282295130862114 -"Tfru29175_t",2.20827276084948,5.62588098998843,4.96084909490975,5.56152600494622,1.91133533636724,27.1851178889236 -"Tfru29176_t",13.858153992615,13.4686626159648,12.7403289376444,13.0173925661915,14.134300545157,10.8242080389742 -"Tfru29177_t",4.7425212693559,5.76447704177449,4.66746554628606,3.64414506372484,4.808496156534,4.75858527688086 -"Tfru29178_t",2.13585703656222,0.57147038149987,4.59824465894707,4.41858527935346,5.23786166699756,5.72979371262843 -"Tfru29179_t",0.6109845583378,1.47127647309785,1.31537665395334,1.26398318294232,0.793241938018026,0.894037233838221 -"Tfru29180_t",7.45253342327357,8.97300671596973,11.6686638657151,4.55518132965605,4.6912157624722,5.20470264658844 -"Tfru29181_t",1.49244795410594,1.70032906633084,2.03148428791075,2.68913327603058,2.54185931427935,2.50087062903886 -"Tfru29182_t",15.6521234289009,14.3584649465823,17.0548836120947,14.5382096136902,19.3534946854842,16.1258141749812 -"Tfru29183_t",17.047361125885,16.6861008764655,16.3701985035799,19.0923737167976,19.9565003384584,18.5292479622584 -"Tfru29184_t",6.32996986646605,7.59675184536622,5.87445096736296,7.88255788923431,7.28734211529606,7.82364331367207 -"Tfru29185_t",0.267548970609705,0,0.230400369323038,0,0.694718257818335,0.195748598173177 -"Tfru29186_t",0.255350689274916,0.819860243367594,0,0.264130224399041,0.442029448743581,0.560471670149341 -"Tfru29187_t",7.85508164772818,10.687405635981,7.10024268115399,43.1036705456293,33.2709234612998,16.6298039848555 -"Tfru29188_t",14.7073869148953,12.1630725229574,12.665297755572,12.2165483364618,10.9938703611252,14.6733564572254 -"Tfru29189_t",17.7402623030062,18.4843110198841,18.9861599772403,20.6881003832469,22.2939908468349,19.5627373152989 -"Tfru29190_t",0.322585100054927,0.628836854245056,0.714329614598909,2.14506197050346,1.87468496048327,1.11264233366454 -"Tfru29191_t",1.17540291506443,0.695190773370975,0.90565329267038,1.98369967499692,1.82052334817588,1.44836665275706 -"Tfru29192_t",0,0.226286929587197,0,0.14580342924041,0.244006188987648,0.206258590021402 -"Tfru29193_t",1.57217115839081,0.87365865425076,1.00673021259865,0.875660134535977,1.95392287995483,1.74013365151453 -"Tfru29194_t",0,0,0,0,1.22208141516987,0 -"Tfru29195_t",1.43675703742143,1.92209515487842,2.30269024694445,0.825642221636908,0.89812824336166,1.08038347438289 -"Tfru29196_t",2.96856455022782,2.56152006689959,2.65225018785204,2.68680170844078,3.95044295545638,2.796334435564 -"Tfru29197_t",4.04777269898792,5.02686128308431,3.74882346376703,0.0789989489338951,0,0.0558773271148888 -"Tfru29198_t",0.160631695547701,0,0.0691641644048125,0.0830772885538094,0.139032207109597,0.35257204489318 -"Tfru29199_t",13.686458732302,12.9508055992884,14.0858546320699,9.66821573707537,12.5202645846112,12.1301906147421 -"Tfru29200_t",0,0,0,0,0,0 -"Tfru29201_t",0,0,0,0,0,0.0443791045677817 -"Tfru29202_t",0,0,0,0,0,0 -"Tfru29203_t",5.01255231333219,5.59387016474885,6.16050946656679,3.31833293851206,4.51207625841598,4.54753425923081 -"Tfru29204_t",0,0,0,0,0,0 -"Tfru29205_t",12.1170155433535,10.8135934214001,13.9338803530957,12.4674271922945,11.9658160086077,10.8571010386416 -"Tfru29206_t",2.08821204212011,1.67616742872046,2.28241742535881,0.913850174091903,1.73790258886996,1.99790825439469 -"Tfru29207_t",0,0,0,0,0,0 -"Tfru29208_t",5.18983022526316,5.59776199947942,4.88822405185364,5.36826834454268,3.0882327702761,3.44109408294393 -"Tfru29209_t",2.71439020263158,3.05030394260997,2.52995266908456,3.0884887951539,2.02192238514667,2.87962315826325 -"Tfru29210_t",0,0,0,0,0,0 -"Tfru29211_t",77.5872533046984,72.0163645812457,72.7847069623819,60.7448228695582,59.3888558570737,64.3742070754417 -"Tfru29212_t",0.575583210720331,1.19941713217171,0,1.76289343324378,1.3139008313462,0.816201658506526 -"Tfru29213_t",0,0,0,0,0,0 -"Tfru29214_t",525.145287776952,1114.28121449104,635.047795998376,1270.19103742251,1631.66247155641,1930.29802335949 -"Tfru29215_t",474.490607889002,715.874089085095,525.519280658817,1601.02429828203,1194.83388954618,591.539735624277 -"Tfru29216_t",310.477613295214,463.09856144793,356.935121355892,1168.60285686753,1014.87114002562,412.306112970315 -"Tfru29217_t",5.21640684806681,5.76817902740333,5.82566319879671,3.01352711062795,3.03025424059728,2.17142383826784 -"Tfru29218_t",0,0,0,0,0,0 -"Tfru29219_t",1.25433603981254,5.48874303254112,3.27988903275153,6.61013603238277,3.95378878993633,7.1557940755315 -"Tfru29220_t",0,0,0.682506754409754,0,0,0 -"Tfru29221_t",61.6994242518172,53.5046170954435,65.9413411113004,36.1841087411972,38.8601856520853,49.5750974337342 -"Tfru29222_t",0,0,0,0,0,0 -"Tfru29223_t",0,0,0,0,0,0 -"Tfru29224_t",7.6373069792225,5.74717372303846,8.63215929156882,4.4436908775316,4.95776211261267,8.38159906723333 -"Tfru29225_t",16.2077897308259,16.3705132758274,16.1672902242336,17.6033027688712,16.7171699960123,16.0085847136225 -"Tfru29226_t",0,0,0,0,0,0 -"Tfru29227_t",13.4917832590529,14.242240840273,13.410684107008,8.89948566091675,9.02872382551877,11.2025466028023 -"Tfru29228_t",15.0646879812674,13.7691450034681,12.2154415704175,12.1703878135071,11.5161978566971,10.0564561234257 -"Tfru29229_t",5.11638445299465,6.54195822632078,5.74755151254062,4.25758536026712,4.58453478719833,5.86695573982016 -"Tfru29230_t",0,0.175837040461498,0,0.11329705844496,0,0.0801369750017962 -"Tfru29231_t",0,0,0,0,0,0 -"Tfru29232_t",0,0,0,0,0,0 -"Tfru29233_t",1.85658291207619,3.7256080119881,3.5973007939608,5.2811452049731,4.8208073581206,5.60316843721123 -"Tfru29234_t",0,0,0,0,0,0 -"Tfru29235_t",0.442548077812717,0.355224784988505,0.254067483643315,0.152587961066347,0.2553602961135,0.593604616409267 -"Tfru29236_t",5.85883990309894,5.18927172876194,4.20446044700518,4.00535753111733,3.90527260066323,4.72997654776133 -"Tfru29237_t",15.0132612481294,11.4739518992778,11.8283870212915,11.4818814562667,19.7682124287445,25.2404047956228 -"Tfru29238_t",10.2347667132728,8.72870242605638,8.0792170115916,9.15305080921907,9.68902747896383,10.3741788793252 -"Tfru29239_t",1.27357365977289,1.2778411887355,0.900894134949096,1.45850793646228,1.06295278646162,0.865236359223508 -"Tfru29240_t",0,0.375674122657296,0,0.968232243200943,0.607636582047234,0.342423731623274 -"Tfru29241_t",18.505414658041,17.4280585557038,15.800159494765,13.7580772767854,14.4699640132825,13.9623383710733 -"Tfru29242_t",0,0,0,0,0,0 -"Tfru29243_t",4.27171407312445,3.32491858327197,2.73107864592008,5.89144703913794,7.67472779014615,6.06126938195404 -"Tfru29244_t",37.6121663336328,25.2776593424419,30.9445835630387,14.7043872046169,16.5763640396638,21.3791512439575 -"Tfru29245_t",6.83448220535541,5.67082491916141,5.95165853479804,7.1488994007821,20.205675203628,16.2371136104416 -"Tfru29246_t",5.90697961619374,6.32189109475511,2.8260045297154,3.39448608668802,2.27230763473641,1.9207831193959 -"Tfru29247_t",32.9303287991573,30.9688153700253,34.9093817022676,15.8508887188191,29.8192608653391,33.7143407068359 -"Tfru29248_t",8.62171246035624,6.13780833691552,8.4410700976053,6.79477825894468,8.26192733244187,6.60833874736865 -"Tfru29249_t",12.4144888751329,11.0569107416513,14.2055353215407,10.026789672379,12.5114914312897,12.1934734068523 -"Tfru29250_t",55.7432579271398,11.4616908923814,73.5646229758049,11.5405798541686,6.88223204400344,2.92400681037277 -"Tfru29251_t",44.8939330210441,37.5559768640252,48.1217276446291,79.1592624717542,82.3051856771052,67.493763552302 -"Tfru29252_t",3.03957142087649,2.23648810609095,2.54482417975898,0.873355214344569,1.46158481041847,1.48257430736991 -"Tfru29253_t",6.66666350077202,7.4833213875017,5.92041816968461,5.33353102225739,4.05718908161731,3.88681717438966 -"Tfru29254_t",11.9723289973885,10.3743853872284,10.9543715675386,9.63979077274331,10.4213363921801,13.0395511534502 -"Tfru29255_t",4.25774661566464,4.70380852434552,3.62714216294491,14.3963207212504,13.7106213265059,14.9056957072142 -"Tfru29256_t",8.67399558001226,7.79015220412818,9.1933906211324,6.33702760040126,8.24265238843039,5.72490448924384 -"Tfru29257_t",94.333330160946,46.2805374092591,33.5348773315578,3.12523314463761,3.8499837651058,4.78948518127619 -"Tfru29258_t",0.647657089647723,0.816925721571399,1.35449027692332,0.765628579976076,1.8418705058605,0.744620768821756 -"Tfru29259_t",228.220702673237,206.447495306009,206.011196538281,263.02002997991,213.28098186416,127.696126965496 -"Tfru29260_t",0,0,0.109283558863193,0.131267135690762,0.109839643985376,0 -"Tfru29261_t",0,0,0,0,0,0 -"Tfru29262_t",1073.65077330722,1486.46638702219,1100.62753075642,2383.70241813292,1944.68757790532,1346.05000908661 -"Tfru29263_t",0,0,0,0,0,0 -"Tfru29264_t",4.44258263604942,4.13821380439038,4.65955458773303,4.59532869052759,3.25363642373495,2.75030098206165 -"Tfru29265_t",0,0,0.836366658583051,0,0,0 -"Tfru29266_t",0,0,0,0,0,0 -"Tfru29267_t",4.4215987774446,1.93589009618138,5.53842801664566,2.07891970878671,4.17495756851593,0.588182390683041 -"Tfru29268_t",2.06582893569935,1.1054672946629,1.77899301447016,0,1.78804535096163,0.503811965472096 -"Tfru29269_t",0,0.130938844693174,0,0,0,0.358048892192492 -"Tfru29270_t",1.15082707906092,1.38561996610242,1.98207441006668,0.89279634069128,3.23726019225393,3.47319687375079 -"Tfru29271_t",15.2721653188236,12.4316336597519,14.3114160794828,11.8131163138085,11.3768374566655,10.6613008547837 -"Tfru29272_t",0,0,0,0,0,0 -"Tfru29273_t",11.2522411566751,12.6294305650425,13.7136601209551,13.8091238772075,13.7009059669023,16.6046359122337 -"Tfru29274_t",5.02992064746246,5.9272762371617,8.57089373881701,4.87076322089239,8.05873179069268,9.47423215158179 -"Tfru29275_t",14.9228958738753,13.3092444112467,13.3268424150534,16.5793846775737,14.3514166417732,17.3881419245671 -"Tfru29276_t",23.7478854635547,30.8861218515625,22.4494676540815,14.1291425138943,24.1091598589963,27.4339268087977 -"Tfru29277_t",5.54785506981257,2.54466056667867,3.07128039484389,2.45940124039485,3.42989831690184,5.50866102217536 -"Tfru29278_t",0,0,0,4.07603697430912,5.06865234010432,2.20233113384415 -"Tfru29279_t",0.220692758593995,0.708583240108419,0.443450097873938,2.58718098960392,2.92892893051022,1.72231341019622 -"Tfru29280_t",1.22642885797188,1.96886146034116,1.05614183893594,1.26859626024669,6.36909585267115,1.79460028689356 -"Tfru29281_t",130.822913171297,124.492624646741,132.611190431863,55.9217700426991,53.0688282173098,57.0829354860356 -"Tfru29282_t",81.667779726859,107.374888757814,76.2412545195265,27.8243413408517,20.0662243455361,17.5530026619559 -"Tfru29283_t",2.76957286059717,3.33462387446627,3.577535404983,5.2521279236271,3.19621293706897,11.4824837038288 -"Tfru29284_t",0.852897226106066,0.68460411184756,0.367237136890528,0.441110882372003,0,0.312005379829329 -"Tfru29285_t",0.375325584980406,0.401688786400504,0.538687386205763,0.58234519318359,0.703857018717906,0.59497079504312 -"Tfru29286_t",6.59945116845672,6.57472415674565,5.22628814515941,5.59717231016862,2.81010815375166,3.570842071247 -"Tfru29287_t",0.293742576123942,0,0,0.607684222568424,1.01697684361285,0.429825593191453 -"Tfru29288_t",0.232329581779445,0.298378340783118,0.200071117166576,0.192254079263904,0.442396176715437,0.305965452675553 -"Tfru29289_t",5.40605106450648,5.81992891499682,5.49747331068539,5.99740924256656,4.81690196828786,5.61291096369814 -"Tfru29290_t",5.1238527009211,4.57211690362837,4.59160116821175,5.00408202844425,4.90762169083392,6.43194743693983 -"Tfru29291_t",12.8954980145788,8.37210558901615,9.96182544924033,10.5926355906848,12.3104702570518,9.85105924982577 -"Tfru29292_t",15.9753451631956,16.726632069336,17.295965669783,9.20549257331004,9.95474626991748,8.9128784292374 -"Tfru29293_t",647.611074934426,776.02429663418,733.223188828025,973.014888382212,756.585612818318,452.636124405261 -"Tfru29294_t",0,0,0,0,0,0 -"Tfru29295_t",10.7762001617825,11.1212325028011,10.132187969261,11.374194218231,12.4679497456804,15.5271682545692 -"Tfru29296_t",11.0177543237299,15.4765421252806,12.4529511012911,12.1088552797683,13.7083476907058,14.1067350332187 -"Tfru29297_t",0.745654231699238,0.399014822585708,0.428081159570615,2.05677736869313,1.07564858459052,0.909246447135765 -"Tfru29298_t",779.739668321004,816.51128627209,778.348839272007,402.438876395939,512.429207075427,544.803939370166 -"Tfru29299_t",0,0,0,0,0,0 -"Tfru29300_t",15.7914242051593,20.6863684563381,15.5570486967565,18.2944934373231,17.3857161603199,17.1917310191071 -"Tfru29301_t",0.695869084703254,0.660117142485542,1.03506671941359,0.392615258255804,0.219017603368431,0.185135722368608 -"Tfru29302_t",3.38339663289264,1.38351416068281,5.05760324392395,5.67879982457939,6.9619638177114,5.23106892139385 -"Tfru29303_t",1.40309606298868,1.12623807961561,1.05724428344893,9.39403068806797,16.2429673111903,16.6815402451547 -"Tfru29304_t",9.37454848093405,6.43946560784509,9.00440241654757,7.36588912269902,9.98645072182923,10.4200423310812 -"Tfru29305_t",0.359402681375176,0.288485582960362,0.154750194582746,1.02233933914453,0.855456991980224,1.05180851039791 -"Tfru29306_t",10.4502136498187,10.4032231506397,9.80362377599,19.4450505298024,20.8186962190045,18.1960496775795 -"Tfru29307_t",3.192394317315,4.45061133112098,3.47259436643683,0.521393062963708,0.581710754546552,0.983440957222043 -"Tfru29308_t",0,0.1543100801304,0,0,0.166393236426359,0 -"Tfru29309_t",0.124644475922029,0.400198842830769,0.107337857518448,0.128930035352054,0.10788404201531,0.0911944507809758 -"Tfru29310_t",0,0,0.0441805899037764,0,0.0444054011104238,0.0375359143977879 -"Tfru29311_t",31.0473131546654,30.9681042061696,33.8137585499963,84.5374622015432,109.861134350504,103.388239218826 -"Tfru29312_t",26.0721858945871,26.9734020067938,24.6973306233654,76.7107035164995,82.492602692162,60.8292143798979 -"Tfru29313_t",37.9031192074304,48.8629499244166,38.5749618341982,139.173929567136,141.309131048296,103.242092677119 -"Tfru29314_t",12.3150189461773,12.8211743936502,8.40008313119697,4.41430991865742,9.28710928884191,14.5410809168354 -"Tfru29315_t",7.1555183130315,7.17181663469182,7.44711082151677,6.66930320423478,6.70669709608727,9.22465826134887 -"Tfru29316_t",6.62617056225501,7.21823433984624,8.25352534276358,7.83313521823411,9.62690333228449,10.2153198021304 -"Tfru29317_t",0,0,0,0,0,0.491720478490671 -"Tfru29318_t",3.45543966155054,3.11850430655576,2.9756592685834,3.74178826248591,2.66368195767621,4.50165054384965 -"Tfru29319_t",18.3593408749309,20.1971571124042,15.8101857333709,19.8383702005703,20.0051747295278,23.6265693381393 -"Tfru29320_t",27.1650320099291,19.3820852743429,15.162275801558,14.569866030922,23.5122610370613,29.4443400365881 -"Tfru29321_t",10.0090487950357,8.56089419160937,11.3040181199115,16.463257521966,13.2077881281322,14.5259223417807 -"Tfru29322_t",10.1065114913019,9.12633902485506,7.8873148987052,14.0475574608017,11.4811333134188,9.47393779278754 -"Tfru29323_t",45.6842414431176,45.606209029004,47.0550201341878,29.3854430002394,29.7390208674313,24.1553471975711 -"Tfru29324_t",37.6345135020622,31.8688923630706,41.3157821926807,13.1832241231226,44.4715330620379,75.2324520988467 -"Tfru29325_t",5.23021800911735,4.72296922297947,7.31902184884545,4.56472525940989,6.01233148546412,8.90884621997109 -"Tfru29326_t",3.05030112332033,2.60144383953571,3.11929335109208,3.54957455875444,4.51023845242221,8.18294291183243 -"Tfru29327_t",0.452479587637957,0.121065538630134,0.129884588810474,4.52435632134875,3.65527404113633,1.54490276044755 -"Tfru29328_t",45.0768657813891,59.6669404537853,45.100345785914,99.2902694553069,110.001290993435,75.1739031514565 -"Tfru29329_t",9.52633613283599,10.0839614164307,10.3058036211582,12.7792417393066,14.5066953760502,16.2048208755581 -"Tfru29330_t",1.68160887615908,1.68724366180946,1.32744432967769,5.14580309569409,4.36646938358546,3.94729742004261 -"Tfru29331_t",0.0416305137618669,0,0,0.0430618651274949,0.0720652570052716,0.274125638472448 -"Tfru29332_t",4.61824999378951,5.58841201798215,5.7157112615155,9.04996246488572,6.4478298414863,7.45391195132039 -"Tfru29333_t",19.7128421254269,18.8744070280248,20.7169697308166,19.4918544331401,19.3652901481238,24.3158478434022 -"Tfru29334_t",1.52468923360159,0.856686996586011,0.787793640298736,2.52337840514801,2.90327509074958,3.90431414505122 -"Tfru29335_t",3.71727327323193,4.1772967313635,8.96318596409294,67.6734352593601,64.3485341849581,29.9166217557823 -"Tfru29336_t",39.5904516202342,36.8269876997837,41.8309119731486,33.4583783720026,40.9258401845084,34.5124667474313 -"Tfru29337_t",9.56335287240645,8.7864321773444,8.21016181206605,11.1705343904075,8.37928363598142,10.4933222822553 -"Tfru29338_t",15.8237847089789,10.715323128324,11.8836302333087,85.058429297029,47.7327170865415,24.4985859800651 -"Tfru29339_t",0.863613239226758,0.885762772924412,0.908969589539432,1.98512493037772,1.32886523026054,2.38699261461661 -"Tfru29340_t",97.0175699826692,105.482577680199,96.0760346127773,151.604846453667,104.167079450425,51.8504135965533 -"Tfru29341_t",50.0515648416697,47.0789061411454,62.152414561996,58.513416740694,56.559475738893,48.6206462689922 -"Tfru29342_t",64.9491987451582,50.4334616551354,52.2834585151132,50.386724491941,44.6059716537002,46.4861796266468 -"Tfru29343_t",9.52694994315384,8.34228928045171,10.0687336655707,13.8858977249785,14.2429179592584,5.70294369523093 -"Tfru29344_t",0.210816503817936,0.676873325139117,0.0907725419917615,0.109032426383042,0.364937738109506,0.308482107033263 -"Tfru29345_t",8.67399558001226,9.20211729112642,8.56656853332791,9.03497004413645,7.92764656466872,7.67758509022624 -"Tfru29346_t",174.149170085493,167.661419768673,165.361636496992,133.385763321516,107.41315604469,52.4975131039883 -"Tfru29347_t",66.2989806992764,67.8472531603,69.8913378813012,52.5745024447788,67.0165560316656,58.4861393178295 -"Tfru29348_t",0.593479898699393,2.06429096990769,0.965366696582713,0.341047267767993,1.25565508241995,2.75000660133715 -"Tfru29349_t",78.9928436978885,69.4294227130475,79.7638284926359,12.4009977977626,8.41666591210987,5.58773271148888 -"Tfru29350_t",0.205070081622736,0,0,0,0.177495144796548,0.200049014894639 -"Tfru29351_t",10.2739430925878,9.15422654414302,12.1070068851294,8.84751247861178,10.4241614148556,8.66768836638796 -"Tfru29352_t",0,0,0,0,0,0 -"Tfru29353_t",5.80763033700114,4.90279357096074,5.51862434078161,4.35012090672939,3.12002192545827,4.46885417092853 -"Tfru29354_t",3.192394317315,2.29273917057748,3.18321150256709,3.64975144074595,2.61769839545949,2.33567227340235 -"Tfru29355_t",0,1.11328899792192,0.170626688602438,2.15197608534549,1.62920170052837,2.89929527482914 -"Tfru29356_t",0,0,0,0,0,0 -"Tfru29357_t",0,0,0,0,0,0 -"Tfru29358_t",0,0,0,0,0,0 -"Tfru29359_t",0,0,0,0,0,0 -"Tfru29360_t",0,0,0,0,0,0 -"Tfru29361_t",5289.51902098377,2846.29779381559,5371.93935721606,619.31638697028,463.41509736617,685.748242084208 -"Tfru29362_t",0,0,0,0,0,0 -"Tfru29363_t",0,0,0,0,0,0 -"Tfru29364_t",0.20490335797914,0,0,0,0,0 -"Tfru29365_t",0,0,0,0,0,0 -"Tfru29366_t",0,0,0,0,0,0 -"Tfru29367_t",24.9916452638173,24.6124577807987,20.4455284255791,7.85470098667676,4.65901061993806,4.14924316905754 -"Tfru29368_t",1.01794469359559,1.53804145441447,1.18599534372842,1.85813636123916,1.91761385586444,2.05905759931558 -"Tfru29369_t",18.3957148199774,23.6096229509115,18.2134999215437,19.1299562523765,17.1992933867687,14.3226544560295 -"Tfru29370_t",0,0,0,0.192254079263904,0,0 -"Tfru29371_t",6.5483373529075,6.15362783424954,6.32681166255125,3.05632815742351,1.86622984467169,1.75280588858492 -"Tfru29372_t",0,0,0,0,0,0 -"Tfru29373_t",269.749682506139,226.576576857068,249.395413589554,90.374797580376,102.063796024986,90.968288543039 -"Tfru29374_t",7.44637430474193,6.89660846764615,5.91919494279005,2.96246058502107,4.4619859013514,6.84497257157388 -"Tfru29375_t",7.09714381369792,6.22666942200054,7.53305097499803,6.65826111839706,6.71424495670137,7.24539015635101 -"Tfru29376_t",19.2922852195018,15.8150239779247,17.0849003506155,15.5681967768751,16.3428510031401,15.4163179369091 -"Tfru29377_t",0,0.185256881914793,0,0.358099631156393,0.699171579983837,2.19518070808492 -"Tfru29378_t",102.887872734545,134.778398332239,98.393976381464,100.03073218489,83.9887899550623,70.6727034797378 -"Tfru29379_t",0.88967116096843,2.34640032585574,1.58700889792404,2.16918445257216,3.24517156942574,4.74238736935743 -"Tfru29380_t",0,0,0,0,0,0 -"Tfru29381_t",20.0120964879049,18.5945131735958,19.5660694772367,7.19278206847592,6.2636083411834,6.03410596948078 -"Tfru29382_t",279.161960206538,321.50308482602,302.089476872514,149.918968529225,161.90674683909,135.466902393546 -"Tfru29383_t",5.67103014312753,5.88587579112142,5.13347937476925,4.93836443728054,8.12751289711824,11.0579212811662 -"Tfru29384_t",1.49795619800501,1.35267803525898,1.12872216591093,2.38874979317201,3.02524166554671,1.82659910330989 -"Tfru29385_t",0,0,0,0,0,0 -"Tfru29386_t",0,0,0.0907725419917615,0,0,0 -"Tfru29387_t",0,0,0,0,0,0.0754172513207088 -"Tfru29388_t",2.03405663265725,1.78672603516907,1.25588725754339,0,0.0332178366004198,0.140395294258515 -"Tfru29389_t",42.7222281239477,45.0270565456801,43.5108216318628,43.9151362414185,43.5878939740618,44.1162477832834 -"Tfru29390_t",0.312306233351106,0.0358117392549042,0.230522727458632,4.56876555438193,5.5993135561106,5.97350289337606 -"Tfru29391_t",36.4021765132287,35.4207474571402,35.7233195663551,21.058750471815,24.3985973064782,26.7095475384715 -"Tfru29392_t",0.776566507971363,0.396667676570498,0.668741912304011,0.730242385103232,0.672144779413033,1.70449325568947 -"Tfru29393_t",0,0,0,0,0,0 -"Tfru29394_t",0,0,0,0,0,0 -"Tfru29395_t",1.17826615387724,1.32408004240923,1.11613306541623,1.70628865860026,2.65155673531037,3.18963143559043 -"Tfru29396_t",0,0,0,0,0,0 -"Tfru29397_t",2.5748012838006,2.97995531792804,2.16573062767799,3.34464545023049,4.87177574192587,5.16954886636676 -"Tfru29398_t",38.3124245715942,44.8321654233799,44.122936661457,64.4579336081507,61.5270990385777,52.6843369940381 -"Tfru29399_t",46.8777902384677,50.8448627828064,47.7481725385064,74.2116126285011,74.1681212046854,58.2688767154061 -"Tfru29400_t",0.110394713234491,0,0.0950666438468251,0.114190333544395,0.191100773504124,0.0807688039768432 -"Tfru29401_t",0.580716890125213,0.776883698352357,0.166695198081645,0.400455501508224,0.167543420088293,1.27462105630737 -"Tfru29402_t",9.58659937499974,5.41835725659768,7.76702825038622,8.21461049008768,5.79354060064932,3.9427283480796 -"Tfru29403_t",9.10457285207805,5.64714081423024,10.69148511834,7.27724307913221,5.01474788402201,5.14732028102671 -"Tfru29404_t",502.482926680889,575.24991817703,496.373214345389,198.460306763829,280.53697850403,323.576824956207 -"Tfru29405_t",19.3035891548851,19.7019577911069,17.7128710780851,3.55223328898108,0.563188122947394,0.52895920676745 -"Tfru29406_t",47.595232467474,49.9982261532776,38.7861062791186,35.0238686147991,32.6244624698162,41.366218970604 -"Tfru29407_t",5.00125105542499,5.57319341653989,5.29191272592692,6.21885329479618,6.58523099272934,7.14302626861324 -"Tfru29408_t",0.346077762189279,0.694474819948348,0.596051212913977,3.04280194657845,3.36984860383559,2.21552738818045 -"Tfru29409_t",26.2532427410773,25.6202954916504,19.8712739581603,8.14676660880794,5.50137637934651,14.5575141694052 -"Tfru29410_t",17.8590388798305,15.9441476070528,14.7516210432512,6.03202386653603,6.1514965909207,8.13312071455323 -"Tfru29411_t",0,0,0,0.12187776132859,0,0 -"Tfru29412_t",0,0,0.0802058935337405,0,0,0 -"Tfru29413_t",0,0,0,0,0,0 -"Tfru29414_t",0,0,0,0,0,0 -"Tfru29415_t",0,0,0,0,0,0 -"Tfru29416_t",21.1433245211442,21.6163151970822,19.4679975425633,20.3097807068861,15.4353697936501,16.6718414752866 -"Tfru29417_t",0,0,0,0,0,0 -"Tfru29418_t",8.97820820427258,12.8689895066144,9.38837535422876,29.1873979257151,38.2996584564199,20.6447529180715 -"Tfru29419_t",5.70823830352523,7.17165784523322,4.06076396862997,21.6926212803709,22.4478485414013,18.1580678955326 -"Tfru29420_t",0,0,0,0,0,0 -"Tfru29421_t",0,0,0,0.363593488817091,1.21696810574593,1.28587991268573 -"Tfru29422_t",0.406829911726138,0.326554503714211,0.175171225102746,0,0,0.148825810717622 -"Tfru29423_t",0,0,0,0,0,0 -"Tfru29424_t",18.4084147287052,14.5407906840532,17.4174961680144,12.7346526194904,12.6348550141392,17.8004185819587 -"Tfru29425_t",0,0,0,0,0,0 -"Tfru29426_t",4.20947516871858,5.46369550244225,3.85638144815746,2.9645661007176,3.10080359566393,4.45588919850073 -"Tfru29427_t",7.76069346314531,8.96692423796688,8.8409222081164,7.01958349060501,9.51846512203348,7.02748819887334 -"Tfru29428_t",0.20465378019841,0.657086528789131,0.352476082667157,0.105845120374281,0.53140446517651,0.374330449612532 -"Tfru29429_t",10.2068682058768,12.6528718975075,10.4019721017159,4.68541573475654,3.39784319244482,6.1420872148573 -"Tfru29430_t",479.43222273633,519.600113403732,477.124721851988,465.772757988624,343.834114352806,186.446988442858 -"Tfru29431_t",8.1572575659776,6.47241231189807,9.28544345564163,6.49801622369204,6.24884599610554,5.89954815297822 -"Tfru29432_t",0.45823841875335,0.0613031863790769,0.263075330790669,1.42198108081011,6.34593550414421,4.86132745899533 -"Tfru29433_t",0,0,0,0,0,0 -"Tfru29434_t",0.169034963322832,0,0.072782410430014,0.0874233841320771,0,0.0309180381420411 -"Tfru29435_t",0,0,0,0,0.0656262132836814,0.0277369403548636 -"Tfru29436_t",9.82335491934737,8.65428700632807,8.08426330877988,11.4453234804928,9.69015192626808,10.1671527532354 -"Tfru29437_t",37.4378636767408,36.9269672543713,33.7069899183481,37.1094780963841,39.4907864354138,39.857061329668 -"Tfru29438_t",3.62934347242089,3.67732286565709,4.81621621879517,17.7859531629499,18.8479228190544,14.930960000317 -"Tfru29439_t",0,0,0,0.444008691088316,1.2207433717674,0.762705121933154 -"Tfru29440_t",0.246123807454931,0.19508246388713,0.2790577279361,1.00557967784707,0.560955404577196,0.414903971827043 -"Tfru29441_t",22.2343252808643,19.6723307869098,21.3229478640858,37.1116866871411,27.5547199522051,26.6194544811982 -"Tfru29442_t",0.504350460892051,0.462665557577939,0.682506754409754,1.19243696503993,0.997788601280536,1.3178614885587 -"Tfru29443_t",5.12760882746709,5.14479057350291,5.48013870271025,7.34022931511124,7.01381495604494,6.02927017370463 -"Tfru29444_t",28.6203220524073,31.5014094838173,27.8062531557323,44.8520808056513,40.5684152311472,38.2610076169514 -"Tfru29445_t",0,0.174698199525867,0.187424134630658,1.80101230730124,6.96997989579742,6.36943625143811 -"Tfru29446_t",0,0,0.327356180848117,2.75245206692757,5.92239455986309,11.6811425914383 -"Tfru29447_t",0.0536807519306373,0.0430885016082969,0.0462272945478811,0,0.0464625203311943,0.0785495972222079 -"Tfru29448_t",0,0,0,0,0,0 -"Tfru29449_t",15.3389732869216,18.7525758333749,16.2574642623447,2.19688088327405,2.65528083184873,3.10778392380562 -"Tfru29450_t",0,0,0,0,0,0 -"Tfru29451_t",1.13629905461832,1.27691939166517,1.04376145669878,2.74252437687553,3.99958927269383,2.05068278951846 -"Tfru29452_t",0.565454459038588,0.972598630052662,0.765195072732474,2.92448032111054,2.79668631993535,1.53662649565944 -"Tfru29453_t",3.81865348961125,3.96667676570498,3.67531712134023,4.18229729650033,4.08286291626925,4.93035239249019 -"Tfru29454_t",10.8232092692296,9.33007070243283,13.0665833313178,10.8353570803698,3.16278113232125,2.49526754887532 -"Tfru29455_t",32.833749873557,37.6920901404979,35.5410176695909,13.0917472141542,18.0990791534681,18.5200398603496 -"Tfru29456_t",2.2502779492352,0.722501839467692,1.16269900661947,0.620706027337747,0.129846150568427,0.329277106212738 -"Tfru29457_t",0,0,0,0,0,0 -"Tfru29458_t",9.0849398420878,9.34946139856816,7.91296850465919,6.28599366072849,8.11363842318275,9.27793514365388 -"Tfru29459_t",0,0,0,0.0602627211007522,0,0 -"Tfru29460_t",0.0407817362968191,0.294612400559641,0.21071567757505,1.47643666696843,0.882449566969891,1.37252075340455 -"Tfru29461_t",0.877106706912338,1.60608348001301,1.13298348007727,1.5310073626993,1.58950328526179,1.90511604682084 -"Tfru29462_t",0,0,0,0,0,0 -"Tfru29463_t",0,0,0,0,0,0 -"Tfru29464_t",26.733660557818,26.340720722244,27.8285048146819,20.8904917728586,21.5040911199215,45.9338987777054 -"Tfru29465_t",0,0,0.367237136890528,0,0,0 -"Tfru29466_t",0.653494719916186,0.757679831651512,0.812873213117235,10.5900924629621,10.683970210989,11.3686454648616 -"Tfru29467_t",0.721119113918004,1.15765673848901,1.55248317526682,17.5289513299673,21.2212077838871,17.4107036418066 -"Tfru29468_t",6.03937257906328,6.65652624631178,5.51131527219722,5.03491155222465,4.44709133706458,9.69459634600593 -"Tfru29469_t",0.110831631624601,0,0,0,0.0959285545096557,0 -"Tfru29470_t",3.41083612664306,3.92816534079522,1.72403736197768,2.37763826888422,1.86116635942741,3.25498992902265 -"Tfru29471_t",1.70500764665299,1.24416060916946,0.667395903758615,0.641319880644167,0.134158384351142,1.58765837189905 -"Tfru29472_t",0,0,0,0,0.240774318934831,0 -"Tfru29473_t",5.12540372045987,6.18656009330134,4.015519097275,2.59102057283188,2.20142831422434,3.80632251218394 -"Tfru29474_t",10.4223399754051,13.1824897025684,13.0548660392362,7.1871224218055,6.83400792465405,8.78072283233967 -"Tfru29475_t",6.013757990147,6.2533239468028,6.86578107066211,9.18941135917598,8.08369744319707,4.76654205811931 -"Tfru29476_t",0,0,0.0123583389080003,0.222665298498338,0,0.115496354303067 -"Tfru29477_t",2.25531212809255,2.30812668178941,2.816141963833,4.7240311073893,3.56249035921966,5.40397505856073 -"Tfru29478_t",1.92096898105444,2.36428447468086,1.43368034691561,3.44416149315457,4.101238170393,3.09199233882693 -"Tfru29479_t",0.109578752310584,0.0586378304495518,0.157273295581378,0.151128424047452,0.221303004447058,0.213791512439575 -"Tfru29480_t",0.237989735896452,0,0,0.246172362116954,0.205988227530649,0.34824396502197 -"Tfru29481_t",1.85658291207619,2.42164520779226,2.59805057341614,1.44031232862903,3.2138715720804,1.69792982945795 -"Tfru29482_t",3.63439233953017,4.82469337059956,7.10215847267654,5.06066478195501,6.29138087279965,5.01129439516224 -"Tfru29483_t",0,0,0,0,0,0.109174173759108 -"Tfru29484_t",38.7014095239252,38.3575414773578,37.3921678033928,25.3251546266314,25.1741048096428,29.696601938587 -"Tfru29485_t",9.34437093689203,8.94818281318069,7.21637904453029,5.98986381023668,4.93698356226642,6.13104955518772 -"Tfru29486_t",0,0,0.795007867773999,0,0,0 -"Tfru29487_t",41.5186418021053,39.9654170660507,43.8543529223441,23.3184156216073,28.6363402334693,22.7824159974219 -"Tfru29488_t",31.3677465559769,33.6293279125325,30.9517108071562,14.8711936713936,15.0832520625727,17.796711358545 -"Tfru29489_t",16.8732243726245,17.0519040364745,18.9034503321735,11.1025435713545,9.675410857772,13.1609632224084 -"Tfru29490_t",0.0967861483542021,0.0776883698352357,0.0416737995204112,0.100113875377056,0.167543420088293,0.0708122809059651 -"Tfru29491_t",38.8091414433317,40.3135084340669,31.6512507357523,26.6836123708782,19.3640128891176,24.385594387639 -"Tfru29492_t",1.46038166391354,2.62207132957168,1.9857012616862,2.46465156326242,1.23074667876386,0.534234280284161 -"Tfru29493_t",1.98137681064735,2.54466056667867,0.341253377204877,2.45940124039485,0.342989831690184,1.15971810993166 -"Tfru29494_t",291.177742552833,343.349991991017,269.005715137887,447.800091253644,390.098091068789,241.677361888215 -"Tfru29495_t",41.3354865336927,42.8552168730615,40.6263808001356,40.601541292199,44.6008301066749,53.0809861210968 -"Tfru29496_t",5.7938190649357,10.463819702927,11.8497292929637,11.986047377388,10.0294957286616,10.0675528630645 -"Tfru29497_t",0,0,0,0,0,0 -"Tfru29498_t",54.330403116306,54.097558195053,57.5406597333417,13.4495201108437,13.8800287520781,11.2571433731887 -"Tfru29499_t",7.01044183728905,6.45738078138019,12.0741140191887,11.055530062842,15.3186484610412,20.6845481768658 -"Tfru29500_t",1.99146635015723,3.25622719572796,2.60419170734398,18.3105553279616,17.6837005058599,20.3984131820639 -"Tfru29501_t",2.89566141392322,3.54454442570966,3.36636679210808,6.32740396674326,6.70433549509706,7.20314359016576 -"Tfru29502_t",3.23116833736337,2.96411011063669,5.565055074418,12.8915867216301,13.9834315996767,10.8070434859565 -"Tfru29503_t",32.897360261049,32.725083317066,21.6492823089961,25.8556751469691,14.3487989643195,30.291091385024 -"Tfru29504_t",39.9152637585499,40.2978791599585,31.1691766989272,38.9120574601127,32.3216814821178,33.6394340547863 -"Tfru29505_t",47.3513032711795,47.176799952594,53.4729204976685,51.7271378671505,48.8591048779219,25.4120365922494 -"Tfru29506_t",0.718805362750352,0.504849770180633,0.309500389165493,0.0929399399222295,0.155537634905495,0.131476063799738 -"Tfru29507_t",0.958748950316091,0.480980777581916,0.825628712895109,0.123964113876298,0.311186209636173,0.701455746948676 -"Tfru29508_t",32.9430107014224,34.2199876205593,34.651340212353,27.826495445372,40.846040091973,43.2840787651154 -"Tfru29509_t",20.3612936068203,16.7296863591756,22.2283592953375,16.0862363573409,14.7092891178279,12.1991721792811 -"Tfru29510_t",11.7634133168888,10.3078053176488,10.3833407981265,27.5804965239456,24.9450061022005,14.4876803791462 -"Tfru29511_t",0,0,0,0,0,0.0771205267583158 -"Tfru29512_t",292.010344983713,323.941017670016,293.337452845448,1073.24263389261,967.491600608374,441.125445442042 -"Tfru29513_t",100.956675948521,99.2690653254323,122.646170846079,61.1648514492476,98.9282774631208,80.1947561683212 -"Tfru29514_t",15.245333548301,11.461541427807,13.3596881243376,16.9910838409898,17.0052824412171,22.6222839999959 -"Tfru29515_t",1.05263598579976,1.77033068063683,0.949645436326698,14.5177066059903,13.5796141238866,12.2123299058376 -"Tfru29516_t",0.112844384536028,0.177223403461195,0.289839571406938,0,0,0 -"Tfru29517_t",0.59102777628154,0.948813135917371,0.581674098230624,0.349342085737828,0.584633924167389,0.679513224211211 -"Tfru29518_t",0,0,0,0,0.12536869710055,0.105974241079962 -"Tfru29519_t",38.2057241096281,28.9726868289054,40.1718674090525,32.5324817343352,38.7319974760896,29.4970513237139 -"Tfru29520_t",2.44970223861854,3.0304594021355,2.55629802560744,4.11390752938775,3.84148611493006,4.15389941193702 -"Tfru29521_t",6.4473079847855,5.88082892589982,5.80448186250342,6.87107137238995,5.66491577828765,4.64561498687738 -"Tfru29522_t",1.3113814910665,0.98683178073636,1.76452965774229,11.9538897362411,9.4350646774014,7.37580717916532 -"Tfru29523_t",6.49640874858293,9.12544795484677,9.53590280765825,14.8140384028939,13.9293656075515,9.83008865413071 -"Tfru29524_t",0,0,0,0,0,0 -"Tfru29525_t",8.04843938047626,7.72162853980982,7.16196184531622,10.8623554784106,10.6151597544991,11.1882111636518 -"Tfru29526_t",0.620460685165786,0.896457230654153,1.49607093581104,3.08060893922427,4.18883298140981,2.99608120276287 -"Tfru29527_t",4.28078352975528,5.58366602051465,6.45121034104506,9.96292477000716,8.79976459903224,9.98317850683205 -"Tfru29528_t",0,0,0,0,0,0 -"Tfru29529_t",0.718915204645638,0.412185238490126,0.442210977796051,0.956099748710956,1.4222756834879,1.12710989901671 -"Tfru29530_t",0,0,0,0,0,0 -"Tfru29531_t",53.1460536746681,44.3815799227698,48.6094987443269,6.31681183027413,8.42852026479533,14.2492673074903 -"Tfru29532_t",35.1123313855418,25.7249836810937,33.9913251740398,14.9909646434166,19.0708119039631,19.6550261436383 -"Tfru29533_t",9.34003594308007,9.54172068611316,10.4948601046694,13.1226553698753,16.4708529638999,12.7534517713471 -"Tfru29534_t",21.4112825468758,21.3310066890461,20.7045404501009,17.7550793866379,16.7894092362896,16.2049552603478 -"Tfru29535_t",15.3918704627319,14.4253864365914,15.1800120504851,11.9185722342437,9.89860930843033,9.68845364714654 -"Tfru29536_t",35.1304159717721,32.4230008460678,34.6149040376681,26.9474879840288,27.9581030229402,24.9325771261266 -"Tfru29537_t",7.93072711563609,4.36726322283435,8.97372766665206,25.1825409115292,18.2782330942866,6.8144577853613 -"Tfru29538_t",82.7749300542203,76.8925034582811,78.5654834035481,36.273386167724,36.1101557191652,39.0066725821243 -"Tfru29539_t",0.302195599897293,0.485133129618594,0.260236388372064,0,0,0 -"Tfru29540_t",14.3011676454389,13.5559227365196,14.4196337214817,17.6176441292271,18.9961963091615,26.368356556021 -"Tfru29541_t",1.92996811501974,1.3668953719659,2.96570022613441,11.860517873724,17.3923654653277,12.2930119652755 -"Tfru29542_t",19.9435029418642,20.9781501255321,19.5316595474531,16.3820163305122,16.6976709993968,15.3543438821518 -"Tfru29543_t",6.35787568512791,6.09428443577451,6.4319115591914,7.72576054599665,8.86884508217558,6.23231319326975 -"Tfru29544_t",1.21817221626128,1.43178337943882,0.599446636705822,3.06013536004938,3.50201321678077,4.87009536687508 -"Tfru29545_t",82.3045823192354,85.2332119250212,103.193635466238,13.6744373535321,7.38211617444864,5.92810221675724 -"Tfru29546_t",0.122464106080827,0.196599139991209,0.421840909431101,0.760048196740099,0.953971718461912,0.537595275449368 -"Tfru29547_t",0,0,0,0,0,0 -"Tfru29548_t",0,0,0,0,0,0 -"Tfru29549_t",16.0703026445809,14.310184454928,12.5106810276732,3.59914084169368,4.62611562913302,7.87340646793907 -"Tfru29550_t",0.687482624970928,4.52499788166345,0.355216281345829,31.4314967034859,32.4891644826532,37.3216648045599 -"Tfru29551_t",1.33703517408139,1.43094970858323,0.959492254209999,13.8300547205228,10.029495768044,17.118915866763 -"Tfru29552_t",0.826331574801123,0.221093459072081,0,0,0.238406046945308,0.403049572631985 -"Tfru29553_t",1.58475376230412,2.15952878536516,1.65035193257581,2.85914160431952,3.25370130312285,3.49187332639435 -"Tfru29554_t",23.9118719463323,26.2312495796619,23.6118845282706,19.622319573903,19.5927246550309,19.9440706457506 -"Tfru29555_t",24.4216211544905,26.2677025356859,34.0697848451288,32.8396793533343,41.0072261562613,25.1935274288351 -"Tfru29556_t",12.4779919846998,11.5225551893674,10.5244933210943,9.40088762188757,8.96504076388855,12.0440295657217 -"Tfru29557_t",0,0,0,0,0,0 -"Tfru29558_t",30.696099204952,39.8470711464,26.4340116034855,32.2072637961265,29.3652063593212,17.9452185157431 -"Tfru29559_t",12.3527816060793,11.4426807433105,12.6800163081695,10.7205802200041,11.5685940704802,11.5823314223184 -"Tfru29560_t",48.3858444215419,54.3491628911657,44.1883876621858,46.7642832985364,50.3250678395289,47.8170449480542 -"Tfru29561_t",23.8589470030911,21.20109397734,22.976999391257,22.5241803200322,24.7227070682285,23.5534109254679 -"Tfru29562_t",18.6948729663432,15.0060130476198,19.4313687726071,8.92135744064798,10.2493432058008,15.2809915661583 -"Tfru29563_t",15.6512482752286,11.4544583864467,10.3067869323467,5.7138965804242,3.78510422478921,10.2722428750933 -"Tfru29564_t",14.7294913885517,11.8724435992568,11.757502887826,14.8860391329316,12.9351860683393,17.2561130625299 -"Tfru29565_t",0,0,0,0,0.0581710754546552,0 -"Tfru29566_t",7.05102445778781,5.10755309238164,5.99795598092338,7.82712206427948,5.95405071183779,8.80768513376958 -"Tfru29567_t",9.47435637091245,7.33897767535006,8.67235711912457,10.0742350493776,11.698441830392,13.03951190323 -"Tfru29568_t",5.7938190649357,6.97587980195135,9.35504944181343,8.98953553304098,5.64159134737217,6.35845443983023 -"Tfru29569_t",0.882176815855264,1.08939426521784,1.63625205742177,0.912508053113651,0.704819169482899,1.4894602542741 -"Tfru29570_t",0,0,0,0,0,0 -"Tfru29571_t",0.333816066641513,0,0,0,0,0 -"Tfru29572_t",3.30570003578287,2.8364160861961,3.14119797959007,3.89099300719185,4.63711083169742,8.59009655646798 -"Tfru29573_t",15.8660450797123,15.7726728447471,15.2066064380383,16.8534883453842,17.2663059799722,17.6794008508902 -"Tfru29574_t",2.58052351857688,2.53163329415301,1.97530965098796,4.74532935575616,4.46706210829264,5.03468066837224 -"Tfru29575_t",10.8634107467544,19.7649927721955,11.8497292929637,31.4633743656434,21.9395219064473,19.6052345228099 -"Tfru29576_t",8.76572481742538,11.1903482828531,10.0671221009134,17.5750470661924,17.0943523375824,11.6873925339698 -"Tfru29577_t",2.11536919928105,4.12363160175805,1.82165471860445,4.06361499911763,6.01589359468108,8.62279616269328 -"Tfru29578_t",4.18151196599965,5.79745065756881,3.27356180848117,4.71848925759012,9.21261375978703,10.5686528208251 -"Tfru29579_t",15.9201158828455,14.99855538634,17.4427838320059,20.0238439068209,19.5369937581249,19.1941601415112 -"Tfru29580_t",12.5019900618197,23.9518037954849,8.96939292688755,81.4679645581547,55.0999794777489,37.8147101748226 -"Tfru29581_t",0,0.352133185467283,0.188892208792256,1.81511945331143,1.70868041479079,1.60483184925268 -"Tfru29582_t",0,0,0,0,0,0 -"Tfru29583_t",0,0,0,0,0,0 -"Tfru29584_t",0,0,0,0.240052054771505,0,0 -"Tfru29585_t",7.13217413854341,3.72781468998138,5.78480058574743,10.8945243495214,12.5616216739446,12.3172824726107 -"Tfru29586_t",1425.60465888691,1482.6769891362,1582.00887059399,1104.19168648904,1034.13184202711,838.872627732451 -"Tfru29587_t",9.5151195091167,10.6312355661381,8.56454691020276,9.84227087173002,9.51860227274524,10.1100752930126 -"Tfru29588_t",0,0,0,0,0,0 -"Tfru29589_t",21.1852254467128,15.0112845950853,22.6473545637184,18.2865393097416,18.8423700929209,17.2102167513858 -"Tfru29590_t",50.4141966868506,52.4944884880795,46.7776142616757,57.671481268677,36.908829895921,24.2594543527259 -"Tfru29591_t",0,0,0,0,0,0 -"Tfru29592_t",0,0,0,0,0,0 -"Tfru29593_t",0,0,0,0,0,0 -"Tfru29594_t",0,0,0.141300226498894,0,0,0 -"Tfru29595_t",25.8551338660783,27.5370253323089,24.2304159150629,20.8106643952593,15.1071151180746,11.0453629896953 -"Tfru29596_t",4.53441680316939,4.96321185110289,5.82173573045101,4.51976322163502,3.99605032563873,3.61913993089565 -"Tfru29597_t",4.12905443489156,3.56925924475533,3.8292628489379,3.69607558811702,3.50510969776396,2.90477598423335 -"Tfru29598_t",18.5879792422725,18.7234026945207,23.0690243974247,34.1186349950944,30.7574829546035,28.265927729267 -"Tfru29599_t",56.1996626745222,53.9724576510266,48.3396917257893,40.9176513194761,43.6293955365408,44.1027442144466 -"Tfru29600_t",44.3665003434225,41.5795976195468,39.5787117070443,40.4383730565734,43.2670602295316,45.9196619020279 -"Tfru29601_t",10.7203425573381,15.5476487777478,10.1195234604754,1.06624348254337,0.713755527050984,0.754172513207088 -"Tfru29602_t",2.9563768951829,3.75729206839504,2.12157524831184,2.03868255313278,1.70589664089898,1.80249442306093 -"Tfru29603_t",2.17219577280102,1.5644986687376,1.72483070305165,1.40065295624905,1.66035641828264,1.52733862563867 -"Tfru29604_t",2.51171858167978,5.040269847847,3.24445775778421,0.410222708862083,0.457679586582653,0.725394097085496 -"Tfru29605_t",0,2.56076601330321,0.915768556549795,2.19997072980467,1.84085681818529,1.94509682994866 -"Tfru29606_t",100.128646733411,109.187390390873,112.514412914468,40.1654539783089,47.5599272430866,39.6664048879531 -"Tfru29607_t",22.6980260140319,17.7748942384144,24.8502170991927,17.895149058337,19.106850360415,18.8344334888077 -"Tfru29608_t",1.2894615969571,1.25457683752529,1.27866846826162,1.01045167241029,0.811689424948678,0.9434171973351 -"Tfru29609_t",24.9674508676326,21.7280057863673,26.7662694405669,19.8305928673333,23.0435079037584,26.3754540270885 -"Tfru29610_t",5.0455450893008,4.97190393435775,5.36940860695799,8.52864629359581,7.74004788153982,8.73356074681441 -"Tfru29611_t",0,1.25652493820468,1.34805681926895,1.61923311479412,1.3549163537575,4.96301725306155 -"Tfru29612_t",5.88233064599568,6.26689480106922,6.17079945234637,9.23749644758532,10.1364302391546,12.519935801681 -"Tfru29613_t",20.1624904251474,18.6116473846877,18.8098861515328,23.6364855210214,28.5038269727811,22.3732817768015 -"Tfru29614_t",13.0616840210024,11.9140468227888,11.759374326862,14.5854949886785,14.5170749257421,16.2893268091107 -"Tfru29615_t",6.80245965760708,5.86971804803712,6.73664561640073,6.68452644825266,7.35970084193513,6.22115990145523 -"Tfru29616_t",3.41902696162867,2.90120893677724,3.53316287282817,3.13240018447189,4.90395694239826,5.00296998586795 -"Tfru29617_t",0,0,0,0,0,0 -"Tfru29618_t",0.236648948651965,0.759814141036446,0.203790749204039,11.5049173517813,14.9524243246121,13.072146526455 -"Tfru29619_t",4.98366641864519,5.14323343349883,7.05064181038551,13.9921867179526,9.24328529470158,15.3662649565944 -"Tfru29620_t",8.1619502457049,8.60290054191167,9.58456492208398,19.4435097081657,23.048647413952,18.3972946487195 -"Tfru29621_t",112.068852313974,137.11920961214,107.168310097142,153.481455011255,154.141921452782,137.541656468063 -"Tfru29622_t",5.3513459176333,9.14509177627599,5.54980834818671,5.77341633647028,7.42079644070516,7.78838086841087 -"Tfru29623_t",0,0,0,0,0,0 -"Tfru29624_t",15.4755957210561,17.4726490732268,17.2809604942453,4.39771476858728,4.56301452199978,3.23500314875672 -"Tfru29625_t",1.65266314960225,1.1054672953604,1.66039348121979,2.84914242056671,1.43043628167185,2.01524786315993 -"Tfru29626_t",19.9994255644302,14.7827588543418,18.4478133960726,6.48227341204483,4.71844356090329,4.65520338932413 -"Tfru29627_t",85.9573148194532,54.4625179569389,91.4590685057594,32.7255205606808,35.9777653811382,18.3754176537722 -"Tfru29628_t",10.4294839127099,21.0707532772693,9.13359907006004,43.6094145245816,34.5400323090174,26.7070696562798 -"Tfru29629_t",10.1342844583369,12.391951880235,12.6421487879958,18.222305469983,12.7884551450482,10.7407939944628 -"Tfru29630_t",0,0,0,0,0,0 -"Tfru29631_t",0.258626095756123,0.242193194006615,0.222716416523655,0.668795616936516,0.596932534167832,0.852403938412348 -"Tfru29632_t",0,0,0,0,0,0.155607746395893 -"Tfru29633_t",8.93564916569032,9.13417477048246,10.9833950605104,15.1677981953079,17.1869086570572,17.5454807140751 -"Tfru29634_t",0.275443858267041,1.76874767257665,3.0835878936939,1.13965696822668,2.14565442250778,1.61219829052794 -"Tfru29635_t",7.22534189867931,10.2341555834353,9.58864965073068,5.39256511010999,8.85937770539288,8.61336207100544 -"Tfru29636_t",1.16219888814255,1.43262881211973,1.17954971686034,1.33096055269062,0.934071122666154,0.607362251248792 -"Tfru29637_t",1.3638048177183,1.75151961083077,0.939554752823817,0.56427820667068,0.236083910124413,0.199561882553174 -"Tfru29638_t",0,0,0,1.06352486071129,1.11239945413033,0.532843455914544 -"Tfru29639_t",24.3901093852589,26.8943011211434,25.0345879300798,19.1126489356198,22.1766563316868,23.9731758267104 -"Tfru29640_t",37.4568558853587,39.3980350678271,37.618096664016,39.2982032594727,53.1775248257307,56.3755962738751 -"Tfru29641_t",16.9167652884485,11.9677210269051,12.0987716123012,19.8710666772289,29.7804140552843,24.963624980679 -"Tfru29642_t",26.3977560038722,25.3648963825355,30.1993585001674,27.5046799269846,21.4305710892294,16.5645516733931 -"Tfru29643_t",0,0,0,0,0,0 -"Tfru29644_t",5.62412564160318,5.07867401801558,4.84322784719223,7.99905675397599,5.17211444942019,6.17222358089149 -"Tfru29645_t",3.90518892604056,4.50601573326742,4.16166524158975,5.60474820733794,6.33763895859841,8.03581549153689 -"Tfru29646_t",0,0.05999422154536,0.128729031970523,0.231936415909123,0.646920323116718,0.874947470838117 -"Tfru29647_t",7.86651787295666,12.9524139288326,6.86111832104115,54.4552178605553,39.6303545264308,24.792629173665 -"Tfru29648_t",42.195257111451,44.4725491231923,40.7558445155906,33.3243303817302,19.4122932795512,11.8202038127649 -"Tfru29649_t",0.0931378899905182,0,0,0.192680363253403,0.161228036182526,0.136286163694851 -"Tfru29650_t",0,0,0,0,0.0879248419810388,0 -"Tfru29651_t",0,0,0,0,0,0 -"Tfru29652_t",0.64730064656041,0.964926323853384,0.676872411362893,3.92168695313007,4.84225380435697,3.82253811798606 -"Tfru29653_t",102.136326987967,108.549073613497,109.850417028607,103.53632497242,101.09259062812,110.754787478016 -"Tfru29654_t",0.220789426468981,0.0886117017305974,0.0950666438468251,0.114190333544395,0.0955503867520618,0.0807688039768432 -"Tfru29655_t",3.9162732028795,2.94070924134218,3.26371650980905,10.5846712030226,6.99802411484574,2.31071653482623 -"Tfru29656_t",0.36094683897507,0.651881358918218,1.08790550326968,1.21341027900612,1.21059568951015,2.93791102285049 -"Tfru29657_t",0,0,0,0,0.363569221591595,0.460987948697833 -"Tfru29658_t",0,0.116869159474843,0.18807378501066,0.0753022910115118,0,0.372838317837646 -"Tfru29659_t",0,0,0.108790550326968,0,0,0 -"Tfru29660_t",0,0,0.118989664420122,0.285851459958173,0,0.101093848398648 -"Tfru29661_t",1.0545235578006,1.12859422622568,2.1189121831466,1.09078046645127,0.304242026436482,1.02870393014858 -"Tfru29662_t",0.157470246994278,0.126398322431086,0.0678029203068734,0.0814422153957682,0,0.0576054918710194 -"Tfru29663_t",0,0,0,0,0,0 -"Tfru29664_t",0,0.0536890963511024,0,0.0691869775694941,0,0 -"Tfru29665_t",1.63664568779881,1.28407142994112,1.90745992004366,1.858390390916,1.73610028180548,1.4675266957228 -"Tfru29666_t",0.339298775328948,0.217878853043569,0.759688455231535,5.61543417300708,7.40060127957044,7.09976054537319 -"Tfru29667_t",12.8646980670894,10.7956191326495,17.9605373747458,14.9199871072368,20.0764442549419,13.1201519815006 -"Tfru29668_t",8.27809566235726,7.9604430312733,8.75206710240176,11.8691103764096,11.9889167705326,12.7127733494557 -"Tfru29669_t",1.03141452669896,0.988134528961754,0.945508367099136,1.13570766190115,0.777534176869154,0.681592742629139 -"Tfru29670_t",0,0,0,0.200690170501812,0.50379106918004,0.141951639321888 -"Tfru29671_t",5.71985543975812,5.4520706183945,7.85027981774283,4.4373877699039,8.50906688831393,7.71582665905593 -"Tfru29672_t",3.89620722826052,3.63842494483882,3.55259350916165,3.74041704258091,3.28413543601987,3.74491573964896 -"Tfru29673_t",6.76549554922524,6.77498467137023,6.36348166249907,6.65839460130875,5.96947119110516,7.20856839246025 -"Tfru29674_t",0,0,0,0,0,0 -"Tfru29675_t",0,0,0,0,0,0 -"Tfru29676_t",26.9431943320455,50.4624892777435,39.6370737817121,63.4806698782837,66.8837810767612,64.2029244066173 -"Tfru29677_t",3.53850311495319,3.60036510867824,3.50498327309102,6.52987159469412,6.22604203872496,6.70925707418637 -"Tfru29678_t",0,0,0,0.601376081849721,0.754814992923727,0.319022801867012 -"Tfru29679_t",0,0,0,0,0,0 -"Tfru29680_t",0.10614071607258,0.255591301390971,0.137104957613583,0.164685111485694,0.137802610836991,0.0776564242910647 -"Tfru29681_t",0.76373069792225,1.07280576163385,1.47979873569751,1.18498423400843,0.991552422522533,1.81601313123389 -"Tfru29682_t",19.6215714289967,17.9491601991553,20.4364279192593,22.4903898806018,25.0157044630093,25.1227519648056 -"Tfru29683_t",21.0943085779835,19.8766881600282,20.2188900520339,23.5271978921033,24.2908693901808,19.7278685468942 -"Tfru29684_t",0,0,0.168441713544666,0.151744197602942,0.0846494113135262,0.0715542023589962 -"Tfru29685_t",18.1386040756534,18.3909559137231,18.3853782313933,18.313392707403,19.0798723727821,17.9696404244472 -"Tfru29686_t",12.9246733494535,13.7308041889788,13.4216034147728,14.5486752109029,18.7542494395665,13.6279996900114 -"Tfru29687_t",12.8702352759012,12.2778179317711,14.1370936659495,8.44382417258442,11.1851256762905,7.77789143391338 -"Tfru29688_t",0.358580876463495,0.24670794518409,0.264679448661344,0.264935499473429,0.354701679601556,0.299829560128672 -"Tfru29689_t",35.0722932152645,35.353488067157,32.4853336261536,27.5249978627686,26.4734870090967,26.480699318403 -"Tfru29690_t",8.41506278178105,8.55583703053561,11.2323064857619,5.36770821637651,5.82681891031605,6.46460562447712 -"Tfru29691_t",1.08443958513763,0.609196798138548,0.980167764720072,3.30837041509612,1.97074048855863,1.6655048469083 -"Tfru29692_t",33.5917780463151,31.8794626074404,38.6234492462368,39.8659644362285,30.94889691899,23.5812195652009 -"Tfru29693_t",3.81300180709086,3.92558144647468,3.96170422909973,13.0755537085949,20.9854952768706,11.2195718479328 -"Tfru29694_t",1.81485831352953,1.50374366588398,1.58807669196806,0.575288513142302,1.03876920454741,0.835239488929871 -"Tfru29695_t",22.3479560984544,25.7975152645048,23.879235430532,12.4472543204563,8.73342436207569,6.1793165127942 -"Tfru29696_t",0,0,0,0.170056445845958,0,0.240567748831224 -"Tfru29697_t",0,0,0.210307313858819,0.252612918102572,0.211377454413718,0 -"Tfru29698_t",9.54467944895667,9.17979136873997,8.44156767685513,9.42812430470028,8.26124536267494,8.87059717043936 -"Tfru29699_t",0,0,0,0,0,0 -"Tfru29700_t",37.7760513264495,35.1716010270268,37.3229412807011,34.7990071041889,33.4120389865402,35.5948302552452 -"Tfru29701_t",4.30241821740567,3.45346791192104,4.09504052645852,5.15303117035111,3.72388960120771,7.4553307067035 -"Tfru29702_t",11.8941666069859,9.24572647028701,11.6443179202427,11.6555826295911,12.8955998120417,14.1067350421195 -"Tfru29703_t",0.73371508097334,1.03064308977924,1.26368062825212,14.7993664160004,15.8763852223404,10.1994422419317 -"Tfru29704_t",43.3178505187541,40.565467858012,33.3468534506417,23.0825053894785,22.7230763473641,33.6137045894282 -"Tfru29705_t",33.2871304188754,30.3541653310955,39.3903898259344,18.7382951649131,26.2632213979913,23.6913842457467 -"Tfru29706_t",2.27614321301951,1.328739015113,1.8710098957095,1.60527420863211,2.77602115008361,1.89239716214217 -"Tfru29707_t",0.717094483275651,0.885535193919692,0.950042232008324,0.399403747072221,0.238719121202623,0.403578856378055 -"Tfru29708_t",28.1337075699731,24.7778925411246,40.0425125587192,19.8048527792416,27.7327220190798,26.8730959240907 -"Tfru29709_t",77.187198962599,47.2376837174816,68.6733445985287,17.6444352948801,19.1935020535665,17.7843066502717 -"Tfru29710_t",0,0,0,0,0,0 -"Tfru29711_t",0,0,0,0,0,0 -"Tfru29712_t",6.72774506390919,8.18544946479385,7.0870656782731,9.33117907755758,10.3451151710333,10.6586636987445 -"Tfru29713_t",18.0825630743898,23.4038014322593,15.6463443389919,2.14786019758479,19.3204653286574,66.0227161677775 -"Tfru29714_t",10.5012970964309,13.5954647211663,16.3361294120012,16.118333935706,19.0580640350433,14.8705789902527 -"Tfru29715_t",8.24641735179852,6.80728634025332,7.34351383495425,6.9305826365319,7.42143530967785,5.45061043636032 -"Tfru29716_t",7.98577725964329,7.94843595257233,6.32681166255125,5.61703553256213,10.2297043337559,5.60897884347173 -"Tfru29717_t",27.55637902808,27.2082937514103,26.1452587458506,32.1614008359326,27.9668631993535,27.1195619553248 -"Tfru29718_t",0.347150317237386,0.278650847177622,0.597898479069702,0,0.300470431067434,0.253987850522222 -"Tfru29719_t",0.178555529801163,0.0716615356184746,0.538172169789625,0,0,0.0653188733542802 -"Tfru29720_t",4.5087715901434,5.33100460564341,5.82410747382956,4.90174201216337,4.30070930250737,3.87101964952543 -"Tfru29721_t",0,0,0,0,0,0 -"Tfru29722_t",0,0,0,0,0,0 -"Tfru29723_t",0.255350689274916,0.614895182525696,1.09947896607042,0,0.22101472437179,0.560471670149341 -"Tfru29724_t",1.4011459642215,2.01503871836716,2.01099974892103,2.05320409320895,3.08237977999824,2.8191062880757 -"Tfru29725_t",1.00611229666404,0.403793443215477,0,1.04070471649443,1.30623672428118,1.47221700182941 -"Tfru29726_t",0,0,0,0,0,0 -"Tfru29727_t",0.420051883857237,0.337167525084923,0.36172857983717,0.434494219136423,0.363569221591595,0 -"Tfru29728_t",5.92685924715428,18.2663573463841,7.69447101365128,109.300485503215,124.53801453541,141.715284636367 -"Tfru29729_t",60.3317763686843,53.7645512973256,74.7199962211914,59.7219853330373,82.5400394964703,59.3292083266194 -"Tfru29730_t",53.7500601383109,48.1351006206765,56.8770595928181,47.880119542994,54.7745735161022,51.052393441317 -"Tfru29731_t",0,0,0,0,0,0 -"Tfru29732_t",0,0,0,2.31289698399617,4.9766129191245,0.934829807245289 -"Tfru29733_t",39.9011717939522,41.3165929665782,41.1555235736028,25.2612918102572,23.153961160395,34.4710129795517 -"Tfru29734_t",0.305270264431132,0.0490069077158318,0.578345113111754,0,0.158533090810289,0.178677499495284 -"Tfru29735_t",0.12855451686526,0.257970562421517,0.387467491791918,0.0664872561800188,0.16690247356921,0 -"Tfru29736_t",38.1169994759678,36.633072528195,41.2776770921929,17.9336005470572,30.7847686871184,33.2974603308298 -"Tfru29737_t",12.7364499511604,13.5723148633886,11.5623474361694,10.6757728226948,10.6708516867436,13.2661704927731 -"Tfru29738_t",4.79445932170952,4.48024990743168,5.51528243533674,4.51518694502927,4.73816787934532,6.8323597166459 -"Tfru29739_t",0,0,0,0,0.174792894995959,0 -"Tfru29740_t",0.598242764394844,0.411598199493293,0.220790587896543,1.41442675609009,1.10957036091026,3.25145789518987 -"Tfru29741_t",0,0,0,0.187686487747915,0.0785246698901934,0 -"Tfru29742_t",0.158450352266027,0.178059047574082,0.32747966488465,1.01616905267666,1.12458227727313,1.06653819389414 -"Tfru29743_t",5.49404524227196,5.91503508967463,5.01350052903709,4.53007863872531,3.79060777311044,5.9862958220165 -"Tfru29744_t",9.80605035965579,10.7936639245479,6.50168891172365,12.9158345385408,24.1283907761931,40.5136621402793 -"Tfru29745_t",7.66440335471897,7.6900854682319,7.260239108744,7.26726266168371,7.11291026529933,7.60135559941012 -"Tfru29746_t",1.1110850711874,1.78369300559254,1.00996958367468,1.66008077847862,5.82351875877794,7.54200219765252 -"Tfru29747_t",3.8288911665271,5.60439317835529,3.39423600383403,7.33864230712993,7.99267457654445,7.90971279267059 -"Tfru29748_t",2.34603445771329,1.70377206824828,2.0202926001544,2.31113946349161,2.90081825737975,2.61553446069692 -"Tfru29749_t",2.00821617780353,1.34329691268894,1.72937966456017,2.0772631990586,0,0.979522865759008 -"Tfru29750_t",4.38860177158782,5.53558623266822,3.2393604164117,5.18799067619083,5.42640629234391,6.4217226683471 -"Tfru29751_t",23.3890662389856,23.8031583503921,21.8929831607814,14.5566591182761,17.2911875009201,18.9363265142569 -"Tfru29752_t",0,0,0,0,0.194422043631869,0.328690159499346 -"Tfru29753_t",0,0,0,0,0.0748855245296798,0 -"Tfru29754_t",0.834540166603783,0.446579503423739,0.239555350885543,0.287744515984386,0.481548637869663,1.01763344083407 -"Tfru29755_t",13.5822943943265,14.8829013275371,14.4691431934868,15.618823031512,16.6569158790863,20.3078391496843 -"Tfru29756_t",6.30399458162469,7.43524098196461,7.97686301631737,5.9884348732432,7.7947459453022,10.0716101093758 -"Tfru29757_t",0,0,0,0,0,0 -"Tfru29758_t",0,0,0,0,0,0 -"Tfru29759_t",0.0647728425377389,0.129979770657256,0.0836689082121441,0.0334999397946356,0.168189308369281,0.781937923774273 -"Tfru29760_t",0,0.282621563357018,0.181925522131016,0,0,2.21542126784094 -"Tfru29761_t",0.0614560181210296,0.098659114874886,0,0,0,0.314744271239681 -"Tfru29762_t",10.0111670432708,7.16522843775308,8.40560950167802,5.17768682188389,4.62133667961511,5.73755275439871 -"Tfru29763_t",0.0864749117565079,0,0.0837765624944551,0.0894481151078586,0.0467793645897575,0.0553596781760993 -"Tfru29764_t",18.5899624536577,19.2434186021867,17.7583800984149,10.5077199307478,9.23210840800907,5.05395897000446 -"Tfru29765_t",0,0.10619449608974,0.113930261366038,0,0.343529973157413,0 -"Tfru29766_t",0.473297897303929,0.379907070518223,0.10189537460202,2.69264023126797,3.17482982234914,3.11653824471774 -"Tfru29767_t",17.5392314590919,17.751028552126,16.3626089820444,19.325461486552,17.1609072823869,19.4809834094193 -"Tfru29768_t",0,0,0,0,0,0.137814035485152 -"Tfru29769_t",0.922730049411804,0.504993796931986,1.08356039891314,0.173537381582196,0.580839495303597,0.736476003910666 -"Tfru29770_t",30.3280703788816,24.6041166953863,31.7036245648793,22.9828988500734,24.4251137285473,19.4599803311312 -"Tfru29771_t",0,0,0,0,0,0 -"Tfru29772_t",2.00223340865416,2.20983680790515,2.62847499823423,3.67112516638715,3.75483605218728,4.08953228239057 -"Tfru29773_t",39.3737158112082,43.4261719452774,38.7077547101321,58.3222582984855,43.9337960067691,37.2806048691668 -"Tfru29774_t",13.5131584764286,13.8310423056113,15.7621304575856,16.6402041371396,15.3472624603771,12.0837692084198 -"Tfru29775_t",27.4379294608697,28.8799481792796,28.0616739511565,24.9924947776243,25.7739183551702,28.6351845569963 -"Tfru29776_t",1.95024088933717,0.963335785956923,1.5502653421593,0.310353013668874,0.259692301136854,0.219518070808492 -"Tfru29777_t",29.9009382701056,31.5325697324396,26.9882380489087,2.91172596591795,2.05742820856003,2.01374730629979 -"Tfru29778_t",42.3111574998757,42.4529350002869,51.7185295209439,59.1382350291823,70.4817335926266,61.3051611275578 -"Tfru29779_t",0.335147779673328,0.538033284709983,0.384817638124648,1.27112670492039,1.64379701251519,6.04842344036164 -"Tfru29780_t",10.611837065867,8.21370512236955,9.2471967777923,10.1926463436514,9.84097141150183,13.3097272405991 -"Tfru29781_t",15.1218678188605,17.8392272363114,12.2330028817661,13.8248160634316,17.4513226363966,23.2449680797938 -"Tfru29782_t",74.1459325311872,68.6951641431088,74.3527261523369,46.9253756667337,40.2506312420114,40.4083199761799 -"Tfru29783_t",0,0,0,0,0,0 -"Tfru29784_t",175.890079974651,153.816678532413,158.061652860495,254.31661636542,323.806714318793,392.287128664046 -"Tfru29785_t",6.41175086905372,5.54247986440969,7.10715252752482,6.19005462879288,6.48875009963865,6.92835116633925 -"Tfru29786_t",2.36544835608123,1.75036374659133,2.64174853730621,7.72264252226638,9.85299782227992,11.0869663567157 -"Tfru29787_t",17.6946366732033,15.7114410570794,20.8339480279004,23.7291344281402,28.4620825849897,25.0901176178504 -"Tfru29788_t",17.4045402076306,13.7016285094272,18.7349463660686,15.9256845261159,22.5963340909517,23.2636680617764 -"Tfru29789_t",0.268833205668632,0.161840412040763,0.173629718321841,0,0.174513226363966,0.147516143583306 -"Tfru29790_t",26.1894696817873,29.3485902401856,27.5323777365943,33.9503580134938,39.4479965127723,29.737144328956 -"Tfru29791_t",17.3011468994664,18.894734574066,16.1882493154852,21.5096148087338,18.2864519374783,19.0480828966893 -"Tfru29792_t",3.13330316369103,2.78341597367965,2.71585413761568,1.93591917412474,2.14774308624822,2.86138567568701 -"Tfru29793_t",73.4861343791029,65.0760336107098,80.4602390985226,47.8481616412434,55.9255787328077,47.3186950010788 -"Tfru29794_t",40.3655806606304,41.4878999268065,39.6691193501729,30.2046167206361,26.6257013581949,25.8198950200025 -"Tfru29795_t",70.0608925687257,80.5176179307279,70.7260357592078,53.014779722989,59.2834887445997,66.6253726849355 -"Tfru29796_t",1.14907810173712,1.02482530420949,1.64921844910564,1.12255345369593,2.26540092481085,2.75565237823426 -"Tfru29797_t",26.8935657347621,27.7546438332101,30.6587028032723,22.9169207044516,25.0508061218599,26.5161767238794 -"Tfru29798_t",20.9344776711553,21.3964688891729,22.0556669219636,16.1115153690587,17.0582748292705,13.1236208818482 -"Tfru29799_t",0.260094045732035,0.208772461352894,0.223980544790817,0,0,0 -"Tfru29800_t",2.39362435554506,1.35897960075924,1.7596247803059,2.35514587162203,2.67813325147388,3.11810240953827 -"Tfru29801_t",0,0,0,0,0,0 -"Tfru29802_t",0,0,0.265488865935537,0,0,0 -"Tfru29803_t",18.0994710680144,15.3637823632596,18.4140192214536,12.1774356936233,10.8828155938762,11.1914455927914 -"Tfru29804_t",0,0,0,0,0,0 -"Tfru29805_t",2.68833205602834,1.07893608000768,0.578765727597816,1.39038150089625,1.16342150880835,0.983440956981342 -"Tfru29806_t",21.3468990022266,18.7929440092693,20.7549185021519,39.175708258074,50.6612849439128,40.8087692032398 -"Tfru29807_t",16.2182194539474,22.9117700443809,20.1115503847693,43.9526970709432,56.7111835996156,61.3464014097245 -"Tfru29808_t",0.992248544544655,0.945915958695203,0,0.342121432390885,0,0 -"Tfru29809_t",0,0,0,0,0,0 -"Tfru29810_t",10.5834097583492,12.1860721490294,14.0165896270528,91.7307517377505,73.4719382642963,46.5126560458514 -"Tfru29811_t",10.7140766561917,9.80558714192148,11.6408482188362,7.97522166233721,10.1400712577394,11.2820252839835 -"Tfru29812_t",0,0.443641480374891,0,0,0,0 -"Tfru29813_t",7.26257930033541,8.1928557497271,6.9303139127682,7.7153179098991,5.94622558677843,7.89854740759527 -"Tfru29814_t",0,0,0,0,0,0 -"Tfru29815_t",0.0990688405323673,0.159041285417416,0,0,0,0.0724823818707284 -"Tfru29816_t",0,0.0773320011662667,0.165930541209711,0.398618549666443,0.166774872289723,0.211462361787997 -"Tfru29817_t",0.341968969218918,0.768834632768287,0.294487310586569,0.611468176610294,0.29598579776792,1.11521321089444 -"Tfru29818_t",10.5285260430941,11.0154990909335,10.5254237827711,12.1673402765947,15.7745677821072,21.5154271648081 -"Tfru29819_t",0.521803582431351,0.418841646068227,1.34805681926895,1.07948874319608,0.903277569171665,0.381770557927812 -"Tfru29820_t",153.313366628,170.104146607831,130.682845023402,211.138835399981,152.371185706822,160.591734559634 -"Tfru29821_t",0,0,0,0,0,0 -"Tfru29822_t",0,0,0,0,0.134158384351142,0 -"Tfru29823_t",5.19384091322704,7.19151753658723,7.0444823894101,3.35776058065242,3.59635706056601,5.79500564050856 -"Tfru29824_t",3.80137451454513,5.1871926936142,5.56505507441799,2.35924462879506,5.2643507198783,2.78122442653293 -"Tfru29825_t",0.517305275686253,0.415230942222812,0.534574255916999,6.95618823740579,5.82068950823983,4.92023262156964 -"Tfru29826_t",28.1434762184349,22.9273917057748,28.2148292272992,34.7595375309139,33.4483683864268,24.893349229683 -"Tfru29827_t",8.25725463621561,7.32040983558463,8.2074357478947,6.03405174742025,6.36468368360837,5.92108400283443 -"Tfru29828_t",10.0917301269913,14.6228661425286,13.882251269882,12.2010857167794,19.3979210271959,18.3148618203403 -"Tfru29829_t",9.62900648120904,8.46718189202318,7.26718074109446,6.88252272424727,7.35098104183908,4.94728427449917 -"Tfru29830_t",0,0,0,0,0,0 -"Tfru29831_t",0,0,0,0,0,0 -"Tfru29832_t",24.9391584348609,21.9177156068206,26.0225110522081,27.3971436118525,32.4573172905173,28.6348599407827 -"Tfru29833_t",93.8499482974183,103.505811467851,90.2339375182857,142.252216950144,127.398639565932,111.689591588616 -"Tfru29834_t",0.153303607247167,0,0.13201772986758,0,0.132689496931239,0.112162517931346 -"Tfru29835_t",52.4360069781518,54.1957196361336,42.3635148869705,75.5261763465326,52.3393275378505,66.2084539979567 -"Tfru29836_t",0,0,0,0,0,0 -"Tfru29837_t",53.1654453800615,55.9995195201127,59.9822291265373,45.9438480048127,28.5418828165364,20.1874562313604 -"Tfru29838_t",0,0,0,0,0,0 -"Tfru29839_t",15.5313301594273,15.4619441275439,16.501423810099,12.622761228213,8.64186144959614,5.68164418563155 -"Tfru29840_t",0,0,0,0,0,0 -"Tfru29841_t",61.1774235573465,64.3457078891758,58.8810775451345,67.3883205455309,57.0325721315028,51.8412838417455 -"Tfru29842_t",0,0.451060234227322,0.241958916279043,0,0,0 -"Tfru29843_t",0.085724874256579,0.137619397993846,0.221466477451328,1.50742892353453,0.296791201299261,0.627194488024262 -"Tfru29844_t",0,0.0652161557224222,0.139933686590781,0.252124305108176,0.703228668455697,0.772771545205909 -"Tfru29845_t",1.18428724964155,4.90155432942839,1.59351797285097,12.0203687056244,13.5177278864893,18.3312094724483 -"Tfru29846_t",9.42172449773242,10.5336716782206,8.4998972031164,9.28158545551772,9.12563600256608,7.87803170004307 -"Tfru29847_t",20.9060622431901,21.7398890107285,20.2358995417773,17.2884764804118,14.4186349206384,14.4884809439722 -"Tfru29848_t",5.08883259933316,7.52446123993983,3.9978504041515,8.12656562890653,6.41365470607915,8.81804790282783 -"Tfru29849_t",9.60118591673685,10.1588137428185,9.7713694293677,11.5112754160819,12.0874961983699,14.7675793089349 -"Tfru29850_t",8.09116333659432,8.01463789136292,8.59846624203108,7.65707025527303,11.1752834505613,13.6029230763295 -"Tfru29851_t",0,0,0,0,0,0 -"Tfru29852_t",0,0,0,0,0,0 -"Tfru29853_t",0,0,0,0,0,0 -"Tfru29854_t",0.542002430783529,0,0.466746554628603,3.36382621266907,0,0.396548773073403 -"Tfru29855_t",0,0,0,1.09998536490234,1.84085681818529,0.466823239187679 -"Tfru29856_t",0,0,0,0,0,0 -"Tfru29857_t",0,0,0,0,0,0 -"Tfru29858_t",437.524630286593,531.81802065916,444.257411287415,293.557438811499,392.593655248067,474.288161223289 -"Tfru29859_t",0.334702696300587,1.0074726845167,0.792632346256746,7.01076329682276,14.9193744318463,18.6721546285311 -"Tfru29860_t",0,0,0,0,0,0 -"Tfru29861_t",0,0,0,0.0655840330771959,0,0.0463887243972662 -"Tfru29862_t",64.9171093233912,57.6807253657678,52.0171676790641,34.113182494182,23.7371640543273,22.858906547 -"Tfru29863_t",0.0931378899905182,0,0,0.192680363253403,0,0.204429245542276 -"Tfru29864_t",0,0,0,0,0,0 -"Tfru29865_t",1.41939390532541,2.27864008505122,1.90986578583511,1.83524485379693,2.91776777623667,1.68753068161121 -"Tfru29866_t",3.16357067340179,3.73846837437258,4.38917523651796,5.72659744886918,5.78059850229315,6.04363558962291 -"Tfru29867_t",0,0,0,13.2696883141664,9.6296712745882,4.06998369120609 -"Tfru29868_t",14.3134117958202,16.0500979406864,16.228234232421,14.8427391639925,16.0617909538753,16.6818698330152 -"Tfru29869_t",8.35163364711953,7.0058332011485,7.84032262094565,5.71863015945446,4.40844225564718,5.64562856988291 -"Tfru29870_t",0,0,0,0,0,0 -"Tfru29871_t",0.280971159770727,0,0.241958916279043,0.290631584706638,0.243190114776987,0 -"Tfru29872_t",0,0.0961961555163831,0.103203589111889,0,0,0.0876819683685845 -"Tfru29873_t",0.22234771090811,0.356948416499257,0.319125346128954,1.11163055623787,1.25092189166936,1.78945476336168 -"Tfru29874_t",0,0.140779759951951,0,0,0,0 -"Tfru29875_t",0,0,0,0,0,0 -"Tfru29876_t",14.0996436539418,10.8459483593694,10.624196051156,13.9767371190664,30.0008168865634,24.9298844050912 -"Tfru29877_t",0,0,0,0,0,0 -"Tfru29878_t",0,0,0,0,0,0 -"Tfru29879_t",10.611837065867,8.51791642319805,12.2933321869474,7.31779737492923,6.99802411484574,8.59586550955357 -"Tfru29880_t",0.239573317789299,0,0.206309075952758,0.0826034637141489,0.207358871630187,0 -"Tfru29881_t",0,0,0,0,0,0 -"Tfru29882_t",0,0,0,0.464699699611148,0.388844087263738,0.328690159499346 -"Tfru29883_t",0,0,0,0,0,0 -"Tfru29884_t",0,0,0,0,0,0 -"Tfru29885_t",4.40670407511442,3.69943194029655,3.48150702441934,4.22366854020969,3.49922253697397,5.11715849372634 -"Tfru29886_t",0,0,0,0,0,0 -"Tfru29887_t",13.1025358267395,20.4156483078944,16.2611930385517,20.7281645826551,29.0188277784117,29.3227808346022 -"Tfru29888_t",0,0,0,0,0,0 -"Tfru29889_t",6.48402802277474,10.1975549776333,6.24857137381627,6.22695238761073,11.8515254065968,7.24325634453558 -"Tfru29890_t",0,0,0,0,0,0 -"Tfru29891_t",0,0,0,0,0,0 -"Tfru29892_t",8.79838405376646,15.1497570392888,13.1982049400048,4.11008045129049,2.45654879453781,5.08747961400761 -"Tfru29893_t",0,0,0,0,0,0 -"Tfru29894_t",0.0597513348303325,0.0479612411216107,0.0564759687503214,0,0,0 -"Tfru29895_t",0,0,0,0,0,0 -"Tfru29896_t",6.34795903446608,10.6039071878308,4.33384819954675,8.57748969023572,4.45489856272887,8.15907873801474 -"Tfru29897_t",6.68264360681969,4.21459406356154,6.57688326976672,6.41866460087898,11.5681115960962,12.2231653063819 -"Tfru29898_t",0.420051883857237,1.34867010033969,0.36172857983717,2.17247109568212,1.09070766477479,2.15127709392322 -"Tfru29899_t",0,0,0,0,0,0 -"Tfru29900_t",0,0,0,0,0,0 -"Tfru29901_t",63.3903801717441,62.0672721153454,63.4672388400786,49.2399009606186,47.1977685556107,46.0840621133532 -"Tfru29902_t",89.572039345167,101.502697447168,85.2015749024135,84.7793598314972,73.2205610034642,78.8123415195366 -"Tfru29903_t",128.094996743074,132.196341923704,168.329097503199,143.68418969797,129.588995905473,105.890273653953 -"Tfru29904_t",0.879689809125105,0.353055000088925,1.71215816185026,2.81861763721544,1.17189376487557,1.93083957569773 -"Tfru29905_t",4.56854012654397,8.25092735102077,5.46417794315966,6.43208964884735,8.23797329890322,6.77786913493289 -"Tfru29906_t",0,0,0.0467651686925882,0,0.141009394282455,0 -"Tfru29907_t",0,0,0,0,0,0 -"Tfru29908_t",0,0.596756675909071,0,0,0,0.543938577377859 -"Tfru29909_t",0,0.354913184299919,0.190383463072194,0.228681167966539,0.57405666567094,0.323500314875672 -"Tfru29910_t",0,0,0,0,0,0 -"Tfru29911_t",0,0,0,0,0,0 -"Tfru29912_t",0,0,0,0,0,0 -"Tfru29913_t",1.91901875873865,2.22496336350457,2.57065995823369,14.020642626848,19.6667296992897,16.7502365913485 -"Tfru29914_t",0,0,0,0,0,0.78299439269271 -"Tfru29915_t",2.64924103343738,4.20573366959469,3.04186612336793,11.5702735299118,10.2421042102187,7.88234474297626 -"Tfru29916_t",6.25832468340558,7.51983896510094,6.83529816998694,7.0853247635692,5.73057096944281,8.26420972455498 -"Tfru29917_t",7.02222185337907,6.8914655828828,6.31204233272913,7.26366174761317,6.41070805613002,9.63790138827277 -"Tfru29918_t",8.78963193093338,11.9568219248177,6.05536829683367,24.1173002692464,44.3650547933356,57.7419559822689 -"Tfru29919_t",11.7885528695418,19.7949966340181,13.1855901682581,44.8510161689211,73.6520874708135,85.257986210782 -"Tfru29920_t",47.6347497157692,61.1767880566458,63.7686465486145,56.8873874539441,66.3420125997035,60.5145692105059 -"Tfru29921_t",0.4595753652705,0.368892259392695,0.712375758979108,0.0950753214740532,0.159111256714046,0 -"Tfru29922_t",0.186897389925356,0,0.0804735439014838,0.289985018333542,0.0808830303874517,0.205111434348313 -"Tfru29923_t",8.09896805769556,7.90648182846354,7.35144065328276,12.0906676924883,10.0033636790184,9.76906891456238 -"Tfru29924_t",3.15619095052952,2.1608526469531,1.1991002646536,1.34429150672043,1.76762936464422,1.01875789767477 -"Tfru29925_t",5.56769801872627,4.66770947834798,5.11427741743274,1.72773842661022,2.83787463098005,2.8062103897168 -"Tfru29926_t",0.240029647918421,0.0481667892978461,0.15502653421593,1.67590627381192,1.14264612500216,0.702457826587174 -"Tfru29927_t",9.71989386421011,8.41389014504118,9.58482262363462,8.00384087882885,8.41289941069481,9.14725028269142 -"Tfru29928_t",3.80453647116536,5.29745649394056,4.34609199434677,4.1762845462281,2.95694006470059,2.1586619902055 -"Tfru29929_t",6.76860855504553,6.55159645899613,7.02884918167012,5.97172149523994,6.03076907853357,5.97172382199404 -"Tfru29930_t",0.0910188264046018,0.0730590520227352,0,0.188296519669089,0.315119585344828,0.532741580293631 -"Tfru29931_t",30.0917364230246,21.0214471629964,23.2602974320723,7.01139815721367,9.95592978441532,13.6756001080694 -"Tfru29932_t",0,0,0,0.11839079540502,0,0.167479727047351 -"Tfru29933_t",1.87151829441343,3.3382923275735,1.79073554374836,4.94721140600878,4.4996190791039,4.41209587862612 -"Tfru29934_t",0,0,0,0,0,0 -"Tfru29935_t",3.13004384394365,3.31640188608121,3.55798603118527,2.07210357859397,2.1673276995028,5.9541414138816 -"Tfru29936_t",12.7550900065365,13.840616306204,13.4249782207609,13.4379655403017,12.3347758403147,9.5049061587182 -"Tfru29937_t",0.114925276021132,0.0922482968768599,0.890713329284412,0.35663000202716,0.596830459521087,0.420417645871256 -"Tfru29938_t",1.97271330070605,1.14664259543051,1.64022675877583,0.351817181486982,0.294388033677405,0.398154233693135 -"Tfru29939_t",0,0,0,0,0,0 -"Tfru29940_t",0,0,0,0,0,0 -"Tfru29941_t",17.4915222153318,18.6518205366128,20.0654911307852,16.244008800541,18.4547294850445,20.8775697130629 -"Tfru29942_t",6.25987566120861,5.13887845176005,6.43209159744332,11.9200784928197,11.9445265010617,10.4610305038966 -"Tfru29943_t",17.2318382261159,17.5798119326128,16.1203193965802,18.8929114469551,20.9593274818175,20.4379638183135 -"Tfru29944_t",5.41488684403642,5.56086723836745,6.1030983138404,4.69500862384381,6.06523061612519,5.12694337888269 -"Tfru29945_t",4.543206407603,5.54305078322556,4.18067023668422,3.51784565555448,3.0334885608693,3.2290049970594 -"Tfru29946_t",8.36617859964622,8.2263279979226,11.1070186340044,18.4614971118547,19.6116177622022,18.3119970769042 -"Tfru29947_t",0.113527536177632,0.729010865048482,0.782115848296583,0,0.196523903563024,2.74100942468982 -"Tfru29948_t",11.6742264522462,10.7851174778082,12.0639421487383,8.43014478660077,6.44396417923226,6.22063793733136 -"Tfru29949_t",1.03973238578524,0.667658465514699,0.716294217499346,0.430192296174677,1.79984763164156,0.760706185970021 -"Tfru29950_t",3.3920118939799,4.62486428213832,3.28116632153185,6.20019405626091,4.14243692742636,4.31751249886613 -"Tfru29951_t",48.3488290807106,53.6715652176,57.2859955007436,46.4642797607114,47.7833834091811,38.6351804622946 -"Tfru29952_t",0,0,0,0,0,0 -"Tfru29953_t",0,0,0,0,0,0 -"Tfru29954_t",5.06399489039637,6.56616818557964,7.82720265490011,3.49207100387852,5.73169406527708,6.65000647271474 -"Tfru29955_t",0.0776436014523544,0,0,0,0,0 -"Tfru29956_t",0,0,0,0,0,0.274397588510615 -"Tfru29957_t",0.115398869191549,0.185256881914793,0,0.358099631156393,0.299644962850216,1.85746059914878 -"Tfru29958_t",19.417492744344,26.4008533792911,25.2527499131609,27.668263954442,34.6419730007086,33.3418956605351 -"Tfru29959_t",14.5143785955247,13.887907211736,17.9208781544044,1.78967870582508,3.53585627406014,4.21956932446529 -"Tfru29960_t",70.8837554009088,72.3135613011085,76.391364557718,40.0192043941442,44.2502013121349,52.1644257737021 -"Tfru29961_t",0.0674962855689187,0,0.0193748569811017,0.41890176456645,0.408942348871103,0.197530990336511 -"Tfru29962_t",0,0.0503235112067049,0.107978680548409,2.14004615395552,1.03101719555826,0.733911162106002 -"Tfru29963_t",16.4424355114541,19.091720749847,19.5725025995703,16.25095959592,17.001809380999,15.8850155472528 -"Tfru29964_t",0.039966877626759,0.0320806398748737,0.103252686918317,15.6269091183224,3.56304755698709,1.57902627527326 -"Tfru29965_t",16.0124216822863,18.134859051565,21.1559273847326,35.3948293395729,40.6286231961365,40.9232121559434 -"Tfru29966_t",230.593999689904,201.13786841273,180.864289918585,149.226290434441,197.831804024668,288.461884219655 -"Tfru29967_t",12.0653200682398,15.0649319718795,23.4738759256036,5.08450681968155,1.93387883825317,7.19271976691654 -"Tfru29968_t",2.02119502563629,2.65305892934075,2.45725613249139,2.53342227970855,2.09929581671909,1.86152318183482 -"Tfru29969_t",0,0,0,0,0,0 -"Tfru29970_t",5.2440715354202,4.8991356463279,4.63677135741173,3.9186117467001,2.99052762645279,3.68277080796877 -"Tfru29971_t",4.57031620810809,4.70360114001089,4.55631032842304,10.0041558356468,8.92919442644821,7.56172857909161 -"Tfru29972_t",53.6630159993828,34.4594122553754,57.685350617205,25.2657431392105,31.0715546206033,30.3263731301952 -"Tfru29973_t",7244.87047974745,7469.90540026561,7327.6505361893,5102.12784885929,5603.39978350559,4255.33103212618 -"Tfru29974_t",0.431929957693817,0.866754563200316,0.557936112859387,0.446780688058019,0.560775148984466,0.316015731755155 -"Tfru29975_t",48.2257019523994,46.0115555728947,38.3616614922858,23.523572373628,20.0310431004287,28.0409866883077 -"Tfru29976_t",84.9125016226845,88.1161303812544,85.1154631482628,60.8875120507954,61.3919571492922,53.7922402775816 -"Tfru29977_t",0.222839195680232,0.715474854291614,0.383796901683999,0.92200364803485,0.578624755848693,0.163037293969172 -"Tfru29978_t",9.22065110906131,11.019621551556,8.82264828871145,6.78234878651978,9.93164702884358,8.99488680386015 -"Tfru29979_t",25.2874043793655,22.7785418284797,20.3245489674396,18.8910530059314,17.2664981491661,19.9401699102296 -"Tfru29980_t",1.1037859721796,1.32898148573619,1.05614183894064,1.71260495134065,1.59227396317487,1.30108520800362 -"Tfru29981_t",21.0241795928545,16.6331358726375,17.5101912747489,7.41274824014864,8.14574412199052,11.7813295556212 -"Tfru29982_t",11.8031107860711,9.47412880403916,9.56637566511523,3.59086131517705,2.10329301747204,7.87362336618888 -"Tfru29983_t",0,0,0,0,0.433465539900561,0.0916021755981784 -"Tfru29984_t",6.92178519578703,8.46839365329574,6.58562331397903,8.94971481277682,9.17982087739576,11.4353599676982 -"Tfru29985_t",0.544735872437339,1.21458042177566,0.938200927531563,1.56518090467011,2.82892477895478,1.59419463526628 -"Tfru29986_t",0.597938624707811,1.1998844309072,0.257458063941046,0.927745663636491,0.517536258493374,2.62484241251435 -"Tfru29987_t",9.12751321907078,9.95802978743054,9.40013072215438,8.47793598314972,6.77157751966607,8.14991258895208 -"Tfru29988_t",5.75174778725678,4.75672027090763,7.05445778105683,6.85094619385232,5.88348532866067,5.35587658238146 -"Tfru29989_t",19.2996811501974,24.8845054896357,16.4695548823992,32.2483235408946,29.7809300014737,16.2927133635409 -"Tfru29990_t",2.80971159770727,2.70636140536393,1.6937124139533,3.77821060118629,3.16147149210083,1.43898133372791 -"Tfru29991_t",1.05259673323662,1.05612380606084,1.47297463990077,1.70123030202202,1.70823440058698,1.01078015376189 -"Tfru29992_t",24.3334020824787,29.6321239006353,27.4085091330366,22.5860431092942,25.46586177668,22.6770870504808 -"Tfru29993_t",42.642703892421,41.8474365029517,44.0418270897869,40.5918713999289,41.2004244366867,46.124707626877 -"Tfru29994_t",1.22345208890457,1.30938844693174,0.702385591916834,2.10919523852633,1.05893948036387,2.68536669144369 -"Tfru29995_t",0,0,0.110959687066616,0,0,0.047135782075443 -"Tfru29996_t",0.267603226874348,0.63817197176957,0.456439848374977,0.274128844881024,0.461308303260614,0 -"Tfru29997_t",0,0,0,0,0,0 -"Tfru29998_t",0.154147480314582,0,0,0,0,0 -"Tfru29999_t",6.02624913078927,5.17754594843479,5.55470560961435,5.12527718641264,5.71819817168502,6.64619536379801 -"Tfru30000_t",0,0,0,0,0,0 -"Tfru30001_t",2.40564235107549,2.38152053989351,2.94630978168359,3.40075017205091,2.45232818890926,2.19029166419163 -"Tfru30002_t",0,0,0,0,0,0 -"Tfru30003_t",10.5463670410508,10.9977390156456,7.45191924128074,3.82280321557797,2.73067011925018,4.48457518046533 -"Tfru30004_t",23.5137739333127,26.9367533627629,23.0012194787765,9.68166466553987,12.0531100636344,9.18635405013797 -"Tfru30005_t",3.06567956208227,2.89247428690011,1.57474669839485,2.44785475569816,1.62931149240792,2.24296313066807 -"Tfru30006_t",4.08234567431586,3.79421255850041,4.8107125707245,3.4448390775522,2.97550258080078,3.69419157524265 -"Tfru30007_t",107.65710513598,125.894281628434,105.297449442877,86.365176413811,73.0859724878089,63.7298931464899 -"Tfru30008_t",0,0,0,0,0.879602955463537,0.495685966341756 -"Tfru30009_t",9.58243360049322,8.79796510768471,7.91281268393808,7.12842078270694,5.73757677824236,6.19452556062713 -"Tfru30010_t",0,0,0.171435345894393,1.02960715435171,1.37846150366482,1.4565180053644 -"Tfru30011_t",5.89267097733375,6.51963745187908,8.22889660293087,3.70658575566617,4.68676911246037,3.37912177244541 -"Tfru30012_t",0.521803582431351,0.942393703653511,0.898704546179303,0.809616557397062,1.01618726531812,0.286327918445859 -"Tfru30013_t",352.755941212449,315.610912825395,324.989678621218,137.471121792344,112.999047932827,122.243103335769 -"Tfru30014_t",24.1257179556084,26.262458680887,29.1431995085178,9.64023365825896,10.1261608531412,12.0415420116192 -"Tfru30015_t",0.626319906347769,0.670313171142988,0.719142305839303,0.73423476394823,0.722801633382893,1.13032167672762 -"Tfru30016_t",42.4002215053387,46.9286461246727,49.780202679786,29.4202982236575,26.5553694767529,20.5204666818471 -"Tfru30017_t",0.121577969278506,0.0487941425593231,0.0523485643758567,0.314395238159496,0.26307469000839,0.355803530109278 -"Tfru30018_t",0,0.172170651107195,0,0.517695239822121,0.247536491296405,0.0523106892139385 -"Tfru30019_t",1.97392802564491,3.10549036262429,1.69985234885888,11.3523865526246,9.08923053978988,6.06563090391885 -"Tfru30020_t",13.273014917422,11.3433684089909,12.5058579646308,9.04523281473595,10.2042662565671,9.02553852469115 -"Tfru30021_t",16.8020753542895,13.4867010033969,9.94753594552216,12.4917088001722,8.86199977629514,9.41183728591409 -"Tfru30022_t",0,0,0,0,0,0 -"Tfru30023_t",1.38860126894954,0.668762033226293,1.07621726232546,14.2198108081011,9.61505379415789,7.72123065587555 -"Tfru30024_t",0,0,0,0,0,0 -"Tfru30025_t",0,0,0,0,0,0 -"Tfru30026_t",23.5896687093336,25.0977680924141,19.3560723515519,19.5666270869383,19.2619455147865,15.3052069501444 -"Tfru30027_t",0,0,0,0,0,0 -"Tfru30028_t",13.0736609384961,13.9919664588556,12.5093457004208,12.7718761821081,9.63929924680887,8.50237138808683 -"Tfru30029_t",31.8093452670225,31.9920239448683,30.9120110352325,31.5956177406125,28.5531294389387,30.2393298343413 -"Tfru30030_t",8.31531280288816,8.80764147160615,8.34190398400003,10.9953639128401,10.2392964448245,7.40089495868629 -"Tfru30031_t",0,0,0,0,0,0 -"Tfru30032_t",735.953917059461,760.820829720739,873.59929623689,1.33919451103692,20.544151220073,45.888298089556 -"Tfru30033_t",1.28260117203894,0,1.10451474755632,0,0.555067513861158,0 -"Tfru30034_t",35.7537634823654,27.2903218737144,39.1006872199969,23.8234428247125,25.820059601283,19.2579821910322 -"Tfru30035_t",40.5386730804865,40.6534908674714,45.0131075657725,52.2801647714025,59.3406622273564,57.8629927293207 -"Tfru30036_t",101.41923386682,109.006869674919,91.1941699125177,125.902452148731,115.79195157139,87.0446719983182 -"Tfru30037_t",0,0,0,0,0,0 -"Tfru30038_t",2.17268215788226,2.40833946489231,2.0492013143485,2.67545701438684,2.68647208072607,2.49796425402767 -"Tfru30039_t",0,0,0.142975723255798,0,0,0.242944900499517 -"Tfru30040_t",0,0.0771550400651998,0,0.447419676456271,0.332786472852719,0.386793854742651 -"Tfru30041_t",0,0,0,0,0,0 -"Tfru30042_t",0,0.0602084866223076,0,0.155176506834437,0.0324615376421067,0 -"Tfru30043_t",1.12662751150535,0.893159006847478,0.484420819068186,1.72646709590632,1.13637931837367,1.39973130029129 -"Tfru30044_t",0,0,0,0,0,0 -"Tfru30045_t",0,0,0,0,0,0 -"Tfru30046_t",0,0,0,0,0,0 -"Tfru30047_t",9.73073496867584,8.13782140593083,12.5914011416941,24.1883379725431,26.1928584142399,15.2078498539491 -"Tfru30048_t",8.82240633806736,7.61005072291989,7.82422320023972,11.1688169182403,10.3714103965001,14.6437133128674 -"Tfru30049_t",0,0,0.110789764115519,0,0,0 -"Tfru30050_t",0,0,0,0,0,0 -"Tfru30051_t",0,0,0,0,0,0 -"Tfru30052_t",0,0,0,0,0,0 -"Tfru30053_t",0,0,0,0,0,0 -"Tfru30054_t",0.439844904562552,0.211833000053355,0.22726402921707,1.00092909120433,1.71315340016982,0.836697149469016 -"Tfru30055_t",12.4637363541092,9.52341939612193,10.7331732676364,11.7765908182483,12.8623633316285,11.7493837613903 -"Tfru30056_t",7.63730680820012,4.90425480050507,4.60381818574331,9.47987365978441,8.59345413609522,6.14650584499894 -"Tfru30057_t",4.0389604217042,2.5935963468071,5.56505507441799,6.47563499674477,6.99171579983837,8.56964776425458 -"Tfru30058_t",0,0,0,0.0711119834920496,0.0595039642539436,0 -"Tfru30059_t",0.283181045297014,0.303071932660605,0.325149285246894,0.488195751838678,0.326803794689074,0.276247459893832 -"Tfru30060_t",11.9405611654849,9.92675962178961,13.220536928059,14.1155482359041,9.96585683550566,13.4162313326611 -"Tfru30061_t",48.6073706149149,53.1480472343432,54.3828844402123,18.5080681044444,13.8305375867418,10.9208990124316 -"Tfru30062_t",4.74123242400686,4.66090808297484,4.17467352760716,3.80216881679305,3.13540990085333,3.23500314875672 -"Tfru30063_t",42.1283707563563,41.6268410735345,49.7509395729128,59.5677558493483,56.5078262297787,32.3097125333672 -"Tfru30064_t",2.4554181102302,0.703898799759756,1.20827918108449,0.7256688419815,0.303606865629725,0.256639080694688 -"Tfru30065_t",0,0,0,0,0.383377035070224,0.216045904486389 -"Tfru30066_t",11.5876381753721,10.4638197440148,8.73137951331099,11.0496374694177,15.3576653948174,13.1143123336452 -"Tfru30067_t",47.9227784354446,147.793062958703,40.9346429838829,643.713721884562,788.768883979549,595.203223676678 -"Tfru30068_t",37.2370318662632,102.608279255574,36.7594448699394,524.68112732474,687.833662470586,434.906828717451 -"Tfru30069_t",2.17000973210381,2.36390515742197,1.96881791608791,10.3813655679275,21.6665790727095,17.2941358367576 -"Tfru30070_t",5.68159475210708,6.42013015591777,7.55283574446618,6.04811388423649,6.3976724482303,6.98191421534034 -"Tfru30071_t",0.738552762825912,0.296411011063669,0.477004720664399,2.48282410935099,3.51583423077587,1.21579239217011 -"Tfru30072_t",2.70330420304163,3.3382923275735,1.9698090981232,26.4568262147426,16.9185677374307,7.1506381481182 -"Tfru30073_t",6.99610508120102,8.04915012852751,7.8372452196824,5.58091828666959,4.17005851212185,5.55843731319121 -"Tfru30074_t",26.0339848896134,25.6395524570073,31.6413131374052,12.7960934866551,14.8623901573707,11.8877478345522 -"Tfru30075_t",14.9496505358261,17.0093215491644,14.5306083121211,9.05914713587055,9.19933126813274,9.13826913236425 -"Tfru30076_t",0,0,0,0,0,0 -"Tfru30077_t",0,0,0,0,0,0 -"Tfru30078_t",0,0,0,0,0,0 -"Tfru30079_t",5.97028058274246,4.79222878293292,2.57065995823369,0.441110882372003,0.369105808722432,0.936016139487986 -"Tfru30080_t",4.93189670172607,2.87908226890394,4.2953760647776,1.21739541052233,1.26121411092481,1.10710914964123 -"Tfru30081_t",0,0,0,0.0781464422907236,0.0653901477682725,0.055274334376239 -"Tfru30082_t",0,0,0,0,0,0 -"Tfru30083_t",67.208301417158,56.9696852729698,40.1643457612306,13.4843033525097,10.7817079506473,17.5917240192736 -"Tfru30084_t",1.71449748513158,1.72024247492308,1.10733238725664,15.2959699593945,16.8799995738955,3.60636830613951 -"Tfru30085_t",0.0535780464103619,0,0.0922776989380534,0.554201810122989,0.881098878857182,0.43119621051668 -"Tfru30086_t",29.6676644827169,27.5128700469297,26.2098193847732,41.5128191083485,41.0521589637138,44.1845972923332 -"Tfru30087_t",0,0,0,0,0,0 -"Tfru30088_t",31.5895462411397,23.0461978810086,51.2202948284932,17.5782326828439,15.3612444359255,9.62584949972636 -"Tfru30089_t",166.905571550354,145.310251961378,301.227074005997,59.7910186510742,50.8353424880284,22.4374665295405 -"Tfru30090_t",0.500434113307207,1.05443306430132,0.969637295170373,0.129410042929687,0.270714237968425,0.366135873872689 -"Tfru30091_t",14.2870234758091,14.1559667497111,11.2237405167177,9.09708189083838,7.21759642350459,7.74139241058792 -"Tfru30092_t",0.119248228206455,0.335013864527248,0.154036300853301,0.493393009665207,0.774100542778414,0.872463588734957 -"Tfru30093_t",26.0504279902879,23.4425489544024,27.090831408406,10.8157359270011,11.1567379157936,10.7497905061154 -"Tfru30094_t",32.2175716744871,31.179812392562,35.2948759938209,11.2841945261158,11.4718443706086,13.7252075340455 -"Tfru30095_t",40.3952334301733,46.2871097154912,56.4649490477533,50.2620490429591,45.8578600056298,39.1920067882478 -"Tfru30096_t",19.9076027955357,9.15966877214141,17.6985247606469,4.39418739492808,4.1460204171038,3.86902992106754 -"Tfru30097_t",0.782802616208045,0.879676733356116,0.606700935246837,1.42510217234459,1.32798299351384,2.46272602733343 -"Tfru30098_t",0,0,0,0,0,0 -"Tfru30099_t",0.0240029647918421,0.0192667157191385,0,0.0993129643740396,0.145427688636638,0.0351228913293587 -"Tfru30100_t",0.347150317237386,1.11460338871049,1.49474619767425,0.359086131517705,1.80282258640461,12.6993925261111 -"Tfru30101_t",0.349751776733753,1.37562104322741,0.240951593563477,0.615020959643563,1.45306599803469,6.72993785775909 -"Tfru30102_t",0,0,0,0.136098424161761,0,0.0481323882743756 -"Tfru30103_t",15.5694906757895,9.05816948410815,28.7991748724544,48.2558521734891,19.7047967305859,6.75648440574583 -"Tfru30104_t",1.72202822079102,1.57970143524415,3.38955038207597,19.4663588661414,6.9200583904696,5.12958771611058 -"Tfru30105_t",0,0,0,0,0,0.0847793928639692 -"Tfru30106_t",0,0,0,0,0,0 -"Tfru30107_t",66.1703353721054,25.2053411731705,78.3506963441775,145.270221647275,49.4716173235987,38.7608842224366 -"Tfru30108_t",0,0,0,0,0,0 -"Tfru30109_t",0,0,0,0,0,0 -"Tfru30110_t",0,0,0,0,0,0 -"Tfru30111_t",0.928291456038093,1.30396280419583,0.399700088217867,2.40052054771505,1.6069357860402,1.01875789767477 -"Tfru30112_t",6.95177030787573,8.22821169211453,9.23346445026155,12.6752871781734,9.58639742766058,5.77581908606915 -"Tfru30113_t",8.68764024182346,9.27390420809276,12.0319101182513,8.5231275395631,8.75977015775059,10.8776118669282 -"Tfru30114_t",0,0,0,0,0,0 -"Tfru30115_t",27.4319597621053,41.5807181081406,22.0411875177751,12.5407952462116,19.1854312268451,20.7870173173755 -"Tfru30116_t",12.6922151956863,11.1580619812277,11.1901646999988,17.817388842285,17.7861201929701,14.813521612832 -"Tfru30117_t",17.3529630708236,18.2402103734467,14.8842415637917,16.9523974023719,15.7944006101267,17.9860871787023 -"Tfru30118_t",0,0,0,0.736430879892243,0.308109509823386,0.781335506267513 -"Tfru30119_t",0,0,0,0,0,0 -"Tfru30120_t",0,0.0630809214377779,0.033838033661101,0.121934766829679,0.0680204343482872,0.0574977173305685 -"Tfru30121_t",0,0,0,0,0,0 -"Tfru30122_t",0.567637680888158,0.227815895327651,0.244411202592682,0.880731525276534,0,0.207652229143168 -"Tfru30123_t",9.22065110906131,7.56571031897876,8.99910125448568,12.0810587759884,15.0748213830661,12.8926710855329 -"Tfru30124_t",2.24884373766781,1.80510338477588,2.90489490500213,1.66154577107619,1.18177376043157,1.7628602244659 -"Tfru30125_t",0,0,0,0,0,0 -"Tfru30126_t",0,0,0,0,0,0 -"Tfru30127_t",0.306607214494334,0.246107682543739,0.52807091947032,0.158574532531541,0.530757987724957,0.224325035862692 -"Tfru30128_t",19.6896105301009,20.8256455393761,22.5709469625186,18.6117756194772,24.5849437557139,16.0033323115459 -"Tfru30129_t",0,0.143988092695427,0.30590154743101,0.367436971785559,0,0 -"Tfru30130_t",0,0,0,0,0,0 -"Tfru30131_t",0,0,0,0,0,0 -"Tfru30132_t",0,0,0,0,0,0 -"Tfru30133_t",6.22172351547999,6.07778864152184,5.952205361888,4.19058626236254,5.16528180740925,4.79422919872978 -"Tfru30134_t",0,0,0,0,0,0 -"Tfru30135_t",22.4225925966978,20.4568190440905,22.4591833286512,6.21365184180938,5.89432578721949,7.91974576169964 -"Tfru30136_t",0,0,0,0,0,0 -"Tfru30137_t",0,0,0,0,0,0 -"Tfru30138_t",0,0.766289829738462,0.82211040872084,0,0,0 -"Tfru30139_t",16.4215754356584,20.6560319301133,19.1427281820862,22.6827732993747,21.7534862025007,18.7125501906047 -"Tfru30140_t",31.5387793195135,28.0487535818155,24.7081049882133,19.5161523014101,24.3023679017372,30.1811822004606 -"Tfru30141_t",5.23701050003828,6.83092648224,6.01315041807243,5.75563770804093,5.19384602273708,5.18860894638253 -"Tfru30142_t",0.807791989782145,0,0.695631802872826,1.67113141644349,0.699171498140063,0.591010121455652 -"Tfru30143_t",9.21576470147834,7.71893857110157,8.39624366553684,7.04585220221227,6.93613777281263,7.81749568538985 -"Tfru30144_t",45.1753912827595,43.5136956902051,62.3811173530515,30.3326152982031,41.9819553988785,51.143568647986 -"Tfru30145_t",0,0,0,0,0,0 -"Tfru30146_t",35.0866867692516,38.0800969507678,47.2374968963833,189.64394741131,163.392285468223,114.252699441973 -"Tfru30147_t",0,0,0,0,0,0 -"Tfru30148_t",0.250179799795853,0.562280565954606,0.129265722395653,1.75971452657991,1.1260035451318,1.02502779936782 -"Tfru30149_t",0,0.0377990498974129,0,0,0,0 -"Tfru30150_t",1.62391192212849,1.91177462677018,1.39843523132926,2.46362701572199,2.99850904405439,3.16830205290607 -"Tfru30151_t",1.64594500671768,1.45598131584053,1.04136176522496,2.18897527433784,1.71536058167966,2.21185741078528 -"Tfru30152_t",0,0,0,0.100287182720467,0.0419583637151293,0.106402296294941 -"Tfru30153_t",0,0,0.441132414435573,0,0,0 -"Tfru30154_t",0,0,0,0,0.773551535301267,0.326941807587116 -"Tfru30155_t",5.17783524015084,4.20810008195358,4.62611280839523,2.8118269959522,3.41721456349573,3.12534202507005 -"Tfru30156_t",15.8629865504999,16.094401499522,17.2668023003845,14.0455835189116,16.9153051737479,14.0199758818475 -"Tfru30157_t",13.8686964028874,9.6104757743921,10.9120022896248,4.64423749670761,4.66335818668554,5.69391290553143 -"Tfru30158_t",0.427171407312445,0.228588152599948,0.367859572715766,0.294572351956897,0.123243803929354,0.104178067502335 -"Tfru30159_t",4.95885426468826,4.36147630565112,4.08861189140914,2.91936461209402,3.42451386114532,3.51228913293587 -"Tfru30160_t",5.10317219355333,4.66937138028745,5.13475075821949,14.4914979031075,12.6294674782539,17.2371719997805 -"Tfru30161_t",13.7766165432994,14.0549185958949,13.4437072640377,17.1421547393667,13.8164419589217,17.02980033694 -"Tfru30162_t",4.40449762188078,3.88314983767767,3.60640440576808,1.19499914158707,1.18741989002842,1.37352088997492 -"Tfru30163_t",0.176863951097784,0.141965273719968,0.228460155686633,0.274417401559846,0.535786221292877,0.129400125950269 -"Tfru30164_t",0,0,0,0,0,0 -"Tfru30165_t",7.84712310502531,7.41027527659172,9.54009441328799,7.16199262312786,8.78958557693967,3.71492119829756 -"Tfru30166_t",0,0,0,0.165837488220009,0,0 -"Tfru30167_t",13.8993402153857,8.81443438521828,10.1178195091567,6.91060275408936,7.04539990652817,6.51731895782433 -"Tfru30168_t",1.49484656176953,0.71993065854432,0.772374191823138,0.309248554545497,0,0 -"Tfru30169_t",24.6105087139593,13.1509325136858,14.8293708248599,1.58653490805001,1.14652534609798,1.17319201328356 -"Tfru30170_t",0,0,0,0,0,0 -"Tfru30171_t",11.2617916473281,9.61109277977053,9.97679750244273,13.188807576252,10.4757233339951,10.0863310809079 -"Tfru30172_t",0,0,0,0,0.352979826787957,0 -"Tfru30173_t",18.8667371562996,16.8583762542462,10.7292375375432,18.4107719973061,15.7135850009927,15.8871552941061 -"Tfru30174_t",0,0,0,0,0,0 -"Tfru30175_t",0,0.370513763829586,0,0,0,0 -"Tfru30176_t",48.8045893834128,49.9080707095129,51.5268048976688,49.3885515277373,48.5848797918265,36.5916093570702 -"Tfru30177_t",0.129176152817454,0.102203732133969,0.0537486745671872,0,0.162066517797145,0.228324887913736 -"Tfru30178_t",3.79172363425433,3.23376469757049,4.48972003182947,7.72161799875731,6.35861544109419,6.37190676620418 -"Tfru30179_t",0.162182194539474,0.1301805116158,0.209495316508013,1.63564426122785,1.78977126459183,1.24591337485901 -"Tfru30180_t",0,0,0.0273518774924136,0.0657080104554137,0,0.0464764157477336 -"Tfru30181_t",3.20736200667951,2.57448746548434,4.74874759866612,7.3337269405478,7.402883011644,5.26960995162515 -"Tfru30182_t",30.9566772966748,31.792471347958,33.390330446508,44.3119414553523,46.6415105615024,64.8967319010514 -"Tfru30183_t",7.54931957162777,7.6134602438531,8.50145510216389,17.6200420663619,18.2622327896239,19.5441895300464 -"Tfru30184_t",2.77599505853479,3.98737247056952,3.64874045748797,2.41805478475922,8.09336701977812,2.77928966171447 -"Tfru30185_t",0.150018529949013,0.240833946489231,0.129188778513275,0.465529520503311,0.649230752842134,0.548795177021229 -"Tfru30186_t",5.65395366713472,4.73563751399453,5.08060624204364,4.70410712744628,5.42561237781166,7.14919130387275 -"Tfru30187_t",32.2365399239275,29.3481367349667,35.5719799441203,34.9327578176128,31.7670117204616,33.6934713333964 -"Tfru30188_t",0,0,0,0,0,0 -"Tfru30189_t",0.958293271157195,3.33321507688517,0.550157535874022,1.98248312913957,0.82943548652075,3.73931922898115 -"Tfru30190_t",3.58279547995879,3.27250833170661,3.72367655714733,5.62286636529489,6.52285956384921,9.03897938623202 -"Tfru30191_t",1.46398779896624,0.903934383605691,0.290934514614345,0.232972771654919,0.779773129418971,1.81264251498701 -"Tfru30192_t",0.591622371629911,0.652965277453196,0.318423045631311,0.688459150040107,0.576077991958514,0.811598501228579 -"Tfru30193_t",16.3061285862291,17.3107477100846,17.3422646505119,20.8308498619967,21.723098392056,23.8603183941395 -"Tfru30194_t",11.8549242662558,17.384485689589,15.2151777136394,13.913247722686,21.9029490348261,21.6837388804046 -"Tfru30195_t",0.034458727141693,0.110637415942551,0.0296742067134676,0.249504473663245,0.0596504055113364,0.226901369334454 -"Tfru30196_t",3.45426684940785,3.08656074166182,2.52564563113617,2.08988685697892,1.86156467223005,2.28884629299157 -"Tfru30197_t",2.60273112200698,3.36587202322298,3.86009844232436,3.58962521833878,3.25397582147383,2.64479603383725 -"Tfru30198_t",0,0,0,0.714237072553024,0.996080059155056,0.50519227254557 -"Tfru30199_t",0.237485164018226,0.476561872911552,0.255638572323088,0.736951325743756,0.82220601349336,0.868764096485904 -"Tfru30200_t",23.5338514734348,16.364156754936,24.272341187771,33.5423876010854,30.7908787015683,18.3193907951582 -"Tfru30201_t",0.987892483201404,1.2053025355811,0.850725728685723,14.7556362284336,11.3209230806038,4.91489189580631 -"Tfru30202_t",20.5953416738867,21.2013928516004,21.8439973419676,13.1190775307119,12.4882502707362,11.7481693296955 -"Tfru30203_t",18.0308439811533,18.0108566659037,13.9170614182186,9.53262356769895,8.20776303116161,9.28327612640045 -"Tfru30204_t",1.76245545674365,2.12203337466035,2.52957048837182,1.51921055642106,1.27122105451607,4.62062512680811 -"Tfru30205_t",4.33788520334496,6.96387315149583,3.98461774691546,4.03832837063113,3.25397582147383,4.97221654361403 -"Tfru30206_t",2.87862427169973,3.40511837777379,3.58793000740204,3.76117628828644,3.14721778834925,2.82661681798491 -"Tfru30207_t",0,0,0,0,0,0 -"Tfru30208_t",0,0,0,0,0,0 -"Tfru30209_t",5.7424814502002,5.46296749504685,4.9451502053689,2.41996780278514,2.20902818182235,4.66823239187679 -"Tfru30210_t",20.2480099703638,21.8048459336357,23.8264334024483,16.2610111952254,22.5325834938504,23.3714449040418 -"Tfru30211_t",0.66323981661669,0.887282960749797,0.951917315360973,0.228681167966539,0.193936872945454,0.323500314875672 -"Tfru30212_t",20.0586834577074,21.1109325971381,22.1168055383009,10.5824261558239,15.6156563088861,17.4860175251393 -"Tfru30213_t",35.9371176932559,33.9531953732082,38.7602573626364,34.7351619786481,42.424907764966,36.8100708918139 -"Tfru30214_t",0.72894036244206,2.0478721697132,1.88318566509589,132.893025809622,102.998135227467,93.3308934456928 -"Tfru30215_t",0,0,0,0,0,0 -"Tfru30216_t",0,0.54381858884665,0,0.350398563819696,0,0.495685966341756 -"Tfru30217_t",8.12364492365412,9.14487391150145,8.95790115162802,15.576207855834,12.6906237725368,15.8011592478188 -"Tfru30218_t",0,0,0,0,0,0 -"Tfru30219_t",19.8843534565527,27.7436976110537,18.0689203481103,56.0257792729637,42.0233930861921,29.066487633287 -"Tfru30220_t",5.56125029332117,5.50865252251423,4.58529185709088,7.46595700487938,7.88586762325432,7.4450635846035 -"Tfru30221_t",13.0947348408936,10.6473955289976,11.0839402115054,16.0076817576577,18.9880281721926,15.0552069615217 -"Tfru30222_t",0,0,0,0,0,0 -"Tfru30223_t",0.476789879520133,0.2296260102735,0.410588626375902,0.591819594737466,0.495213468683217,0.418604266694967 -"Tfru30224_t",0,0,0,0,0,0 -"Tfru30225_t",14.7018159350033,13.7395766472106,15.1021682082018,25.3092882646967,32.1758761108562,31.1935178618867 -"Tfru30226_t",1.05012970964309,1.68583762542461,3.39120543597346,5.43117773920529,9.31646130328463,8.45144572612693 -"Tfru30227_t",5.16986933978138,3.11231561616852,3.3390330446508,6.35030012584003,7.55105306382544,8.74695082144606 -"Tfru30228_t",31.7877101297369,35.5392796711135,24.9299426644536,29.3577175092178,17.6871513206722,20.7652229143168 -"Tfru30229_t",41.4842672219774,46.7549104683715,39.8023781196254,39.5796312358771,32.4630015220455,26.0550873672131 -"Tfru30230_t",0,0.388665734968211,0.416978190014028,0.751286834241654,1.0477499181314,0.885663686259045 -"Tfru30231_t",0.200661727957279,2.1475638540441,0.518400830976835,42.4116172500999,67.329777820227,45.217926178004 -"Tfru30232_t",0,0,0,0.557639639533377,0.622150539621981,0.657380318998692 -"Tfru30233_t",0.175387007873585,0.844678559711707,1.20827918108449,1.26992047346763,1.06262402970404,0.641597701736719 -"Tfru30234_t",3.95640050927658,5.74333459563496,5.94423718369697,5.05023340880011,7.14023721763053,6.95947070178425 -"Tfru30235_t",0,0,0,0,0,0 -"Tfru30236_t",0,0,0,0,0,0 -"Tfru30237_t",2.81374467655566,4.51707689108988,3.11536575936318,2.49470365054406,3.13121817638695,0.588182390683041 -"Tfru30238_t",0,0,0,0,0,0.108595512060738 -"Tfru30239_t",0,0.0499692515872431,0.0268046372609981,0.643933633399664,1.02375920122124,0.797064503120867 -"Tfru30240_t",0,0,0,0.216705346202705,0.181331282589324,1.22623560750878 -"Tfru30241_t",0.609212304361475,0.195601174813588,0.524624481272182,2.26857025219887,0.63275281495274,1.20344932219884 -"Tfru30242_t",0,0,0,0,0,0 -"Tfru30243_t",0,0,0,0,0,0 -"Tfru30244_t",0,0,0,0,0,0 -"Tfru30245_t",0,0,0,0,0,0 -"Tfru30246_t",0,0,0,0,0,0 -"Tfru30247_t",0,0,0,0,0.0574812998563787,0 -"Tfru30248_t",10.3229533894985,7.67973983210414,9.46782097076308,11.0251280380271,13.1480577638519,11.2982727353182 -"Tfru30249_t",0,0,0.404166010991251,0,0,0 -"Tfru30250_t",0,0,0,0,0,0 -"Tfru30251_t",0,0,0,0,0,0 -"Tfru30252_t",0.773398175111139,0.931187641201168,1.24877530438609,1.29998270397549,2.00820743802032,1.76826984540787 -"Tfru30253_t",0,0,0,0,0,0 -"Tfru30254_t",0,0.106867678315348,0,0,0,0.0487044848069554 -"Tfru30255_t",0.131677706538319,0.528475744647215,0.113394539133909,0,0,0 -"Tfru30256_t",0.658044726669301,1.40853274186913,0.944461043961278,1.36133958998357,2.65794731189678,1.60483184925268 -"Tfru30257_t",0,0.514759580264575,0,0,0,0.46919892995617 -"Tfru30258_t",13.8443262691833,15.1613399118412,11.3305886275005,7.61530491383716,4.94171757503139,3.94167859387348 -"Tfru30259_t",12.0932134715587,12.1981626909705,11.0592177275058,17.3797687654569,16.7658672886825,17.3824755177782 -"Tfru30260_t",0,0,0,0,0,0.0265871611031601 -"Tfru30261_t",1.81426128600606,1.17310836562241,1.04156999593186,0.834062088324268,1.0032504015125,1.03240652377839 -"Tfru30262_t",11.9782537203161,11.6159650577644,10.7351707564579,11.1566902720191,11.9626001943041,14.6326497264086 -"Tfru30263_t",9.35759147206717,10.6825354482352,8.95367771874182,10.1095189601049,13.1388877109834,12.9320051614904 -"Tfru30264_t",0,0.0512412652104746,0.0549739483035212,0.0660325560997604,0.276268405464738,0 -"Tfru30265_t",9.75801109505016,9.42355696244612,10.8978120241325,12.4591808754183,21.5106290814628,17.2905340709411 -"Tfru30266_t",5.2169184718886,3.17673899437615,3.71798112038204,4.27981457821744,3.1140832684505,3.6852712529734 -"Tfru30267_t",4.33185705788045,3.92098273823388,4.36534764477111,3.71810741553933,2.95163163990982,2.96704622310545 -"Tfru30268_t",43.1639522032609,35.5769871296505,43.9063655526495,71.3169821754957,90.014724518195,99.6157866151639 -"Tfru30269_t",0.383026033912374,0.461171386894271,0.494765534731691,1.18858600979569,0.939312578580109,0.700589587686676 -"Tfru30270_t",1.17497030449515,1.41468891643949,1.01182819534819,1.82305266770431,0,0.429825593191227 -"Tfru30271_t",52.0649318565277,54.7974277514619,51.9778178705695,44.7203373626702,45.7950993924331,44.3851894541484 -"Tfru30272_t",5.00250825765708,3.6329960169831,5.67551457967582,3.44967054890922,3.57383733889659,4.00859085824202 -"Tfru30273_t",2.1224486552272,2.01340276807717,1.7612875269977,3.87192827342518,5.07694273605167,4.94092120790817 -"Tfru30274_t",1.87732685522788,0.376723491714998,1.616664043965,1.94187360507899,4.46844853352799,3.4338022249373 -"Tfru30275_t",4.6725408192973,5.35794023971501,5.58400531871226,16.0777656570345,16.42458004466,15.9069621344088 -"Tfru30276_t",7.39594739071434,10.0465267068194,7.67550485433272,4.51167812195835,3.28279206854714,7.90859686253618 -"Tfru30277_t",16.8852539451523,15.2059215520973,14.1109960847371,15.2933361290097,12.0589791319985,12.6581509345411 -"Tfru30278_t",13.6274896882717,12.0572349984286,10.0017118848987,9.45074983559409,10.5217267815448,11.2733151202296 -"Tfru30279_t",19.6275104931225,19.4260545121293,18.8467819680841,15.5711229463088,11.576084105811,12.9199471034081 -"Tfru30280_t",2.45003401175365,1.83721368235069,1.99880719480247,1.90070379821766,1.53463600825309,2.66521556422896 -"Tfru30281_t",0.573232290328299,0.306748316984009,0.493640215092422,0.724706051630122,0.55128009339135,0.605796647265284 -"Tfru30282_t",5.99650039146021,7.05311571909097,6.23758116468335,6.32549887930058,5.49850271523685,5.95103406092844 -"Tfru30283_t",0.167018641692738,0.134062634228598,0.287656922335721,26.7779737439943,21.97316965484,22.4842365965278 -"Tfru30284_t",0,0,0,0,0,0 -"Tfru30285_t",3.80534807675546,2.58455942573809,1.51245399235053,7.87236912721046,6.08060022174097,7.28157503169632 -"Tfru30286_t",4.52180498203258,5.49210557857877,5.27734330357344,16.4935482618359,12.2048024811909,12.3626607582799 -"Tfru30287_t",2.00458599671567,2.34042533681508,3.13864277515982,5.08952013738977,5.99376590910222,3.59990589004815 -"Tfru30288_t",2.87829984655923,3.89872512946164,1.85899056019102,2.79118342057659,2.80267494160545,5.39629004899676 -"Tfru30289_t",2.25747653512527,1.9414636761128,3.3326241520507,5.83773423023985,10.0487462397677,8.61218688546175 -"Tfru30290_t",0.824875300625994,1.55341533460576,0.983552029768739,2.03464060320682,5.18992317830902,10.3989225083902 -"Tfru30291_t",4.87855534401122,4.51326608381393,4.20117838787264,4.4475786210815,3.57843722038972,4.83976849026596 -"Tfru30292_t",22.29717033963,21.8095309917151,25.7065995823369,19.030783782335,21.9354309183617,19.7009111263662 -"Tfru30293_t",15.0816500852997,16.2306707554178,16.3547496202976,11.4401403442835,14.3107034030734,20.8425402336786 -"Tfru30294_t",12.3485132121887,9.83066759886161,14.4691431934868,10.4697402201548,14.2799477396217,14.5886949226463 -"Tfru30295_t",5.56599856875197,5.37579248182802,6.19605108474117,6.01481359106171,6.77591977757565,7.54863110175821 -"Tfru30296_t",4.56006220471322,5.49041063812609,4.07794223616016,4.17259584139363,4.09869268600128,3.2079885086836 -"Tfru30297_t",8.63905238573122,12.7366536233549,10.9315667358977,27.3553548249584,31.8170756356128,29.8618286459736 -"Tfru30298_t",5.7007041380625,6.86376747494307,8.26808182484959,14.7417681492715,18.0486149290113,13.829638460935 -"Tfru30299_t",0.447458731139534,0.22447904466373,0.337163789462075,1.6199518156884,1.74280851894773,1.10489787970186 -"Tfru30300_t",1.56541074729405,1.31635945907157,1.86160227422856,3.08425355198881,2.51627322840678,2.29062334756687 -"Tfru30301_t",0.376728146957163,1.81435439507582,1.45989112938768,0.584521371035547,1.79339077915137,2.20502456776243 -"Tfru30302_t",4.80185163507487,5.19807301389446,5.76641259939693,6.33400067750003,6.86339380036572,7.15534519216353 -"Tfru30303_t",2.27824750566637,2.92592835327933,2.50144509446721,2.76898010839483,1.23243803929354,2.29191748505137 -"Tfru30304_t",3.54973422977947,3.40078103447764,3.05686123806059,2.92163309551071,2.64293845773082,2.45748535425772 -"Tfru30305_t",0.455958625625223,0.1829945862062,0.588974621173139,0.117908879005814,0.0986619325893067,0.750590961244775 -"Tfru30306_t",19.1916202255042,16.3864172325707,16.4458906398534,4.8655567652455,9.771177288016,12.871182740798 -"Tfru30307_t",0.541536592854195,0.492638412242689,0.559614476757116,1.38171775746005,1.15617199818556,1.42634861651242 -"Tfru30308_t",16.175385043696,15.7707390765528,15.8985545170369,13.0523465022837,13.1940443319531,25.2799842834295 -"Tfru30309_t",0,0,0,0,0,0.332243566629069 -"Tfru30310_t",7.16872749601209,8.03685638072665,8.67332278876147,3.12541680902082,3.84593675872632,3.81447479881611 -"Tfru30311_t",0,0,0,0.0399167863239709,0.0334009390529715,0.056467670947522 -"Tfru30312_t",0,0,0,0,0,0.0451616898063025 -"Tfru30313_t",1.94109003630886,2.11898259757623,2.8082440578856,2.73064758791837,2.68812733154599,3.46522056322462 -"Tfru30314_t",16.4593385230587,12.4758382147173,16.6793254080516,13.6037089482941,11.6935451726329,10.9634072555588 -"Tfru30315_t",14.9130846339848,10.5738927985213,13.0564753669038,10.026789672379,15.4893396181035,13.6386967070365 -"Tfru30316_t",0,0.0539468040135877,0.115753145547894,0.208557225185483,0.0581710754546552,0.0491720478611022 -"Tfru30317_t",0,0.0535611636354127,0.0574628403236171,0.138044231655734,0.173265713228719,0.390564319786356 -"Tfru30318_t",0,0,0,0.59519756046075,0,0 -"Tfru30319_t",47.6536736591065,42.1209406028327,45.4634480707712,45.406432150774,48.2504983575063,45.7546707372213 -"Tfru30320_t",0,0,0,0,0,0 -"Tfru30321_t",979.943825251756,742.62214385793,1241.31206146733,3962.14728437821,3469.55488807473,1650.22015052844 -"Tfru30322_t",30.7202124011147,19.6261693703691,34.0276894161658,62.25588811429,61.3183911034862,41.2825028679457 -"Tfru30323_t",9.50517405756948,14.1032359064093,10.99654882705,29.3966374547157,45.8720480728138,48.6100815998324 -"Tfru30324_t",0,0,0,0,0,0 -"Tfru30325_t",0,0.0456248342469449,0,0,0,0 -"Tfru30326_t",13.7946032864359,14.5640410243783,18.5145101514291,24.8098770098608,29.3652063593212,31.0962284920432 -"Tfru30327_t",0,0,0,0,0,0 -"Tfru30328_t",0,0.0455324139209889,0,0,0,0.0415024036639958 -"Tfru30329_t",0.170868562924978,0.548611566239875,0.39238354423015,0.235657881565518,0.246487607858709,0.291698589006538 -"Tfru30330_t",0.215964978846909,0,0,0,0,0.316015731755155 -"Tfru30331_t",0,0,0,0,0,0 -"Tfru30332_t",25.261861546659,23.6253049045519,24.6380165567415,11.4852318065432,13.4240943356897,14.4851224905519 -"Tfru30333_t",0,0,0,0,0,0 -"Tfru30334_t",12.3652325727249,10.9216985772915,11.6761792014119,11.029025452601,13.6915251472645,15.4623223052528 -"Tfru30335_t",30.8170765976779,27.4847461206667,28.252545003396,33.5240089456918,39.0104605537143,42.4720650364259 -"Tfru30336_t",14.0155515048121,12.5813745786872,9.49849972721491,18.357702447225,22.2520155367018,19.8411397465207 -"Tfru30337_t",15.8015737027581,14.085826662338,11.8296870154689,23.5727487508797,31.9583531266714,19.5781901337328 -"Tfru30338_t",11.7786432002408,13.2107321310273,13.926344718248,26.0795317587,27.4433455631094,23.05813157564 -"Tfru30339_t",14.8024466026971,17.3013320445432,18.1143832870545,13.833973592288,14.8349728748348,17.5750171064604 -"Tfru30340_t",19.5054642605805,24.3090231934955,22.2488861732842,19.8221395288307,21.6216319154268,21.9070987161224 -"Tfru30341_t",8.37032090318809,8.62951618133258,8.33232194871725,12.7885867058435,13.9578677393483,10.6187351985241 -"Tfru30342_t",0.572612110418824,0.196982001023324,0.387440543155683,0.0423071294193207,0.389412019231504,0.269321099531353 -"Tfru30343_t",14.8532240848431,13.3074576956595,14.2768428610723,4.96964793535015,5.85693470143528,7.12925381796084 -"Tfru30344_t",8.80590696279027,10.2368935326989,8.89067834780513,7.74760776291453,9.11113230012672,9.18273182948294 -"Tfru30345_t",218.544476636098,223.52084879744,210.460264632424,97.2294756108968,73.7308211618932,85.1054674518629 -"Tfru30346_t",183.354267041025,185.138774699588,187.280555216468,67.4638838967608,74.5830948149339,61.6230676922553 -"Tfru30347_t",11.7497030449515,16.5047040251274,12.6478524418524,15.7997897867707,11.1867452797355,13.324593388928 -"Tfru30348_t",19.3223866574329,20.9043865552652,20.6185290507187,27.3731358055947,27.9948300625529,20.8981203409684 -"Tfru30349_t",15.9276179009064,15.2916126618441,17.7502500143146,24.5513462114261,28.3827273361468,22.1639806808871 -"Tfru30350_t",11.7601698203859,11.9282988004083,11.5082902722439,14.7743516611418,15.1386929631929,18.0061806719676 -"Tfru30351_t",80.9368264017603,88.3449403706837,79.2777967657072,68.8832298630915,45.9845391769161,28.7515131766244 -"Tfru30352_t",15.942607022305,15.9907048524646,15.419437410173,12.5395552980957,10.4696915090475,12.6151843660074 -"Tfru30353_t",19.4904074062054,11.8682968800845,13.3116117347498,4.86633525313688,4.65368603523341,14.7516143547201 -"Tfru30354_t",69.147002419576,57.4740950452453,73.7926302867826,66.0431213087363,64.323785358513,36.5953510043203 -"Tfru30355_t",3.0735503696871,2.19440224926901,2.99970041816189,6.78234878651978,5.90286585465339,5.09710252218742 -"Tfru30356_t",2.08241018909395,3.29526334714726,2.20316273838503,18.0226458884183,18.267263311271,25.4904888719739 -"Tfru30357_t",13.6581287389163,9.72200839201925,10.2082912101287,19.4589435564165,20.2974228005124,9.23861328678683 -"Tfru30358_t",0,0,0,0,0,0.0314399282999374 -"Tfru30359_t",18.2035177229156,21.2754848104358,16.0695379982061,35.2952692970295,28.9405055809085,21.6771607184596 -"Tfru30360_t",7.35090796750165,5.90043168898615,7.62213793228321,6.51741328704635,9.34892284092673,8.78072283233967 -"Tfru30361_t",3.01528133083605,2.56925005310433,2.91619948405449,4.36653494659464,3.33255056787437,3.76732282756926 -"Tfru30362_t",0.826331574801122,0.994920565824363,0.972516181857308,1.68099402813436,2.05029200372965,2.31753504263391 -"Tfru30363_t",108.959462745689,132.172582727675,105.471616151227,74.980751855292,112.211753273086,159.968460239277 -"Tfru30364_t",9.96909291725458,13.5867259799363,10.9994104622922,16.4345155816743,16.9875359408681,12.9160199882376 -"Tfru30365_t",0.946418063516118,0.53177003580799,0.923677935746433,0.881062254350989,1.22873563436889,1.01556989574188 -"Tfru30366_t",11.4244880499633,7.6881605994639,10.0369743306467,12.5334870904737,13.3841416739763,17.0548655012751 -"Tfru30367_t",0,0,0,0,0,0 -"Tfru30368_t",33.5784201184499,30.670369050604,33.3477189987712,17.1668466366305,14.3646032420569,13.6484436061635 -"Tfru30369_t",3.5054689588086,3.00782540363528,5.41291687813894,22.5061753797284,14.5427688636638,23.4363177755253 -"Tfru30370_t",0.131746539631125,0.14100053322945,0.189089691498782,1.36276284099244,0.912248961651677,0.481952899840912 -"Tfru30371_t",150.161714663064,135.890946118826,166.191134944713,187.181240608446,164.670831818493,112.263731830391 -"Tfru30372_t",10.3111327626927,9.22631456972827,11.4996208479422,8.74233841320771,8.19310921896553,6.18360762840822 -"Tfru30373_t",236.155153601628,228.583652833164,277.705012079717,59.187007803623,40.9373218012584,44.5258701104469 -"Tfru30374_t",0.0672083014171579,0,0,0,0.0581710754546552,0.0983440957222043 -"Tfru30375_t",0,0.0430060618730769,0.0461388494690267,1.82886597340586,1.11296700487223,1.56798622006066 -"Tfru30376_t",22.2228168896447,29.8653986065557,21.4710413469181,45.7911255786929,29.307492962473,21.8999299466729 -"Tfru30377_t",90.1010068579579,99.7413550546288,81.9319527544122,37.8641301950891,37.6677891756754,46.254288048749 -"Tfru30378_t",2.37035981311825,3.28589001965595,2.24287780869612,3.30298363049998,2.84045263505882,3.76758264818276 -"Tfru30379_t",0.211081348671979,0.508292751384306,0,0,0.730792405209237,0.154434823684366 -"Tfru30380_t",14.7271561834972,15.4106377682534,13.5038490414728,12.7665441250872,11.8179349530838,11.7346352684852 -"Tfru30381_t",0.278872619988207,0.0559614149518544,0.180113815686557,0.216345669279547,0.120686878536629,0.204033393614532 -"Tfru30382_t",85.3088182748368,101.823970532301,99.9594874073944,6.56979407766557,9.77640162677849,14.1166177451673 -"Tfru30383_t",5.10066300318847,5.21399437385695,3.97956328348934,11.5344627573388,11.1686625694261,8.22860855433781 -"Tfru30384_t",0.339252722415353,0.436186087437431,0.345875932912035,1.45796930356592,1.4808440144009,0.982134008976884 -"Tfru30385_t",9.52766690205985,8.69838697095635,10.240991250357,4.38810386876189,5.59800291523483,6.25844566112952 -"Tfru30386_t",2.64079769812016,1.87827974847173,2.70052770801816,2.56086966092194,1.99998785944296,1.4490780312702 -"Tfru30387_t",1.84638190706478,1.11154129148876,0.397503933887,1.43239852462557,0.799053234267243,1.01316032680842 -"Tfru30388_t",106.811254473553,100.605560392868,106.414821305894,137.929101874487,106.075285007176,79.984015654519 -"Tfru30389_t",0,0.0411933445430572,0,0,0,0 -"Tfru30390_t",0.126521651764228,0,0.10895439151722,0,0,0 -"Tfru30391_t",1.85317007584075,1.98333838285249,2.2342059342884,0.127792417393066,0.748524867982696,0.903897938623202 -"Tfru30392_t",0.485746601169023,0.167430497403661,1.17465419003687,0.213205936717632,0.301311891337319,0.0506904945420671 -"Tfru30393_t",0.197671474756347,0.158667070628199,0.340450428082042,0.613403603486715,0,0 -"Tfru30394_t",2.74319597621053,2.75238795987692,7.38221591504428,1.77344579239356,1.18716480519705,2.50877795209705 -"Tfru30395_t",0,0.366486440309699,1.7693245752905,0,0,0 -"Tfru30396_t",1.24229762323767,1.12181431636388,1.93902565901625,0.481878986103242,0.604828649597848,1.59059304541458 -"Tfru30397_t",0.395033119614957,0,0.340183617401727,0.272410168737569,0.227943085637364,0.481701095818007 -"Tfru30398_t",17.5318265084482,17.2155452426836,14.4844706756833,31.758581695353,34.5852924776751,37.7645494695965 -"Tfru30399_t",0,0,0,0,0,0 -"Tfru30400_t",125.858829379613,202.174706272937,183.698730282981,158.557965043068,92.791547600243,43.5759752500439 -"Tfru30401_t",3.50159029877684,3.12295425153088,2.94360670327303,5.46172025378236,6.30202686450532,5.99807894435376 -"Tfru30402_t",5.73816874426108,6.04526619149061,6.3698202425969,6.02820154618303,5.89781448046131,7.01895560450631 -"Tfru30403_t",21.1355220042091,22.4067026164031,21.177147870214,15.1247987674071,14.9569616477555,14.8799907491073 -"Tfru30404_t",0,0,0,0,0,0 -"Tfru30405_t",0,0,0,0,0.296791201299262,0.250877795209705 -"Tfru30406_t",0,0,0,0,0,0 -"Tfru30407_t",7.42993246853763,7.06246949363299,7.91368964422667,5.12359358485154,5.64110506736377,6.19895871018549 -"Tfru30408_t",0,0,0,0,0,0 -"Tfru30409_t",79.7581415586656,83.3002120798045,92.2383136547858,70.6127404013776,79.3784511163045,83.8312785867286 -"Tfru30410_t",3.72459798494102,2.98966278400424,4.276594047336,4.28073122301895,5.73114043888229,2.42226836754198 -"Tfru30411_t",20.9203232586984,19.6979796412232,24.8169691595059,33.9442206600233,33.6916973114539,24.936859750489 -"Tfru30412_t",5.7913536327551,5.56685105246596,7.63478194039303,15.974595971654,13.7382752669505,10.8283126672853 -"Tfru30413_t",0.0834263920272566,0.133929503509403,0.215528448760975,2.58884341094195,1.51637609799871,1.64802047200814 -"Tfru30414_t",0.246004031541574,0,0.211846898879748,14.6315769255311,19.2697010565384,11.6990597034101 -"Tfru30415_t",13.0022731227324,16.5997087066493,16.9884536494575,15.3043994465665,18.0450634332319,14.4744270304946 -"Tfru30416_t",8.34478072841386,12.1169579327394,10.1736163079204,9.40757572683773,8.03423056642141,13.9256776169137 -"Tfru30417_t",0,0,0,0,0,0 -"Tfru30418_t",0,0,0,0,0,0 -"Tfru30419_t",23.7370039631236,27.1788780608622,22.1446028099763,33.2189486098761,35.5512285933056,28.7745016915729 -"Tfru30420_t",32.7442019699736,32.9202937878193,33.324601449566,48.9233648318965,26.6235729196995,22.9889003287633 -"Tfru30421_t",26.2761101386574,26.9213087625037,25.6254693502696,34.8359091798767,34.4617677608263,37.7598461236739 -"Tfru30422_t",1.5372438567511,1.82002598170269,1.45618092523655,4.37276890256235,6.32005051257119,9.50374667031823 -"Tfru30423_t",12.6983055100796,14.8521971222629,15.4481015381517,12.7596191032385,13.0145220396991,20.5571721204344 -"Tfru30424_t",6.90874808975719,5.76733924487368,6.66342120752681,6.14580638910072,7.29530345956819,7.37985093310127 -"Tfru30425_t",2.82750269795516,3.15433394831303,2.12538754838725,3.66829118266917,2.30212114071119,3.40109001891537 -"Tfru30426_t",11.433364886055,9.97537056464269,8.34758261162699,9.25549815911907,5.8085023567888,8.00136873479473 -"Tfru30427_t",13.3821837836349,20.2897269809084,16.6459167904583,16.91835881484,7.07833876034539,12.5105872796908 -"Tfru30428_t",9.99792913643672,10.3658115150075,11.0013320148825,9.6235083246745,11.0573118632816,7.82282579608443 -"Tfru30429_t",0.863859915387634,0.736741378720269,0.74391481714585,0.670171032087028,0.841162723476698,0.711035396449099 -"Tfru30430_t",0.906336014961674,0.335768489711127,0.900569078432787,1.80288057732956,2.59476788853753,1.88730889093442 -"Tfru30431_t",0,0,0,0.0472790227569557,0.039561395167747,0.0334412730284971 -"Tfru30432_t",0,0,0,0,0,0 -"Tfru30433_t",14.1403567833263,14.0208241434231,7.87923435121357,9.46422806393813,4.31963319684909,13.3884254045228 -"Tfru30434_t",12.2861025317927,14.9259932053405,8.72151911860369,5.8390527472879,5.60442673599692,11.2969378732275 -"Tfru30435_t",18.4019594887301,18.3909559137231,19.1920257484141,12.8032779306658,13.9330211095839,13.5117157376951 -"Tfru30436_t",0,0,0,0,0.236083910124413,0 -"Tfru30437_t",0,0,0,0,0.0959285545096557,0 -"Tfru30438_t",0,0,0,0,0,0 -"Tfru30439_t",0,0,0,0,0,0 -"Tfru30440_t",0,0,0,0,0,0 -"Tfru30441_t",0,0,0,0,0,0 -"Tfru30442_t",0.521443717891743,0.162770529351342,0.424095576360819,0.629267489783785,0.927728358544071,0.974963017935646 -"Tfru30443_t",266.758048951568,260.868260444191,483.361616244568,701.768750748629,724.241477274094,678.319584538113 -"Tfru30444_t",116.969736586936,104.884429662621,109.366764639435,166.010132657258,184.997223316162,188.200573848529 -"Tfru30445_t",9.27525733390346,11.8949964433513,12.1188255173874,14.9977700006481,19.3780549579277,15.7562716813811 -"Tfru30446_t",48.465052858203,53.2967181962854,50.1493639376397,98.1351901217078,74.7166740011496,43.5005205351181 -"Tfru30447_t",0.810252364800762,0.376532261516158,0.40396085057958,0.970443941218407,1.47642323488973,3.93126778584954 -"Tfru30448_t",0,0,0,0,0,0 -"Tfru30449_t",0,0,0,0,0,0 -"Tfru30450_t",0.83800874584985,0.420408385392672,0.360826513553286,0.577880923207213,0.483550086904865,0.0766397254692989 -"Tfru30451_t",0.908220289421054,2.18703259514545,0.782115848296583,0.469723480147485,1.17914342137815,1.66121783314534 -"Tfru30452_t",1.34384024888888,1.43823277787073,1.85861509756374,0.884573785929703,0.775426357248191,1.10237867841783 -"Tfru30453_t",26.6789710017434,23.465037218748,24.1967090566755,18.201784855715,21.1263196330251,23.8800063514643 -"Tfru30454_t",5.93425099078091,7.28506009878781,7.71554034555735,2.16645317020931,1.81281052317139,1.70263323618775 -"Tfru30455_t",35.9508092776138,33.9427866035213,25.3412088891514,28.2542609538992,10.0336980707401,5.94047784914153 -"Tfru30456_t",10.0410808890176,10.2090565364359,11.8174277078279,13.1560002607045,15.3539193182108,10.2849900904696 -"Tfru30457_t",10.1696771881226,9.22774279179789,8.75763930132095,11.4340583983269,9.37625887262535,10.6755103908972 -"Tfru30458_t",12.4892431777874,12.765487045996,11.7610147882887,15.7068498468568,13.8428495065891,15.3169614326695 -"Tfru30459_t",9.55714377950411,8.04252812129174,9.15936587477604,13.7124781085256,12.2746306005236,10.7140929972585 -"Tfru30460_t",0.378994180923823,0.608422601657004,0.65274330196181,1.17607457811363,1.20278539473911,0.739429291144393 -"Tfru30461_t",10.6986074802887,12.3886188757717,9.96830324394705,2.902675367926,7.28656477511339,13.4735517364711 -"Tfru30462_t",0,0,0,0,0,0 -"Tfru30463_t",0,0,0,0,0,0 -"Tfru30464_t",0,0,0,0,0,0 -"Tfru30465_t",0,0,0,0,0,0 -"Tfru30466_t",0,0,0,0,0,0 -"Tfru30467_t",0,0,0,0,0,0 -"Tfru30468_t",0,0,0,0,0,0 -"Tfru30469_t",0,0,0,0,0,0 -"Tfru30470_t",0,0,0,0,0,0 -"Tfru30471_t",0,0,0,0,0,0 -"Tfru30472_t",0,0,0,0,0,0 -"Tfru30473_t",0,0,0,0,0,0 -"Tfru30474_t",8.61106361907336,10.0588311650335,9.10350259256877,6.87949180299337,6.12008189679185,8.1953413101837 -"Tfru30475_t",0,0,0,0,0,0 -"Tfru30476_t",0,0,0,0,0,0 -"Tfru30477_t",0,0.177456592149959,0,0,0,0 -"Tfru30478_t",0,0,0,0,0,0 -"Tfru30479_t",72.1519001235988,75.0359991664705,69.4943266121638,73.0396331710541,58.6509468378742,45.0706213209002 -"Tfru30480_t",0,0,0,0,0,0 -"Tfru30481_t",11.5705388568644,9.98400639946501,10.2486798812695,8.46334042193918,6.65261930310248,9.19103698338358 -"Tfru30482_t",0,0,0,0,0,0 -"Tfru30483_t",21.6049630511657,22.1769844415322,27.0431882822817,27.5816597998647,23.8440235192958,19.9203205364647 -"Tfru30484_t",0,0,0,0,0,0 -"Tfru30485_t",0,0,0,0,0,0 -"Tfru30486_t",36.6146920553524,32.0023413639927,29.2535945921585,32.4029587152587,29.0503252119192,17.5614456646793 -"Tfru30487_t",18.7122880975846,20.1831140306056,18.7998148221638,18.1459302655583,10.7974153976158,8.41401050987537 -"Tfru30488_t",5.97563349420338,4.51437690490274,8.4756487325864,12.7257721085982,17.9502795597524,14.4018550220801 -"Tfru30489_t",0,0,0,0,0,1.26298068136371 -"Tfru30490_t",0,0,0,0,0,0.172412510031915 -"Tfru30491_t",1.47602418924944,2.36955215286622,2.22439243823735,6.74324849611433,3.51326041362303,3.1497468432258 -"Tfru30492_t",0,0,0,0,0,0 -"Tfru30493_t",0,0,0,0,0,0 -"Tfru30494_t",0,0,0,0,0,0 -"Tfru30495_t",0,0,0,0,0,0 -"Tfru30496_t",0,0,0,0,0,0 -"Tfru30497_t",0,0,0,0,0,0 -"Tfru30498_t",0,0,0,0,0,0 -"Tfru30499_t",0,0,0,0,0,0 -"Tfru30500_t",0,0,0,0,0,0 -"Tfru30501_t",0,0,0,0,0,0 -"Tfru30502_t",0,0,0,0,0,0 -"Tfru30503_t",0,0,0,0,0,0 -"Tfru30504_t",0,0,0,0,0,0 -"Tfru30505_t",11.4635673482951,13.9031230463305,12.8262325121546,13.4156581605868,10.3566531250195,10.5910909860193 -"Tfru30506_t",4.44222832072972,4.35224021493757,4.50051110217318,5.00040003360736,4.91921030769343,3.44127862169455 -"Tfru30507_t",0,0,0,0,0,0 -"Tfru30508_t",0,0,0,0,0,0 -"Tfru30509_t",0,0,0,0.426135409186986,0.438861376496833,0.162299290375196 -"Tfru30510_t",11.2696846888527,11.395557468027,11.6584995243687,4.99592656149894,5.00382726580767,6.1572141812138 -"Tfru30511_t",7.0441180876324,7.26115411480328,7.34312209731236,6.67272675461056,5.13425202600664,4.3399865720302 -"Tfru30512_t",87.9660223144976,88.7521691591255,94.5685031592242,37.2145272892632,50.5410128669931,65.323852819962 -"Tfru30513_t",120.692989916514,95.7232459915757,137.754171499634,161.149739494776,142.688468473962,83.6724701403601 -"Tfru30514_t",13.6703275811527,14.3645336130855,14.6617797152936,7.00589791211096,6.99171579983837,9.59255001728232 -"Tfru30515_t",24.0603881525882,24.9822007650073,26.8020355805531,11.2855641334136,9.7415676598705,4.99955032080584 -"Tfru30516_t",10.4487731029509,9.98348657137084,8.99798334639975,6.31675490308371,5.57658692671336,7.35777141636199 -"Tfru30517_t",42.3406335458582,40.5079706268843,41.6613750335977,54.282862515003,45.6800370695385,32.1778041682013 -"Tfru30518_t",4.44175191681308,3.56530837829089,4.94615195766412,2.93095462316275,3.84448766678442,3.69798901416675 -"Tfru30519_t",17.0231552931617,7.98554664674818,34.269023352995,46.1935959292408,19.9006310765926,5.66125551032426 -"Tfru30520_t",0,0,0,0,0,0 -"Tfru30521_t",0,0,0.0707883717880958,0,0,0.120283874415612 -"Tfru30522_t",0,0,0,0,0,0 -"Tfru30523_t",0.259380982176449,0.325926269718731,0.14847079416003,0.205744141648758,0.156508489707962,0.211674764791658 -"Tfru30524_t",1.47018159350033,1.01150257525477,0.868148591609207,1.04278612592742,0.836209209660669,1.16783613670118 -"Tfru30525_t",5.29072983484306,5.91973517324674,5.95453089143609,5.85059895984006,7.21587768044388,6.09958608964054 -"Tfru30526_t",0.151188440500505,0.849492264761054,0.520784997965931,1.14683537144587,1.0032504015125,2.28604301693786 -"Tfru30527_t",6.11726044452287,6.21959512292577,5.61908473533467,2.95287333393686,2.11787896072774,2.98374076827076 -"Tfru30528_t",13.0124768368818,12.382006161892,11.0091306906965,6.57813452885113,6.18180586401858,8.32737029480039 -"Tfru30529_t",0,0,0,0,0,0 -"Tfru30530_t",0,0,0,0,0.161946201154385,0 -"Tfru30531_t",25.3043303528456,31.685622839306,22.2266958695128,11.5167142421703,14.8931970290533,13.5149077329084 -"Tfru30532_t",4.72980673512171,8.67777008261464,6.01264663536314,28.7721372993824,46.2990295592514,48.364598013517 -"Tfru30533_t",0,0,0,0,0.113971542818682,0 -"Tfru30534_t",11.2629296330952,8.59591932084639,7.15507080996599,5.53860762855221,5.5933726398707,3.91755326365924 -"Tfru30535_t",5.04210557851582,5.17803613104824,4.66128620090263,7.36300883267372,4.04322347048023,3.25498992902265 -"Tfru30536_t",0.341968969218918,0.548983758618599,0.294487310586569,1.17908879005814,0.394647730357227,1.83477790526501 -"Tfru30537_t",0,0,0,0,0,0 -"Tfru30538_t",1.0131904736255,2.23648810609095,1.16334819646125,7.77286140766666,6.86944860896682,7.22754974842833 -"Tfru30539_t",0,0,0.167660987178294,0,0,0.0712225490456289 -"Tfru30540_t",0,0,0.0954428970546621,0,0,0 -"Tfru30541_t",12.4221276080715,8.22764822732861,9.46382912364688,7.32577462497458,9.01154655947978,11.7422412191323 -"Tfru30542_t",30.0265224962588,27.691325254123,26.1324829540161,21.8073144205353,30.1361560102539,32.2516283499625 -"Tfru30543_t",8.95698869989697,6.94168433998371,5.31953793878191,4.79221565223996,2.94063340993202,4.06754072380441 -"Tfru30544_t",3.60903766559917,3.37972220848849,5.87053542456504,2.69614551254105,2.60312091831691,2.36853651682408 -"Tfru30545_t",5.39516181101039,4.33059206531094,4.6460551538719,3.34839581719812,4.2694367306169,6.0901160194943 -"Tfru30546_t",6.03542756326666,5.73546739615971,4.60001662220678,4.5207491008414,3.84284561219853,6.69974227669848 -"Tfru30547_t",4.22162697343957,4.23577292820255,3.81723626963847,4.1484372681367,5.84633924167389,5.71408847632155 -"Tfru30548_t",12.4217677716537,12.5945845946119,8.7265260505465,11.4963450977731,18.9565275071104,14.3498194147185 -"Tfru30549_t",11.0269901472821,13.8104208533399,10.2247222452827,11.9565976764814,14.7116842274102,11.085911023834 -"Tfru30550_t",0,0,0,0,0,0 -"Tfru30551_t",10.4261088117309,10.3001057782506,10.0144427830815,7.67364492030914,9.19769391138642,8.21490059732017 -"Tfru30552_t",10.4341818614729,10.2572481001549,9.07789235296518,7.33104860579563,6.70751908603156,8.34112550264222 -"Tfru30553_t",32.7442019699736,48.0530094806071,33.8942527563962,37.9754789953882,36.3569221591595,40.1700784692075 -"Tfru30554_t",0,0.163806085061501,0.117159054198274,0.0703634362973965,0.058877606735481,0.0995385584232837 -"Tfru30555_t",185.301910475514,177.167457172933,184.179521302021,174.859587986471,177.712043140495,132.318876245379 -"Tfru30556_t",31.2561292888325,24.599155187684,38.3392904945385,90.0530668337197,70.6023715250466,45.8478032461728 -"Tfru30557_t",1.46797962406423,1.17831885950797,0.794610959202968,0.390459108559941,0.726049369129496,1.19677350635483 -"Tfru30558_t",0,0,0,0.493743430836845,0,0 -"Tfru30559_t",33.9470502056053,36.4691404683692,34.9917034373099,34.4935206620548,44.4444823945644,45.910636523376 -"Tfru30560_t",13.729322273933,13.1193589527207,10.697031932928,11.1582173007797,9.6197303767426,10.7623645610389 -"Tfru30561_t",10.8719311115991,11.8008633779723,10.5326851187882,10.9901478958036,11.2278730197404,9.58131814940594 -"Tfru30562_t",0,0,0,0.35253080660156,0.221238877236265,0.249351155482262 -"Tfru30563_t",0,0,0,0,0,0 -"Tfru30564_t",0,0,0,0,0,0 -"Tfru30565_t",12.3097309964058,12.3225857588932,8.25502695881035,7.31779737492923,4.74553510287977,12.0083316881849 -"Tfru30566_t",24.0160098814029,22.7588079432323,20.9173483123233,17.89927272312,18.1191834891029,18.6399474908254 -"Tfru30567_t",8.92392383962263,7.6107524334522,7.86496995164634,7.7163288709705,8.08602086195415,6.27402685364685 -"Tfru30568_t",0,0,0,0,0,0 -"Tfru30569_t",0,0,0,0,0,0.601125279475577 -"Tfru30570_t",0,0,0,0,0.117280394061805,0 -"Tfru30571_t",61.7323213927843,72.0746774270605,49.7925980342663,58.7534693083261,57.7000546007714,60.7185206382031 -"Tfru30572_t",0.889783337385145,1.01180016353816,2.42642295389452,1.30386614745264,1.66863190845216,3.30923976117303 -"Tfru30573_t",5.82730937142988,10.5243042512057,8.36366658583051,20.0922182259618,22.2764956582134,18.4750468842291 -"Tfru30574_t",1.76245545674273,0.943125944292995,1.01182819534819,2.43073689027242,1.52546526541848,0.859651186382454 -"Tfru30575_t",0,0,0,0.769016309765456,0,0 -"Tfru30576_t",13.0054525578875,12.060223012653,13.6343849323241,16.6277595400285,18.8776326595636,14.2433455943818 -"Tfru30577_t",0,0,0,0,0,0 -"Tfru30578_t",0,0,0,0,0,0 -"Tfru30579_t",19.3681510650127,16.0056179223193,19.6346836137296,13.6096438289813,14.8539954346761,14.4694012431745 -"Tfru30580_t",1.58058291531229,2.53740668821037,2.55726019953301,2.27898906274521,2.1557126023675,1.96239643687409 -"Tfru30581_t",0,0,0,0,0,0 -"Tfru30582_t",0,0.435054871077318,0.466746554628603,0,0.469121576247217,0.793097546146805 -"Tfru30583_t",37.8971015020344,34.8708711762646,27.8592916011512,19.0157616688068,16.8895237414189,12.8490528487904 -"Tfru30584_t",0,0,0,0,0,0 -"Tfru30585_t",0,0,0,0,0,0.115319061587951 -"Tfru30586_t",4.77650971610236,4.73613245938688,4.83917832558086,7.84705278707922,7.29570344330961,7.19490666863953 -"Tfru30587_t",6.55801056896898,7.53294874348549,8.95801597443327,10.0582780203856,9.59078969474464,12.7397297621294 -"Tfru30588_t",0.124644475922029,0.100049710707692,0.107337857518448,0.644650176760272,0.21576808403062,0 -"Tfru30589_t",0,0,0,0,0.393047807126049,0.332243566629069 -"Tfru30590_t",0.100852793243034,0,0,0,0.174583059587801,0 -"Tfru30591_t",1.57396490438309,2.68470628873241,1.69427906246918,5.80003992758223,6.13044120716507,3.38273748458987 -"Tfru30592_t",1.03351957363819,1.8961969776305,4.70437871844474,9.77421090500214,11.1179340170365,3.13266561505264 -"Tfru30593_t",10.3086127460377,12.6051161901015,22.8154494163352,58.1983082513007,47.6142260387158,26.0803579538529 -"Tfru30594_t",2.47089343445434,1.23958648928281,3.45769966020824,4.15325356527463,5.88126681986404,1.3558469079348 -"Tfru30595_t",0.330749514848218,0.265486240224349,1.13930261366038,5.47394291825415,5.43922457499237,3.62982636769947 -"Tfru30596_t",16.0282955682364,15.5274518131212,18.5623876495386,35.4455810348128,33.96501938553,44.8856686889987 -"Tfru30597_t",26.8739730979595,28.4177357721089,29.6828737279458,27.9188218694058,28.9237266690393,34.3657219057077 -"Tfru30598_t",0,0,0,0,0,0.126732082116243 -"Tfru30599_t",17.0868562924978,13.8032076762276,18.0156867663362,17.3344499420789,19.4345998503982,17.1493126503844 -"Tfru30600_t",6.97871009572941,7.12213047449956,7.24029515022183,4.67493780083493,3.71047702415473,4.91136949562037 -"Tfru30601_t",3.90745938471849,2.85131099437567,4.43557243774965,2.02090334482057,3.22831021286406,2.85883999192454 -"Tfru30602_t",32.3116833736336,34.9452981464536,37.6080563976458,36.2371696931592,33.2069701988113,30.3094910398899 -"Tfru30603_t",4.7074780087449,5.66790236134138,3.27426731749162,0.187281991007079,0.470132614127063,0.794806808099712 -"Tfru30604_t",0,0,0,0,0,0 -"Tfru30605_t",0,0,0,0,0,0 -"Tfru30606_t",0,0,0,0,0,0 -"Tfru30607_t",47.1049696069596,41.8165040567301,46.5121475510686,41.0010024701627,40.964688860192,31.5564838904263 -"Tfru30608_t",35.8113938516358,30.6433756042329,31.7118620929637,19.5697128190132,36.2594505179822,36.8296001908724 -"Tfru30609_t",0,1.61840412001152,0.578765727597816,0.695190750448126,0.581710754404176,0 -"Tfru30610_t",22.6521906598316,21.6224032281181,19.4484029969134,11.539603552773,17.4277715937024,25.6311787939956 -"Tfru30611_t",13.6265094181506,15.678670466703,10.7783685188502,8.12970726090825,6.56558413709427,15.0892473786203 -"Tfru30612_t",20.5252625066605,18.3909559137231,14.7979873569751,8.88738175506321,8.26293685435444,23.3986307293597 -"Tfru30613_t",4.94693193078405,4.28291276057799,4.46146767918967,3.62394344525091,5.39800857712196,4.60099695496849 -"Tfru30614_t",1.50664233808191,2.17683481044785,2.12781517551276,2.36883505411536,1.98215644483223,3.61559175449281 -"Tfru30615_t",77.705338352495,79.4019262928185,77.6285674376725,51.8220285704294,51.6224046884618,40.9559272879616 -"Tfru30616_t",0.188434489954648,0.630219673055931,0.486812294360303,0.519768785508992,0.842665111726314,0.758260551129145 -"Tfru30617_t",24.534676037231,33.838693747221,25.837755702655,10.3712905833649,12.9517426136608,14.8938842978926 -"Tfru30618_t",2.67229826708382,2.94937795302915,2.73274076218935,1.72761120928995,1.73472392011894,3.78810507876284 -"Tfru30619_t",1.76245545674365,0.875759805415384,1.44546885049818,1.90986469950076,2.10659489034091,2.08772430978705 -"Tfru30620_t",14.0665951841007,11.8711531002766,11.0122532577828,5.29099512383202,7.17032614389778,7.28143329511688 -"Tfru30621_t",10.3417029156341,10.043287981253,10.7199199191866,11.7537949857573,11.2164972618684,10.5088438153001 -"Tfru30622_t",45.8238418753109,60.8316234068982,46.5440969860169,13.9767371190664,15.2546526541848,20.2018028799877 -"Tfru30623_t",4.43351234260075,4.02410210515194,5.44862933808665,3.90464548565443,3.51123864299353,3.8264117086161 -"Tfru30624_t",0,0,0,0,0,0 -"Tfru30625_t",9.49432340225262,7.96731480508893,15.3610766780168,13.8383432807148,16.0617909538753,20.6286844622774 -"Tfru30626_t",1.03823328656784,0.625027337953513,1.34111522905645,1.96887184778606,1.94702363777167,1.20271486786939 -"Tfru30627_t",335.936951545315,357.351417999154,326.568651915224,277.838369374355,188.458719095083,111.838105122793 -"Tfru30628_t",0,0,0,0,0,0 -"Tfru30629_t",0,0,0,0,0,0 -"Tfru30630_t",0,0,0,0,0,0 -"Tfru30631_t",0,0,0,0,0,0 -"Tfru30632_t",0,0,0,0,0,0 -"Tfru30633_t",39.4653397856567,26.6597577974125,41.3884793674157,26.6759241516316,38.2170437580003,29.4460519168228 -"Tfru30634_t",40.3165375963479,33.7167525084923,40.8989600318408,25.9823176267509,29.2316962083695,30.2692254421358 -"Tfru30635_t",0,0,0,0,0,0 -"Tfru30636_t",0,0,0,0,0,0 -"Tfru30637_t",0,0,0,0,0,0 -"Tfru30638_t",5.81610300725406,3.11231561616852,4.4520440595344,3.67648954653897,5.03403537588363,6.14650598263777 -"Tfru30639_t",6.66628778709412,6.44540264364325,7.11062492376041,8.22757313062659,8.7204159552177,7.98103572136915 -"Tfru30640_t",24.5145033857666,30.068710433803,26.5662956995167,19.3741684598536,27.8935074926011,23.5783999989711 -"Tfru30641_t",2.79392308070181,2.86128404315187,2.98674974177479,2.69067521024849,3.16872257350473,4.01778487397194 -"Tfru30642_t",9.38355062493171,9.74728719036571,10.3622641793039,17.6995016993812,21.2121858589577,18.8191313266045 -"Tfru30643_t",0.0928291456038093,0,0.23982005293072,4.51297862970428,4.90115414742261,5.97671299969198 -"Tfru30644_t",6.87870199068227,6.10974709885431,8.39987171970877,6.00710128470491,5.75854606010849,6.7240300346977 -"Tfru30645_t",6.07969831898633,6.43280146543603,3.68867959702377,3.00144032956082,4.54461526989494,4.65031702633779 -"Tfru30646_t",0,0,0,0,0,0 -"Tfru30647_t",15.9934193211953,15.0733717096789,18.7247735445123,11.2457327305898,9.09895164197147,11.2412034548776 -"Tfru30648_t",3.20703512986438,2.46230225788159,7.2045526274623,1.37018923877046,2.41373757073258,2.85646751060345 -"Tfru30649_t",26.4843357682762,33.3371370759504,28.2866566013918,45.2727855763438,43.5389958303139,37.1810136718416 -"Tfru30650_t",11.6953872019762,9.88929191534949,11.3784973041235,8.86534432244349,7.03183829220726,5.6174231084681 -"Tfru30651_t",4.82099930463141,6.80784588375509,5.535485174979,4.06328281445327,2.93637203410853,2.61275493417121 -"Tfru30652_t",16.8020749780403,12.8736688513258,17.0998961184751,26.0696525644071,33.0517466772893,27.3798896731771 -"Tfru30653_t",0,0,0,0.225711282668272,0.094433564049765,0.239474259063809 -"Tfru30654_t",0,0,0,0,0,0 -"Tfru30655_t",3.86733320831734,5.39659069895132,5.482288674586,34.4641306963735,25.0790667018565,12.3191302626522 -"Tfru30656_t",1.24795968195263,1.77576414291857,1.51432626265392,2.28518210988153,2.35453566668799,0.747043265951923 -"Tfru30657_t",0,0,0,0,0,0 -"Tfru30658_t",12.9066221296916,15.9730760487159,16.2070570407492,38.5461910608179,41.8409271775802,44.2960487016912 -"Tfru30659_t",20.2264624925657,22.27646582308,17.580089994326,15.8617150547003,19.7052075308323,27.0501327119445 -"Tfru30660_t",87.6108214902237,86.0871888723323,76.9495342562706,60.8291906790992,78.8520259815538,80.0642272803336 -"Tfru30661_t",59.8920131104138,54.1876379600769,57.4393184466714,20.2923124321956,21.3746740166487,27.7774789599976 -"Tfru30662_t",12.7058583378939,14.1564694505182,15.5143183225874,16.8697529777573,21.5022880489837,17.2046668588506 -"Tfru30663_t",11.7527470094771,11.1806847696555,12.1825687509928,10.8060738438074,14.316715461638,17.3567137851688 -"Tfru30664_t",71.2307433972372,82.0637168286496,82.8096848604792,40.3071943937031,34.634274974561,19.3132108182633 -"Tfru30665_t",27.7451244318987,28.8645261327314,23.3588566315515,36.0742432862344,33.002962550381,40.5986926528473 -"Tfru30666_t",33.5254354108669,40.9632260431683,35.5686342980201,89.8503078993695,57.0860359069209,39.9385995642443 -"Tfru30667_t",14.9643483624141,6.74335050169846,17.1821075422656,7.87520772184767,2.04507687145272,0.384156623914861 -"Tfru30668_t",0,0,0,0,0,0 -"Tfru30669_t",0.12855451686526,0.15478233745291,0.221409995309668,0.332436280900094,0.0556341578564032,0.0470275897676953 -"Tfru30670_t",0,0.443641480374891,0,0.571702919916336,0,0 -"Tfru30671_t",0.203414955863069,0.408193129642764,0.262756837654118,0.476605158585349,0.484172086865321,0.632509695549892 -"Tfru30672_t",0.126903892403999,0.916769705668975,0.437134235452773,0.656335678453811,0.329518931956129,0.742780179170728 -"Tfru30673_t",7.50232201865949,7.5588254460899,8.10945002239608,7.39405874086309,5.58036479652216,10.0345283716551 -"Tfru30674_t",8.45558986985348,9.63335785956922,10.217657936959,12.5551900984226,14.1650346074648,13.420536601701 -"Tfru30675_t",1.81753218976689,0.810498858377219,0.347815942151125,1.25334870904737,1.04875736997576,1.47752547659562 -"Tfru30676_t",7.55677620131819,8.70375691735609,6.39239846556569,3.29069955587193,5.23625263075854,5.5415523114272 -"Tfru30677_t",1.34473223138795,1.93154100301388,0.975173930479311,0.366043992532791,0.123933371833824,0.569600385922624 -"Tfru30678_t",22.5393693777054,43.5850703158559,23.8211503795209,58.8156808831012,56.6414244613735,51.5332056471155 -"Tfru30679_t",40.1682267945113,44.726304348,47.2461818562834,22.9281206016596,28.4071578386436,40.4092448712775 -"Tfru30680_t",0,0,0,0.279417504267796,0,0 -"Tfru30681_t",0.431138297214173,1.38426549888238,0.742551336909146,1.97497372334738,3.57172109188224,4.05561245188709 -"Tfru30682_t",13.8998987021849,13.1801850715015,12.4303093798591,16.5107803271841,32.4568159639042,41.7962406819368 -"Tfru30683_t",1.07275820298736,1.34544104183928,2.13630605809661,1.52575783256206,1.85701757237527,1.42257520747403 -"Tfru30684_t",0.561733574251877,0.551091051401806,0.859978793074994,0.516486441766922,0.64826607118858,0.31965484307923 -"Tfru30685_t",24.2817088991022,36.0660488123098,26.2311563701276,27.8636937949422,25.3325651173499,38.8617797611936 -"Tfru30686_t",18.2889846776779,21.9009702134808,16.5178714332725,5.38311421938931,7.59312710580677,11.3683163749672 -"Tfru30687_t",0.426448613053033,0.34230205592378,0,1.76444352948801,1.1073174261673,0.312005379829329 -"Tfru30688_t",27.6977443067436,22.6741479751433,29.0646544497988,29.7884682988727,30.1651319224468,25.4986056048292 -"Tfru30689_t",0.312306233351106,0,0,0,0.270311688915684,0 -"Tfru30690_t",2.18048480356842,2.57581458928736,2.69259275882712,3.0214583309193,2.63507565110461,2.34783284351492 -"Tfru30691_t",0,0,0,0.511169669572263,0,0 -"Tfru30692_t",0,0,0,0,0,0 -"Tfru30693_t",1.21402278571456,1.36426166219333,1.50545998544949,0.351613818954331,0.798591353785007,1.13692596210641 -"Tfru30694_t",0.528842299820263,0.121283282404649,0.32529548546508,1.71922173039592,1.63475369420681,6.68819445952491 -"Tfru30695_t",0,0,0,0,0,0 -"Tfru30696_t",0,0,0,0,0,0 -"Tfru30697_t",0,0,0,0,0,0 -"Tfru30698_t",63.9794328437358,55.4346607079126,59.2153547064406,56.2832369272804,74.5252212230459,81.8075885233639 -"Tfru30699_t",80.7594660613507,86.6609809892409,92.679135119177,97.1638803690006,124.694616936914,117.547232539651 -"Tfru30700_t",9.56701799532498,9.5990754472576,6.1789935345851,4.63872831818246,4.65782632644037,4.59347422190011 -"Tfru30701_t",6.54060026767324,5.01667943897982,5.13178954094254,2.85653638878617,4.1514824610805,2.87120521680311 -"Tfru30702_t",0,0.0614708341084636,0,0.712934908336884,0.198852810350918,1.45678355103539 -"Tfru30703_t",1.9135354003783,4.01330926258321,1.96678287347175,8.74734871736811,13.944388954505,15.8517531220122 -"Tfru30704_t",0,0,0,0,0,0.0743229260294773 -"Tfru30705_t",0,0,0,0,0,0 -"Tfru30706_t",0,0,0,0,0,0 -"Tfru30707_t",4.78350899766249,5.75944526835456,5.66407740670301,2.47398843636398,6.72797136041386,8.9682115760907 -"Tfru30708_t",5.17872185577325,6.46622650847685,4.95518602516584,7.73756828598975,6.47452038450673,8.41987120909137 -"Tfru30709_t",10.1977914000023,6.23662474145523,5.85456661008136,9.54380365733184,13.4499596426949,12.4351277105389 -"Tfru30710_t",0,0.143781460590585,0.0771276289631491,0,0.0775200898915981,0.0655277823308931 -"Tfru30711_t",0,0,0,0,0,0 -"Tfru30712_t",1675.73521399691,2470.00152399647,1910.3565605023,18.2831725874237,24.2965794312616,127.190074294188 -"Tfru30713_t",1.74567016667943,3.50303922166154,4.32195186298956,4.96564821870198,4.91054533058778,4.31053666314857 -"Tfru30714_t",0,0,0,0,0,0 -"Tfru30715_t",25.0581485357727,27.7048089634283,29.9013107079862,18.2794609858545,22.6446565296984,14.7475739271177 -"Tfru30716_t",0,0,0,0,0,0 -"Tfru30717_t",0,0,0,0,0,0 -"Tfru30718_t",21.1786638447781,21.6837079006711,23.5231878864171,16.8594164072097,15.3700521223752,15.9735544698491 -"Tfru30719_t",10.2980461848871,10.0062620347783,10.7351707564579,5.60637702111511,1.87648630498887,4.75858527688083 -"Tfru30720_t",0.493453020683979,0.297063898753236,0.637407189140387,0.63802381664673,0.854200814312118,0.270771188662457 -"Tfru30721_t",34.6749961788068,33.4609349629043,42.0461444848667,32.4387186365888,36.9637903590848,45.0495051534756 -"Tfru30722_t",1.48459085770749,0.911263581310602,0.827237916467539,2.89060603167683,2.19199738589527,1.21396687806775 -"Tfru30723_t",0,0,0,0,0,0 -"Tfru30724_t",0,0,0,0,0.0753511340086208,0 -"Tfru30725_t",0,0,0,0,0,0 -"Tfru30726_t",0,0,0,0,0,0 -"Tfru30727_t",0,0,0,0,0,0 -"Tfru30728_t",3.70767001897669,3.91970858010459,3.27074281015309,4.39638930019632,3.75701240826622,3.50661805252747 -"Tfru30729_t",0.335147779673328,0.358688856473322,0,0.115556973174581,0.0966939419126583,0.326941807587115 -"Tfru30730_t",0.342899497026316,0.275238795987692,0,0,0,1.25438897604853 -"Tfru30731_t",83.8024302942904,60.0892618963229,82.0156879036751,140.887976997207,110.150675056464,52.7930093063195 -"Tfru30732_t",1.19634657356621,1.02658908206932,2.5502431674324,1.61981606746651,1.82480007993343,1.58286064276728 -"Tfru30733_t",0.552699847180565,0,0,0,0.478380554725775,0 -"Tfru30734_t",30.9158186443259,28.5918061202035,37.0410065662602,31.2835837701657,28.5038269658046,24.5860239245335 -"Tfru30735_t",11.8440859054828,7.73827106752282,6.40437485613349,10.2569127140402,6.19855722057802,7.45641709369172 -"Tfru30736_t",0,0,0,0,0,0 -"Tfru30737_t",0,0,0,0,0,0 -"Tfru30738_t",0,0,0,0,0,0 -"Tfru30739_t",0,0,0,0,0,0.0762593794371932 -"Tfru30740_t",5.51973566172454,4.87364359518285,5.60893198696268,7.30818134684128,10.1283409957186,9.5307188692675 -"Tfru30741_t",0,0,0,0,0,0 -"Tfru30742_t",55.5569240701167,57.4310073630437,54.9076262101414,29.6465771277263,35.9524570177103,31.1504011481024 -"Tfru30743_t",23.3607449980805,24.5505641772299,24.1958916279043,9.88147388002568,9.86657037095203,12.0110890917288 -"Tfru30744_t",0.544434146574684,0.36977495273521,0.721293279834834,0.0866389270461462,0.54372266439421,0.766015202223052 -"Tfru30745_t",0.212684498155563,0.341435468440428,0,0,0,0 -"Tfru30746_t",1.89319158921572,1.23469797918422,0.917058371418176,2.08067654234343,2.6627604961638,4.5882368602789 -"Tfru30747_t",0.594880716713633,0.6366656649912,0.796884361561034,1.9827430928334,1.77350839800778,3.33681284659328 -"Tfru30748_t",0.177862477286057,0.0713833856919385,0.178694428995073,0.275966688230615,0.256576726599573,0.737407210337629 -"Tfru30749_t",3.12400396034528,2.10094337238846,2.25398713064367,1.2226973000824,0.730792405209237,1.23547858947493 -"Tfru30750_t",0,0,0,0.493743430836845,0,0 -"Tfru30751_t",0,0,0,0,0,0 -"Tfru30752_t",35.3660704645759,37.5598473992779,37.0524411565733,32.8181803815809,37.2409810566467,38.9060751028667 -"Tfru30753_t",2.4258315481117,2.8182695865761,3.46335874312184,4.68831148308299,4.25453344415697,4.81071516878184 -"Tfru30754_t",1.35258209471025,2.53328015269531,1.48832868269318,3.65317143102181,3.12188240364876,3.07875076053412 -"Tfru30755_t",0.0819346977614897,0.153457261091967,0.11759706756735,0.810361056310883,2.61211956995262,2.06588193380471 -"Tfru30756_t",0,0,0,0,1.874068152534,8.62638320930813 -"Tfru30757_t",0,0,0,1.38290443387845,3.26559181070295,5.98088156993196 -"Tfru30758_t",0,0,0,0,0,0 -"Tfru30759_t",3.17640277232331,5.53886677453719,3.30130385770559,6.45793233136274,8.6270662750548,10.2575328002299 -"Tfru30760_t",0,0,0,0,0,0 -"Tfru30761_t",0,0,0,0,0,0 -"Tfru30762_t",10.1361702731672,9.95971827442536,9.30927043503681,8.21213442409406,7.93045493754029,8.93206961518535 -"Tfru30763_t",7.67132616398518,9.91227467955675,9.50645265496347,3.48369529819849,5.99200944271226,6.84466145059885 -"Tfru30764_t",0,0,0,0,0,0 -"Tfru30765_t",0.168357468479855,0.405411853809527,0.362453486810791,0.435364949034492,0.510016944116466,0.246352945195903 -"Tfru30766_t",0,0,0,0,0,0 -"Tfru30767_t",0,0,0,0,0,0 -"Tfru30768_t",5.40839335438503,5.35416241551165,5.12319447838051,4.28899872967285,4.13501475200741,2.90178394030109 -"Tfru30769_t",8.09326560484772,8.41775096548518,7.26402032780205,5.77753507128487,3.15718184285781,3.9197527976116 -"Tfru30770_t",37.1584358796787,42.2048860071337,37.9435573255772,63.5030012584003,43.4757600644495,24.8224280068064 -"Tfru30771_t",6.34917133203566,4.28839801490501,7.00119831942909,5.3661037202102,9.71751836512098,9.7437698526608 -"Tfru30772_t",0.124092137033157,0.697244512731008,0,0.256717411602023,0.537029869411514,0.453951697388314 -"Tfru30773_t",0,0.0966096060415252,0,0,0,0 -"Tfru30774_t",11.7287214323774,12.0416973244615,15.9570892819508,14.3890942701023,12.7485311467183,14.3684555438286 -"Tfru30775_t",19.6262074083887,16.730094889029,18.0493372519615,12.8486677983821,12.6968091300991,10.0215566103132 -"Tfru30776_t",8.14195290850185,9.45344913735131,6.8724173264309,5.28048705923876,3.43557425698744,5.82389488311965 -"Tfru30777_t",4.24233380747617,3.54763175518851,3.85946152440624,7.68963265580254,7.67496805748214,8.44872443679234 -"Tfru30778_t",0,0,0,1.06095420593596,1.11013502772232,1.79314393999744 -"Tfru30779_t",0.190283979097276,0.22910590605997,0.122897592243659,0.265745699778363,0.28822022096729,0.389056648498245 -"Tfru30780_t",0,0,0,0,0,0 -"Tfru30781_t",0,0,0,0,0,0 -"Tfru30782_t",0,0,0,0,0,0 -"Tfru30783_t",0.0262286533785349,0.0842129316478109,0.0451737221151632,0.217043631163995,0.113508967090726,0.230278088640816 -"Tfru30784_t",0,0,0,0,0,0 -"Tfru30785_t",0,0,0,0,0,0.139931837965572 -"Tfru30786_t",0,0,0,0,0,0 -"Tfru30787_t",0.338751519239708,0,0,0,0,0 -"Tfru30788_t",0,0,0,0,0,0 -"Tfru30789_t",0,0,0,0,0,0 -"Tfru30790_t",0,0,0,0,0,0 -"Tfru30791_t",0,0,0,0,0,0 -"Tfru30792_t",0,0,0,0,0,0 -"Tfru30793_t",0,0,0,0,0,0 -"Tfru30794_t",0,0,0,0,0,0 -"Tfru30795_t",0,0,0,0,0,0 -"Tfru30796_t",0,0,0,0,0,0 -"Tfru30797_t",0,0,0,0,0,0 -"Tfru30798_t",20.4731169957564,8.50002162727001,11.5509966486878,27.0189682058234,28.7189132564919,27.8917077759881 -"Tfru30799_t",0,0,0,0,0.359969526328312,0.152141237194004 -"Tfru30800_t",1.33774485304853,0.859025541617638,1.38240221593823,4.98146238500358,4.39988229951612,2.93622897259766 -"Tfru30801_t",0.110758571880616,0.355615056121211,0.238449953748958,0.687400214849977,0.239663297028079,0.283622556878473 -"Tfru30802_t",0.0291500266382538,0.0233981627401057,0.025102607899873,0.361827247025474,0.277533756940149,0.298581137255131 -"Tfru30803_t",0.951958943585807,0.955148796274569,2.25439908113817,4.43110251810517,5.35569391579687,3.83068361524167 -"Tfru30804_t",0.0465431450257326,0.224155695347317,0.240484374406982,0.144430211347287,0.241708069756185,0.0681053294475099 -"Tfru30805_t",0,0,0,0,0,0 -"Tfru30806_t",0,0,0,0,0,0.218219147312584 -"Tfru30807_t",0,0,0,0,0,0 -"Tfru30808_t",0,0,0,0,0,0 -"Tfru30809_t",0.099420564226565,0,0,0.411355473738626,0.344207547068966,0 -"Tfru30810_t",6.32996986646605,4.63697839911964,5.71568202229909,4.57696909697476,4.09580542246567,5.98014115355394 -"Tfru30811_t",0,0,0,0,0.632294298420166,0.267239390549468 -"Tfru30812_t",0,0,0,0,0,0 -"Tfru30813_t",0,0,0,0,0,0 -"Tfru30814_t",0,0,0,0,0,0 -"Tfru30815_t",0,0,0,0,0,0 -"Tfru30816_t",0,0,0,0,0,0 -"Tfru30817_t",0,0,0,0,0,0 -"Tfru30818_t",0,0,0,0,0,0 -"Tfru30819_t",0,0,0,0,0,0 -"Tfru30820_t",1.34998133254489,0.916895618277912,0.62598270923614,2.0408875558942,2.24702856360689,3.87480599647128 -"Tfru30821_t",0,0,0,0,0,0 -"Tfru30822_t",145.66936889728,140.929838925404,159.558808427258,103.321928073542,145.427688636638,133.644212650014 -"Tfru30823_t",68.8506095344945,61.8562978351287,58.202944424928,41.1626102339769,44.2843713517582,60.7718448659299 -"Tfru30824_t",0,0,0,0,0,0 -"Tfru30825_t",53.1556565753886,38.4984010460603,42.881278918879,49.2953441347506,45.4792044463668,38.6671103635031 -"Tfru30826_t",4.04268787364249,3.55615056121211,4.95975903797833,3.66613447919988,3.69081477423241,3.07933061753771 -"Tfru30827_t",21.1916134646645,22.2116716785953,21.6195498857736,23.4150992804057,23.0895258134879,22.5981805159833 -"Tfru30828_t",0.355976172760371,0,0,0.368215439946121,0.308109509823386,0.520890337511676 -"Tfru30829_t",1.78745482492441,1.02482530420949,2.41885372535493,4.49021381478371,2.65217669246149,3.36283002089605 -"Tfru30830_t",19.0441974361634,18.574764479143,19.3080823504519,15.1750864014698,13.1292213134889,13.3258679953069 -"Tfru30831_t",5.14349245539474,7.9991275083923,5.02913459212391,9.64311149614,12.0107689275795,18.6198363632203 -"Tfru30832_t",76.5976964680844,87.0380421090265,81.1843328503331,87.5869568440165,77.3201511982126,65.6368964661771 -"Tfru30833_t",0.243038698470918,0,0.348822159920125,0.335193225949025,0.490835979005047,0.0592719959752919 -"Tfru30834_t",0.286529252290066,0.13799489430488,0.148047167736904,0.474209243259398,0.446401499907825,0.54815558112798 -"Tfru30835_t",0,0,0,0,0,0 -"Tfru30836_t",0,0,0,0,0,0 -"Tfru30837_t",0,0,0,0,0,0 -"Tfru30838_t",0,0,0,0,0,0 -"Tfru30839_t",0,0,0,0.225711282668272,0.18886712809953,0.0798247530212697 -"Tfru30840_t",22.309280629747,28.0376029964397,29.3115419777008,31.9112597969695,27.9159371965626,19.2136605830559 -"Tfru30841_t",0,0,0,0,0,0 -"Tfru30842_t",11.170986327818,11.7116535171968,10.6015431811165,7.42825937736626,8.09027847232315,6.67191965550911 -"Tfru30843_t",12.7464019929093,10.6963490716596,12.2239313186354,8.98953556833979,6.76990964342971,7.41819687559731 -"Tfru30844_t",4.89174345757795,6.31655616614792,6.04407247322866,4.17994438662888,2.76128522727794,2.64533168873018 -"Tfru30845_t",0,0,0,0,0,0 -"Tfru30846_t",0,0,0,0,0,0 -"Tfru30847_t",0,0,0,0,0,0 -"Tfru30848_t",35.3482647112826,38.2051949977369,38.7525388224923,49.5777872865649,59.9643485851943,65.4101230957411 -"Tfru30849_t",0,0,0,0,0,0 -"Tfru30850_t",1.52350424196925,1.39758559620693,1.49939307704526,3.15177153777716,1.50702268017242,1.11465134400167 -"Tfru30851_t",3.36714936959709,3.24329483047621,3.04460928921065,2.78633567382075,1.82148908613024,2.89464710605186 -"Tfru30852_t",159.797089022081,127.618878976481,163.992880148828,187.641457400567,155.197303036412,109.834876580341 -"Tfru30853_t",92.4456113455141,125.808778016762,89.3278175445927,88.7853858913777,68.9646908799254,73.9749091804573 -"Tfru30854_t",0,0,0,0,0,0 -"Tfru30855_t",0,0,0,0,0,0 -"Tfru30856_t",0,0,0,0,0,0.302783545942747 -"Tfru30857_t",14.7411139282956,14.1315952301706,13.8073528603127,10.1893862616608,11.0053385995294,14.593159734246 -"Tfru30858_t",0,0,0,0,0,0 -"Tfru30859_t",14.3139892625749,16.0011706819963,14.90799321006,15.2712508777655,16.5406157905186,14.9687433832303 -"Tfru30860_t",0.344540164476203,0.0460926213376518,0.197801000594488,0.831567883514685,0.695826261419321,0.58818239068304 -"Tfru30861_t",0.155863407739235,0.500434174523077,0.402666322638779,11.1243417886505,10.7924073199731,7.18422777191428 -"Tfru30862_t",0.0874652543169677,0.0351033342097785,0.0376604455842967,0.384508158527808,0.378520792911604,0.111987355227653 -"Tfru30863_t",0.129512036466356,0.504214594930755,0.382458496676811,0.316812890335822,0.215886256192672,0.370981443651926 -"Tfru30864_t",2.99210447924259,1.64107238408491,1.98559242954974,2.11478750828495,2.8334525578894,2.51154732019809 -"Tfru30865_t",0.193127302922846,0.0764552211076923,0.0423321919060468,0.782292255019418,0.498702451512714,0.89913779734315 -"Tfru30866_t",0,0.0393198279982417,0,5.92837593457277,5.21504539425845,6.55866236048228 -"Tfru30867_t",5.0723246352572,2.92635965168046,3.27603242116682,2.62336132308784,6.03662103774724,12.640927398255 -"Tfru30868_t",244.335523281843,246.569838955234,259.284836997788,226.534008908532,194.828697371985,137.240687016912 -"Tfru30869_t",41.712808884199,33.3256068877441,31.3889765334342,21.976737766065,21.0887019484684,21.961993534251 -"Tfru30870_t",19.0191667981931,19.36641411872,17.8758496116169,14.7267122139383,16.6498712087225,17.4137750348987 -"Tfru30871_t",1.18637778318019,1.78552970036146,2.1071567757505,2.45433627755791,3.46562011755448,4.17723707557907 -"Tfru30872_t",27.1798277789977,28.3703620851508,28.6792480177807,51.8948338457058,47.9799791154126,44.0944994406623 -"Tfru30873_t",33.4866536781118,36.7819118274268,23.2720484930085,48.0070535828803,40.1705853226866,46.4211640646525 -"Tfru30874_t",1.72962540411804,2.18167222113774,2.55337821061531,2.42805593046825,2.13864247995056,1.3558469079348 -"Tfru30875_t",1.62451004806666,1.67652360539464,0.999250220544667,1.20026027385752,0.40173394651005,0.679171931783179 -"Tfru30876_t",850.075325788237,970.982442418153,788.933252760592,627.631412093801,607.06350442015,382.834304378537 -"Tfru30877_t",0,0.173350912640063,0,0,0,0 -"Tfru30878_t",0.0316185083821782,0.025379565305602,0.0544566924858366,0.0327056243234041,0.164201379717694,1.85066043888228 -"Tfru30879_t",0,0.166914616378675,0.358147108749673,0,0,0 -"Tfru30880_t",0.196285927036092,0.157554918263983,0.338064093305766,0,0,0 -"Tfru30881_t",0,0,0,0,0,0 -"Tfru30882_t",7.16251880111808,6.46786726628271,5.26851572764616,6.01963571805347,6.58686689206798,4.69448947164164 -"Tfru30883_t",5.13732519825398,4.36619816656735,2.34212749534858,4.06361499911763,2.87716650180399,4.42194675009912 -"Tfru30884_t",12.9669623743064,13.60202365571,10.1230112956847,8.85084883272619,8.26556682632273,12.1773839036453 -"Tfru30885_t",32.3116833736167,30.1800302173759,30.3548458604458,17.622842454475,25.9329095121142,24.5000588118999 -"Tfru30886_t",0,0,0,0,0,0 -"Tfru30887_t",0,0,0,0,0,0 -"Tfru30888_t",25.553852178989,21.1818962081184,27.3274076218935,20.2130511486925,26.0208588017842,28.4718865597336 -"Tfru30889_t",5.6580927254562,5.72641770276004,5.82578971919307,12.4686481626265,13.4142670338334,11.1591031017143 -"Tfru30890_t",0.260094045732035,0.208772461352894,0,0.269036668195928,0.675360783142282,0.380588605736085 -"Tfru30891_t",5.29147785263394,5.03391639318081,4.33174193584169,4.39224327276322,5.59772207427184,6.21341973361517 -"Tfru30892_t",5.04815716922599,5.38258470539159,5.06095591521062,2.88363876377536,2.80421103649123,5.62281264779419 -"Tfru30893_t",6.38053494466689,6.52385627198675,6.41037989584857,8.87845330242601,8.74406988638014,8.78072283233967 -"Tfru30894_t",0.140251046363017,0.112576803033363,0,0.290146390074406,0.485568242526338,0.307838363070339 -"Tfru30895_t",21.8382411766627,23.0740640509045,24.371103256934,26.5076048810019,32.7887361647593,27.0641907988825 -"Tfru30896_t",388.60140710048,390.400892219389,388.297047247387,39.2503424814999,115.395317534667,200.965109137312 -"Tfru30897_t",12.2129622619285,14.1105351907787,12.9074955800928,10.527392974671,9.28943385564428,13.4708666359572 -"Tfru30898_t",1.28064598736963,0.41117990864015,0.110283103608893,0.397403249210143,0.221688549750973,0.37478695016084 -"Tfru30899_t",2.82274865952063,3.29075504482885,3.35684122088893,1.87701502666935,1.80330333909431,2.65529058449952 -"Tfru30900_t",0,0,0,0,0,0 -"Tfru30901_t",0,0,0.113276173226671,0.589605934109969,0.493361156648302,0.288718965781524 -"Tfru30902_t",0,0,0,0.339448608700331,0,0 -"Tfru30903_t",11.3698254277147,11.914942615783,8.70324402615746,8.8205593358522,12.8479348983496,12.246797634579 -"Tfru30904_t",19.288910036708,26.1032922646392,25.5337821061531,20.7765736664855,34.3562566133993,24.9592463052084 -"Tfru30905_t",204.92250782568,242.724605508398,211.145173704687,256.635837845065,184.260182264579,115.708590594383 -"Tfru30906_t",0,0,0,0,0,0 -"Tfru30907_t",1.53163859200451,0.860591677518491,1.05517908430168,0.712934908336884,0.596558431052754,0.392210956047989 -"Tfru30908_t",2.82533182004181,2.45296895394659,3.07854110499719,1.61034233585222,1.14785066528575,2.23586010349898 -"Tfru30909_t",0,0,0,0,0,0 -"Tfru30910_t",0,0,0,0,0,0 -"Tfru30911_t",0,0,0,5.07850386003611,3.58847543389107,3.11316536782952 -"Tfru30912_t",0,0,0,0,0,0 -"Tfru30913_t",0,0,0,0,0,0 -"Tfru30914_t",0,0,0,0,0,0 -"Tfru30915_t",41.5306213141227,37.4549774188641,45.7095185486315,54.7688691835668,60.883921516415,41.7831914032696 -"Tfru30916_t",2.00458599671567,5.26595700783394,2.66784635888585,39.7736573699719,37.0667102273427,37.1990275304976 -"Tfru30917_t",0,0.79527882068035,0,0,0,0.516513106962742 -"Tfru30918_t",46.8337337072983,59.1246433920518,52.4520029365693,66.3330017494524,69.1628301329767,65.7135838714767 -"Tfru30919_t",65.2368429086601,107.266319608413,64.245981738608,83.3416416091767,77.0786440600084,119.765394581008 -"Tfru30920_t",0,1.74396995048784,0,1.4982559221735,2.50737393216541,2.11948481327674 -"Tfru30921_t",62.0678840404003,118.834256036771,71.7491620876425,38.00559299363,43.8011482850232,38.4560445884277 -"Tfru30922_t",5.55440507579818,7.49824097859783,5.10931427568654,9.33623941946033,7.75760022028648,5.86481036660403 -"Tfru30923_t",0,0,0,0,0,0 -"Tfru30924_t",0,0,0,0,0,0 -"Tfru30925_t",0.102702172092234,0,0,0,0,0 -"Tfru30926_t",0,0,0,0,0,0 -"Tfru30927_t",73.6179451643103,71.357099180114,77.3408817712366,351.707733318032,394.256833158054,268.98712372428 -"Tfru30928_t",0,0,0,0,0,0 -"Tfru30929_t",0,0,0,0,0,0 -"Tfru30930_t",8.48809506240013,11.1806847696555,9.55863086616355,11.2563269206327,14.316715461638,13.0573443154481 -"Tfru30931_t",0,0,0,0,0,0.0729988834042491 -"Tfru30932_t",0,0,0,0,0,0 -"Tfru30933_t",0,0,0,0,0,0 -"Tfru30934_t",30.9511914421122,40.1833910359908,39.0447441215856,147.906328298358,248.303832337668,228.588612324861 -"Tfru30935_t",0.0999330413617535,0.106952426672458,0.114743403596247,0.344563218982096,0.145270691106809,0.268087096784359 -"Tfru30936_t",0,0,0,0,0,0 -"Tfru30937_t",9.93483708707988,9.93315115395416,10.0563547091661,16.5865013114319,13.4264152372,14.9199419080626 -"Tfru30938_t",15.6711664362123,11.8657032866425,16.3473492811029,10.7787988978074,12.934674229701,11.1700926030629 -"Tfru30939_t",0,0,0,0,0,0 -"Tfru30940_t",16.7086006652531,12.4737916095396,15.7973260179237,14.2615626865363,10.1131911430207,13.7633861363655 -"Tfru30941_t",0,0,0,0,0,0 -"Tfru30942_t",0,0,0.908105221348543,0.363593488817091,0,0.514351965074291 -"Tfru30943_t",0,0,0,0,0,0 -"Tfru30944_t",0,0,0,0,0,0 -"Tfru30945_t",0,0,0,0,0,0 -"Tfru30946_t",0,0,0,0,0,0 -"Tfru30947_t",0,0,0,0,0,0.0844300272340353 -"Tfru30948_t",0,0,0,0,0,0 -"Tfru30949_t",0,0,0,0,0,0 -"Tfru30950_t",0,0,0,0,0,0 -"Tfru30951_t",4.65847014052199,3.35899977998138,3.19572241585469,3.67523305660508,3.62202420006665,4.44812932954049 -"Tfru30952_t",0.123544671722717,0,0,0,0,0 -"Tfru30953_t",0,0,0,0,0,0 -"Tfru30954_t",0,0,0,0,0,0 -"Tfru30955_t",0,0,0,0,0,0 -"Tfru30956_t",0,0,0,0,0,0 -"Tfru30957_t",0.851456521332238,2.73379074393181,1.71087841814878,0.880731525276534,0.491309758907561,2.49182674971802 -"Tfru30958_t",3.48083308011596,2.94502429525465,3.64564078223351,2.82202292384239,2.1985148898036,5.64404804676705 -"Tfru30959_t",11.1829753796011,10.4724177881759,10.4624864505081,22.9921345212701,25.3930844990021,18.686994359704 -"Tfru30960_t",0.286724835397431,0.460296962573274,0.14109354649914,7.1603630457392,8.4023311084552,16.4825855214567 -"Tfru30961_t",0,0,0,0,0.230107102273162,0 -"Tfru30962_t",5.71798375931318,9.88554000248988,11.3632014608535,5.11838739820394,0.28552556669497,0 -"Tfru30963_t",0.0796306888828886,0.383508085404652,0.274296553431029,12.3552858522206,11.2344612548683,10.4286689184091 -"Tfru30964_t",54.2773809108761,71.1637150152388,54.9780816830929,222.660786197624,134.980046136227,86.3547779300774 -"Tfru30965_t",6.35200409735334,6.5788785382424,4.94068304167841,8.68988438272846,8.69019115023813,12.7427563054685 -"Tfru30966_t",2.63002073971436,2.35233157035993,2.97665736538637,7.07316170687201,6.6990393244963,7.31203305626855 -"Tfru30967_t",2.96507212134521,3.17334141256398,3.40450428082042,2.04467867828905,2.13864247995056,3.61559175449281 -"Tfru30968_t",0.0683566938742453,0,0,0,0,0.0500122537236596 -"Tfru30969_t",0,0,0,0,0.0454177665948276,0.11517500279771 -"Tfru30970_t",0,0,0,0,0,0 -"Tfru30971_t",0,0,0,0,0,0 -"Tfru30972_t",0.081961343191656,0.197366356147272,0.211743558929075,0.254338079494492,0.141880671840623,0.179897736077203 -"Tfru30973_t",7.75802980168941,8.5273650271062,9.3291064683463,11.2780529426426,11.554362949084,13.0395925588405 -"Tfru30974_t",4.96936380456106,4.13933345528365,5.97498100623896,3.7824273540894,3.40846145242121,2.33237950234022 -"Tfru30975_t",0,0.22328975171187,0,0,0,0 -"Tfru30976_t",0,0,0,0,0,0.106340933955671 -"Tfru30977_t",9.29810873074477,8.25180069186795,5.80795693269345,3.31881788584329,2.15364464855505,3.92839821181837 -"Tfru30978_t",0,0,0,0,0,0 -"Tfru30979_t",7.93257832711808,7.92155672318481,7.93382387003457,4.32878998990935,2.86530390250625,3.3360218344428 -"Tfru30980_t",0,0,0,0,0,0 -"Tfru30981_t",4.59793746436857,4.77785122521698,4.78826121803975,5.23531430779568,6.10833312474636,5.71100895289636 -"Tfru30982_t",0.22107993887223,0,0.761533852288778,16.9224064295238,16.0735866387863,10.837260548335 -"Tfru30983_t",16.12999233617,12.9472329600921,13.8903774623476,8.34228900537751,13.3793473512961,6.39236622037872 -"Tfru30984_t",4.49053238867425,3.60446351983882,4.51153685320301,4.06431118123158,4.21060123001402,2.19029166419163 -"Tfru30985_t",5.04213903908055,5.29486907624337,4.66851867479379,4.43121360671623,3.87194658373721,5.88023135523108 -"Tfru30986_t",3.09620553211723,2.56810645642079,3.99945604242571,2.56212807353173,3.39450378881588,2.49182674971801 -"Tfru30987_t",24.4022946917064,24.5598646869413,25.8935206430204,23.3657862449264,27.2023014716014,31.7274679319612 -"Tfru30988_t",9.99999525115803,8.98834691794897,10.3607317969481,21.3879981397595,24.8390131552348,25.531053988638 -"Tfru30989_t",8.50486100020902,11.2039279236271,12.1260088349607,10.2663337690911,9.64559071201462,7.54325949177525 -"Tfru30990_t",25.0098341793584,20.4138641594113,23.5922562115126,16.1678040579673,12.9567171861082,16.5199276454469 -"Tfru30991_t",4.8686560721228,4.63372121266358,5.54194736278202,4.72989039434458,4.80355038436214,4.82719787026759 -"Tfru30992_t",3.7668886352161,3.51582403633913,3.47018032794782,2.89964859486247,3.7153059140747,3.84557204336044 -"Tfru30993_t",0,0,0,0,0,0 -"Tfru30994_t",0,0,0.0802058935337405,0.481700908133507,0.403070090456314,0.204429245542276 -"Tfru30995_t",0.244216211544905,0,0.210307313858819,0.252612918102572,0.422754908827436,0.178677499495284 -"Tfru30996_t",11.3527536177632,11.6264663822387,12.0688566245766,7.69374665758811,5.15028161061719,7.90510555082957 -"Tfru30997_t",8.82021627226215,9.74351060016721,9.17482052809453,8.94281241050018,6.27364769066578,4.02525859569833 -"Tfru30998_t",1.69963190000038,1.65660344694904,1.46364165252034,2.2603745504207,3.78280114950793,5.7734521513216 -"Tfru30999_t",7.3830690638023,6.8241629577774,7.65843464635286,1.90922892563275,1.59757447570208,1.84149646616977 -"Tfru31000_t",10.9029367361311,9.56298094353455,8.36312745820357,0.336093508571363,0.593709945014208,2.00745360842488 -"Tfru31001_t",0,0,0.0529229816879546,0.381414091414563,0.265961391069199,0.0899269346399089 -"Tfru31002_t",0,0.268659382537787,0,0,0,0.489761432879504 -"Tfru31003_t",1.65266314960225,1.76874767257665,1.66039348121979,1.42457121028336,3.33768465723432,1.00762393157996 -"Tfru31004_t",2.69072381118515,3.35967640654016,3.86187095911569,3.71098265454596,5.17536258493374,2.84357928022388 -"Tfru31005_t",0,0,0,8.26338698971112,0.892194408813731,9.05007015848506 -"Tfru31006_t",1.18710315003132,1.17275660899104,0.865003125697579,1.60573950550417,1.26458859684033,1.73705603857154 -"Tfru31007_t",10.8634107467544,10.463819702927,14.9680791069015,14.982559221735,24.4468958386127,19.0753633194907 -"Tfru31008_t",4.5797820386479,4.25049350192237,5.91583367365729,0.740194581152339,0.247747340096487,0.209420987483399 -"Tfru31009_t",10.9098872310571,8.85937913310561,9.28540265574947,8.56254398500278,8.4140830464351,8.10630652586386 -"Tfru31010_t",0,0,0,0,0,0 -"Tfru31011_t",3.35402644905018,5.06392290526785,4.88264813088194,2.64331083885276,2.62654570731571,2.33707451811322 -"Tfru31012_t",0,0,0,0,0,0 -"Tfru31013_t",0,0,0,0,0,0 -"Tfru31014_t",0,0,0,0,0,0 -"Tfru31015_t",0,0,0,0,0,0 -"Tfru31016_t",10.6298844078158,8.25716387963077,11.5162568274691,9.22191812044654,6.82619762988302,7.52633385629115 -"Tfru31017_t",0.26103690348456,0.488901641759598,0.374654147941139,0.675029858834422,0.225936336566501,0.636613773447724 -"Tfru31018_t",9.15855126247451,10.1502286529986,11.7581509999972,10.6118272228688,8.73006674413488,6.51996714444545 -"Tfru31019_t",7.49137117707175,7.30171710374992,6.3936102487143,11.8309731643835,11.9838899473663,10.7172357499815 -"Tfru31020_t",43.2653440372955,41.8087731105305,53.174101236064,42.3677599891606,34.17550682961,28.0985201560066 -"Tfru31021_t",12.6774029631277,9.15895509429297,16.0335559556088,12.4683512594306,14.3860111037415,11.5035582605468 -"Tfru31022_t",32.1454496328046,30.5727466475718,35.3586779004822,38.8390330932237,36.7076320192157,24.1116954945919 -"Tfru31023_t",0,0.0451664467628832,0,0,0,0.0411688277470715 -"Tfru31024_t",0.0527703371679946,0.127073187846076,0,52.2921434588811,26.6739227901371,7.91478471382376 -"Tfru31025_t",21.0304121984153,21.4358161643395,22.0390922814699,53.2902843603083,70.5950303116925,69.1990739767166 -"Tfru31026_t",0.250766943242839,0.429084084819717,0.387237444597362,2.86575424091433,3.98618405282002,3.24925033776713 -"Tfru31027_t",0.141961452243355,0,0.115146202317001,0,0,0 -"Tfru31028_t",314.72229086992,358.346389725936,317.739476158479,484.275466354064,426.41736843959,319.834519850322 -"Tfru31029_t",11.1667579634381,10.8393887507981,15.6544053098002,29.0110514168369,26.7479056379597,12.2550119282886 -"Tfru31030_t",0,0,0,0,0,0 -"Tfru31031_t",86.4106732506317,98.6455844819889,81.027201883526,101.795788483391,119.250704682043,116.959228126764 -"Tfru31032_t",0,0.492215365085289,0,0.634298130123344,0.530757987722596,0.448650071723389 -"Tfru31033_t",46.9851849469178,57.0925422630913,47.453568849773,48.9365911759322,52.9424253090854,60.3561541078606 -"Tfru31034_t",8.05578955342647,9.42221576949647,8.52291996328674,5.47581755623985,12.1521767216917,14.9873707521853 -"Tfru31035_t",0,0,0,0,0,0 -"Tfru31036_t",0,0,0,1.45640520380924,0,1.03014066748119 -"Tfru31037_t",5.94990469170875,9.71170438231733,8.70305969787836,4.0342736714124,4.68167753997988,6.29022299815861 -"Tfru31038_t",19.2489336712763,15.9815700672809,18.2847339484743,23.5020207370952,21.7098967292816,21.841955473866 -"Tfru31039_t",0.318824959284431,0.383871945068223,0.274556796840356,0.989360650785024,1.10381547352287,0.816423944562892 -"Tfru31040_t",0,0.503235112060747,1.07978680547057,0,0.542640629234391,0.458694476310507 -"Tfru31041_t",72.0604692891315,72.2439742188838,67.8377104602238,50.5634011784028,50.4965932180505,59.5104339444903 -"Tfru31042_t",0,0,0,0,0,0 -"Tfru31043_t",2.21602174948306,1.88495230559288,2.16467496595471,1.09478858365083,0.830197435130414,0.992152540504522 -"Tfru31044_t",0.866086358468531,0.695190773370975,0,0,1.4992545220272,0.950490615871821 -"Tfru31045_t",7.76728874473824,6.26567065935183,8.11975836984999,9.87305171358753,6.92353531457776,6.61583440633504 -"Tfru31046_t",1.38004725702583,1.38467156092371,1.48553831555306,4.01483364705114,5.74842506417923,6.18436946918379 -"Tfru31047_t",2.09278518647734,0.959907544725759,1.02983225576418,2.78323699090947,2.58768129246687,6.56210603128588 -"Tfru31048_t",293.220217897143,306.571980522931,309.970387613611,239.244931177061,262.850159518678,260.752345229159 -"Tfru31049_t",0,0,0,0,0,0 -"Tfru31050_t",0,0.0770668628765538,0.0826808182484959,0,0,0 -"Tfru31051_t",0.0657872958272885,0,0,0.0680492120808807,0,0 -"Tfru31052_t",12.6928721426426,15.3924304930073,12.0314071119754,23.8027267874736,22.3674108066134,21.9136300250564 -"Tfru31053_t",13.4287686655127,14.7456897159902,12.6743773497934,11.8902510096157,8.64755437545227,12.4187716784753 -"Tfru31054_t",0.138860126894954,0.780222372097342,0.239159391627881,1.72361343128498,0.961505379415789,0.81276112167111 -"Tfru31055_t",0,0,0,0.151391713984816,0,0 -"Tfru31056_t",25.6760937049464,24.4062283573537,26.5720190014436,8.73647893705945,6.33565667652914,5.52032038655135 -"Tfru31057_t",19.2684350393228,22.1478851340188,21.6373425737463,12.5963461694596,11.8743709070283,10.9396528498324 -"Tfru31058_t",20.9154464991155,20.5658199948065,22.6643218072251,7.75238648251709,14.1807082280539,18.3630054253079 -"Tfru31059_t",22.2109626258758,22.6317927796729,22.3974408337535,15.2370575477979,11.3055086714099,12.5456081015483 -"Tfru31060_t",0.907675139187307,0.404762935276018,0.95534558900573,1.14752374801936,1.74583059587801,1.84468967065959 -"Tfru31061_t",5.95690252139614,5.04229904295458,6.5910149484727,5.11609007491964,5.93709945014208,4.93939243125596 -"Tfru31062_t",7.96092168173192,7.48106681236193,9.36369821458312,8.16768794062306,7.45064814663824,5.77714737967495 -"Tfru31063_t",0,0,0,0,0,0 -"Tfru31064_t",0,0,0,0,0,0 -"Tfru31065_t",15.8620991106845,20.2772078022994,16.6951652232452,11.546000228794,18.3055831850218,13.324593388928 -"Tfru31066_t",0,0,0,0,0,0 -"Tfru31067_t",11.2488470592277,11.2008194773974,10.5453077511853,12.813897310125,8.99679768684287,6.45904018514478 -"Tfru31068_t",0,0,1.73629718279345,0.695190750448126,1.74513226321253,0 -"Tfru31069_t",391.563216486722,432.141941804389,424.225250313987,1703.13130055554,1133.90400793418,334.710721826809 -"Tfru31070_t",11.0236600737834,8.21231364700841,10.3616934533117,13.1168066154392,11.7863778526263,10.0157473130461 -"Tfru31071_t",5.82730937142988,5.06725760243237,3.76364996362373,9.54380365733184,2.9421786718395,4.61876172105729 -"Tfru31072_t",0,0,0,0,0,0 -"Tfru31073_t",8.66937548992824,11.4322158382603,11.5539841225632,19.0024498786937,18.5804417914132,15.4040199073477 -"Tfru31074_t",1.7429538749263,1.39903537379636,0.900569078432787,1.08172834639773,0.754292990853932,1.02016696807266 -"Tfru31075_t",0,0.135681096613651,0,0,0,0 -"Tfru31076_t",0,0,0,0,0,0 -"Tfru31077_t",0,0,0,0,0,0 -"Tfru31078_t",0,0,0,0,0,0 -"Tfru31079_t",5.96844442079174,6.4047790510511,5.35389448090536,3.36744712355462,2.7590559873205,3.70510586682148 -"Tfru31080_t",4.92616178826538,3.68277262237053,4.88681898601522,4.72086274313216,3.9920506653633,4.75254414869089 -"Tfru31081_t",0,0,0,0.151128424047452,0.126458859684033,0.213791512439575 -"Tfru31082_t",0,0.317334141256398,0.340450428082042,0.613403603486715,0,0 -"Tfru31083_t",19.4404177652936,16.128966683693,19.8713318043754,20.4467867828905,18.8059140385735,18.7054581678719 -"Tfru31084_t",106.028570296653,145.040730326667,106.139701279108,151.526707370014,282.627601852345,315.706898199122 -"Tfru31085_t",0.71650641169678,1.72537752708703,1.07978680548409,1.29699766906395,2.01552233718155,2.75216685789751 -"Tfru31086_t",0.616715653297738,2.09010863837309,0.413066893778171,5.59951766913172,8.36268519484746,9.62584949972636 -"Tfru31087_t",1.37400148925265,0.787774591319913,1.18322432657018,1.82731213655505,3.56773535206706,1.14887962292295 -"Tfru31088_t",0.190932674480562,0.459773897843077,0.164422081744168,0.789989489338951,0.330517474174178,0.419079953361666 -"Tfru31089_t",91.0547251342707,108.689407154705,100.09321883072,226.692636071177,156.83156794743,52.3980090755922 -"Tfru31090_t",0.31963364656226,0.384845621530032,0.871635132137758,1.59801298097099,1.70603185781725,1.05235042188472 -"Tfru31091_t",1.13018444087149,1.05837339712756,1.13547087841264,1.36388319908294,1.79339077915137,0.826884212910911 -"Tfru31092_t",0.917143851216675,0.88340836266792,1.57960078531515,1.1384128012308,1.27011081778723,0.805219124363027 -"Tfru31093_t",0,0,0,0,0,0 -"Tfru31094_t",0,0.891191696259709,0.956110783710581,2.67970002991627,4.16422896977158,1.35385594331228 -"Tfru31095_t",16.2459090969175,13.0990170895362,15.3135966725492,11.4300744058536,11.9078421009094,8.94134581098003 -"Tfru31096_t",10.2179803680442,9.51405931022471,8.51126070205105,7.07182099257867,4.9526457430434,5.76319888686071 -"Tfru31097_t",10.3798578725525,8.78318324627797,10.8760753767232,10.3665084541374,9.69222879227746,7.48205232213971 -"Tfru31098_t",13.5500607695882,9.57120716370099,12.1354104203437,8.97020323378417,10.789796253686,10.3102680999085 -"Tfru31099_t",0,0,0,0,0,0 -"Tfru31100_t",9.3397809683515,8.91208546168883,7.87883009968651,8.08361337928229,7.01154482933309,9.2737980225845 -"Tfru31101_t",0,0,0.425563035102553,0.511169669572263,0.427728495990112,0.361559175449281 -"Tfru31102_t",0,0,0,0,0,0 -"Tfru31103_t",0,0,0,0,0,0 -"Tfru31104_t",1.26015565157171,0.674335050169846,0.36172857983717,0,0,0 -"Tfru31105_t",26.5504492626744,27.3551010917956,28.3240303080048,6.96830351445207,6.5168068021135,4.63887243972662 -"Tfru31106_t",0,0,0,0,0,0 -"Tfru31107_t",0,0,0,0,0,0 -"Tfru31108_t",15.5236565773327,11.5443228697555,15.1375546997076,7.55642120237258,14.0290297461974,10.6895756219787 -"Tfru31109_t",15.6507554156658,14.728517155744,15.6465038816078,11.1647336823064,10.2764747858866,12.3719820635535 -"Tfru31110_t",0,0,0,0,0,0 -"Tfru31111_t",0.203414955863069,0.326554503714211,0.525513675308237,0,0.176062577041935,0.297651621435243 -"Tfru31112_t",0,0,0,0,0,0 -"Tfru31113_t",0.234012191563921,0.187837061328648,0,0,0,0.171211865811637 -"Tfru31114_t",0,0,0,0,0,0 -"Tfru31115_t",0,0,0,0.0343337984303772,0,0 -"Tfru31116_t",0,0,0,0,0.0868052260067478,0 -"Tfru31117_t",0,0,0,0,0,0 -"Tfru31118_t",10.9376390810472,9.71341346505041,7.81574216822693,6.54750291441036,5.92184770902654,6.5040589622372 -"Tfru31119_t",0,0,0,0,0,0.236404076255299 -"Tfru31120_t",18.7081931465828,15.5833730081267,16.4145742110985,13.326923528134,14.5122168282359,17.0449325568947 -"Tfru31121_t",9.19790704308986,9.1521760088642,8.76032887597585,9.55799594063978,8.65815704294818,11.9084676959279 -"Tfru31122_t",41.7659399571639,41.3160531145561,40.0285491113548,61.6564620157788,64.4307375611468,57.9642020657215 -"Tfru31123_t",2.46707443378285,2.91829697136873,3.13088106196005,2.55189804129584,2.58488163728182,1.71000166441236 -"Tfru31124_t",1.33275576843098,1.08854530781662,1.00675919798823,1.76554845516053,2.08447702888585,2.24100273789465 -"Tfru31125_t",18.9023347735757,16.0650409011052,18.6183827857367,12.6514493219135,12.6179906317083,13.3776894916234 -"Tfru31126_t",0,0.114294076299974,0,0,0.246487607858709,0 -"Tfru31127_t",2.65695468704879,1.67568197707868,3.81340370310269,5.03856248094949,3.83280805894754,1.52736970954101 -"Tfru31128_t",611.819038435292,572.22374506693,753.357764373468,306.622880060407,534.559021770065,415.217648803369 -"Tfru31129_t",398.891375422324,265.677869390225,391.374004801268,175.757811951425,180.417809210867,169.837665309728 -"Tfru31130_t",0,0,0,0,0,0 -"Tfru31131_t",121.265069644937,72.8101723444077,245.177312243526,322.673126997036,39.299097174532,25.1604218203137 -"Tfru31132_t",3.51313041923492,1.20749879095902,7.32540507130476,16.6521246227623,4.32866312598908,4.79039916240043 -"Tfru31133_t",0,0,0,0,0,0 -"Tfru31134_t",2411.60377251782,2133.26996472116,4026.72544717425,892.512948225797,603.918862581158,532.421753975284 -"Tfru31135_t",217.633180742139,130.088257693201,469.392676767709,434.494219080545,112.792341172178,82.7600411729046 -"Tfru31136_t",4.27408922690433,3.7119360559808,4.94774704698047,2.53666349787737,4.48776019979617,9.63755733724688 -"Tfru31137_t",0.365262507701946,0.586378304495518,0.314546591162756,0.755642120237258,0.948441447630249,0.801718171648405 -"Tfru31138_t",4.48276713997842,3.46496270838261,6.29093182325512,2.57605268262702,8.33478847917491,9.59632356973091 -"Tfru31139_t",0,0,0,0,0,0 -"Tfru31140_t",6.95553073177109,7.39210947688499,8.06443919896002,9.80727007116441,10.8969868451135,9.66610561561907 -"Tfru31141_t",16.7356493256105,17.6515675538507,21.6706341196609,7.48696611759745,9.54046609216473,11.0350294932528 -"Tfru31142_t",7.04355293053294,7.81241826416285,6.06557069848912,41.8598089168018,29.9279542163813,39.9148101921294 -"Tfru31143_t",8.79780126353967,9.44346004549969,9.62628828478381,59.0269764642007,61.9635428995943,53.6146969491689 -"Tfru31144_t",270.125673003577,300.23471310639,293.389703523317,511.901035407189,340.188923956936,141.180514339664 -"Tfru31145_t",18.9570184807316,22.3044283710952,19.1154543636228,28.2400292862053,31.3433832307508,24.1829743579191 -"Tfru31146_t",13.3881078520235,15.0449254221161,13.546807372388,4.84694746447006,6.66302159092167,12.7337972548671 -"Tfru31147_t",0,0.347595386685488,0,0,0,0 -"Tfru31148_t",9.76644334927662,15.2220101618475,10.0434797562013,5.59055767286143,6.97593314566266,8.81045439949206 -"Tfru31149_t",2.34084641158832,3.17224646995824,1.11990272395409,2.9594033501552,2.70144313256913,2.09323733154847 -"Tfru31150_t",13.1546497435718,13.9186593985235,12.1005290052292,14.5346820636384,23.2891316322018,14.874107004248 -"Tfru31151_t",16.2669774130701,14.4316290991763,17.6025882162801,17.7118662577905,23.1572752606112,20.0446564529334 -"Tfru31152_t",17.0135431219064,20.6775507374735,12.9957407401454,17.2008008948744,22.213497062919,25.809699034646 -"Tfru31153_t",0.514611802581608,0.309801707581859,0.443159056462076,1.59691596619819,1.67030270256476,4.04746948320711 -"Tfru31154_t",27.5443858267041,22.3304393662801,23.2455087370771,24.217710574817,17.8804535208981,28.213470084239 -"Tfru31155_t",71.5076039560407,93.9903293866079,69.2477246202851,91.4130694806501,43.5925749721618,22.6313961944086 -"Tfru31156_t",0,0,0,0,0,0 -"Tfru31157_t",0,0,0,0,0,0 -"Tfru31158_t",0,0,0,0,0,0 -"Tfru31159_t",0.236871363077389,0,0.0679940939543552,0.16334369140467,0.0683400792465405,0 -"Tfru31160_t",11.982356527561,12.5463931645147,11.4139057860971,8.79374754268139,8.54604943183431,11.3869533144485 -"Tfru31161_t",1.53677518484355,3.2894392691212,2.64679448661344,2.11948399578743,3.10363969651362,1.49914780064336 -"Tfru31162_t",1.17992102207089,0.94709978956439,1.42252812295516,2.19688088327405,3.06378557521007,1.55389196190281 -"Tfru31163_t",27.5894690347626,31.5449236774278,25.3630176358902,28.9968686899915,26.7973935238578,17.8544087737589 -"Tfru31164_t",0,0,0,0,0,0 -"Tfru31165_t",14.0826643142889,17.0950338895246,17.4442188790179,19.8051865370195,18.0133388071806,19.5916705970122 -"Tfru31166_t",0,0,0,0.204467867828905,0.171091398396045,2.3139787228754 -"Tfru31167_t",0,0.0566668109386425,0.0607947193003646,0.511169669572263,0.916561062835955,3.87384830838515 -"Tfru31168_t",0,0.136505070884584,0.73224408873921,2.99044604263935,5.7405666567094,5.47462071328061 -"Tfru31169_t",0,0,0,0,0,0 -"Tfru31170_t",33.4336674186256,45.4624983090832,38.2526953649679,85.6252418320708,93.2081634610245,91.7471693462504 -"Tfru31171_t",11.4940562993714,12.0130947179901,11.1353976120896,20.8061839852501,19.2752138383002,20.2644900330195 -"Tfru31172_t",0,0,0,0,0,0 -"Tfru31173_t",22.2659468821868,22.8072352743379,24.4555309429608,21.7015931995007,22.8116508980007,20.1134904690897 -"Tfru31174_t",0.173217271693706,0.27807630934839,0.298332849350243,3.22511172967242,2.09895633083808,2.02771331385988 -"Tfru31175_t",2.36920845292363,2.84553332221243,2.2820562170634,1.2888694196234,1.5493653896947,2.00303934257675 -"Tfru31176_t",1.92390175812475,5.14759580282325,2.20902949518882,3.31674976440018,1.66520254164089,0.703798394958524 -"Tfru31177_t",0,0,0,0,0,0 -"Tfru31178_t",0,0,0,0.812138685323525,0,0 -"Tfru31179_t",0,0,0,0,0,0 -"Tfru31180_t",0,0,0,0,0,0 -"Tfru31181_t",21.6026683126245,22.156723076975,19.6366943339874,18.6211808201036,16.10092267046,7.46361440747719 -"Tfru31182_t",45.8970429006949,39.3182577175709,42.1824062749415,50.945488314079,40.306236387311,31.910773871522 -"Tfru31183_t",32.4283847131321,27.3996182913256,34.2948089236143,34.3279857105526,32.663781082044,27.1944734220543 -"Tfru31184_t",0,0,0,0,0.460214204546323,0 -"Tfru31185_t",0,0,0,0,0,0.078299439269271 -"Tfru31186_t",4.02733224138486,4.31468304123472,4.04415583426726,7.30839710906257,6.44019055238707,5.97738903462137 -"Tfru31187_t",83.7550260821725,80.3463038500242,82.0211308688536,66.5608165485584,81.5544332931907,103.313611197528 -"Tfru31188_t",4.28326370561262,3.12553905061342,2.93406727562015,3.32289901077682,5.3924519540816,5.48413627651342 -"Tfru31189_t",0,0,0,0,0,0 -"Tfru31190_t",2.2107993887223,3.00311155946085,3.51477162594821,4.57362335933077,6.0349546903868,6.71885269357165 -"Tfru31191_t",0,0,0,0,0,0 -"Tfru31192_t",29.0706639132905,23.2316648381685,25.1445476228276,7.94806498420286,9.86514046391829,18.6456507705018 -"Tfru31193_t",15.1659870539265,10.2552048111169,10.7647892467954,13.0253190419453,12.1720111386245,12.9789458933161 -"Tfru31194_t",2.60313843517161,2.564372725998,2.34359361584645,5.63006593810576,6.65690124040949,7.79134561179436 -"Tfru31195_t",4.41054478050099,6.99622614551215,3.25555721853453,4.77943641050065,6.54424598864871,7.06848188003344 -"Tfru31196_t",0.547893761552918,0.293189152247759,0.078636647790689,0.850097385266915,0.237110361907562,0.334049238186835 -"Tfru31197_t",0.112993109309277,0.136046076026196,0.43786916187418,2.04536619633824,0.831294790458254,0.909368739865709 -"Tfru31198_t",0.0745433689187644,0.598345208668896,0.385159091219701,0.771063387997202,1.16135687464928,0.709002464723079 -"Tfru31199_t",6.57741666463589,10.0208217464601,6.90804963643597,18.0627931443266,16.7440538037271,19.6831616207897 -"Tfru31200_t",0,0,0,1.04278612592742,0.436283065909914,1.84395179479133 -"Tfru31201_t",13.6550773869629,18.5823221575329,13.1608460694255,28.5297603523378,16.8282847453591,8.40265080511299 -"Tfru31202_t",9.02750128978077,8.35504995239121,9.0743383699114,8.83942350212532,8.31412598515388,11.5173534665105 -"Tfru31203_t",12.9330334227713,12.2130539487424,16.3783962410103,16.6378122722356,20.1303527608283,15.2668712634729 -"Tfru31204_t",0.0918480795606204,0.147449354993406,0.184555397876107,8.70888558764696,5.82982716837835,1.43358740119831 -"Tfru31205_t",1.45134205718115,2.01628420316565,1.77859899720602,1.44350238915755,0.917982087739576,0.530927427071701 -"Tfru31206_t",100.084691923259,116.349735527623,95.1324868924162,59.3820947095616,55.8960922682452,77.3095012366256 -"Tfru31207_t",0,0,0,0,0,0 -"Tfru31208_t",0,0,0,0,0,0 -"Tfru31209_t",0,0,0.0416737995204112,0,0,0 -"Tfru31210_t",0,0.0569539738319127,0,0,0,0 -"Tfru31211_t",0.680245965760708,1.31044868049201,0.995851960685325,4.78471366822296,6.35878152743195,19.8579424054451 -"Tfru31212_t",11.5002603933072,16.4281160714232,15.6105605219753,15.1216085546319,17.377090405538,14.5462554577506 -"Tfru31213_t",25.4213218022692,18.1282279720985,21.7976702655126,13.7683882427646,10.7654263016732,16.1246001102965 -"Tfru31214_t",0.322496647875038,1.29430911740853,0.833156038012674,0.500377219734844,0.279131839993547,0.589875814072723 -"Tfru31215_t",1.69148409606941,1.42237498597666,1.45662515370672,3.41596605648962,2.71892610586236,3.06441333746083 -"Tfru31216_t",9.78484976342904,9.60794002880519,8.86255472650434,8.71281283756416,7.18093750900851,6.85776770019141 -"Tfru31217_t",0,0,0,0,0,0 -"Tfru31218_t",2.93628501337098,2.61877689386348,2.1071567757505,1.34988495265685,0.988343515006278,2.7450415068091 -"Tfru31219_t",0,0,0,0,0,0 -"Tfru31220_t",0,0,0,0,0,0 -"Tfru31221_t",1.04369093858848,0.396667676570498,0,1.56142380469117,1.71091398396045,0.369468698456373 -"Tfru31222_t",0.348590774985259,0.111922829903709,0.120075877124372,1.65865013114319,2.11202037439101,3.82562613027247 -"Tfru31223_t",1.36443767378221,0.782291241496341,0.671421957934421,0,0,0.142610347625006 -"Tfru31224_t",0.347725069418243,0.0558224379279674,0.299444188606928,3.52487032080873,1.02329085547303,1.72997684941792 -"Tfru31225_t",81.1638044916156,82.2559870059482,92.4592078089446,76.7065380786457,85.285568922442,81.9178121404547 -"Tfru31226_t",0,0,0,0,0,0 -"Tfru31227_t",17.725119302893,23.1936896236762,24.7104396098958,16.2589397288311,17.7732087625191,16.1981964988304 -"Tfru31228_t",0,0,0,0.25939953381279,0,0 -"Tfru31229_t",9.15378552211014,8.39189083452518,8.9631860490626,4.90247902122955,4.98701144661038,6.01732056928587 -"Tfru31230_t",0,0,0,0,0,0 -"Tfru31231_t",0,0,0,0,0,0 -"Tfru31232_t",0,0,0.0563879313853733,0,0,0.0958145905321554 -"Tfru31233_t",10.1523113923199,10.3085660237445,9.0486786738724,10.0813160210505,8.65536394604765,9.24761323067556 -"Tfru31234_t",0,0,0,0,0,0 -"Tfru31235_t",0,0,0,0,0,0 -"Tfru31236_t",0,0,0,0,0.270311688915684,0.228494646194713 -"Tfru31237_t",0,0,0,0,0,0 -"Tfru31238_t",0.0889940431900926,0.428602786124902,0.613099287859609,4.51063913933999,3.62028674042478,2.86489685631422 -"Tfru31239_t",0,0,0,0,0,0 -"Tfru31240_t",0,0,0,0,0,0 -"Tfru31241_t",0,0,0,0,0,0 -"Tfru31242_t",0,0,0.318703594570194,0,0,0 -"Tfru31243_t",0,0,0,0,0,0 -"Tfru31244_t",19.9056434133621,15.5483623032792,21.9341151595532,16.826272944901,13.8017360553243,9.86572934792814 -"Tfru31245_t",28.1167186161265,38.1145897922087,27.5045391342317,22.142071430208,21.0274615521125,19.0796495113225 -"Tfru31246_t",8.28420908744994,6.3085706337002,6.31081466719714,8.12960106601652,7.53797121883965,9.94630550919892 -"Tfru31247_t",0,0,0,0,0,0.50175559041941 -"Tfru31248_t",6.44047984268143,6.23398806244953,6.76966677034612,10.7766322671943,10.9849550604901,11.988112006723 -"Tfru31249_t",8.78290302610587,8.88896202496615,8.87879241418507,19.1572451164696,19.8310484504507,17.8807446767644 -"Tfru31250_t",4.77331686201406,1.14943474460769,4.1105520436042,3.94994744669476,1.65258737087089,1.39693317787222 -"Tfru31251_t",2.27055072355263,2.55153802766969,1.17317377244487,1.87889392058994,0.786095614252098,0.664487133258138 -"Tfru31252_t",0.653777251139669,0,0.56300168068042,2.7050223759466,1.41466623187391,3.10912753985568 -"Tfru31253_t",0,0,0,0,0,0 -"Tfru31254_t",5.84060905925091,6.25085861112498,6.60459485657753,5.9803979600238,5.41268784953779,4.74800321692524 -"Tfru31255_t",1.54444044513563,1.35501271303902,1.29906800796589,1.52323753609178,0.963714909734027,1.57670097887245 -"Tfru31256_t",0,0,0,0,0.085747457922546,0.0724823818707284 -"Tfru31257_t",0,0,0,0,0.626843483041352,0 -"Tfru31258_t",133.04810800908,153.785006916562,137.489595956209,168.292783520714,193.135867035535,155.192323000537 -"Tfru31259_t",2.08290190163104,1.11460338775087,1.79369543566482,2.1545167872513,3.60564516970493,2.03190280242841 -"Tfru31260_t",285.165657798733,281.252165334815,248.941159291667,183.782958529133,178.623139303697,142.114090188628 -"Tfru31261_t",0,0,0,0.0831567883514685,0.034791313070966,0.117636478136608 -"Tfru31262_t",0,0,0,0,0,0 -"Tfru31263_t",0,0,0,0,0,0 -"Tfru31264_t",22.5673205178285,15.99157621599,31.2005133920413,84.0721238287056,72.1797447273136,48.049810672247 -"Tfru31265_t",13.4243385562622,7.99469389376622,9.6958176038829,17.4693552023923,20.614749677874,33.2671715555137 -"Tfru31266_t",1.21568709722582,1.23260024402714,1.26728976942192,1.58840232433727,0.941458761166355,0.608564948776017 -"Tfru31267_t",7.36310588387554,4.27245015947104,5.11844030603809,1.10114691227816,0.921400350390526,1.49281560296377 -"Tfru31268_t",0,0,0,1.80101230730124,0.94188917510776,0.159235906285953 -"Tfru31269_t",0,0,0,0,0,0 -"Tfru31270_t",0,0,0,0,0,0 -"Tfru31271_t",2.42337625302252,2.62772261452825,2.782527537209,2.9024917472676,2.17111174837086,1.08870298275467 -"Tfru31272_t",0.848589664358055,0.990758567742657,0.597898479069702,0.478781508690273,0.534169655230994,0.507975701044444 -"Tfru31273_t",9.05772256295929,14.7226789929266,11.7001157898815,15.4590935110533,17.8354712478896,14.7449873977025 -"Tfru31274_t",249.222462443083,254.353569815179,244.825212653537,246.686836748926,300.255235305511,375.731435550844 -"Tfru31275_t",2.86103450305239,1.87895215217604,4.47961089581634,3.49747668654706,2.4763228715217,3.23500314875672 -"Tfru31276_t",9.0778985326493,12.336176747183,7.40600694263778,11.9434429904799,8.95999977382131,9.43823667476132 -"Tfru31277_t",0,0.0853588671101071,0.0457884278274898,0.164997804735351,0.59827846591022,0.427921302588706 -"Tfru31278_t",0.0976864846179621,0.0784110523453309,0.252368776630583,0.101045167241029,0.169101963530975,12.0785989658812 -"Tfru31279_t",0,0,0,0,0,0 -"Tfru31280_t",0.889260089318467,0.951722505385257,1.27631371891974,2.65730072273966,2.39457529069442,2.36751627087782 -"Tfru31281_t",94.4626023861193,92.4059595618258,87.2627940845508,86.1882224408466,95.3519745879826,97.6188654602342 -"Tfru31282_t",0.189639676684983,0,0.163308613921973,0.196159918346015,0,0.138747313377828 -"Tfru31283_t",0,0,0,0,0,0 -"Tfru31284_t",0,0,0,0,0,0 -"Tfru31285_t",3.18440435729125,2.37016454573826,1.99436846223112,2.81477991721735,2.70609758317659,3.26175713758172 -"Tfru31286_t",0.97497535904968,2.67386238461931,1.74917108238477,9.49668215907463,17.2291023771646,34.7152755692501 -"Tfru31287_t",8.72277954563114,8.09202060203815,11.6368853768894,6.13838641503372,8.10682008995727,5.75417581353323 -"Tfru31288_t",0.114846721492068,0,0.0989005002972439,0.534579353688012,0.745528137234987,0.336104223247452 -"Tfru31289_t",3.61860761413685,2.81038356182543,3.70571769798264,2.32674436324511,1.57447905043159,2.17524775171348 -"Tfru31290_t",8.63658034258017,2.52087856174933,6.08515336455141,5.68497079726468,8.83439184311041,4.59551825383921 -"Tfru31291_t",39.3379575442302,34.2941255122707,40.5791482355246,64.1341844962116,65.3684071255203,45.160726960407 -"Tfru31292_t",39.3379575442302,34.2941255122707,40.5791482355246,64.1341844962116,65.3684071255203,45.160726960407 -"Tfru31293_t",0,0,0,0,0,0 -"Tfru31294_t",13.3873348665817,15.6514255293463,11.6120721933872,12.4427905711123,13.6023588678611,15.1888254074421 -"Tfru31295_t",6.4153378625469,7.84680785652184,7.10303393134806,6.31991591471161,5.81710754546553,6.25826063686755 -"Tfru31296_t",0,0,0,0,0,0 -"Tfru31297_t",0,0,0,0,0,0 -"Tfru31298_t",0,0,0,0,0,0 -"Tfru31299_t",0,0,0,0,0,0 -"Tfru31300_t",0.671849327448988,0.609621394451182,0.528254532446492,3.92797277383415,4.04527645720829,4.1461132149921 -"Tfru31301_t",3.76579144394095,2.88937233098484,4.33978915823104,5.72833512374981,5.46432317224019,5.51038110506748 -"Tfru31302_t",12.1686789223871,10.6934438518044,13.1912247708082,13.6549360555128,12.1247976830643,11.9170124803241 -"Tfru31303_t",6.08719255420233,4.97179231904886,6.52950741570484,10.7887123904214,8.44220056916077,5.75583822950401 -"Tfru31304_t",0,0,0,0,0,0 -"Tfru31305_t",7.06411090295006,8.76307535661996,8.79812390152949,7.30699103759655,7.63015322589727,8.8844561806022 -"Tfru31306_t",6.85663138467439,6.19832534229018,4.8154042323807,5.37092695604453,5.35846871759404,7.30567272104331 -"Tfru31307_t",0,0,0,0,0,0 -"Tfru31308_t",0,0,0,0,0,0 -"Tfru31309_t",0,0,0,0,0,0 -"Tfru31310_t",0.331184139703472,0.443058508652987,0.285199931540475,8.90684601646281,5.35082165811546,4.68459063065691 -"Tfru31311_t",0.18892888329411,0.404398830686564,0.488089538011173,24.884076718158,21.0401378612228,13.2237422564996 -"Tfru31312_t",0.0910188264046018,0.14611810404547,0.235143172158507,5.2723025507345,5.90849222521552,6.39289896352358 -"Tfru31313_t",11.1994642097646,9.38245477618086,10.0411291867069,7.02814501139108,7.00225848301839,8.50989861886792 -"Tfru31314_t",0.652688831742655,0.336793310295705,0.401474561417502,0.144670661199697,0.282462214333093,0.477530986442446 -"Tfru31315_t",35.8315151647672,35.3685818821072,38.3619934812906,29.0497575906773,32.0611474948208,21.4330612074689 -"Tfru31316_t",0,0.265486240224349,0.569651306830188,0,0,0 -"Tfru31317_t",27.4233872746796,30.1042433111538,29.4033659896213,36.7457968183947,36.3049836989322,38.3278551631627 -"Tfru31318_t",0,0,0.0954428970546621,0.114642274178476,0,0 -"Tfru31319_t",10.9679296453482,10.2091621830669,10.8675043254266,12.4043571802219,12.638426735626,13.9220898387706 -"Tfru31320_t",0.840103767714474,0.674335050169846,1.44691431934868,4.5187398790188,1.74513226363966,2.95032287166613 -"Tfru31321_t",0,0,0,0,0,0.723118350898561 -"Tfru31322_t",0,0,0,0,0,0.539693208231609 -"Tfru31323_t",7.54019836392946,7.46459143045155,7.57546764056899,16.7688120474491,15.4999593348698,12.9182362088348 -"Tfru31324_t",17.4142967234741,21.1309849729336,20.7371525930944,28.7786454456351,36.3274833557918,30.6081067151597 -"Tfru31325_t",21.4719259066688,15.3514822873862,24.5530851677185,18.0836979472981,26.8106912011679,17.1690111246865 -"Tfru31326_t",48.6019763603944,52.0459938050552,45.1068255931182,66.8946133355003,62.4167831430403,48.1407549109952 -"Tfru31327_t",0.293486032389336,0.29446945422264,0.31592015706303,3.11166165669753,0.38103324533617,0.10736254991507 -"Tfru31328_t",13.5674512219129,19.0400484753839,15.3202692636919,21.3761861821128,20.0643549028089,18.7353390914627 -"Tfru31329_t",24.8481396084563,29.5377747327918,28.0212280155554,32.3116827752157,35.537611237263,19.8246460566768 -"Tfru31330_t",14.6849237680922,14.932996017166,13.8096916270276,5.87091384570395,5.92627578358418,10.2167123571995 -"Tfru31331_t",72.862080327843,64.1577067874865,80.6174714068383,114.904158425651,90.2030746460664,64.4509217373747 -"Tfru31332_t",0,0,0,0,0,0 -"Tfru31333_t",5.91090974290124,6.76354017385923,7.03962805072336,4.55308313466312,6.64003668176267,6.25692225777498 -"Tfru31334_t",0.117387578162246,0.0314082463982229,0.0336961881543707,2.26657440816392,1.38857364557572,0.486681889635967 -"Tfru31335_t",0,0,0,0,1.11013502772232,0 -"Tfru31336_t",0,0,0,3.29995609470701,1.38064261363897,0 -"Tfru31337_t",0,0,0,0,0,0 -"Tfru31338_t",0,0,0,0,0,0 -"Tfru31339_t",13.7603203332543,16.5261915004679,14.7007920377175,8.133389323736,8.32806345025083,10.9002076539389 -"Tfru31340_t",26.2276298213299,21.874771139656,25.7621330030374,19.2873043616656,20.3953465770895,17.6899440475916 -"Tfru31341_t",0,0,0,0,0,0 -"Tfru31342_t",17.5068985423585,19.892427731668,17.9151096374024,14.8751065550088,10.9710333443743,7.52718256331148 -"Tfru31343_t",0.633244046015936,0.169430917128102,0.36354631139414,1.31003282151685,1.09618860781386,0.308869647368732 -"Tfru31344_t",0,0.486007243365655,0,0,0,0.110747855543023 -"Tfru31345_t",3.52824510844898,3.827100171225,3.44894446155757,8.08820112807871,15.1040107948381,13.1860344008915 -"Tfru31346_t",10.129359671011,11.5861636351714,10.4947628664137,10.7723133455828,13.616722165111,15.5399604911452 -"Tfru31347_t",16.8791883977309,19.5319892145065,16.3063775918438,18.5673715265845,23.2491485913238,28.0212970345648 -"Tfru31348_t",8.68635593787796,11.1965064933861,8.95448861785597,11.9362940200497,11.5244583447902,12.8496766580427 -"Tfru31349_t",6.7875933550441,8.12774696231205,4.59946273700242,7.71155302838155,5.48965447171415,7.81542482560564 -"Tfru31350_t",12.1593966379724,10.2037540486225,9.04321449592908,10.2906525584941,14.3514166417732,15.7706403501887 -"Tfru31351_t",0.57020617718177,0.991669191426244,0.736551406908264,1.17962231439753,1.06932123997528,1.18202038127649 -"Tfru31352_t",6.96342695164404,9.55608493556199,10.0587626478785,9.06164414241738,12.4430107924396,10.0250498647301 -"Tfru31353_t",3.37027930296413,3.95891418886406,2.83153487152383,3.06101602522725,2.91709160181123,3.96936785571519 -"Tfru31354_t",10.8440694052165,14.8073571847385,12.5585293296584,7.60687208577121,4.63901380665834,6.56600045623026 -"Tfru31355_t",40.2789477671253,34.1786258305205,49.0563416491418,17.8559268138225,16.933361005633,26.1016007481832 -"Tfru31356_t",8.52458234886746,10.3133595908329,8.40486994327541,8.81767680012153,4.91887770388629,5.96572639491313 -"Tfru31357_t",2.33593897676319,3.34823758773508,2.29897012011707,3.96955989677765,1.44416771237972,1.28179370045078 -"Tfru31358_t",23.8778624736081,17.8541802720439,23.2270471000378,7.42776774896178,4.24458854950577,4.22865943211355 -"Tfru31359_t",0.102326890099205,0.0821358160986414,0.176238041333578,0.317535361122843,0.265702232588255,0.598928719380051 -"Tfru31360_t",3.52139303832415,2.01896721607738,1.29962364013354,1.56105707474164,0.870824482854121,0.736108500914703 -"Tfru31361_t",0,0,0,0,0,0 -"Tfru31362_t",1.10539969436115,4.19442854172631,1.03845525312106,27.6496321268633,25.7455716725149,21.8362712541079 -"Tfru31363_t",0,0,0,0,0,0 -"Tfru31364_t",45.5537602925727,44.5140622508975,54.8633523839479,41.9982624391199,47.8568523509566,57.4800952403847 -"Tfru31365_t",0,0,0,0,0,0 -"Tfru31366_t",18.9481082936108,16.0979122468321,15.4738429489392,16.7807701460697,14.6312195612634,15.9815386167926 -"Tfru31367_t",0,0,0,0,0,0 -"Tfru31368_t",0,0,0,0,0,0 -"Tfru31369_t",0,0,0,0,0,0 -"Tfru31370_t",18.5743023693464,18.8075191477391,16.2887920332356,2.73211375116209,4.64601642196156,8.10391255317353 -"Tfru31371_t",0,0,0,0,0,0 -"Tfru31372_t",0,0,0,0,0,0 -"Tfru31373_t",0,0,0,0,0,0 -"Tfru31374_t",0,0,0,0,0,0 -"Tfru31375_t",1.80279778479501,3.47297021546702,1.24198654021346,2.2377384676554,0.93622975517149,0.791395620082117 -"Tfru31376_t",2.12615489557849,2.49429577285407,2.8168351447411,2.98873375914736,2.64242393369621,2.55273447689044 -"Tfru31377_t",0,0,0,0,0,0 -"Tfru31378_t",1.16329841405376,1.50213105697076,1.65510969702739,1.30792961811085,1.00687442463657,1.44318924336468 -"Tfru31379_t",669.925389329916,831.386666216333,535.086964858195,39.4994744669476,55.1949360459478,71.9138694258883 -"Tfru31380_t",2.99259761815389,2.00902929454747,2.48336978385622,1.68844903809491,2.40181739652479,2.94586426629012 -"Tfru31381_t",17.5297242869556,18.3185505754801,18.228841818566,13.8690765284612,14.9743834453231,15.878163546911 -"Tfru31382_t",0,0.0890799273672187,0.0955689774999127,0.172190575615491,0.288165829530987,0.162391175234816 -"Tfru31383_t",6.63029597974339,5.87772230734414,5.93899855326953,7.79472989005437,7.67471003423146,7.77323577519008 -"Tfru31384_t",112.922269482637,222.41643368437,110.457316692168,128.080806487324,142.145822602525,112.136889824287 -"Tfru31385_t",0.847273000798151,0.470831299575532,0.561254584696927,1.14606698608521,0.733343658757291,0.762948764330522 -"Tfru31386_t",1.46982134317112,1.96632861970624,1.63801621058341,1.93771006818988,1.57151704701684,1.41274751573492 -"Tfru31387_t",10.7156092820724,11.3536003344923,10.8887684746903,13.5225241670009,9.645714042226,6.11514625823656 -"Tfru31388_t",2.44550754300446,2.74237284957771,3.12796117838648,4.57558124604281,3.57966271258848,3.9994388243191 -"Tfru31389_t",10.1447302049769,10.5359471714053,8.53298973116019,7.34325180159081,6.51584359349757,8.94436663289132 -"Tfru31390_t",0.332275715641849,0.222259410075757,0.143069972249375,0.286416756187491,0.143797978216847,0.607762621882443 -"Tfru31391_t",0,0,0,0,0,0 -"Tfru31392_t",0,0,0,0,0,0 -"Tfru31393_t",6.47419417321246,6.9289473044975,6.7699660813562,6.69679163439625,6.27073519809357,6.87957550350283 -"Tfru31394_t",4.86755401894653,6.94594043093403,4.26932873198376,11.002214132639,6.86568487125759,6.5949635006843 -"Tfru31395_t",0.728413671428735,1.46170892377857,1.15000415555169,1.50691636694713,3.36248991067371,2.22055851973908 -"Tfru31396_t",1.2188033935754,1.74698199525867,2.62393788482921,5.31298630653865,7.08300659681035,8.78982202698458 -"Tfru31397_t",0,0,0.196591619476723,1.88910530059314,1.18555180953781,0.835123095467089 -"Tfru31398_t",13.0699596955579,10.1271540807882,17.4358380209283,26.022765282811,20.2055556603962,12.0498048940201 -"Tfru31399_t",7.53939278718118,9.50985327162603,6.64714911666594,5.57043870687722,4.19502947990302,6.56677989598052 -"Tfru31400_t",11.1926050557571,8.24422161649655,10.0921139829179,4.76717795290746,6.49637794066487,7.80355775225172 -"Tfru31401_t",2.70355205343156,5.70653022193791,5.60485284610632,5.38586397976019,10.9200767391039,15.0182804104975 -"Tfru31402_t",36.1104150151614,42.9216327945531,38.3920517250493,122.751280927805,116.31984604909,87.7668262244749 -"Tfru31403_t",0.152468923360159,0,0.131298940049789,0.315422300643501,0.263934099159053,0 -"Tfru31404_t",0.286724835397432,0,0.493827412746989,0,0,0 -"Tfru31405_t",0,0,0,0,0,0.0274642805301062 -"Tfru31406_t",0.507104889968496,1.22112986952286,1.31008338774025,1.39877414611323,2.04827730474138,1.97875444109063 -"Tfru31407_t",14.3357156692562,2.84581764291862,21.5045981407785,212.224515842414,102.199641739142,53.4576850600056 -"Tfru31408_t",0,0,0,0,0,0 -"Tfru31409_t",18.7865724433788,18.6902313117942,19.2542141708604,9.44255153398841,11.909039069457,15.2936684292404 -"Tfru31410_t",12.8337459992563,13.1478391691407,11.6334819646125,6.72483515045318,7.89255797625976,13.2813948368555 -"Tfru31411_t",9.95867688172173,9.01846267704353,4.3979158642817,3.96195336598562,5.08333866055118,12.1435528532357 -"Tfru31412_t",0.655599519470326,0.265623826844945,0,0.68587261500485,0,0.709212228765897 -"Tfru31413_t",5.26828790504038,4.2287528342118,3.07854110499719,2.9193340591473,1.9542354576032,3.44149271144332 -"Tfru31414_t",4.4765742506988,4.91078810958502,4.62601380964053,4.78483864768352,4.26209034192634,5.78623120923271 -"Tfru31415_t",0,0.315109836527965,0,1.6242774547156,1.35913727697793,1.00526967005758 -"Tfru31416_t",3.08609547323685,1.10095518395077,4.72461818562834,1.41875663391485,0.593582402598523,2.25790015688735 -"Tfru31417_t",0,0,0,0,0,0 -"Tfru31418_t",0,0,0,0,0,0 -"Tfru31419_t",0.0182829982092377,0,0,0,0,0.0267530184227977 -"Tfru31420_t",2.42337625302252,1.78309748842988,2.60861956613343,1.46224016055527,0.873964474979796,0.886515285957371 -"Tfru31421_t",2.0834573439319,1.56445731639404,1.73629718321841,0.486633525432794,0.465368603637242,0.68840867005543 -"Tfru31422_t",5.77760288072329,5.12289722240187,7.60772622928233,4.69066130215251,7.41384658183581,5.92286262221392 -"Tfru31423_t",5.88399526025702,2.62387179054415,3.37801008408252,2.02876678195995,0.848799739124347,4.78327313823951 -"Tfru31424_t",3.33686075961357,2.99354344701567,4.39483321297496,3.2485549094312,3.90751967131154,4.16468863309569 -"Tfru31425_t",115.851568824009,122.737642964533,135.551395013929,40.193041256303,21.3314703888859,18.6895899257937 -"Tfru31426_t",5.90513426228543,5.43512786453671,6.23786866823235,14.6595987712383,15.810320414105,12.0971532929141 -"Tfru31427_t",0,0,0,0,0,0 -"Tfru31428_t",0,0,0,0,0,0 -"Tfru31429_t",0.115082707906092,0.0461873322034141,0.0991037205033341,0.0595197560460854,0,0.0420993560454642 -"Tfru31430_t",0.913156269254864,0,0,0.708414487722429,0.395183936512604,0 -"Tfru31431_t",382.216970919618,419.256022769115,412.739212689341,571.943963453987,445.607405679208,352.183127864385 -"Tfru31432_t",74.8409327628316,79.0232842657612,90.2251949593327,67.8012500484394,108.281613298853,135.168477188002 -"Tfru31433_t",22.3954100105926,24.1137401238341,21.4889051609584,21.5363464109528,16.3638531191259,20.0445353403519 -"Tfru31434_t",9.41495598052051,12.7891129702441,6.23669962787562,6.74215164978073,6.26843483041352,5.82858323651105 diff --git a/runs/kallisto_collect/run.cwl b/runs/kallisto_collect/run.cwl new file mode 100644 index 0000000..1d3f6bb --- /dev/null +++ b/runs/kallisto_collect/run.cwl @@ -0,0 +1,27 @@ +#!/usr/bin/env cwl-runner + +cwlVersion: v1.2 +class: Workflow + +inputs: + in_kallisto_results: Directory + in_metadata_file: File + in_metadata_sample: string + in_metadata_factor: string + out_folder: string + +steps: + collectResults: + run: ../../workflows/kallisto_collect/workflow.cwl + in: + in_kallisto_results: in_kallisto_results + in_metadata_file: in_metadata_file + in_metadata_sample: in_metadata_sample + in_metadata_factor: in_metadata_factor + out_folder: out_folder + out: [outdir] + +outputs: + outdir: + type: Directory[] + outputSource: collectResults/outdir diff --git a/runs/kallisto_collect/run.yml b/runs/kallisto_collect/run.yml index ba0dd18..d39e600 100644 --- a/runs/kallisto_collect/run.yml +++ b/runs/kallisto_collect/run.yml @@ -6,4 +6,4 @@ in_metadata_file: path: ../merged_isa_metadata/out/merged_isa.tsv in_metadata_sample: "Sample.Name.2" in_metadata_factor: "Factor..Photosynthesis.mode." -out_folder: out +out_folder: results diff --git a/workflows/deseq2/deseq2.R b/workflows/deseq2/deseq2.R index be32d9c..0d5f022 100644 --- a/workflows/deseq2/deseq2.R +++ b/workflows/deseq2/deseq2.R @@ -11,8 +11,8 @@ library("readxl") # ## Tests # inKallistoResults <- "../../runs/kallisto/kallisto_results" -# inMetadataFile <- "../../runs/isaSampleToRawDataSeq-run/rnaseq-samples.xlsx" -# inMetadataSample <- "Input [Source Name]" +# inMetadataFile <- "../../runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx" +# inMetadataSample <- "Input [Sample Name]" # inMetadataFactorList <- list("Factor [Photosynthesis mode]") ### Read arguments from CLI diff --git a/workflows/kallisto_collect/Dockerfile b/workflows/kallisto_collect/Dockerfile new file mode 100644 index 0000000..39a6609 --- /dev/null +++ b/workflows/kallisto_collect/Dockerfile @@ -0,0 +1,29 @@ +# Use an official R base image +FROM rocker/r-ver:4.1.3 + +# Install system dependencies for R packages and other utilities +RUN apt-get update && apt-get install -y \ + libcurl4-openssl-dev \ + libssl-dev \ + libxml2-dev \ + git \ + build-essential \ + && rm -rf /var/lib/apt/lists/* + +# Install BiocManager +RUN R -e "install.packages('BiocManager')" + +# Install Bioconductor version 3.14 +RUN R -e "BiocManager::install(version = '3.11')" + +# Install sleuth from Bioconductor +RUN R -e "BiocManager::install('sleuth')" + +# Install other necessary CRAN packages +RUN R -e "install.packages('jsonlite', repos='https://cran.r-project.org')" + +# Set the working directory to /app +WORKDIR /app + +# Default command to run when the container starts +CMD ["R"] diff --git a/workflows/kallisto_collect/kallisto_collect.R b/workflows/kallisto_collect/kallisto_collect.R index b2023ff..1386c9f 100644 --- a/workflows/kallisto_collect/kallisto_collect.R +++ b/workflows/kallisto_collect/kallisto_collect.R @@ -4,14 +4,8 @@ #### Load required library ################################################ -if(!"BiocManager" %in% row.names(installed.packages())){install.packages('BiocManager')} - -if(!"sleuth" %in% row.names(installed.packages())){ - BiocManager::install('pachterlab/sleuth') -} -if(!"tidyverse" %in% row.names(installed.packages())){install.packages("tidyverse")} -if(!"openxlsx" %in% row.names(installed.packages())){install.packages("openxlsx")} -if(!"jsonlite" %in% row.names(installed.packages())){install.packages("jsonlite")} +library('sleuth') +library("jsonlite") ################################################ #### Read arguments from CLI @@ -25,7 +19,6 @@ in_metadata_sample <- args[3] in_metadata_factor <- args[4] out_folder <- args[5] - ################################################ #### If it does not exist, create out dir ################################################ @@ -36,7 +29,7 @@ dir.create(out_folder, recursive = T, showWarnings = F) #### Read ISA sample metadata ################################################ -samples <- read.table(file = in_metadata_file, sep = "\t") +samples <- read.table(file = in_metadata_file, sep = "\t", header = TRUE) ################################################ #### Read Kallisto results @@ -57,12 +50,10 @@ path_df <- data.frame(path = kal_dirs, out_name = gsub(".+/", "", kal_dirs)) s2c <- merge(s2c, path_df, by = "out_name") # Build a sleuth object - so <- sleuth_prep(s2c, full_model = ~condition, num_cores = 1) save(so, file = paste(out_folder, "kallisto_sleuthObject.RData", sep = "/")) - ################################################ #### Extract expression tables ################################################ @@ -74,21 +65,20 @@ expression_data <- kallisto_table(so) write.csv(expression_data, paste(out_folder, "/kallisto_df.csv", sep = "/"), row.names = F) ## as tpm matrix (gene x sample) -tpm_table <- pivot_wider(expression_data, id_cols = target_id, names_from = sample, values_from = tpm) +# Replacing pivot_wider() with base R operations +tpm_table <- reshape(expression_data, idvar = "target_id", timevar = "sample", direction = "wide", v.names = "tpm") -## write to file +# Write to file write.csv(tpm_table, paste(out_folder, "/kallisto_tpmMatrix.csv", sep = "/"), row.names = F) ################################################ #### Summarize mapping stats ################################################ -mapping_stats <- c() -for (i in dir(kal_dirs, pattern = ".json", full.names = T)) -{ +mapping_stats <- list() +for (i in dir(kal_dirs, pattern = ".json", full.names = T)) { id <- unlist(strsplit(i, split = "/")) - - z <- data.frame(ID = id[length(id) - 1], read_json(i, simplifyVector = T)) + z <- data.frame(ID = id[length(id) - 1], fromJSON(i, simplifyVector = T)) mapping_stats <- rbind(mapping_stats, z) } diff --git a/workflows/kallisto_collect/kallisto_collect.cwl b/workflows/kallisto_collect/kallisto_collect.cwl deleted file mode 100644 index 6428310..0000000 --- a/workflows/kallisto_collect/kallisto_collect.cwl +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env cwl-runner - -cwlVersion: v1.2 -class: CommandLineTool - -requirements: - - class: InitialWorkDirRequirement - listing: - - entryname: kallisto_collect.R - entry: - $include: kallisto_collect.R - - class: NetworkAccess - networkAccess: true - -baseCommand: [Rscript, kallisto_collect.R] - -inputs: - -- id: in_kallisto_results - type: Directory - inputBinding: - position: 1 -- id: in_metadata_file - type: File - inputBinding: - position: 2 -- id: in_metadata_sample - type: string - inputBinding: - position: 3 -- id: in_metadata_factor - type: string - inputBinding: - position: 4 -- id: out_folder - type: string - inputBinding: - position: 5 - -outputs: -- id: outdir - type: - type: array - items: Directory - outputBinding: - glob: $(runtime.outdir)/$(inputs.out_folder) diff --git a/workflows/kallisto_collect/workflow.cwl b/workflows/kallisto_collect/workflow.cwl new file mode 100644 index 0000000..28a198f --- /dev/null +++ b/workflows/kallisto_collect/workflow.cwl @@ -0,0 +1,52 @@ +#!/usr/bin/env cwl-runner + +cwlVersion: v1.2 +class: CommandLineTool + +hints: + # DockerRequirement: + # dockerImageId: "sleuth" + # dockerFile: {$include: "Dockerfile"} + DockerRequirement: + dockerPull: quay.io/biocontainers/mulled-v2-fdd016122f200fdc6dc30f6ea2fd0000e8067dff:f9531f6ac1f44332eff70b5912d7d5f3ebe8df38-0 + +requirements: + - class: InitialWorkDirRequirement + listing: + - entryname: kallisto_collect.R + entry: + $include: kallisto_collect.R + - class: NetworkAccess + networkAccess: true + +baseCommand: [Rscript, kallisto_collect.R] + +inputs: + - id: in_kallisto_results + type: Directory + inputBinding: + position: 1 + - id: in_metadata_file + type: File + inputBinding: + position: 2 + - id: in_metadata_sample + type: string + inputBinding: + position: 3 + - id: in_metadata_factor + type: string + inputBinding: + position: 4 + - id: out_folder + type: string + inputBinding: + position: 5 + +outputs: +- id: outdir + type: + type: array + items: Directory + outputBinding: + glob: $(runtime.outdir)/$(inputs.out_folder) -- GitLab From 26181b2f504bce3de7ef1da036c83da9cfdb007e Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 14:26:47 +0100 Subject: [PATCH 7/9] adapt isaSampleToRawDataSeq to start from Source (not Sample) --- runs/isaSampleToRawDataSeq/rnaseq-samples.csv | 14 ++++---- .../isaSampleToRawDataSeq/rnaseq-samples.xlsx | Bin 7193 -> 7183 bytes .../isaSampleToRawDataSeq.fsx | 31 ++++++++++-------- 3 files changed, 24 insertions(+), 21 deletions(-) diff --git a/runs/isaSampleToRawDataSeq/rnaseq-samples.csv b/runs/isaSampleToRawDataSeq/rnaseq-samples.csv index 9404289..e162828 100644 --- a/runs/isaSampleToRawDataSeq/rnaseq-samples.csv +++ b/runs/isaSampleToRawDataSeq/rnaseq-samples.csv @@ -1,7 +1,7 @@ -Input [Sample Name],Characteristic [organism],Term Source REF (OBI:0100026),Term Accession Number (OBI:0100026),Characteristic [organism part],Term Source REF (EFO:0000635),Term Accession Number (EFO:0000635),Characteristic [plant age],Term Source REF (DPBO:0000033),Term Accession Number (DPBO:0000033),Parameter [growth day length],Term Source REF (DPBO:0000041),Term Accession Number (DPBO:0000041),Parameter [light intensity exposure],Unit,Term Source REF (PECO:0007224),Term Accession Number (PECO:0007224),Parameter [humidity day],Unit ,Term Source REF (DPBO:0000005),Term Accession Number (DPBO:0000005),Parameter [temperature day],Unit ,Term Source REF (DPBO:0000007),Term Accession Number (DPBO:0000007),Parameter [temperature night],Unit ,Term Source REF (DPBO:0000008),Term Accession Number (DPBO:0000008),Factor [watering exposure],Term Source REF (PECO:0007383),Term Accession Number (PECO:0007383),Factor [Timepoint],Term Source REF (NCIT:C68568),Term Accession Number (NCIT:C68568),Factor [timepoint-ZT],Term Source REF (),Term Accession Number (),Factor [Photosynthesis mode],Term Source REF () ,Term Accession Number () ,Parameter [biosource amount],Unit ,Term Source REF (DPBO:0000013),Term Accession Number (DPBO:0000013),Parameter [extraction method],Term Source REF (DPBO:0000054),Term Accession Number (DPBO:0000054),Parameter [extraction buffer],Term Source REF (DPBO:0000050),Term Accession Number (DPBO:0000050),Parameter [extraction buffer volume],Unit ,Term Source REF (DPBO:0000051),Term Accession Number (DPBO:0000051),Parameter [RNA quality check],Term Source REF (DPBO:0000062),Term Accession Number (DPBO:0000062),Parameter [library strategy],Term Source REF (DPBO:0000035),Term Accession Number (DPBO:0000035),Parameter [library selection],Term Source REF (DPBO:0000036),Term Accession Number (DPBO:0000036),Parameter [library layout],Term Source REF (DPBO:0000015),Term Accession Number (DPBO:0000015),Parameter [library preparation kit],Term Source REF (GENEPIO:0000085),Term Accession Number (GENEPIO:0000085),Parameter [library preparation kit version],Term Source REF (GENEPIO:0000149),Term Accession Number (GENEPIO:0000149),Parameter [adapter sequence],Term Source REF (GENEPIO:0000083),Term Accession Number (GENEPIO:0000083),Parameter [next generation sequencing instrument model],Term Source REF (DPBO:0000040),Term Accession Number (DPBO:0000040),Parameter [base-calling software],Term Source REF (DPBO:0000017),Term Accession Number (DPBO:0000017),Parameter [base-calling software version],Term Source REF (DPBO:0000018),Term Accession Number (DPBO:0000018),Parameter [Raw data file format],Term Source REF (DPBO:0000021),Term Accession Number (DPBO:0000021),Output [Data],Data Format,Data Selector Format -CAM_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,80,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CAGATC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_097_CAMMD_CAGATC_L001_R1_001.fastq.gz,, -CAM_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.7 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CTTGTA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz,, -CAM_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,93,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 6.5 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,AGTCAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz,, -reC3_01,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,82,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.8 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTCCGC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz,, -reC3_02,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,96,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz,, -reC3_03,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz,, \ No newline at end of file +Input [Source Name],Characteristic [organism],Term Source REF (OBI:0100026),Term Accession Number (OBI:0100026),Characteristic [organism part],Term Source REF (EFO:0000635),Term Accession Number (EFO:0000635),Characteristic [plant age],Term Source REF (DPBO:0000033),Term Accession Number (DPBO:0000033),Parameter [growth day length],Term Source REF (DPBO:0000041),Term Accession Number (DPBO:0000041),Parameter [light intensity exposure],Unit,Term Source REF (PECO:0007224),Term Accession Number (PECO:0007224),Parameter [humidity day],Unit ,Term Source REF (DPBO:0000005),Term Accession Number (DPBO:0000005),Parameter [temperature day],Unit ,Term Source REF (DPBO:0000007),Term Accession Number (DPBO:0000007),Parameter [temperature night],Unit ,Term Source REF (DPBO:0000008),Term Accession Number (DPBO:0000008),Factor [watering exposure],Term Source REF (PECO:0007383),Term Accession Number (PECO:0007383),Factor [Timepoint],Term Source REF (NCIT:C68568),Term Accession Number (NCIT:C68568),Factor [timepoint-ZT],Term Source REF (),Term Accession Number (),Factor [Photosynthesis mode],Term Source REF () ,Term Accession Number () ,Parameter [biosource amount],Unit ,Term Source REF (DPBO:0000013),Term Accession Number (DPBO:0000013),Parameter [extraction method],Term Source REF (DPBO:0000054),Term Accession Number (DPBO:0000054),Parameter [extraction buffer],Term Source REF (DPBO:0000050),Term Accession Number (DPBO:0000050),Parameter [extraction buffer volume],Unit ,Term Source REF (DPBO:0000051),Term Accession Number (DPBO:0000051),Parameter [RNA quality check],Term Source REF (DPBO:0000062),Term Accession Number (DPBO:0000062),Parameter [library strategy],Term Source REF (DPBO:0000035),Term Accession Number (DPBO:0000035),Parameter [library selection],Term Source REF (DPBO:0000036),Term Accession Number (DPBO:0000036),Parameter [library layout],Term Source REF (DPBO:0000015),Term Accession Number (DPBO:0000015),Parameter [library preparation kit],Term Source REF (GENEPIO:0000085),Term Accession Number (GENEPIO:0000085),Parameter [library preparation kit version],Term Source REF (GENEPIO:0000149),Term Accession Number (GENEPIO:0000149),Parameter [adapter sequence],Term Source REF (GENEPIO:0000083),Term Accession Number (GENEPIO:0000083),Parameter [next generation sequencing instrument model],Term Source REF (DPBO:0000040),Term Accession Number (DPBO:0000040),Parameter [base-calling software],Term Source REF (DPBO:0000017),Term Accession Number (DPBO:0000017),Parameter [base-calling software version],Term Source REF (DPBO:0000018),Term Accession Number (DPBO:0000018),Parameter [Raw data file format],Term Source REF (DPBO:0000021),Term Accession Number (DPBO:0000021),Output [Data],Data Format,Data Selector Format +DB_097,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,80,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CAGATC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_097_CAMMD_CAGATC_L001_R1_001.fastq.gz,, +DB_099,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.7 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,CTTGTA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_099_CAMMD_CTTGTA_L001_R1_001.fastq.gz,, +DB_103,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought,user-specific,,MD,user-specific,,6,user-specific,,CAM,user-specific,,93,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 6.5 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,AGTCAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_103_CAMMD_AGTCAA_L001_R1_001.fastq.gz,, +DB_161,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,82,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.8 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTCCGC,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_161_reC3MD_GTCCGC_L001_R1_001.fastq.gz,, +DB_163,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,96,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_163_reC3MD_GTGAAA_L001_R1_001.fastq.gz,, +DB_165,Talinum fruticosum,NCBITaxon,http://purl.obolibrary.org/obo/NCBITaxon_110664,leaf,PO,https://www.ebi.ac.uk/ols4/ontologies/po/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPO_0025034,28 days after germination,user-specific,,12 hr light / 12 hr dark,user-specific,,425,microeinstein per square meter per second,UO,https://bioregistry.io/UO:0000160,37,percent,UO,https://bioregistry.io/UO:0000187,30,degree celsius,UO,https://bioregistry.io/UO:0000027,22,degree celsius,UO,https://bioregistry.io/UO:0000027,12 days drought + 2 days rewatered,user-specific,,MD,user-specific,,6,user-specific,,reC3,user-specific,,78,milligram,UO,https://bioregistry.io/UO:0000022,Roboklon EURx GeneMATRIX Universal RNA Purification version 2.3 September 2011,user-specific,,Roboklon commercial buffers,user-specific,,300,microliter,UO,https://bioregistry.io/UO:0000101,RIN 7.6 (Agilent Bioanalyzer 2100 expert_Plant RNA Nano),user-specific,,RNA-seq,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000003,cDNA method,user-specific,,single-end,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_0000086,Illumina TruSeq RNA Sample Prep Kit,,,version 2,,,GTGAAA,,,Illumina HiSeq 2000,DPBO,http://purl.org/nfdi4plants/ontology/dpbo/DPBO_1000041,Illumina Cassava,user-specific,,v1.8.2,,,*.fastq.gz,,,DB_165_re-C3MD_GTGAAA_L002_R1_001.fastq.gz,, \ No newline at end of file diff --git a/runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx b/runs/isaSampleToRawDataSeq/rnaseq-samples.xlsx index 7932354fc2ad69ab4f57f3cabfac0a7d9309c5b5..1c05d363efc105474dc4887ac57f94beba0ac181 100644 GIT binary patch delta 5987 zcmchbXH=70m&fTHR9dLgqaY$ZbfgnPKteMhh!Q|rDAExgX(Av3i6RgXr8i$NARQrs zN&x9qLJ^T(lp@k6dgtDmcfQShn5>nRwR84<p0)pHpWoSQXR4&A0M}sDG@KL^3=9;e zo@l$`@ssv<6ciK}C@Cn;kbgtGt_1t|d*1f(@stVi_DW76px?=!)d${xR#)jSNyrnw zAywdL0ko-j-o6zsR;jnWpK<N!rMk?CktKNe^=1ypBQME-s!48P**kn*^#QUMs!PB0 z*TJ@7Kf=I`iAO^908)*|GK)_VnX<&?<Nhwy=RuyW<YY*ihJh7z%0r@h!<9ty<)^IQ zm+UQ1Y(+1o2nx6@Mh;JiJXAV4FVFFCd|cXW_q=vlPFdF=r;CHfub70*wp2Nrub|}# zXJhlMhh~Ku*+%Me3=?%*2H>0dhwA^H?-&D*Zax253JMUGj`9l7(MqA0Q6vaGYa;m| z+8r0PA^XnJi?w#%*q`BeCs=~|<>B+{aBdBvwqizbN-uKrt=pa){O#$F?R(t!5C)kG z6HUqJ^6GOXUQbenytdHJ$f@Rusb4?hH?=pXzP<NWwJu}YxnDs#JVHC$StqpwH3`5+ zG$if!bzKhJAfa-Axzw?@ocpsRU5T%*<M&240@aRxYCx-#)tt6hA`ue15Q9h%=fMwt zod#n(;?#Z9yDlwxWlZllW@X9{$@R%IH&UgGyIbnls_0E_F)kKN!@<nn`T_m!*uYSI zrvS(tE6QtKX51|$NDC~BW2G-I&M%D%Xj;A32nku(CmaH^O+!m}Du>ns)LKqjOBoJP zvA&837tI-hlWMC?oO*9m&10uDPA+6mxSJgPrukj~Q_jhPa%RWNDjwVH+#BzuU7<F# z#Mnsll<c^*T!V5JH5?8_r_FrHk4{aQI%nBr!Q>hHk<x%?V;0@ld9936F9e+E5&5IU zwHyZan*$tJIqo=>x~7{IS*N-_?dqy&JTts#;3&g<a9K@>+QHS`fUz%oBv-HlKB(R@ z&7HYZ`EDgAs`v7U`LpeS8_!<N!0~fQS7JN?(vXZYVpF;1_-Wa%g6D9(tE@s{713-h z<uWa{lpITtZVfAsx7Q31%aG?ei8J3Ub$Z_mY25{0>!p7u05VHg0j5RK@?d&Z{##3O zg7f!c`#Zci@UYQygRgqj#7xESxNp7*Tny9Nz<efDCrt6_-f=lfpCJ`GKnlV$UHYoi zUKDHED3~sKq<OaHm)}26XU#H~|HY9sGqs_>0o{|6e#gtuIN{7X;>_xEA~5K3^)y<3 z$!HL8V7^;yq}Lv1`pYZJHZ(NX+S0nnMYiu_k0{?mWiD<#pDN2x#XNmAa6qkFuV2o> zH>q;e^D7M!Kg(16`k_~0)hb5MCPYBfy##}3@Sc~+@M4)3)hOlerJ;MKeT-A{OVPE< z%0jxpUG5Hp0|%S_-K_;ft^ggaPv|DS;x9A6dcARN5Irqz?$!jRDL6DxGi=vTE5Zk- zHDGuWk&;9cu{lA?KJ#w&t9<6j1^o!#^HYP^IdsI$!KJ+=#e!FTf{b=E+GdAi1_%=U zL40Gm`BIGIJUY5h=Gx9J1x%1mu=t%AD@~80EG1LWJUYH_@P*GxT8&bpm<~>yDN6#_ z+sB}V&)rz`+UPTtBF&RF`t<Qi9UnbvG^KaSlZm7vQ{+zEW+*bAJ|?C*KmJ}&=Dnrq zhffotb+7@Ty-w1S=oIMPVrXF9^k69TN?e{(ZPG1yGwxj>lU=`3{J9~n7q`@=)eeNu z4Zw$XN971F!nMk!hTvB+N=!AIz0Uw6BhRuGhr|L7yUP|b)bg1hJn+a@53qb3718*E zjf0VIWm~}=Q3lCJDVHZ*+QzNO+(P@l=1<bPOMT!d2qToJvnyKLT8t)xn&g(NpDZyW zrD+Q{jQelp3aMe5oU*N;zSv%?s=SQ=xK>Avkq~ejKy{IKD!j3RFXJY_4O|6LXue6O z+r(jrl>KTrN)UW+3<ST8YT9SX<JP{%Iq+30aVhg<etGYtp#LFm@THchYj>!xrF40~ zlV{zknJubbXN`>7=kGqZSc$Ma{$AR18`)#GA9&IqnU&(aQ@391WIKf}o|(zJeLh3Z zO{(E#>?ZungrtOefxmPh1_%xgz8siSi?Q$wo$Ph{W~1I$b}!u=VO<Lf4OfJ9Ax>YP z|6V!$)3u~^XBu+zAr)?H7xoG0GppPYC2e?NBu-F8!;`NPTzSPIyBk?cBRQ_gtCsmG zJp-_aSD}_N!xvkiM#B$tKb?EBG|m|qPN-q9S!)rjc*}p`{bi+JAYe1wOk9=Kbil?3 zH<**v7^)`aZ@mXSmbg9~PaR=2c+#|0xj?JbRV~N0-t#C3DpPT@AucdyAug-nfPU|l zqR&k&0q+ArsjdcI7c8k4RAl;0c95RJME%J(U^(+tCUe{;RU5gmS>#m#jzbWPKXnBl z5qc-7Pk#_9ADN{{17FR@F`6da(bP?=41~mGUES}~AZzw$$<<er_1*QI&%zY2F>Qf4 z{3<l364p+w7Y+;9GzM}gctlF6wpX$8RoZ*ogdJlp9tVNvsk*Z2!F03X1x!a?&q#S9 zJfAg2ipLVPcGCQPWn7Ulfeq<OE!%A)y@Ay&Im=&X2;cS>f!S*_Pt4wZ*&h%hxTKGM zTtjgWd#!mPhqvn*^)&@rV;ns#b31oly;fEEsWv6EZ(3!%XHOMrT-L^xo5=fZyP@`{ zm0PQBPEGNB)kX#Cd~s{1Se&5$8~xc>cwbIoV=E@?C9~mknep{h9|szlkVr*_AiLw) zCf~eG>4O!4LLd|)QGM9D%GJLfu+qn7ZQ+ok)JloClB0w9w)1{!Mn){n!O-cMS_<S~ z#XOOqu*!V4l&1XXqmDyvZ#B-ZapY(NwjaXu)+YsY(Bt^AdF5YDBE0-8K{b_&=v^q2 zYTJy5SlWo8)0@J#;eEsW2D#g!zBhtS+U{sB`WQrY_5vJHnnIskyAP<&vLt<rI~bRK zpM-kb4_U9)y&Ua)u!j`=?t`GMg_pI}<Yr@^#HeDWsw@$-Y<%(YUu3~=X7dY}dN5W| z+FC7Vv<r79`&VVn7}ANC^LaG3B_@576q|XDb|sIm-*m>BGpaI?MjJrRzBc6e{nE+L z-f86*0B)o+%P3h+j?<w=XxECf=N6<CBq-`Uz^X>)Z2u+mQpBA4M62E9ujMxb`Wn?X zJzz_p6*xj2y;_ax;P@J1S|MC&w{AWRQmBhZu~lOwEL+&{s1GP2MiSM@{`4yZ40AP! zL=gqn!LS7elK`*8=1xqo*#%5CUC~1^7*Mnkh$24vkSc+`wVx)Tz@(RMnwcz3+-lwF z$rXX6YQxF)eQ9FXuUT6<qjV>jJc`)*_-sXn7|gR&oW_znO=6Q(Ao>&|Rdw^R^!^13 zLvk)hJox$3d$O7cTEmYRiBp!gJ!7t46TLE})OvSQCBES4R>MS)^6mFn@$<lG`h6jC zu$~WoK9`qAqLfMuMP#42dl?0-y&-B2A{#xvdg(!<`svNZ+Uyf9G(qkXFke9@B4+o+ zi3vH=Ao3fC97t~(n^jTR+&*=_!v&<gb8Cil0+`VYXBFkH-if(*aa^*Liat5Mz5SN4 z2f+x+l|g<Jz=@RrmgUJ+H3m%|-+6^1hF|$GTT#FyFld;re~!Qh<qFA5l1|7=MEA?_ zOfvOpU<zG%!&4;&6xR2aYN6@1D)^eX(qP{9|D*V1?ScO%@$I)d&PKmf?Zo(!Ina_S zoq6jm9dZkR0c~fXT;nex$gMt>N9002hesu>HE`p_?Pb!6neiw_*I#$e?$}Ryio&Lc zgc8=|shVmq67_6VC}P+(K!U8aIuUa^pHQJpRUVio@#83J;9pqj%-1(f)Ag}5f6k2{ z3d+g3_QWbG=0SYB3W~fNqJOKuED!uI)K4uOk^d<S%X9m@IpB?z_P&d9#~HVn*V$M~ ziNh9T)sgZetHLl>({$-f-3QVZs*%okRMEUqdd~nFk9zz<|6@^Sl62@|fGE-3DNzNF zT5&W=2YT+XAm_N#g^=?3vMAz{iB634DXi~^7f-W4M79|_F%^%_M7sE*7;DA#(vN;a zS`}ZDZlWve5+hA}%6i`MqSba?r=&k9)~SPPTzq0!L`9w+cf>*ABW^t#&*HTOX#El{ zrP{n?W!ipT_9~?}dm+X7I#^|}tSY@XJ0KHSRSg;hEA))LfS>p<hKQF^CG8Z!PcoxI zF;cQd>B?yl<GMIhx5QR}VY)Jb1=9MlrV0FcUh_Du^NQGa*d_1iOH?piMf{#E`6;zn z<$d$#ot|Rf?Lgk_eL_6zYVKIx!}m2%MX1wc0h8&Z4o+W(U<Tz<DS2D?F}?>l6}gbe z;0i5k6Cyh`KDzzACvXs~9C68eYdT3z<x(kCe9ZvZLchuoLHm3u51v<&XCKJ&p;lMf zb~kMkb?Wivv8FF}>E+Mvz{w7H1RG?xl;r-Ad>%+-7<~nkVMHRs$PX)t^5r1I=mVS# zqk1xoKEVHi5zy?5{hLPZaPonuC&OqKOoq`HumV#I&NP!1@)wK<@Ko(&vP}W`3r6uc zGK}i~f>AsC4~!xu(Oc6)BG=_hsf-qUu>jR<GWjk{CBRSm=!M9;5ut(JGN)`#wTk-K zQn*NA+8c!fVqt=7YjO2NmTe_p?5RD~d9oCuEq++Q)#*8z?P>4fD52U}@PvPYMh@AK zZTCE8&isv{eHWTY_xEsL11CT1?)MWDa-KnRU^0qAy=fd*-@*Sv5t@u59>_l^^2Poq ziZlhzKOkL!Bmkn(NQ~5XBRMoihJ0z<&8bg-&m`iS_inTFnv}JPc-KQY&sC&ZMO|nl z$CfSG2*$jAmHG)pvZ{1GLlO@wIrg7Y_8Vf0#|4#;i2NZa6LKyBt{>q=VS;2SiF07f z&RMY3N1sQyo+n4XSk=$TxSl_~Q0Nyhx%UBnH$Ug%ai&wNzF6L50-W@2s~zsjNe9W4 z=SO3HH!<2VIAMT~Y*V5!zuOiTHV7ddMV41k<hoouZWIA!C^|xr=39#Os!#~p$30)b zr!;N+P_ADhF}S1LGg{;u;V^_WpGy@&Zdy{lo}_~VY%ZbM|5QFO_q+7l{;Tvq{8Ree z5OV29|7YoQLkKLDT#!(6Kzys4;b<@sH=Ect2VVVh{FI#LdI$UjdtvJ{L-S}Hu49|t zu*r<P9g%Wqb~yXEaw*kN&@9;E+MkQtqaB|2&?%i<7Z#6j1>L|!y1pA1(6@)`=D?dR zJTcW6DPLoLG`j(fC%Iq}WJuzPQjOLhoxCog?pl{X=zLa)A=stTpOb-yQIO@+bj!lB z1EKtK7i)h_OE;*+(}T{}JpuQ*!o$KeFa8|-(Ud%Qhva?2`>ldBWFCIK>f4>N1?WT< zNNPyi{+Rmyw?wUD(o$Uh&uxqCGgh^`|5~nNR`Tq<`AyN`3BOJgbP-1PsV+FwZxZ#Z z{gm?G=LpSd#4anW-8m(o#|vwUiJ0ioVmN!<(%%1aLoCpWhh8_n=e5hqyh^%TkzXFZ zyWD*@4STZ!aU-$xYeazHyAC^a{Wv_w&ZiQw*u7}p#{suh6}#s=?f38nElw@vQ)=jE zU+aY(-yt@HNI}u(7jFRdg4>g&ch}*rGaT_5PP*{t#b!l;s=Ud-u$nWiwU7%jcHiex zd9=s&^>xFt3ZAKwM{*AHVl#nXEp!@u`Q&Rx{RwwJmBD@uBrKaQ1d0sf7GWnai_t6% z&CW(Ug~9&QJxzV}_dt$(_Z@>Vu#9b1B@ruPLTgK##gqM(tDI?zeL3>2FhGiQFuTzg z=%9T<0geY@E5`uOqAY7sNZ@PvE^pyHk-36`r-p0Josn<rb28e{0{RyN<lCmHL=D!G zr((eY^dK*mOrYs7?9nP6W#VcBHR;t=Gp#0tdFIiKU3XhzOK<0c^Txd$W^Ts!7ws=H zX!2-O+4NJh2VLykml=v>{uDcRaCQ8yq_qR#>31{kBYR&U+3}rO6RyuLFJUu2bt!eM z;_4vV8>GW`xY$qykClp+t?@M`zsuaiarT703Q!Gw$7X5?(gL68QT-r7>UdUH;tB8P zPE+CbPDe0Z0zE46L;JNm{*s(haPKEYsq^EGk~EBFMRplG7n6H5z3~O(tQ*~J{L}tA zOx5<YljsIOD|Pnrv5{jHB5RGx-5HqbNl(Edvkm1=9QA(U2@hv5qm>1fC!w*;9G(1h zCiI=}628{4Y|57wsxjoqz2}mgr#les2wkE6%=G1&|2u^y`N2e3APbBc>3k*D2f<D% zdkIHuy@2Z-77SAlK7BG?jb6#3>wbjtr!KsGcq9a9M7!Cmpd>D(`n5(|w@l%gBp-V9 zwsywFRUGe+Q4fBr4QA@BbfqH+52%lcOd2THCOPeMO-%lazMwm34>C6I2H!5Kl4Bh| zpda>dZW@m#tb3EgT$-{grR)SB%6k@1u-ROGoxJKx%|6-mJ1X!3rL^0t{TEau-RHFN z0IQS6u)bZCz9y6D;uTMl?p)W2wC9`;#A?DmD!}?@<xY2ECU<>Hm9VzTXq0-F_9A4v z=^Jwr=U%%WyzsJ_?M=qvX2&&QYsL-vzKM`8Ja}FYMQ^{xFnHrjmu<b*xk?<K85nG* zzu)X~c1P<Q6`l*rsUkh+^ny&Qp2dZx0Yg^HH!@gU+4x^h=1Iphd1ob`J%2ADqB=?k zQKvVVC>8XkD0I5S!oPfvb5B5WL$&v(+}i5k%jfM(;#JmiHKB;|GWMV6mVK<A@)T@` z6o(HHJxyvg+~z}ynGD9WziUZfK^$_trJtYgowTd7#m}&Whr9{K-`eIz)@=1RO<#ZC zbY}gQCtqGQRLu9*(Tg*x_KB}FTG!C@t<|iR%-d5|;5}wX$%t(AK+@Oon>$neEhO!w z#Al{&_WC~c|41Gx2`4OU|1*`P_%oI5Kj<2%p5x-DJgXw7B8yVFjZ$z?l~+W$C}UYc z=NWzvZn^90Xt4?)1z-}P6PFcq>z2U{VJ0*CH}E|1=H3r&Y4ud+n5}L*;n!wP#I-k5 z${NhX)Un$w0|Iz)T0^@m=Sq9F;uqW!ih*y6En@4xG);$bo7XJ%$2mbBItD2+=JLSQ zz+Lsw*zrd0SE(^~7`GK2ULGntq4DjX2DS4n%AVCIZ7HU)X{$Rm^FV$*zDS|YFou}D zKlVf6=Pwx~yNgqkSbRk0kbh1>phZc|MP^2pRVFv>u`B-_qgY{{RVq`@YF1t;%0Ef{ zo<?J}`IK0HXE^rHq&A9ARp|FWf1pc4L6HHXpdgR1|M?U|UByoDiT&~UE!{=(F#GqH z`5zAoih`&QSbly!;lH(OBCko4efa*(2L!@uf&|#E!6>OXssEmmV*!2vDkdJRERV$h UT<IsT?D1eX_$BB>{ygbF0B6BbT>t<8 delta 6044 zcmb7|cQl*-`~THmrB-b*qfO1)6m4mZ2(2Az$Ep!Cwwt0pwAB()s%TMa6RTFy)`(fu zu26f{su4B5(f2sN_n*I<lXIWk_wzchT-W0o=f0jRrYQpVpk(B%BqY?-B&%wk7T@vX zN}otbNJKA?kT4Rjf$ow4NFO(QB+^YH(8K-N^Ip$SQkSA_+9p)SZhkRHj;6c4%C<-G zv=V%|Mqx+!MMoL5$Y;aD2_<)wr_|T_gbIvewKNxJqkj50m>nsuH!iX7wf?Fu+_2sz z?q~L~Rw=M_`SI%x3tf3K%3dg!G$#EWtDl7Yl<;#J|9&!i2J6z4iLN(R(VHL5x&U2G z-tw5;`IG#Q!Q|WV>PMf*1&2%j*X{Xi*fZy;vT=>!31zt5AYj{R;k>2kM9Z<u2)kY8 z%h?yj%^AJUMF68W2d3En>u(ITelLgMB@z-YH01?Jfc%Vv-tHAjIPspYbaHBq>k@;| zdYg+qG(kA_s{vqkUHDhyl1u+1Q9>;F?$2$dqN#&*wHI3_&$AXQXL7D~$@W`&{E~0r zj>NSSgnRSK<T1m0Pnw>AfWy<FQxEG#N#xT4QWgGd2kK1|9|{WF!t;$1kUcl9D(uGK z)<;Ws0sBnj{UQ5_tL!m4;NEgV@z5rUDkCV#iQB(raX2bhchw;NSpLfTB$9kV5U2aQ z_T**LUHMWQ#trsDGj2x{*|M<XA6G2Jie}1caiP*Otx{>}XJOL?&G!HvfRBB^dmCmb zJlDnQ3V$~@Bbkm!dbjYJmv?AD$fzf(mVo5|(r1qM(q|fmmR*`B*H8^7t<81RRPNDU zH{=~vr(3<0ny<&G^tpNPwhCT_)TAo(*;_X&P1RoYqq0<SXO8W%f8ZVN!&aFp0%sF8 zI!)tKqEk|QV#?`PTQf!<ZfZJ9@25wWF|NDVj$uBQt9Glervc-vq-4gc>g|dMZ8@)i z4Zid*aRG9--`GLrD*b|uC|pg`iuH;bT0$-67qBy+fvXq&65p|j-taXA_LV)8@EZrU z<GFx|=_b7&-teT?CsThFyD@~g7XI7OYvcLvk+$~5;m6g@gRG$599QZOKZKr}d|e0_ zjyZr_B0U+o&X|%Wsh4QH-}=O8yCEC`jMW`}c9uYmGvf*U6rg2;g$IbepSI3I^s0GL z8P6}hGM|iIukeo!z2=s|B*0u%r7%+Os{*Rk*_auxn&P_c;<$sEo|v;zm=A$>XR-_3 zG6;F^l-$=VSR3A9c0rZCkfU8I=OnPaR^}2oY16?xTIP~pWh_@=ESL4M(rkAGa7y90 zg~SDj_hf)BUR)FSQJLP@)!k5BFYRbSxf?1dmi_jjk)8B0rOL3DgYLY;ZRe1A9y3?# zQmpPG!O+6K`G|umi@d7p^3pPm%6v(!uXf@aoa!s)-GajB5&k!Scfr(tEJY)ILT{;r zrZc{6R-#K1JSn}l{4glYgZ3kT7T{Dnv@o=_i89QsK~YgqfOf|X>jQ%PRm1o0s)ZqA z)d%jLh8e_@hiwjgf6e%L=JWNmVNuNxPQK<P(YC3hkGayzyRI&lSt`s`AA#5VW%0Qm z=+@ai%(8Z<nmVV*K~`@LKRe}aJo>5qm9j3lr$^Q;RkCx60rakQ`kRo4n;)R{NFK*3 z3;nqxGJR9<Ltk}Wvs8f>+P9(kQbCD;nz6%%ot=$`-eMRexy|N~@1_4?@Zr(=vRam^ z0O+HFy<?&6SK+BPRVjs!+6OUP-quYUFGH;-pl>1OlWkII!cUGQ-x11X$IX{%ze@2w zPf*v^3?1@QRTkjz>(?@ItXTmljL>PnJ5V-OVK^Nbl}|Oz#Saq-WIo!uy!Y^nMRrM- z8z|tJ1aE1Cg@R$ayY{bpocz5V!>y*kpDs$E90s&JTc(Q~#5w%69_6h<3jOEWJoS#Q zh@9TO>~^a_h1qYcBQ{}PK2_L+`9Z!6OYwUZ8#JTz#%@Q}7${AbhziJ*D56{(ou-?i zi^#NqMk&B>>m)82y%DvrgIac&6C$6$rz!sN%v96n$W$|HaBXWIJLyoXo|3T6ByHIj zwPsH&?8XOu<LfKsc09b#k_>{{3mD%Yoi<#5;wU}YQ?~Pae<)O?J$!<|vyL5IW1yUT z&@(E#*dsjpdg~%vCXnHS)sW~I1P6tLG`N-y_97bVLZ@-g3n<b4!cdHXkrC>0kn;^_ z*WhV2-&WaapQ(%buW4CODrx%Y2DCTJIsYY!>8D@q7&DN4b?@L|Hk=aY-_($Y^3R9Q z9erOGQVw=4lauU<;mjXhN#)*_;cbmeD0n~0=oxR@hF56?Rx5Q38<!~0W;2H3!1)4f z9tQ!6Q&)$3hrAQh>kTFtTeH=8##EB_rc(ep$yD!5*asJ9*$Ik<^6-?)BPOrdonB2y ze)q@=TADp|ky-Y+-{+cKVx_;2>2jxW2qBrN60$mF&m?SC#GOzQDjiSt9a&_=pVG8D zndWsTaqq+erB4IG9sPd0a{`|*>%Q1aJY!Z`)TTY`%#RM#3X(4AjeAbDTY>L<tV&Pg zB`;n3-Xd@)Sw#9<Rms+WChjMB3pJcAbvhy?@}zDWr1#t;a$r2Om$r5NJ7>gZ1!SvI z74_t?t;_DWOzZspuN_^jb<vI&M;0tbj{C^WRBC(ofs-D-Gi#gI04>7?Y(<zS19Zal z0O1<eqwjR9x4jQ@M-?c7emmJ#Sw?z}v!pf2$y0TN*LGySy<M(-Aap?;VPYGb^@MY2 zx2}5sn^W`cjK=&3rFt2%9O8p$ODj~h=1erKKjU3ZGdB1g-Q7%yF_whpnMX@npKSwt zFNLxL`WqQ-))_gn23Q2@AfSmfc*^snNyEtarE{-A#5bsODnbeHKB(>1c6`Y+_O5p> zrs=5Ceyit*^b4dFa^`)nHh*_LILT8%{kNgo>qnc)=or<?QEADLYv!Hplu^8(u{z5z z(HPztWOZWKL!t7CL41?*V$6^JAST69MZgxQ%G|BZzUjUc*OK|%snRj*0`=Xtof5)V zv9{kJd6jEDf{KekrU>bolZowQF|FS3N?)vxl(Q)Xs;jW&*4&m9Ph0Wj&}5THI2N+i z(ck|gzbc&mq;w|QHf`{Fe5*_r_F^sk^OIH^^?cBzoBNKmomS+e@_{{lAJJYweIJlN zkRKmrDJqtxbVHcT#GQ>d>UXVvUi^hLEmPKPFXZ;4Z%19SLfQPZo?w~AwJtp5v^lj8 z8CeMGx42!VDwDF*wsEk`AOf{yhEL3PGB=MG80%n`%TZX(;Wd7!Y@Rme{XKr@gM{f+ zv4P~{PG;T>Fw~D+R5?#j5<8zU1pG;Q9Yow}rWVFUHd0K7uKT&zz!g$>HdY>++kN&) z28a~9b$SDyeVqb6n6lkhMjt2Eiec?c0(b??D>N}9hC0-F#ez^gw<7tOqls-ZGknK@ z<mn5ONCFK4cXrbH%bblPLmP7}Lo)4PGUMD3Qp`Z#dkd4?%~iY>2O#1e6S#=F#0U@; zQm%o-&S!CQh!l|uvErB~eJwkaJnJ+wC9Wiir2cp;wow`<7GwbAV!Nr=u_<ErEA%iH zjH~^^P}v%^7{MU(oUjEu+^`?Sv7wA(es+Su=Drdx_b{c%+u(;5zOl_Orsa|4d&Zz8 zP(%SD{#guAOnZDEhN<elLfQX76wW+^6oKMHq$!;pO=ezrAavN6iW5yDMe940Acd=x zyipZ$h?NC0_(Mzu72L4N`L}Al25zuM6H}vv{lcx50>Lr!j_70F2lFE0+KC>p(IVoy zx4F?GuaZFU?3^h?T*8cIhw=O!Orx*zz`SfOAQ&fhe`>dr`5E|yh^rkTQH1LbKh${S zF2;{w6Sye(LZmZG6l$Eu53RqBC!`1@ii{<Z!gtDq$gg2K2Q45pt;r?`TnJh0Omi{q zx|tyKlqP}+3z1Tf6eBdNr}7n%=CI(B0LqyVqND2~A@<a*UwIHZb;Ygqnc5haRG{n@ z<`_hCC{RSI@(T<-O^duww7#7vR-sxOBesHp&aXTYgg@d`<D!h}&5%nJ*<5*UjN**6 zs!0-oU~q<Ow@%WCuA-7e&TvL>4|3BrLFg)hEXPU|o?VfphcQNz*Yp;)RPho+$+}Lg zlc>kBIf}&Wfe5A&DFc8pT4dwAP)2nyUw&EQk`An&w!-0TiU@AF;T`fnH6ek`jW4Xf z)nV&Sl^BMwJV3ZsKUM8aT2-Cg9N^W(poFni8lPCf_@q-Mo?*xUkwC&Z0T&{H0U`mH za{@W%1T2UIT>d5y^A`a?Hdl~FoJim+k-(dC0&j@~ZW0MR{+qxXA^|NTft!C5czaI3 z;x7VU{~|zRL3_&mz4>11VsoO*x&(FW|JbT@Dho8c5OMMZQ4)M-VGAS0#QfRmOjI## zW7*HSVrKe#k?F=)BRYVM?KNJ#zR2`sDDV1u+=ugO_;6kgTEuG5Mt&z&L#k*IsV}QH z%Veyj7y7&!`mW4^Q-3T{rR|SIr#I%S8xkDJ!^h*(-<!9?N@5S3XTe;Pap}jR1`E|p zfhBYb1xt)iQ5hfN+QYAV8p4>z<cmm$P%~hYd*w!^00qOtvX$+(TL$ySOs!&Yw!<7Q z1=pAN=`-u}zYFJ0$EP>`)2t@F&=5g$p(0WPzaL-|<KYrzN{1rvp*I0=5J8_o!fb6U zN}&K>b>cJiw$YV;JMThw`r(FtwJu&Wwt5#_XibI8mcE16j3GtN`W&}6#^ud-q%Q+5 z3dn3B#Q|xypl$HxYkgUziv`-VFyn(8c+DJ|MjZ?D@W!~iOo1#Z)!X1dqm-_ZW@jmg zCFN=$`p@jtZltNnZAm{~qi&5C!B=5)Z%ZxY?|?T|c^`>XLWl?y{zZWQ2Z6yN?DT2` zJF#U0A6_2wMBtPH(LM!H8LEj215!3o3IuiLEp1bZ%PYO<$1-HQ#95Xgh_wIhMTZ;| zf7v<2c?VA}(>QXLgbO(mO0l^+^RlEdF5VIUEjSPWBeN?q8gammu{C$(Xni0$__W1k z6qoL@F1iaI7LN3&gh+W%Aq^=gRERC+4G^32`QFhs*hEtbYD#hXei1g|$QtEbidKkQ zsU>>R#1U1Ag?M$!<8$MwM~I2UV%4a_X5wFz&^pG2uiA@I82(S(&1PW@V#rzXtcNL$ zaSU!tFykf$yrx5ZV;n67{>#GQvmh22?zzIifG1v4%PZRffb7h|@JbmjK3s;0U((<I z3?hb`B@kUzejLd1OmGVfahrqHA4}fYWe;ST@81POjJCj5oSVm8F9KQIbs`lAqfC$3 zppCBLDbcoF1`9BJh%!0U$z-OJ8A%)ijl|{&qHR1M15|Lfz^tD1V<Qqt;-K>$1inT0 zO>_Z&Cw}93;uCfMBtHJ%#1A@8{J_5xe}|a()x@w6n@~7sq)p8Z7=j5hTKjR5)<|qZ zJ78iH3i2SgUYmve)r5#Jh-d!WgovU0s|nTo6LH}GJLJCbRCaR3J^vP+z0!@^wLVoZ zEPzpHH{RRKDRMONk&|)Oxu3G%S<&Mj!4`US9DHv*A8p3nHjq1d3|=VyUb~5Ew(Z`2 zmL|I3^ie8J|72n{fCO`G-`9gZL8-H&ck})Fn3c>jtJBEq=B{+V`<~<(;0#Gl*)05G z+i&n^&?)18*9n@0v^q0#5|UJQ5)xJt^jEISXdkA_K-xGsP53u9E$kA1d0x%Dg%8bH zxFfp!W~lq#MY^@`zQs93A$u#`&_uLNvEhUGg1In1-cMh2OY6q;Gc1s$hD+T`29hkW zmr6pR9(eEny`e}~Ht2m3WZ`SF=m$(P7z*U(O}wcFRC4Xp3w$?VPSY&0skXOa)_MAQ z{z{zBIKDv~C`>?(xM%`WsOZtdU2_ku!eS1qA~cAZ4e&i2NL<ld^cVQnwySi;eShTD z4fVln*+H(OvyZVZ`G-g&C(e@Pt}hF^yKF)7nguh3H(8?QYVA#K@i|(Ra0C%w;Xna4 zNO0*=eJKbaL4U5qjTW&P^+FOS>&>|q<Sz|e@-`gQ7220ZsM~yp>DekU2(l`3+9EF` z3huXi0=HS}W9Z}`_cTuds$cx0NZR(kU-)Utuaz~$y+h&FbJSQeukVb29SA$y7s&{> z?25BS^U?E}Ut7LFqry5Ln(q23#_6_qlj!=p<igS!-9Rn6Q}GXXCGGO3`kloGz8q+1 z`*pgR^1H@P6iXb|C%T%_LwK?v!dGHGT&7$7R07O|jL=Px%?4<HE4~81Qw{&DmJ;rj z$J|BlfdId-LrAhjeIdJkXU^`5tP(qIN}jx~k+zR}8S5i*EhBNg;N-iD3G#45cd7%& znTyCe{+My`Esxp<AZ;(5vpDwRWN^dHi7}hn%Jh7kn0^iiP$m#EZu{kB?jH9_5s=Bh zNe=8hjvTyz^_o3Q`Vj`MHV%0!llMU|=7EMyw4y=SO-lhDUHw2Ov%3~P1q^ns0&eRu zTY@63C0rB2B8(HVRR+4M{8l<~P0M+uuH`-2;L&@Kn*Os^p}?9L4O1*B=fO4ek@Sm2 zFCKL+9zS_t-Z_y45Dh#-@*|EPI<;J6ZUTIHu~rC&25O8=V$(+O&3g9(uMk-Hh%Azp zdnlqL{AP)K&66;W?|2l^uBMxS%^uFYQi*!yVK>Y?`GG-!zoKc4X!Rg~wZ&)T6(giY zd|t<EjHF!ymdmF7EvLor6x%K?T)J+61)ricQkvMb%^c6}HW#P5Mo!Yv?L+|%ydQFo zeZy6nn}Zw^XTt;E7gV*atX_+JRr`cD7t(6Ac$Hg{M?+rYS)RDQS((mgm3#P={Yoc$ z3L_t8xCFzE4D?~`WvV%0-s{my_MI4-{d%b~pI49!I&^D~osgep^1{8huu7&+QIZu% zc`5Bxl#8WdTdApRKewE&=dT1{HdClgwF9U2ILu1<o3D8!c@5;Tyum{glTT`bC(jC* zqx|?b{hXD9V7SLiPkDYCzokxR!N)G#c?f(uh~SwDGF#i%-A}h;EZa|zcgG7pG35&$ zRS7w$P<4lC_+57;mv{==Q*&0Z7c!7+m~7p2?_K*8s*r-4dSs>xTGZ#2IFQ<B4^#NX zAMm_>R>WxI#8<{Ia87YGvx0C8`lq{){8`RMkiFom9Ao3YAa5_P<m9BFD61$ZV<#&u zEhoq?sdhus(9zw_&lTzE>*DI=tM-rWUyI!<-uH9RSJ`C%GULW?$uTi(-jP@QC*tMf zl32UOITV@A`0XzUQ-ZrsHw<>>P?9wc(-ks=uNFeKue@y$$t4y>bR5~4#kQ80sa6qs z+;3g2Y*)UJUw}RJjN&lXXrfQ^M;K<8Y&z<dlnv<kC&~SIx=V3nK=u)aYE(Ybs<Nn! zN10w!O*<r0X@9bp|Mk)xTdfthcv7!*{9HuY_1+|UcN-c-G3R8-r3c&orM}j^k#_Kz z(f$RN|JMujWsWt{RkcboPRIr7f40?VIWD=2=Racp-Q)&vDS^)K{I?qux7mMxawE0S z{aiwSH0LqBLR@yAf9d`a5U;tBU(rn5Tz@p@v1=gS6C-N4{-Y5<>vCV^KR@fX*Ei~7 x;xl%lM(95pRt_|nLj?VSoBoe*mf*!oAPTHWNk~}!BfP+gp63>!y!Pja{{wpKct!vK diff --git a/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.fsx b/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.fsx index 5ac29ad..c73f8d1 100644 --- a/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.fsx +++ b/workflows/isaSampleToRawDataSeq/isaSampleToRawDataSeq.fsx @@ -2,17 +2,25 @@ // Dependencies -#r "nuget: ARCtrl.NET" +#r "nuget: ARCtrl" #r "nuget: ARCtrl.QueryModel" #r "nuget: FsSpreadsheet.CsvIO" -open ARCtrl.NET open ARCtrl open ARCtrl.QueryModel open ARCtrl.Helper open FsSpreadsheet.Net open FsSpreadsheet.CsvIO + +// test parameters +// let source = __SOURCE_DIRECTORY__ +// let arcPath = System.IO.Path.Combine(source, "../../") +// let assayName = "Talinum_RNASeq_minimal" +// let startingNodeNum = 0 +// let outName = "rnaseq-samples" + + // input parameters let args : string array = fsi.CommandLineArgs |> Array.tail @@ -31,13 +39,6 @@ type ArcTables with ) |> ArcTables -// // test parameters -// let source = __SOURCE_DIRECTORY__ -// let arcPath = Path.Combine(source, "../../") -// let assayName = "Talinum_RNASeq_minimal" -// let startingNodeNum = 0 -// let outName = "rnaseq-samples" - // Load ARC // Remove all tables with either an input or output column missing @@ -97,8 +98,6 @@ let shittify (a : ARC) = let arc = ARC.load(arcPath) |> clean |> shittify - - let inv = arc.ISA.Value // Load first data node @@ -108,7 +107,11 @@ let firstData = inv.GetAssay(assayName).FirstData // Create headers for output table let headers = [ - CompositeHeader.Input IOType.Sample + + CompositeHeader.Input IOType.Source + + // CompositeHeader.Input IOType.Sample + for v in inv.ArcTables.IgnoreShitty().ValuesOf firstData.[0].Name do if v.IsCharacteristicValue then CompositeHeader.Characteristic v.Category @@ -128,7 +131,7 @@ let headers = [ let getRow (d: QNode) = [| - CompositeCell.createFreeText (inv.ArcTables.SamplesOf d).[startingNodeNum].Name + CompositeCell.createFreeText (inv.ArcTables.SourcesOf d).[startingNodeNum].Name for v in inv.ArcTables.ValuesOf d do if v.HasUnit then @@ -165,4 +168,4 @@ wb.AddWorksheet ws wb.ToXlsxFile ($"{outName}.xlsx") // Write to csv -wb.ToCsvFile ($"{outName}.csv") \ No newline at end of file +wb.ToCsvFile ($"{outName}.csv") -- GitLab From 9146ed6013d2fb39b9f43d4d30bf351c3db0e1ae Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Fri, 14 Mar 2025 14:51:33 +0100 Subject: [PATCH 8/9] deseq: use csv as input, return svg figures --- runs/deseq2/results_ma-plot.svg | 25033 +++++++++++++++++++++++ runs/deseq2/results_pca-plot.svg | 305 + runs/deseq2/results_stats.csv | 31435 +++++++++++++++++++++++++++++ runs/deseq2/run.yml | 6 +- workflows/deseq2/deseq2.R | 24 +- workflows/deseq2/workflow.cwl | 2 +- 6 files changed, 56792 insertions(+), 13 deletions(-) create mode 100644 runs/deseq2/results_ma-plot.svg create mode 100644 runs/deseq2/results_pca-plot.svg create mode 100644 runs/deseq2/results_stats.csv diff --git a/runs/deseq2/results_ma-plot.svg b/runs/deseq2/results_ma-plot.svg new file mode 100644 index 0000000..f2f6b21 --- /dev/null +++ b/runs/deseq2/results_ma-plot.svg @@ -0,0 +1,25033 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="504pt" height="504pt" viewBox="0 0 504 504" version="1.1"> +<defs> +<g> +<symbol overflow="visible" id="glyph0-0"> +<path style="stroke:none;" d="M 0.59375 2.125 L 0.59375 -8.46875 L 6.59375 -8.46875 L 6.59375 2.125 Z M 1.265625 1.453125 L 5.9375 1.453125 L 5.9375 -7.78125 L 1.265625 -7.78125 Z M 1.265625 1.453125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-1"> +<path style="stroke:none;" d="M 1.484375 -1 L 3.421875 -1 L 3.421875 -7.671875 L 1.3125 -7.25 L 1.3125 -8.328125 L 3.40625 -8.75 L 4.59375 -8.75 L 4.59375 -1 L 6.53125 -1 L 6.53125 0 L 1.484375 0 Z M 1.484375 -1 "/> +</symbol> +<symbol overflow="visible" id="glyph0-2"> +<path style="stroke:none;" d="M 6.75 -3.546875 L 6.75 -3.03125 L 1.78125 -3.03125 C 1.832031 -2.28125 2.054688 -1.710938 2.453125 -1.328125 C 2.859375 -0.941406 3.414062 -0.75 4.125 -0.75 C 4.539062 -0.75 4.941406 -0.796875 5.328125 -0.890625 C 5.722656 -0.992188 6.113281 -1.148438 6.5 -1.359375 L 6.5 -0.328125 C 6.101562 -0.171875 5.703125 -0.0507812 5.296875 0.03125 C 4.890625 0.125 4.476562 0.171875 4.0625 0.171875 C 3.019531 0.171875 2.191406 -0.128906 1.578125 -0.734375 C 0.960938 -1.347656 0.65625 -2.175781 0.65625 -3.21875 C 0.65625 -4.289062 0.945312 -5.140625 1.53125 -5.765625 C 2.113281 -6.398438 2.894531 -6.71875 3.875 -6.71875 C 4.757812 -6.71875 5.457031 -6.429688 5.96875 -5.859375 C 6.488281 -5.296875 6.75 -4.523438 6.75 -3.546875 Z M 5.671875 -3.875 C 5.660156 -4.457031 5.492188 -4.925781 5.171875 -5.28125 C 4.847656 -5.632812 4.421875 -5.8125 3.890625 -5.8125 C 3.285156 -5.8125 2.800781 -5.640625 2.4375 -5.296875 C 2.082031 -4.953125 1.878906 -4.472656 1.828125 -3.859375 Z M 5.671875 -3.875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-3"> +<path style="stroke:none;" d="M 0.59375 -3.765625 L 3.75 -3.765625 L 3.75 -2.8125 L 0.59375 -2.8125 Z M 0.59375 -3.765625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-4"> +<path style="stroke:none;" d="M 3.8125 -7.96875 C 3.207031 -7.96875 2.75 -7.664062 2.4375 -7.0625 C 2.132812 -6.46875 1.984375 -5.566406 1.984375 -4.359375 C 1.984375 -3.160156 2.132812 -2.257812 2.4375 -1.65625 C 2.75 -1.0625 3.207031 -0.765625 3.8125 -0.765625 C 4.425781 -0.765625 4.882812 -1.0625 5.1875 -1.65625 C 5.5 -2.257812 5.65625 -3.160156 5.65625 -4.359375 C 5.65625 -5.566406 5.5 -6.46875 5.1875 -7.0625 C 4.882812 -7.664062 4.425781 -7.96875 3.8125 -7.96875 Z M 3.8125 -8.90625 C 4.789062 -8.90625 5.539062 -8.515625 6.0625 -7.734375 C 6.582031 -6.960938 6.84375 -5.835938 6.84375 -4.359375 C 6.84375 -2.890625 6.582031 -1.765625 6.0625 -0.984375 C 5.539062 -0.210938 4.789062 0.171875 3.8125 0.171875 C 2.832031 0.171875 2.082031 -0.210938 1.5625 -0.984375 C 1.050781 -1.765625 0.796875 -2.890625 0.796875 -4.359375 C 0.796875 -5.835938 1.050781 -6.960938 1.5625 -7.734375 C 2.082031 -8.515625 2.832031 -8.90625 3.8125 -8.90625 Z M 3.8125 -8.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-5"> +<path style="stroke:none;" d="M 5.515625 -7.53125 L 5.515625 -4.265625 L 8.78125 -4.265625 L 8.78125 -3.265625 L 5.515625 -3.265625 L 5.515625 0 L 4.53125 0 L 4.53125 -3.265625 L 1.265625 -3.265625 L 1.265625 -4.265625 L 4.53125 -4.265625 L 4.53125 -7.53125 Z M 5.515625 -7.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-6"> +<path style="stroke:none;" d="M 2.296875 -1 L 6.4375 -1 L 6.4375 0 L 0.875 0 L 0.875 -1 C 1.320312 -1.457031 1.929688 -2.078125 2.703125 -2.859375 C 3.484375 -3.648438 3.972656 -4.160156 4.171875 -4.390625 C 4.554688 -4.804688 4.820312 -5.160156 4.96875 -5.453125 C 5.125 -5.753906 5.203125 -6.046875 5.203125 -6.328125 C 5.203125 -6.796875 5.035156 -7.175781 4.703125 -7.46875 C 4.378906 -7.757812 3.957031 -7.90625 3.4375 -7.90625 C 3.0625 -7.90625 2.664062 -7.84375 2.25 -7.71875 C 1.84375 -7.59375 1.40625 -7.394531 0.9375 -7.125 L 0.9375 -8.328125 C 1.414062 -8.515625 1.859375 -8.65625 2.265625 -8.75 C 2.679688 -8.851562 3.0625 -8.90625 3.40625 -8.90625 C 4.3125 -8.90625 5.035156 -8.675781 5.578125 -8.21875 C 6.117188 -7.769531 6.390625 -7.164062 6.390625 -6.40625 C 6.390625 -6.050781 6.320312 -5.710938 6.1875 -5.390625 C 6.050781 -5.066406 5.804688 -4.6875 5.453125 -4.25 C 5.347656 -4.132812 5.035156 -3.804688 4.515625 -3.265625 C 3.992188 -2.722656 3.253906 -1.96875 2.296875 -1 Z M 2.296875 -1 "/> +</symbol> +<symbol overflow="visible" id="glyph0-7"> +<path style="stroke:none;" d="M 4.875 -4.71875 C 5.4375 -4.59375 5.875 -4.335938 6.1875 -3.953125 C 6.507812 -3.578125 6.671875 -3.109375 6.671875 -2.546875 C 6.671875 -1.679688 6.375 -1.007812 5.78125 -0.53125 C 5.1875 -0.0625 4.34375 0.171875 3.25 0.171875 C 2.882812 0.171875 2.503906 0.132812 2.109375 0.0625 C 1.722656 -0.0078125 1.328125 -0.117188 0.921875 -0.265625 L 0.921875 -1.40625 C 1.242188 -1.21875 1.597656 -1.070312 1.984375 -0.96875 C 2.378906 -0.875 2.789062 -0.828125 3.21875 -0.828125 C 3.957031 -0.828125 4.519531 -0.972656 4.90625 -1.265625 C 5.300781 -1.554688 5.5 -1.984375 5.5 -2.546875 C 5.5 -3.054688 5.316406 -3.457031 4.953125 -3.75 C 4.585938 -4.039062 4.085938 -4.1875 3.453125 -4.1875 L 2.421875 -4.1875 L 2.421875 -5.15625 L 3.5 -5.15625 C 4.070312 -5.15625 4.515625 -5.269531 4.828125 -5.5 C 5.140625 -5.738281 5.296875 -6.078125 5.296875 -6.515625 C 5.296875 -6.960938 5.132812 -7.304688 4.8125 -7.546875 C 4.5 -7.785156 4.046875 -7.90625 3.453125 -7.90625 C 3.117188 -7.90625 2.765625 -7.867188 2.390625 -7.796875 C 2.023438 -7.734375 1.617188 -7.628906 1.171875 -7.484375 L 1.171875 -8.53125 C 1.628906 -8.65625 2.050781 -8.75 2.4375 -8.8125 C 2.832031 -8.875 3.203125 -8.90625 3.546875 -8.90625 C 4.453125 -8.90625 5.164062 -8.703125 5.6875 -8.296875 C 6.207031 -7.890625 6.46875 -7.335938 6.46875 -6.640625 C 6.46875 -6.148438 6.328125 -5.738281 6.046875 -5.40625 C 5.773438 -5.070312 5.382812 -4.84375 4.875 -4.71875 Z M 4.875 -4.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-8"> +<path style="stroke:none;" d="M 4.53125 -7.71875 L 1.546875 -3.046875 L 4.53125 -3.046875 Z M 4.21875 -8.75 L 5.71875 -8.75 L 5.71875 -3.046875 L 6.96875 -3.046875 L 6.96875 -2.0625 L 5.71875 -2.0625 L 5.71875 0 L 4.53125 0 L 4.53125 -2.0625 L 0.59375 -2.0625 L 0.59375 -3.203125 Z M 4.21875 -8.75 "/> +</symbol> +<symbol overflow="visible" id="glyph0-9"> +<path style="stroke:none;" d="M 1.296875 -8.75 L 5.9375 -8.75 L 5.9375 -7.75 L 2.375 -7.75 L 2.375 -5.609375 C 2.550781 -5.671875 2.722656 -5.710938 2.890625 -5.734375 C 3.066406 -5.765625 3.238281 -5.78125 3.40625 -5.78125 C 4.382812 -5.78125 5.160156 -5.507812 5.734375 -4.96875 C 6.304688 -4.4375 6.59375 -3.71875 6.59375 -2.8125 C 6.59375 -1.863281 6.296875 -1.128906 5.703125 -0.609375 C 5.117188 -0.0859375 4.296875 0.171875 3.234375 0.171875 C 2.859375 0.171875 2.476562 0.140625 2.09375 0.078125 C 1.71875 0.015625 1.328125 -0.078125 0.921875 -0.203125 L 0.921875 -1.390625 C 1.273438 -1.203125 1.640625 -1.0625 2.015625 -0.96875 C 2.390625 -0.875 2.785156 -0.828125 3.203125 -0.828125 C 3.878906 -0.828125 4.414062 -1.003906 4.8125 -1.359375 C 5.207031 -1.710938 5.40625 -2.195312 5.40625 -2.8125 C 5.40625 -3.414062 5.207031 -3.894531 4.8125 -4.25 C 4.414062 -4.601562 3.878906 -4.78125 3.203125 -4.78125 C 2.890625 -4.78125 2.570312 -4.742188 2.25 -4.671875 C 1.9375 -4.609375 1.617188 -4.503906 1.296875 -4.359375 Z M 1.296875 -8.75 "/> +</symbol> +<symbol overflow="visible" id="glyph0-10"> +<path style="stroke:none;" d="M 6.234375 -5.296875 C 6.503906 -5.785156 6.828125 -6.144531 7.203125 -6.375 C 7.578125 -6.601562 8.019531 -6.71875 8.53125 -6.71875 C 9.21875 -6.71875 9.742188 -6.476562 10.109375 -6 C 10.484375 -5.519531 10.671875 -4.84375 10.671875 -3.96875 L 10.671875 0 L 9.59375 0 L 9.59375 -3.921875 C 9.59375 -4.554688 9.476562 -5.023438 9.25 -5.328125 C 9.03125 -5.628906 8.691406 -5.78125 8.234375 -5.78125 C 7.671875 -5.78125 7.226562 -5.59375 6.90625 -5.21875 C 6.582031 -4.851562 6.421875 -4.347656 6.421875 -3.703125 L 6.421875 0 L 5.34375 0 L 5.34375 -3.921875 C 5.34375 -4.554688 5.226562 -5.023438 5 -5.328125 C 4.78125 -5.628906 4.4375 -5.78125 3.96875 -5.78125 C 3.414062 -5.78125 2.976562 -5.59375 2.65625 -5.21875 C 2.332031 -4.851562 2.171875 -4.347656 2.171875 -3.703125 L 2.171875 0 L 1.09375 0 L 1.09375 -6.5625 L 2.171875 -6.5625 L 2.171875 -5.546875 C 2.421875 -5.941406 2.71875 -6.234375 3.0625 -6.421875 C 3.40625 -6.617188 3.8125 -6.71875 4.28125 -6.71875 C 4.757812 -6.71875 5.164062 -6.597656 5.5 -6.359375 C 5.832031 -6.117188 6.078125 -5.765625 6.234375 -5.296875 Z M 6.234375 -5.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-11"> +<path style="stroke:none;" d="M 4.109375 -3.296875 C 3.242188 -3.296875 2.640625 -3.195312 2.296875 -3 C 1.960938 -2.800781 1.796875 -2.460938 1.796875 -1.984375 C 1.796875 -1.597656 1.921875 -1.289062 2.171875 -1.0625 C 2.429688 -0.84375 2.773438 -0.734375 3.203125 -0.734375 C 3.804688 -0.734375 4.285156 -0.941406 4.640625 -1.359375 C 5.003906 -1.785156 5.1875 -2.351562 5.1875 -3.0625 L 5.1875 -3.296875 Z M 6.265625 -3.75 L 6.265625 0 L 5.1875 0 L 5.1875 -1 C 4.9375 -0.601562 4.628906 -0.304688 4.265625 -0.109375 C 3.898438 0.078125 3.453125 0.171875 2.921875 0.171875 C 2.242188 0.171875 1.707031 -0.015625 1.3125 -0.390625 C 0.914062 -0.773438 0.71875 -1.28125 0.71875 -1.90625 C 0.71875 -2.644531 0.960938 -3.203125 1.453125 -3.578125 C 1.953125 -3.953125 2.691406 -4.140625 3.671875 -4.140625 L 5.1875 -4.140625 L 5.1875 -4.25 C 5.1875 -4.75 5.019531 -5.132812 4.6875 -5.40625 C 4.363281 -5.675781 3.910156 -5.8125 3.328125 -5.8125 C 2.953125 -5.8125 2.582031 -5.765625 2.21875 -5.671875 C 1.863281 -5.578125 1.523438 -5.441406 1.203125 -5.265625 L 1.203125 -6.265625 C 1.597656 -6.421875 1.976562 -6.535156 2.34375 -6.609375 C 2.71875 -6.679688 3.082031 -6.71875 3.4375 -6.71875 C 4.382812 -6.71875 5.09375 -6.472656 5.5625 -5.984375 C 6.03125 -5.492188 6.265625 -4.75 6.265625 -3.75 Z M 6.265625 -3.75 "/> +</symbol> +<symbol overflow="visible" id="glyph0-12"> +<path style="stroke:none;" d="M 6.59375 -3.96875 L 6.59375 0 L 5.515625 0 L 5.515625 -3.921875 C 5.515625 -4.546875 5.390625 -5.007812 5.140625 -5.3125 C 4.898438 -5.625 4.539062 -5.78125 4.0625 -5.78125 C 3.476562 -5.78125 3.015625 -5.59375 2.671875 -5.21875 C 2.335938 -4.851562 2.171875 -4.347656 2.171875 -3.703125 L 2.171875 0 L 1.09375 0 L 1.09375 -6.5625 L 2.171875 -6.5625 L 2.171875 -5.546875 C 2.429688 -5.941406 2.734375 -6.234375 3.078125 -6.421875 C 3.429688 -6.617188 3.835938 -6.71875 4.296875 -6.71875 C 5.046875 -6.71875 5.613281 -6.484375 6 -6.015625 C 6.394531 -5.554688 6.59375 -4.875 6.59375 -3.96875 Z M 6.59375 -3.96875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-13"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph0-14"> +<path style="stroke:none;" d="M 3.671875 -5.8125 C 3.097656 -5.8125 2.640625 -5.582031 2.296875 -5.125 C 1.960938 -4.675781 1.796875 -4.0625 1.796875 -3.28125 C 1.796875 -2.488281 1.960938 -1.867188 2.296875 -1.421875 C 2.628906 -0.972656 3.085938 -0.75 3.671875 -0.75 C 4.242188 -0.75 4.695312 -0.972656 5.03125 -1.421875 C 5.375 -1.878906 5.546875 -2.5 5.546875 -3.28125 C 5.546875 -4.050781 5.375 -4.664062 5.03125 -5.125 C 4.695312 -5.582031 4.242188 -5.8125 3.671875 -5.8125 Z M 3.671875 -6.71875 C 4.609375 -6.71875 5.34375 -6.410156 5.875 -5.796875 C 6.414062 -5.191406 6.6875 -4.351562 6.6875 -3.28125 C 6.6875 -2.207031 6.414062 -1.363281 5.875 -0.75 C 5.34375 -0.132812 4.609375 0.171875 3.671875 0.171875 C 2.734375 0.171875 1.992188 -0.132812 1.453125 -0.75 C 0.921875 -1.363281 0.65625 -2.207031 0.65625 -3.28125 C 0.65625 -4.351562 0.921875 -5.191406 1.453125 -5.796875 C 1.992188 -6.410156 2.734375 -6.71875 3.671875 -6.71875 Z M 3.671875 -6.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-15"> +<path style="stroke:none;" d="M 4.453125 -9.125 L 4.453125 -8.21875 L 3.421875 -8.21875 C 3.035156 -8.21875 2.765625 -8.140625 2.609375 -7.984375 C 2.460938 -7.828125 2.390625 -7.546875 2.390625 -7.140625 L 2.390625 -6.5625 L 4.171875 -6.5625 L 4.171875 -5.71875 L 2.390625 -5.71875 L 2.390625 0 L 1.3125 0 L 1.3125 -5.71875 L 0.28125 -5.71875 L 0.28125 -6.5625 L 1.3125 -6.5625 L 1.3125 -7.015625 C 1.3125 -7.742188 1.476562 -8.273438 1.8125 -8.609375 C 2.15625 -8.953125 2.695312 -9.125 3.4375 -9.125 Z M 4.453125 -9.125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-16"> +<path style="stroke:none;" d="M 4.9375 -5.5625 C 4.8125 -5.625 4.675781 -5.671875 4.53125 -5.703125 C 4.394531 -5.742188 4.238281 -5.765625 4.0625 -5.765625 C 3.457031 -5.765625 2.988281 -5.566406 2.65625 -5.171875 C 2.332031 -4.773438 2.171875 -4.203125 2.171875 -3.453125 L 2.171875 0 L 1.09375 0 L 1.09375 -6.5625 L 2.171875 -6.5625 L 2.171875 -5.546875 C 2.398438 -5.941406 2.695312 -6.234375 3.0625 -6.421875 C 3.425781 -6.617188 3.867188 -6.71875 4.390625 -6.71875 C 4.460938 -6.71875 4.539062 -6.710938 4.625 -6.703125 C 4.71875 -6.691406 4.816406 -6.675781 4.921875 -6.65625 Z M 4.9375 -5.5625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-17"> +<path style="stroke:none;" d="M 1.125 -9.125 L 2.203125 -9.125 L 2.203125 0 L 1.125 0 Z M 1.125 -9.125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-18"> +<path style="stroke:none;" d="M 1.125 -6.5625 L 2.203125 -6.5625 L 2.203125 0 L 1.125 0 Z M 1.125 -9.125 L 2.203125 -9.125 L 2.203125 -7.75 L 1.125 -7.75 Z M 1.125 -9.125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-19"> +<path style="stroke:none;" d="M 0.65625 -6.5625 L 5.78125 -6.5625 L 5.78125 -5.578125 L 1.734375 -0.859375 L 5.78125 -0.859375 L 5.78125 0 L 0.515625 0 L 0.515625 -0.984375 L 4.578125 -5.703125 L 0.65625 -5.703125 Z M 0.65625 -6.5625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-20"> +<path style="stroke:none;" d="M 5.453125 -5.5625 L 5.453125 -9.125 L 6.53125 -9.125 L 6.53125 0 L 5.453125 0 L 5.453125 -0.984375 C 5.222656 -0.597656 4.9375 -0.304688 4.59375 -0.109375 C 4.25 0.078125 3.832031 0.171875 3.34375 0.171875 C 2.550781 0.171875 1.90625 -0.144531 1.40625 -0.78125 C 0.90625 -1.414062 0.65625 -2.25 0.65625 -3.28125 C 0.65625 -4.3125 0.90625 -5.140625 1.40625 -5.765625 C 1.90625 -6.398438 2.550781 -6.71875 3.34375 -6.71875 C 3.832031 -6.71875 4.25 -6.625 4.59375 -6.4375 C 4.9375 -6.25 5.222656 -5.957031 5.453125 -5.5625 Z M 1.78125 -3.28125 C 1.78125 -2.488281 1.941406 -1.863281 2.265625 -1.40625 C 2.585938 -0.957031 3.035156 -0.734375 3.609375 -0.734375 C 4.179688 -0.734375 4.628906 -0.957031 4.953125 -1.40625 C 5.285156 -1.863281 5.453125 -2.488281 5.453125 -3.28125 C 5.453125 -4.070312 5.285156 -4.691406 4.953125 -5.140625 C 4.628906 -5.585938 4.179688 -5.8125 3.609375 -5.8125 C 3.035156 -5.8125 2.585938 -5.585938 2.265625 -5.140625 C 1.941406 -4.691406 1.78125 -4.070312 1.78125 -3.28125 Z M 1.78125 -3.28125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-21"> +<path style="stroke:none;" d="M 5.859375 -6.3125 L 5.859375 -5.296875 C 5.546875 -5.472656 5.238281 -5.601562 4.9375 -5.6875 C 4.632812 -5.769531 4.328125 -5.8125 4.015625 -5.8125 C 3.304688 -5.8125 2.757812 -5.585938 2.375 -5.140625 C 1.988281 -4.703125 1.796875 -4.082031 1.796875 -3.28125 C 1.796875 -2.476562 1.988281 -1.851562 2.375 -1.40625 C 2.757812 -0.96875 3.304688 -0.75 4.015625 -0.75 C 4.328125 -0.75 4.632812 -0.789062 4.9375 -0.875 C 5.238281 -0.957031 5.546875 -1.082031 5.859375 -1.25 L 5.859375 -0.25 C 5.554688 -0.113281 5.242188 -0.0078125 4.921875 0.0625 C 4.597656 0.132812 4.253906 0.171875 3.890625 0.171875 C 2.898438 0.171875 2.113281 -0.132812 1.53125 -0.75 C 0.945312 -1.375 0.65625 -2.21875 0.65625 -3.28125 C 0.65625 -4.34375 0.945312 -5.179688 1.53125 -5.796875 C 2.125 -6.410156 2.9375 -6.71875 3.96875 -6.71875 C 4.289062 -6.71875 4.609375 -6.679688 4.921875 -6.609375 C 5.242188 -6.546875 5.554688 -6.445312 5.859375 -6.3125 Z M 5.859375 -6.3125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-22"> +<path style="stroke:none;" d="M 1.015625 -2.59375 L 1.015625 -6.5625 L 2.09375 -6.5625 L 2.09375 -2.625 C 2.09375 -2.007812 2.210938 -1.546875 2.453125 -1.234375 C 2.703125 -0.921875 3.066406 -0.765625 3.546875 -0.765625 C 4.128906 -0.765625 4.585938 -0.945312 4.921875 -1.3125 C 5.265625 -1.6875 5.4375 -2.195312 5.4375 -2.84375 L 5.4375 -6.5625 L 6.515625 -6.5625 L 6.515625 0 L 5.4375 0 L 5.4375 -1.015625 C 5.175781 -0.609375 4.875 -0.304688 4.53125 -0.109375 C 4.1875 0.078125 3.785156 0.171875 3.328125 0.171875 C 2.566406 0.171875 1.988281 -0.0625 1.59375 -0.53125 C 1.207031 -1 1.015625 -1.6875 1.015625 -2.59375 Z M 3.734375 -6.71875 Z M 3.734375 -6.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-23"> +<path style="stroke:none;" d="M 2.203125 -8.421875 L 2.203125 -6.5625 L 4.421875 -6.5625 L 4.421875 -5.71875 L 2.203125 -5.71875 L 2.203125 -2.15625 C 2.203125 -1.625 2.273438 -1.28125 2.421875 -1.125 C 2.566406 -0.976562 2.863281 -0.90625 3.3125 -0.90625 L 4.421875 -0.90625 L 4.421875 0 L 3.3125 0 C 2.476562 0 1.898438 -0.15625 1.578125 -0.46875 C 1.265625 -0.78125 1.109375 -1.34375 1.109375 -2.15625 L 1.109375 -5.71875 L 0.328125 -5.71875 L 0.328125 -6.5625 L 1.109375 -6.5625 L 1.109375 -8.421875 Z M 2.203125 -8.421875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-24"> +<path style="stroke:none;" d="M 5.3125 -6.375 L 5.3125 -5.34375 C 5.007812 -5.5 4.691406 -5.613281 4.359375 -5.6875 C 4.035156 -5.769531 3.695312 -5.8125 3.34375 -5.8125 C 2.8125 -5.8125 2.410156 -5.726562 2.140625 -5.5625 C 1.867188 -5.40625 1.734375 -5.160156 1.734375 -4.828125 C 1.734375 -4.578125 1.828125 -4.378906 2.015625 -4.234375 C 2.210938 -4.097656 2.601562 -3.96875 3.1875 -3.84375 L 3.546875 -3.75 C 4.316406 -3.59375 4.863281 -3.363281 5.1875 -3.0625 C 5.507812 -2.757812 5.671875 -2.34375 5.671875 -1.8125 C 5.671875 -1.195312 5.425781 -0.710938 4.9375 -0.359375 C 4.457031 -0.00390625 3.796875 0.171875 2.953125 0.171875 C 2.597656 0.171875 2.226562 0.132812 1.84375 0.0625 C 1.46875 0 1.070312 -0.0976562 0.65625 -0.234375 L 0.65625 -1.359375 C 1.050781 -1.148438 1.441406 -0.992188 1.828125 -0.890625 C 2.210938 -0.785156 2.597656 -0.734375 2.984375 -0.734375 C 3.484375 -0.734375 3.867188 -0.816406 4.140625 -0.984375 C 4.421875 -1.160156 4.5625 -1.410156 4.5625 -1.734375 C 4.5625 -2.023438 4.460938 -2.25 4.265625 -2.40625 C 4.066406 -2.5625 3.632812 -2.710938 2.96875 -2.859375 L 2.59375 -2.9375 C 1.925781 -3.082031 1.441406 -3.300781 1.140625 -3.59375 C 0.847656 -3.882812 0.703125 -4.28125 0.703125 -4.78125 C 0.703125 -5.40625 0.921875 -5.882812 1.359375 -6.21875 C 1.796875 -6.550781 2.414062 -6.71875 3.21875 -6.71875 C 3.613281 -6.71875 3.988281 -6.6875 4.34375 -6.625 C 4.695312 -6.570312 5.019531 -6.488281 5.3125 -6.375 Z M 5.3125 -6.375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-0"> +<path style="stroke:none;" d="M 2.125 -0.59375 L -8.46875 -0.59375 L -8.46875 -6.59375 L 2.125 -6.59375 Z M 1.453125 -1.265625 L 1.453125 -5.9375 L -7.78125 -5.9375 L -7.78125 -1.265625 Z M 1.453125 -1.265625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-1"> +<path style="stroke:none;" d="M -3.765625 -0.59375 L -3.765625 -3.75 L -2.8125 -3.75 L -2.8125 -0.59375 Z M -3.765625 -0.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-2"> +<path style="stroke:none;" d="M -1 -2.296875 L -1 -6.4375 L 0 -6.4375 L 0 -0.875 L -1 -0.875 C -1.457031 -1.320312 -2.078125 -1.929688 -2.859375 -2.703125 C -3.648438 -3.484375 -4.160156 -3.972656 -4.390625 -4.171875 C -4.804688 -4.554688 -5.160156 -4.820312 -5.453125 -4.96875 C -5.753906 -5.125 -6.046875 -5.203125 -6.328125 -5.203125 C -6.796875 -5.203125 -7.175781 -5.035156 -7.46875 -4.703125 C -7.757812 -4.378906 -7.90625 -3.957031 -7.90625 -3.4375 C -7.90625 -3.0625 -7.84375 -2.664062 -7.71875 -2.25 C -7.59375 -1.84375 -7.394531 -1.40625 -7.125 -0.9375 L -8.328125 -0.9375 C -8.515625 -1.414062 -8.65625 -1.859375 -8.75 -2.265625 C -8.851562 -2.679688 -8.90625 -3.0625 -8.90625 -3.40625 C -8.90625 -4.3125 -8.675781 -5.035156 -8.21875 -5.578125 C -7.769531 -6.117188 -7.164062 -6.390625 -6.40625 -6.390625 C -6.050781 -6.390625 -5.710938 -6.320312 -5.390625 -6.1875 C -5.066406 -6.050781 -4.6875 -5.804688 -4.25 -5.453125 C -4.132812 -5.347656 -3.804688 -5.035156 -3.265625 -4.515625 C -2.722656 -3.992188 -1.96875 -3.253906 -1 -2.296875 Z M -1 -2.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-3"> +<path style="stroke:none;" d="M -1 -1.484375 L -1 -3.421875 L -7.671875 -3.421875 L -7.25 -1.3125 L -8.328125 -1.3125 L -8.75 -3.40625 L -8.75 -4.59375 L -1 -4.59375 L -1 -6.53125 L 0 -6.53125 L 0 -1.484375 Z M -1 -1.484375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-4"> +<path style="stroke:none;" d="M -7.96875 -3.8125 C -7.96875 -3.207031 -7.664062 -2.75 -7.0625 -2.4375 C -6.46875 -2.132812 -5.566406 -1.984375 -4.359375 -1.984375 C -3.160156 -1.984375 -2.257812 -2.132812 -1.65625 -2.4375 C -1.0625 -2.75 -0.765625 -3.207031 -0.765625 -3.8125 C -0.765625 -4.425781 -1.0625 -4.882812 -1.65625 -5.1875 C -2.257812 -5.5 -3.160156 -5.65625 -4.359375 -5.65625 C -5.566406 -5.65625 -6.46875 -5.5 -7.0625 -5.1875 C -7.664062 -4.882812 -7.96875 -4.425781 -7.96875 -3.8125 Z M -8.90625 -3.8125 C -8.90625 -4.789062 -8.515625 -5.539062 -7.734375 -6.0625 C -6.960938 -6.582031 -5.835938 -6.84375 -4.359375 -6.84375 C -2.890625 -6.84375 -1.765625 -6.582031 -0.984375 -6.0625 C -0.210938 -5.539062 0.171875 -4.789062 0.171875 -3.8125 C 0.171875 -2.832031 -0.210938 -2.082031 -0.984375 -1.5625 C -1.765625 -1.050781 -2.890625 -0.796875 -4.359375 -0.796875 C -5.835938 -0.796875 -6.960938 -1.050781 -7.734375 -1.5625 C -8.515625 -2.082031 -8.90625 -2.832031 -8.90625 -3.8125 Z M -8.90625 -3.8125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-5"> +<path style="stroke:none;" d="M -9.125 -1.125 L -9.125 -2.203125 L 0 -2.203125 L 0 -1.125 Z M -9.125 -1.125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-6"> +<path style="stroke:none;" d="M -5.8125 -3.671875 C -5.8125 -3.097656 -5.582031 -2.640625 -5.125 -2.296875 C -4.675781 -1.960938 -4.0625 -1.796875 -3.28125 -1.796875 C -2.488281 -1.796875 -1.867188 -1.960938 -1.421875 -2.296875 C -0.972656 -2.628906 -0.75 -3.085938 -0.75 -3.671875 C -0.75 -4.242188 -0.972656 -4.695312 -1.421875 -5.03125 C -1.878906 -5.375 -2.5 -5.546875 -3.28125 -5.546875 C -4.050781 -5.546875 -4.664062 -5.375 -5.125 -5.03125 C -5.582031 -4.695312 -5.8125 -4.242188 -5.8125 -3.671875 Z M -6.71875 -3.671875 C -6.71875 -4.609375 -6.410156 -5.34375 -5.796875 -5.875 C -5.191406 -6.414062 -4.351562 -6.6875 -3.28125 -6.6875 C -2.207031 -6.6875 -1.363281 -6.414062 -0.75 -5.875 C -0.132812 -5.34375 0.171875 -4.609375 0.171875 -3.671875 C 0.171875 -2.734375 -0.132812 -1.992188 -0.75 -1.453125 C -1.363281 -0.921875 -2.207031 -0.65625 -3.28125 -0.65625 C -4.351562 -0.65625 -5.191406 -0.921875 -5.796875 -1.453125 C -6.410156 -1.992188 -6.71875 -2.734375 -6.71875 -3.671875 Z M -6.71875 -3.671875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-7"> +<path style="stroke:none;" d="M -3.359375 -5.453125 C -4.140625 -5.453125 -4.742188 -5.289062 -5.171875 -4.96875 C -5.597656 -4.644531 -5.8125 -4.191406 -5.8125 -3.609375 C -5.8125 -3.035156 -5.597656 -2.585938 -5.171875 -2.265625 C -4.742188 -1.941406 -4.140625 -1.78125 -3.359375 -1.78125 C -2.578125 -1.78125 -1.972656 -1.941406 -1.546875 -2.265625 C -1.117188 -2.585938 -0.90625 -3.035156 -0.90625 -3.609375 C -0.90625 -4.191406 -1.117188 -4.644531 -1.546875 -4.96875 C -1.972656 -5.289062 -2.578125 -5.453125 -3.359375 -5.453125 Z M -0.8125 -6.53125 C 0.300781 -6.53125 1.128906 -6.28125 1.671875 -5.78125 C 2.222656 -5.289062 2.5 -4.53125 2.5 -3.5 C 2.5 -3.125 2.46875 -2.765625 2.40625 -2.421875 C 2.351562 -2.085938 2.269531 -1.765625 2.15625 -1.453125 L 1.109375 -1.453125 C 1.273438 -1.765625 1.398438 -2.078125 1.484375 -2.390625 C 1.566406 -2.703125 1.609375 -3.015625 1.609375 -3.328125 C 1.609375 -4.035156 1.421875 -4.566406 1.046875 -4.921875 C 0.679688 -5.273438 0.125 -5.453125 -0.625 -5.453125 L -1.15625 -5.453125 C -0.769531 -5.222656 -0.476562 -4.9375 -0.28125 -4.59375 C -0.09375 -4.25 0 -3.832031 0 -3.34375 C 0 -2.539062 -0.304688 -1.890625 -0.921875 -1.390625 C -1.535156 -0.898438 -2.347656 -0.65625 -3.359375 -0.65625 C -4.367188 -0.65625 -5.179688 -0.898438 -5.796875 -1.390625 C -6.410156 -1.890625 -6.71875 -2.539062 -6.71875 -3.34375 C -6.71875 -3.832031 -6.617188 -4.25 -6.421875 -4.59375 C -6.234375 -4.9375 -5.945312 -5.222656 -5.5625 -5.453125 L -6.5625 -5.453125 L -6.5625 -6.53125 Z M -0.8125 -6.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-8"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph1-9"> +<path style="stroke:none;" d="M -9.125 -4.453125 L -8.21875 -4.453125 L -8.21875 -3.421875 C -8.21875 -3.035156 -8.140625 -2.765625 -7.984375 -2.609375 C -7.828125 -2.460938 -7.546875 -2.390625 -7.140625 -2.390625 L -6.5625 -2.390625 L -6.5625 -4.171875 L -5.71875 -4.171875 L -5.71875 -2.390625 L 0 -2.390625 L 0 -1.3125 L -5.71875 -1.3125 L -5.71875 -0.28125 L -6.5625 -0.28125 L -6.5625 -1.3125 L -7.015625 -1.3125 C -7.742188 -1.3125 -8.273438 -1.476562 -8.609375 -1.8125 C -8.953125 -2.15625 -9.125 -2.695312 -9.125 -3.4375 Z M -9.125 -4.453125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-10"> +<path style="stroke:none;" d="M -5.5625 -5.453125 L -9.125 -5.453125 L -9.125 -6.53125 L 0 -6.53125 L 0 -5.453125 L -0.984375 -5.453125 C -0.597656 -5.222656 -0.304688 -4.9375 -0.109375 -4.59375 C 0.078125 -4.25 0.171875 -3.832031 0.171875 -3.34375 C 0.171875 -2.550781 -0.144531 -1.90625 -0.78125 -1.40625 C -1.414062 -0.90625 -2.25 -0.65625 -3.28125 -0.65625 C -4.3125 -0.65625 -5.140625 -0.90625 -5.765625 -1.40625 C -6.398438 -1.90625 -6.71875 -2.550781 -6.71875 -3.34375 C -6.71875 -3.832031 -6.625 -4.25 -6.4375 -4.59375 C -6.25 -4.9375 -5.957031 -5.222656 -5.5625 -5.453125 Z M -3.28125 -1.78125 C -2.488281 -1.78125 -1.863281 -1.941406 -1.40625 -2.265625 C -0.957031 -2.585938 -0.734375 -3.035156 -0.734375 -3.609375 C -0.734375 -4.179688 -0.957031 -4.628906 -1.40625 -4.953125 C -1.863281 -5.285156 -2.488281 -5.453125 -3.28125 -5.453125 C -4.070312 -5.453125 -4.691406 -5.285156 -5.140625 -4.953125 C -5.585938 -4.628906 -5.8125 -4.179688 -5.8125 -3.609375 C -5.8125 -3.035156 -5.585938 -2.585938 -5.140625 -2.265625 C -4.691406 -1.941406 -4.070312 -1.78125 -3.28125 -1.78125 Z M -3.28125 -1.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-11"> +<path style="stroke:none;" d="M -6.3125 -5.859375 L -5.296875 -5.859375 C -5.472656 -5.546875 -5.601562 -5.238281 -5.6875 -4.9375 C -5.769531 -4.632812 -5.8125 -4.328125 -5.8125 -4.015625 C -5.8125 -3.304688 -5.585938 -2.757812 -5.140625 -2.375 C -4.703125 -1.988281 -4.082031 -1.796875 -3.28125 -1.796875 C -2.476562 -1.796875 -1.851562 -1.988281 -1.40625 -2.375 C -0.96875 -2.757812 -0.75 -3.304688 -0.75 -4.015625 C -0.75 -4.328125 -0.789062 -4.632812 -0.875 -4.9375 C -0.957031 -5.238281 -1.082031 -5.546875 -1.25 -5.859375 L -0.25 -5.859375 C -0.113281 -5.554688 -0.0078125 -5.242188 0.0625 -4.921875 C 0.132812 -4.597656 0.171875 -4.253906 0.171875 -3.890625 C 0.171875 -2.898438 -0.132812 -2.113281 -0.75 -1.53125 C -1.375 -0.945312 -2.21875 -0.65625 -3.28125 -0.65625 C -4.34375 -0.65625 -5.179688 -0.945312 -5.796875 -1.53125 C -6.410156 -2.125 -6.71875 -2.9375 -6.71875 -3.96875 C -6.71875 -4.289062 -6.679688 -4.609375 -6.609375 -4.921875 C -6.546875 -5.242188 -6.445312 -5.554688 -6.3125 -5.859375 Z M -6.3125 -5.859375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-12"> +<path style="stroke:none;" d="M -3.96875 -6.59375 L 0 -6.59375 L 0 -5.515625 L -3.921875 -5.515625 C -4.546875 -5.515625 -5.007812 -5.390625 -5.3125 -5.140625 C -5.625 -4.898438 -5.78125 -4.539062 -5.78125 -4.0625 C -5.78125 -3.476562 -5.59375 -3.015625 -5.21875 -2.671875 C -4.851562 -2.335938 -4.347656 -2.171875 -3.703125 -2.171875 L 0 -2.171875 L 0 -1.09375 L -9.125 -1.09375 L -9.125 -2.171875 L -5.546875 -2.171875 C -5.941406 -2.429688 -6.234375 -2.734375 -6.421875 -3.078125 C -6.617188 -3.429688 -6.71875 -3.835938 -6.71875 -4.296875 C -6.71875 -5.046875 -6.484375 -5.613281 -6.015625 -6 C -5.554688 -6.394531 -4.875 -6.59375 -3.96875 -6.59375 Z M -3.96875 -6.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-13"> +<path style="stroke:none;" d="M -3.296875 -4.109375 C -3.296875 -3.242188 -3.195312 -2.640625 -3 -2.296875 C -2.800781 -1.960938 -2.460938 -1.796875 -1.984375 -1.796875 C -1.597656 -1.796875 -1.289062 -1.921875 -1.0625 -2.171875 C -0.84375 -2.429688 -0.734375 -2.773438 -0.734375 -3.203125 C -0.734375 -3.804688 -0.941406 -4.285156 -1.359375 -4.640625 C -1.785156 -5.003906 -2.351562 -5.1875 -3.0625 -5.1875 L -3.296875 -5.1875 Z M -3.75 -6.265625 L 0 -6.265625 L 0 -5.1875 L -1 -5.1875 C -0.601562 -4.9375 -0.304688 -4.628906 -0.109375 -4.265625 C 0.078125 -3.898438 0.171875 -3.453125 0.171875 -2.921875 C 0.171875 -2.242188 -0.015625 -1.707031 -0.390625 -1.3125 C -0.773438 -0.914062 -1.28125 -0.71875 -1.90625 -0.71875 C -2.644531 -0.71875 -3.203125 -0.960938 -3.578125 -1.453125 C -3.953125 -1.953125 -4.140625 -2.691406 -4.140625 -3.671875 L -4.140625 -5.1875 L -4.25 -5.1875 C -4.75 -5.1875 -5.132812 -5.019531 -5.40625 -4.6875 C -5.675781 -4.363281 -5.8125 -3.910156 -5.8125 -3.328125 C -5.8125 -2.953125 -5.765625 -2.582031 -5.671875 -2.21875 C -5.578125 -1.863281 -5.441406 -1.523438 -5.265625 -1.203125 L -6.265625 -1.203125 C -6.421875 -1.597656 -6.535156 -1.976562 -6.609375 -2.34375 C -6.679688 -2.71875 -6.71875 -3.082031 -6.71875 -3.4375 C -6.71875 -4.382812 -6.472656 -5.09375 -5.984375 -5.5625 C -5.492188 -6.03125 -4.75 -6.265625 -3.75 -6.265625 Z M -3.75 -6.265625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-14"> +<path style="stroke:none;" d="M -3.96875 -6.59375 L 0 -6.59375 L 0 -5.515625 L -3.921875 -5.515625 C -4.546875 -5.515625 -5.007812 -5.390625 -5.3125 -5.140625 C -5.625 -4.898438 -5.78125 -4.539062 -5.78125 -4.0625 C -5.78125 -3.476562 -5.59375 -3.015625 -5.21875 -2.671875 C -4.851562 -2.335938 -4.347656 -2.171875 -3.703125 -2.171875 L 0 -2.171875 L 0 -1.09375 L -6.5625 -1.09375 L -6.5625 -2.171875 L -5.546875 -2.171875 C -5.941406 -2.429688 -6.234375 -2.734375 -6.421875 -3.078125 C -6.617188 -3.429688 -6.71875 -3.835938 -6.71875 -4.296875 C -6.71875 -5.046875 -6.484375 -5.613281 -6.015625 -6 C -5.554688 -6.394531 -4.875 -6.59375 -3.96875 -6.59375 Z M -3.96875 -6.59375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-15"> +<path style="stroke:none;" d="M -3.546875 -6.75 L -3.03125 -6.75 L -3.03125 -1.78125 C -2.28125 -1.832031 -1.710938 -2.054688 -1.328125 -2.453125 C -0.941406 -2.859375 -0.75 -3.414062 -0.75 -4.125 C -0.75 -4.539062 -0.796875 -4.941406 -0.890625 -5.328125 C -0.992188 -5.722656 -1.148438 -6.113281 -1.359375 -6.5 L -0.328125 -6.5 C -0.171875 -6.101562 -0.0507812 -5.703125 0.03125 -5.296875 C 0.125 -4.890625 0.171875 -4.476562 0.171875 -4.0625 C 0.171875 -3.019531 -0.128906 -2.191406 -0.734375 -1.578125 C -1.347656 -0.960938 -2.175781 -0.65625 -3.21875 -0.65625 C -4.289062 -0.65625 -5.140625 -0.945312 -5.765625 -1.53125 C -6.398438 -2.113281 -6.71875 -2.894531 -6.71875 -3.875 C -6.71875 -4.757812 -6.429688 -5.457031 -5.859375 -5.96875 C -5.296875 -6.488281 -4.523438 -6.75 -3.546875 -6.75 Z M -3.875 -5.671875 C -4.457031 -5.660156 -4.925781 -5.492188 -5.28125 -5.171875 C -5.632812 -4.847656 -5.8125 -4.421875 -5.8125 -3.890625 C -5.8125 -3.285156 -5.640625 -2.800781 -5.296875 -2.4375 C -4.953125 -2.082031 -4.472656 -1.878906 -3.859375 -1.828125 Z M -3.875 -5.671875 "/> +</symbol> +</g> +<clipPath id="clip1"> + <path d="M 59.039062 243 L 473.757812 243 L 473.757812 247 L 59.039062 247 Z M 59.039062 243 "/> +</clipPath> +</defs> +<g id="surface1"> +<rect x="0" y="0" width="504" height="504" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.222656 418.691406 L 365.859375 415.855469 L 362.585938 415.855469 Z M 364.222656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.222656 418.691406 L 365.859375 415.855469 L 362.585938 415.855469 Z M 364.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.742188 224.894531 C 303.742188 226.515625 301.3125 226.515625 301.3125 224.894531 C 301.3125 223.277344 303.742188 223.277344 303.742188 224.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.058594 70.910156 L 301.695312 73.746094 L 298.421875 73.746094 Z M 300.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.914062 70.910156 L 172.550781 73.746094 L 169.277344 73.746094 Z M 170.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.359375 248.394531 C 269.359375 250.011719 266.929688 250.011719 266.929688 248.394531 C 266.929688 246.773438 269.359375 246.773438 269.359375 248.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.972656 256.148438 C 255.972656 257.765625 253.542969 257.765625 253.542969 256.148438 C 253.542969 254.527344 255.972656 254.527344 255.972656 256.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.921875 418.691406 L 299.558594 415.855469 L 296.285156 415.855469 Z M 297.921875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.804688 195.847656 C 144.804688 197.46875 142.371094 197.46875 142.371094 195.847656 C 142.371094 194.230469 144.804688 194.230469 144.804688 195.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.429688 306.710938 C 222.429688 308.332031 220 308.332031 220 306.710938 C 220 305.089844 222.429688 305.089844 222.429688 306.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.234375 178.84375 C 235.234375 180.464844 232.804688 180.464844 232.804688 178.84375 C 232.804688 177.226562 235.234375 177.226562 235.234375 178.84375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.78125 70.910156 L 261.414062 73.746094 L 258.144531 73.746094 Z M 259.78125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.601562 418.691406 L 127.234375 415.855469 L 123.964844 415.855469 Z M 125.601562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.597656 149.804688 C 233.597656 151.425781 231.167969 151.425781 231.167969 149.804688 C 231.167969 148.1875 233.597656 148.1875 233.597656 149.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.421875 203.40625 C 174.421875 205.027344 171.992188 205.027344 171.992188 203.40625 C 171.992188 201.785156 174.421875 201.785156 174.421875 203.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.632812 232.542969 C 250.632812 234.160156 248.203125 234.160156 248.203125 232.542969 C 248.203125 230.921875 250.632812 230.921875 250.632812 232.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.402344 289.070312 C 249.402344 290.6875 246.972656 290.6875 246.972656 289.070312 C 246.972656 287.449219 249.402344 287.449219 249.402344 289.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.21875 70.910156 L 233.855469 73.746094 L 230.582031 73.746094 Z M 232.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.359375 183.003906 C 276.359375 184.625 273.929688 184.625 273.929688 183.003906 C 273.929688 181.382812 276.359375 181.382812 276.359375 183.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.417969 70.910156 L 147.054688 73.746094 L 143.785156 73.746094 Z M 145.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.21875 174.414062 C 277.21875 176.035156 274.789062 176.035156 274.789062 174.414062 C 274.789062 172.792969 277.21875 172.792969 277.21875 174.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.746094 346.882812 C 146.746094 348.503906 144.316406 348.503906 144.316406 346.882812 C 144.316406 345.261719 146.746094 345.261719 146.746094 346.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.21875 70.910156 L 256.855469 73.746094 L 253.582031 73.746094 Z M 255.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.128906 189.902344 C 309.128906 191.523438 306.699219 191.523438 306.699219 189.902344 C 306.699219 188.28125 309.128906 188.28125 309.128906 189.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.628906 135.871094 C 258.628906 137.492188 256.199219 137.492188 256.199219 135.871094 C 256.199219 134.25 258.628906 134.25 258.628906 135.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.988281 70.910156 L 229.625 73.746094 L 226.351562 73.746094 Z M 227.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.832031 194.261719 C 142.832031 195.878906 140.402344 195.878906 140.402344 194.261719 C 140.402344 192.640625 142.832031 192.640625 142.832031 194.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.683594 194.539062 C 150.683594 196.160156 148.253906 196.160156 148.253906 194.539062 C 148.253906 192.921875 150.683594 192.921875 150.683594 194.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.675781 207.152344 C 249.675781 208.773438 247.246094 208.773438 247.246094 207.152344 C 247.246094 205.53125 249.675781 205.53125 249.675781 207.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.082031 191.390625 C 285.082031 193.011719 282.652344 193.011719 282.652344 191.390625 C 282.652344 189.769531 285.082031 189.769531 285.082031 191.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.28125 284.015625 C 287.28125 285.636719 284.851562 285.636719 284.851562 284.015625 C 284.851562 282.398438 287.28125 282.398438 287.28125 284.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.359375 250.28125 C 275.359375 251.902344 272.929688 251.902344 272.929688 250.28125 C 272.929688 248.664062 275.359375 248.664062 275.359375 250.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.828125 240.011719 C 267.828125 241.628906 265.398438 241.628906 265.398438 240.011719 C 265.398438 238.390625 267.828125 238.390625 267.828125 240.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.25 268.265625 C 186.25 269.886719 183.820312 269.886719 183.820312 268.265625 C 183.820312 266.644531 186.25 266.644531 186.25 268.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.457031 232.082031 C 229.457031 233.699219 227.027344 233.699219 227.027344 232.082031 C 227.027344 230.460938 229.457031 230.460938 229.457031 232.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.792969 241.667969 C 212.792969 243.289062 210.363281 243.289062 210.363281 241.667969 C 210.363281 240.046875 212.792969 240.046875 212.792969 241.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.332031 70.910156 L 196.96875 73.746094 L 193.695312 73.746094 Z M 195.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.320312 273.625 C 273.320312 275.246094 270.890625 275.246094 270.890625 273.625 C 270.890625 272.007812 273.320312 272.007812 273.320312 273.625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.226562 307.78125 C 243.226562 309.402344 240.796875 309.402344 240.796875 307.78125 C 240.796875 306.164062 243.226562 306.164062 243.226562 307.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.804688 365.269531 C 160.804688 366.886719 158.375 366.886719 158.375 365.269531 C 158.375 363.648438 160.804688 363.648438 160.804688 365.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.417969 80.570312 C 277.417969 82.191406 274.988281 82.191406 274.988281 80.570312 C 274.988281 78.949219 277.417969 78.949219 277.417969 80.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.898438 80.019531 C 345.898438 81.640625 343.46875 81.640625 343.46875 80.019531 C 343.46875 78.398438 345.898438 78.398438 345.898438 80.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.992188 217.753906 C 241.992188 219.375 239.5625 219.375 239.5625 217.753906 C 239.5625 216.132812 241.992188 216.132812 241.992188 217.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.144531 309.644531 C 285.144531 311.265625 282.714844 311.265625 282.714844 309.644531 C 282.714844 308.023438 285.144531 308.023438 285.144531 309.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.070312 264.042969 C 208.070312 265.664062 205.636719 265.664062 205.636719 264.042969 C 205.636719 262.421875 208.070312 262.421875 208.070312 264.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.101562 196.9375 C 215.101562 198.558594 212.671875 198.558594 212.671875 196.9375 C 212.671875 195.316406 215.101562 195.316406 215.101562 196.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.210938 325.335938 C 273.210938 326.957031 270.78125 326.957031 270.78125 325.335938 C 270.78125 323.71875 273.210938 323.71875 273.210938 325.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.878906 239.136719 C 272.878906 240.757812 270.449219 240.757812 270.449219 239.136719 C 270.449219 237.519531 272.878906 237.519531 272.878906 239.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.871094 70.910156 L 184.507812 73.746094 L 181.238281 73.746094 Z M 182.871094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.390625 70.910156 L 199.027344 73.746094 L 195.753906 73.746094 Z M 197.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.816406 252.578125 C 254.816406 254.199219 252.386719 254.199219 252.386719 252.578125 C 252.386719 250.960938 254.816406 250.960938 254.816406 252.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.101562 297.496094 C 343.101562 299.117188 340.671875 299.117188 340.671875 297.496094 C 340.671875 295.875 343.101562 295.875 343.101562 297.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.761719 284.039062 C 136.761719 285.660156 134.332031 285.660156 134.332031 284.039062 C 134.332031 282.421875 136.761719 282.421875 136.761719 284.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.539062 275.738281 C 290.539062 277.355469 288.109375 277.355469 288.109375 275.738281 C 288.109375 274.117188 290.539062 274.117188 290.539062 275.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175 263.246094 C 175 264.867188 172.566406 264.867188 172.566406 263.246094 C 172.566406 261.628906 175 261.628906 175 263.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.398438 167.472656 C 187.398438 169.089844 184.96875 169.089844 184.96875 167.472656 C 184.96875 165.851562 187.398438 165.851562 187.398438 167.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.339844 265.394531 C 288.339844 267.011719 285.910156 267.011719 285.910156 265.394531 C 285.910156 263.773438 288.339844 263.773438 288.339844 265.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.089844 227.683594 C 284.089844 229.300781 281.660156 229.300781 281.660156 227.683594 C 281.660156 226.0625 284.089844 226.0625 284.089844 227.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.972656 70.910156 L 155.609375 73.746094 L 152.339844 73.746094 Z M 153.972656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.097656 70.910156 L 202.734375 73.746094 L 199.464844 73.746094 Z M 201.097656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.078125 70.910156 L 206.714844 73.746094 L 203.445312 73.746094 Z M 205.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.792969 144.359375 C 310.792969 145.976562 308.363281 145.976562 308.363281 144.359375 C 308.363281 142.738281 310.792969 142.738281 310.792969 144.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.078125 179.304688 C 296.078125 180.925781 293.648438 180.925781 293.648438 179.304688 C 293.648438 177.683594 296.078125 177.683594 296.078125 179.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.082031 257.28125 C 298.082031 258.902344 295.652344 258.902344 295.652344 257.28125 C 295.652344 255.660156 298.082031 255.660156 298.082031 257.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.707031 70.910156 L 189.34375 73.746094 L 186.070312 73.746094 Z M 187.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.058594 301.882812 C 263.058594 303.503906 260.628906 303.503906 260.628906 301.882812 C 260.628906 300.261719 263.058594 300.261719 263.058594 301.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.210938 254.351562 C 289.210938 255.972656 286.78125 255.972656 286.78125 254.351562 C 286.78125 252.730469 289.210938 252.730469 289.210938 254.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.679688 284.703125 C 223.679688 286.324219 221.25 286.324219 221.25 284.703125 C 221.25 283.082031 223.679688 283.082031 223.679688 284.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.832031 245.679688 C 173.832031 247.296875 171.402344 247.296875 171.402344 245.679688 C 171.402344 244.058594 173.832031 244.058594 173.832031 245.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.808594 70.910156 L 115.445312 73.746094 L 112.175781 73.746094 Z M 113.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.585938 181.359375 C 194.585938 182.976562 192.15625 182.976562 192.15625 181.359375 C 192.15625 179.738281 194.585938 179.738281 194.585938 181.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.078125 275.636719 C 252.078125 277.253906 249.648438 277.253906 249.648438 275.636719 C 249.648438 274.015625 252.078125 274.015625 252.078125 275.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.035156 293.148438 C 182.035156 294.769531 179.605469 294.769531 179.605469 293.148438 C 179.605469 291.53125 182.035156 291.53125 182.035156 293.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.722656 347.675781 C 264.722656 349.292969 262.292969 349.292969 262.292969 347.675781 C 262.292969 346.054688 264.722656 346.054688 264.722656 347.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.9375 70.910156 L 216.574219 73.746094 L 213.300781 73.746094 Z M 214.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.960938 248.34375 C 269.960938 249.964844 267.53125 249.964844 267.53125 248.34375 C 267.53125 246.726562 269.960938 246.726562 269.960938 248.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.078125 138.636719 C 294.078125 140.257812 291.648438 140.257812 291.648438 138.636719 C 291.648438 137.015625 294.078125 137.015625 294.078125 138.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.226562 70.910156 L 164.863281 73.746094 L 161.589844 73.746094 Z M 163.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.214844 258.421875 C 284.214844 260.039062 281.785156 260.039062 281.785156 258.421875 C 281.785156 256.800781 284.214844 256.800781 284.214844 258.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.296875 261.027344 C 278.296875 262.644531 275.867188 262.644531 275.867188 261.027344 C 275.867188 259.40625 278.296875 259.40625 278.296875 261.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.96875 274.050781 C 312.96875 275.671875 310.539062 275.671875 310.539062 274.050781 C 310.539062 272.429688 312.96875 272.429688 312.96875 274.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.484375 418.691406 L 261.121094 415.855469 L 257.847656 415.855469 Z M 259.484375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.265625 317.675781 C 279.265625 319.296875 276.835938 319.296875 276.835938 317.675781 C 276.835938 316.054688 279.265625 316.054688 279.265625 317.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.097656 319.222656 C 289.097656 320.839844 286.667969 320.839844 286.667969 319.222656 C 286.667969 317.601562 289.097656 317.601562 289.097656 319.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.800781 70.910156 L 299.4375 73.746094 L 296.164062 73.746094 Z M 297.800781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.117188 70.910156 L 285.753906 73.746094 L 282.484375 73.746094 Z M 284.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.910156 241.277344 C 239.910156 242.898438 237.480469 242.898438 237.480469 241.277344 C 237.480469 239.660156 239.910156 239.660156 239.910156 241.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.355469 271.726562 C 190.355469 273.347656 187.925781 273.347656 187.925781 271.726562 C 187.925781 270.105469 190.355469 270.105469 190.355469 271.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.453125 300.074219 C 271.453125 301.695312 269.023438 301.695312 269.023438 300.074219 C 269.023438 298.457031 271.453125 298.457031 271.453125 300.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.902344 262.597656 C 266.902344 264.21875 264.472656 264.21875 264.472656 262.597656 C 264.472656 260.976562 266.902344 260.976562 266.902344 262.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.464844 183.78125 C 224.464844 185.402344 222.035156 185.402344 222.035156 183.78125 C 222.035156 182.164062 224.464844 182.164062 224.464844 183.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.117188 185.679688 C 265.117188 187.300781 262.6875 187.300781 262.6875 185.679688 C 262.6875 184.0625 265.117188 184.0625 265.117188 185.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.324219 202.15625 C 277.324219 203.777344 274.894531 203.777344 274.894531 202.15625 C 274.894531 200.535156 277.324219 200.535156 277.324219 202.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.082031 286.339844 C 280.082031 287.960938 277.652344 287.960938 277.652344 286.339844 C 277.652344 284.722656 280.082031 284.722656 280.082031 286.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.625 293.78125 C 229.625 295.402344 227.195312 295.402344 227.195312 293.78125 C 227.195312 292.164062 229.625 292.164062 229.625 293.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.234375 285.308594 C 241.234375 286.929688 238.804688 286.929688 238.804688 285.308594 C 238.804688 283.691406 241.234375 283.691406 241.234375 285.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.433594 418.691406 L 118.070312 415.855469 L 114.796875 415.855469 Z M 116.433594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.261719 286.0625 C 260.261719 287.683594 257.832031 287.683594 257.832031 286.0625 C 257.832031 284.441406 260.261719 284.441406 260.261719 286.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.261719 272.136719 C 271.261719 273.753906 268.832031 273.753906 268.832031 272.136719 C 268.832031 270.515625 271.261719 270.515625 271.261719 272.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.945312 70.910156 L 193.582031 73.746094 L 190.308594 73.746094 Z M 191.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.539062 194.765625 C 277.539062 196.386719 275.109375 196.386719 275.109375 194.765625 C 275.109375 193.144531 277.539062 193.144531 277.539062 194.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.546875 185.585938 C 249.546875 187.207031 247.117188 187.207031 247.117188 185.585938 C 247.117188 183.964844 249.546875 183.964844 249.546875 185.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.984375 205.015625 C 262.984375 206.636719 260.554688 206.636719 260.554688 205.015625 C 260.554688 203.398438 262.984375 203.398438 262.984375 205.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.890625 256.230469 C 281.890625 257.851562 279.460938 257.851562 279.460938 256.230469 C 279.460938 254.609375 281.890625 254.609375 281.890625 256.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.191406 268.921875 C 244.191406 270.542969 241.761719 270.542969 241.761719 268.921875 C 241.761719 267.304688 244.191406 267.304688 244.191406 268.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.535156 256.265625 C 271.535156 257.886719 269.105469 257.886719 269.105469 256.265625 C 269.105469 254.644531 271.535156 254.644531 271.535156 256.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.902344 378.691406 C 309.902344 380.308594 307.472656 380.308594 307.472656 378.691406 C 307.472656 377.070312 309.902344 377.070312 309.902344 378.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.671875 100.089844 C 205.671875 101.710938 203.242188 101.710938 203.242188 100.089844 C 203.242188 98.472656 205.671875 98.472656 205.671875 100.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.359375 282.480469 C 244.359375 284.101562 241.929688 284.101562 241.929688 282.480469 C 241.929688 280.859375 244.359375 280.859375 244.359375 282.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.648438 143.203125 C 228.648438 144.824219 226.21875 144.824219 226.21875 143.203125 C 226.21875 141.582031 228.648438 141.582031 228.648438 143.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.484375 331.871094 C 281.484375 333.492188 279.054688 333.492188 279.054688 331.871094 C 279.054688 330.253906 281.484375 330.253906 281.484375 331.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.453125 355.054688 C 250.453125 356.675781 248.023438 356.675781 248.023438 355.054688 C 248.023438 353.4375 250.453125 353.4375 250.453125 355.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.144531 286.546875 C 327.144531 288.164062 324.714844 288.164062 324.714844 286.546875 C 324.714844 284.925781 327.144531 284.925781 327.144531 286.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.238281 274.601562 C 244.238281 276.222656 241.808594 276.222656 241.808594 274.601562 C 241.808594 272.984375 244.238281 272.984375 244.238281 274.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.371094 104.84375 C 283.371094 106.464844 280.941406 106.464844 280.941406 104.84375 C 280.941406 103.222656 283.371094 103.222656 283.371094 104.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.5 179.304688 C 291.5 180.921875 289.070312 180.921875 289.070312 179.304688 C 289.070312 177.683594 291.5 177.683594 291.5 179.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.457031 291.871094 C 332.457031 293.492188 330.027344 293.492188 330.027344 291.871094 C 330.027344 290.253906 332.457031 290.253906 332.457031 291.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.238281 198.902344 C 186.238281 200.519531 183.808594 200.519531 183.808594 198.902344 C 183.808594 197.28125 186.238281 197.28125 186.238281 198.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.921875 418.691406 L 312.558594 415.855469 L 309.285156 415.855469 Z M 310.921875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.8125 245.308594 C 243.8125 246.929688 241.382812 246.929688 241.382812 245.308594 C 241.382812 243.691406 243.8125 243.691406 243.8125 245.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.941406 250.992188 C 161.941406 252.613281 159.511719 252.613281 159.511719 250.992188 C 159.511719 249.375 161.941406 249.375 161.941406 250.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.503906 70.910156 L 156.140625 73.746094 L 152.867188 73.746094 Z M 154.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.328125 216.851562 C 249.328125 218.472656 246.898438 218.472656 246.898438 216.851562 C 246.898438 215.230469 249.328125 215.230469 249.328125 216.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.390625 70.910156 L 228.027344 73.746094 L 224.753906 73.746094 Z M 226.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.355469 343.390625 C 208.355469 345.011719 205.925781 345.011719 205.925781 343.390625 C 205.925781 341.769531 208.355469 341.769531 208.355469 343.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.203125 351.523438 C 257.203125 353.144531 254.773438 353.144531 254.773438 351.523438 C 254.773438 349.90625 257.203125 349.90625 257.203125 351.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.261719 96.03125 C 165.261719 97.652344 162.832031 97.652344 162.832031 96.03125 C 162.832031 94.414062 165.261719 94.414062 165.261719 96.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.574219 179.039062 C 225.574219 180.660156 223.144531 180.660156 223.144531 179.039062 C 223.144531 177.421875 225.574219 177.421875 225.574219 179.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.808594 170.238281 C 226.808594 171.859375 224.378906 171.859375 224.378906 170.238281 C 224.378906 168.617188 226.808594 168.617188 226.808594 170.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.734375 331.886719 C 252.734375 333.503906 250.300781 333.503906 250.300781 331.886719 C 250.300781 330.265625 252.734375 330.265625 252.734375 331.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.222656 265.554688 C 268.222656 267.175781 265.792969 267.175781 265.792969 265.554688 C 265.792969 263.933594 268.222656 263.933594 268.222656 265.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.589844 269.699219 C 285.589844 271.316406 283.160156 271.316406 283.160156 269.699219 C 283.160156 268.078125 285.589844 268.078125 285.589844 269.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.230469 340.824219 C 223.230469 342.445312 220.800781 342.445312 220.800781 340.824219 C 220.800781 339.207031 223.230469 339.207031 223.230469 340.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.90625 139.234375 C 257.90625 140.851562 255.476562 140.851562 255.476562 139.234375 C 255.476562 137.613281 257.90625 137.613281 257.90625 139.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.125 418.691406 L 177.761719 415.855469 L 174.488281 415.855469 Z M 176.125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.65625 264.789062 C 173.65625 266.40625 171.226562 266.40625 171.226562 264.789062 C 171.226562 263.167969 173.65625 263.167969 173.65625 264.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.433594 70.910156 L 180.070312 73.746094 L 176.796875 73.746094 Z M 178.433594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.066406 70.910156 L 156.703125 73.746094 L 153.429688 73.746094 Z M 155.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.765625 264.378906 C 307.765625 266 305.335938 266 305.335938 264.378906 C 305.335938 262.761719 307.765625 262.761719 307.765625 264.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.925781 260.367188 C 284.925781 261.988281 282.496094 261.988281 282.496094 260.367188 C 282.496094 258.75 284.925781 258.75 284.925781 260.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.121094 180.179688 C 274.121094 181.800781 271.691406 181.800781 271.691406 180.179688 C 271.691406 178.5625 274.121094 178.5625 274.121094 180.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.902344 316.53125 C 295.902344 318.148438 293.472656 318.148438 293.472656 316.53125 C 293.472656 314.910156 295.902344 314.910156 295.902344 316.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.269531 70.910156 L 260.90625 73.746094 L 257.632812 73.746094 Z M 259.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.75 223.121094 C 292.75 224.742188 290.320312 224.742188 290.320312 223.121094 C 290.320312 221.503906 292.75 221.503906 292.75 223.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.476562 110.160156 C 277.476562 111.78125 275.042969 111.78125 275.042969 110.160156 C 275.042969 108.542969 277.476562 108.542969 277.476562 110.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.054688 418.691406 L 336.691406 415.855469 L 333.417969 415.855469 Z M 335.054688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.554688 119.652344 C 250.554688 121.273438 248.125 121.273438 248.125 119.652344 C 248.125 118.03125 250.554688 118.03125 250.554688 119.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.398438 243.816406 C 332.398438 245.433594 329.96875 245.433594 329.96875 243.816406 C 329.96875 242.195312 332.398438 242.195312 332.398438 243.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.59375 123.859375 C 197.59375 125.476562 195.164062 125.476562 195.164062 123.859375 C 195.164062 122.238281 197.59375 122.238281 197.59375 123.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.328125 148.363281 C 269.328125 149.980469 266.898438 149.980469 266.898438 148.363281 C 266.898438 146.742188 269.328125 146.742188 269.328125 148.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.621094 171.890625 C 299.621094 173.511719 297.191406 173.511719 297.191406 171.890625 C 297.191406 170.273438 299.621094 170.273438 299.621094 171.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.660156 226.621094 C 240.660156 228.242188 238.230469 228.242188 238.230469 226.621094 C 238.230469 225 240.660156 225 240.660156 226.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.226562 97.234375 C 253.226562 98.855469 250.796875 98.855469 250.796875 97.234375 C 250.796875 95.613281 253.226562 95.613281 253.226562 97.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.953125 221.34375 C 294.953125 222.964844 292.523438 222.964844 292.523438 221.34375 C 292.523438 219.722656 294.953125 219.722656 294.953125 221.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.128906 213.136719 C 301.128906 214.757812 298.699219 214.757812 298.699219 213.136719 C 298.699219 211.515625 301.128906 211.515625 301.128906 213.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.269531 219.664062 C 273.269531 221.285156 270.839844 221.285156 270.839844 219.664062 C 270.839844 218.042969 273.269531 218.042969 273.269531 219.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.070312 239.027344 C 245.070312 240.648438 242.640625 240.648438 242.640625 239.027344 C 242.640625 237.40625 245.070312 237.40625 245.070312 239.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.980469 215.496094 C 216.980469 217.117188 214.550781 217.117188 214.550781 215.496094 C 214.550781 213.875 216.980469 213.875 216.980469 215.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.054688 199.53125 C 196.054688 201.148438 193.625 201.148438 193.625 199.53125 C 193.625 197.910156 196.054688 197.910156 196.054688 199.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.742188 227.1875 C 235.742188 228.804688 233.3125 228.804688 233.3125 227.1875 C 233.3125 225.566406 235.742188 225.566406 235.742188 227.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.25 250.367188 C 234.25 251.984375 231.820312 251.984375 231.820312 250.367188 C 231.820312 248.746094 234.25 248.746094 234.25 250.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.410156 336.625 C 251.410156 338.246094 248.980469 338.246094 248.980469 336.625 C 248.980469 335.003906 251.410156 335.003906 251.410156 336.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.71875 334.964844 C 241.71875 336.585938 239.289062 336.585938 239.289062 334.964844 C 239.289062 333.34375 241.71875 333.34375 241.71875 334.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.296875 289.214844 C 246.296875 290.835938 243.863281 290.835938 243.863281 289.214844 C 243.863281 287.59375 246.296875 287.59375 246.296875 289.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.316406 271.625 C 225.316406 273.246094 222.886719 273.246094 222.886719 271.625 C 222.886719 270.003906 225.316406 270.003906 225.316406 271.625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.441406 418.691406 L 282.078125 415.855469 L 278.804688 415.855469 Z M 280.441406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.195312 99.367188 C 158.195312 100.988281 155.765625 100.988281 155.765625 99.367188 C 155.765625 97.746094 158.195312 97.746094 158.195312 99.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.683594 70.910156 L 178.320312 73.746094 L 175.050781 73.746094 Z M 176.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.371094 70.910156 L 147.007812 73.746094 L 143.738281 73.746094 Z M 145.371094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.398438 241.539062 C 307.398438 243.15625 304.96875 243.15625 304.96875 241.539062 C 304.96875 239.917969 307.398438 239.917969 307.398438 241.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.65625 124.269531 C 220.65625 125.886719 218.226562 125.886719 218.226562 124.269531 C 218.226562 122.648438 220.65625 122.648438 220.65625 124.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.609375 202.480469 C 241.609375 204.101562 239.179688 204.101562 239.179688 202.480469 C 239.179688 200.863281 241.609375 200.863281 241.609375 202.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.007812 220.457031 C 261.007812 222.078125 258.574219 222.078125 258.574219 220.457031 C 258.574219 218.835938 261.007812 218.835938 261.007812 220.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.761719 249.546875 C 284.761719 251.167969 282.332031 251.167969 282.332031 249.546875 C 282.332031 247.925781 284.761719 247.925781 284.761719 249.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264 293.429688 C 264 295.050781 261.570312 295.050781 261.570312 293.429688 C 261.570312 291.808594 264 291.808594 264 293.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.558594 241.921875 C 239.558594 243.542969 237.128906 243.542969 237.128906 241.921875 C 237.128906 240.304688 239.558594 240.304688 239.558594 241.921875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.222656 70.910156 L 249.855469 73.746094 L 246.585938 73.746094 Z M 248.222656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.351562 70.910156 L 249.988281 73.746094 L 246.714844 73.746094 Z M 248.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.457031 138.089844 C 193.457031 139.707031 191.027344 139.707031 191.027344 138.089844 C 191.027344 136.46875 193.457031 136.46875 193.457031 138.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.167969 186.113281 C 203.167969 187.734375 200.738281 187.734375 200.738281 186.113281 C 200.738281 184.496094 203.167969 184.496094 203.167969 186.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.609375 126.710938 C 137.609375 128.332031 135.179688 128.332031 135.179688 126.710938 C 135.179688 125.09375 137.609375 125.09375 137.609375 126.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.085938 377.132812 C 276.085938 378.75 273.65625 378.75 273.65625 377.132812 C 273.65625 375.511719 276.085938 375.511719 276.085938 377.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.75 118.945312 C 295.75 120.566406 293.320312 120.566406 293.320312 118.945312 C 293.320312 117.328125 295.75 117.328125 295.75 118.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.042969 211.882812 C 126.042969 213.503906 123.613281 213.503906 123.613281 211.882812 C 123.613281 210.261719 126.042969 210.261719 126.042969 211.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.65625 164.925781 C 220.65625 166.546875 218.226562 166.546875 218.226562 164.925781 C 218.226562 163.304688 220.65625 163.304688 220.65625 164.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.871094 305.0625 C 209.871094 306.683594 207.4375 306.683594 207.4375 305.0625 C 207.4375 303.445312 209.871094 303.445312 209.871094 305.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.726562 418.691406 L 312.363281 415.855469 L 309.089844 415.855469 Z M 310.726562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.46875 418.691406 L 283.105469 415.855469 L 279.835938 415.855469 Z M 281.46875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.886719 284.136719 C 289.886719 285.757812 287.457031 285.757812 287.457031 284.136719 C 287.457031 282.519531 289.886719 282.519531 289.886719 284.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.105469 251.640625 C 224.105469 253.257812 221.675781 253.257812 221.675781 251.640625 C 221.675781 250.019531 224.105469 250.019531 224.105469 251.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.675781 418.691406 L 191.3125 415.855469 L 188.039062 415.855469 Z M 189.675781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.714844 418.691406 L 182.351562 415.855469 L 179.078125 415.855469 Z M 180.714844 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.28125 418.691406 L 358.917969 415.855469 L 355.644531 415.855469 Z M 357.28125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.140625 166.78125 C 130.140625 168.402344 127.710938 168.402344 127.710938 166.78125 C 127.710938 165.164062 130.140625 165.164062 130.140625 166.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.445312 313.183594 C 263.445312 314.804688 261.011719 314.804688 261.011719 313.183594 C 261.011719 311.566406 263.445312 311.566406 263.445312 313.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.769531 294.332031 C 255.769531 295.953125 253.339844 295.953125 253.339844 294.332031 C 253.339844 292.710938 255.769531 292.710938 255.769531 294.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.3125 135.660156 C 218.3125 137.28125 215.882812 137.28125 215.882812 135.660156 C 215.882812 134.039062 218.3125 134.039062 218.3125 135.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.96875 418.691406 L 253.605469 415.855469 L 250.332031 415.855469 Z M 251.96875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.167969 418.691406 L 269.800781 415.855469 L 266.53125 415.855469 Z M 268.167969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.554688 70.910156 L 154.191406 73.746094 L 150.921875 73.746094 Z M 152.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.535156 232.78125 C 184.535156 234.398438 182.105469 234.398438 182.105469 232.78125 C 182.105469 231.160156 184.535156 231.160156 184.535156 232.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.082031 228.15625 C 201.082031 229.773438 198.652344 229.773438 198.652344 228.15625 C 198.652344 226.535156 201.082031 226.535156 201.082031 228.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.835938 70.910156 L 200.472656 73.746094 L 197.203125 73.746094 Z M 198.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.65625 203.515625 C 205.65625 205.132812 203.226562 205.132812 203.226562 203.515625 C 203.226562 201.894531 205.65625 201.894531 205.65625 203.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.144531 188.511719 C 217.144531 190.128906 214.714844 190.128906 214.714844 188.511719 C 214.714844 186.890625 217.144531 186.890625 217.144531 188.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.929688 418.691406 L 213.566406 415.855469 L 210.292969 415.855469 Z M 211.929688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.21875 266.234375 C 279.21875 267.851562 276.789062 267.851562 276.789062 266.234375 C 276.789062 264.613281 279.21875 264.613281 279.21875 266.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.199219 318.203125 C 236.199219 319.824219 233.769531 319.824219 233.769531 318.203125 C 233.769531 316.582031 236.199219 316.582031 236.199219 318.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.292969 280 C 222.292969 281.621094 219.863281 281.621094 219.863281 280 C 219.863281 278.382812 222.292969 278.382812 222.292969 280 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.46875 210.492188 C 196.46875 212.109375 194.039062 212.109375 194.039062 210.492188 C 194.039062 208.871094 196.46875 208.871094 196.46875 210.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.53125 271.582031 C 251.53125 273.203125 249.101562 273.203125 249.101562 271.582031 C 249.101562 269.960938 251.53125 269.960938 251.53125 271.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.515625 187.539062 C 267.515625 189.15625 265.085938 189.15625 265.085938 187.539062 C 265.085938 185.917969 267.515625 185.917969 267.515625 187.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.726562 283.199219 C 257.726562 284.820312 255.296875 284.820312 255.296875 283.199219 C 255.296875 281.578125 257.726562 281.578125 257.726562 283.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.660156 246.378906 C 255.660156 248 253.230469 248 253.230469 246.378906 C 253.230469 244.761719 255.660156 244.761719 255.660156 246.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.082031 246.527344 C 264.082031 248.148438 261.652344 248.148438 261.652344 246.527344 C 261.652344 244.910156 264.082031 244.910156 264.082031 246.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.640625 70.910156 L 286.277344 73.746094 L 283.003906 73.746094 Z M 284.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.238281 111.988281 C 295.238281 113.609375 292.808594 113.609375 292.808594 111.988281 C 292.808594 110.367188 295.238281 110.367188 295.238281 111.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.9375 70.910156 L 213.574219 73.746094 L 210.300781 73.746094 Z M 211.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.601562 221.246094 C 336.601562 222.867188 334.171875 222.867188 334.171875 221.246094 C 334.171875 219.628906 336.601562 219.628906 336.601562 221.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.871094 175 C 266.871094 176.617188 264.441406 176.617188 264.441406 175 C 264.441406 173.378906 266.871094 173.378906 266.871094 175 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.652344 218.390625 C 297.652344 220.011719 295.222656 220.011719 295.222656 218.390625 C 295.222656 216.769531 297.652344 216.769531 297.652344 218.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.523438 239.613281 C 301.523438 241.230469 299.09375 241.230469 299.09375 239.613281 C 299.09375 237.992188 301.523438 237.992188 301.523438 239.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.300781 219.203125 C 235.300781 220.820312 232.871094 220.820312 232.871094 219.203125 C 232.871094 217.582031 235.300781 217.582031 235.300781 219.203125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.335938 70.910156 L 129.972656 73.746094 L 126.699219 73.746094 Z M 128.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.484375 308.140625 C 281.484375 309.761719 279.054688 309.761719 279.054688 308.140625 C 279.054688 306.519531 281.484375 306.519531 281.484375 308.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.90625 220.089844 C 316.90625 221.710938 314.476562 221.710938 314.476562 220.089844 C 314.476562 218.472656 316.90625 218.472656 316.90625 220.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.308594 113.535156 C 171.308594 115.152344 168.878906 115.152344 168.878906 113.535156 C 168.878906 111.914062 171.308594 111.914062 171.308594 113.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.191406 302.691406 C 123.191406 304.3125 120.761719 304.3125 120.761719 302.691406 C 120.761719 301.074219 123.191406 301.074219 123.191406 302.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.925781 318.578125 C 236.925781 320.195312 234.496094 320.195312 234.496094 318.578125 C 234.496094 316.957031 236.925781 316.957031 236.925781 318.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.441406 369.664062 C 217.441406 371.285156 215.011719 371.285156 215.011719 369.664062 C 215.011719 368.046875 217.441406 368.046875 217.441406 369.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.988281 356.816406 C 274.988281 358.4375 272.558594 358.4375 272.558594 356.816406 C 272.558594 355.199219 274.988281 355.199219 274.988281 356.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.613281 145.570312 C 232.613281 147.191406 230.183594 147.191406 230.183594 145.570312 C 230.183594 143.953125 232.613281 143.953125 232.613281 145.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.371094 301.726562 C 259.371094 303.347656 256.941406 303.347656 256.941406 301.726562 C 256.941406 300.105469 259.371094 300.105469 259.371094 301.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.9375 70.910156 L 261.574219 73.746094 L 258.300781 73.746094 Z M 259.9375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.679688 70.910156 L 224.316406 73.746094 L 221.042969 73.746094 Z M 222.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.488281 179.546875 C 226.488281 181.167969 224.058594 181.167969 224.058594 179.546875 C 224.058594 177.929688 226.488281 177.929688 226.488281 179.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.679688 162.898438 C 272.679688 164.519531 270.25 164.519531 270.25 162.898438 C 270.25 161.28125 272.679688 161.28125 272.679688 162.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.875 270.730469 C 334.875 272.347656 332.445312 272.347656 332.445312 270.730469 C 332.445312 269.109375 334.875 269.109375 334.875 270.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.089844 379.5 C 262.089844 381.121094 259.660156 381.121094 259.660156 379.5 C 259.660156 377.878906 262.089844 377.878906 262.089844 379.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.285156 326.910156 C 286.285156 328.53125 283.855469 328.53125 283.855469 326.910156 C 283.855469 325.292969 286.285156 325.292969 286.285156 326.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.464844 248.375 C 284.464844 249.996094 282.035156 249.996094 282.035156 248.375 C 282.035156 246.757812 284.464844 246.757812 284.464844 248.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.371094 260.980469 C 195.371094 262.601562 192.941406 262.601562 192.941406 260.980469 C 192.941406 259.359375 195.371094 259.359375 195.371094 260.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.121094 155.429688 C 113.121094 157.046875 110.691406 157.046875 110.691406 155.429688 C 110.691406 153.808594 113.121094 153.808594 113.121094 155.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.164062 275.328125 C 277.164062 276.945312 274.734375 276.945312 274.734375 275.328125 C 274.734375 273.707031 277.164062 273.707031 277.164062 275.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.695312 237.316406 C 242.695312 238.9375 240.265625 238.9375 240.265625 237.316406 C 240.265625 235.699219 242.695312 235.699219 242.695312 237.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.914062 242.941406 C 182.914062 244.558594 180.484375 244.558594 180.484375 242.941406 C 180.484375 241.320312 182.914062 241.320312 182.914062 242.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.769531 259.945312 C 196.769531 261.566406 194.339844 261.566406 194.339844 259.945312 C 194.339844 258.324219 196.769531 258.324219 196.769531 259.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.136719 246.945312 C 267.136719 248.5625 264.707031 248.5625 264.707031 246.945312 C 264.707031 245.324219 267.136719 245.324219 267.136719 246.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.453125 226.757812 C 271.453125 228.375 269.023438 228.375 269.023438 226.757812 C 269.023438 225.136719 271.453125 225.136719 271.453125 226.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.546875 307.644531 C 231.546875 309.265625 229.117188 309.265625 229.117188 307.644531 C 229.117188 306.023438 231.546875 306.023438 231.546875 307.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.667969 263.40625 C 193.667969 265.027344 191.238281 265.027344 191.238281 263.40625 C 191.238281 261.789062 193.667969 261.789062 193.667969 263.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.824219 211.40625 C 191.824219 213.027344 189.394531 213.027344 189.394531 211.40625 C 189.394531 209.785156 191.824219 209.785156 191.824219 211.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.90625 70.910156 L 164.542969 73.746094 L 161.269531 73.746094 Z M 162.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.878906 234.320312 C 202.878906 235.941406 200.449219 235.941406 200.449219 234.320312 C 200.449219 232.703125 202.878906 232.703125 202.878906 234.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.6875 267.242188 C 272.6875 268.863281 270.253906 268.863281 270.253906 267.242188 C 270.253906 265.621094 272.6875 265.621094 272.6875 267.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.058594 418.691406 L 320.695312 415.855469 L 317.421875 415.855469 Z M 319.058594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.207031 418.691406 L 225.84375 415.855469 L 222.570312 415.855469 Z M 224.207031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.007812 70.910156 L 146.644531 73.746094 L 143.371094 73.746094 Z M 145.007812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.792969 70.910156 L 157.429688 73.746094 L 154.15625 73.746094 Z M 155.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.964844 271.082031 C 339.964844 272.703125 337.535156 272.703125 337.535156 271.082031 C 337.535156 269.460938 339.964844 269.460938 339.964844 271.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.308594 262.460938 C 240.308594 264.082031 237.878906 264.082031 237.878906 262.460938 C 237.878906 260.839844 240.308594 260.839844 240.308594 262.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.160156 351.035156 C 194.160156 352.652344 191.730469 352.652344 191.730469 351.035156 C 191.730469 349.414062 194.160156 349.414062 194.160156 351.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.382812 267.328125 C 270.382812 268.949219 267.953125 268.949219 267.953125 267.328125 C 267.953125 265.710938 270.382812 265.710938 270.382812 267.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.757812 188.296875 C 257.757812 189.917969 255.328125 189.917969 255.328125 188.296875 C 255.328125 186.675781 257.757812 186.675781 257.757812 188.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.328125 252.511719 C 308.328125 254.132812 305.894531 254.132812 305.894531 252.511719 C 305.894531 250.890625 308.328125 250.890625 308.328125 252.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.175781 279.96875 C 141.175781 281.585938 138.746094 281.585938 138.746094 279.96875 C 138.746094 278.347656 141.175781 278.347656 141.175781 279.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.648438 260.210938 C 120.648438 261.828125 118.214844 261.828125 118.214844 260.210938 C 118.214844 258.589844 120.648438 258.589844 120.648438 260.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.363281 160.949219 C 243.363281 162.570312 240.933594 162.570312 240.933594 160.949219 C 240.933594 159.332031 243.363281 159.332031 243.363281 160.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.871094 228.140625 C 212.871094 229.761719 210.441406 229.761719 210.441406 228.140625 C 210.441406 226.523438 212.871094 226.523438 212.871094 228.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.8125 290.371094 C 284.8125 291.992188 282.378906 291.992188 282.378906 290.371094 C 282.378906 288.75 284.8125 288.75 284.8125 290.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.316406 143.9375 C 255.316406 145.558594 252.886719 145.558594 252.886719 143.9375 C 252.886719 142.316406 255.316406 142.316406 255.316406 143.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.890625 341.320312 C 256.890625 342.9375 254.460938 342.9375 254.460938 341.320312 C 254.460938 339.699219 256.890625 339.699219 256.890625 341.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.46875 312.558594 C 297.46875 314.179688 295.039062 314.179688 295.039062 312.558594 C 295.039062 310.9375 297.46875 310.9375 297.46875 312.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.621094 262.71875 C 279.621094 264.339844 277.191406 264.339844 277.191406 262.71875 C 277.191406 261.097656 279.621094 261.097656 279.621094 262.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.464844 251.265625 C 179.464844 252.882812 177.035156 252.882812 177.035156 251.265625 C 177.035156 249.644531 179.464844 249.644531 179.464844 251.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.066406 275.882812 C 264.066406 277.503906 261.636719 277.503906 261.636719 275.882812 C 261.636719 274.261719 264.066406 274.261719 264.066406 275.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.785156 302.417969 C 311.785156 304.039062 309.351562 304.039062 309.351562 302.417969 C 309.351562 300.800781 311.785156 300.800781 311.785156 302.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.0625 265.035156 C 279.0625 266.65625 276.632812 266.65625 276.632812 265.035156 C 276.632812 263.414062 279.0625 263.414062 279.0625 265.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.664062 285.945312 C 257.664062 287.566406 255.234375 287.566406 255.234375 285.945312 C 255.234375 284.324219 257.664062 284.324219 257.664062 285.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.800781 127.332031 C 277.800781 128.953125 275.371094 128.953125 275.371094 127.332031 C 275.371094 125.714844 277.800781 125.714844 277.800781 127.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.925781 282.4375 C 166.925781 284.058594 164.496094 284.058594 164.496094 282.4375 C 164.496094 280.820312 166.925781 280.820312 166.925781 282.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.972656 251.445312 C 270.972656 253.0625 268.542969 253.0625 268.542969 251.445312 C 268.542969 249.824219 270.972656 249.824219 270.972656 251.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.589844 278.875 C 224.589844 280.496094 222.160156 280.496094 222.160156 278.875 C 222.160156 277.253906 224.589844 277.253906 224.589844 278.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.882812 242.289062 C 224.882812 243.910156 222.453125 243.910156 222.453125 242.289062 C 222.453125 240.667969 224.882812 240.667969 224.882812 242.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.144531 248.113281 C 209.144531 249.734375 206.714844 249.734375 206.714844 248.113281 C 206.714844 246.492188 209.144531 246.492188 209.144531 248.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.597656 273.289062 C 231.597656 274.90625 229.167969 274.90625 229.167969 273.289062 C 229.167969 271.667969 231.597656 271.667969 231.597656 273.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.804688 262.847656 C 156.804688 264.46875 154.375 264.46875 154.375 262.847656 C 154.375 261.230469 156.804688 261.230469 156.804688 262.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.648438 254 C 224.648438 255.621094 222.21875 255.621094 222.21875 254 C 222.21875 252.382812 224.648438 252.382812 224.648438 254 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.324219 251.25 C 224.324219 252.871094 221.894531 252.871094 221.894531 251.25 C 221.894531 249.632812 224.324219 249.632812 224.324219 251.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.136719 144.5 C 179.136719 146.121094 176.707031 146.121094 176.707031 144.5 C 176.707031 142.878906 179.136719 142.878906 179.136719 144.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.042969 202.734375 C 296.042969 204.351562 293.613281 204.351562 293.613281 202.734375 C 293.613281 201.113281 296.042969 201.113281 296.042969 202.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.257812 207.460938 C 290.257812 209.082031 287.828125 209.082031 287.828125 207.460938 C 287.828125 205.839844 290.257812 205.839844 290.257812 207.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.773438 216.234375 C 203.773438 217.851562 201.34375 217.851562 201.34375 216.234375 C 201.34375 214.613281 203.773438 214.613281 203.773438 216.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.863281 316.792969 C 255.863281 318.414062 253.433594 318.414062 253.433594 316.792969 C 253.433594 315.175781 255.863281 315.175781 255.863281 316.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.542969 201.976562 C 157.542969 203.59375 155.113281 203.59375 155.113281 201.976562 C 155.113281 200.355469 157.542969 200.355469 157.542969 201.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.40625 251.304688 C 274.40625 252.925781 271.976562 252.925781 271.976562 251.304688 C 271.976562 249.683594 274.40625 249.683594 274.40625 251.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.375 252.863281 C 305.375 254.484375 302.945312 254.484375 302.945312 252.863281 C 302.945312 251.246094 305.375 251.246094 305.375 252.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.480469 70.910156 L 173.117188 73.746094 L 169.84375 73.746094 Z M 171.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.203125 280.414062 C 289.203125 282.035156 286.773438 282.035156 286.773438 280.414062 C 286.773438 278.792969 289.203125 278.792969 289.203125 280.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.859375 340.570312 C 292.859375 342.191406 290.429688 342.191406 290.429688 340.570312 C 290.429688 338.953125 292.859375 338.953125 292.859375 340.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.796875 174.238281 C 246.796875 175.859375 244.367188 175.859375 244.367188 174.238281 C 244.367188 172.617188 246.796875 172.617188 246.796875 174.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.019531 198.4375 C 245.019531 200.058594 242.589844 200.058594 242.589844 198.4375 C 242.589844 196.820312 245.019531 196.820312 245.019531 198.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.933594 371.625 C 313.933594 373.246094 311.503906 373.246094 311.503906 371.625 C 311.503906 370.007812 313.933594 370.007812 313.933594 371.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.675781 229.691406 C 259.675781 231.308594 257.246094 231.308594 257.246094 229.691406 C 257.246094 228.070312 259.675781 228.070312 259.675781 229.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.109375 242.757812 C 243.109375 244.378906 240.679688 244.378906 240.679688 242.757812 C 240.679688 241.136719 243.109375 241.136719 243.109375 242.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.335938 226.277344 C 262.335938 227.898438 259.90625 227.898438 259.90625 226.277344 C 259.90625 224.660156 262.335938 224.660156 262.335938 226.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.945312 251.683594 C 118.945312 253.304688 116.515625 253.304688 116.515625 251.683594 C 116.515625 250.066406 118.945312 250.066406 118.945312 251.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.585938 190.960938 C 123.585938 192.582031 121.152344 192.582031 121.152344 190.960938 C 121.152344 189.339844 123.585938 189.339844 123.585938 190.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.207031 299.164062 C 334.207031 300.78125 331.777344 300.78125 331.777344 299.164062 C 331.777344 297.542969 334.207031 297.542969 334.207031 299.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.273438 261.429688 C 265.273438 263.050781 262.84375 263.050781 262.84375 261.429688 C 262.84375 259.808594 265.273438 259.808594 265.273438 261.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.144531 225.144531 C 208.144531 226.765625 205.714844 226.765625 205.714844 225.144531 C 205.714844 223.527344 208.144531 223.527344 208.144531 225.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.363281 239.59375 C 234.363281 241.214844 231.933594 241.214844 231.933594 239.59375 C 231.933594 237.972656 234.363281 237.972656 234.363281 239.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.378906 216.578125 C 292.378906 218.199219 289.949219 218.199219 289.949219 216.578125 C 289.949219 214.960938 292.378906 214.960938 292.378906 216.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.636719 236.941406 C 169.636719 238.5625 167.207031 238.5625 167.207031 236.941406 C 167.207031 235.320312 169.636719 235.320312 169.636719 236.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.933594 259.738281 C 248.933594 261.359375 246.503906 261.359375 246.503906 259.738281 C 246.503906 258.121094 248.933594 258.121094 248.933594 259.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.539062 239.914062 C 249.539062 241.535156 247.109375 241.535156 247.109375 239.914062 C 247.109375 238.292969 249.539062 238.292969 249.539062 239.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.355469 223.746094 C 226.355469 225.363281 223.925781 225.363281 223.925781 223.746094 C 223.925781 222.125 226.355469 222.125 226.355469 223.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.25 263.464844 C 208.25 265.085938 205.820312 265.085938 205.820312 263.464844 C 205.820312 261.84375 208.25 261.84375 208.25 263.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.792969 234.621094 C 294.792969 236.238281 292.363281 236.238281 292.363281 234.621094 C 292.363281 233 294.792969 233 294.792969 234.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.316406 292.21875 C 284.316406 293.839844 281.882812 293.839844 281.882812 292.21875 C 281.882812 290.601562 284.316406 290.601562 284.316406 292.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.953125 180.78125 C 167.953125 182.402344 165.519531 182.402344 165.519531 180.78125 C 165.519531 179.160156 167.953125 179.160156 167.953125 180.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.253906 292.171875 C 197.253906 293.792969 194.824219 293.792969 194.824219 292.171875 C 194.824219 290.550781 197.253906 290.550781 197.253906 292.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.324219 296.976562 C 233.324219 298.597656 230.890625 298.597656 230.890625 296.976562 C 230.890625 295.355469 233.324219 295.355469 233.324219 296.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.667969 70.910156 L 187.304688 73.746094 L 184.03125 73.746094 Z M 185.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 394.050781 152.179688 C 394.050781 153.800781 391.621094 153.800781 391.621094 152.179688 C 391.621094 150.558594 394.050781 150.558594 394.050781 152.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.53125 324.523438 C 335.53125 326.140625 333.101562 326.140625 333.101562 324.523438 C 333.101562 322.902344 335.53125 322.902344 335.53125 324.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.972656 378.773438 C 305.972656 380.394531 303.542969 380.394531 303.542969 378.773438 C 303.542969 377.152344 305.972656 377.152344 305.972656 378.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.707031 195.945312 C 199.707031 197.566406 197.277344 197.566406 197.277344 195.945312 C 197.277344 194.324219 199.707031 194.324219 199.707031 195.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.558594 78.457031 C 232.558594 80.078125 230.125 80.078125 230.125 78.457031 C 230.125 76.835938 232.558594 76.835938 232.558594 78.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.664062 286.875 C 249.664062 288.492188 247.230469 288.492188 247.230469 286.875 C 247.230469 285.253906 249.664062 285.253906 249.664062 286.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.355469 76.613281 C 234.355469 78.230469 231.921875 78.230469 231.921875 76.613281 C 231.921875 74.992188 234.355469 74.992188 234.355469 76.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.1875 70.910156 L 201.824219 73.746094 L 198.550781 73.746094 Z M 200.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.285156 209.917969 C 288.285156 211.539062 285.855469 211.539062 285.855469 209.917969 C 285.855469 208.300781 288.285156 208.300781 288.285156 209.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.542969 322.230469 C 267.542969 323.847656 265.113281 323.847656 265.113281 322.230469 C 265.113281 320.609375 267.542969 320.609375 267.542969 322.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.375 356.9375 C 156.375 358.558594 153.945312 358.558594 153.945312 356.9375 C 153.945312 355.316406 156.375 355.316406 156.375 356.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.015625 260.621094 C 270.015625 262.242188 267.585938 262.242188 267.585938 260.621094 C 267.585938 259.003906 270.015625 259.003906 270.015625 260.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.582031 299.070312 C 267.582031 300.691406 265.152344 300.691406 265.152344 299.070312 C 265.152344 297.449219 267.582031 297.449219 267.582031 299.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.101562 183.152344 C 241.101562 184.773438 238.671875 184.773438 238.671875 183.152344 C 238.671875 181.535156 241.101562 181.535156 241.101562 183.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.597656 340.601562 C 282.597656 342.222656 280.167969 342.222656 280.167969 340.601562 C 280.167969 338.980469 282.597656 338.980469 282.597656 340.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.695312 181.65625 C 189.695312 183.273438 187.265625 183.273438 187.265625 181.65625 C 187.265625 180.035156 189.695312 180.035156 189.695312 181.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.863281 162.988281 C 366.863281 164.609375 364.433594 164.609375 364.433594 162.988281 C 364.433594 161.367188 366.863281 161.367188 366.863281 162.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.828125 316.796875 C 278.828125 318.417969 276.398438 318.417969 276.398438 316.796875 C 276.398438 315.179688 278.828125 315.179688 278.828125 316.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.902344 135.957031 C 134.902344 137.574219 132.472656 137.574219 132.472656 135.957031 C 132.472656 134.335938 134.902344 134.335938 134.902344 135.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.808594 283.359375 C 290.808594 284.980469 288.378906 284.980469 288.378906 283.359375 C 288.378906 281.742188 290.808594 281.742188 290.808594 283.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.78125 70.910156 L 157.417969 73.746094 L 154.144531 73.746094 Z M 155.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.5625 267.6875 C 292.5625 269.308594 290.132812 269.308594 290.132812 267.6875 C 290.132812 266.066406 292.5625 266.066406 292.5625 267.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.894531 244.691406 C 259.894531 246.3125 257.464844 246.3125 257.464844 244.691406 C 257.464844 243.070312 259.894531 243.070312 259.894531 244.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.722656 247.171875 C 159.722656 248.792969 157.292969 248.792969 157.292969 247.171875 C 157.292969 245.554688 159.722656 245.554688 159.722656 247.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.203125 147.03125 C 134.203125 148.652344 131.773438 148.652344 131.773438 147.03125 C 131.773438 145.414062 134.203125 145.414062 134.203125 147.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.886719 308.878906 C 229.886719 310.5 227.457031 310.5 227.457031 308.878906 C 227.457031 307.261719 229.886719 307.261719 229.886719 308.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.035156 179.914062 C 228.035156 181.53125 225.605469 181.53125 225.605469 179.914062 C 225.605469 178.292969 228.035156 178.292969 228.035156 179.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.554688 280.195312 C 197.554688 281.816406 195.121094 281.816406 195.121094 280.195312 C 195.121094 278.578125 197.554688 278.578125 197.554688 280.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.582031 184.117188 C 253.582031 185.738281 251.148438 185.738281 251.148438 184.117188 C 251.148438 182.496094 253.582031 182.496094 253.582031 184.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.242188 70.910156 L 169.875 73.746094 L 166.605469 73.746094 Z M 168.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.238281 283.933594 C 247.238281 285.550781 244.808594 285.550781 244.808594 283.933594 C 244.808594 282.3125 247.238281 282.3125 247.238281 283.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.152344 213.34375 C 266.152344 214.964844 263.722656 214.964844 263.722656 213.34375 C 263.722656 211.726562 266.152344 211.726562 266.152344 213.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.648438 295.109375 C 261.648438 296.730469 259.214844 296.730469 259.214844 295.109375 C 259.214844 293.492188 261.648438 293.492188 261.648438 295.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.1875 288.09375 C 253.1875 289.714844 250.757812 289.714844 250.757812 288.09375 C 250.757812 286.476562 253.1875 286.476562 253.1875 288.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.433594 265.539062 C 271.433594 267.15625 269.003906 267.15625 269.003906 265.539062 C 269.003906 263.917969 271.433594 263.917969 271.433594 265.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.117188 333.019531 C 206.117188 334.636719 203.6875 334.636719 203.6875 333.019531 C 203.6875 331.398438 206.117188 331.398438 206.117188 333.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.871094 214.390625 C 214.871094 216.007812 212.441406 216.007812 212.441406 214.390625 C 212.441406 212.769531 214.871094 212.769531 214.871094 214.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.257812 279.625 C 245.257812 281.246094 242.828125 281.246094 242.828125 279.625 C 242.828125 278.003906 245.257812 278.003906 245.257812 279.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.253906 260.175781 C 282.253906 261.796875 279.824219 261.796875 279.824219 260.175781 C 279.824219 258.554688 282.253906 258.554688 282.253906 260.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.601562 253.347656 C 298.601562 254.96875 296.171875 254.96875 296.171875 253.347656 C 296.171875 251.726562 298.601562 251.726562 298.601562 253.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.757812 256.292969 C 192.757812 257.914062 190.328125 257.914062 190.328125 256.292969 C 190.328125 254.671875 192.757812 254.671875 192.757812 256.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.839844 70.910156 L 163.476562 73.746094 L 160.203125 73.746094 Z M 161.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.058594 230.734375 C 274.058594 232.355469 271.628906 232.355469 271.628906 230.734375 C 271.628906 229.113281 274.058594 229.113281 274.058594 230.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.460938 418.691406 L 121.097656 415.855469 L 117.824219 415.855469 Z M 119.460938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.933594 208.898438 C 266.933594 210.519531 264.503906 210.519531 264.503906 208.898438 C 264.503906 207.277344 266.933594 207.277344 266.933594 208.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.667969 251.121094 C 306.667969 252.742188 304.238281 252.742188 304.238281 251.121094 C 304.238281 249.5 306.667969 249.5 306.667969 251.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.878906 418.691406 L 202.515625 415.855469 L 199.242188 415.855469 Z M 200.878906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.820312 222.445312 C 267.820312 224.066406 265.390625 224.066406 265.390625 222.445312 C 265.390625 220.824219 267.820312 220.824219 267.820312 222.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.023438 118.972656 C 194.023438 120.59375 191.59375 120.59375 191.59375 118.972656 C 191.59375 117.351562 194.023438 117.351562 194.023438 118.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.679688 251.117188 C 262.679688 252.734375 260.25 252.734375 260.25 251.117188 C 260.25 249.496094 262.679688 249.496094 262.679688 251.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.945312 336.671875 C 205.945312 338.289062 203.515625 338.289062 203.515625 336.671875 C 203.515625 335.050781 205.945312 335.050781 205.945312 336.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.078125 230.515625 C 175.078125 232.132812 172.648438 232.132812 172.648438 230.515625 C 172.648438 228.894531 175.078125 228.894531 175.078125 230.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.40625 252.792969 C 209.40625 254.414062 206.976562 254.414062 206.976562 252.792969 C 206.976562 251.175781 209.40625 251.175781 209.40625 252.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.535156 70.910156 L 164.167969 73.746094 L 160.898438 73.746094 Z M 162.535156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.09375 223.097656 C 208.09375 224.71875 205.664062 224.71875 205.664062 223.097656 C 205.664062 221.480469 208.09375 221.480469 208.09375 223.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.40625 89.367188 C 341.40625 90.988281 338.976562 90.988281 338.976562 89.367188 C 338.976562 87.746094 341.40625 87.746094 341.40625 89.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.714844 200.847656 C 241.714844 202.46875 239.285156 202.46875 239.285156 200.847656 C 239.285156 199.230469 241.714844 199.230469 241.714844 200.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.523438 281.449219 C 268.523438 283.070312 266.09375 283.070312 266.09375 281.449219 C 266.09375 279.828125 268.523438 279.828125 268.523438 281.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.632812 241.070312 C 306.632812 242.6875 304.203125 242.6875 304.203125 241.070312 C 304.203125 239.449219 306.632812 239.449219 306.632812 241.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.109375 251.332031 C 215.109375 252.949219 212.679688 252.949219 212.679688 251.332031 C 212.679688 249.710938 215.109375 249.710938 215.109375 251.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.179688 240.628906 C 285.179688 242.25 282.75 242.25 282.75 240.628906 C 282.75 239.007812 285.179688 239.007812 285.179688 240.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.058594 243.359375 C 306.058594 244.976562 303.628906 244.976562 303.628906 243.359375 C 303.628906 241.738281 306.058594 241.738281 306.058594 243.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.089844 271.339844 C 261.089844 272.960938 258.660156 272.960938 258.660156 271.339844 C 258.660156 269.722656 261.089844 269.722656 261.089844 271.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.230469 256.738281 C 320.230469 258.355469 317.800781 258.355469 317.800781 256.738281 C 317.800781 255.117188 320.230469 255.117188 320.230469 256.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.882812 291.390625 C 270.882812 293.011719 268.453125 293.011719 268.453125 291.390625 C 268.453125 289.769531 270.882812 289.769531 270.882812 291.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.222656 237.375 C 284.222656 238.996094 281.792969 238.996094 281.792969 237.375 C 281.792969 235.757812 284.222656 235.757812 284.222656 237.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.179688 172.3125 C 282.179688 173.933594 279.75 173.933594 279.75 172.3125 C 279.75 170.691406 282.179688 170.691406 282.179688 172.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.238281 170.859375 C 139.238281 172.480469 136.808594 172.480469 136.808594 170.859375 C 136.808594 169.242188 139.238281 169.242188 139.238281 170.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.746094 346.882812 C 146.746094 348.503906 144.316406 348.503906 144.316406 346.882812 C 144.316406 345.261719 146.746094 345.261719 146.746094 346.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.847656 170.171875 C 206.847656 171.789062 204.417969 171.789062 204.417969 170.171875 C 204.417969 168.550781 206.847656 168.550781 206.847656 170.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.949219 156.410156 C 188.949219 158.03125 186.519531 158.03125 186.519531 156.410156 C 186.519531 154.789062 188.949219 154.789062 188.949219 156.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.023438 70.910156 L 174.660156 73.746094 L 171.386719 73.746094 Z M 173.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.539062 269.050781 C 309.539062 270.671875 307.109375 270.671875 307.109375 269.050781 C 307.109375 267.429688 309.539062 267.429688 309.539062 269.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.460938 70.910156 L 144.097656 73.746094 L 140.824219 73.746094 Z M 142.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.914062 291.878906 C 234.914062 293.5 232.484375 293.5 232.484375 291.878906 C 232.484375 290.261719 234.914062 290.261719 234.914062 291.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.703125 249.949219 C 308.703125 251.570312 306.273438 251.570312 306.273438 249.949219 C 306.273438 248.332031 308.703125 248.332031 308.703125 249.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 350.429688 418.691406 L 352.066406 415.855469 L 348.792969 415.855469 Z M 350.429688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.453125 217.832031 C 266.453125 219.453125 264.023438 219.453125 264.023438 217.832031 C 264.023438 216.214844 266.453125 216.214844 266.453125 217.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.792969 70.910156 L 204.425781 73.746094 L 201.15625 73.746094 Z M 202.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.753906 141.097656 C 114.753906 142.714844 112.324219 142.714844 112.324219 141.097656 C 112.324219 139.476562 114.753906 139.476562 114.753906 141.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.683594 138.003906 C 280.683594 139.625 278.253906 139.625 278.253906 138.003906 C 278.253906 136.386719 280.683594 136.386719 280.683594 138.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.40625 146.433594 C 295.40625 148.054688 292.976562 148.054688 292.976562 146.433594 C 292.976562 144.8125 295.40625 144.8125 295.40625 146.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.507812 70.910156 L 324.144531 73.746094 L 320.871094 73.746094 Z M 322.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.347656 228.289062 C 182.347656 229.910156 179.917969 229.910156 179.917969 228.289062 C 179.917969 226.671875 182.347656 226.671875 182.347656 228.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.957031 320.007812 C 254.957031 321.628906 252.527344 321.628906 252.527344 320.007812 C 252.527344 318.386719 254.957031 318.386719 254.957031 320.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.664062 325.210938 C 257.664062 326.832031 255.234375 326.832031 255.234375 325.210938 C 255.234375 323.59375 257.664062 323.59375 257.664062 325.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.40625 231.820312 C 156.40625 233.441406 153.976562 233.441406 153.976562 231.820312 C 153.976562 230.199219 156.40625 230.199219 156.40625 231.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.480469 380.574219 C 138.480469 382.191406 136.050781 382.191406 136.050781 380.574219 C 136.050781 378.953125 138.480469 378.953125 138.480469 380.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.6875 291.222656 C 199.6875 292.839844 197.257812 292.839844 197.257812 291.222656 C 197.257812 289.601562 199.6875 289.601562 199.6875 291.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.050781 70.910156 L 295.6875 73.746094 L 292.414062 73.746094 Z M 294.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.910156 401.089844 C 208.910156 402.710938 206.480469 402.710938 206.480469 401.089844 C 206.480469 399.472656 208.910156 399.472656 208.910156 401.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.636719 186.53125 C 124.636719 188.152344 122.207031 188.152344 122.207031 186.53125 C 122.207031 184.914062 124.636719 184.914062 124.636719 186.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.402344 276.160156 C 310.402344 277.777344 307.972656 277.777344 307.972656 276.160156 C 307.972656 274.539062 310.402344 274.539062 310.402344 276.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.800781 228.015625 C 259.800781 229.636719 257.371094 229.636719 257.371094 228.015625 C 257.371094 226.398438 259.800781 226.398438 259.800781 228.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.375 234.277344 C 268.375 235.898438 265.945312 235.898438 265.945312 234.277344 C 265.945312 232.65625 268.375 232.65625 268.375 234.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.792969 339.289062 C 285.792969 340.90625 283.363281 340.90625 283.363281 339.289062 C 283.363281 337.667969 285.792969 337.667969 285.792969 339.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.34375 290.8125 C 286.34375 292.433594 283.914062 292.433594 283.914062 290.8125 C 283.914062 289.195312 286.34375 289.195312 286.34375 290.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.175781 198.417969 C 255.175781 200.039062 252.746094 200.039062 252.746094 198.417969 C 252.746094 196.796875 255.175781 196.796875 255.175781 198.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.007812 258.824219 C 306.007812 260.441406 303.578125 260.441406 303.578125 258.824219 C 303.578125 257.203125 306.007812 257.203125 306.007812 258.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.222656 309.378906 C 347.222656 311 344.792969 311 344.792969 309.378906 C 344.792969 307.761719 347.222656 307.761719 347.222656 309.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.472656 267.957031 C 290.472656 269.574219 288.042969 269.574219 288.042969 267.957031 C 288.042969 266.335938 290.472656 266.335938 290.472656 267.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.09375 265.007812 C 283.09375 266.628906 280.664062 266.628906 280.664062 265.007812 C 280.664062 263.386719 283.09375 263.386719 283.09375 265.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.871094 282.703125 C 262.871094 284.324219 260.441406 284.324219 260.441406 282.703125 C 260.441406 281.085938 262.871094 281.085938 262.871094 282.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.867188 289.140625 C 334.867188 290.761719 332.4375 290.761719 332.4375 289.140625 C 332.4375 287.523438 334.867188 287.523438 334.867188 289.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.398438 170.921875 C 205.398438 172.542969 202.96875 172.542969 202.96875 170.921875 C 202.96875 169.304688 205.398438 169.304688 205.398438 170.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.164062 220.492188 C 281.164062 222.113281 278.734375 222.113281 278.734375 220.492188 C 278.734375 218.875 281.164062 218.875 281.164062 220.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.382812 181.125 C 292.382812 182.746094 289.953125 182.746094 289.953125 181.125 C 289.953125 179.503906 292.382812 179.503906 292.382812 181.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.085938 325.980469 C 285.085938 327.597656 282.65625 327.597656 282.65625 325.980469 C 282.65625 324.359375 285.085938 324.359375 285.085938 325.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.417969 131.902344 C 293.417969 133.519531 290.988281 133.519531 290.988281 131.902344 C 290.988281 130.28125 293.417969 130.28125 293.417969 131.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.371094 275.035156 C 325.371094 276.65625 322.941406 276.65625 322.941406 275.035156 C 322.941406 273.414062 325.371094 273.414062 325.371094 275.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.074219 70.910156 L 211.710938 73.746094 L 208.441406 73.746094 Z M 210.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.945312 278.050781 C 337.945312 279.671875 335.515625 279.671875 335.515625 278.050781 C 335.515625 276.429688 337.945312 276.429688 337.945312 278.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.335938 173.636719 C 225.335938 175.257812 222.90625 175.257812 222.90625 173.636719 C 222.90625 172.019531 225.335938 172.019531 225.335938 173.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.554688 303.632812 C 182.554688 305.253906 180.125 305.253906 180.125 303.632812 C 180.125 302.011719 182.554688 302.011719 182.554688 303.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.003906 70.910156 L 246.640625 73.746094 L 243.367188 73.746094 Z M 245.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.933594 279.574219 C 296.933594 281.195312 294.503906 281.195312 294.503906 279.574219 C 294.503906 277.953125 296.933594 277.953125 296.933594 279.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.625 317.875 C 250.625 319.496094 248.195312 319.496094 248.195312 317.875 C 248.195312 316.253906 250.625 316.253906 250.625 317.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.113281 265.347656 C 226.113281 266.96875 223.683594 266.96875 223.683594 265.347656 C 223.683594 263.730469 226.113281 263.730469 226.113281 265.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.867188 188.753906 C 215.867188 190.375 213.4375 190.375 213.4375 188.753906 C 213.4375 187.132812 215.867188 187.132812 215.867188 188.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.410156 370.996094 C 146.410156 372.617188 143.980469 372.617188 143.980469 370.996094 C 143.980469 369.375 146.410156 369.375 146.410156 370.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.148438 236.203125 C 347.148438 237.824219 344.71875 237.824219 344.71875 236.203125 C 344.71875 234.582031 347.148438 234.582031 347.148438 236.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.089844 284.070312 C 191.089844 285.691406 188.660156 285.691406 188.660156 284.070312 C 188.660156 282.449219 191.089844 282.449219 191.089844 284.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.355469 418.691406 L 139.992188 415.855469 L 136.71875 415.855469 Z M 138.355469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.222656 295.238281 C 236.222656 296.859375 233.792969 296.859375 233.792969 295.238281 C 233.792969 293.617188 236.222656 293.617188 236.222656 295.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.019531 209.167969 C 291.019531 210.789062 288.589844 210.789062 288.589844 209.167969 C 288.589844 207.546875 291.019531 207.546875 291.019531 209.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.953125 281.800781 C 187.953125 283.421875 185.523438 283.421875 185.523438 281.800781 C 185.523438 280.179688 187.953125 280.179688 187.953125 281.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.652344 215.058594 C 214.652344 216.675781 212.222656 216.675781 212.222656 215.058594 C 212.222656 213.4375 214.652344 213.4375 214.652344 215.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.257812 269.121094 C 117.257812 270.742188 114.828125 270.742188 114.828125 269.121094 C 114.828125 267.5 117.257812 267.5 117.257812 269.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.347656 242.082031 C 255.347656 243.699219 252.917969 243.699219 252.917969 242.082031 C 252.917969 240.460938 255.347656 240.460938 255.347656 242.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.320312 241.824219 C 173.320312 243.445312 170.886719 243.445312 170.886719 241.824219 C 170.886719 240.203125 173.320312 240.203125 173.320312 241.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.832031 243.199219 C 272.832031 244.820312 270.402344 244.820312 270.402344 243.199219 C 270.402344 241.578125 272.832031 241.578125 272.832031 243.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.570312 217.601562 C 285.570312 219.21875 283.140625 219.21875 283.140625 217.601562 C 283.140625 215.980469 285.570312 215.980469 285.570312 217.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.746094 250.40625 C 224.746094 252.027344 222.316406 252.027344 222.316406 250.40625 C 222.316406 248.789062 224.746094 248.789062 224.746094 250.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.820312 265.253906 C 224.820312 266.875 222.390625 266.875 222.390625 265.253906 C 222.390625 263.636719 224.820312 263.636719 224.820312 265.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.015625 228.800781 C 285.015625 230.421875 282.585938 230.421875 282.585938 228.800781 C 282.585938 227.183594 285.015625 227.183594 285.015625 228.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.410156 70.910156 L 205.046875 73.746094 L 201.773438 73.746094 Z M 203.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.25 70.910156 L 167.886719 73.746094 L 164.613281 73.746094 Z M 166.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.445312 70.910156 L 211.082031 73.746094 L 207.808594 73.746094 Z M 209.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.894531 283.652344 C 315.894531 285.273438 313.464844 285.273438 313.464844 283.652344 C 313.464844 282.035156 315.894531 282.035156 315.894531 283.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.265625 70.910156 L 286.902344 73.746094 L 283.632812 73.746094 Z M 285.265625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.492188 70.910156 L 293.128906 73.746094 L 289.855469 73.746094 Z M 291.492188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.800781 70.910156 L 132.4375 73.746094 L 129.164062 73.746094 Z M 130.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 402.714844 300.949219 C 402.714844 302.570312 400.285156 302.570312 400.285156 300.949219 C 400.285156 299.328125 402.714844 299.328125 402.714844 300.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.804688 321.71875 C 318.804688 323.335938 316.371094 323.335938 316.371094 321.71875 C 316.371094 320.097656 318.804688 320.097656 318.804688 321.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.804688 350.339844 C 202.804688 351.957031 200.375 351.957031 200.375 350.339844 C 200.375 348.71875 202.804688 348.71875 202.804688 350.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.710938 216.828125 C 236.710938 218.449219 234.28125 218.449219 234.28125 216.828125 C 234.28125 215.207031 236.710938 215.207031 236.710938 216.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.523438 70.910156 L 233.160156 73.746094 L 229.886719 73.746094 Z M 231.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.367188 185.550781 C 167.367188 187.171875 164.9375 187.171875 164.9375 185.550781 C 164.9375 183.933594 167.367188 183.933594 167.367188 185.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.71875 197.949219 C 298.71875 199.570312 296.289062 199.570312 296.289062 197.949219 C 296.289062 196.332031 298.71875 196.332031 298.71875 197.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.039062 70.910156 L 251.675781 73.746094 L 248.402344 73.746094 Z M 250.039062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.65625 333.667969 C 331.65625 335.289062 329.226562 335.289062 329.226562 333.667969 C 329.226562 332.046875 331.65625 332.046875 331.65625 333.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.894531 257.417969 C 238.894531 259.039062 236.464844 259.039062 236.464844 257.417969 C 236.464844 255.800781 238.894531 255.800781 238.894531 257.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.296875 229.183594 C 285.296875 230.804688 282.867188 230.804688 282.867188 229.183594 C 282.867188 227.566406 285.296875 227.566406 285.296875 229.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.6875 261.65625 C 299.6875 263.277344 297.257812 263.277344 297.257812 261.65625 C 297.257812 260.035156 299.6875 260.035156 299.6875 261.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.0625 242.175781 C 180.0625 243.796875 177.632812 243.796875 177.632812 242.175781 C 177.632812 240.554688 180.0625 240.554688 180.0625 242.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.914062 210.902344 C 256.914062 212.523438 254.484375 212.523438 254.484375 210.902344 C 254.484375 209.28125 256.914062 209.28125 256.914062 210.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.253906 207.976562 C 306.253906 209.597656 303.824219 209.597656 303.824219 207.976562 C 303.824219 206.359375 306.253906 206.359375 306.253906 207.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.925781 70.910156 L 245.5625 73.746094 L 242.289062 73.746094 Z M 243.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.070312 133.992188 C 172.070312 135.613281 169.640625 135.613281 169.640625 133.992188 C 169.640625 132.371094 172.070312 132.371094 172.070312 133.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.214844 201.46875 C 143.214844 203.089844 140.785156 203.089844 140.785156 201.46875 C 140.785156 199.847656 143.214844 199.847656 143.214844 201.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.757812 264.957031 C 137.757812 266.578125 135.328125 266.578125 135.328125 264.957031 C 135.328125 263.335938 137.757812 263.335938 137.757812 264.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.128906 275.007812 C 298.128906 276.628906 295.699219 276.628906 295.699219 275.007812 C 295.699219 273.390625 298.128906 273.390625 298.128906 275.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.078125 70.910156 L 238.710938 73.746094 L 235.441406 73.746094 Z M 237.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.179688 309.023438 C 151.179688 310.644531 148.75 310.644531 148.75 309.023438 C 148.75 307.40625 151.179688 307.40625 151.179688 309.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.296875 298.933594 C 226.296875 300.550781 223.867188 300.550781 223.867188 298.933594 C 223.867188 297.3125 226.296875 297.3125 226.296875 298.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.867188 152.183594 C 249.867188 153.804688 247.4375 153.804688 247.4375 152.183594 C 247.4375 150.566406 249.867188 150.566406 249.867188 152.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.140625 276.183594 C 285.140625 277.804688 282.710938 277.804688 282.710938 276.183594 C 282.710938 274.5625 285.140625 274.5625 285.140625 276.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.972656 70.910156 L 195.609375 73.746094 L 192.335938 73.746094 Z M 193.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.171875 275.234375 C 237.171875 276.855469 234.738281 276.855469 234.738281 275.234375 C 234.738281 273.613281 237.171875 273.613281 237.171875 275.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.839844 352.96875 C 237.839844 354.585938 235.410156 354.585938 235.410156 352.96875 C 235.410156 351.347656 237.839844 351.347656 237.839844 352.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.226562 385.671875 C 294.226562 387.292969 291.796875 387.292969 291.796875 385.671875 C 291.796875 384.054688 294.226562 384.054688 294.226562 385.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.957031 235.246094 C 239.957031 236.867188 237.527344 236.867188 237.527344 235.246094 C 237.527344 233.625 239.957031 233.625 239.957031 235.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.023438 70.910156 L 129.660156 73.746094 L 126.386719 73.746094 Z M 128.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.292969 231.414062 C 283.292969 233.035156 280.863281 233.035156 280.863281 231.414062 C 280.863281 229.792969 283.292969 229.792969 283.292969 231.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.371094 161.6875 C 226.371094 163.308594 223.941406 163.308594 223.941406 161.6875 C 223.941406 160.066406 226.371094 160.066406 226.371094 161.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.496094 302.914062 C 338.496094 304.53125 336.066406 304.53125 336.066406 302.914062 C 336.066406 301.292969 338.496094 301.292969 338.496094 302.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.117188 297.429688 C 142.117188 299.050781 139.6875 299.050781 139.6875 297.429688 C 139.6875 295.8125 142.117188 295.8125 142.117188 297.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.214844 330.527344 C 292.214844 332.148438 289.785156 332.148438 289.785156 330.527344 C 289.785156 328.90625 292.214844 328.90625 292.214844 330.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.734375 350.160156 C 215.734375 351.777344 213.304688 351.777344 213.304688 350.160156 C 213.304688 348.539062 215.734375 348.539062 215.734375 350.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.101562 293.957031 C 220.101562 295.578125 217.671875 295.578125 217.671875 293.957031 C 217.671875 292.339844 220.101562 292.339844 220.101562 293.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.960938 267.757812 C 291.960938 269.378906 289.527344 269.378906 289.527344 267.757812 C 289.527344 266.140625 291.960938 266.140625 291.960938 267.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.777344 135.121094 C 266.777344 136.742188 264.347656 136.742188 264.347656 135.121094 C 264.347656 133.5 266.777344 133.5 266.777344 135.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.320312 207.59375 C 270.320312 209.210938 267.890625 209.210938 267.890625 207.59375 C 267.890625 205.972656 270.320312 205.972656 270.320312 207.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.839844 218.5625 C 259.839844 220.183594 257.410156 220.183594 257.410156 218.5625 C 257.410156 216.941406 259.839844 216.941406 259.839844 218.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.761719 236.167969 C 183.761719 237.789062 181.332031 237.789062 181.332031 236.167969 C 181.332031 234.550781 183.761719 234.550781 183.761719 236.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.304688 244.03125 C 180.304688 245.652344 177.875 245.652344 177.875 244.03125 C 177.875 242.410156 180.304688 242.410156 180.304688 244.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.632812 364.15625 C 276.632812 365.777344 274.203125 365.777344 274.203125 364.15625 C 274.203125 362.535156 276.632812 362.535156 276.632812 364.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.34375 194.242188 C 267.34375 195.863281 264.910156 195.863281 264.910156 194.242188 C 264.910156 192.621094 267.34375 192.621094 267.34375 194.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.296875 277.097656 C 210.296875 278.71875 207.867188 278.71875 207.867188 277.097656 C 207.867188 275.476562 210.296875 275.476562 210.296875 277.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.367188 223.460938 C 277.367188 225.078125 274.9375 225.078125 274.9375 223.460938 C 274.9375 221.839844 277.367188 221.839844 277.367188 223.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.300781 343.441406 C 286.300781 345.058594 283.871094 345.058594 283.871094 343.441406 C 283.871094 341.820312 286.300781 341.820312 286.300781 343.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.328125 70.910156 L 145.964844 73.746094 L 142.691406 73.746094 Z M 144.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.992188 138.894531 C 225.992188 140.515625 223.5625 140.515625 223.5625 138.894531 C 223.5625 137.273438 225.992188 137.273438 225.992188 138.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.277344 272.496094 C 342.277344 274.113281 339.847656 274.113281 339.847656 272.496094 C 339.847656 270.875 342.277344 270.875 342.277344 272.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.03125 194.011719 C 319.03125 195.632812 316.601562 195.632812 316.601562 194.011719 C 316.601562 192.390625 319.03125 192.390625 319.03125 194.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.769531 233.417969 C 186.769531 235.039062 184.339844 235.039062 184.339844 233.417969 C 184.339844 231.800781 186.769531 231.800781 186.769531 233.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.410156 165.6875 C 238.410156 167.304688 235.980469 167.304688 235.980469 165.6875 C 235.980469 164.066406 238.410156 164.066406 238.410156 165.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.230469 196.132812 C 315.230469 197.753906 312.800781 197.753906 312.800781 196.132812 C 312.800781 194.515625 315.230469 194.515625 315.230469 196.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.378906 70.910156 L 243.015625 73.746094 L 239.742188 73.746094 Z M 241.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.375 70.910156 L 242.007812 73.746094 L 238.738281 73.746094 Z M 240.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.203125 305.097656 C 280.203125 306.714844 277.773438 306.714844 277.773438 305.097656 C 277.773438 303.476562 280.203125 303.476562 280.203125 305.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.335938 267.820312 C 261.335938 269.441406 258.90625 269.441406 258.90625 267.820312 C 258.90625 266.199219 261.335938 266.199219 261.335938 267.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.007812 289.691406 C 255.007812 291.308594 252.578125 291.308594 252.578125 289.691406 C 252.578125 288.070312 255.007812 288.070312 255.007812 289.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.910156 274.113281 C 296.910156 275.734375 294.476562 275.734375 294.476562 274.113281 C 294.476562 272.496094 296.910156 272.496094 296.910156 274.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.558594 302.484375 C 299.558594 304.105469 297.128906 304.105469 297.128906 302.484375 C 297.128906 300.863281 299.558594 300.863281 299.558594 302.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.523438 70.910156 L 132.15625 73.746094 L 128.886719 73.746094 Z M 130.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.785156 70.910156 L 163.421875 73.746094 L 160.152344 73.746094 Z M 161.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.171875 244.96875 C 247.171875 246.585938 244.742188 246.585938 244.742188 244.96875 C 244.742188 243.347656 247.171875 243.347656 247.171875 244.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.660156 272.828125 C 237.660156 274.449219 235.230469 274.449219 235.230469 272.828125 C 235.230469 271.207031 237.660156 271.207031 237.660156 272.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.84375 298.550781 C 273.84375 300.171875 271.410156 300.171875 271.410156 298.550781 C 271.410156 296.929688 273.84375 296.929688 273.84375 298.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.617188 290.472656 C 253.617188 292.089844 251.1875 292.089844 251.1875 290.472656 C 251.1875 288.851562 253.617188 288.851562 253.617188 290.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.589844 369.472656 C 305.589844 371.089844 303.160156 371.089844 303.160156 369.472656 C 303.160156 367.851562 305.589844 367.851562 305.589844 369.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.722656 139.292969 C 236.722656 140.914062 234.292969 140.914062 234.292969 139.292969 C 234.292969 137.671875 236.722656 137.671875 236.722656 139.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.773438 182.859375 C 219.773438 184.476562 217.34375 184.476562 217.34375 182.859375 C 217.34375 181.238281 219.773438 181.238281 219.773438 182.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.777344 272.324219 C 279.777344 273.941406 277.347656 273.941406 277.347656 272.324219 C 277.347656 270.703125 279.777344 270.703125 279.777344 272.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.332031 70.910156 L 296.96875 73.746094 L 293.695312 73.746094 Z M 295.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.578125 70.910156 L 258.214844 73.746094 L 254.941406 73.746094 Z M 256.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.792969 276.5625 C 318.792969 278.183594 316.363281 278.183594 316.363281 276.5625 C 316.363281 274.945312 318.792969 274.945312 318.792969 276.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 383.230469 279.984375 C 383.230469 281.605469 380.800781 281.605469 380.800781 279.984375 C 380.800781 278.367188 383.230469 278.367188 383.230469 279.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 360.835938 264.503906 C 360.835938 266.125 358.40625 266.125 358.40625 264.503906 C 358.40625 262.882812 360.835938 262.882812 360.835938 264.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.832031 236.992188 C 237.832031 238.613281 235.402344 238.613281 235.402344 236.992188 C 235.402344 235.371094 237.832031 235.371094 237.832031 236.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.023438 247.003906 C 232.023438 248.625 229.59375 248.625 229.59375 247.003906 C 229.59375 245.382812 232.023438 245.382812 232.023438 247.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.503906 265.019531 C 274.503906 266.640625 272.074219 266.640625 272.074219 265.019531 C 272.074219 263.398438 274.503906 263.398438 274.503906 265.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.132812 277.582031 C 261.132812 279.203125 258.703125 279.203125 258.703125 277.582031 C 258.703125 275.964844 261.132812 275.964844 261.132812 277.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.617188 326.808594 C 221.617188 328.429688 219.1875 328.429688 219.1875 326.808594 C 219.1875 325.1875 221.617188 325.1875 221.617188 326.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.628906 265.75 C 271.628906 267.371094 269.199219 267.371094 269.199219 265.75 C 269.199219 264.132812 271.628906 264.132812 271.628906 265.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.625 70.910156 L 141.261719 73.746094 L 137.988281 73.746094 Z M 139.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.902344 151.59375 C 290.902344 153.214844 288.472656 153.214844 288.472656 151.59375 C 288.472656 149.972656 290.902344 149.972656 290.902344 151.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.605469 134.5625 C 303.605469 136.183594 301.175781 136.183594 301.175781 134.5625 C 301.175781 132.941406 303.605469 132.941406 303.605469 134.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.320312 242.410156 C 228.320312 244.03125 225.890625 244.03125 225.890625 242.410156 C 225.890625 240.792969 228.320312 240.792969 228.320312 242.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.933594 110.015625 C 167.933594 111.636719 165.503906 111.636719 165.503906 110.015625 C 165.503906 108.398438 167.933594 108.398438 167.933594 110.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.890625 262.71875 C 165.890625 264.339844 163.460938 264.339844 163.460938 262.71875 C 163.460938 261.101562 165.890625 261.101562 165.890625 262.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.503906 267.050781 C 262.503906 268.667969 260.074219 268.667969 260.074219 267.050781 C 260.074219 265.429688 262.503906 265.429688 262.503906 267.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.734375 241.734375 C 244.734375 243.351562 242.304688 243.351562 242.304688 241.734375 C 242.304688 240.113281 244.734375 240.113281 244.734375 241.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.554688 246.933594 C 212.554688 248.554688 210.125 248.554688 210.125 246.933594 C 210.125 245.3125 212.554688 245.3125 212.554688 246.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.917969 237.90625 C 316.917969 239.527344 314.488281 239.527344 314.488281 237.90625 C 314.488281 236.289062 316.917969 236.289062 316.917969 237.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.605469 281.746094 C 301.605469 283.367188 299.171875 283.367188 299.171875 281.746094 C 299.171875 280.125 301.605469 280.125 301.605469 281.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.332031 103.113281 C 287.332031 104.734375 284.902344 104.734375 284.902344 103.113281 C 284.902344 101.496094 287.332031 101.496094 287.332031 103.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.757812 214.394531 C 311.757812 216.015625 309.328125 216.015625 309.328125 214.394531 C 309.328125 212.773438 311.757812 212.773438 311.757812 214.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.785156 271.316406 C 167.785156 272.933594 165.355469 272.933594 165.355469 271.316406 C 165.355469 269.695312 167.785156 269.695312 167.785156 271.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.285156 244.660156 C 307.285156 246.28125 304.855469 246.28125 304.855469 244.660156 C 304.855469 243.042969 307.285156 243.042969 307.285156 244.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.390625 70.910156 L 128.023438 73.746094 L 124.753906 73.746094 Z M 126.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.707031 263.066406 C 270.707031 264.683594 268.277344 264.683594 268.277344 263.066406 C 268.277344 261.445312 270.707031 261.445312 270.707031 263.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.605469 141.515625 C 181.605469 143.136719 179.175781 143.136719 179.175781 141.515625 C 179.175781 139.898438 181.605469 139.898438 181.605469 141.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.054688 285.40625 C 282.054688 287.023438 279.625 287.023438 279.625 285.40625 C 279.625 283.785156 282.054688 283.785156 282.054688 285.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.664062 279.367188 C 159.664062 280.988281 157.234375 280.988281 157.234375 279.367188 C 157.234375 277.75 159.664062 277.75 159.664062 279.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.230469 254.070312 C 278.230469 255.6875 275.800781 255.6875 275.800781 254.070312 C 275.800781 252.449219 278.230469 252.449219 278.230469 254.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.460938 136.515625 C 237.460938 138.132812 235.03125 138.132812 235.03125 136.515625 C 235.03125 134.894531 237.460938 134.894531 237.460938 136.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.777344 248.085938 C 241.777344 249.707031 239.347656 249.707031 239.347656 248.085938 C 239.347656 246.464844 241.777344 246.464844 241.777344 248.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.707031 268.949219 C 305.707031 270.570312 303.277344 270.570312 303.277344 268.949219 C 303.277344 267.332031 305.707031 267.332031 305.707031 268.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.378906 70.910156 L 223.015625 73.746094 L 219.742188 73.746094 Z M 221.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.316406 70.910156 L 256.953125 73.746094 L 253.679688 73.746094 Z M 255.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.832031 316.84375 C 248.832031 318.460938 246.398438 318.460938 246.398438 316.84375 C 246.398438 315.222656 248.832031 315.222656 248.832031 316.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.320312 223.953125 C 258.320312 225.574219 255.890625 225.574219 255.890625 223.953125 C 255.890625 222.332031 258.320312 222.332031 258.320312 223.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.898438 101.058594 C 244.898438 102.675781 242.464844 102.675781 242.464844 101.058594 C 242.464844 99.4375 244.898438 99.4375 244.898438 101.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.585938 278.238281 C 285.585938 279.855469 283.15625 279.855469 283.15625 278.238281 C 283.15625 276.617188 285.585938 276.617188 285.585938 278.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.335938 70.910156 L 247.972656 73.746094 L 244.699219 73.746094 Z M 246.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.636719 268.40625 C 302.636719 270.023438 300.207031 270.023438 300.207031 268.40625 C 300.207031 266.785156 302.636719 266.785156 302.636719 268.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.078125 296.847656 C 245.078125 298.464844 242.648438 298.464844 242.648438 296.847656 C 242.648438 295.226562 245.078125 295.226562 245.078125 296.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.222656 232.757812 C 307.222656 234.378906 304.792969 234.378906 304.792969 232.757812 C 304.792969 231.136719 307.222656 231.136719 307.222656 232.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.664062 270.722656 C 299.664062 272.34375 297.234375 272.34375 297.234375 270.722656 C 297.234375 269.105469 299.664062 269.105469 299.664062 270.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.257812 233.195312 C 291.257812 234.816406 288.828125 234.816406 288.828125 233.195312 C 288.828125 231.574219 291.257812 231.574219 291.257812 233.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.402344 204.980469 C 219.402344 206.601562 216.972656 206.601562 216.972656 204.980469 C 216.972656 203.363281 219.402344 203.363281 219.402344 204.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.828125 285.636719 C 252.828125 287.253906 250.398438 287.253906 250.398438 285.636719 C 250.398438 284.015625 252.828125 284.015625 252.828125 285.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.902344 310.523438 C 229.902344 312.144531 227.472656 312.144531 227.472656 310.523438 C 227.472656 308.90625 229.902344 308.90625 229.902344 310.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.707031 293.144531 C 290.707031 294.761719 288.277344 294.761719 288.277344 293.144531 C 288.277344 291.523438 290.707031 291.523438 290.707031 293.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.925781 356.164062 C 160.925781 357.78125 158.496094 357.78125 158.496094 356.164062 C 158.496094 354.542969 160.925781 354.542969 160.925781 356.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.871094 229.65625 C 229.871094 231.277344 227.441406 231.277344 227.441406 229.65625 C 227.441406 228.035156 229.871094 228.035156 229.871094 229.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.863281 344.429688 C 228.863281 346.050781 226.433594 346.050781 226.433594 344.429688 C 226.433594 342.8125 228.863281 342.8125 228.863281 344.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.257812 253.601562 C 253.257812 255.222656 250.828125 255.222656 250.828125 253.601562 C 250.828125 251.980469 253.257812 251.980469 253.257812 253.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.710938 70.910156 L 153.347656 73.746094 L 150.074219 73.746094 Z M 151.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.339844 70.910156 L 250.976562 73.746094 L 247.703125 73.746094 Z M 249.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.53125 272.609375 C 290.53125 274.230469 288.101562 274.230469 288.101562 272.609375 C 288.101562 270.988281 290.53125 270.988281 290.53125 272.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.347656 201.234375 C 280.347656 202.855469 277.917969 202.855469 277.917969 201.234375 C 277.917969 199.617188 280.347656 199.617188 280.347656 201.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.867188 215.386719 C 228.867188 217.007812 226.433594 217.007812 226.433594 215.386719 C 226.433594 213.769531 228.867188 213.769531 228.867188 215.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.132812 273.511719 C 306.132812 275.128906 303.703125 275.128906 303.703125 273.511719 C 303.703125 271.890625 306.132812 271.890625 306.132812 273.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.160156 215.101562 C 297.160156 216.722656 294.730469 216.722656 294.730469 215.101562 C 294.730469 213.480469 297.160156 213.480469 297.160156 215.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.585938 257.964844 C 266.585938 259.585938 264.15625 259.585938 264.15625 257.964844 C 264.15625 256.34375 266.585938 256.34375 266.585938 257.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.070312 269.058594 C 300.070312 270.679688 297.640625 270.679688 297.640625 269.058594 C 297.640625 267.4375 300.070312 267.4375 300.070312 269.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.890625 262.6875 C 276.890625 264.304688 274.460938 264.304688 274.460938 262.6875 C 274.460938 261.066406 276.890625 261.066406 276.890625 262.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.25 70.910156 L 170.886719 73.746094 L 167.613281 73.746094 Z M 169.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.859375 215.445312 C 277.859375 217.066406 275.429688 217.066406 275.429688 215.445312 C 275.429688 213.824219 277.859375 213.824219 277.859375 215.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.546875 70.910156 L 305.183594 73.746094 L 301.910156 73.746094 Z M 303.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.941406 257.394531 C 175.941406 259.015625 173.511719 259.015625 173.511719 257.394531 C 173.511719 255.777344 175.941406 255.777344 175.941406 257.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.277344 270.675781 C 151.277344 272.296875 148.847656 272.296875 148.847656 270.675781 C 148.847656 269.054688 151.277344 269.054688 151.277344 270.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.277344 244.964844 C 246.277344 246.585938 243.847656 246.585938 243.847656 244.964844 C 243.847656 243.34375 246.277344 243.34375 246.277344 244.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.726562 227.382812 C 279.726562 229.003906 277.296875 229.003906 277.296875 227.382812 C 277.296875 225.761719 279.726562 225.761719 279.726562 227.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.277344 194.433594 C 291.277344 196.054688 288.847656 196.054688 288.847656 194.433594 C 288.847656 192.8125 291.277344 192.8125 291.277344 194.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.382812 287.988281 C 274.382812 289.609375 271.953125 289.609375 271.953125 287.988281 C 271.953125 286.367188 274.382812 286.367188 274.382812 287.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.15625 205.964844 C 246.15625 207.585938 243.726562 207.585938 243.726562 205.964844 C 243.726562 204.34375 246.15625 204.34375 246.15625 205.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.660156 170.441406 C 232.660156 172.058594 230.230469 172.058594 230.230469 170.441406 C 230.230469 168.820312 232.660156 168.820312 232.660156 170.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.535156 96.4375 C 255.535156 98.058594 253.105469 98.058594 253.105469 96.4375 C 253.105469 94.816406 255.535156 94.816406 255.535156 96.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.484375 252.15625 C 293.484375 253.777344 291.054688 253.777344 291.054688 252.15625 C 291.054688 250.535156 293.484375 250.535156 293.484375 252.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.144531 281.09375 C 265.144531 282.710938 262.714844 282.710938 262.714844 281.09375 C 262.714844 279.472656 265.144531 279.472656 265.144531 281.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.1875 329.542969 C 294.1875 331.164062 291.757812 331.164062 291.757812 329.542969 C 291.757812 327.925781 294.1875 327.925781 294.1875 329.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.15625 212.347656 C 356.15625 213.96875 353.726562 213.96875 353.726562 212.347656 C 353.726562 210.726562 356.15625 210.726562 356.15625 212.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.566406 223.953125 C 215.566406 225.570312 213.136719 225.570312 213.136719 223.953125 C 213.136719 222.332031 215.566406 222.332031 215.566406 223.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.972656 224.808594 C 299.972656 226.429688 297.542969 226.429688 297.542969 224.808594 C 297.542969 223.191406 299.972656 223.191406 299.972656 224.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.300781 240.324219 C 321.300781 241.941406 318.871094 241.941406 318.871094 240.324219 C 318.871094 238.703125 321.300781 238.703125 321.300781 240.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.484375 233.5625 C 260.484375 235.183594 258.054688 235.183594 258.054688 233.5625 C 258.054688 231.945312 260.484375 231.945312 260.484375 233.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.730469 250.734375 C 333.730469 252.355469 331.300781 252.355469 331.300781 250.734375 C 331.300781 249.113281 333.730469 249.113281 333.730469 250.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.535156 215.585938 C 299.535156 217.207031 297.105469 217.207031 297.105469 215.585938 C 297.105469 213.96875 299.535156 213.96875 299.535156 215.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.335938 143.65625 C 293.335938 145.273438 290.90625 145.273438 290.90625 143.65625 C 290.90625 142.035156 293.335938 142.035156 293.335938 143.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.421875 276.769531 C 279.421875 278.386719 276.992188 278.386719 276.992188 276.769531 C 276.992188 275.148438 279.421875 275.148438 279.421875 276.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.023438 308.960938 C 200.023438 310.582031 197.59375 310.582031 197.59375 308.960938 C 197.59375 307.339844 200.023438 307.339844 200.023438 308.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.335938 211.75 C 275.335938 213.371094 272.90625 213.371094 272.90625 211.75 C 272.90625 210.132812 275.335938 210.132812 275.335938 211.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.355469 279.929688 C 317.355469 281.550781 314.925781 281.550781 314.925781 279.929688 C 314.925781 278.3125 317.355469 278.3125 317.355469 279.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.613281 264.566406 C 238.613281 266.1875 236.183594 266.1875 236.183594 264.566406 C 236.183594 262.949219 238.613281 262.949219 238.613281 264.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 417.785156 177.511719 C 417.785156 179.132812 415.355469 179.132812 415.355469 177.511719 C 415.355469 175.894531 417.785156 175.894531 417.785156 177.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.917969 296.628906 C 249.917969 298.25 247.484375 298.25 247.484375 296.628906 C 247.484375 295.011719 249.917969 295.011719 249.917969 296.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.839844 178.359375 C 300.839844 179.980469 298.410156 179.980469 298.410156 178.359375 C 298.410156 176.738281 300.839844 176.738281 300.839844 178.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.519531 113.546875 C 234.519531 115.164062 232.089844 115.164062 232.089844 113.546875 C 232.089844 111.925781 234.519531 111.925781 234.519531 113.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.316406 122.996094 C 307.316406 124.613281 304.886719 124.613281 304.886719 122.996094 C 304.886719 121.375 307.316406 121.375 307.316406 122.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.28125 286.378906 C 274.28125 287.996094 271.851562 287.996094 271.851562 286.378906 C 271.851562 284.757812 274.28125 284.757812 274.28125 286.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.230469 70.910156 L 243.863281 73.746094 L 240.59375 73.746094 Z M 242.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.109375 260.675781 C 248.109375 262.296875 245.679688 262.296875 245.679688 260.675781 C 245.679688 259.058594 248.109375 259.058594 248.109375 260.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.023438 181.148438 C 282.023438 182.769531 279.59375 182.769531 279.59375 181.148438 C 279.59375 179.527344 282.023438 179.527344 282.023438 181.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.691406 166.886719 C 247.691406 168.507812 245.261719 168.507812 245.261719 166.886719 C 245.261719 165.265625 247.691406 165.265625 247.691406 166.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.640625 225.097656 C 258.640625 226.714844 256.210938 226.714844 256.210938 225.097656 C 256.210938 223.476562 258.640625 223.476562 258.640625 225.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.863281 181.679688 C 262.863281 183.296875 260.433594 183.296875 260.433594 181.679688 C 260.433594 180.058594 262.863281 180.058594 262.863281 181.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.21875 314.976562 C 279.21875 316.597656 276.789062 316.597656 276.789062 314.976562 C 276.789062 313.359375 279.21875 313.359375 279.21875 314.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.089844 353.28125 C 246.089844 354.902344 243.660156 354.902344 243.660156 353.28125 C 243.660156 351.660156 246.089844 351.660156 246.089844 353.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.742188 70.910156 L 194.378906 73.746094 L 191.105469 73.746094 Z M 192.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.949219 224.925781 C 241.949219 226.546875 239.515625 226.546875 239.515625 224.925781 C 239.515625 223.308594 241.949219 223.308594 241.949219 224.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.105469 353.222656 C 267.105469 354.84375 264.675781 354.84375 264.675781 353.222656 C 264.675781 351.601562 267.105469 351.601562 267.105469 353.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.582031 259.722656 C 115.582031 261.34375 113.152344 261.34375 113.152344 259.722656 C 113.152344 258.105469 115.582031 258.105469 115.582031 259.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.199219 155.402344 C 281.199219 157.019531 278.769531 157.019531 278.769531 155.402344 C 278.769531 153.78125 281.199219 153.78125 281.199219 155.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.191406 183.925781 C 297.191406 185.546875 294.761719 185.546875 294.761719 183.925781 C 294.761719 182.304688 297.191406 182.304688 297.191406 183.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.941406 70.910156 L 181.578125 73.746094 L 178.304688 73.746094 Z M 179.941406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.246094 234.855469 C 251.246094 236.476562 248.816406 236.476562 248.816406 234.855469 C 248.816406 233.234375 251.246094 233.234375 251.246094 234.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.117188 257.988281 C 277.117188 259.609375 274.6875 259.609375 274.6875 257.988281 C 274.6875 256.371094 277.117188 256.371094 277.117188 257.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.789062 187.257812 C 286.789062 188.878906 284.359375 188.878906 284.359375 187.257812 C 284.359375 185.636719 286.789062 185.636719 286.789062 187.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.265625 418.691406 L 231.902344 415.855469 L 228.628906 415.855469 Z M 230.265625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.726562 418.691406 L 197.363281 415.855469 L 194.089844 415.855469 Z M 195.726562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.523438 359.894531 C 263.523438 361.515625 261.09375 361.515625 261.09375 359.894531 C 261.09375 358.273438 263.523438 358.273438 263.523438 359.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.351562 217.019531 C 209.351562 218.636719 206.921875 218.636719 206.921875 217.019531 C 206.921875 215.398438 209.351562 215.398438 209.351562 217.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.242188 216.367188 C 279.242188 217.988281 276.8125 217.988281 276.8125 216.367188 C 276.8125 214.75 279.242188 214.75 279.242188 216.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.976562 204.230469 C 304.976562 205.851562 302.546875 205.851562 302.546875 204.230469 C 302.546875 202.609375 304.976562 202.609375 304.976562 204.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.324219 256.996094 C 327.324219 258.613281 324.894531 258.613281 324.894531 256.996094 C 324.894531 255.375 327.324219 255.375 327.324219 256.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.199219 332.089844 C 150.199219 333.710938 147.769531 333.710938 147.769531 332.089844 C 147.769531 330.46875 150.199219 330.46875 150.199219 332.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.15625 70.910156 L 273.792969 73.746094 L 270.519531 73.746094 Z M 272.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.777344 260.53125 C 345.777344 262.152344 343.347656 262.152344 343.347656 260.53125 C 343.347656 258.910156 345.777344 258.910156 345.777344 260.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.472656 88.4375 C 253.472656 90.058594 251.042969 90.058594 251.042969 88.4375 C 251.042969 86.816406 253.472656 86.816406 253.472656 88.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.167969 201.660156 C 295.167969 203.28125 292.738281 203.28125 292.738281 201.660156 C 292.738281 200.039062 295.167969 200.039062 295.167969 201.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.25 418.691406 L 186.886719 415.855469 L 183.613281 415.855469 Z M 185.25 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.417969 303.414062 C 291.417969 305.03125 288.988281 305.03125 288.988281 303.414062 C 288.988281 301.792969 291.417969 301.792969 291.417969 303.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.113281 194.875 C 211.113281 196.492188 208.679688 196.492188 208.679688 194.875 C 208.679688 193.253906 211.113281 193.253906 211.113281 194.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.179688 327.214844 C 265.179688 328.832031 262.75 328.832031 262.75 327.214844 C 262.75 325.59375 265.179688 325.59375 265.179688 327.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 355.359375 309.132812 C 355.359375 310.753906 352.925781 310.753906 352.925781 309.132812 C 352.925781 307.511719 355.359375 307.511719 355.359375 309.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.566406 93.449219 C 217.566406 95.070312 215.136719 95.070312 215.136719 93.449219 C 215.136719 91.828125 217.566406 91.828125 217.566406 93.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.984375 239.65625 C 277.984375 241.277344 275.554688 241.277344 275.554688 239.65625 C 275.554688 238.035156 277.984375 238.035156 277.984375 239.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.761719 242.847656 C 284.761719 244.464844 282.332031 244.464844 282.332031 242.847656 C 282.332031 241.226562 284.761719 241.226562 284.761719 242.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.171875 276.394531 C 221.171875 278.015625 218.742188 278.015625 218.742188 276.394531 C 218.742188 274.773438 221.171875 274.773438 221.171875 276.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.714844 351.722656 C 214.714844 353.339844 212.285156 353.339844 212.285156 351.722656 C 212.285156 350.101562 214.714844 350.101562 214.714844 351.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.628906 283.554688 C 185.628906 285.171875 183.199219 285.171875 183.199219 283.554688 C 183.199219 281.933594 185.628906 281.933594 185.628906 283.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.230469 284.359375 C 289.230469 285.980469 286.800781 285.980469 286.800781 284.359375 C 286.800781 282.738281 289.230469 282.738281 289.230469 284.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.886719 233.585938 C 279.886719 235.207031 277.457031 235.207031 277.457031 233.585938 C 277.457031 231.964844 279.886719 231.964844 279.886719 233.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.347656 418.691406 L 316.984375 415.855469 L 313.710938 415.855469 Z M 315.347656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.960938 383.136719 C 300.960938 384.753906 298.53125 384.753906 298.53125 383.136719 C 298.53125 381.515625 300.960938 381.515625 300.960938 383.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.324219 198.675781 C 259.324219 200.296875 256.894531 200.296875 256.894531 198.675781 C 256.894531 197.054688 259.324219 197.054688 259.324219 198.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.066406 289.363281 C 320.066406 290.984375 317.636719 290.984375 317.636719 289.363281 C 317.636719 287.746094 320.066406 287.746094 320.066406 289.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.597656 325.808594 C 220.597656 327.425781 218.167969 327.425781 218.167969 325.808594 C 218.167969 324.1875 220.597656 324.1875 220.597656 325.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.730469 213.03125 C 232.730469 214.652344 230.300781 214.652344 230.300781 213.03125 C 230.300781 211.414062 232.730469 211.414062 232.730469 213.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.878906 343.566406 C 271.878906 345.1875 269.449219 345.1875 269.449219 343.566406 C 269.449219 341.945312 271.878906 341.945312 271.878906 343.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.714844 174.097656 C 284.714844 175.714844 282.285156 175.714844 282.285156 174.097656 C 282.285156 172.476562 284.714844 172.476562 284.714844 174.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.125 279.566406 C 247.125 281.183594 244.695312 281.183594 244.695312 279.566406 C 244.695312 277.945312 247.125 277.945312 247.125 279.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.058594 217.003906 C 316.058594 218.621094 313.628906 218.621094 313.628906 217.003906 C 313.628906 215.382812 316.058594 215.382812 316.058594 217.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.039062 262.132812 C 290.039062 263.75 287.609375 263.75 287.609375 262.132812 C 287.609375 260.511719 290.039062 260.511719 290.039062 262.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.824219 289.761719 C 279.824219 291.382812 277.394531 291.382812 277.394531 289.761719 C 277.394531 288.144531 279.824219 288.144531 279.824219 289.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 353.632812 93.847656 C 353.632812 95.46875 351.203125 95.46875 351.203125 93.847656 C 351.203125 92.226562 353.632812 92.226562 353.632812 93.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.660156 70.910156 L 225.296875 73.746094 L 222.027344 73.746094 Z M 223.660156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.457031 70.910156 L 279.089844 73.746094 L 275.820312 73.746094 Z M 277.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 354.191406 210.757812 C 354.191406 212.375 351.757812 212.375 351.757812 210.757812 C 351.757812 209.136719 354.191406 209.136719 354.191406 210.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.949219 233.914062 C 279.949219 235.535156 277.515625 235.535156 277.515625 233.914062 C 277.515625 232.296875 279.949219 232.296875 279.949219 233.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.828125 224.742188 C 169.828125 226.359375 167.398438 226.359375 167.398438 224.742188 C 167.398438 223.121094 169.828125 223.121094 169.828125 224.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.027344 418.691406 L 240.664062 415.855469 L 237.390625 415.855469 Z M 239.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.925781 336.054688 C 243.925781 337.675781 241.496094 337.675781 241.496094 336.054688 C 241.496094 334.433594 243.925781 334.433594 243.925781 336.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.234375 398.773438 C 295.234375 400.394531 292.804688 400.394531 292.804688 398.773438 C 292.804688 397.15625 295.234375 397.15625 295.234375 398.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.992188 409.914062 C 229.992188 411.53125 227.5625 411.53125 227.5625 409.914062 C 227.5625 408.292969 229.992188 408.292969 229.992188 409.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.644531 115.25 C 216.644531 116.867188 214.214844 116.867188 214.214844 115.25 C 214.214844 113.628906 216.644531 113.628906 216.644531 115.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.566406 271.15625 C 252.566406 272.777344 250.136719 272.777344 250.136719 271.15625 C 250.136719 269.535156 252.566406 269.535156 252.566406 271.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.359375 376.03125 C 299.359375 377.652344 296.929688 377.652344 296.929688 376.03125 C 296.929688 374.410156 299.359375 374.410156 299.359375 376.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.785156 180.460938 C 305.785156 182.082031 303.355469 182.082031 303.355469 180.460938 C 303.355469 178.84375 305.785156 178.84375 305.785156 180.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.027344 387.234375 C 163.027344 388.855469 160.597656 388.855469 160.597656 387.234375 C 160.597656 385.613281 163.027344 385.613281 163.027344 387.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.597656 418.691406 L 147.234375 415.855469 L 143.960938 415.855469 Z M 145.597656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.394531 276.570312 C 244.394531 278.191406 241.964844 278.191406 241.964844 276.570312 C 241.964844 274.949219 244.394531 274.949219 244.394531 276.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.335938 312.394531 C 181.335938 314.015625 178.90625 314.015625 178.90625 312.394531 C 178.90625 310.773438 181.335938 310.773438 181.335938 312.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.28125 326.148438 C 270.28125 327.765625 267.851562 327.765625 267.851562 326.148438 C 267.851562 324.527344 270.28125 324.527344 270.28125 326.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.003906 276.296875 C 294.003906 277.917969 291.574219 277.917969 291.574219 276.296875 C 291.574219 274.675781 294.003906 274.675781 294.003906 276.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.839844 260.105469 C 238.839844 261.726562 236.410156 261.726562 236.410156 260.105469 C 236.410156 258.484375 238.839844 258.484375 238.839844 260.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.203125 224.628906 C 312.203125 226.25 309.773438 226.25 309.773438 224.628906 C 309.773438 223.011719 312.203125 223.011719 312.203125 224.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.667969 117.21875 C 329.667969 118.835938 327.234375 118.835938 327.234375 117.21875 C 327.234375 115.597656 329.667969 115.597656 329.667969 117.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.296875 118.300781 C 137.296875 119.917969 134.867188 119.917969 134.867188 118.300781 C 134.867188 116.679688 137.296875 116.679688 137.296875 118.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.707031 70.910156 L 282.34375 73.746094 L 279.070312 73.746094 Z M 280.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.457031 238.878906 C 271.457031 240.496094 269.023438 240.496094 269.023438 238.878906 C 269.023438 237.257812 271.457031 237.257812 271.457031 238.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.585938 299.667969 C 271.585938 301.289062 269.15625 301.289062 269.15625 299.667969 C 269.15625 298.050781 271.585938 298.050781 271.585938 299.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.867188 418.691406 L 192.5 415.855469 L 189.230469 415.855469 Z M 190.867188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.476562 221.753906 C 265.476562 223.375 263.046875 223.375 263.046875 221.753906 C 263.046875 220.136719 265.476562 220.136719 265.476562 221.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.582031 289.414062 C 288.582031 291.035156 286.148438 291.035156 286.148438 289.414062 C 286.148438 287.792969 288.582031 287.792969 288.582031 289.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.402344 250.78125 C 272.402344 252.398438 269.972656 252.398438 269.972656 250.78125 C 269.972656 249.160156 272.402344 249.160156 272.402344 250.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.148438 179.707031 C 262.148438 181.328125 259.71875 181.328125 259.71875 179.707031 C 259.71875 178.089844 262.148438 178.089844 262.148438 179.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.90625 70.910156 L 291.542969 73.746094 L 288.269531 73.746094 Z M 289.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.140625 73.992188 C 330.140625 75.613281 327.710938 75.613281 327.710938 73.992188 C 327.710938 72.371094 330.140625 72.371094 330.140625 73.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.183594 171.578125 C 256.183594 173.199219 253.753906 173.199219 253.753906 171.578125 C 253.753906 169.957031 256.183594 169.957031 256.183594 171.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.546875 319.582031 C 247.546875 321.203125 245.113281 321.203125 245.113281 319.582031 C 245.113281 317.964844 247.546875 317.964844 247.546875 319.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.777344 279.609375 C 280.777344 281.230469 278.347656 281.230469 278.347656 279.609375 C 278.347656 277.992188 280.777344 277.992188 280.777344 279.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.78125 253.203125 C 167.78125 254.824219 165.351562 254.824219 165.351562 253.203125 C 165.351562 251.585938 167.78125 251.585938 167.78125 253.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.113281 133.214844 C 235.113281 134.835938 232.683594 134.835938 232.683594 133.214844 C 232.683594 131.597656 235.113281 131.597656 235.113281 133.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.511719 70.910156 L 277.148438 73.746094 L 273.875 73.746094 Z M 275.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.457031 318.816406 C 273.457031 320.4375 271.027344 320.4375 271.027344 318.816406 C 271.027344 317.199219 273.457031 317.199219 273.457031 318.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.835938 257.207031 C 251.835938 258.824219 249.40625 258.824219 249.40625 257.207031 C 249.40625 255.585938 251.835938 255.585938 251.835938 257.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.585938 310.660156 C 252.585938 312.28125 250.152344 312.28125 250.152344 310.660156 C 250.152344 309.042969 252.585938 309.042969 252.585938 310.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.328125 251.355469 C 268.328125 252.976562 265.898438 252.976562 265.898438 251.355469 C 265.898438 249.734375 268.328125 249.734375 268.328125 251.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.625 369.5625 C 257.625 371.183594 255.195312 371.183594 255.195312 369.5625 C 255.195312 367.945312 257.625 367.945312 257.625 369.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.359375 258.304688 C 269.359375 259.921875 266.929688 259.921875 266.929688 258.304688 C 266.929688 256.683594 269.359375 256.683594 269.359375 258.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.011719 258.953125 C 211.011719 260.574219 208.582031 260.574219 208.582031 258.953125 C 208.582031 257.332031 211.011719 257.332031 211.011719 258.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.703125 281.148438 C 219.703125 282.769531 217.269531 282.769531 217.269531 281.148438 C 217.269531 279.53125 219.703125 279.53125 219.703125 281.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.609375 289.742188 C 241.609375 291.363281 239.179688 291.363281 239.179688 289.742188 C 239.179688 288.121094 241.609375 288.121094 241.609375 289.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.425781 240.65625 C 312.425781 242.277344 309.996094 242.277344 309.996094 240.65625 C 309.996094 239.035156 312.425781 239.035156 312.425781 240.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.175781 331.453125 C 234.175781 333.074219 231.746094 333.074219 231.746094 331.453125 C 231.746094 329.835938 234.175781 329.835938 234.175781 331.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.523438 170.933594 C 275.523438 172.554688 273.09375 172.554688 273.09375 170.933594 C 273.09375 169.316406 275.523438 169.316406 275.523438 170.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.121094 336.015625 C 240.121094 337.632812 237.691406 337.632812 237.691406 336.015625 C 237.691406 334.394531 240.121094 334.394531 240.121094 336.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.621094 232.347656 C 309.621094 233.96875 307.191406 233.96875 307.191406 232.347656 C 307.191406 230.726562 309.621094 230.726562 309.621094 232.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.800781 200.871094 C 278.800781 202.492188 276.371094 202.492188 276.371094 200.871094 C 276.371094 199.25 278.800781 199.25 278.800781 200.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.441406 328.9375 C 325.441406 330.558594 323.011719 330.558594 323.011719 328.9375 C 323.011719 327.320312 325.441406 327.320312 325.441406 328.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.609375 70.910156 L 235.246094 73.746094 L 231.972656 73.746094 Z M 233.609375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.75 70.910156 L 170.386719 73.746094 L 167.113281 73.746094 Z M 168.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.5625 194.808594 C 231.5625 196.425781 229.132812 196.425781 229.132812 194.808594 C 229.132812 193.1875 231.5625 193.1875 231.5625 194.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.820312 109.773438 C 358.820312 111.394531 356.390625 111.394531 356.390625 109.773438 C 356.390625 108.152344 358.820312 108.152344 358.820312 109.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.144531 70.910156 L 269.78125 73.746094 L 266.507812 73.746094 Z M 268.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.285156 320.296875 C 256.285156 321.914062 253.855469 321.914062 253.855469 320.296875 C 253.855469 318.675781 256.285156 318.675781 256.285156 320.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.84375 191.734375 C 243.84375 193.351562 241.414062 193.351562 241.414062 191.734375 C 241.414062 190.113281 243.84375 190.113281 243.84375 191.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.839844 125.847656 C 280.839844 127.46875 278.410156 127.46875 278.410156 125.847656 C 278.410156 124.226562 280.839844 124.226562 280.839844 125.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.625 258.257812 C 274.625 259.875 272.195312 259.875 272.195312 258.257812 C 272.195312 256.636719 274.625 256.636719 274.625 258.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.515625 235.691406 C 291.515625 237.3125 289.085938 237.3125 289.085938 235.691406 C 289.085938 234.070312 291.515625 234.070312 291.515625 235.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.203125 230.285156 C 250.203125 231.90625 247.773438 231.90625 247.773438 230.285156 C 247.773438 228.664062 250.203125 228.664062 250.203125 230.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.273438 217.613281 C 309.273438 219.234375 306.84375 219.234375 306.84375 217.613281 C 306.84375 215.996094 309.273438 215.996094 309.273438 217.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.386719 70.910156 L 254.023438 73.746094 L 250.75 73.746094 Z M 252.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.402344 304.628906 C 286.402344 306.25 283.972656 306.25 283.972656 304.628906 C 283.972656 303.007812 286.402344 303.007812 286.402344 304.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.109375 270.546875 C 286.109375 272.167969 283.679688 272.167969 283.679688 270.546875 C 283.679688 268.925781 286.109375 268.925781 286.109375 270.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.167969 130.019531 C 133.167969 131.640625 130.738281 131.640625 130.738281 130.019531 C 130.738281 128.402344 133.167969 128.402344 133.167969 130.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.589844 70.910156 L 214.222656 73.746094 L 210.953125 73.746094 Z M 212.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.5625 186.484375 C 335.5625 188.105469 333.132812 188.105469 333.132812 186.484375 C 333.132812 184.867188 335.5625 184.867188 335.5625 186.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.484375 118.617188 C 228.484375 120.238281 226.054688 120.238281 226.054688 118.617188 C 226.054688 117 228.484375 117 228.484375 118.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.121094 70.910156 L 170.757812 73.746094 L 167.484375 73.746094 Z M 169.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.351562 222.757812 C 255.351562 224.378906 252.921875 224.378906 252.921875 222.757812 C 252.921875 221.140625 255.351562 221.140625 255.351562 222.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.9375 179.453125 C 284.9375 181.074219 282.507812 181.074219 282.507812 179.453125 C 282.507812 177.832031 284.9375 177.832031 284.9375 179.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.3125 294.167969 C 231.3125 295.789062 228.882812 295.789062 228.882812 294.167969 C 228.882812 292.546875 231.3125 292.546875 231.3125 294.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.464844 283.265625 C 257.464844 284.882812 255.035156 284.882812 255.035156 283.265625 C 255.035156 281.644531 257.464844 281.644531 257.464844 283.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.75 250.828125 C 299.75 252.449219 297.320312 252.449219 297.320312 250.828125 C 297.320312 249.207031 299.75 249.207031 299.75 250.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.785156 255.441406 C 303.785156 257.0625 301.355469 257.0625 301.355469 255.441406 C 301.355469 253.824219 303.785156 253.824219 303.785156 255.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.835938 311.078125 C 334.835938 312.699219 332.40625 312.699219 332.40625 311.078125 C 332.40625 309.457031 334.835938 309.457031 334.835938 311.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.347656 70.910156 L 259.984375 73.746094 L 256.710938 73.746094 Z M 258.347656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.292969 277.214844 C 269.292969 278.832031 266.863281 278.832031 266.863281 277.214844 C 266.863281 275.59375 269.292969 275.59375 269.292969 277.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.957031 266.851562 C 199.957031 268.46875 197.527344 268.46875 197.527344 266.851562 C 197.527344 265.230469 199.957031 265.230469 199.957031 266.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.347656 279.566406 C 233.347656 281.183594 230.917969 281.183594 230.917969 279.566406 C 230.917969 277.945312 233.347656 277.945312 233.347656 279.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.972656 279.578125 C 266.972656 281.199219 264.542969 281.199219 264.542969 279.578125 C 264.542969 277.957031 266.972656 277.957031 266.972656 279.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.417969 302.324219 C 266.417969 303.945312 263.988281 303.945312 263.988281 302.324219 C 263.988281 300.703125 266.417969 300.703125 266.417969 302.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.285156 203.097656 C 237.285156 204.714844 234.855469 204.714844 234.855469 203.097656 C 234.855469 201.476562 237.285156 201.476562 237.285156 203.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.15625 70.910156 L 197.792969 73.746094 L 194.519531 73.746094 Z M 196.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.550781 418.691406 L 265.1875 415.855469 L 261.914062 415.855469 Z M 263.550781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.441406 236.417969 C 223.441406 238.035156 221.007812 238.035156 221.007812 236.417969 C 221.007812 234.796875 223.441406 234.796875 223.441406 236.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.003906 70.910156 L 147.640625 73.746094 L 144.371094 73.746094 Z M 146.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.972656 358.039062 C 257.972656 359.660156 255.542969 359.660156 255.542969 358.039062 C 255.542969 356.417969 257.972656 356.417969 257.972656 358.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.09375 351.011719 C 199.09375 352.632812 196.664062 352.632812 196.664062 351.011719 C 196.664062 349.390625 199.09375 349.390625 199.09375 351.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.824219 355.351562 C 212.824219 356.96875 210.394531 356.96875 210.394531 355.351562 C 210.394531 353.730469 212.824219 353.730469 212.824219 355.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.535156 70.910156 L 193.171875 73.746094 L 189.898438 73.746094 Z M 191.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.152344 244.566406 C 253.152344 246.1875 250.722656 246.1875 250.722656 244.566406 C 250.722656 242.945312 253.152344 242.945312 253.152344 244.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.988281 70.910156 L 134.625 73.746094 L 131.351562 73.746094 Z M 132.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.226562 272.417969 C 280.226562 274.035156 277.796875 274.035156 277.796875 272.417969 C 277.796875 270.796875 280.226562 270.796875 280.226562 272.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.4375 270.449219 C 323.4375 272.066406 321.007812 272.066406 321.007812 270.449219 C 321.007812 268.828125 323.4375 268.828125 323.4375 270.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.113281 250.820312 C 288.113281 252.441406 285.683594 252.441406 285.683594 250.820312 C 285.683594 249.199219 288.113281 249.199219 288.113281 250.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.878906 363.023438 C 195.878906 364.644531 193.449219 364.644531 193.449219 363.023438 C 193.449219 361.402344 195.878906 361.402344 195.878906 363.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.402344 316.386719 C 281.402344 318.003906 278.972656 318.003906 278.972656 316.386719 C 278.972656 314.765625 281.402344 314.765625 281.402344 316.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.042969 307.183594 C 289.042969 308.800781 286.613281 308.800781 286.613281 307.183594 C 286.613281 305.5625 289.042969 305.5625 289.042969 307.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.15625 70.910156 L 140.792969 73.746094 L 137.519531 73.746094 Z M 139.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.519531 167.691406 C 140.519531 169.3125 138.089844 169.3125 138.089844 167.691406 C 138.089844 166.070312 140.519531 166.070312 140.519531 167.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.109375 151.289062 C 264.109375 152.910156 261.679688 152.910156 261.679688 151.289062 C 261.679688 149.671875 264.109375 149.671875 264.109375 151.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.3125 290.5625 C 256.3125 292.183594 253.882812 292.183594 253.882812 290.5625 C 253.882812 288.941406 256.3125 288.941406 256.3125 290.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.519531 70.910156 L 298.15625 73.746094 L 294.882812 73.746094 Z M 296.519531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.953125 226.0625 C 308.953125 227.683594 306.523438 227.683594 306.523438 226.0625 C 306.523438 224.445312 308.953125 224.445312 308.953125 226.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.308594 70.910156 L 171.945312 73.746094 L 168.671875 73.746094 Z M 170.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.925781 300.003906 C 328.925781 301.625 326.496094 301.625 326.496094 300.003906 C 326.496094 298.382812 328.925781 298.382812 328.925781 300.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.125 343.226562 C 287.125 344.847656 284.695312 344.847656 284.695312 343.226562 C 284.695312 341.605469 287.125 341.605469 287.125 343.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.800781 186.199219 C 285.800781 187.816406 283.371094 187.816406 283.371094 186.199219 C 283.371094 184.578125 285.800781 184.578125 285.800781 186.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.007812 295.921875 C 317.007812 297.542969 314.578125 297.542969 314.578125 295.921875 C 314.578125 294.300781 317.007812 294.300781 317.007812 295.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.070312 237.734375 C 217.070312 239.355469 214.640625 239.355469 214.640625 237.734375 C 214.640625 236.113281 217.070312 236.113281 217.070312 237.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.242188 209.96875 C 284.242188 211.585938 281.8125 211.585938 281.8125 209.96875 C 281.8125 208.347656 284.242188 208.347656 284.242188 209.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.4375 246.273438 C 266.4375 247.894531 264.007812 247.894531 264.007812 246.273438 C 264.007812 244.65625 266.4375 244.65625 266.4375 246.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.757812 234.054688 C 273.757812 235.675781 271.328125 235.675781 271.328125 234.054688 C 271.328125 232.433594 273.757812 232.433594 273.757812 234.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.480469 354.5625 C 129.480469 356.183594 127.050781 356.183594 127.050781 354.5625 C 127.050781 352.941406 129.480469 352.941406 129.480469 354.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.226562 328.484375 C 305.226562 330.105469 302.796875 330.105469 302.796875 328.484375 C 302.796875 326.867188 305.226562 326.867188 305.226562 328.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.433594 351.160156 C 173.433594 352.777344 171.003906 352.777344 171.003906 351.160156 C 171.003906 349.539062 173.433594 349.539062 173.433594 351.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.292969 269.5625 C 284.292969 271.183594 281.859375 271.183594 281.859375 269.5625 C 281.859375 267.941406 284.292969 267.941406 284.292969 269.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.121094 126.6875 C 227.121094 128.304688 224.691406 128.304688 224.691406 126.6875 C 224.691406 125.066406 227.121094 125.066406 227.121094 126.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.574219 117.984375 C 241.574219 119.605469 239.144531 119.605469 239.144531 117.984375 C 239.144531 116.363281 241.574219 116.363281 241.574219 117.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.265625 168.789062 C 275.265625 170.410156 272.835938 170.410156 272.835938 168.789062 C 272.835938 167.167969 275.265625 167.167969 275.265625 168.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.320312 255.640625 C 239.320312 257.261719 236.890625 257.261719 236.890625 255.640625 C 236.890625 254.023438 239.320312 254.023438 239.320312 255.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.332031 250.492188 C 254.332031 252.113281 251.898438 252.113281 251.898438 250.492188 C 251.898438 248.871094 254.332031 248.871094 254.332031 250.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.011719 310.390625 C 263.011719 312.011719 260.582031 312.011719 260.582031 310.390625 C 260.582031 308.773438 263.011719 308.773438 263.011719 310.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.605469 242.863281 C 237.605469 244.484375 235.175781 244.484375 235.175781 242.863281 C 235.175781 241.246094 237.605469 241.246094 237.605469 242.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.1875 279.460938 C 277.1875 281.078125 274.757812 281.078125 274.757812 279.460938 C 274.757812 277.839844 277.1875 277.839844 277.1875 279.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.71875 324.917969 C 258.71875 326.539062 256.289062 326.539062 256.289062 324.917969 C 256.289062 323.296875 258.71875 323.296875 258.71875 324.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.398438 195.472656 C 326.398438 197.089844 323.964844 197.089844 323.964844 195.472656 C 323.964844 193.851562 326.398438 193.851562 326.398438 195.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.785156 268.539062 C 250.785156 270.160156 248.355469 270.160156 248.355469 268.539062 C 248.355469 266.921875 250.785156 266.921875 250.785156 268.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.613281 70.910156 L 218.25 73.746094 L 214.976562 73.746094 Z M 216.613281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.746094 70.910156 L 132.382812 73.746094 L 129.109375 73.746094 Z M 130.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.398438 320.914062 C 253.398438 322.535156 250.96875 322.535156 250.96875 320.914062 C 250.96875 319.292969 253.398438 319.292969 253.398438 320.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.597656 233.207031 C 175.597656 234.828125 173.167969 234.828125 173.167969 233.207031 C 173.167969 231.585938 175.597656 231.585938 175.597656 233.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.792969 262.703125 C 230.792969 264.320312 228.363281 264.320312 228.363281 262.703125 C 228.363281 261.082031 230.792969 261.082031 230.792969 262.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.46875 104.820312 C 137.46875 106.441406 135.039062 106.441406 135.039062 104.820312 C 135.039062 103.203125 137.46875 103.203125 137.46875 104.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.921875 190.40625 C 215.921875 192.027344 213.492188 192.027344 213.492188 190.40625 C 213.492188 188.785156 215.921875 188.785156 215.921875 190.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.070312 70.910156 L 179.707031 73.746094 L 176.433594 73.746094 Z M 178.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.773438 137.300781 C 172.773438 138.917969 170.34375 138.917969 170.34375 137.300781 C 170.34375 135.679688 172.773438 135.679688 172.773438 137.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.582031 154.035156 C 288.582031 155.65625 286.152344 155.65625 286.152344 154.035156 C 286.152344 152.417969 288.582031 152.417969 288.582031 154.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.675781 70.910156 L 169.3125 73.746094 L 166.039062 73.746094 Z M 167.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.628906 94.003906 C 241.628906 95.625 239.199219 95.625 239.199219 94.003906 C 239.199219 92.382812 241.628906 92.382812 241.628906 94.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.402344 70.910156 L 165.039062 73.746094 L 161.765625 73.746094 Z M 163.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.671875 211.496094 C 270.671875 213.113281 268.242188 213.113281 268.242188 211.496094 C 268.242188 209.875 270.671875 209.875 270.671875 211.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.699219 310.039062 C 166.699219 311.660156 164.269531 311.660156 164.269531 310.039062 C 164.269531 308.421875 166.699219 308.421875 166.699219 310.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.273438 240.015625 C 266.273438 241.636719 263.84375 241.636719 263.84375 240.015625 C 263.84375 238.394531 266.273438 238.394531 266.273438 240.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.734375 158.34375 C 225.734375 159.964844 223.304688 159.964844 223.304688 158.34375 C 223.304688 156.726562 225.734375 156.726562 225.734375 158.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.863281 223.773438 C 161.863281 225.394531 159.433594 225.394531 159.433594 223.773438 C 159.433594 222.15625 161.863281 222.15625 161.863281 223.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.230469 125.878906 C 273.230469 127.5 270.796875 127.5 270.796875 125.878906 C 270.796875 124.257812 273.230469 124.257812 273.230469 125.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.167969 286.335938 C 244.167969 287.953125 241.738281 287.953125 241.738281 286.335938 C 241.738281 284.714844 244.167969 284.714844 244.167969 286.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.183594 70.910156 L 121.820312 73.746094 L 118.546875 73.746094 Z M 120.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.308594 247.90625 C 267.308594 249.523438 264.878906 249.523438 264.878906 247.90625 C 264.878906 246.285156 267.308594 246.285156 267.308594 247.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.703125 331.476562 C 310.703125 333.097656 308.273438 333.097656 308.273438 331.476562 C 308.273438 329.859375 310.703125 329.859375 310.703125 331.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.527344 135.238281 C 247.527344 136.855469 245.097656 136.855469 245.097656 135.238281 C 245.097656 133.617188 247.527344 133.617188 247.527344 135.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.316406 286.546875 C 270.316406 288.167969 267.886719 288.167969 267.886719 286.546875 C 267.886719 284.925781 270.316406 284.925781 270.316406 286.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.324219 205.183594 C 285.324219 206.804688 282.894531 206.804688 282.894531 205.183594 C 282.894531 203.5625 285.324219 203.5625 285.324219 205.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.898438 144.957031 C 166.898438 146.574219 164.46875 146.574219 164.46875 144.957031 C 164.46875 143.335938 166.898438 143.335938 166.898438 144.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.558594 358.511719 C 259.558594 360.132812 257.128906 360.132812 257.128906 358.511719 C 257.128906 356.890625 259.558594 356.890625 259.558594 358.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.378906 186.957031 C 265.378906 188.578125 262.949219 188.578125 262.949219 186.957031 C 262.949219 185.335938 265.378906 185.335938 265.378906 186.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.90625 264.984375 C 275.90625 266.605469 273.476562 266.605469 273.476562 264.984375 C 273.476562 263.363281 275.90625 263.363281 275.90625 264.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.53125 227.824219 C 283.53125 229.441406 281.101562 229.441406 281.101562 227.824219 C 281.101562 226.203125 283.53125 226.203125 283.53125 227.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.828125 270.84375 C 288.828125 272.464844 286.398438 272.464844 286.398438 270.84375 C 286.398438 269.222656 288.828125 269.222656 288.828125 270.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.78125 182.144531 C 247.78125 183.765625 245.351562 183.765625 245.351562 182.144531 C 245.351562 180.523438 247.78125 180.523438 247.78125 182.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.101562 280.867188 C 303.101562 282.484375 300.671875 282.484375 300.671875 280.867188 C 300.671875 279.246094 303.101562 279.246094 303.101562 280.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.777344 312.480469 C 287.777344 314.101562 285.347656 314.101562 285.347656 312.480469 C 285.347656 310.863281 287.777344 310.863281 287.777344 312.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.675781 308.0625 C 269.675781 309.679688 267.246094 309.679688 267.246094 308.0625 C 267.246094 306.441406 269.675781 306.441406 269.675781 308.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.34375 299.328125 C 252.34375 300.949219 249.914062 300.949219 249.914062 299.328125 C 249.914062 297.707031 252.34375 297.707031 252.34375 299.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.964844 264.085938 C 300.964844 265.707031 298.535156 265.707031 298.535156 264.085938 C 298.535156 262.464844 300.964844 262.464844 300.964844 264.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.035156 262.839844 C 241.035156 264.460938 238.605469 264.460938 238.605469 262.839844 C 238.605469 261.21875 241.035156 261.21875 241.035156 262.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.96875 163.246094 C 130.96875 164.867188 128.539062 164.867188 128.539062 163.246094 C 128.539062 161.625 130.96875 161.625 130.96875 163.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.246094 266.246094 C 244.246094 267.867188 241.816406 267.867188 241.816406 266.246094 C 241.816406 264.625 244.246094 264.625 244.246094 266.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.558594 272.957031 C 287.558594 274.578125 285.128906 274.578125 285.128906 272.957031 C 285.128906 271.335938 287.558594 271.335938 287.558594 272.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.082031 80.136719 C 277.082031 81.757812 274.652344 81.757812 274.652344 80.136719 C 274.652344 78.519531 277.082031 78.519531 277.082031 80.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.847656 73.628906 C 208.847656 75.25 206.417969 75.25 206.417969 73.628906 C 206.417969 72.007812 208.847656 72.007812 208.847656 73.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.9375 178.445312 C 215.9375 180.066406 213.507812 180.066406 213.507812 178.445312 C 213.507812 176.828125 215.9375 176.828125 215.9375 178.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.21875 199.488281 C 240.21875 201.109375 237.789062 201.109375 237.789062 199.488281 C 237.789062 197.867188 240.21875 197.867188 240.21875 199.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.460938 70.910156 L 129.097656 73.746094 L 125.824219 73.746094 Z M 127.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.914062 297.714844 C 244.914062 299.335938 242.484375 299.335938 242.484375 297.714844 C 242.484375 296.09375 244.914062 296.09375 244.914062 297.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.480469 259.304688 C 264.480469 260.925781 262.050781 260.925781 262.050781 259.304688 C 262.050781 257.6875 264.480469 257.6875 264.480469 259.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.574219 350.304688 C 253.574219 351.925781 251.144531 351.925781 251.144531 350.304688 C 251.144531 348.683594 253.574219 348.683594 253.574219 350.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.574219 335.023438 C 149.574219 336.644531 147.144531 336.644531 147.144531 335.023438 C 147.144531 333.402344 149.574219 333.402344 149.574219 335.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.210938 285.859375 C 269.210938 287.480469 266.78125 287.480469 266.78125 285.859375 C 266.78125 284.242188 269.210938 284.242188 269.210938 285.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.851562 112.527344 C 277.851562 114.148438 275.421875 114.148438 275.421875 112.527344 C 275.421875 110.90625 277.851562 110.90625 277.851562 112.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.941406 229.457031 C 308.941406 231.078125 306.511719 231.078125 306.511719 229.457031 C 306.511719 227.839844 308.941406 227.839844 308.941406 229.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.007812 390.535156 C 250.007812 392.15625 247.578125 392.15625 247.578125 390.535156 C 247.578125 388.914062 250.007812 388.914062 250.007812 390.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.289062 181.761719 C 161.289062 183.382812 158.859375 183.382812 158.859375 181.761719 C 158.859375 180.144531 161.289062 180.144531 161.289062 181.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.929688 278.046875 C 208.929688 279.664062 206.5 279.664062 206.5 278.046875 C 206.5 276.425781 208.929688 276.425781 208.929688 278.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.71875 306.449219 C 262.71875 308.070312 260.289062 308.070312 260.289062 306.449219 C 260.289062 304.828125 262.71875 304.828125 262.71875 306.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.957031 418.691406 L 150.59375 415.855469 L 147.324219 415.855469 Z M 148.957031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.941406 418.691406 L 267.578125 415.855469 L 264.304688 415.855469 Z M 265.941406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.695312 329.75 C 246.695312 331.371094 244.265625 331.371094 244.265625 329.75 C 244.265625 328.132812 246.695312 328.132812 246.695312 329.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.820312 256.992188 C 301.820312 258.613281 299.390625 258.613281 299.390625 256.992188 C 299.390625 255.375 301.820312 255.375 301.820312 256.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.101562 105.683594 C 242.101562 107.304688 239.671875 107.304688 239.671875 105.683594 C 239.671875 104.066406 242.101562 104.066406 242.101562 105.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.867188 286.65625 C 254.867188 288.277344 252.4375 288.277344 252.4375 286.65625 C 252.4375 285.039062 254.867188 285.039062 254.867188 286.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.660156 300.175781 C 281.660156 301.796875 279.230469 301.796875 279.230469 300.175781 C 279.230469 298.558594 281.660156 298.558594 281.660156 300.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.441406 239.480469 C 266.441406 241.097656 264.011719 241.097656 264.011719 239.480469 C 264.011719 237.859375 266.441406 237.859375 266.441406 239.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.835938 311.929688 C 309.835938 313.550781 307.40625 313.550781 307.40625 311.929688 C 307.40625 310.3125 309.835938 310.3125 309.835938 311.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.324219 308.253906 C 323.324219 309.875 320.894531 309.875 320.894531 308.253906 C 320.894531 306.636719 323.324219 306.636719 323.324219 308.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.042969 263.28125 C 279.042969 264.902344 276.609375 264.902344 276.609375 263.28125 C 276.609375 261.664062 279.042969 261.664062 279.042969 263.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.078125 278.242188 C 266.078125 279.859375 263.648438 279.859375 263.648438 278.242188 C 263.648438 276.621094 266.078125 276.621094 266.078125 278.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.710938 300.664062 C 328.710938 302.28125 326.277344 302.28125 326.277344 300.664062 C 326.277344 299.042969 328.710938 299.042969 328.710938 300.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.976562 70.910156 L 173.613281 73.746094 L 170.34375 73.746094 Z M 171.976562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.730469 70.910156 L 117.367188 73.746094 L 114.09375 73.746094 Z M 115.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.4375 167.328125 C 255.4375 168.949219 253.007812 168.949219 253.007812 167.328125 C 253.007812 165.710938 255.4375 165.710938 255.4375 167.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.050781 249.769531 C 292.050781 251.390625 289.621094 251.390625 289.621094 249.769531 C 289.621094 248.148438 292.050781 248.148438 292.050781 249.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.15625 130.257812 C 268.15625 131.878906 265.726562 131.878906 265.726562 130.257812 C 265.726562 128.636719 268.15625 128.636719 268.15625 130.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.265625 284.785156 C 305.265625 286.40625 302.835938 286.40625 302.835938 284.785156 C 302.835938 283.167969 305.265625 283.167969 305.265625 284.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.707031 235.125 C 293.707031 236.742188 291.277344 236.742188 291.277344 235.125 C 291.277344 233.503906 293.707031 233.503906 293.707031 235.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.445312 106.652344 C 230.445312 108.269531 228.015625 108.269531 228.015625 106.652344 C 228.015625 105.03125 230.445312 105.03125 230.445312 106.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.308594 132.75 C 263.308594 134.371094 260.878906 134.371094 260.878906 132.75 C 260.878906 131.132812 263.308594 131.132812 263.308594 132.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.441406 157.40625 C 271.441406 159.023438 269.011719 159.023438 269.011719 157.40625 C 269.011719 155.785156 271.441406 155.785156 271.441406 157.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.789062 70.910156 L 215.425781 73.746094 L 212.152344 73.746094 Z M 213.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.1875 238.910156 C 202.1875 240.53125 199.757812 240.53125 199.757812 238.910156 C 199.757812 237.292969 202.1875 237.292969 202.1875 238.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.597656 252.820312 C 225.597656 254.4375 223.164062 254.4375 223.164062 252.820312 C 223.164062 251.199219 225.597656 251.199219 225.597656 252.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.566406 131.113281 C 220.566406 132.730469 218.136719 132.730469 218.136719 131.113281 C 218.136719 129.492188 220.566406 129.492188 220.566406 131.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.675781 418.691406 L 322.308594 415.855469 L 319.039062 415.855469 Z M 320.675781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.777344 220.140625 C 252.777344 221.757812 250.347656 221.757812 250.347656 220.140625 C 250.347656 218.519531 252.777344 218.519531 252.777344 220.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.296875 70.910156 L 313.933594 73.746094 L 310.660156 73.746094 Z M 312.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.402344 195.949219 C 237.402344 197.570312 234.972656 197.570312 234.972656 195.949219 C 234.972656 194.328125 237.402344 194.328125 237.402344 195.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.210938 126.082031 C 214.210938 127.703125 211.777344 127.703125 211.777344 126.082031 C 211.777344 124.460938 214.210938 124.460938 214.210938 126.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.242188 109.019531 C 287.242188 110.636719 284.8125 110.636719 284.8125 109.019531 C 284.8125 107.398438 287.242188 107.398438 287.242188 109.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.3125 128.972656 C 250.3125 130.59375 247.882812 130.59375 247.882812 128.972656 C 247.882812 127.355469 250.3125 127.355469 250.3125 128.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.972656 274.273438 C 236.972656 275.890625 234.542969 275.890625 234.542969 274.273438 C 234.542969 272.652344 236.972656 272.652344 236.972656 274.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.15625 94.851562 C 232.15625 96.472656 229.726562 96.472656 229.726562 94.851562 C 229.726562 93.230469 232.15625 93.230469 232.15625 94.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.410156 129.214844 C 233.410156 130.835938 230.980469 130.835938 230.980469 129.214844 C 230.980469 127.59375 233.410156 127.59375 233.410156 129.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.980469 141 C 115.980469 142.621094 113.550781 142.621094 113.550781 141 C 113.550781 139.378906 115.980469 139.378906 115.980469 141 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.339844 329.320312 C 289.339844 330.9375 286.910156 330.9375 286.910156 329.320312 C 286.910156 327.699219 289.339844 327.699219 289.339844 329.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.132812 281.585938 C 272.132812 283.207031 269.699219 283.207031 269.699219 281.585938 C 269.699219 279.964844 272.132812 279.964844 272.132812 281.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.488281 122.542969 C 119.488281 124.160156 117.058594 124.160156 117.058594 122.542969 C 117.058594 120.921875 119.488281 120.921875 119.488281 122.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.441406 175.238281 C 257.441406 176.859375 255.011719 176.859375 255.011719 175.238281 C 255.011719 173.621094 257.441406 173.621094 257.441406 175.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 361.949219 203.1875 C 361.949219 204.808594 359.519531 204.808594 359.519531 203.1875 C 359.519531 201.566406 361.949219 201.566406 361.949219 203.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.023438 329.230469 C 320.023438 330.851562 317.59375 330.851562 317.59375 329.230469 C 317.59375 327.609375 320.023438 327.609375 320.023438 329.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297 203.851562 C 297 205.472656 294.570312 205.472656 294.570312 203.851562 C 294.570312 202.230469 297 202.230469 297 203.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.378906 311.714844 C 259.378906 313.335938 256.949219 313.335938 256.949219 311.714844 C 256.949219 310.097656 259.378906 310.097656 259.378906 311.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.835938 220.105469 C 283.835938 221.722656 281.40625 221.722656 281.40625 220.105469 C 281.40625 218.484375 283.835938 218.484375 283.835938 220.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.953125 145.691406 C 258.953125 147.308594 256.523438 147.308594 256.523438 145.691406 C 256.523438 144.070312 258.953125 144.070312 258.953125 145.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.945312 70.910156 L 180.582031 73.746094 L 177.308594 73.746094 Z M 178.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.238281 116.546875 C 119.238281 118.167969 116.808594 118.167969 116.808594 116.546875 C 116.808594 114.925781 119.238281 114.925781 119.238281 116.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.609375 271.5625 C 211.609375 273.183594 209.179688 273.183594 209.179688 271.5625 C 209.179688 269.945312 211.609375 269.945312 211.609375 271.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.257812 242.382812 C 278.257812 244.003906 275.828125 244.003906 275.828125 242.382812 C 275.828125 240.761719 278.257812 240.761719 278.257812 242.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.636719 409.054688 C 304.636719 410.675781 302.207031 410.675781 302.207031 409.054688 C 302.207031 407.433594 304.636719 407.433594 304.636719 409.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.710938 206.726562 C 293.710938 208.347656 291.277344 208.347656 291.277344 206.726562 C 291.277344 205.105469 293.710938 205.105469 293.710938 206.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.753906 242.945312 C 266.753906 244.5625 264.324219 244.5625 264.324219 242.945312 C 264.324219 241.324219 266.753906 241.324219 266.753906 242.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.339844 219.34375 C 266.339844 220.964844 263.910156 220.964844 263.910156 219.34375 C 263.910156 217.722656 266.339844 217.722656 266.339844 219.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.636719 120.496094 C 316.636719 122.113281 314.207031 122.113281 314.207031 120.496094 C 314.207031 118.875 316.636719 118.875 316.636719 120.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.597656 236.933594 C 320.597656 238.554688 318.167969 238.554688 318.167969 236.933594 C 318.167969 235.316406 320.597656 235.316406 320.597656 236.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.894531 256.398438 C 238.894531 258.019531 236.464844 258.019531 236.464844 256.398438 C 236.464844 254.777344 238.894531 254.777344 238.894531 256.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.367188 70.910156 L 146.003906 73.746094 L 142.730469 73.746094 Z M 144.367188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.871094 70.910156 L 196.507812 73.746094 L 193.234375 73.746094 Z M 194.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.113281 225.457031 C 278.113281 227.078125 275.683594 227.078125 275.683594 225.457031 C 275.683594 223.839844 278.113281 223.839844 278.113281 225.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.890625 234.035156 C 334.890625 235.65625 332.460938 235.65625 332.460938 234.035156 C 332.460938 232.414062 334.890625 232.414062 334.890625 234.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174 286.070312 C 174 287.691406 171.566406 287.691406 171.566406 286.070312 C 171.566406 284.449219 174 284.449219 174 286.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.753906 264.910156 C 240.753906 266.53125 238.324219 266.53125 238.324219 264.910156 C 238.324219 263.289062 240.753906 263.289062 240.753906 264.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.871094 253.515625 C 162.871094 255.136719 160.441406 255.136719 160.441406 253.515625 C 160.441406 251.894531 162.871094 251.894531 162.871094 253.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.984375 249.757812 C 262.984375 251.378906 260.554688 251.378906 260.554688 249.757812 C 260.554688 248.136719 262.984375 248.136719 262.984375 249.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.132812 151.066406 C 244.132812 152.683594 241.703125 152.683594 241.703125 151.066406 C 241.703125 149.445312 244.132812 149.445312 244.132812 151.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.582031 168.296875 C 285.582031 169.914062 283.152344 169.914062 283.152344 168.296875 C 283.152344 166.675781 285.582031 166.675781 285.582031 168.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.265625 360.652344 C 339.265625 362.273438 336.835938 362.273438 336.835938 360.652344 C 336.835938 359.035156 339.265625 359.035156 339.265625 360.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.375 242.703125 C 316.375 244.324219 313.945312 244.324219 313.945312 242.703125 C 313.945312 241.085938 316.375 241.085938 316.375 242.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.351562 257.957031 C 250.351562 259.578125 247.921875 259.578125 247.921875 257.957031 C 247.921875 256.335938 250.351562 256.335938 250.351562 257.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.007812 288.046875 C 269.007812 289.667969 266.578125 289.667969 266.578125 288.046875 C 266.578125 286.429688 269.007812 286.429688 269.007812 288.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.257812 215.742188 C 302.257812 217.363281 299.828125 217.363281 299.828125 215.742188 C 299.828125 214.125 302.257812 214.125 302.257812 215.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.035156 239.78125 C 292.035156 241.402344 289.605469 241.402344 289.605469 239.78125 C 289.605469 238.164062 292.035156 238.164062 292.035156 239.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.652344 247.710938 C 263.652344 249.332031 261.222656 249.332031 261.222656 247.710938 C 261.222656 246.09375 263.652344 246.09375 263.652344 247.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.457031 195.917969 C 285.457031 197.539062 283.027344 197.539062 283.027344 195.917969 C 283.027344 194.300781 285.457031 194.300781 285.457031 195.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.300781 70.910156 L 220.9375 73.746094 L 217.664062 73.746094 Z M 219.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.664062 418.691406 L 274.296875 415.855469 L 271.027344 415.855469 Z M 272.664062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.226562 259.199219 C 312.226562 260.820312 309.796875 260.820312 309.796875 259.199219 C 309.796875 257.582031 312.226562 257.582031 312.226562 259.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.128906 275.667969 C 258.128906 277.289062 255.699219 277.289062 255.699219 275.667969 C 255.699219 274.050781 258.128906 274.050781 258.128906 275.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.933594 157.523438 C 223.933594 159.144531 221.503906 159.144531 221.503906 157.523438 C 221.503906 155.902344 223.933594 155.902344 223.933594 157.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.867188 135.582031 C 252.867188 137.203125 250.4375 137.203125 250.4375 135.582031 C 250.4375 133.964844 252.867188 133.964844 252.867188 135.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.324219 334.367188 C 218.324219 335.984375 215.894531 335.984375 215.894531 334.367188 C 215.894531 332.746094 218.324219 332.746094 218.324219 334.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.949219 263.5625 C 220.949219 265.179688 218.519531 265.179688 218.519531 263.5625 C 218.519531 261.941406 220.949219 261.941406 220.949219 263.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.152344 290.261719 C 278.152344 291.882812 275.722656 291.882812 275.722656 290.261719 C 275.722656 288.644531 278.152344 288.644531 278.152344 290.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.816406 138.691406 C 238.816406 140.3125 236.386719 140.3125 236.386719 138.691406 C 236.386719 137.070312 238.816406 137.070312 238.816406 138.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.738281 174.300781 C 279.738281 175.917969 277.308594 175.917969 277.308594 174.300781 C 277.308594 172.679688 279.738281 172.679688 279.738281 174.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.878906 393.710938 C 299.878906 395.332031 297.449219 395.332031 297.449219 393.710938 C 297.449219 392.09375 299.878906 392.09375 299.878906 393.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.734375 175.21875 C 351.734375 176.839844 349.304688 176.839844 349.304688 175.21875 C 349.304688 173.597656 351.734375 173.597656 351.734375 175.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.375 241.101562 C 252.375 242.722656 249.945312 242.722656 249.945312 241.101562 C 249.945312 239.480469 252.375 239.480469 252.375 241.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.546875 230.613281 C 270.546875 232.230469 268.113281 232.230469 268.113281 230.613281 C 268.113281 228.992188 270.546875 228.992188 270.546875 230.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.363281 145.738281 C 240.363281 147.359375 237.929688 147.359375 237.929688 145.738281 C 237.929688 144.117188 240.363281 144.117188 240.363281 145.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.972656 271.957031 C 201.972656 273.578125 199.542969 273.578125 199.542969 271.957031 C 199.542969 270.335938 201.972656 270.335938 201.972656 271.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.902344 192.269531 C 299.902344 193.890625 297.472656 193.890625 297.472656 192.269531 C 297.472656 190.648438 299.902344 190.648438 299.902344 192.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.796875 220.363281 C 265.796875 221.984375 263.363281 221.984375 263.363281 220.363281 C 263.363281 218.742188 265.796875 218.742188 265.796875 220.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.328125 70.910156 L 165.964844 73.746094 L 162.691406 73.746094 Z M 164.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.554688 89.488281 C 249.554688 91.109375 247.125 91.109375 247.125 89.488281 C 247.125 87.867188 249.554688 87.867188 249.554688 89.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.769531 202.785156 C 154.769531 204.40625 152.339844 204.40625 152.339844 202.785156 C 152.339844 201.164062 154.769531 201.164062 154.769531 202.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.386719 303.480469 C 252.386719 305.101562 249.957031 305.101562 249.957031 303.480469 C 249.957031 301.859375 252.386719 301.859375 252.386719 303.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.429688 70.910156 L 176.066406 73.746094 L 172.792969 73.746094 Z M 174.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.152344 199.277344 C 213.152344 200.898438 210.722656 200.898438 210.722656 199.277344 C 210.722656 197.65625 213.152344 197.65625 213.152344 199.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.15625 275.113281 C 277.15625 276.730469 274.726562 276.730469 274.726562 275.113281 C 274.726562 273.492188 277.15625 273.492188 277.15625 275.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.960938 162.835938 C 305.960938 164.457031 303.53125 164.457031 303.53125 162.835938 C 303.53125 161.214844 305.960938 161.214844 305.960938 162.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.15625 70.910156 L 229.792969 73.746094 L 226.519531 73.746094 Z M 228.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.234375 188.398438 C 252.234375 190.019531 249.804688 190.019531 249.804688 188.398438 C 249.804688 186.78125 252.234375 186.78125 252.234375 188.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.613281 266.273438 C 286.613281 267.894531 284.183594 267.894531 284.183594 266.273438 C 284.183594 264.65625 286.613281 264.65625 286.613281 266.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.96875 92.445312 C 245.96875 94.066406 243.535156 94.066406 243.535156 92.445312 C 243.535156 90.828125 245.96875 90.828125 245.96875 92.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.320312 268.101562 C 304.320312 269.722656 301.890625 269.722656 301.890625 268.101562 C 301.890625 266.480469 304.320312 266.480469 304.320312 268.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.839844 303.039062 C 203.839844 304.660156 201.40625 304.660156 201.40625 303.039062 C 201.40625 301.417969 203.839844 301.417969 203.839844 303.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.023438 155.09375 C 256.023438 156.710938 253.59375 156.710938 253.59375 155.09375 C 253.59375 153.472656 256.023438 153.472656 256.023438 155.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.089844 238.039062 C 276.089844 239.660156 273.660156 239.660156 273.660156 238.039062 C 273.660156 236.421875 276.089844 236.421875 276.089844 238.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.457031 117.195312 C 119.457031 118.816406 117.027344 118.816406 117.027344 117.195312 C 117.027344 115.578125 119.457031 115.578125 119.457031 117.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.359375 149.566406 C 214.359375 151.1875 211.929688 151.1875 211.929688 149.566406 C 211.929688 147.949219 214.359375 147.949219 214.359375 149.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.074219 70.910156 L 203.710938 73.746094 L 200.4375 73.746094 Z M 202.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.582031 70.910156 L 185.21875 73.746094 L 181.945312 73.746094 Z M 183.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.535156 70.910156 L 297.171875 73.746094 L 293.898438 73.746094 Z M 295.535156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.148438 70.910156 L 131.785156 73.746094 L 128.511719 73.746094 Z M 130.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.242188 186.246094 C 283.242188 187.867188 280.8125 187.867188 280.8125 186.246094 C 280.8125 184.628906 283.242188 184.628906 283.242188 186.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.851562 152.882812 C 327.851562 154.503906 325.421875 154.503906 325.421875 152.882812 C 325.421875 151.265625 327.851562 151.265625 327.851562 152.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.96875 173.703125 C 238.96875 175.324219 236.535156 175.324219 236.535156 173.703125 C 236.535156 172.082031 238.96875 172.082031 238.96875 173.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.3125 70.910156 L 268.949219 73.746094 L 265.675781 73.746094 Z M 267.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.140625 244.894531 C 199.140625 246.515625 196.710938 246.515625 196.710938 244.894531 C 196.710938 243.277344 199.140625 243.277344 199.140625 244.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.339844 290.472656 C 279.339844 292.09375 276.910156 292.09375 276.910156 290.472656 C 276.910156 288.851562 279.339844 288.851562 279.339844 290.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.402344 243.0625 C 325.402344 244.683594 322.972656 244.683594 322.972656 243.0625 C 322.972656 241.445312 325.402344 241.445312 325.402344 243.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.054688 208.210938 C 237.054688 209.832031 234.625 209.832031 234.625 208.210938 C 234.625 206.589844 237.054688 206.589844 237.054688 208.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.171875 335.441406 C 286.171875 337.0625 283.738281 337.0625 283.738281 335.441406 C 283.738281 333.824219 286.171875 333.824219 286.171875 335.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.816406 233.152344 C 239.816406 234.773438 237.386719 234.773438 237.386719 233.152344 C 237.386719 231.53125 239.816406 231.53125 239.816406 233.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.976562 254.785156 C 290.976562 256.40625 288.546875 256.40625 288.546875 254.785156 C 288.546875 253.167969 290.976562 253.167969 290.976562 254.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.300781 286.449219 C 261.300781 288.070312 258.867188 288.070312 258.867188 286.449219 C 258.867188 284.832031 261.300781 284.832031 261.300781 286.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.863281 124.425781 C 227.863281 126.046875 225.433594 126.046875 225.433594 124.425781 C 225.433594 122.808594 227.863281 122.808594 227.863281 124.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.71875 174.289062 C 244.71875 175.910156 242.289062 175.910156 242.289062 174.289062 C 242.289062 172.667969 244.71875 172.667969 244.71875 174.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.777344 260.46875 C 191.777344 262.089844 189.347656 262.089844 189.347656 260.46875 C 189.347656 258.847656 191.777344 258.847656 191.777344 260.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.171875 308.53125 C 284.171875 310.152344 281.742188 310.152344 281.742188 308.53125 C 281.742188 306.910156 284.171875 306.910156 284.171875 308.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.402344 131.792969 C 205.402344 133.414062 202.96875 133.414062 202.96875 131.792969 C 202.96875 130.175781 205.402344 130.175781 205.402344 131.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.609375 134.488281 C 158.609375 136.109375 156.179688 136.109375 156.179688 134.488281 C 156.179688 132.867188 158.609375 132.867188 158.609375 134.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.355469 70.910156 L 269.992188 73.746094 L 266.71875 73.746094 Z M 268.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.894531 276.179688 C 295.894531 277.800781 293.464844 277.800781 293.464844 276.179688 C 293.464844 274.5625 295.894531 274.5625 295.894531 276.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.921875 253.773438 C 224.921875 255.390625 222.492188 255.390625 222.492188 253.773438 C 222.492188 252.152344 224.921875 252.152344 224.921875 253.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.589844 266.636719 C 256.589844 268.253906 254.160156 268.253906 254.160156 266.636719 C 254.160156 265.015625 256.589844 265.015625 256.589844 266.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.890625 277.996094 C 229.890625 279.617188 227.460938 279.617188 227.460938 277.996094 C 227.460938 276.378906 229.890625 276.378906 229.890625 277.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.765625 176.746094 C 252.765625 178.367188 250.332031 178.367188 250.332031 176.746094 C 250.332031 175.125 252.765625 175.125 252.765625 176.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.0625 259.941406 C 197.0625 261.5625 194.628906 261.5625 194.628906 259.941406 C 194.628906 258.324219 197.0625 258.324219 197.0625 259.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.898438 256.105469 C 296.898438 257.726562 294.46875 257.726562 294.46875 256.105469 C 294.46875 254.484375 296.898438 254.484375 296.898438 256.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.003906 306.199219 C 239.003906 307.820312 236.570312 307.820312 236.570312 306.199219 C 236.570312 304.582031 239.003906 304.582031 239.003906 306.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.054688 321.722656 C 319.054688 323.339844 316.625 323.339844 316.625 321.722656 C 316.625 320.101562 319.054688 320.101562 319.054688 321.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.007812 251.738281 C 288.007812 253.355469 285.578125 253.355469 285.578125 251.738281 C 285.578125 250.117188 288.007812 250.117188 288.007812 251.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.71875 147.558594 C 252.71875 149.179688 250.289062 149.179688 250.289062 147.558594 C 250.289062 145.9375 252.71875 145.9375 252.71875 147.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.585938 70.910156 L 171.21875 73.746094 L 167.949219 73.746094 Z M 169.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.1875 78.222656 C 215.1875 79.84375 212.757812 79.84375 212.757812 78.222656 C 212.757812 76.601562 215.1875 76.601562 215.1875 78.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.492188 307.292969 C 252.492188 308.914062 250.058594 308.914062 250.058594 307.292969 C 250.058594 305.671875 252.492188 305.671875 252.492188 307.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.75 335.113281 C 207.75 336.734375 205.320312 336.734375 205.320312 335.113281 C 205.320312 333.496094 207.75 333.496094 207.75 335.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.417969 418.691406 L 327.054688 415.855469 L 323.78125 415.855469 Z M 325.417969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.722656 142.726562 C 224.722656 144.34375 222.292969 144.34375 222.292969 142.726562 C 222.292969 141.105469 224.722656 141.105469 224.722656 142.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.882812 345.753906 C 138.882812 347.375 136.453125 347.375 136.453125 345.753906 C 136.453125 344.136719 138.882812 344.136719 138.882812 345.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.703125 335.199219 C 154.703125 336.816406 152.273438 336.816406 152.273438 335.199219 C 152.273438 333.578125 154.703125 333.578125 154.703125 335.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.097656 251.710938 C 276.097656 253.328125 273.667969 253.328125 273.667969 251.710938 C 273.667969 250.089844 276.097656 250.089844 276.097656 251.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.4375 297.5625 C 298.4375 299.183594 296.007812 299.183594 296.007812 297.5625 C 296.007812 295.941406 298.4375 295.941406 298.4375 297.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.085938 337.058594 C 148.085938 338.679688 145.65625 338.679688 145.65625 337.058594 C 145.65625 335.4375 148.085938 335.4375 148.085938 337.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.148438 188.058594 C 156.148438 189.675781 153.71875 189.675781 153.71875 188.058594 C 153.71875 186.4375 156.148438 186.4375 156.148438 188.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.320312 259.691406 C 263.320312 261.3125 260.890625 261.3125 260.890625 259.691406 C 260.890625 258.070312 263.320312 258.070312 263.320312 259.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.230469 70.910156 L 274.867188 73.746094 L 271.59375 73.746094 Z M 273.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.21875 312.929688 C 123.21875 314.546875 120.789062 314.546875 120.789062 312.929688 C 120.789062 311.308594 123.21875 311.308594 123.21875 312.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.257812 266.570312 C 266.257812 268.191406 263.828125 268.191406 263.828125 266.570312 C 263.828125 264.949219 266.257812 264.949219 266.257812 266.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.933594 215.953125 C 286.933594 217.574219 284.503906 217.574219 284.503906 215.953125 C 284.503906 214.332031 286.933594 214.332031 286.933594 215.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.175781 70.910156 L 172.8125 73.746094 L 169.539062 73.746094 Z M 171.175781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.699219 90.054688 C 231.699219 91.675781 229.269531 91.675781 229.269531 90.054688 C 229.269531 88.433594 231.699219 88.433594 231.699219 90.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.871094 70.910156 L 219.507812 73.746094 L 216.234375 73.746094 Z M 217.871094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.558594 70.910156 L 233.191406 73.746094 L 229.921875 73.746094 Z M 231.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.777344 222.867188 C 228.777344 224.488281 226.347656 224.488281 226.347656 222.867188 C 226.347656 221.246094 228.777344 221.246094 228.777344 222.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.3125 70.910156 L 197.945312 73.746094 L 194.675781 73.746094 Z M 196.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.710938 70.910156 L 197.347656 73.746094 L 194.074219 73.746094 Z M 195.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.953125 70.910156 L 273.589844 73.746094 L 270.316406 73.746094 Z M 271.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.832031 184.078125 C 269.832031 185.695312 267.398438 185.695312 267.398438 184.078125 C 267.398438 182.457031 269.832031 182.457031 269.832031 184.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.058594 70.910156 L 148.695312 73.746094 L 145.421875 73.746094 Z M 147.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.636719 118.277344 C 197.636719 119.898438 195.207031 119.898438 195.207031 118.277344 C 195.207031 116.660156 197.636719 116.660156 197.636719 118.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.921875 188.152344 C 251.921875 189.773438 249.492188 189.773438 249.492188 188.152344 C 249.492188 186.53125 251.921875 186.53125 251.921875 188.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.925781 183.941406 C 238.925781 185.5625 236.496094 185.5625 236.496094 183.941406 C 236.496094 182.324219 238.925781 182.324219 238.925781 183.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.640625 304.796875 C 332.640625 306.417969 330.210938 306.417969 330.210938 304.796875 C 330.210938 303.175781 332.640625 303.175781 332.640625 304.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.820312 227.617188 C 295.820312 229.238281 293.390625 229.238281 293.390625 227.617188 C 293.390625 225.996094 295.820312 225.996094 295.820312 227.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.394531 384.0625 C 161.394531 385.683594 158.964844 385.683594 158.964844 384.0625 C 158.964844 382.441406 161.394531 382.441406 161.394531 384.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.949219 237.429688 C 309.949219 239.050781 307.519531 239.050781 307.519531 237.429688 C 307.519531 235.8125 309.949219 235.8125 309.949219 237.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.183594 288.914062 C 316.183594 290.535156 313.753906 290.535156 313.753906 288.914062 C 313.753906 287.296875 316.183594 287.296875 316.183594 288.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.523438 237.667969 C 238.523438 239.285156 236.09375 239.285156 236.09375 237.667969 C 236.09375 236.046875 238.523438 236.046875 238.523438 237.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.878906 250.453125 C 195.878906 252.074219 193.449219 252.074219 193.449219 250.453125 C 193.449219 248.835938 195.878906 248.835938 195.878906 250.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.890625 340.023438 C 173.890625 341.644531 171.460938 341.644531 171.460938 340.023438 C 171.460938 338.40625 173.890625 338.40625 173.890625 340.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.769531 322.535156 C 250.769531 324.15625 248.339844 324.15625 248.339844 322.535156 C 248.339844 320.917969 250.769531 320.917969 250.769531 322.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.398438 70.910156 L 207.035156 73.746094 L 203.761719 73.746094 Z M 205.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.136719 229.695312 C 340.136719 231.3125 337.707031 231.3125 337.707031 229.695312 C 337.707031 228.074219 340.136719 228.074219 340.136719 229.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.414062 306.414062 C 213.414062 308.03125 210.984375 308.03125 210.984375 306.414062 C 210.984375 304.792969 213.414062 304.792969 213.414062 306.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.703125 70.910156 L 263.339844 73.746094 L 260.066406 73.746094 Z M 261.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.398438 240.027344 C 257.398438 241.648438 254.96875 241.648438 254.96875 240.027344 C 254.96875 238.40625 257.398438 238.40625 257.398438 240.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.324219 303.222656 C 244.324219 304.839844 241.894531 304.839844 241.894531 303.222656 C 241.894531 301.601562 244.324219 301.601562 244.324219 303.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.492188 70.910156 L 285.128906 73.746094 L 281.855469 73.746094 Z M 283.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.695312 229.234375 C 226.695312 230.855469 224.261719 230.855469 224.261719 229.234375 C 224.261719 227.613281 226.695312 227.613281 226.695312 229.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.917969 151.5 C 241.917969 153.121094 239.484375 153.121094 239.484375 151.5 C 239.484375 149.882812 241.917969 149.882812 241.917969 151.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.640625 294.566406 C 231.640625 296.1875 229.210938 296.1875 229.210938 294.566406 C 229.210938 292.945312 231.640625 292.945312 231.640625 294.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.234375 352.851562 C 203.234375 354.46875 200.804688 354.46875 200.804688 352.851562 C 200.804688 351.230469 203.234375 351.230469 203.234375 352.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.316406 299.179688 C 223.316406 300.800781 220.886719 300.800781 220.886719 299.179688 C 220.886719 297.5625 223.316406 297.5625 223.316406 299.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.238281 81.746094 C 336.238281 83.367188 333.808594 83.367188 333.808594 81.746094 C 333.808594 80.125 336.238281 80.125 336.238281 81.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.171875 70.910156 L 196.808594 73.746094 L 193.535156 73.746094 Z M 195.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.144531 83.851562 C 171.144531 85.472656 168.710938 85.472656 168.710938 83.851562 C 168.710938 82.234375 171.144531 82.234375 171.144531 83.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.917969 169.832031 C 161.917969 171.449219 159.488281 171.449219 159.488281 169.832031 C 159.488281 168.210938 161.917969 168.210938 161.917969 169.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.851562 178.109375 C 175.851562 179.730469 173.421875 179.730469 173.421875 178.109375 C 173.421875 176.488281 175.851562 176.488281 175.851562 178.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.820312 171.285156 C 289.820312 172.90625 287.390625 172.90625 287.390625 171.285156 C 287.390625 169.664062 289.820312 169.664062 289.820312 171.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.546875 239.347656 C 301.546875 240.96875 299.117188 240.96875 299.117188 239.347656 C 299.117188 237.726562 301.546875 237.726562 301.546875 239.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.882812 360.421875 C 288.882812 362.039062 286.453125 362.039062 286.453125 360.421875 C 286.453125 358.800781 288.882812 358.800781 288.882812 360.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.25 314.769531 C 235.25 316.390625 232.820312 316.390625 232.820312 314.769531 C 232.820312 313.148438 235.25 313.148438 235.25 314.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.222656 247.550781 C 282.222656 249.171875 279.792969 249.171875 279.792969 247.550781 C 279.792969 245.933594 282.222656 245.933594 282.222656 247.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.574219 233.804688 C 241.574219 235.425781 239.140625 235.425781 239.140625 233.804688 C 239.140625 232.183594 241.574219 232.183594 241.574219 233.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.992188 222.3125 C 293.992188 223.933594 291.5625 223.933594 291.5625 222.3125 C 291.5625 220.691406 293.992188 220.691406 293.992188 222.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.992188 377.546875 C 233.992188 379.164062 231.5625 379.164062 231.5625 377.546875 C 231.5625 375.925781 233.992188 375.925781 233.992188 377.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.75 390.28125 C 253.75 391.902344 251.320312 391.902344 251.320312 390.28125 C 251.320312 388.660156 253.75 388.660156 253.75 390.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.222656 418.691406 L 159.855469 415.855469 L 156.585938 415.855469 Z M 158.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.234375 218.761719 C 300.234375 220.382812 297.804688 220.382812 297.804688 218.761719 C 297.804688 217.144531 300.234375 217.144531 300.234375 218.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.25 418.691406 L 361.886719 415.855469 L 358.613281 415.855469 Z M 360.25 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.617188 418.691406 L 204.253906 415.855469 L 200.980469 415.855469 Z M 202.617188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.34375 274.25 C 240.34375 275.871094 237.914062 275.871094 237.914062 274.25 C 237.914062 272.632812 240.34375 272.632812 240.34375 274.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 412.3125 207.984375 C 412.3125 209.601562 409.882812 209.601562 409.882812 207.984375 C 409.882812 206.363281 412.3125 206.363281 412.3125 207.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.1875 224.042969 C 168.1875 225.660156 165.757812 225.660156 165.757812 224.042969 C 165.757812 222.421875 168.1875 222.421875 168.1875 224.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.753906 207.8125 C 296.753906 209.429688 294.324219 209.429688 294.324219 207.8125 C 294.324219 206.191406 296.753906 206.191406 296.753906 207.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.929688 204.285156 C 303.929688 205.90625 301.5 205.90625 301.5 204.285156 C 301.5 202.667969 303.929688 202.667969 303.929688 204.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.605469 243.945312 C 157.605469 245.5625 155.175781 245.5625 155.175781 243.945312 C 155.175781 242.324219 157.605469 242.324219 157.605469 243.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.679688 263.9375 C 256.679688 265.558594 254.25 265.558594 254.25 263.9375 C 254.25 262.316406 256.679688 262.316406 256.679688 263.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.484375 158.195312 C 251.484375 159.816406 249.054688 159.816406 249.054688 158.195312 C 249.054688 156.574219 251.484375 156.574219 251.484375 158.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.625 273.132812 C 263.625 274.753906 261.191406 274.753906 261.191406 273.132812 C 261.191406 271.515625 263.625 271.515625 263.625 273.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.03125 247.207031 C 243.03125 248.824219 240.601562 248.824219 240.601562 247.207031 C 240.601562 245.585938 243.03125 245.585938 243.03125 247.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.496094 277.128906 C 288.496094 278.75 286.066406 278.75 286.066406 277.128906 C 286.066406 275.507812 288.496094 275.507812 288.496094 277.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.398438 254.5 C 271.398438 256.117188 268.96875 256.117188 268.96875 254.5 C 268.96875 252.878906 271.398438 252.878906 271.398438 254.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.6875 364.132812 C 275.6875 365.753906 273.257812 365.753906 273.257812 364.132812 C 273.257812 362.511719 275.6875 362.511719 275.6875 364.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.53125 70.910156 L 252.164062 73.746094 L 248.894531 73.746094 Z M 250.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.214844 70.910156 L 221.851562 73.746094 L 218.578125 73.746094 Z M 220.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.378906 369.3125 C 209.378906 370.929688 206.949219 370.929688 206.949219 369.3125 C 206.949219 367.691406 209.378906 367.691406 209.378906 369.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.753906 257.09375 C 301.753906 258.714844 299.324219 258.714844 299.324219 257.09375 C 299.324219 255.476562 301.753906 255.476562 301.753906 257.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.125 251.386719 C 282.125 253.007812 279.695312 253.007812 279.695312 251.386719 C 279.695312 249.765625 282.125 249.765625 282.125 251.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.800781 407.570312 C 123.800781 409.191406 121.371094 409.191406 121.371094 407.570312 C 121.371094 405.949219 123.800781 405.949219 123.800781 407.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.671875 198.441406 C 251.671875 200.058594 249.238281 200.058594 249.238281 198.441406 C 249.238281 196.820312 251.671875 196.820312 251.671875 198.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.199219 194.085938 C 224.199219 195.707031 221.769531 195.707031 221.769531 194.085938 C 221.769531 192.464844 224.199219 192.464844 224.199219 194.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.539062 204.164062 C 227.539062 205.785156 225.109375 205.785156 225.109375 204.164062 C 225.109375 202.542969 227.539062 202.542969 227.539062 204.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.269531 295.597656 C 296.269531 297.21875 293.839844 297.21875 293.839844 295.597656 C 293.839844 293.980469 296.269531 293.980469 296.269531 295.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.832031 418.691406 L 224.46875 415.855469 L 221.195312 415.855469 Z M 222.832031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.234375 230.78125 C 264.234375 232.398438 261.804688 232.398438 261.804688 230.78125 C 261.804688 229.160156 264.234375 229.160156 264.234375 230.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.007812 233.824219 C 317.007812 235.445312 314.578125 235.445312 314.578125 233.824219 C 314.578125 232.203125 317.007812 232.203125 317.007812 233.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.777344 256.210938 C 254.777344 257.832031 252.347656 257.832031 252.347656 256.210938 C 252.347656 254.589844 254.777344 254.589844 254.777344 256.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.304688 255.480469 C 263.304688 257.097656 260.875 257.097656 260.875 255.480469 C 260.875 253.859375 263.304688 253.859375 263.304688 255.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.898438 175.378906 C 189.898438 176.996094 187.46875 176.996094 187.46875 175.378906 C 187.46875 173.757812 189.898438 173.757812 189.898438 175.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.746094 241.589844 C 157.746094 243.210938 155.316406 243.210938 155.316406 241.589844 C 155.316406 239.96875 157.746094 239.96875 157.746094 241.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.410156 145.613281 C 269.410156 147.234375 266.980469 147.234375 266.980469 145.613281 C 266.980469 143.992188 269.410156 143.992188 269.410156 145.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.199219 170.566406 C 284.199219 172.1875 281.769531 172.1875 281.769531 170.566406 C 281.769531 168.945312 284.199219 168.945312 284.199219 170.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.640625 70.910156 L 216.277344 73.746094 L 213.003906 73.746094 Z M 214.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.472656 362.933594 C 324.472656 364.550781 322.039062 364.550781 322.039062 362.933594 C 322.039062 361.3125 324.472656 361.3125 324.472656 362.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.148438 248.875 C 270.148438 250.496094 267.71875 250.496094 267.71875 248.875 C 267.71875 247.257812 270.148438 247.257812 270.148438 248.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.28125 208.796875 C 223.28125 210.417969 220.851562 210.417969 220.851562 208.796875 C 220.851562 207.179688 223.28125 207.179688 223.28125 208.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.195312 418.691406 L 146.832031 415.855469 L 143.558594 415.855469 Z M 145.195312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.066406 318.210938 C 333.066406 319.832031 330.636719 319.832031 330.636719 318.210938 C 330.636719 316.589844 333.066406 316.589844 333.066406 318.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.558594 221.847656 C 267.558594 223.46875 265.128906 223.46875 265.128906 221.847656 C 265.128906 220.226562 267.558594 220.226562 267.558594 221.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.023438 193.324219 C 237.023438 194.945312 234.59375 194.945312 234.59375 193.324219 C 234.59375 191.707031 237.023438 191.707031 237.023438 193.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.066406 201.203125 C 230.066406 202.824219 227.636719 202.824219 227.636719 201.203125 C 227.636719 199.582031 230.066406 199.582031 230.066406 201.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.789062 301.453125 C 282.789062 303.074219 280.359375 303.074219 280.359375 301.453125 C 280.359375 299.832031 282.789062 299.832031 282.789062 301.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.964844 309.984375 C 260.964844 311.605469 258.535156 311.605469 258.535156 309.984375 C 258.535156 308.363281 260.964844 308.363281 260.964844 309.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.523438 301.871094 C 266.523438 303.492188 264.09375 303.492188 264.09375 301.871094 C 264.09375 300.25 266.523438 300.25 266.523438 301.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.882812 210.074219 C 258.882812 211.695312 256.453125 211.695312 256.453125 210.074219 C 256.453125 208.457031 258.882812 208.457031 258.882812 210.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.609375 196.46875 C 242.609375 198.089844 240.179688 198.089844 240.179688 196.46875 C 240.179688 194.847656 242.609375 194.847656 242.609375 196.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 181.304688 76.226562 C 181.304688 77.847656 178.871094 77.847656 178.871094 76.226562 C 178.871094 74.605469 181.304688 74.605469 181.304688 76.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.671875 179.84375 C 259.671875 181.464844 257.238281 181.464844 257.238281 179.84375 C 257.238281 178.226562 259.671875 178.226562 259.671875 179.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.6875 193.898438 C 308.6875 195.519531 306.257812 195.519531 306.257812 193.898438 C 306.257812 192.277344 308.6875 192.277344 308.6875 193.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.09375 152.390625 C 233.09375 154.007812 230.664062 154.007812 230.664062 152.390625 C 230.664062 150.769531 233.09375 150.769531 233.09375 152.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.808594 195.121094 C 310.808594 196.742188 308.378906 196.742188 308.378906 195.121094 C 308.378906 193.5 310.808594 193.5 310.808594 195.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.976562 201.308594 C 287.976562 202.929688 285.546875 202.929688 285.546875 201.308594 C 285.546875 199.691406 287.976562 199.691406 287.976562 201.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.527344 150.898438 C 169.527344 152.519531 167.097656 152.519531 167.097656 150.898438 C 167.097656 149.28125 169.527344 149.28125 169.527344 150.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.300781 374.160156 C 263.300781 375.78125 260.871094 375.78125 260.871094 374.160156 C 260.871094 372.542969 263.300781 372.542969 263.300781 374.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.699219 133.546875 C 211.699219 135.167969 209.269531 135.167969 209.269531 133.546875 C 209.269531 131.929688 211.699219 131.929688 211.699219 133.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.824219 70.910156 L 189.460938 73.746094 L 186.1875 73.746094 Z M 187.824219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.722656 70.910156 L 207.359375 73.746094 L 204.085938 73.746094 Z M 205.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.625 317.496094 C 309.625 319.117188 307.195312 319.117188 307.195312 317.496094 C 307.195312 315.875 309.625 315.875 309.625 317.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.835938 418.691406 L 271.472656 415.855469 L 268.199219 415.855469 Z M 269.835938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.753906 241.445312 C 196.753906 243.066406 194.324219 243.066406 194.324219 241.445312 C 194.324219 239.824219 196.753906 239.824219 196.753906 241.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.628906 210.582031 C 280.628906 212.203125 278.199219 212.203125 278.199219 210.582031 C 278.199219 208.960938 280.628906 208.960938 280.628906 210.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.808594 231.339844 C 285.808594 232.957031 283.378906 232.957031 283.378906 231.339844 C 283.378906 229.71875 285.808594 229.71875 285.808594 231.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.402344 179.75 C 221.402344 181.371094 218.972656 181.371094 218.972656 179.75 C 218.972656 178.128906 221.402344 178.128906 221.402344 179.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.308594 341.863281 C 207.308594 343.484375 204.878906 343.484375 204.878906 341.863281 C 204.878906 340.242188 207.308594 340.242188 207.308594 341.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.148438 264.769531 C 206.148438 266.390625 203.71875 266.390625 203.71875 264.769531 C 203.71875 263.148438 206.148438 263.148438 206.148438 264.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.480469 266.796875 C 242.480469 268.417969 240.046875 268.417969 240.046875 266.796875 C 240.046875 265.175781 242.480469 265.175781 242.480469 266.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.472656 280.210938 C 279.472656 281.828125 277.042969 281.828125 277.042969 280.210938 C 277.042969 278.589844 279.472656 278.589844 279.472656 280.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.195312 344.882812 C 280.195312 346.503906 277.761719 346.503906 277.761719 344.882812 C 277.761719 343.265625 280.195312 343.265625 280.195312 344.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.882812 215.675781 C 277.882812 217.296875 275.453125 217.296875 275.453125 215.675781 C 275.453125 214.054688 277.882812 214.054688 277.882812 215.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.714844 312.121094 C 324.714844 313.742188 322.285156 313.742188 322.285156 312.121094 C 322.285156 310.5 324.714844 310.5 324.714844 312.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.277344 283.722656 C 265.277344 285.34375 262.847656 285.34375 262.847656 283.722656 C 262.847656 282.105469 265.277344 282.105469 265.277344 283.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.25 405.269531 C 271.25 406.890625 268.820312 406.890625 268.820312 405.269531 C 268.820312 403.652344 271.25 403.652344 271.25 405.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.75 70.910156 L 198.386719 73.746094 L 195.117188 73.746094 Z M 196.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.808594 106.976562 C 262.808594 108.597656 260.378906 108.597656 260.378906 106.976562 C 260.378906 105.359375 262.808594 105.359375 262.808594 106.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.035156 233.179688 C 213.035156 234.800781 210.605469 234.800781 210.605469 233.179688 C 210.605469 231.558594 213.035156 231.558594 213.035156 233.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.824219 350.425781 C 280.824219 352.046875 278.390625 352.046875 278.390625 350.425781 C 278.390625 348.804688 280.824219 348.804688 280.824219 350.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.285156 418.691406 L 233.921875 415.855469 L 230.648438 415.855469 Z M 232.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.371094 213.121094 C 319.371094 214.738281 316.941406 214.738281 316.941406 213.121094 C 316.941406 211.5 319.371094 211.5 319.371094 213.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.335938 295.46875 C 257.335938 297.089844 254.90625 297.089844 254.90625 295.46875 C 254.90625 293.851562 257.335938 293.851562 257.335938 295.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.277344 92.890625 C 184.277344 94.507812 181.847656 94.507812 181.847656 92.890625 C 181.847656 91.269531 184.277344 91.269531 184.277344 92.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.84375 389.140625 C 325.84375 390.761719 323.414062 390.761719 323.414062 389.140625 C 323.414062 387.519531 325.84375 387.519531 325.84375 389.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.5625 263.449219 C 282.5625 265.070312 280.132812 265.070312 280.132812 263.449219 C 280.132812 261.832031 282.5625 261.832031 282.5625 263.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.296875 205.769531 C 259.296875 207.390625 256.867188 207.390625 256.867188 205.769531 C 256.867188 204.152344 259.296875 204.152344 259.296875 205.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.085938 239.984375 C 274.085938 241.605469 271.65625 241.605469 271.65625 239.984375 C 271.65625 238.363281 274.085938 238.363281 274.085938 239.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.964844 240.539062 C 264.964844 242.160156 262.535156 242.160156 262.535156 240.539062 C 262.535156 238.917969 264.964844 238.917969 264.964844 240.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.316406 187.40625 C 307.316406 189.023438 304.886719 189.023438 304.886719 187.40625 C 304.886719 185.785156 307.316406 185.785156 307.316406 187.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.84375 255.910156 C 283.84375 257.53125 281.414062 257.53125 281.414062 255.910156 C 281.414062 254.289062 283.84375 254.289062 283.84375 255.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.183594 261.878906 C 262.183594 263.496094 259.753906 263.496094 259.753906 261.878906 C 259.753906 260.257812 262.183594 260.257812 262.183594 261.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.207031 296.691406 C 299.207031 298.308594 296.777344 298.308594 296.777344 296.691406 C 296.777344 295.070312 299.207031 295.070312 299.207031 296.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.710938 226.839844 C 290.710938 228.460938 288.28125 228.460938 288.28125 226.839844 C 288.28125 225.222656 290.710938 225.222656 290.710938 226.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 360.46875 300.78125 C 360.46875 302.402344 358.039062 302.402344 358.039062 300.78125 C 358.039062 299.164062 360.46875 299.164062 360.46875 300.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.984375 290.289062 C 333.984375 291.910156 331.554688 291.910156 331.554688 290.289062 C 331.554688 288.671875 333.984375 288.671875 333.984375 290.289062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.40625 70.910156 L 233.042969 73.746094 L 229.769531 73.746094 Z M 231.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.609375 256.203125 C 327.609375 257.824219 325.179688 257.824219 325.179688 256.203125 C 325.179688 254.582031 327.609375 254.582031 327.609375 256.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.394531 173.273438 C 110.394531 174.890625 107.964844 174.890625 107.964844 173.273438 C 107.964844 171.652344 110.394531 171.652344 110.394531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.765625 249.78125 C 280.765625 251.402344 278.335938 251.402344 278.335938 249.78125 C 278.335938 248.160156 280.765625 248.160156 280.765625 249.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.449219 185.710938 C 307.449219 187.328125 305.015625 187.328125 305.015625 185.710938 C 305.015625 184.089844 307.449219 184.089844 307.449219 185.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.503906 288.695312 C 254.503906 290.316406 252.074219 290.316406 252.074219 288.695312 C 252.074219 287.074219 254.503906 287.074219 254.503906 288.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.875 141.585938 C 293.875 143.207031 291.445312 143.207031 291.445312 141.585938 C 291.445312 139.964844 293.875 139.964844 293.875 141.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.726562 294.621094 C 293.726562 296.242188 291.296875 296.242188 291.296875 294.621094 C 291.296875 293 293.726562 293 293.726562 294.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.039062 281.828125 C 244.039062 283.449219 241.609375 283.449219 241.609375 281.828125 C 241.609375 280.207031 244.039062 280.207031 244.039062 281.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.460938 240.308594 C 277.460938 241.929688 275.03125 241.929688 275.03125 240.308594 C 275.03125 238.6875 277.460938 238.6875 277.460938 240.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280 175.597656 C 280 177.214844 277.570312 177.214844 277.570312 175.597656 C 277.570312 173.976562 280 173.976562 280 175.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.28125 273.621094 C 305.28125 275.242188 302.851562 275.242188 302.851562 273.621094 C 302.851562 272.003906 305.28125 272.003906 305.28125 273.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.382812 313.246094 C 296.382812 314.863281 293.953125 314.863281 293.953125 313.246094 C 293.953125 311.625 296.382812 311.625 296.382812 313.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.039062 169.320312 C 292.039062 170.941406 289.609375 170.941406 289.609375 169.320312 C 289.609375 167.699219 292.039062 167.699219 292.039062 169.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.296875 240.429688 C 257.296875 242.046875 254.867188 242.046875 254.867188 240.429688 C 254.867188 238.808594 257.296875 238.808594 257.296875 240.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.636719 296.878906 C 282.636719 298.5 280.207031 298.5 280.207031 296.878906 C 280.207031 295.261719 282.636719 295.261719 282.636719 296.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.808594 297.960938 C 321.808594 299.578125 319.378906 299.578125 319.378906 297.960938 C 319.378906 296.339844 321.808594 296.339844 321.808594 297.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.9375 306.402344 C 290.9375 308.019531 288.507812 308.019531 288.507812 306.402344 C 288.507812 304.78125 290.9375 304.78125 290.9375 306.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.875 254.773438 C 256.875 256.394531 254.445312 256.394531 254.445312 254.773438 C 254.445312 253.152344 256.875 253.152344 256.875 254.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.257812 213.820312 C 236.257812 215.441406 233.828125 215.441406 233.828125 213.820312 C 233.828125 212.203125 236.257812 212.203125 236.257812 213.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.910156 145.757812 C 243.910156 147.378906 241.480469 147.378906 241.480469 145.757812 C 241.480469 144.140625 243.910156 144.140625 243.910156 145.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.75 147.347656 C 275.75 148.96875 273.320312 148.96875 273.320312 147.347656 C 273.320312 145.726562 275.75 145.726562 275.75 147.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.605469 418.691406 L 253.242188 415.855469 L 249.96875 415.855469 Z M 251.605469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.707031 187.132812 C 236.707031 188.753906 234.277344 188.753906 234.277344 187.132812 C 234.277344 185.511719 236.707031 185.511719 236.707031 187.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.5 148.410156 C 222.5 150.027344 220.070312 150.027344 220.070312 148.410156 C 220.070312 146.789062 222.5 146.789062 222.5 148.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.941406 185.359375 C 251.941406 186.980469 249.511719 186.980469 249.511719 185.359375 C 249.511719 183.738281 251.941406 183.738281 251.941406 185.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.875 299.953125 C 333.875 301.570312 331.445312 301.570312 331.445312 299.953125 C 331.445312 298.332031 333.875 298.332031 333.875 299.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.074219 270.527344 C 270.074219 272.144531 267.644531 272.144531 267.644531 270.527344 C 267.644531 268.90625 270.074219 268.90625 270.074219 270.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.308594 70.910156 L 268.945312 73.746094 L 265.671875 73.746094 Z M 267.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.914062 261.578125 C 235.914062 263.199219 233.484375 263.199219 233.484375 261.578125 C 233.484375 259.957031 235.914062 259.957031 235.914062 261.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.550781 231.082031 C 265.550781 232.703125 263.121094 232.703125 263.121094 231.082031 C 263.121094 229.464844 265.550781 229.464844 265.550781 231.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.609375 207.988281 C 261.609375 209.605469 259.175781 209.605469 259.175781 207.988281 C 259.175781 206.367188 261.609375 206.367188 261.609375 207.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.375 298.425781 C 146.375 300.042969 143.945312 300.042969 143.945312 298.425781 C 143.945312 296.804688 146.375 296.804688 146.375 298.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.988281 251.039062 C 278.988281 252.660156 276.558594 252.660156 276.558594 251.039062 C 276.558594 249.421875 278.988281 249.421875 278.988281 251.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.382812 259.507812 C 225.382812 261.128906 222.953125 261.128906 222.953125 259.507812 C 222.953125 257.890625 225.382812 257.890625 225.382812 259.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.164062 236.828125 C 331.164062 238.445312 328.734375 238.445312 328.734375 236.828125 C 328.734375 235.207031 331.164062 235.207031 331.164062 236.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.273438 266.34375 C 291.273438 267.964844 288.84375 267.964844 288.84375 266.34375 C 288.84375 264.726562 291.273438 264.726562 291.273438 266.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.226562 244.9375 C 245.226562 246.558594 242.792969 246.558594 242.792969 244.9375 C 242.792969 243.320312 245.226562 243.320312 245.226562 244.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.457031 291.675781 C 282.457031 293.296875 280.027344 293.296875 280.027344 291.675781 C 280.027344 290.054688 282.457031 290.054688 282.457031 291.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.472656 219.066406 C 246.472656 220.6875 244.042969 220.6875 244.042969 219.066406 C 244.042969 217.445312 246.472656 217.445312 246.472656 219.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.921875 199.410156 C 272.921875 201.03125 270.492188 201.03125 270.492188 199.410156 C 270.492188 197.792969 272.921875 197.792969 272.921875 199.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.183594 289.542969 C 251.183594 291.164062 248.753906 291.164062 248.753906 289.542969 C 248.753906 287.925781 251.183594 287.925781 251.183594 289.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.421875 191.488281 C 289.421875 193.109375 286.992188 193.109375 286.992188 191.488281 C 286.992188 189.867188 289.421875 189.867188 289.421875 191.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.023438 70.910156 L 180.660156 73.746094 L 177.386719 73.746094 Z M 179.023438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.984375 70.910156 L 144.621094 73.746094 L 141.347656 73.746094 Z M 142.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 392.117188 70.910156 L 393.753906 73.746094 L 390.480469 73.746094 Z M 392.117188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.316406 70.910156 L 218.953125 73.746094 L 215.679688 73.746094 Z M 217.316406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.308594 70.910156 L 200.945312 73.746094 L 197.671875 73.746094 Z M 199.308594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.355469 70.910156 L 247.992188 73.746094 L 244.71875 73.746094 Z M 246.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.128906 172.886719 C 181.128906 174.503906 178.699219 174.503906 178.699219 172.886719 C 178.699219 171.265625 181.128906 171.265625 181.128906 172.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.375 215.410156 C 305.375 217.03125 302.945312 217.03125 302.945312 215.410156 C 302.945312 213.789062 305.375 213.789062 305.375 215.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.050781 186.507812 C 277.050781 188.128906 274.621094 188.128906 274.621094 186.507812 C 274.621094 184.886719 277.050781 184.886719 277.050781 186.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.042969 282.117188 C 274.042969 283.734375 271.613281 283.734375 271.613281 282.117188 C 271.613281 280.496094 274.042969 280.496094 274.042969 282.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.34375 162.863281 C 279.34375 164.484375 276.914062 164.484375 276.914062 162.863281 C 276.914062 161.242188 279.34375 161.242188 279.34375 162.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.132812 247.640625 C 311.132812 249.261719 308.703125 249.261719 308.703125 247.640625 C 308.703125 246.023438 311.132812 246.023438 311.132812 247.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.175781 237.792969 C 314.175781 239.414062 311.746094 239.414062 311.746094 237.792969 C 311.746094 236.175781 314.175781 236.175781 314.175781 237.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.628906 70.910156 L 241.265625 73.746094 L 237.992188 73.746094 Z M 239.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.292969 70.910156 L 160.929688 73.746094 L 157.65625 73.746094 Z M 159.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.207031 324.820312 C 260.207031 326.4375 257.777344 326.4375 257.777344 324.820312 C 257.777344 323.199219 260.207031 323.199219 260.207031 324.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.167969 266.15625 C 279.167969 267.773438 276.738281 267.773438 276.738281 266.15625 C 276.738281 264.535156 279.167969 264.535156 279.167969 266.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.3125 294.472656 C 261.3125 296.09375 258.882812 296.09375 258.882812 294.472656 C 258.882812 292.851562 261.3125 292.851562 261.3125 294.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.0625 265.238281 C 233.0625 266.859375 230.632812 266.859375 230.632812 265.238281 C 230.632812 263.621094 233.0625 263.621094 233.0625 265.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.542969 265.382812 C 256.542969 267 254.113281 267 254.113281 265.382812 C 254.113281 263.761719 256.542969 263.761719 256.542969 265.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.464844 324.945312 C 163.464844 326.566406 161.035156 326.566406 161.035156 324.945312 C 161.035156 323.324219 163.464844 323.324219 163.464844 324.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.320312 252.890625 C 222.320312 254.511719 219.886719 254.511719 219.886719 252.890625 C 219.886719 251.269531 222.320312 251.269531 222.320312 252.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.65625 273.453125 C 302.65625 275.074219 300.226562 275.074219 300.226562 273.453125 C 300.226562 271.832031 302.65625 271.832031 302.65625 273.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.238281 289.109375 C 263.238281 290.730469 260.808594 290.730469 260.808594 289.109375 C 260.808594 287.488281 263.238281 287.488281 263.238281 289.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.871094 266.132812 C 321.871094 267.75 319.4375 267.75 319.4375 266.132812 C 319.4375 264.511719 321.871094 264.511719 321.871094 266.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.914062 152.011719 C 269.914062 153.632812 267.484375 153.632812 267.484375 152.011719 C 267.484375 150.394531 269.914062 150.394531 269.914062 152.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.023438 248.628906 C 243.023438 250.25 240.59375 250.25 240.59375 248.628906 C 240.59375 247.011719 243.023438 247.011719 243.023438 248.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.605469 70.910156 L 269.242188 73.746094 L 265.96875 73.746094 Z M 267.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.828125 290.753906 C 300.828125 292.375 298.398438 292.375 298.398438 290.753906 C 298.398438 289.132812 300.828125 289.132812 300.828125 290.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.617188 276.410156 C 288.617188 278.03125 286.1875 278.03125 286.1875 276.410156 C 286.1875 274.792969 288.617188 274.792969 288.617188 276.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.839844 285.46875 C 282.839844 287.089844 280.40625 287.089844 280.40625 285.46875 C 280.40625 283.847656 282.839844 283.847656 282.839844 285.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.238281 217.371094 C 209.238281 218.992188 206.808594 218.992188 206.808594 217.371094 C 206.808594 215.75 209.238281 215.75 209.238281 217.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.386719 287.523438 C 225.386719 289.140625 222.957031 289.140625 222.957031 287.523438 C 222.957031 285.902344 225.386719 285.902344 225.386719 287.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.992188 278.480469 C 240.992188 280.097656 238.5625 280.097656 238.5625 278.480469 C 238.5625 276.859375 240.992188 276.859375 240.992188 278.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.371094 221.105469 C 192.371094 222.726562 189.941406 222.726562 189.941406 221.105469 C 189.941406 219.484375 192.371094 219.484375 192.371094 221.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.507812 223.316406 C 320.507812 224.9375 318.078125 224.9375 318.078125 223.316406 C 318.078125 221.699219 320.507812 221.699219 320.507812 223.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.527344 70.910156 L 226.164062 73.746094 L 222.890625 73.746094 Z M 224.527344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.355469 70.910156 L 166.992188 73.746094 L 163.71875 73.746094 Z M 165.355469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.257812 70.910156 L 174.894531 73.746094 L 171.621094 73.746094 Z M 173.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.992188 398.832031 C 232.992188 400.453125 230.5625 400.453125 230.5625 398.832031 C 230.5625 397.214844 232.992188 397.214844 232.992188 398.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.050781 343.265625 C 209.050781 344.886719 206.621094 344.886719 206.621094 343.265625 C 206.621094 341.644531 209.050781 341.644531 209.050781 343.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.605469 244.722656 C 221.605469 246.339844 219.175781 246.339844 219.175781 244.722656 C 219.175781 243.101562 221.605469 243.101562 221.605469 244.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.71875 243.066406 C 136.71875 244.683594 134.289062 244.683594 134.289062 243.066406 C 134.289062 241.445312 136.71875 241.445312 136.71875 243.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.3125 299.636719 C 251.3125 301.253906 248.882812 301.253906 248.882812 299.636719 C 248.882812 298.015625 251.3125 298.015625 251.3125 299.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.394531 218.96875 C 263.394531 220.585938 260.964844 220.585938 260.964844 218.96875 C 260.964844 217.347656 263.394531 217.347656 263.394531 218.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.40625 231 C 309.40625 232.621094 306.976562 232.621094 306.976562 231 C 306.976562 229.382812 309.40625 229.382812 309.40625 231 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.695312 319.984375 C 301.695312 321.605469 299.261719 321.605469 299.261719 319.984375 C 299.261719 318.363281 301.695312 318.363281 301.695312 319.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.976562 235.78125 C 237.976562 237.402344 235.546875 237.402344 235.546875 235.78125 C 235.546875 234.164062 237.976562 234.164062 237.976562 235.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.835938 274.492188 C 286.835938 276.109375 284.40625 276.109375 284.40625 274.492188 C 284.40625 272.871094 286.835938 272.871094 286.835938 274.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.15625 286.4375 C 256.15625 288.058594 253.726562 288.058594 253.726562 286.4375 C 253.726562 284.816406 256.15625 284.816406 256.15625 286.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.808594 297.984375 C 278.808594 299.605469 276.378906 299.605469 276.378906 297.984375 C 276.378906 296.367188 278.808594 296.367188 278.808594 297.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.25 293.425781 C 203.25 295.046875 200.820312 295.046875 200.820312 293.425781 C 200.820312 291.808594 203.25 291.808594 203.25 293.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.988281 418.691406 L 236.625 415.855469 L 233.355469 415.855469 Z M 234.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.515625 272.132812 C 233.515625 273.753906 231.085938 273.753906 231.085938 272.132812 C 231.085938 270.511719 233.515625 270.511719 233.515625 272.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.511719 253.042969 C 212.511719 254.664062 210.082031 254.664062 210.082031 253.042969 C 210.082031 251.421875 212.511719 251.421875 212.511719 253.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.546875 240.722656 C 281.546875 242.34375 279.117188 242.34375 279.117188 240.722656 C 279.117188 239.101562 281.546875 239.101562 281.546875 240.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.53125 246.292969 C 297.53125 247.914062 295.101562 247.914062 295.101562 246.292969 C 295.101562 244.675781 297.53125 244.675781 297.53125 246.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.140625 262.925781 C 253.140625 264.546875 250.710938 264.546875 250.710938 262.925781 C 250.710938 261.304688 253.140625 261.304688 253.140625 262.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.082031 418.691406 L 186.71875 415.855469 L 183.445312 415.855469 Z M 185.082031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.828125 70.910156 L 126.464844 73.746094 L 123.191406 73.746094 Z M 124.828125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.230469 70.910156 L 131.867188 73.746094 L 128.59375 73.746094 Z M 130.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.199219 298.71875 C 266.199219 300.339844 263.769531 300.339844 263.769531 298.71875 C 263.769531 297.097656 266.199219 297.097656 266.199219 298.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.871094 70.910156 L 150.507812 73.746094 L 147.234375 73.746094 Z M 148.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.585938 240.371094 C 119.585938 241.992188 117.15625 241.992188 117.15625 240.371094 C 117.15625 238.753906 119.585938 238.753906 119.585938 240.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.59375 226.3125 C 313.59375 227.933594 311.164062 227.933594 311.164062 226.3125 C 311.164062 224.695312 313.59375 224.695312 313.59375 226.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.582031 228.070312 C 145.582031 229.691406 143.152344 229.691406 143.152344 228.070312 C 143.152344 226.449219 145.582031 226.449219 145.582031 228.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.382812 197.128906 C 219.382812 198.746094 216.953125 198.746094 216.953125 197.128906 C 216.953125 195.507812 219.382812 195.507812 219.382812 197.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.667969 243.707031 C 304.667969 245.328125 302.238281 245.328125 302.238281 243.707031 C 302.238281 242.089844 304.667969 242.089844 304.667969 243.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.1875 70.910156 L 221.824219 73.746094 L 218.550781 73.746094 Z M 220.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.152344 187.191406 C 268.152344 188.8125 265.722656 188.8125 265.722656 187.191406 C 265.722656 185.570312 268.152344 185.570312 268.152344 187.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.207031 230.003906 C 243.207031 231.625 240.777344 231.625 240.777344 230.003906 C 240.777344 228.382812 243.207031 228.382812 243.207031 230.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.851562 288.351562 C 269.851562 289.972656 267.421875 289.972656 267.421875 288.351562 C 267.421875 286.730469 269.851562 286.730469 269.851562 288.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.792969 315.082031 C 339.792969 316.703125 337.363281 316.703125 337.363281 315.082031 C 337.363281 313.460938 339.792969 313.460938 339.792969 315.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.707031 398.421875 C 256.707031 400.042969 254.277344 400.042969 254.277344 398.421875 C 254.277344 396.804688 256.707031 396.804688 256.707031 398.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.953125 70.910156 L 220.589844 73.746094 L 217.316406 73.746094 Z M 218.953125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.9375 70.910156 L 125.574219 73.746094 L 122.300781 73.746094 Z M 123.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.1875 227.273438 C 288.1875 228.894531 285.757812 228.894531 285.757812 227.273438 C 285.757812 225.652344 288.1875 225.652344 288.1875 227.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.707031 284.597656 C 301.707031 286.21875 299.277344 286.21875 299.277344 284.597656 C 299.277344 282.980469 301.707031 282.980469 301.707031 284.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.714844 179.9375 C 288.714844 181.558594 286.285156 181.558594 286.285156 179.9375 C 286.285156 178.316406 288.714844 178.316406 288.714844 179.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.570312 70.910156 L 316.207031 73.746094 L 312.933594 73.746094 Z M 314.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.542969 173.695312 C 239.542969 175.316406 237.113281 175.316406 237.113281 173.695312 C 237.113281 172.074219 239.542969 172.074219 239.542969 173.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.226562 168.988281 C 238.226562 170.609375 235.796875 170.609375 235.796875 168.988281 C 235.796875 167.371094 238.226562 167.371094 238.226562 168.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.417969 70.910156 L 273.054688 73.746094 L 269.78125 73.746094 Z M 271.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.976562 246.453125 C 266.976562 248.074219 264.546875 248.074219 264.546875 246.453125 C 264.546875 244.832031 266.976562 244.832031 266.976562 246.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.957031 206.753906 C 266.957031 208.375 264.527344 208.375 264.527344 206.753906 C 264.527344 205.132812 266.957031 205.132812 266.957031 206.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.335938 227.667969 C 243.335938 229.289062 240.90625 229.289062 240.90625 227.667969 C 240.90625 226.050781 243.335938 226.050781 243.335938 227.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.421875 70.910156 L 261.058594 73.746094 L 257.789062 73.746094 Z M 259.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.105469 272.359375 C 340.105469 273.980469 337.675781 273.980469 337.675781 272.359375 C 337.675781 270.742188 340.105469 270.742188 340.105469 272.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.816406 186.019531 C 294.816406 187.640625 292.386719 187.640625 292.386719 186.019531 C 292.386719 184.402344 294.816406 184.402344 294.816406 186.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.328125 246.082031 C 183.328125 247.703125 180.898438 247.703125 180.898438 246.082031 C 180.898438 244.460938 183.328125 244.460938 183.328125 246.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.28125 202.785156 C 158.28125 204.402344 155.851562 204.402344 155.851562 202.785156 C 155.851562 201.164062 158.28125 201.164062 158.28125 202.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.398438 70.910156 L 232.035156 73.746094 L 228.761719 73.746094 Z M 230.398438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.605469 70.910156 L 146.242188 73.746094 L 142.96875 73.746094 Z M 144.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.757812 224.394531 C 330.757812 226.015625 328.328125 226.015625 328.328125 224.394531 C 328.328125 222.777344 330.757812 222.777344 330.757812 224.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.085938 125.515625 C 283.085938 127.136719 280.65625 127.136719 280.65625 125.515625 C 280.65625 123.898438 283.085938 123.898438 283.085938 125.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.144531 70.910156 L 144.78125 73.746094 L 141.507812 73.746094 Z M 143.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.265625 180.792969 C 108.265625 182.410156 105.835938 182.410156 105.835938 180.792969 C 105.835938 179.171875 108.265625 179.171875 108.265625 180.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.019531 70.910156 L 206.65625 73.746094 L 203.382812 73.746094 Z M 205.019531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.867188 70.910156 L 180.5 73.746094 L 177.230469 73.746094 Z M 178.867188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.730469 70.910156 L 278.367188 73.746094 L 275.09375 73.746094 Z M 276.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.414062 188.675781 C 273.414062 190.296875 270.984375 190.296875 270.984375 188.675781 C 270.984375 187.054688 273.414062 187.054688 273.414062 188.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.421875 219.03125 C 304.421875 220.648438 301.992188 220.648438 301.992188 219.03125 C 301.992188 217.410156 304.421875 217.410156 304.421875 219.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.761719 299.644531 C 329.761719 301.265625 327.332031 301.265625 327.332031 299.644531 C 327.332031 298.027344 329.761719 298.027344 329.761719 299.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.261719 154.410156 C 189.261719 156.03125 186.832031 156.03125 186.832031 154.410156 C 186.832031 152.792969 189.261719 152.792969 189.261719 154.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.097656 306.027344 C 124.097656 307.644531 121.664062 307.644531 121.664062 306.027344 C 121.664062 304.40625 124.097656 304.40625 124.097656 306.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.953125 241.457031 C 255.953125 243.078125 253.523438 243.078125 253.523438 241.457031 C 253.523438 239.839844 255.953125 239.839844 255.953125 241.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.148438 195.289062 C 239.148438 196.90625 236.71875 196.90625 236.71875 195.289062 C 236.71875 193.667969 239.148438 193.667969 239.148438 195.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.066406 264.578125 C 259.066406 266.199219 256.636719 266.199219 256.636719 264.578125 C 256.636719 262.957031 259.066406 262.957031 259.066406 264.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.222656 272.699219 C 290.222656 274.320312 287.792969 274.320312 287.792969 272.699219 C 287.792969 271.078125 290.222656 271.078125 290.222656 272.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.710938 155.617188 C 189.710938 157.238281 187.28125 157.238281 187.28125 155.617188 C 187.28125 153.996094 189.710938 153.996094 189.710938 155.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.699219 232.742188 C 144.699219 234.363281 142.269531 234.363281 142.269531 232.742188 C 142.269531 231.125 144.699219 231.125 144.699219 232.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.957031 179.453125 C 252.957031 181.074219 250.527344 181.074219 250.527344 179.453125 C 250.527344 177.835938 252.957031 177.835938 252.957031 179.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.796875 202.480469 C 267.796875 204.101562 265.367188 204.101562 265.367188 202.480469 C 265.367188 200.863281 267.796875 200.863281 267.796875 202.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.003906 146.941406 C 243.003906 148.558594 240.574219 148.558594 240.574219 146.941406 C 240.574219 145.320312 243.003906 145.320312 243.003906 146.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.382812 282.914062 C 235.382812 284.535156 232.953125 284.535156 232.953125 282.914062 C 232.953125 281.296875 235.382812 281.296875 235.382812 282.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.585938 336.183594 C 283.585938 337.800781 281.152344 337.800781 281.152344 336.183594 C 281.152344 334.5625 283.585938 334.5625 283.585938 336.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.996094 252.464844 C 234.996094 254.082031 232.566406 254.082031 232.566406 252.464844 C 232.566406 250.84375 234.996094 250.84375 234.996094 252.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.371094 229.324219 C 262.371094 230.945312 259.941406 230.945312 259.941406 229.324219 C 259.941406 227.707031 262.371094 227.707031 262.371094 229.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.386719 95.210938 C 220.386719 96.832031 217.957031 96.832031 217.957031 95.210938 C 217.957031 93.589844 220.386719 93.589844 220.386719 95.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.566406 70.910156 L 156.203125 73.746094 L 152.929688 73.746094 Z M 154.566406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.808594 70.910156 L 156.445312 73.746094 L 153.171875 73.746094 Z M 154.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.921875 210.476562 C 323.921875 212.097656 321.492188 212.097656 321.492188 210.476562 C 321.492188 208.855469 323.921875 208.855469 323.921875 210.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.734375 269.25 C 314.734375 270.871094 312.304688 270.871094 312.304688 269.25 C 312.304688 267.632812 314.734375 267.632812 314.734375 269.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.789062 132.09375 C 199.789062 133.714844 197.359375 133.714844 197.359375 132.09375 C 197.359375 130.476562 199.789062 130.476562 199.789062 132.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.179688 372.21875 C 225.179688 373.839844 222.75 373.839844 222.75 372.21875 C 222.75 370.597656 225.179688 370.597656 225.179688 372.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.332031 177.914062 C 307.332031 179.53125 304.902344 179.53125 304.902344 177.914062 C 304.902344 176.292969 307.332031 176.292969 307.332031 177.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.285156 241.34375 C 284.285156 242.960938 281.855469 242.960938 281.855469 241.34375 C 281.855469 239.722656 284.285156 239.722656 284.285156 241.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.449219 127.144531 C 287.449219 128.761719 285.019531 128.761719 285.019531 127.144531 C 285.019531 125.523438 287.449219 125.523438 287.449219 127.144531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.242188 418.691406 L 260.878906 415.855469 L 257.605469 415.855469 Z M 259.242188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.453125 265.21875 C 174.453125 266.835938 172.023438 266.835938 172.023438 265.21875 C 172.023438 263.597656 174.453125 263.597656 174.453125 265.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.136719 276.585938 C 211.136719 278.203125 208.707031 278.203125 208.707031 276.585938 C 208.707031 274.964844 211.136719 274.964844 211.136719 276.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.136719 293.039062 C 234.136719 294.65625 231.707031 294.65625 231.707031 293.039062 C 231.707031 291.417969 234.136719 291.417969 234.136719 293.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.222656 258.671875 C 307.222656 260.289062 304.792969 260.289062 304.792969 258.671875 C 304.792969 257.050781 307.222656 257.050781 307.222656 258.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.761719 225.992188 C 230.761719 227.613281 228.328125 227.613281 228.328125 225.992188 C 228.328125 224.375 230.761719 224.375 230.761719 225.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.21875 201.644531 C 255.21875 203.265625 252.789062 203.265625 252.789062 201.644531 C 252.789062 200.023438 255.21875 200.023438 255.21875 201.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.117188 418.691406 L 233.753906 415.855469 L 230.480469 415.855469 Z M 232.117188 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.035156 418.691406 L 317.671875 415.855469 L 314.398438 415.855469 Z M 316.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.847656 286.804688 C 333.847656 288.421875 331.417969 288.421875 331.417969 286.804688 C 331.417969 285.183594 333.847656 285.183594 333.847656 286.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.800781 148.230469 C 221.800781 149.847656 219.371094 149.847656 219.371094 148.230469 C 219.371094 146.609375 221.800781 146.609375 221.800781 148.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.210938 207.199219 C 262.210938 208.820312 259.777344 208.820312 259.777344 207.199219 C 259.777344 205.582031 262.210938 205.582031 262.210938 207.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.785156 70.910156 L 233.421875 73.746094 L 230.148438 73.746094 Z M 231.785156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.59375 70.910156 L 285.230469 73.746094 L 281.957031 73.746094 Z M 283.59375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.25 70.910156 L 194.886719 73.746094 L 191.617188 73.746094 Z M 193.25 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.675781 70.910156 L 297.3125 73.746094 L 294.039062 73.746094 Z M 295.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.421875 150.609375 C 324.421875 152.230469 321.992188 152.230469 321.992188 150.609375 C 321.992188 148.992188 324.421875 148.992188 324.421875 150.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.664062 221.710938 C 267.664062 223.328125 265.234375 223.328125 265.234375 221.710938 C 265.234375 220.089844 267.664062 220.089844 267.664062 221.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.742188 249.058594 C 279.742188 250.675781 277.3125 250.675781 277.3125 249.058594 C 277.3125 247.4375 279.742188 247.4375 279.742188 249.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.484375 271.390625 C 213.484375 273.011719 211.054688 273.011719 211.054688 271.390625 C 211.054688 269.769531 213.484375 269.769531 213.484375 271.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.296875 244.066406 C 259.296875 245.6875 256.867188 245.6875 256.867188 244.066406 C 256.867188 242.449219 259.296875 242.449219 259.296875 244.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.257812 167.742188 C 147.257812 169.359375 144.828125 169.359375 144.828125 167.742188 C 144.828125 166.121094 147.257812 166.121094 147.257812 167.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.757812 151.734375 C 193.757812 153.355469 191.328125 153.355469 191.328125 151.734375 C 191.328125 150.113281 193.757812 150.113281 193.757812 151.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.15625 70.910156 L 135.789062 73.746094 L 132.519531 73.746094 Z M 134.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.003906 315.839844 C 175.003906 317.457031 172.570312 317.457031 172.570312 315.839844 C 172.570312 314.21875 175.003906 314.21875 175.003906 315.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.28125 230.769531 C 261.28125 232.390625 258.851562 232.390625 258.851562 230.769531 C 258.851562 229.152344 261.28125 229.152344 261.28125 230.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.230469 253.664062 C 127.230469 255.28125 124.800781 255.28125 124.800781 253.664062 C 124.800781 252.042969 127.230469 252.042969 127.230469 253.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.289062 271.699219 C 281.289062 273.316406 278.859375 273.316406 278.859375 271.699219 C 278.859375 270.078125 281.289062 270.078125 281.289062 271.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.257812 256.859375 C 300.257812 258.480469 297.828125 258.480469 297.828125 256.859375 C 297.828125 255.242188 300.257812 255.242188 300.257812 256.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.207031 258.6875 C 266.207031 260.308594 263.777344 260.308594 263.777344 258.6875 C 263.777344 257.070312 266.207031 257.070312 266.207031 258.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.933594 219.601562 C 246.933594 221.222656 244.503906 221.222656 244.503906 219.601562 C 244.503906 217.984375 246.933594 217.984375 246.933594 219.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.699219 264.980469 C 284.699219 266.601562 282.269531 266.601562 282.269531 264.980469 C 282.269531 263.363281 284.699219 263.363281 284.699219 264.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.742188 140.414062 C 243.742188 142.035156 241.3125 142.035156 241.3125 140.414062 C 241.3125 138.796875 243.742188 138.796875 243.742188 140.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.332031 86.871094 C 252.332031 88.492188 249.902344 88.492188 249.902344 86.871094 C 249.902344 85.25 252.332031 85.25 252.332031 86.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.097656 300.09375 C 347.097656 301.714844 344.667969 301.714844 344.667969 300.09375 C 344.667969 298.472656 347.097656 298.472656 347.097656 300.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.691406 262.453125 C 259.691406 264.074219 257.261719 264.074219 257.261719 262.453125 C 257.261719 260.832031 259.691406 260.832031 259.691406 262.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.011719 418.691406 L 323.648438 415.855469 L 320.375 415.855469 Z M 322.011719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.710938 186.953125 C 239.710938 188.570312 237.28125 188.570312 237.28125 186.953125 C 237.28125 185.332031 239.710938 185.332031 239.710938 186.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.550781 302.9375 C 219.550781 304.558594 217.121094 304.558594 217.121094 302.9375 C 217.121094 301.320312 219.550781 301.320312 219.550781 302.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.09375 372.542969 C 170.09375 374.160156 167.664062 374.160156 167.664062 372.542969 C 167.664062 370.921875 170.09375 370.921875 170.09375 372.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.828125 149.5625 C 278.828125 151.183594 276.394531 151.183594 276.394531 149.5625 C 276.394531 147.945312 278.828125 147.945312 278.828125 149.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.902344 418.691406 L 118.539062 415.855469 L 115.265625 415.855469 Z M 116.902344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.230469 344.800781 C 196.230469 346.421875 193.800781 346.421875 193.800781 344.800781 C 193.800781 343.179688 196.230469 343.179688 196.230469 344.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.519531 307.722656 C 243.519531 309.34375 241.089844 309.34375 241.089844 307.722656 C 241.089844 306.105469 243.519531 306.105469 243.519531 307.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.191406 302.691406 C 123.191406 304.3125 120.761719 304.3125 120.761719 302.691406 C 120.761719 301.074219 123.191406 301.074219 123.191406 302.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.285156 320.589844 C 246.285156 322.210938 243.855469 322.210938 243.855469 320.589844 C 243.855469 318.972656 246.285156 318.972656 246.285156 320.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.863281 70.910156 L 238.5 73.746094 L 235.226562 73.746094 Z M 236.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.253906 260.070312 C 323.253906 261.6875 320.824219 261.6875 320.824219 260.070312 C 320.824219 258.449219 323.253906 258.449219 323.253906 260.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.246094 223.601562 C 308.246094 225.222656 305.816406 225.222656 305.816406 223.601562 C 305.816406 221.980469 308.246094 221.980469 308.246094 223.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.445312 418.691406 L 199.082031 415.855469 L 195.808594 415.855469 Z M 197.445312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.03125 293.136719 C 271.03125 294.757812 268.601562 294.757812 268.601562 293.136719 C 268.601562 291.519531 271.03125 291.519531 271.03125 293.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.902344 156.792969 C 274.902344 158.410156 272.472656 158.410156 272.472656 156.792969 C 272.472656 155.171875 274.902344 155.171875 274.902344 156.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.03125 278.976562 C 333.03125 280.597656 330.601562 280.597656 330.601562 278.976562 C 330.601562 277.359375 333.03125 277.359375 333.03125 278.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.191406 259.972656 C 264.191406 261.589844 261.761719 261.589844 261.761719 259.972656 C 261.761719 258.351562 264.191406 258.351562 264.191406 259.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.179688 241.3125 C 293.179688 242.933594 290.746094 242.933594 290.746094 241.3125 C 290.746094 239.695312 293.179688 239.695312 293.179688 241.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.578125 249.527344 C 271.578125 251.148438 269.148438 251.148438 269.148438 249.527344 C 269.148438 247.910156 271.578125 247.910156 271.578125 249.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.125 212.671875 C 267.125 214.289062 264.695312 214.289062 264.695312 212.671875 C 264.695312 211.050781 267.125 211.050781 267.125 212.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.296875 243.925781 C 276.296875 245.546875 273.867188 245.546875 273.867188 243.925781 C 273.867188 242.308594 276.296875 242.308594 276.296875 243.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.375 236.09375 C 242.375 237.710938 239.945312 237.710938 239.945312 236.09375 C 239.945312 234.472656 242.375 234.472656 242.375 236.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.730469 119.203125 C 340.730469 120.824219 338.300781 120.824219 338.300781 119.203125 C 338.300781 117.582031 340.730469 117.582031 340.730469 119.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 353.167969 283.597656 C 353.167969 285.21875 350.738281 285.21875 350.738281 283.597656 C 350.738281 281.980469 353.167969 281.980469 353.167969 283.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.25 70.910156 L 272.886719 73.746094 L 269.613281 73.746094 Z M 271.25 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.808594 70.910156 L 153.445312 73.746094 L 150.171875 73.746094 Z M 151.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.511719 183.007812 C 274.511719 184.628906 272.082031 184.628906 272.082031 183.007812 C 272.082031 181.386719 274.511719 181.386719 274.511719 183.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.511719 195.570312 C 256.511719 197.191406 254.082031 197.191406 254.082031 195.570312 C 254.082031 193.953125 256.511719 193.953125 256.511719 195.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.796875 193.507812 C 228.796875 195.128906 226.367188 195.128906 226.367188 193.507812 C 226.367188 191.890625 228.796875 191.890625 228.796875 193.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.457031 286.253906 C 335.457031 287.875 333.023438 287.875 333.023438 286.253906 C 333.023438 284.636719 335.457031 284.636719 335.457031 286.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.429688 166.988281 C 318.429688 168.605469 316 168.605469 316 166.988281 C 316 165.367188 318.429688 165.367188 318.429688 166.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.714844 262.269531 C 274.714844 263.890625 272.285156 263.890625 272.285156 262.269531 C 272.285156 260.652344 274.714844 260.652344 274.714844 262.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.300781 325.929688 C 223.300781 327.546875 220.871094 327.546875 220.871094 325.929688 C 220.871094 324.308594 223.300781 324.308594 223.300781 325.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.335938 313.730469 C 259.335938 315.351562 256.90625 315.351562 256.90625 313.730469 C 256.90625 312.109375 259.335938 312.109375 259.335938 313.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.425781 347.414062 C 128.425781 349.03125 125.996094 349.03125 125.996094 347.414062 C 125.996094 345.792969 128.425781 345.792969 128.425781 347.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.300781 267.671875 C 275.300781 269.292969 272.871094 269.292969 272.871094 267.671875 C 272.871094 266.050781 275.300781 266.050781 275.300781 267.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.957031 256.527344 C 304.957031 258.144531 302.527344 258.144531 302.527344 256.527344 C 302.527344 254.90625 304.957031 254.90625 304.957031 256.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.578125 318.351562 C 295.578125 319.96875 293.148438 319.96875 293.148438 318.351562 C 293.148438 316.730469 295.578125 316.730469 295.578125 318.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.828125 86.742188 C 160.828125 88.363281 158.398438 88.363281 158.398438 86.742188 C 158.398438 85.121094 160.828125 85.121094 160.828125 86.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.792969 70.910156 L 133.429688 73.746094 L 130.15625 73.746094 Z M 131.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.652344 94.976562 C 122.652344 96.59375 120.222656 96.59375 120.222656 94.976562 C 120.222656 93.355469 122.652344 93.355469 122.652344 94.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.390625 188.332031 C 243.390625 189.953125 240.960938 189.953125 240.960938 188.332031 C 240.960938 186.710938 243.390625 186.710938 243.390625 188.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.410156 70.910156 L 190.046875 73.746094 L 186.773438 73.746094 Z M 188.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.835938 70.910156 L 215.472656 73.746094 L 212.199219 73.746094 Z M 213.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.105469 248.566406 C 236.105469 250.1875 233.675781 250.1875 233.675781 248.566406 C 233.675781 246.945312 236.105469 246.945312 236.105469 248.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.71875 261.878906 C 308.71875 263.5 306.285156 263.5 306.285156 261.878906 C 306.285156 260.257812 308.71875 260.257812 308.71875 261.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.050781 201.753906 C 149.050781 203.375 146.621094 203.375 146.621094 201.753906 C 146.621094 200.136719 149.050781 200.136719 149.050781 201.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.679688 176.996094 C 255.679688 178.613281 253.25 178.613281 253.25 176.996094 C 253.25 175.375 255.679688 175.375 255.679688 176.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.03125 70.910156 L 216.667969 73.746094 L 213.394531 73.746094 Z M 215.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.601562 86.214844 C 124.601562 87.835938 122.171875 87.835938 122.171875 86.214844 C 122.171875 84.597656 124.601562 84.597656 124.601562 86.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.828125 168.640625 C 255.828125 170.261719 253.398438 170.261719 253.398438 168.640625 C 253.398438 167.019531 255.828125 167.019531 255.828125 168.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.511719 188.066406 C 296.511719 189.6875 294.082031 189.6875 294.082031 188.066406 C 294.082031 186.449219 296.511719 186.449219 296.511719 188.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.066406 142.414062 C 248.066406 144.035156 245.632812 144.035156 245.632812 142.414062 C 245.632812 140.796875 248.066406 140.796875 248.066406 142.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.039062 217.878906 C 223.039062 219.5 220.609375 219.5 220.609375 217.878906 C 220.609375 216.257812 223.039062 216.257812 223.039062 217.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.257812 104.675781 C 157.257812 106.296875 154.828125 106.296875 154.828125 104.675781 C 154.828125 103.054688 157.257812 103.054688 157.257812 104.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.417969 233.65625 C 255.417969 235.277344 252.988281 235.277344 252.988281 233.65625 C 252.988281 232.035156 255.417969 232.035156 255.417969 233.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.027344 244.050781 C 282.027344 245.671875 279.597656 245.671875 279.597656 244.050781 C 279.597656 242.433594 282.027344 242.433594 282.027344 244.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.773438 211.074219 C 181.773438 212.695312 179.34375 212.695312 179.34375 211.074219 C 179.34375 209.457031 181.773438 209.457031 181.773438 211.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.476562 161.148438 C 235.476562 162.765625 233.046875 162.765625 233.046875 161.148438 C 233.046875 159.527344 235.476562 159.527344 235.476562 161.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.289062 237.722656 C 190.289062 239.34375 187.859375 239.34375 187.859375 237.722656 C 187.859375 236.101562 190.289062 236.101562 190.289062 237.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.546875 212.445312 C 190.546875 214.066406 188.113281 214.066406 188.113281 212.445312 C 188.113281 210.824219 190.546875 210.824219 190.546875 212.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.664062 215.164062 C 284.664062 216.78125 282.234375 216.78125 282.234375 215.164062 C 282.234375 213.542969 284.664062 213.542969 284.664062 215.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.492188 216.128906 C 269.492188 217.746094 267.0625 217.746094 267.0625 216.128906 C 267.0625 214.507812 269.492188 214.507812 269.492188 216.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.742188 111.945312 C 166.742188 113.5625 164.3125 113.5625 164.3125 111.945312 C 164.3125 110.324219 166.742188 110.324219 166.742188 111.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.203125 293.992188 C 233.203125 295.613281 230.773438 295.613281 230.773438 293.992188 C 230.773438 292.371094 233.203125 292.371094 233.203125 293.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.792969 253.703125 C 217.792969 255.324219 215.363281 255.324219 215.363281 253.703125 C 215.363281 252.085938 217.792969 252.085938 217.792969 253.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.621094 70.910156 L 146.257812 73.746094 L 142.984375 73.746094 Z M 144.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.550781 135.457031 C 194.550781 137.078125 192.121094 137.078125 192.121094 135.457031 C 192.121094 133.835938 194.550781 133.835938 194.550781 135.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.453125 216.789062 C 274.453125 218.410156 272.023438 218.410156 272.023438 216.789062 C 272.023438 215.167969 274.453125 215.167969 274.453125 216.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.011719 70.910156 L 268.648438 73.746094 L 265.375 73.746094 Z M 267.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.816406 314.488281 C 268.816406 316.109375 266.386719 316.109375 266.386719 314.488281 C 266.386719 312.871094 268.816406 312.871094 268.816406 314.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.683594 324.375 C 257.683594 325.992188 255.253906 325.992188 255.253906 324.375 C 255.253906 322.753906 257.683594 322.753906 257.683594 324.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.390625 234.023438 C 185.390625 235.640625 182.960938 235.640625 182.960938 234.023438 C 182.960938 232.402344 185.390625 232.402344 185.390625 234.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.964844 169.613281 C 161.964844 171.230469 159.535156 171.230469 159.535156 169.613281 C 159.535156 167.992188 161.964844 167.992188 161.964844 169.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.691406 128.128906 C 261.691406 129.75 259.261719 129.75 259.261719 128.128906 C 259.261719 126.507812 261.691406 126.507812 261.691406 128.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.71875 91.117188 C 158.71875 92.738281 156.289062 92.738281 156.289062 91.117188 C 156.289062 89.496094 158.71875 89.496094 158.71875 91.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.972656 70.910156 L 237.609375 73.746094 L 234.335938 73.746094 Z M 235.972656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.914062 70.910156 L 186.550781 73.746094 L 183.277344 73.746094 Z M 184.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.289062 213.40625 C 332.289062 215.027344 329.859375 215.027344 329.859375 213.40625 C 329.859375 211.785156 332.289062 211.785156 332.289062 213.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.269531 110.203125 C 136.269531 111.820312 133.839844 111.820312 133.839844 110.203125 C 133.839844 108.582031 136.269531 108.582031 136.269531 110.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.320312 264.507812 C 324.320312 266.128906 321.886719 266.128906 321.886719 264.507812 C 321.886719 262.890625 324.320312 262.890625 324.320312 264.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.808594 193.617188 C 220.808594 195.238281 218.378906 195.238281 218.378906 193.617188 C 218.378906 192 220.808594 192 220.808594 193.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.996094 338.355469 C 267.996094 339.976562 265.566406 339.976562 265.566406 338.355469 C 265.566406 336.734375 267.996094 336.734375 267.996094 338.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.863281 375.261719 C 248.863281 376.882812 246.433594 376.882812 246.433594 375.261719 C 246.433594 373.640625 248.863281 373.640625 248.863281 375.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.726562 250.898438 C 286.726562 252.519531 284.296875 252.519531 284.296875 250.898438 C 284.296875 249.277344 286.726562 249.277344 286.726562 250.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.578125 180.054688 C 223.578125 181.675781 221.148438 181.675781 221.148438 180.054688 C 221.148438 178.433594 223.578125 178.433594 223.578125 180.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.121094 188.292969 C 285.121094 189.914062 282.691406 189.914062 282.691406 188.292969 C 282.691406 186.671875 285.121094 186.671875 285.121094 188.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.269531 296.210938 C 194.269531 297.832031 191.839844 297.832031 191.839844 296.210938 C 191.839844 294.589844 194.269531 294.589844 194.269531 296.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.035156 314.304688 C 269.035156 315.925781 266.605469 315.925781 266.605469 314.304688 C 266.605469 312.683594 269.035156 312.683594 269.035156 314.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.671875 155.480469 C 113.671875 157.097656 111.242188 157.097656 111.242188 155.480469 C 111.242188 153.859375 113.671875 153.859375 113.671875 155.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.15625 70.910156 L 135.789062 73.746094 L 132.519531 73.746094 Z M 134.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.1875 244.839844 C 120.1875 246.460938 117.757812 246.460938 117.757812 244.839844 C 117.757812 243.222656 120.1875 243.222656 120.1875 244.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.96875 307.96875 C 290.96875 309.589844 288.535156 309.589844 288.535156 307.96875 C 288.535156 306.347656 290.96875 306.347656 290.96875 307.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.421875 264.851562 C 245.421875 266.472656 242.992188 266.472656 242.992188 264.851562 C 242.992188 263.230469 245.421875 263.230469 245.421875 264.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.832031 332.609375 C 136.832031 334.230469 134.402344 334.230469 134.402344 332.609375 C 134.402344 330.988281 136.832031 330.988281 136.832031 332.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.945312 236.082031 C 264.945312 237.699219 262.515625 237.699219 262.515625 236.082031 C 262.515625 234.460938 264.945312 234.460938 264.945312 236.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.003906 168.34375 C 188.003906 169.960938 185.574219 169.960938 185.574219 168.34375 C 185.574219 166.722656 188.003906 166.722656 188.003906 168.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.40625 246.328125 C 317.40625 247.949219 314.976562 247.949219 314.976562 246.328125 C 314.976562 244.707031 317.40625 244.707031 317.40625 246.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.148438 239.820312 C 286.148438 241.441406 283.71875 241.441406 283.71875 239.820312 C 283.71875 238.199219 286.148438 238.199219 286.148438 239.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.460938 269.925781 C 314.460938 271.546875 312.03125 271.546875 312.03125 269.925781 C 312.03125 268.308594 314.460938 268.308594 314.460938 269.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.800781 283.324219 C 320.800781 284.945312 318.371094 284.945312 318.371094 283.324219 C 318.371094 281.703125 320.800781 281.703125 320.800781 283.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.535156 326.757812 C 221.535156 328.378906 219.101562 328.378906 219.101562 326.757812 C 219.101562 325.140625 221.535156 325.140625 221.535156 326.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.070312 147.230469 C 250.070312 148.851562 247.640625 148.851562 247.640625 147.230469 C 247.640625 145.609375 250.070312 145.609375 250.070312 147.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.761719 267.691406 C 274.761719 269.308594 272.332031 269.308594 272.332031 267.691406 C 272.332031 266.070312 274.761719 266.070312 274.761719 267.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.605469 290.671875 C 177.605469 292.292969 175.175781 292.292969 175.175781 290.671875 C 175.175781 289.050781 177.605469 289.050781 177.605469 290.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.710938 192.757812 C 262.710938 194.375 260.28125 194.375 260.28125 192.757812 C 260.28125 191.136719 262.710938 191.136719 262.710938 192.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.609375 124.878906 C 250.609375 126.5 248.179688 126.5 248.179688 124.878906 C 248.179688 123.261719 250.609375 123.261719 250.609375 124.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.738281 212.230469 C 304.738281 213.851562 302.308594 213.851562 302.308594 212.230469 C 302.308594 210.609375 304.738281 210.609375 304.738281 212.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.796875 214.085938 C 175.796875 215.707031 173.367188 215.707031 173.367188 214.085938 C 173.367188 212.46875 175.796875 212.46875 175.796875 214.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.394531 203.683594 C 219.394531 205.304688 216.964844 205.304688 216.964844 203.683594 C 216.964844 202.0625 219.394531 202.0625 219.394531 203.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.03125 77.378906 C 194.03125 78.996094 191.601562 78.996094 191.601562 77.378906 C 191.601562 75.757812 194.03125 75.757812 194.03125 77.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.394531 131.984375 C 168.394531 133.605469 165.964844 133.605469 165.964844 131.984375 C 165.964844 130.363281 168.394531 130.363281 168.394531 131.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.5 276.945312 C 285.5 278.566406 283.070312 278.566406 283.070312 276.945312 C 283.070312 275.328125 285.5 275.328125 285.5 276.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.539062 295.714844 C 272.539062 297.335938 270.109375 297.335938 270.109375 295.714844 C 270.109375 294.09375 272.539062 294.09375 272.539062 295.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.015625 240.78125 C 269.015625 242.398438 266.585938 242.398438 266.585938 240.78125 C 266.585938 239.160156 269.015625 239.160156 269.015625 240.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.355469 153.003906 C 225.355469 154.625 222.921875 154.625 222.921875 153.003906 C 222.921875 151.382812 225.355469 151.382812 225.355469 153.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.027344 278.929688 C 259.027344 280.550781 256.597656 280.550781 256.597656 278.929688 C 256.597656 277.308594 259.027344 277.308594 259.027344 278.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.683594 291.5625 C 325.683594 293.183594 323.253906 293.183594 323.253906 291.5625 C 323.253906 289.941406 325.683594 289.941406 325.683594 291.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.65625 70.910156 L 295.292969 73.746094 L 292.023438 73.746094 Z M 293.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.78125 200.308594 C 251.78125 201.929688 249.351562 201.929688 249.351562 200.308594 C 249.351562 198.6875 251.78125 198.6875 251.78125 200.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.542969 192.042969 C 240.542969 193.664062 238.113281 193.664062 238.113281 192.042969 C 238.113281 190.425781 240.542969 190.425781 240.542969 192.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.339844 341.121094 C 297.339844 342.738281 294.910156 342.738281 294.910156 341.121094 C 294.910156 339.5 297.339844 339.5 297.339844 341.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.96875 254.113281 C 319.96875 255.734375 317.539062 255.734375 317.539062 254.113281 C 317.539062 252.496094 319.96875 252.496094 319.96875 254.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.117188 291.175781 C 316.117188 292.792969 313.6875 292.792969 313.6875 291.175781 C 313.6875 289.554688 316.117188 289.554688 316.117188 291.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.21875 347.101562 C 274.21875 348.722656 271.789062 348.722656 271.789062 347.101562 C 271.789062 345.480469 274.21875 345.480469 274.21875 347.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.277344 176.582031 C 203.277344 178.203125 200.847656 178.203125 200.847656 176.582031 C 200.847656 174.964844 203.277344 174.964844 203.277344 176.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.773438 257.5625 C 178.773438 259.183594 176.34375 259.183594 176.34375 257.5625 C 176.34375 255.941406 178.773438 255.941406 178.773438 257.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.769531 317.609375 C 203.769531 319.226562 201.339844 319.226562 201.339844 317.609375 C 201.339844 315.988281 203.769531 315.988281 203.769531 317.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.828125 275.375 C 200.828125 276.996094 198.398438 276.996094 198.398438 275.375 C 198.398438 273.753906 200.828125 273.753906 200.828125 275.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.175781 303.269531 C 318.175781 304.890625 315.746094 304.890625 315.746094 303.269531 C 315.746094 301.652344 318.175781 301.652344 318.175781 303.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.640625 255.699219 C 304.640625 257.320312 302.210938 257.320312 302.210938 255.699219 C 302.210938 254.082031 304.640625 254.082031 304.640625 255.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.386719 381.207031 C 276.386719 382.828125 273.957031 382.828125 273.957031 381.207031 C 273.957031 379.585938 276.386719 379.585938 276.386719 381.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.222656 334.808594 C 329.222656 336.429688 326.792969 336.429688 326.792969 334.808594 C 326.792969 333.1875 329.222656 333.1875 329.222656 334.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.746094 276.039062 C 262.746094 277.660156 260.316406 277.660156 260.316406 276.039062 C 260.316406 274.417969 262.746094 274.417969 262.746094 276.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.652344 335.964844 C 270.652344 337.585938 268.222656 337.585938 268.222656 335.964844 C 268.222656 334.34375 270.652344 334.34375 270.652344 335.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.648438 265.320312 C 275.648438 266.941406 273.21875 266.941406 273.21875 265.320312 C 273.21875 263.699219 275.648438 263.699219 275.648438 265.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.652344 210.289062 C 260.652344 211.910156 258.222656 211.910156 258.222656 210.289062 C 258.222656 208.671875 260.652344 208.671875 260.652344 210.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.800781 160.105469 C 293.800781 161.726562 291.371094 161.726562 291.371094 160.105469 C 291.371094 158.488281 293.800781 158.488281 293.800781 160.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.386719 351.308594 C 273.386719 352.929688 270.957031 352.929688 270.957031 351.308594 C 270.957031 349.691406 273.386719 349.691406 273.386719 351.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.039062 162.65625 C 242.039062 164.273438 239.609375 164.273438 239.609375 162.65625 C 239.609375 161.035156 242.039062 161.035156 242.039062 162.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.542969 159.121094 C 148.542969 160.738281 146.113281 160.738281 146.113281 159.121094 C 146.113281 157.5 148.542969 157.5 148.542969 159.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.167969 307.421875 C 207.167969 309.042969 204.738281 309.042969 204.738281 307.421875 C 204.738281 305.800781 207.167969 305.800781 207.167969 307.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.902344 261.917969 C 209.902344 263.539062 207.472656 263.539062 207.472656 261.917969 C 207.472656 260.300781 209.902344 260.300781 209.902344 261.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.90625 70.910156 L 284.542969 73.746094 L 281.269531 73.746094 Z M 282.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.578125 264.539062 C 280.578125 266.160156 278.148438 266.160156 278.148438 264.539062 C 278.148438 262.917969 280.578125 262.917969 280.578125 264.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.964844 369.222656 C 294.964844 370.839844 292.535156 370.839844 292.535156 369.222656 C 292.535156 367.601562 294.964844 367.601562 294.964844 369.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.867188 385.867188 C 140.867188 387.484375 138.4375 387.484375 138.4375 385.867188 C 138.4375 384.246094 140.867188 384.246094 140.867188 385.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.871094 310.265625 C 280.871094 311.886719 278.441406 311.886719 278.441406 310.265625 C 278.441406 308.648438 280.871094 308.648438 280.871094 310.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.964844 316.847656 C 297.964844 318.46875 295.535156 318.46875 295.535156 316.847656 C 295.535156 315.230469 297.964844 315.230469 297.964844 316.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.472656 282.289062 C 337.472656 283.910156 335.042969 283.910156 335.042969 282.289062 C 335.042969 280.671875 337.472656 280.671875 337.472656 282.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.472656 229.585938 C 270.472656 231.207031 268.042969 231.207031 268.042969 229.585938 C 268.042969 227.96875 270.472656 227.96875 270.472656 229.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.90625 247.527344 C 340.90625 249.148438 338.476562 249.148438 338.476562 247.527344 C 338.476562 245.90625 340.90625 245.90625 340.90625 247.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.460938 328.34375 C 350.460938 329.960938 348.03125 329.960938 348.03125 328.34375 C 348.03125 326.722656 350.460938 326.722656 350.460938 328.34375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.984375 70.910156 L 209.621094 73.746094 L 206.347656 73.746094 Z M 207.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.542969 251.523438 C 288.542969 253.140625 286.113281 253.140625 286.113281 251.523438 C 286.113281 249.902344 288.542969 249.902344 288.542969 251.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.453125 70.910156 L 196.085938 73.746094 L 192.816406 73.746094 Z M 194.453125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.109375 186.945312 C 259.109375 188.5625 256.679688 188.5625 256.679688 186.945312 C 256.679688 185.324219 259.109375 185.324219 259.109375 186.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.769531 255.296875 C 281.769531 256.917969 279.339844 256.917969 279.339844 255.296875 C 279.339844 253.679688 281.769531 253.679688 281.769531 255.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.480469 193.4375 C 317.480469 195.054688 315.050781 195.054688 315.050781 193.4375 C 315.050781 191.816406 317.480469 191.816406 317.480469 193.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.777344 201.628906 C 271.777344 203.246094 269.347656 203.246094 269.347656 201.628906 C 269.347656 200.007812 271.777344 200.007812 271.777344 201.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.089844 70.910156 L 129.722656 73.746094 L 126.453125 73.746094 Z M 128.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.96875 387.566406 C 289.96875 389.1875 287.539062 389.1875 287.539062 387.566406 C 287.539062 385.945312 289.96875 385.945312 289.96875 387.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.253906 70.910156 L 133.886719 73.746094 L 130.617188 73.746094 Z M 132.253906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.023438 70.910156 L 321.660156 73.746094 L 318.386719 73.746094 Z M 320.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.480469 345.703125 C 254.480469 347.324219 252.050781 347.324219 252.050781 345.703125 C 252.050781 344.082031 254.480469 344.082031 254.480469 345.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.570312 254.332031 C 238.570312 255.949219 236.140625 255.949219 236.140625 254.332031 C 236.140625 252.710938 238.570312 252.710938 238.570312 254.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.464844 70.910156 L 134.101562 73.746094 L 130.828125 73.746094 Z M 132.464844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.511719 165.546875 C 218.511719 167.164062 216.082031 167.164062 216.082031 165.546875 C 216.082031 163.925781 218.511719 163.925781 218.511719 165.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.414062 70.910156 L 263.050781 73.746094 L 259.777344 73.746094 Z M 261.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.808594 233.734375 C 251.808594 235.351562 249.378906 235.351562 249.378906 233.734375 C 249.378906 232.113281 251.808594 232.113281 251.808594 233.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.449219 276.964844 C 289.449219 278.585938 287.019531 278.585938 287.019531 276.964844 C 287.019531 275.347656 289.449219 275.347656 289.449219 276.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.714844 290.566406 C 318.714844 292.1875 316.285156 292.1875 316.285156 290.566406 C 316.285156 288.949219 318.714844 288.949219 318.714844 290.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.734375 211.222656 C 184.734375 212.839844 182.304688 212.839844 182.304688 211.222656 C 182.304688 209.601562 184.734375 209.601562 184.734375 211.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.84375 264.074219 C 305.84375 265.691406 303.414062 265.691406 303.414062 264.074219 C 303.414062 262.453125 305.84375 262.453125 305.84375 264.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.585938 203.757812 C 241.585938 205.378906 239.15625 205.378906 239.15625 203.757812 C 239.15625 202.136719 241.585938 202.136719 241.585938 203.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.628906 285.597656 C 291.628906 287.21875 289.199219 287.21875 289.199219 285.597656 C 289.199219 283.980469 291.628906 283.980469 291.628906 285.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.917969 70.910156 L 294.554688 73.746094 L 291.285156 73.746094 Z M 292.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.632812 248.308594 C 304.632812 249.925781 302.203125 249.925781 302.203125 248.308594 C 302.203125 246.6875 304.632812 246.6875 304.632812 248.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.472656 224.671875 C 258.472656 226.289062 256.039062 226.289062 256.039062 224.671875 C 256.039062 223.050781 258.472656 223.050781 258.472656 224.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.839844 207.964844 C 263.839844 209.585938 261.410156 209.585938 261.410156 207.964844 C 261.410156 206.34375 263.839844 206.34375 263.839844 207.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131 70.910156 L 132.636719 73.746094 L 129.363281 73.746094 Z M 131 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.554688 260.855469 C 250.554688 262.476562 248.125 262.476562 248.125 260.855469 C 248.125 259.234375 250.554688 259.234375 250.554688 260.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.019531 158.050781 C 287.019531 159.671875 284.589844 159.671875 284.589844 158.050781 C 284.589844 156.429688 287.019531 156.429688 287.019531 158.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.585938 86.765625 C 227.585938 88.382812 225.15625 88.382812 225.15625 86.765625 C 225.15625 85.144531 227.585938 85.144531 227.585938 86.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.59375 200.414062 C 243.59375 202.03125 241.164062 202.03125 241.164062 200.414062 C 241.164062 198.792969 243.59375 198.792969 243.59375 200.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.015625 70.910156 L 220.652344 73.746094 L 217.378906 73.746094 Z M 219.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.117188 278.78125 C 264.117188 280.402344 261.6875 280.402344 261.6875 278.78125 C 261.6875 277.164062 264.117188 277.164062 264.117188 278.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.351562 194.558594 C 264.351562 196.179688 261.921875 196.179688 261.921875 194.558594 C 261.921875 192.9375 264.351562 192.9375 264.351562 194.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.824219 259.304688 C 264.824219 260.925781 262.394531 260.925781 262.394531 259.304688 C 262.394531 257.683594 264.824219 257.683594 264.824219 259.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.71875 231.59375 C 321.71875 233.214844 319.289062 233.214844 319.289062 231.59375 C 319.289062 229.976562 321.71875 229.976562 321.71875 231.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.515625 70.910156 L 279.152344 73.746094 L 275.878906 73.746094 Z M 277.515625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.265625 418.691406 L 141.902344 415.855469 L 138.632812 415.855469 Z M 140.265625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.789062 70.910156 L 127.425781 73.746094 L 124.152344 73.746094 Z M 125.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.789062 282.214844 C 283.789062 283.835938 281.359375 283.835938 281.359375 282.214844 C 281.359375 280.597656 283.789062 280.597656 283.789062 282.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.855469 97.066406 C 211.855469 98.6875 209.425781 98.6875 209.425781 97.066406 C 209.425781 95.449219 211.855469 95.449219 211.855469 97.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.738281 70.910156 L 153.375 73.746094 L 150.101562 73.746094 Z M 151.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.34375 386.125 C 259.34375 387.746094 256.914062 387.746094 256.914062 386.125 C 256.914062 384.503906 259.34375 384.503906 259.34375 386.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.089844 70.910156 L 141.726562 73.746094 L 138.453125 73.746094 Z M 140.089844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.664062 70.910156 L 169.300781 73.746094 L 166.027344 73.746094 Z M 167.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.425781 265.402344 C 299.425781 267.023438 296.996094 267.023438 296.996094 265.402344 C 296.996094 263.78125 299.425781 263.78125 299.425781 265.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.839844 150.183594 C 197.839844 151.804688 195.410156 151.804688 195.410156 150.183594 C 195.410156 148.566406 197.839844 148.566406 197.839844 150.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 182.292969 104.121094 C 182.292969 105.742188 179.863281 105.742188 179.863281 104.121094 C 179.863281 102.5 182.292969 102.5 182.292969 104.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 377.289062 180.050781 C 377.289062 181.671875 374.855469 181.671875 374.855469 180.050781 C 374.855469 178.433594 377.289062 178.433594 377.289062 180.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 363.714844 70.910156 L 365.351562 73.746094 L 362.078125 73.746094 Z M 363.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.4375 270.457031 C 238.4375 272.074219 236.007812 272.074219 236.007812 270.457031 C 236.007812 268.835938 238.4375 268.835938 238.4375 270.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 354.046875 286.988281 C 354.046875 288.609375 351.617188 288.609375 351.617188 286.988281 C 351.617188 285.371094 354.046875 285.371094 354.046875 286.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.296875 73.441406 C 288.296875 75.0625 285.867188 75.0625 285.867188 73.441406 C 285.867188 71.820312 288.296875 71.820312 288.296875 73.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.398438 217.464844 C 259.398438 219.085938 256.96875 219.085938 256.96875 217.464844 C 256.96875 215.847656 259.398438 215.847656 259.398438 217.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.230469 418.691406 L 130.867188 415.855469 L 127.59375 415.855469 Z M 129.230469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.21875 418.691406 L 125.855469 415.855469 L 122.582031 415.855469 Z M 124.21875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.921875 70.910156 L 159.558594 73.746094 L 156.285156 73.746094 Z M 157.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.621094 151.46875 C 161.621094 153.089844 159.191406 153.089844 159.191406 151.46875 C 159.191406 149.851562 161.621094 149.851562 161.621094 151.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.855469 222.191406 C 139.855469 223.8125 137.425781 223.8125 137.425781 222.191406 C 137.425781 220.570312 139.855469 220.570312 139.855469 222.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.761719 140.4375 C 264.761719 142.054688 262.332031 142.054688 262.332031 140.4375 C 262.332031 138.816406 264.761719 138.816406 264.761719 140.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.628906 316.457031 C 287.628906 318.078125 285.199219 318.078125 285.199219 316.457031 C 285.199219 314.835938 287.628906 314.835938 287.628906 316.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.527344 70.910156 L 158.164062 73.746094 L 154.890625 73.746094 Z M 156.527344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.597656 276.355469 C 140.597656 277.976562 138.167969 277.976562 138.167969 276.355469 C 138.167969 274.738281 140.597656 274.738281 140.597656 276.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.125 70.910156 L 202.761719 73.746094 L 199.488281 73.746094 Z M 201.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.25 158.148438 C 236.25 159.769531 233.820312 159.769531 233.820312 158.148438 C 233.820312 156.53125 236.25 156.53125 236.25 158.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.386719 313.558594 C 249.386719 315.179688 246.957031 315.179688 246.957031 313.558594 C 246.957031 311.941406 249.386719 311.941406 249.386719 313.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.890625 309.492188 C 263.890625 311.113281 261.460938 311.113281 261.460938 309.492188 C 261.460938 307.871094 263.890625 307.871094 263.890625 309.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.714844 210.980469 C 260.714844 212.601562 258.285156 212.601562 258.285156 210.980469 C 258.285156 209.363281 260.714844 209.363281 260.714844 210.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.066406 163.714844 C 205.066406 165.335938 202.636719 165.335938 202.636719 163.714844 C 202.636719 162.09375 205.066406 162.09375 205.066406 163.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 349.203125 402.121094 C 349.203125 403.742188 346.773438 403.742188 346.773438 402.121094 C 346.773438 400.5 349.203125 400.5 349.203125 402.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.105469 288.269531 C 323.105469 289.886719 320.675781 289.886719 320.675781 288.269531 C 320.675781 286.648438 323.105469 286.648438 323.105469 288.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.421875 191.046875 C 242.421875 192.664062 239.992188 192.664062 239.992188 191.046875 C 239.992188 189.425781 242.421875 189.425781 242.421875 191.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.039062 320.894531 C 288.039062 322.515625 285.609375 322.515625 285.609375 320.894531 C 285.609375 319.273438 288.039062 319.273438 288.039062 320.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.285156 114.1875 C 248.285156 115.808594 245.855469 115.808594 245.855469 114.1875 C 245.855469 112.566406 248.285156 112.566406 248.285156 114.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.980469 304.085938 C 291.980469 305.707031 289.550781 305.707031 289.550781 304.085938 C 289.550781 302.464844 291.980469 302.464844 291.980469 304.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.550781 181.683594 C 150.550781 183.304688 148.121094 183.304688 148.121094 181.683594 C 148.121094 180.066406 150.550781 180.066406 150.550781 181.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.375 253.136719 C 266.375 254.757812 263.941406 254.757812 263.941406 253.136719 C 263.941406 251.515625 266.375 251.515625 266.375 253.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.648438 245.632812 C 295.648438 247.253906 293.21875 247.253906 293.21875 245.632812 C 293.21875 244.011719 295.648438 244.011719 295.648438 245.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.230469 225.8125 C 287.230469 227.433594 284.800781 227.433594 284.800781 225.8125 C 284.800781 224.191406 287.230469 224.191406 287.230469 225.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.015625 418.691406 L 140.652344 415.855469 L 137.382812 415.855469 Z M 139.015625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.460938 279.976562 C 296.460938 281.597656 294.03125 281.597656 294.03125 279.976562 C 294.03125 278.359375 296.460938 278.359375 296.460938 279.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.011719 240.996094 C 230.011719 242.617188 227.582031 242.617188 227.582031 240.996094 C 227.582031 239.375 230.011719 239.375 230.011719 240.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.34375 349.9375 C 219.34375 351.558594 216.914062 351.558594 216.914062 349.9375 C 216.914062 348.320312 219.34375 348.320312 219.34375 349.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.433594 289.21875 C 269.433594 290.839844 267.003906 290.839844 267.003906 289.21875 C 267.003906 287.601562 269.433594 287.601562 269.433594 289.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.3125 418.691406 L 273.949219 415.855469 L 270.675781 415.855469 Z M 272.3125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.988281 283.820312 C 287.988281 285.441406 285.558594 285.441406 285.558594 283.820312 C 285.558594 282.203125 287.988281 282.203125 287.988281 283.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.746094 169.6875 C 297.746094 171.308594 295.316406 171.308594 295.316406 169.6875 C 295.316406 168.066406 297.746094 168.066406 297.746094 169.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.496094 263.164062 C 243.496094 264.78125 241.066406 264.78125 241.066406 263.164062 C 241.066406 261.542969 243.496094 261.542969 243.496094 263.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.722656 286.339844 C 263.722656 287.957031 261.292969 287.957031 261.292969 286.339844 C 261.292969 284.71875 263.722656 284.71875 263.722656 286.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.136719 300.261719 C 217.136719 301.882812 214.707031 301.882812 214.707031 300.261719 C 214.707031 298.640625 217.136719 298.640625 217.136719 300.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.21875 302.988281 C 242.21875 304.609375 239.789062 304.609375 239.789062 302.988281 C 239.789062 301.371094 242.21875 301.371094 242.21875 302.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.328125 209.644531 C 220.328125 211.265625 217.898438 211.265625 217.898438 209.644531 C 217.898438 208.023438 220.328125 208.023438 220.328125 209.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.464844 200.003906 C 302.464844 201.625 300.035156 201.625 300.035156 200.003906 C 300.035156 198.382812 302.464844 198.382812 302.464844 200.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.921875 350.644531 C 217.921875 352.265625 215.492188 352.265625 215.492188 350.644531 C 215.492188 349.023438 217.921875 349.023438 217.921875 350.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.488281 289.617188 C 254.488281 291.238281 252.058594 291.238281 252.058594 289.617188 C 252.058594 287.996094 254.488281 287.996094 254.488281 289.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.378906 315.75 C 220.378906 317.371094 217.949219 317.371094 217.949219 315.75 C 217.949219 314.128906 220.378906 314.128906 220.378906 315.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.011719 231.855469 C 262.011719 233.476562 259.582031 233.476562 259.582031 231.855469 C 259.582031 230.238281 262.011719 230.238281 262.011719 231.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.960938 220.65625 C 260.960938 222.273438 258.53125 222.273438 258.53125 220.65625 C 258.53125 219.035156 260.960938 219.035156 260.960938 220.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.113281 197.5625 C 252.113281 199.183594 249.683594 199.183594 249.683594 197.5625 C 249.683594 195.941406 252.113281 195.941406 252.113281 197.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.203125 211.441406 C 269.203125 213.0625 266.773438 213.0625 266.773438 211.441406 C 266.773438 209.824219 269.203125 209.824219 269.203125 211.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.191406 219.304688 C 297.191406 220.925781 294.761719 220.925781 294.761719 219.304688 C 294.761719 217.6875 297.191406 217.6875 297.191406 219.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.960938 210.0625 C 273.960938 211.683594 271.53125 211.683594 271.53125 210.0625 C 271.53125 208.441406 273.960938 208.441406 273.960938 210.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.101562 70.910156 L 207.738281 73.746094 L 204.464844 73.746094 Z M 206.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.46875 210.246094 C 177.46875 211.867188 175.039062 211.867188 175.039062 210.246094 C 175.039062 208.625 177.46875 208.625 177.46875 210.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.339844 288.152344 C 216.339844 289.773438 213.910156 289.773438 213.910156 288.152344 C 213.910156 286.53125 216.339844 286.53125 216.339844 288.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.066406 272.023438 C 220.066406 273.644531 217.636719 273.644531 217.636719 272.023438 C 217.636719 270.40625 220.066406 270.40625 220.066406 272.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.164062 280.726562 C 237.164062 282.347656 234.734375 282.347656 234.734375 280.726562 C 234.734375 279.105469 237.164062 279.105469 237.164062 280.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.664062 316.054688 C 329.664062 317.671875 327.230469 317.671875 327.230469 316.054688 C 327.230469 314.433594 329.664062 314.433594 329.664062 316.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.097656 220.921875 C 273.097656 222.542969 270.667969 222.542969 270.667969 220.921875 C 270.667969 219.300781 273.097656 219.300781 273.097656 220.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.625 246.222656 C 242.625 247.84375 240.195312 247.84375 240.195312 246.222656 C 240.195312 244.601562 242.625 244.601562 242.625 246.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.777344 70.910156 L 221.414062 73.746094 L 218.140625 73.746094 Z M 219.777344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.410156 238.960938 C 249.410156 240.582031 246.976562 240.582031 246.976562 238.960938 C 246.976562 237.339844 249.410156 237.339844 249.410156 238.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.28125 236.777344 C 213.28125 238.398438 210.847656 238.398438 210.847656 236.777344 C 210.847656 235.15625 213.28125 235.15625 213.28125 236.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.367188 241.4375 C 156.367188 243.058594 153.9375 243.058594 153.9375 241.4375 C 153.9375 239.816406 156.367188 239.816406 156.367188 241.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.746094 262.164062 C 175.746094 263.785156 173.316406 263.785156 173.316406 262.164062 C 173.316406 260.542969 175.746094 260.542969 175.746094 262.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.605469 275.984375 C 317.605469 277.605469 315.175781 277.605469 315.175781 275.984375 C 315.175781 274.363281 317.605469 274.363281 317.605469 275.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.730469 98.28125 C 196.730469 99.902344 194.300781 99.902344 194.300781 98.28125 C 194.300781 96.660156 196.730469 96.660156 196.730469 98.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.148438 246.339844 C 185.148438 247.960938 182.71875 247.960938 182.71875 246.339844 C 182.71875 244.71875 185.148438 244.71875 185.148438 246.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.492188 243.652344 C 241.492188 245.273438 239.0625 245.273438 239.0625 243.652344 C 239.0625 242.035156 241.492188 242.035156 241.492188 243.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.464844 302.292969 C 298.464844 303.910156 296.035156 303.910156 296.035156 302.292969 C 296.035156 300.671875 298.464844 300.671875 298.464844 302.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.660156 297.640625 C 219.660156 299.261719 217.230469 299.261719 217.230469 297.640625 C 217.230469 296.023438 219.660156 296.023438 219.660156 297.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.894531 136.261719 C 298.894531 137.882812 296.464844 137.882812 296.464844 136.261719 C 296.464844 134.640625 298.894531 134.640625 298.894531 136.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.253906 168.914062 C 174.253906 170.535156 171.824219 170.535156 171.824219 168.914062 C 171.824219 167.292969 174.253906 167.292969 174.253906 168.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.183594 204.578125 C 135.183594 206.199219 132.75 206.199219 132.75 204.578125 C 132.75 202.957031 135.183594 202.957031 135.183594 204.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.664062 275.265625 C 259.664062 276.886719 257.234375 276.886719 257.234375 275.265625 C 257.234375 273.648438 259.664062 273.648438 259.664062 275.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.277344 379.789062 C 247.277344 381.410156 244.847656 381.410156 244.847656 379.789062 C 244.847656 378.171875 247.277344 378.171875 247.277344 379.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.507812 167.382812 C 148.507812 169 146.078125 169 146.078125 167.382812 C 146.078125 165.761719 148.507812 165.761719 148.507812 167.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.179688 70.910156 L 250.816406 73.746094 L 247.542969 73.746094 Z M 249.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.285156 172.484375 C 153.285156 174.105469 150.855469 174.105469 150.855469 172.484375 C 150.855469 170.863281 153.285156 170.863281 153.285156 172.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.738281 245 C 122.738281 246.621094 120.308594 246.621094 120.308594 245 C 120.308594 243.378906 122.738281 243.378906 122.738281 245 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.035156 70.910156 L 139.671875 73.746094 L 136.398438 73.746094 Z M 138.035156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.464844 418.691406 L 317.101562 415.855469 L 313.832031 415.855469 Z M 315.464844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 371.035156 251.292969 C 371.035156 252.914062 368.605469 252.914062 368.605469 251.292969 C 368.605469 249.671875 371.035156 249.671875 371.035156 251.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.058594 228.65625 C 315.058594 230.273438 312.628906 230.273438 312.628906 228.65625 C 312.628906 227.035156 315.058594 227.035156 315.058594 228.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.78125 216.574219 C 167.78125 218.195312 165.351562 218.195312 165.351562 216.574219 C 165.351562 214.953125 167.78125 214.953125 167.78125 216.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.359375 80.835938 C 199.359375 82.453125 196.929688 82.453125 196.929688 80.835938 C 196.929688 79.214844 199.359375 79.214844 199.359375 80.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.085938 249.996094 C 331.085938 251.617188 328.65625 251.617188 328.65625 249.996094 C 328.65625 248.378906 331.085938 248.378906 331.085938 249.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.171875 175.117188 C 301.171875 176.734375 298.738281 176.734375 298.738281 175.117188 C 298.738281 173.496094 301.171875 173.496094 301.171875 175.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.59375 70.910156 L 192.230469 73.746094 L 188.957031 73.746094 Z M 190.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125 190.742188 C 125 192.359375 122.570312 192.359375 122.570312 190.742188 C 122.570312 189.121094 125 189.121094 125 190.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.140625 291.4375 C 302.140625 293.058594 299.710938 293.058594 299.710938 291.4375 C 299.710938 289.816406 302.140625 289.816406 302.140625 291.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.582031 257.664062 C 318.582031 259.285156 316.152344 259.285156 316.152344 257.664062 C 316.152344 256.042969 318.582031 256.042969 318.582031 257.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.898438 242.011719 C 328.898438 243.632812 326.464844 243.632812 326.464844 242.011719 C 326.464844 240.394531 328.898438 240.394531 328.898438 242.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.957031 70.910156 L 249.59375 73.746094 L 246.320312 73.746094 Z M 247.957031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.683594 284.5 C 308.683594 286.121094 306.253906 286.121094 306.253906 284.5 C 306.253906 282.878906 308.683594 282.878906 308.683594 284.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.542969 241.699219 C 324.542969 243.320312 322.113281 243.320312 322.113281 241.699219 C 322.113281 240.082031 324.542969 240.082031 324.542969 241.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.089844 245.0625 C 292.089844 246.683594 289.660156 246.683594 289.660156 245.0625 C 289.660156 243.445312 292.089844 243.445312 292.089844 245.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.457031 117.195312 C 119.457031 118.816406 117.027344 118.816406 117.027344 117.195312 C 117.027344 115.578125 119.457031 115.578125 119.457031 117.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.800781 295.949219 C 241.800781 297.570312 239.371094 297.570312 239.371094 295.949219 C 239.371094 294.328125 241.800781 294.328125 241.800781 295.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.003906 89.945312 C 262.003906 91.566406 259.574219 91.566406 259.574219 89.945312 C 259.574219 88.328125 262.003906 88.328125 262.003906 89.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.382812 175.121094 C 302.382812 176.742188 299.949219 176.742188 299.949219 175.121094 C 299.949219 173.503906 302.382812 173.503906 302.382812 175.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.628906 70.910156 L 149.265625 73.746094 L 145.992188 73.746094 Z M 147.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.503906 270.902344 C 244.503906 272.523438 242.074219 272.523438 242.074219 270.902344 C 242.074219 269.28125 244.503906 269.28125 244.503906 270.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.464844 286.101562 C 212.464844 287.722656 210.035156 287.722656 210.035156 286.101562 C 210.035156 284.480469 212.464844 284.480469 212.464844 286.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.632812 141.964844 C 150.632812 143.585938 148.203125 143.585938 148.203125 141.964844 C 148.203125 140.347656 150.632812 140.347656 150.632812 141.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.441406 226.488281 C 174.441406 228.105469 172.011719 228.105469 172.011719 226.488281 C 172.011719 224.867188 174.441406 224.867188 174.441406 226.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.101562 275.941406 C 232.101562 277.5625 229.671875 277.5625 229.671875 275.941406 C 229.671875 274.320312 232.101562 274.320312 232.101562 275.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.3125 367.980469 C 219.3125 369.601562 216.882812 369.601562 216.882812 367.980469 C 216.882812 366.359375 219.3125 366.359375 219.3125 367.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.570312 371.480469 C 180.570312 373.101562 178.140625 373.101562 178.140625 371.480469 C 178.140625 369.863281 180.570312 369.863281 180.570312 371.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.699219 70.910156 L 271.335938 73.746094 L 268.0625 73.746094 Z M 269.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.863281 318.4375 C 306.863281 320.058594 304.433594 320.058594 304.433594 318.4375 C 304.433594 316.816406 306.863281 316.816406 306.863281 318.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.402344 267.941406 C 246.402344 269.5625 243.972656 269.5625 243.972656 267.941406 C 243.972656 266.324219 246.402344 266.324219 246.402344 267.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.070312 144.992188 C 143.070312 146.613281 140.640625 146.613281 140.640625 144.992188 C 140.640625 143.375 143.070312 143.375 143.070312 144.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.988281 283.777344 C 282.988281 285.398438 280.558594 285.398438 280.558594 283.777344 C 280.558594 282.160156 282.988281 282.160156 282.988281 283.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.109375 382.710938 C 119.109375 384.332031 116.675781 384.332031 116.675781 382.710938 C 116.675781 381.089844 119.109375 381.089844 119.109375 382.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.511719 418.691406 L 165.148438 415.855469 L 161.875 415.855469 Z M 163.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.777344 319.621094 C 259.777344 321.238281 257.347656 321.238281 257.347656 319.621094 C 257.347656 318 259.777344 318 259.777344 319.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.101562 266.65625 C 217.101562 268.277344 214.671875 268.277344 214.671875 266.65625 C 214.671875 265.035156 217.101562 265.035156 217.101562 266.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.332031 84.226562 C 251.332031 85.84375 248.902344 85.84375 248.902344 84.226562 C 248.902344 82.605469 251.332031 82.605469 251.332031 84.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.226562 276.984375 C 259.226562 278.605469 256.796875 278.605469 256.796875 276.984375 C 256.796875 275.363281 259.226562 275.363281 259.226562 276.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.679688 70.910156 L 197.316406 73.746094 L 194.042969 73.746094 Z M 195.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.347656 204.71875 C 276.347656 206.339844 273.917969 206.339844 273.917969 204.71875 C 273.917969 203.097656 276.347656 203.097656 276.347656 204.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.726562 418.691406 L 202.363281 415.855469 L 199.089844 415.855469 Z M 200.726562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.71875 210.460938 C 326.71875 212.082031 324.285156 212.082031 324.285156 210.460938 C 324.285156 208.839844 326.71875 208.839844 326.71875 210.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.617188 253.578125 C 119.617188 255.199219 117.1875 255.199219 117.1875 253.578125 C 117.1875 251.960938 119.617188 251.960938 119.617188 253.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.839844 213.507812 C 227.839844 215.128906 225.410156 215.128906 225.410156 213.507812 C 225.410156 211.886719 227.839844 211.886719 227.839844 213.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.148438 233.507812 C 226.148438 235.128906 223.71875 235.128906 223.71875 233.507812 C 223.71875 231.890625 226.148438 231.890625 226.148438 233.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.78125 326.902344 C 330.78125 328.523438 328.351562 328.523438 328.351562 326.902344 C 328.351562 325.285156 330.78125 325.285156 330.78125 326.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.871094 298.941406 C 170.871094 300.5625 168.441406 300.5625 168.441406 298.941406 C 168.441406 297.324219 170.871094 297.324219 170.871094 298.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.125 279.3125 C 169.125 280.933594 166.695312 280.933594 166.695312 279.3125 C 166.695312 277.695312 169.125 277.695312 169.125 279.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.65625 172.433594 C 193.65625 174.050781 191.226562 174.050781 191.226562 172.433594 C 191.226562 170.8125 193.65625 170.8125 193.65625 172.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.339844 197.871094 C 192.339844 199.492188 189.910156 199.492188 189.910156 197.871094 C 189.910156 196.253906 192.339844 196.253906 192.339844 197.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169 102.589844 C 169 104.210938 166.570312 104.210938 166.570312 102.589844 C 166.570312 100.972656 169 100.972656 169 102.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.589844 128.492188 C 147.589844 130.113281 145.15625 130.113281 145.15625 128.492188 C 145.15625 126.871094 147.589844 126.871094 147.589844 128.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.515625 70.910156 L 122.152344 73.746094 L 118.878906 73.746094 Z M 120.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.828125 418.691406 L 168.464844 415.855469 L 165.191406 415.855469 Z M 166.828125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.960938 153.75 C 156.960938 155.367188 154.53125 155.367188 154.53125 153.75 C 154.53125 152.128906 156.960938 152.128906 156.960938 153.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.171875 185.109375 C 214.171875 186.730469 211.742188 186.730469 211.742188 185.109375 C 211.742188 183.488281 214.171875 183.488281 214.171875 185.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.921875 324.066406 C 297.921875 325.6875 295.492188 325.6875 295.492188 324.066406 C 295.492188 322.449219 297.921875 322.449219 297.921875 324.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.414062 294.117188 C 276.414062 295.738281 273.984375 295.738281 273.984375 294.117188 C 273.984375 292.5 276.414062 292.5 276.414062 294.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.957031 303.234375 C 296.957031 304.851562 294.527344 304.851562 294.527344 303.234375 C 294.527344 301.613281 296.957031 301.613281 296.957031 303.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.527344 418.691406 L 192.160156 415.855469 L 188.890625 415.855469 Z M 190.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.640625 204.085938 C 255.640625 205.707031 253.210938 205.707031 253.210938 204.085938 C 253.210938 202.464844 255.640625 202.464844 255.640625 204.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.371094 355.808594 C 203.371094 357.429688 200.941406 357.429688 200.941406 355.808594 C 200.941406 354.1875 203.371094 354.1875 203.371094 355.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.578125 397.6875 C 159.578125 399.308594 157.148438 399.308594 157.148438 397.6875 C 157.148438 396.066406 159.578125 396.066406 159.578125 397.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.515625 300.144531 C 235.515625 301.765625 233.082031 301.765625 233.082031 300.144531 C 233.082031 298.527344 235.515625 298.527344 235.515625 300.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.078125 279.390625 C 176.078125 281.011719 173.648438 281.011719 173.648438 279.390625 C 173.648438 277.769531 176.078125 277.769531 176.078125 279.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.449219 279.269531 C 316.449219 280.890625 314.019531 280.890625 314.019531 279.269531 C 314.019531 277.652344 316.449219 277.652344 316.449219 279.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.769531 229.070312 C 297.769531 230.691406 295.339844 230.691406 295.339844 229.070312 C 295.339844 227.453125 297.769531 227.453125 297.769531 229.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.195312 227.40625 C 286.195312 229.027344 283.765625 229.027344 283.765625 227.40625 C 283.765625 225.785156 286.195312 225.785156 286.195312 227.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.824219 127.222656 C 313.824219 128.84375 311.394531 128.84375 311.394531 127.222656 C 311.394531 125.601562 313.824219 125.601562 313.824219 127.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.542969 265.71875 C 299.542969 267.339844 297.113281 267.339844 297.113281 265.71875 C 297.113281 264.101562 299.542969 264.101562 299.542969 265.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.046875 70.910156 L 299.683594 73.746094 L 296.410156 73.746094 Z M 298.046875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.335938 70.910156 L 186.972656 73.746094 L 183.699219 73.746094 Z M 185.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.414062 237.316406 C 293.414062 238.9375 290.984375 238.9375 290.984375 237.316406 C 290.984375 235.695312 293.414062 235.695312 293.414062 237.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.527344 73.019531 C 245.527344 74.640625 243.097656 74.640625 243.097656 73.019531 C 243.097656 71.402344 245.527344 71.402344 245.527344 73.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.300781 198.976562 C 230.300781 200.597656 227.871094 200.597656 227.871094 198.976562 C 227.871094 197.355469 230.300781 197.355469 230.300781 198.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.214844 90.753906 C 233.214844 92.375 230.785156 92.375 230.785156 90.753906 C 230.785156 89.136719 233.214844 89.136719 233.214844 90.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.277344 205.042969 C 250.277344 206.664062 247.847656 206.664062 247.847656 205.042969 C 247.847656 203.421875 250.277344 203.421875 250.277344 205.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.761719 70.910156 L 189.398438 73.746094 L 186.128906 73.746094 Z M 187.761719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.683594 293.296875 C 239.683594 294.914062 237.253906 294.914062 237.253906 293.296875 C 237.253906 291.675781 239.683594 291.675781 239.683594 293.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.113281 246.242188 C 294.113281 247.863281 291.683594 247.863281 291.683594 246.242188 C 291.683594 244.621094 294.113281 244.621094 294.113281 246.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.613281 73.222656 C 143.613281 74.839844 141.183594 74.839844 141.183594 73.222656 C 141.183594 71.601562 143.613281 71.601562 143.613281 73.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.054688 341.167969 C 190.054688 342.785156 187.625 342.785156 187.625 341.167969 C 187.625 339.546875 190.054688 339.546875 190.054688 341.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.703125 343.949219 C 190.703125 345.570312 188.273438 345.570312 188.273438 343.949219 C 188.273438 342.328125 190.703125 342.328125 190.703125 343.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.6875 331.003906 C 256.6875 332.625 254.257812 332.625 254.257812 331.003906 C 254.257812 329.382812 256.6875 329.382812 256.6875 331.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.699219 70.910156 L 208.335938 73.746094 L 205.0625 73.746094 Z M 206.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.375 228.761719 C 162.375 230.382812 159.945312 230.382812 159.945312 228.761719 C 159.945312 227.144531 162.375 227.144531 162.375 228.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.351562 172.183594 C 254.351562 173.804688 251.921875 173.804688 251.921875 172.183594 C 251.921875 170.5625 254.351562 170.5625 254.351562 172.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.308594 259.042969 C 322.308594 260.660156 319.878906 260.660156 319.878906 259.042969 C 319.878906 257.421875 322.308594 257.421875 322.308594 259.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.121094 160.238281 C 289.121094 161.859375 286.691406 161.859375 286.691406 160.238281 C 286.691406 158.617188 289.121094 158.617188 289.121094 160.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.675781 232.394531 C 309.675781 234.015625 307.246094 234.015625 307.246094 232.394531 C 307.246094 230.773438 309.675781 230.773438 309.675781 232.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.125 288.472656 C 288.125 290.09375 285.695312 290.09375 285.695312 288.472656 C 285.695312 286.855469 288.125 286.855469 288.125 288.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.96875 228.222656 C 304.96875 229.84375 302.539062 229.84375 302.539062 228.222656 C 302.539062 226.605469 304.96875 226.605469 304.96875 228.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.765625 317.183594 C 156.765625 318.800781 154.335938 318.800781 154.335938 317.183594 C 154.335938 315.5625 156.765625 315.5625 156.765625 317.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.625 250.046875 C 274.625 251.664062 272.191406 251.664062 272.191406 250.046875 C 272.191406 248.425781 274.625 248.425781 274.625 250.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.84375 228.675781 C 266.84375 230.296875 264.414062 230.296875 264.414062 228.675781 C 264.414062 227.054688 266.84375 227.054688 266.84375 228.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.746094 262.425781 C 269.746094 264.046875 267.316406 264.046875 267.316406 262.425781 C 267.316406 260.804688 269.746094 260.804688 269.746094 262.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.605469 161.542969 C 251.605469 163.164062 249.175781 163.164062 249.175781 161.542969 C 249.175781 159.921875 251.605469 159.921875 251.605469 161.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.703125 358.710938 C 266.703125 360.332031 264.273438 360.332031 264.273438 358.710938 C 264.273438 357.089844 266.703125 357.089844 266.703125 358.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.582031 418.691406 L 350.21875 415.855469 L 346.945312 415.855469 Z M 348.582031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.019531 91.253906 C 278.019531 92.871094 275.589844 92.871094 275.589844 91.253906 C 275.589844 89.632812 278.019531 89.632812 278.019531 91.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.011719 177.382812 C 274.011719 179 271.582031 179 271.582031 177.382812 C 271.582031 175.761719 274.011719 175.761719 274.011719 177.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.828125 285.464844 C 253.828125 287.082031 251.398438 287.082031 251.398438 285.464844 C 251.398438 283.84375 253.828125 283.84375 253.828125 285.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.238281 177.738281 C 304.238281 179.359375 301.808594 179.359375 301.808594 177.738281 C 301.808594 176.121094 304.238281 176.121094 304.238281 177.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.230469 181.9375 C 258.230469 183.558594 255.800781 183.558594 255.800781 181.9375 C 255.800781 180.316406 258.230469 180.316406 258.230469 181.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.640625 243.46875 C 254.640625 245.085938 252.210938 245.085938 252.210938 243.46875 C 252.210938 241.847656 254.640625 241.847656 254.640625 243.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.890625 246.617188 C 221.890625 248.238281 219.460938 248.238281 219.460938 246.617188 C 219.460938 244.996094 221.890625 244.996094 221.890625 246.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.484375 241.398438 C 224.484375 243.015625 222.054688 243.015625 222.054688 241.398438 C 222.054688 239.777344 224.484375 239.777344 224.484375 241.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.945312 241.132812 C 263.945312 242.753906 261.515625 242.753906 261.515625 241.132812 C 261.515625 239.515625 263.945312 239.515625 263.945312 241.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.425781 70.910156 L 248.0625 73.746094 L 244.789062 73.746094 Z M 246.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.855469 210.492188 C 280.855469 212.113281 278.425781 212.113281 278.425781 210.492188 C 278.425781 208.871094 280.855469 208.871094 280.855469 210.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.625 333.710938 C 279.625 335.332031 277.195312 335.332031 277.195312 333.710938 C 277.195312 332.09375 279.625 332.09375 279.625 333.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.210938 275.949219 C 232.210938 277.570312 229.777344 277.570312 229.777344 275.949219 C 229.777344 274.328125 232.210938 274.328125 232.210938 275.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.203125 70.910156 L 212.839844 73.746094 L 209.570312 73.746094 Z M 211.203125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.816406 70.910156 L 168.453125 73.746094 L 165.183594 73.746094 Z M 166.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.335938 291.078125 C 267.335938 292.699219 264.902344 292.699219 264.902344 291.078125 C 264.902344 289.460938 267.335938 289.460938 267.335938 291.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.648438 237.226562 C 271.648438 238.84375 269.214844 238.84375 269.214844 237.226562 C 269.214844 235.605469 271.648438 235.605469 271.648438 237.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.519531 220.925781 C 252.519531 222.542969 250.089844 222.542969 250.089844 220.925781 C 250.089844 219.304688 252.519531 219.304688 252.519531 220.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.9375 70.910156 L 158.570312 73.746094 L 155.300781 73.746094 Z M 156.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.296875 224.085938 C 267.296875 225.707031 264.867188 225.707031 264.867188 224.085938 C 264.867188 222.46875 267.296875 222.46875 267.296875 224.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.589844 70.910156 L 146.222656 73.746094 L 142.953125 73.746094 Z M 144.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.097656 255.742188 C 175.097656 257.363281 172.667969 257.363281 172.667969 255.742188 C 172.667969 254.121094 175.097656 254.121094 175.097656 255.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.644531 226.667969 C 294.644531 228.285156 292.214844 228.285156 292.214844 226.667969 C 292.214844 225.046875 294.644531 225.046875 294.644531 226.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.933594 389.183594 C 261.933594 390.804688 259.503906 390.804688 259.503906 389.183594 C 259.503906 387.566406 261.933594 387.566406 261.933594 389.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.066406 242.09375 C 337.066406 243.714844 334.636719 243.714844 334.636719 242.09375 C 334.636719 240.476562 337.066406 240.476562 337.066406 242.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.792969 404.199219 C 140.792969 405.816406 138.363281 405.816406 138.363281 404.199219 C 138.363281 402.578125 140.792969 402.578125 140.792969 404.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.042969 251.492188 C 234.042969 253.113281 231.613281 253.113281 231.613281 251.492188 C 231.613281 249.871094 234.042969 249.871094 234.042969 251.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.78125 332.878906 C 243.78125 334.5 241.351562 334.5 241.351562 332.878906 C 241.351562 331.261719 243.78125 331.261719 243.78125 332.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.820312 255.765625 C 229.820312 257.382812 227.390625 257.382812 227.390625 255.765625 C 227.390625 254.144531 229.820312 254.144531 229.820312 255.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.542969 285.566406 C 205.542969 287.183594 203.113281 287.183594 203.113281 285.566406 C 203.113281 283.945312 205.542969 283.945312 205.542969 285.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.835938 238 C 255.835938 239.617188 253.40625 239.617188 253.40625 238 C 253.40625 236.378906 255.835938 236.378906 255.835938 238 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.691406 240.078125 C 247.691406 241.699219 245.261719 241.699219 245.261719 240.078125 C 245.261719 238.457031 247.691406 238.457031 247.691406 240.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.847656 272.195312 C 163.847656 273.8125 161.417969 273.8125 161.417969 272.195312 C 161.417969 270.574219 163.847656 270.574219 163.847656 272.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.867188 245.636719 C 265.867188 247.257812 263.4375 247.257812 263.4375 245.636719 C 263.4375 244.015625 265.867188 244.015625 265.867188 245.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.757812 159.578125 C 167.757812 161.199219 165.328125 161.199219 165.328125 159.578125 C 165.328125 157.957031 167.757812 157.957031 167.757812 159.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.519531 268.746094 C 266.519531 270.367188 264.089844 270.367188 264.089844 268.746094 C 264.089844 267.125 266.519531 267.125 266.519531 268.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.648438 226.878906 C 278.648438 228.5 276.21875 228.5 276.21875 226.878906 C 276.21875 225.257812 278.648438 225.257812 278.648438 226.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.078125 156.929688 C 236.078125 158.546875 233.648438 158.546875 233.648438 156.929688 C 233.648438 155.308594 236.078125 155.308594 236.078125 156.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.308594 208.234375 C 275.308594 209.855469 272.878906 209.855469 272.878906 208.234375 C 272.878906 206.613281 275.308594 206.613281 275.308594 208.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.488281 212.578125 C 271.488281 214.199219 269.058594 214.199219 269.058594 212.578125 C 269.058594 210.957031 271.488281 210.957031 271.488281 212.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.039062 287.917969 C 295.039062 289.539062 292.609375 289.539062 292.609375 287.917969 C 292.609375 286.296875 295.039062 286.296875 295.039062 287.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.929688 364.332031 C 203.929688 365.949219 201.5 365.949219 201.5 364.332031 C 201.5 362.710938 203.929688 362.710938 203.929688 364.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.34375 332.847656 C 294.34375 334.464844 291.914062 334.464844 291.914062 332.847656 C 291.914062 331.226562 294.34375 331.226562 294.34375 332.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.453125 275.414062 C 199.453125 277.03125 197.023438 277.03125 197.023438 275.414062 C 197.023438 273.792969 199.453125 273.792969 199.453125 275.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.660156 243.570312 C 207.660156 245.1875 205.230469 245.1875 205.230469 243.570312 C 205.230469 241.949219 207.660156 241.949219 207.660156 243.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.207031 277.746094 C 305.207031 279.363281 302.777344 279.363281 302.777344 277.746094 C 302.777344 276.125 305.207031 276.125 305.207031 277.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.53125 294.621094 C 264.53125 296.242188 262.101562 296.242188 262.101562 294.621094 C 262.101562 293.003906 264.53125 293.003906 264.53125 294.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.386719 171.925781 C 166.386719 173.546875 163.957031 173.546875 163.957031 171.925781 C 163.957031 170.304688 166.386719 170.304688 166.386719 171.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.8125 180.4375 C 144.8125 182.054688 142.382812 182.054688 142.382812 180.4375 C 142.382812 178.816406 144.8125 178.816406 144.8125 180.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.753906 70.910156 L 191.390625 73.746094 L 188.117188 73.746094 Z M 189.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.804688 213.628906 C 240.804688 215.25 238.375 215.25 238.375 213.628906 C 238.375 212.007812 240.804688 212.007812 240.804688 213.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.371094 179.894531 C 243.371094 181.515625 240.941406 181.515625 240.941406 179.894531 C 240.941406 178.273438 243.371094 178.273438 243.371094 179.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.726562 384.664062 C 121.726562 386.285156 119.296875 386.285156 119.296875 384.664062 C 119.296875 383.046875 121.726562 383.046875 121.726562 384.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.3125 377.855469 C 120.3125 379.472656 117.882812 379.472656 117.882812 377.855469 C 117.882812 376.234375 120.3125 376.234375 120.3125 377.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.976562 99.410156 C 292.976562 101.03125 290.546875 101.03125 290.546875 99.410156 C 290.546875 97.792969 292.976562 97.792969 292.976562 99.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.835938 208.816406 C 262.835938 210.433594 260.402344 210.433594 260.402344 208.816406 C 260.402344 207.195312 262.835938 207.195312 262.835938 208.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.992188 70.910156 L 290.628906 73.746094 L 287.355469 73.746094 Z M 288.992188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.390625 301.734375 C 175.390625 303.351562 172.960938 303.351562 172.960938 301.734375 C 172.960938 300.113281 175.390625 300.113281 175.390625 301.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.808594 235.300781 C 306.808594 236.921875 304.378906 236.921875 304.378906 235.300781 C 304.378906 233.679688 306.808594 233.679688 306.808594 235.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.527344 208.21875 C 294.527344 209.835938 292.097656 209.835938 292.097656 208.21875 C 292.097656 206.597656 294.527344 206.597656 294.527344 208.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.621094 70.910156 L 127.253906 73.746094 L 123.984375 73.746094 Z M 125.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.488281 70.910156 L 161.125 73.746094 L 157.851562 73.746094 Z M 159.488281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.960938 334.339844 C 291.960938 335.960938 289.53125 335.960938 289.53125 334.339844 C 289.53125 332.722656 291.960938 332.722656 291.960938 334.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.824219 321.933594 C 263.824219 323.550781 261.394531 323.550781 261.394531 321.933594 C 261.394531 320.3125 263.824219 320.3125 263.824219 321.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.449219 354.238281 C 249.449219 355.859375 247.019531 355.859375 247.019531 354.238281 C 247.019531 352.617188 249.449219 352.617188 249.449219 354.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.421875 70.910156 L 234.058594 73.746094 L 230.789062 73.746094 Z M 232.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.492188 352.867188 C 169.492188 354.484375 167.0625 354.484375 167.0625 352.867188 C 167.0625 351.246094 169.492188 351.246094 169.492188 352.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.339844 305.597656 C 286.339844 307.21875 283.90625 307.21875 283.90625 305.597656 C 283.90625 303.976562 286.339844 303.976562 286.339844 305.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.035156 418.691406 L 166.671875 415.855469 L 163.398438 415.855469 Z M 165.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.195312 82.265625 C 280.195312 83.886719 277.765625 83.886719 277.765625 82.265625 C 277.765625 80.648438 280.195312 80.648438 280.195312 82.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.140625 70.910156 L 192.777344 73.746094 L 189.507812 73.746094 Z M 191.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.976562 259.519531 C 196.976562 261.140625 194.546875 261.140625 194.546875 259.519531 C 194.546875 257.902344 196.976562 257.902344 196.976562 259.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.265625 350.207031 C 157.265625 351.828125 154.835938 351.828125 154.835938 350.207031 C 154.835938 348.585938 157.265625 348.585938 157.265625 350.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.707031 70.910156 L 284.34375 73.746094 L 281.070312 73.746094 Z M 282.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.839844 194.503906 C 127.839844 196.125 125.410156 196.125 125.410156 194.503906 C 125.410156 192.886719 127.839844 192.886719 127.839844 194.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.589844 331.71875 C 113.589844 333.339844 111.160156 333.339844 111.160156 331.71875 C 111.160156 330.097656 113.589844 330.097656 113.589844 331.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.019531 255.140625 C 167.019531 256.761719 164.589844 256.761719 164.589844 255.140625 C 164.589844 253.523438 167.019531 253.523438 167.019531 255.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.882812 157.296875 C 241.882812 158.917969 239.453125 158.917969 239.453125 157.296875 C 239.453125 155.675781 241.882812 155.675781 241.882812 157.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.886719 145.359375 C 240.886719 146.980469 238.457031 146.980469 238.457031 145.359375 C 238.457031 143.738281 240.886719 143.738281 240.886719 145.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.230469 277.136719 C 220.230469 278.757812 217.800781 278.757812 217.800781 277.136719 C 217.800781 275.519531 220.230469 275.519531 220.230469 277.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.492188 211.148438 C 257.492188 212.769531 255.0625 212.769531 255.0625 211.148438 C 255.0625 209.53125 257.492188 209.53125 257.492188 211.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.015625 418.691406 L 251.648438 415.855469 L 248.378906 415.855469 Z M 250.015625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.328125 337.925781 C 161.328125 339.542969 158.894531 339.542969 158.894531 337.925781 C 158.894531 336.304688 161.328125 336.304688 161.328125 337.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.058594 244.738281 C 281.058594 246.359375 278.628906 246.359375 278.628906 244.738281 C 278.628906 243.121094 281.058594 243.121094 281.058594 244.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.839844 151.421875 C 196.839844 153.042969 194.410156 153.042969 194.410156 151.421875 C 194.410156 149.800781 196.839844 149.800781 196.839844 151.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.476562 70.910156 L 185.113281 73.746094 L 181.839844 73.746094 Z M 183.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.007812 193.164062 C 184.007812 194.785156 181.578125 194.785156 181.578125 193.164062 C 181.578125 191.542969 184.007812 191.542969 184.007812 193.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.484375 418.691406 L 140.121094 415.855469 L 136.847656 415.855469 Z M 138.484375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.183594 98.074219 C 282.183594 99.695312 279.753906 99.695312 279.753906 98.074219 C 279.753906 96.453125 282.183594 96.453125 282.183594 98.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.917969 418.691406 L 110.550781 415.855469 L 107.28125 415.855469 Z M 108.917969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.089844 263.808594 C 296.089844 265.429688 293.660156 265.429688 293.660156 263.808594 C 293.660156 262.1875 296.089844 262.1875 296.089844 263.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.886719 238.984375 C 245.886719 240.601562 243.457031 240.601562 243.457031 238.984375 C 243.457031 237.363281 245.886719 237.363281 245.886719 238.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.6875 290.703125 C 230.6875 292.324219 228.257812 292.324219 228.257812 290.703125 C 228.257812 289.082031 230.6875 289.082031 230.6875 290.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.542969 127.933594 C 196.542969 129.554688 194.113281 129.554688 194.113281 127.933594 C 194.113281 126.3125 196.542969 126.3125 196.542969 127.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.386719 70.910156 L 272.023438 73.746094 L 268.75 73.746094 Z M 270.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.207031 286.460938 C 279.207031 288.078125 276.773438 288.078125 276.773438 286.460938 C 276.773438 284.839844 279.207031 284.839844 279.207031 286.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.96875 185.242188 C 240.96875 186.859375 238.539062 186.859375 238.539062 185.242188 C 238.539062 183.621094 240.96875 183.621094 240.96875 185.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.816406 124.824219 C 174.816406 126.445312 172.386719 126.445312 172.386719 124.824219 C 172.386719 123.207031 174.816406 123.207031 174.816406 124.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.769531 173.273438 C 109.769531 174.894531 107.339844 174.894531 107.339844 173.273438 C 107.339844 171.652344 109.769531 171.652344 109.769531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.453125 230.1875 C 182.453125 231.804688 180.023438 231.804688 180.023438 230.1875 C 180.023438 228.566406 182.453125 228.566406 182.453125 230.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.332031 309.992188 C 176.332031 311.613281 173.902344 311.613281 173.902344 309.992188 C 173.902344 308.371094 176.332031 308.371094 176.332031 309.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.65625 261.699219 C 287.65625 263.320312 285.226562 263.320312 285.226562 261.699219 C 285.226562 260.078125 287.65625 260.078125 287.65625 261.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.953125 287.535156 C 273.953125 289.152344 271.523438 289.152344 271.523438 287.535156 C 271.523438 285.914062 273.953125 285.914062 273.953125 287.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.296875 253.78125 C 201.296875 255.402344 198.867188 255.402344 198.867188 253.78125 C 198.867188 252.160156 201.296875 252.160156 201.296875 253.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.511719 105.269531 C 237.511719 106.890625 235.082031 106.890625 235.082031 105.269531 C 235.082031 103.648438 237.511719 103.648438 237.511719 105.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.125 86.191406 C 167.125 87.8125 164.695312 87.8125 164.695312 86.191406 C 164.695312 84.570312 167.125 84.570312 167.125 86.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.59375 251.449219 C 285.59375 253.070312 283.164062 253.070312 283.164062 251.449219 C 283.164062 249.832031 285.59375 249.832031 285.59375 251.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.628906 250.242188 C 281.628906 251.859375 279.199219 251.859375 279.199219 250.242188 C 279.199219 248.621094 281.628906 248.621094 281.628906 250.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.972656 222.578125 C 155.972656 224.195312 153.542969 224.195312 153.542969 222.578125 C 153.542969 220.957031 155.972656 220.957031 155.972656 222.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.511719 283.914062 C 190.511719 285.53125 188.082031 285.53125 188.082031 283.914062 C 188.082031 282.292969 190.511719 282.292969 190.511719 283.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.730469 254.828125 C 245.730469 256.449219 243.300781 256.449219 243.300781 254.828125 C 243.300781 253.210938 245.730469 253.210938 245.730469 254.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.003906 241.953125 C 214.003906 243.574219 211.574219 243.574219 211.574219 241.953125 C 211.574219 240.335938 214.003906 240.335938 214.003906 241.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.261719 240.589844 C 338.261719 242.210938 335.832031 242.210938 335.832031 240.589844 C 335.832031 238.96875 338.261719 238.96875 338.261719 240.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.292969 80.953125 C 205.292969 82.574219 202.863281 82.574219 202.863281 80.953125 C 202.863281 79.335938 205.292969 79.335938 205.292969 80.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.386719 254.019531 C 239.386719 255.640625 236.957031 255.640625 236.957031 254.019531 C 236.957031 252.398438 239.386719 252.398438 239.386719 254.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.683594 323.679688 C 312.683594 325.300781 310.253906 325.300781 310.253906 323.679688 C 310.253906 322.058594 312.683594 322.058594 312.683594 323.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.421875 70.910156 L 184.058594 73.746094 L 180.785156 73.746094 Z M 182.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.59375 277.273438 C 261.59375 278.894531 259.164062 278.894531 259.164062 277.273438 C 259.164062 275.65625 261.59375 275.65625 261.59375 277.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.644531 281.214844 C 273.644531 282.835938 271.214844 282.835938 271.214844 281.214844 C 271.214844 279.597656 273.644531 279.597656 273.644531 281.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.296875 239.890625 C 242.296875 241.507812 239.867188 241.507812 239.867188 239.890625 C 239.867188 238.269531 242.296875 238.269531 242.296875 239.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.371094 309.214844 C 294.371094 310.835938 291.941406 310.835938 291.941406 309.214844 C 291.941406 307.59375 294.371094 307.59375 294.371094 309.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.820312 344.257812 C 241.820312 345.878906 239.390625 345.878906 239.390625 344.257812 C 239.390625 342.636719 241.820312 342.636719 241.820312 344.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.351562 414.808594 C 264.351562 416.429688 261.921875 416.429688 261.921875 414.808594 C 261.921875 413.1875 264.351562 413.1875 264.351562 414.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.453125 322.113281 C 274.453125 323.734375 272.023438 323.734375 272.023438 322.113281 C 272.023438 320.496094 274.453125 320.496094 274.453125 322.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.257812 277.375 C 293.257812 278.996094 290.824219 278.996094 290.824219 277.375 C 290.824219 275.757812 293.257812 275.757812 293.257812 277.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.640625 304.117188 C 294.640625 305.738281 292.210938 305.738281 292.210938 304.117188 C 292.210938 302.496094 294.640625 302.496094 294.640625 304.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.433594 298.632812 C 332.433594 300.253906 330.003906 300.253906 330.003906 298.632812 C 330.003906 297.015625 332.433594 297.015625 332.433594 298.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.800781 235.796875 C 249.800781 237.417969 247.371094 237.417969 247.371094 235.796875 C 247.371094 234.179688 249.800781 234.179688 249.800781 235.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.40625 261.855469 C 298.40625 263.476562 295.972656 263.476562 295.972656 261.855469 C 295.972656 260.234375 298.40625 260.234375 298.40625 261.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.386719 192.574219 C 269.386719 194.195312 266.957031 194.195312 266.957031 192.574219 C 266.957031 190.953125 269.386719 190.953125 269.386719 192.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.050781 95.4375 C 122.050781 97.058594 119.621094 97.058594 119.621094 95.4375 C 119.621094 93.820312 122.050781 93.820312 122.050781 95.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.886719 185.046875 C 201.886719 186.664062 199.457031 186.664062 199.457031 185.046875 C 199.457031 183.425781 201.886719 183.425781 201.886719 185.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.332031 270.265625 C 277.332031 271.886719 274.902344 271.886719 274.902344 270.265625 C 274.902344 268.644531 277.332031 268.644531 277.332031 270.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.789062 244.960938 C 300.789062 246.582031 298.359375 246.582031 298.359375 244.960938 C 298.359375 243.339844 300.789062 243.339844 300.789062 244.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.988281 155.867188 C 347.988281 157.488281 345.558594 157.488281 345.558594 155.867188 C 345.558594 154.25 347.988281 154.25 347.988281 155.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.28125 272.457031 C 240.28125 274.078125 237.847656 274.078125 237.847656 272.457031 C 237.847656 270.839844 240.28125 270.839844 240.28125 272.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.113281 190.304688 C 236.113281 191.925781 233.683594 191.925781 233.683594 190.304688 C 233.683594 188.683594 236.113281 188.683594 236.113281 190.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.390625 281.355469 C 333.390625 282.976562 330.960938 282.976562 330.960938 281.355469 C 330.960938 279.734375 333.390625 279.734375 333.390625 281.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.035156 210.289062 C 277.035156 211.90625 274.605469 211.90625 274.605469 210.289062 C 274.605469 208.667969 277.035156 208.667969 277.035156 210.289062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.5625 70.910156 L 243.199219 73.746094 L 239.925781 73.746094 Z M 241.5625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.882812 418.691406 L 315.519531 415.855469 L 312.246094 415.855469 Z M 313.882812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.152344 80.960938 C 251.152344 82.582031 248.722656 82.582031 248.722656 80.960938 C 248.722656 79.339844 251.152344 79.339844 251.152344 80.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.265625 251.28125 C 245.265625 252.902344 242.835938 252.902344 242.835938 251.28125 C 242.835938 249.664062 245.265625 249.664062 245.265625 251.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.335938 296.835938 C 263.335938 298.453125 260.90625 298.453125 260.90625 296.835938 C 260.90625 295.214844 263.335938 295.214844 263.335938 296.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.433594 283.910156 C 261.433594 285.53125 259.003906 285.53125 259.003906 283.910156 C 259.003906 282.289062 261.433594 282.289062 261.433594 283.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.984375 220.800781 C 242.984375 222.421875 240.554688 222.421875 240.554688 220.800781 C 240.554688 219.183594 242.984375 219.183594 242.984375 220.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.09375 298.054688 C 282.09375 299.675781 279.664062 299.675781 279.664062 298.054688 C 279.664062 296.4375 282.09375 296.4375 282.09375 298.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.761719 331.121094 C 290.761719 332.742188 288.332031 332.742188 288.332031 331.121094 C 288.332031 329.503906 290.761719 329.503906 290.761719 331.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.105469 192.039062 C 253.105469 193.65625 250.675781 193.65625 250.675781 192.039062 C 250.675781 190.417969 253.105469 190.417969 253.105469 192.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.332031 200.863281 C 296.332031 202.484375 293.902344 202.484375 293.902344 200.863281 C 293.902344 199.242188 296.332031 199.242188 296.332031 200.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.230469 337.96875 C 200.230469 339.589844 197.800781 339.589844 197.800781 337.96875 C 197.800781 336.351562 200.230469 336.351562 200.230469 337.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.488281 301.566406 C 288.488281 303.183594 286.058594 303.183594 286.058594 301.566406 C 286.058594 299.945312 288.488281 299.945312 288.488281 301.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.269531 298.734375 C 300.269531 300.351562 297.839844 300.351562 297.839844 298.734375 C 297.839844 297.113281 300.269531 297.113281 300.269531 298.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.757812 119.863281 C 238.757812 121.484375 236.328125 121.484375 236.328125 119.863281 C 236.328125 118.246094 238.757812 118.246094 238.757812 119.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.796875 325.558594 C 358.796875 327.179688 356.367188 327.179688 356.367188 325.558594 C 356.367188 323.941406 358.796875 323.941406 358.796875 325.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.140625 219.972656 C 274.140625 221.589844 271.710938 221.589844 271.710938 219.972656 C 271.710938 218.351562 274.140625 218.351562 274.140625 219.972656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.847656 70.910156 L 141.484375 73.746094 L 138.210938 73.746094 Z M 139.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.355469 70.910156 L 192.992188 73.746094 L 189.71875 73.746094 Z M 191.355469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.113281 70.910156 L 265.746094 73.746094 L 262.476562 73.746094 Z M 264.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.039062 263.617188 C 283.039062 265.238281 280.609375 265.238281 280.609375 263.617188 C 280.609375 262 283.039062 262 283.039062 263.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.285156 70.910156 L 279.921875 73.746094 L 276.648438 73.746094 Z M 278.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.703125 246.574219 C 291.703125 248.195312 289.273438 248.195312 289.273438 246.574219 C 289.273438 244.957031 291.703125 244.957031 291.703125 246.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.03125 270.027344 C 185.03125 271.644531 182.601562 271.644531 182.601562 270.027344 C 182.601562 268.40625 185.03125 268.40625 185.03125 270.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.085938 170.992188 C 297.085938 172.613281 294.65625 172.613281 294.65625 170.992188 C 294.65625 169.371094 297.085938 169.371094 297.085938 170.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.605469 299.386719 C 206.605469 301.007812 204.175781 301.007812 204.175781 299.386719 C 204.175781 297.765625 206.605469 297.765625 206.605469 299.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.957031 302.53125 C 269.957031 304.152344 267.527344 304.152344 267.527344 302.53125 C 267.527344 300.910156 269.957031 300.910156 269.957031 302.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.746094 70.910156 L 261.382812 73.746094 L 258.109375 73.746094 Z M 259.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.753906 88.621094 C 215.753906 90.242188 213.324219 90.242188 213.324219 88.621094 C 213.324219 87 215.753906 87 215.753906 88.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.621094 189.167969 C 298.621094 190.785156 296.191406 190.785156 296.191406 189.167969 C 296.191406 187.546875 298.621094 187.546875 298.621094 189.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.242188 70.910156 L 233.878906 73.746094 L 230.605469 73.746094 Z M 232.242188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.300781 70.910156 L 249.9375 73.746094 L 246.667969 73.746094 Z M 248.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.699219 310.242188 C 249.699219 311.863281 247.269531 311.863281 247.269531 310.242188 C 247.269531 308.621094 249.699219 308.621094 249.699219 310.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.324219 270.828125 C 265.324219 272.445312 262.894531 272.445312 262.894531 270.828125 C 262.894531 269.207031 265.324219 269.207031 265.324219 270.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.414062 250.183594 C 243.414062 251.800781 240.984375 251.800781 240.984375 250.183594 C 240.984375 248.5625 243.414062 248.5625 243.414062 250.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.679688 212.371094 C 235.679688 213.988281 233.25 213.988281 233.25 212.371094 C 233.25 210.75 235.679688 210.75 235.679688 212.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.382812 178.566406 C 289.382812 180.183594 286.953125 180.183594 286.953125 178.566406 C 286.953125 176.945312 289.382812 176.945312 289.382812 178.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.015625 232.023438 C 280.015625 233.644531 277.582031 233.644531 277.582031 232.023438 C 277.582031 230.402344 280.015625 230.402344 280.015625 232.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.144531 70.910156 L 277.78125 73.746094 L 274.507812 73.746094 Z M 276.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.199219 272.789062 C 288.199219 274.410156 285.769531 274.410156 285.769531 272.789062 C 285.769531 271.167969 288.199219 271.167969 288.199219 272.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.375 279.195312 C 204.375 280.8125 201.945312 280.8125 201.945312 279.195312 C 201.945312 277.574219 204.375 277.574219 204.375 279.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.335938 274.128906 C 277.335938 275.746094 274.90625 275.746094 274.90625 274.128906 C 274.90625 272.507812 277.335938 272.507812 277.335938 274.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.378906 269.871094 C 256.378906 271.492188 253.949219 271.492188 253.949219 269.871094 C 253.949219 268.253906 256.378906 268.253906 256.378906 269.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.195312 318.140625 C 278.195312 319.761719 275.765625 319.761719 275.765625 318.140625 C 275.765625 316.519531 278.195312 316.519531 278.195312 318.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.941406 142.515625 C 151.941406 144.136719 149.511719 144.136719 149.511719 142.515625 C 149.511719 140.894531 151.941406 140.894531 151.941406 142.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.632812 229.992188 C 208.632812 231.613281 206.203125 231.613281 206.203125 229.992188 C 206.203125 228.375 208.632812 228.375 208.632812 229.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 367.664062 264.117188 C 367.664062 265.738281 365.234375 265.738281 365.234375 264.117188 C 365.234375 262.496094 367.664062 262.496094 367.664062 264.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.242188 192.5625 C 225.242188 194.183594 222.8125 194.183594 222.8125 192.5625 C 222.8125 190.941406 225.242188 190.941406 225.242188 192.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 351.917969 297.808594 C 351.917969 299.425781 349.488281 299.425781 349.488281 297.808594 C 349.488281 296.1875 351.917969 296.1875 351.917969 297.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.453125 184.582031 C 301.453125 186.203125 299.023438 186.203125 299.023438 184.582031 C 299.023438 182.960938 301.453125 182.960938 301.453125 184.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.914062 70.910156 L 248.550781 73.746094 L 245.277344 73.746094 Z M 246.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.929688 208.847656 C 264.929688 210.46875 262.5 210.46875 262.5 208.847656 C 262.5 207.226562 264.929688 207.226562 264.929688 208.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.210938 258.382812 C 277.210938 260.003906 274.78125 260.003906 274.78125 258.382812 C 274.78125 256.761719 277.210938 256.761719 277.210938 258.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.945312 115.949219 C 166.945312 117.570312 164.515625 117.570312 164.515625 115.949219 C 164.515625 114.332031 166.945312 114.332031 166.945312 115.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.21875 282.5 C 183.21875 284.121094 180.789062 284.121094 180.789062 282.5 C 180.789062 280.882812 183.21875 280.882812 183.21875 282.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.304688 70.910156 L 268.941406 73.746094 L 265.667969 73.746094 Z M 267.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.433594 201.949219 C 192.433594 203.570312 190.003906 203.570312 190.003906 201.949219 C 190.003906 200.328125 192.433594 200.328125 192.433594 201.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.398438 279.316406 C 177.398438 280.9375 174.964844 280.9375 174.964844 279.316406 C 174.964844 277.699219 177.398438 277.699219 177.398438 279.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.507812 213.414062 C 288.507812 215.035156 286.078125 215.035156 286.078125 213.414062 C 286.078125 211.796875 288.507812 211.796875 288.507812 213.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.578125 253.414062 C 257.578125 255.03125 255.144531 255.03125 255.144531 253.414062 C 255.144531 251.792969 257.578125 251.792969 257.578125 253.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.835938 70.910156 L 130.472656 73.746094 L 127.203125 73.746094 Z M 128.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.714844 237.464844 C 292.714844 239.085938 290.285156 239.085938 290.285156 237.464844 C 290.285156 235.847656 292.714844 235.847656 292.714844 237.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.972656 160.402344 C 271.972656 162.023438 269.542969 162.023438 269.542969 160.402344 C 269.542969 158.78125 271.972656 158.78125 271.972656 160.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.953125 70.910156 L 215.589844 73.746094 L 212.316406 73.746094 Z M 213.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.179688 239.777344 C 244.179688 241.398438 241.75 241.398438 241.75 239.777344 C 241.75 238.15625 244.179688 238.15625 244.179688 239.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.15625 283.613281 C 204.15625 285.230469 201.726562 285.230469 201.726562 283.613281 C 201.726562 281.992188 204.15625 281.992188 204.15625 283.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.019531 418.691406 L 164.65625 415.855469 L 161.382812 415.855469 Z M 163.019531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.660156 70.910156 L 241.296875 73.746094 L 238.023438 73.746094 Z M 239.660156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.5625 70.910156 L 199.199219 73.746094 L 195.925781 73.746094 Z M 197.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.242188 255.300781 C 305.242188 256.921875 302.8125 256.921875 302.8125 255.300781 C 302.8125 253.679688 305.242188 253.679688 305.242188 255.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.996094 333.8125 C 159.996094 335.433594 157.566406 335.433594 157.566406 333.8125 C 157.566406 332.191406 159.996094 332.191406 159.996094 333.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.078125 242.855469 C 298.078125 244.476562 295.648438 244.476562 295.648438 242.855469 C 295.648438 241.234375 298.078125 241.234375 298.078125 242.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.738281 296.316406 C 175.738281 297.9375 173.308594 297.9375 173.308594 296.316406 C 173.308594 294.695312 175.738281 294.695312 175.738281 296.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.988281 279.847656 C 258.988281 281.464844 256.558594 281.464844 256.558594 279.847656 C 256.558594 278.226562 258.988281 278.226562 258.988281 279.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.894531 217.960938 C 244.894531 219.582031 242.464844 219.582031 242.464844 217.960938 C 242.464844 216.34375 244.894531 216.34375 244.894531 217.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.9375 261.824219 C 310.9375 263.445312 308.507812 263.445312 308.507812 261.824219 C 308.507812 260.203125 310.9375 260.203125 310.9375 261.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.894531 285.519531 C 223.894531 287.136719 221.464844 287.136719 221.464844 285.519531 C 221.464844 283.898438 223.894531 283.898438 223.894531 285.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.640625 297.113281 C 219.640625 298.730469 217.210938 298.730469 217.210938 297.113281 C 217.210938 295.492188 219.640625 295.492188 219.640625 297.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.792969 296.976562 C 174.792969 298.59375 172.363281 298.59375 172.363281 296.976562 C 172.363281 295.355469 174.792969 295.355469 174.792969 296.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.125 368.214844 C 165.125 369.835938 162.695312 369.835938 162.695312 368.214844 C 162.695312 366.597656 165.125 366.597656 165.125 368.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.132812 321.152344 C 285.132812 322.773438 282.703125 322.773438 282.703125 321.152344 C 282.703125 319.535156 285.132812 319.535156 285.132812 321.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.011719 223.9375 C 286.011719 225.558594 283.582031 225.558594 283.582031 223.9375 C 283.582031 222.320312 286.011719 222.320312 286.011719 223.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.554688 281.980469 C 303.554688 283.601562 301.125 283.601562 301.125 281.980469 C 301.125 280.359375 303.554688 280.359375 303.554688 281.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.671875 311.609375 C 246.671875 313.230469 244.242188 313.230469 244.242188 311.609375 C 244.242188 309.992188 246.671875 309.992188 246.671875 311.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.589844 337.851562 C 283.589844 339.472656 281.160156 339.472656 281.160156 337.851562 C 281.160156 336.234375 283.589844 336.234375 283.589844 337.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.761719 164.953125 C 268.761719 166.570312 266.332031 166.570312 266.332031 164.953125 C 266.332031 163.332031 268.761719 163.332031 268.761719 164.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.066406 70.910156 L 191.699219 73.746094 L 188.429688 73.746094 Z M 190.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.949219 249.164062 C 270.949219 250.785156 268.519531 250.785156 268.519531 249.164062 C 268.519531 247.546875 270.949219 247.546875 270.949219 249.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.65625 258.015625 C 260.65625 259.636719 258.226562 259.636719 258.226562 258.015625 C 258.226562 256.394531 260.65625 256.394531 260.65625 258.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.609375 76.863281 C 168.609375 78.484375 166.179688 78.484375 166.179688 76.863281 C 166.179688 75.242188 168.609375 75.242188 168.609375 76.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.628906 322.230469 C 176.628906 323.851562 174.199219 323.851562 174.199219 322.230469 C 174.199219 320.613281 176.628906 320.613281 176.628906 322.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.742188 299.109375 C 239.742188 300.730469 237.3125 300.730469 237.3125 299.109375 C 237.3125 297.488281 239.742188 297.488281 239.742188 299.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.238281 184.550781 C 282.238281 186.167969 279.808594 186.167969 279.808594 184.550781 C 279.808594 182.929688 282.238281 182.929688 282.238281 184.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.28125 149.550781 C 269.28125 151.171875 266.851562 151.171875 266.851562 149.550781 C 266.851562 147.929688 269.28125 147.929688 269.28125 149.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.796875 344.753906 C 151.796875 346.375 149.367188 346.375 149.367188 344.753906 C 149.367188 343.136719 151.796875 343.136719 151.796875 344.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.027344 341.734375 C 240.027344 343.355469 237.597656 343.355469 237.597656 341.734375 C 237.597656 340.113281 240.027344 340.113281 240.027344 341.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.003906 249.503906 C 322.003906 251.125 319.574219 251.125 319.574219 249.503906 C 319.574219 247.882812 322.003906 247.882812 322.003906 249.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.027344 200.582031 C 125.027344 202.203125 122.59375 202.203125 122.59375 200.582031 C 122.59375 198.960938 125.027344 198.960938 125.027344 200.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.023438 250.179688 C 202.023438 251.800781 199.59375 251.800781 199.59375 250.179688 C 199.59375 248.558594 202.023438 248.558594 202.023438 250.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.664062 304.753906 C 195.664062 306.375 193.234375 306.375 193.234375 304.753906 C 193.234375 303.136719 195.664062 303.136719 195.664062 304.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.636719 197.796875 C 238.636719 199.417969 236.207031 199.417969 236.207031 197.796875 C 236.207031 196.175781 238.636719 196.175781 238.636719 197.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.496094 70.910156 L 260.132812 73.746094 L 256.859375 73.746094 Z M 258.496094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.652344 241.242188 C 223.652344 242.863281 221.222656 242.863281 221.222656 241.242188 C 221.222656 239.621094 223.652344 239.621094 223.652344 241.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.910156 292.566406 C 200.910156 294.183594 198.480469 294.183594 198.480469 292.566406 C 198.480469 290.945312 200.910156 290.945312 200.910156 292.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.742188 218.039062 C 303.742188 219.660156 301.3125 219.660156 301.3125 218.039062 C 301.3125 216.421875 303.742188 216.421875 303.742188 218.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.421875 252.5625 C 267.421875 254.183594 264.988281 254.183594 264.988281 252.5625 C 264.988281 250.941406 267.421875 250.941406 267.421875 252.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.527344 338.847656 C 128.527344 340.464844 126.097656 340.464844 126.097656 338.847656 C 126.097656 337.226562 128.527344 337.226562 128.527344 338.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.734375 173.417969 C 198.734375 175.039062 196.304688 175.039062 196.304688 173.417969 C 196.304688 171.800781 198.734375 171.800781 198.734375 173.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.691406 199.578125 C 239.691406 201.199219 237.261719 201.199219 237.261719 199.578125 C 237.261719 197.960938 239.691406 197.960938 239.691406 199.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.171875 226.441406 C 216.171875 228.0625 213.742188 228.0625 213.742188 226.441406 C 213.742188 224.820312 216.171875 224.820312 216.171875 226.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.902344 331.636719 C 230.902344 333.257812 228.472656 333.257812 228.472656 331.636719 C 228.472656 330.019531 230.902344 330.019531 230.902344 331.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.820312 276.410156 C 309.820312 278.027344 307.390625 278.027344 307.390625 276.410156 C 307.390625 274.789062 309.820312 274.789062 309.820312 276.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.902344 176.40625 C 294.902344 178.027344 292.472656 178.027344 292.472656 176.40625 C 292.472656 174.785156 294.902344 174.785156 294.902344 176.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.1875 256.40625 C 143.1875 258.027344 140.757812 258.027344 140.757812 256.40625 C 140.757812 254.785156 143.1875 254.785156 143.1875 256.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.558594 322.5 C 297.558594 324.117188 295.128906 324.117188 295.128906 322.5 C 295.128906 320.878906 297.558594 320.878906 297.558594 322.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.121094 179.457031 C 244.121094 181.074219 241.6875 181.074219 241.6875 179.457031 C 241.6875 177.835938 244.121094 177.835938 244.121094 179.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.703125 179.21875 C 309.703125 180.839844 307.273438 180.839844 307.273438 179.21875 C 307.273438 177.597656 309.703125 177.597656 309.703125 179.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.945312 223.746094 C 119.945312 225.367188 117.515625 225.367188 117.515625 223.746094 C 117.515625 222.125 119.945312 222.125 119.945312 223.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.179688 70.910156 L 222.816406 73.746094 L 219.542969 73.746094 Z M 221.179688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.363281 171.753906 C 251.363281 173.375 248.933594 173.375 248.933594 171.753906 C 248.933594 170.132812 251.363281 170.132812 251.363281 171.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.003906 236.609375 C 262.003906 238.226562 259.574219 238.226562 259.574219 236.609375 C 259.574219 234.988281 262.003906 234.988281 262.003906 236.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.136719 282.863281 C 311.136719 284.484375 308.707031 284.484375 308.707031 282.863281 C 308.707031 281.246094 311.136719 281.246094 311.136719 282.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.816406 271.996094 C 241.816406 273.617188 239.386719 273.617188 239.386719 271.996094 C 239.386719 270.375 241.816406 270.375 241.816406 271.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.15625 279.132812 C 305.15625 280.753906 302.726562 280.753906 302.726562 279.132812 C 302.726562 277.511719 305.15625 277.511719 305.15625 279.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.613281 186.589844 C 249.613281 188.207031 247.183594 188.207031 247.183594 186.589844 C 247.183594 184.96875 249.613281 184.96875 249.613281 186.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.636719 211.988281 C 280.636719 213.609375 278.207031 213.609375 278.207031 211.988281 C 278.207031 210.371094 280.636719 210.371094 280.636719 211.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.03125 203.460938 C 290.03125 205.082031 287.601562 205.082031 287.601562 203.460938 C 287.601562 201.839844 290.03125 201.839844 290.03125 203.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.355469 217.335938 C 151.355469 218.953125 148.925781 218.953125 148.925781 217.335938 C 148.925781 215.714844 151.355469 215.714844 151.355469 217.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.777344 109.699219 C 345.777344 111.320312 343.347656 111.320312 343.347656 109.699219 C 343.347656 108.082031 345.777344 108.082031 345.777344 109.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.398438 297.464844 C 254.398438 299.085938 251.964844 299.085938 251.964844 297.464844 C 251.964844 295.84375 254.398438 295.84375 254.398438 297.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.074219 305.832031 C 242.074219 307.453125 239.644531 307.453125 239.644531 305.832031 C 239.644531 304.210938 242.074219 304.210938 242.074219 305.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.34375 267.933594 C 269.34375 269.554688 266.914062 269.554688 266.914062 267.933594 C 266.914062 266.3125 269.34375 266.3125 269.34375 267.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.3125 276.84375 C 248.3125 278.464844 245.882812 278.464844 245.882812 276.84375 C 245.882812 275.222656 248.3125 275.222656 248.3125 276.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.535156 128.234375 C 153.535156 129.855469 151.101562 129.855469 151.101562 128.234375 C 151.101562 126.613281 153.535156 126.613281 153.535156 128.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.308594 87.386719 C 280.308594 89.003906 277.878906 89.003906 277.878906 87.386719 C 277.878906 85.765625 280.308594 85.765625 280.308594 87.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.589844 274.023438 C 306.589844 275.644531 304.160156 275.644531 304.160156 274.023438 C 304.160156 272.40625 306.589844 272.40625 306.589844 274.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.503906 235.644531 C 298.503906 237.261719 296.074219 237.261719 296.074219 235.644531 C 296.074219 234.023438 298.503906 234.023438 298.503906 235.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.433594 70.910156 L 251.070312 73.746094 L 247.796875 73.746094 Z M 249.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.894531 170.652344 C 316.894531 172.273438 314.464844 172.273438 314.464844 170.652344 C 314.464844 169.03125 316.894531 169.03125 316.894531 170.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.683594 288.019531 C 199.683594 289.640625 197.253906 289.640625 197.253906 288.019531 C 197.253906 286.402344 199.683594 286.402344 199.683594 288.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.035156 256.675781 C 314.035156 258.296875 311.605469 258.296875 311.605469 256.675781 C 311.605469 255.054688 314.035156 255.054688 314.035156 256.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.078125 256.96875 C 237.078125 258.589844 234.644531 258.589844 234.644531 256.96875 C 234.644531 255.347656 237.078125 255.347656 237.078125 256.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.359375 289.015625 C 280.359375 290.632812 277.925781 290.632812 277.925781 289.015625 C 277.925781 287.394531 280.359375 287.394531 280.359375 289.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.828125 256.703125 C 262.828125 258.320312 260.398438 258.320312 260.398438 256.703125 C 260.398438 255.082031 262.828125 255.082031 262.828125 256.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.375 245.6875 C 283.375 247.304688 280.945312 247.304688 280.945312 245.6875 C 280.945312 244.066406 283.375 244.066406 283.375 245.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.769531 204.84375 C 295.769531 206.460938 293.339844 206.460938 293.339844 204.84375 C 293.339844 203.222656 295.769531 203.222656 295.769531 204.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.882812 283.125 C 289.882812 284.746094 287.453125 284.746094 287.453125 283.125 C 287.453125 281.507812 289.882812 281.507812 289.882812 283.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.355469 139.316406 C 251.355469 140.9375 248.925781 140.9375 248.925781 139.316406 C 248.925781 137.695312 251.355469 137.695312 251.355469 139.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.730469 70.910156 L 117.367188 73.746094 L 114.09375 73.746094 Z M 115.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.375 226.5 C 223.375 228.121094 220.945312 228.121094 220.945312 226.5 C 220.945312 224.882812 223.375 224.882812 223.375 226.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.957031 128.445312 C 229.957031 130.0625 227.523438 130.0625 227.523438 128.445312 C 227.523438 126.824219 229.957031 126.824219 229.957031 128.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.34375 418.691406 L 313.980469 415.855469 L 310.707031 415.855469 Z M 312.34375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.503906 196.4375 C 158.503906 198.058594 156.074219 198.058594 156.074219 196.4375 C 156.074219 194.816406 158.503906 194.816406 158.503906 196.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.304688 198.652344 C 340.304688 200.273438 337.875 200.273438 337.875 198.652344 C 337.875 197.03125 340.304688 197.03125 340.304688 198.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.617188 70.910156 L 268.253906 73.746094 L 264.980469 73.746094 Z M 266.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.140625 260.019531 C 307.140625 261.640625 304.710938 261.640625 304.710938 260.019531 C 304.710938 258.398438 307.140625 258.398438 307.140625 260.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.085938 257.824219 C 229.085938 259.445312 226.65625 259.445312 226.65625 257.824219 C 226.65625 256.207031 229.085938 256.207031 229.085938 257.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.765625 217.84375 C 258.765625 219.464844 256.335938 219.464844 256.335938 217.84375 C 256.335938 216.222656 258.765625 216.222656 258.765625 217.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.082031 313.042969 C 267.082031 314.664062 264.652344 314.664062 264.652344 313.042969 C 264.652344 311.425781 267.082031 311.425781 267.082031 313.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.324219 167.929688 C 255.324219 169.550781 252.894531 169.550781 252.894531 167.929688 C 252.894531 166.308594 255.324219 166.308594 255.324219 167.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.296875 293.660156 C 236.296875 295.28125 233.867188 295.28125 233.867188 293.660156 C 233.867188 292.039062 236.296875 292.039062 236.296875 293.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.535156 244.429688 C 317.535156 246.046875 315.105469 246.046875 315.105469 244.429688 C 315.105469 242.808594 317.535156 242.808594 317.535156 244.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.121094 276.746094 C 189.121094 278.367188 186.691406 278.367188 186.691406 276.746094 C 186.691406 275.125 189.121094 275.125 189.121094 276.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.84375 297.480469 C 260.84375 299.101562 258.414062 299.101562 258.414062 297.480469 C 258.414062 295.859375 260.84375 295.859375 260.84375 297.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.234375 378.742188 C 159.234375 380.363281 156.804688 380.363281 156.804688 378.742188 C 156.804688 377.125 159.234375 377.125 159.234375 378.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.964844 70.910156 L 267.597656 73.746094 L 264.328125 73.746094 Z M 265.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.226562 70.910156 L 189.863281 73.746094 L 186.589844 73.746094 Z M 188.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.070312 278.980469 C 242.070312 280.597656 239.640625 280.597656 239.640625 278.980469 C 239.640625 277.359375 242.070312 277.359375 242.070312 278.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.390625 243.078125 C 309.390625 244.695312 306.957031 244.695312 306.957031 243.078125 C 306.957031 241.457031 309.390625 241.457031 309.390625 243.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.984375 70.910156 L 278.621094 73.746094 L 275.347656 73.746094 Z M 276.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.3125 70.910156 L 220.949219 73.746094 L 217.675781 73.746094 Z M 219.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.285156 165.898438 C 287.285156 167.515625 284.855469 167.515625 284.855469 165.898438 C 284.855469 164.277344 287.285156 164.277344 287.285156 165.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235 242.246094 C 235 243.867188 232.570312 243.867188 232.570312 242.246094 C 232.570312 240.625 235 240.625 235 242.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.378906 250.71875 C 261.378906 252.339844 258.949219 252.339844 258.949219 250.71875 C 258.949219 249.097656 261.378906 249.097656 261.378906 250.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.976562 240.035156 C 305.976562 241.652344 303.542969 241.652344 303.542969 240.035156 C 303.542969 238.414062 305.976562 238.414062 305.976562 240.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.832031 231.675781 C 279.832031 233.296875 277.402344 233.296875 277.402344 231.675781 C 277.402344 230.054688 279.832031 230.054688 279.832031 231.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.769531 246.46875 C 236.769531 248.089844 234.339844 248.089844 234.339844 246.46875 C 234.339844 244.847656 236.769531 244.847656 236.769531 246.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.964844 203.6875 C 313.964844 205.308594 311.535156 205.308594 311.535156 203.6875 C 311.535156 202.070312 313.964844 202.070312 313.964844 203.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269 216.792969 C 269 218.414062 266.570312 218.414062 266.570312 216.792969 C 266.570312 215.175781 269 215.175781 269 216.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.234375 249.382812 C 286.234375 251.003906 283.804688 251.003906 283.804688 249.382812 C 283.804688 247.761719 286.234375 247.761719 286.234375 249.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.449219 314.28125 C 250.449219 315.902344 248.019531 315.902344 248.019531 314.28125 C 248.019531 312.660156 250.449219 312.660156 250.449219 314.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.769531 184.882812 C 281.769531 186.5 279.339844 186.5 279.339844 184.882812 C 279.339844 183.261719 281.769531 183.261719 281.769531 184.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.027344 148.59375 C 193.027344 150.210938 190.59375 150.210938 190.59375 148.59375 C 190.59375 146.972656 193.027344 146.972656 193.027344 148.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.578125 200.449219 C 258.578125 202.070312 256.148438 202.070312 256.148438 200.449219 C 256.148438 198.832031 258.578125 198.832031 258.578125 200.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.71875 291.945312 C 290.71875 293.566406 288.289062 293.566406 288.289062 291.945312 C 288.289062 290.328125 290.71875 290.328125 290.71875 291.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.316406 297.230469 C 282.316406 298.847656 279.886719 298.847656 279.886719 297.230469 C 279.886719 295.609375 282.316406 295.609375 282.316406 297.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.296875 251.234375 C 327.296875 252.855469 324.867188 252.855469 324.867188 251.234375 C 324.867188 249.617188 327.296875 249.617188 327.296875 251.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.988281 150.347656 C 258.988281 151.96875 256.558594 151.96875 256.558594 150.347656 C 256.558594 148.726562 258.988281 148.726562 258.988281 150.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.628906 228.25 C 251.628906 229.871094 249.199219 229.871094 249.199219 228.25 C 249.199219 226.628906 251.628906 226.628906 251.628906 228.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.25 177.066406 C 308.25 178.683594 305.820312 178.683594 305.820312 177.066406 C 305.820312 175.445312 308.25 175.445312 308.25 177.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.4375 70.910156 L 192.074219 73.746094 L 188.800781 73.746094 Z M 190.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.089844 252.511719 C 211.089844 254.132812 208.660156 254.132812 208.660156 252.511719 C 208.660156 250.894531 211.089844 250.894531 211.089844 252.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.210938 216.339844 C 270.210938 217.960938 267.78125 217.960938 267.78125 216.339844 C 267.78125 214.722656 270.210938 214.722656 270.210938 216.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.5625 281.796875 C 238.5625 283.417969 236.132812 283.417969 236.132812 281.796875 C 236.132812 280.179688 238.5625 280.179688 238.5625 281.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.785156 286.445312 C 278.785156 288.0625 276.355469 288.0625 276.355469 286.445312 C 276.355469 284.824219 278.785156 284.824219 278.785156 286.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.992188 418.691406 L 314.625 415.855469 L 311.355469 415.855469 Z M 312.992188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.105469 171.757812 C 204.105469 173.378906 201.675781 173.378906 201.675781 171.757812 C 201.675781 170.140625 204.105469 170.140625 204.105469 171.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.238281 281.519531 C 277.238281 283.140625 274.808594 283.140625 274.808594 281.519531 C 274.808594 279.902344 277.238281 279.902344 277.238281 281.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.398438 260.503906 C 265.398438 262.121094 262.96875 262.121094 262.96875 260.503906 C 262.96875 258.882812 265.398438 258.882812 265.398438 260.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.976562 187.535156 C 299.976562 189.15625 297.546875 189.15625 297.546875 187.535156 C 297.546875 185.914062 299.976562 185.914062 299.976562 187.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.230469 168.449219 C 347.230469 170.070312 344.800781 170.070312 344.800781 168.449219 C 344.800781 166.828125 347.230469 166.828125 347.230469 168.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.21875 114.082031 C 249.21875 115.699219 246.785156 115.699219 246.785156 114.082031 C 246.785156 112.460938 249.21875 112.460938 249.21875 114.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.8125 283.316406 C 234.8125 284.9375 232.382812 284.9375 232.382812 283.316406 C 232.382812 281.695312 234.8125 281.695312 234.8125 283.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.820312 330.503906 C 205.820312 332.125 203.390625 332.125 203.390625 330.503906 C 203.390625 328.882812 205.820312 328.882812 205.820312 330.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.390625 158.644531 C 195.390625 160.261719 192.960938 160.261719 192.960938 158.644531 C 192.960938 157.023438 195.390625 157.023438 195.390625 158.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.71875 335.4375 C 219.71875 337.058594 217.289062 337.058594 217.289062 335.4375 C 217.289062 333.816406 219.71875 333.816406 219.71875 335.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.484375 291.566406 C 204.484375 293.1875 202.050781 293.1875 202.050781 291.566406 C 202.050781 289.945312 204.484375 289.945312 204.484375 291.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.054688 305.300781 C 236.054688 306.921875 233.625 306.921875 233.625 305.300781 C 233.625 303.683594 236.054688 303.683594 236.054688 305.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.949219 159.714844 C 288.949219 161.335938 286.519531 161.335938 286.519531 159.714844 C 286.519531 158.09375 288.949219 158.09375 288.949219 159.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.183594 290.539062 C 206.183594 292.15625 203.753906 292.15625 203.753906 290.539062 C 203.753906 288.917969 206.183594 288.917969 206.183594 290.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.308594 272.171875 C 307.308594 273.792969 304.878906 273.792969 304.878906 272.171875 C 304.878906 270.550781 307.308594 270.550781 307.308594 272.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.199219 70.910156 L 142.835938 73.746094 L 139.566406 73.746094 Z M 141.199219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.839844 70.910156 L 190.476562 73.746094 L 187.203125 73.746094 Z M 188.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.089844 248.15625 C 280.089844 249.777344 277.660156 249.777344 277.660156 248.15625 C 277.660156 246.535156 280.089844 246.535156 280.089844 248.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.886719 274.035156 C 268.886719 275.652344 266.457031 275.652344 266.457031 274.035156 C 266.457031 272.414062 268.886719 272.414062 268.886719 274.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.765625 96.597656 C 241.765625 98.21875 239.335938 98.21875 239.335938 96.597656 C 239.335938 94.976562 241.765625 94.976562 241.765625 96.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.785156 201.957031 C 279.785156 203.574219 277.355469 203.574219 277.355469 201.957031 C 277.355469 200.335938 279.785156 200.335938 279.785156 201.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.648438 166.339844 C 281.648438 167.957031 279.21875 167.957031 279.21875 166.339844 C 279.21875 164.71875 281.648438 164.71875 281.648438 166.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.515625 178.921875 C 139.515625 180.542969 137.082031 180.542969 137.082031 178.921875 C 137.082031 177.304688 139.515625 177.304688 139.515625 178.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.988281 305.574219 C 237.988281 307.195312 235.558594 307.195312 235.558594 305.574219 C 235.558594 303.953125 237.988281 303.953125 237.988281 305.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.4375 154.21875 C 266.4375 155.835938 264.007812 155.835938 264.007812 154.21875 C 264.007812 152.597656 266.4375 152.597656 266.4375 154.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.140625 157.820312 C 181.140625 159.441406 178.707031 159.441406 178.707031 157.820312 C 178.707031 156.199219 181.140625 156.199219 181.140625 157.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.671875 270.832031 C 290.671875 272.453125 288.242188 272.453125 288.242188 270.832031 C 288.242188 269.214844 290.671875 269.214844 290.671875 270.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.339844 246.664062 C 207.339844 248.285156 204.910156 248.285156 204.910156 246.664062 C 204.910156 245.046875 207.339844 245.046875 207.339844 246.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.46875 238.65625 C 201.46875 240.277344 199.039062 240.277344 199.039062 238.65625 C 199.039062 237.035156 201.46875 237.035156 201.46875 238.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.296875 190.933594 C 277.296875 192.554688 274.867188 192.554688 274.867188 190.933594 C 274.867188 189.316406 277.296875 189.316406 277.296875 190.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.292969 252.320312 C 298.292969 253.941406 295.863281 253.941406 295.863281 252.320312 C 295.863281 250.699219 298.292969 250.699219 298.292969 252.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.796875 214.507812 C 285.796875 216.128906 283.367188 216.128906 283.367188 214.507812 C 283.367188 212.886719 285.796875 212.886719 285.796875 214.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.847656 195.777344 C 221.847656 197.398438 219.417969 197.398438 219.417969 195.777344 C 219.417969 194.15625 221.847656 194.15625 221.847656 195.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.820312 177.449219 C 278.820312 179.066406 276.390625 179.066406 276.390625 177.449219 C 276.390625 175.828125 278.820312 175.828125 278.820312 177.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.378906 234.777344 C 258.378906 236.398438 255.949219 236.398438 255.949219 234.777344 C 255.949219 233.15625 258.378906 233.15625 258.378906 234.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.335938 240.882812 C 281.335938 242.503906 278.90625 242.503906 278.90625 240.882812 C 278.90625 239.265625 281.335938 239.265625 281.335938 240.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.308594 278.375 C 217.308594 279.996094 214.878906 279.996094 214.878906 278.375 C 214.878906 276.753906 217.308594 276.753906 217.308594 278.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.519531 277.113281 C 211.519531 278.730469 209.089844 278.730469 209.089844 277.113281 C 209.089844 275.492188 211.519531 275.492188 211.519531 277.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.492188 306.085938 C 212.492188 307.703125 210.0625 307.703125 210.0625 306.085938 C 210.0625 304.464844 212.492188 304.464844 212.492188 306.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.839844 70.910156 L 202.476562 73.746094 L 199.203125 73.746094 Z M 200.839844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.78125 70.910156 L 248.417969 73.746094 L 245.144531 73.746094 Z M 246.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.390625 166.449219 C 276.390625 168.070312 273.960938 168.070312 273.960938 166.449219 C 273.960938 164.832031 276.390625 164.832031 276.390625 166.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.136719 309.25 C 336.136719 310.871094 333.707031 310.871094 333.707031 309.25 C 333.707031 307.628906 336.136719 307.628906 336.136719 309.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.824219 262.292969 C 285.824219 263.914062 283.390625 263.914062 283.390625 262.292969 C 283.390625 260.675781 285.824219 260.675781 285.824219 262.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.890625 195.464844 C 260.890625 197.082031 258.460938 197.082031 258.460938 195.464844 C 258.460938 193.84375 260.890625 193.84375 260.890625 195.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.621094 275.667969 C 173.621094 277.289062 171.191406 277.289062 171.191406 275.667969 C 171.191406 274.050781 173.621094 274.050781 173.621094 275.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.410156 280.828125 C 228.410156 282.449219 225.976562 282.449219 225.976562 280.828125 C 225.976562 279.210938 228.410156 279.210938 228.410156 280.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.984375 286.230469 C 262.984375 287.851562 260.554688 287.851562 260.554688 286.230469 C 260.554688 284.613281 262.984375 284.613281 262.984375 286.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.726562 326.191406 C 217.726562 327.8125 215.292969 327.8125 215.292969 326.191406 C 215.292969 324.574219 217.726562 324.574219 217.726562 326.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.65625 214.835938 C 236.65625 216.457031 234.226562 216.457031 234.226562 214.835938 C 234.226562 213.214844 236.65625 213.214844 236.65625 214.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.433594 252.070312 C 282.433594 253.691406 280.003906 253.691406 280.003906 252.070312 C 280.003906 250.453125 282.433594 250.453125 282.433594 252.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.847656 70.910156 L 285.484375 73.746094 L 282.210938 73.746094 Z M 283.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.601562 196.679688 C 200.601562 198.300781 198.171875 198.300781 198.171875 196.679688 C 198.171875 195.058594 200.601562 195.058594 200.601562 196.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.453125 150.453125 C 267.453125 152.074219 265.023438 152.074219 265.023438 150.453125 C 265.023438 148.832031 267.453125 148.832031 267.453125 150.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.421875 271.65625 C 235.421875 273.277344 232.992188 273.277344 232.992188 271.65625 C 232.992188 270.035156 235.421875 270.035156 235.421875 271.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.960938 70.910156 L 166.597656 73.746094 L 163.324219 73.746094 Z M 164.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.742188 231.453125 C 299.742188 233.074219 297.3125 233.074219 297.3125 231.453125 C 297.3125 229.835938 299.742188 229.835938 299.742188 231.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.1875 193.515625 C 257.1875 195.136719 254.757812 195.136719 254.757812 193.515625 C 254.757812 191.894531 257.1875 191.894531 257.1875 193.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.957031 181.261719 C 263.957031 182.878906 261.527344 182.878906 261.527344 181.261719 C 261.527344 179.640625 263.957031 179.640625 263.957031 181.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.929688 260.976562 C 265.929688 262.597656 263.5 262.597656 263.5 260.976562 C 263.5 259.355469 265.929688 259.355469 265.929688 260.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.035156 266.523438 C 308.035156 268.144531 305.605469 268.144531 305.605469 266.523438 C 305.605469 264.902344 308.035156 264.902344 308.035156 266.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.6875 70.910156 L 233.324219 73.746094 L 230.050781 73.746094 Z M 231.6875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.324219 418.691406 L 256.960938 415.855469 L 253.6875 415.855469 Z M 255.324219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.25 209.726562 C 284.25 211.347656 281.820312 211.347656 281.820312 209.726562 C 281.820312 208.105469 284.25 208.105469 284.25 209.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.417969 170.476562 C 159.417969 172.097656 156.988281 172.097656 156.988281 170.476562 C 156.988281 168.855469 159.417969 168.855469 159.417969 170.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.726562 70.910156 L 196.363281 73.746094 L 193.089844 73.746094 Z M 194.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.40625 329.695312 C 130.40625 331.316406 127.976562 331.316406 127.976562 329.695312 C 127.976562 328.074219 130.40625 328.074219 130.40625 329.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.464844 172.277344 C 213.464844 173.898438 211.035156 173.898438 211.035156 172.277344 C 211.035156 170.65625 213.464844 170.65625 213.464844 172.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.882812 99.492188 C 180.882812 101.113281 178.453125 101.113281 178.453125 99.492188 C 178.453125 97.871094 180.882812 97.871094 180.882812 99.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.515625 238.984375 C 267.515625 240.601562 265.085938 240.601562 265.085938 238.984375 C 265.085938 237.363281 267.515625 237.363281 267.515625 238.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.875 70.910156 L 346.511719 73.746094 L 343.238281 73.746094 Z M 344.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.171875 90.023438 C 366.171875 91.644531 363.738281 91.644531 363.738281 90.023438 C 363.738281 88.402344 366.171875 88.402344 366.171875 90.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.578125 70.910156 L 236.214844 73.746094 L 232.941406 73.746094 Z M 234.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 422.960938 200.429688 C 422.960938 202.050781 420.53125 202.050781 420.53125 200.429688 C 420.53125 198.8125 422.960938 198.8125 422.960938 200.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.378906 418.691406 L 217.015625 415.855469 L 213.742188 415.855469 Z M 215.378906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.953125 418.691406 L 188.589844 415.855469 L 185.316406 415.855469 Z M 186.953125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.789062 317.769531 C 107.789062 319.390625 105.359375 319.390625 105.359375 317.769531 C 105.359375 316.148438 107.789062 316.148438 107.789062 317.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.90625 418.691406 L 133.542969 415.855469 L 130.269531 415.855469 Z M 131.90625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.425781 171.730469 C 184.425781 173.351562 181.996094 173.351562 181.996094 171.730469 C 181.996094 170.109375 184.425781 170.109375 184.425781 171.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.234375 359.28125 C 299.234375 360.902344 296.804688 360.902344 296.804688 359.28125 C 296.804688 357.660156 299.234375 357.660156 299.234375 359.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.832031 201.34375 C 266.832031 202.964844 264.402344 202.964844 264.402344 201.34375 C 264.402344 199.726562 266.832031 199.726562 266.832031 201.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.503906 288.929688 C 218.503906 290.550781 216.074219 290.550781 216.074219 288.929688 C 216.074219 287.3125 218.503906 287.3125 218.503906 288.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.3125 236.023438 C 280.3125 237.644531 277.882812 237.644531 277.882812 236.023438 C 277.882812 234.402344 280.3125 234.402344 280.3125 236.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.953125 220.332031 C 240.953125 221.953125 238.523438 221.953125 238.523438 220.332031 C 238.523438 218.710938 240.953125 218.710938 240.953125 220.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.464844 106.875 C 137.464844 108.496094 135.035156 108.496094 135.035156 106.875 C 135.035156 105.257812 137.464844 105.257812 137.464844 106.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.378906 181.648438 C 255.378906 183.265625 252.949219 183.265625 252.949219 181.648438 C 252.949219 180.027344 255.378906 180.027344 255.378906 181.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.828125 258.777344 C 216.828125 260.398438 214.394531 260.398438 214.394531 258.777344 C 214.394531 257.15625 216.828125 257.15625 216.828125 258.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.808594 281.96875 C 252.808594 283.589844 250.378906 283.589844 250.378906 281.96875 C 250.378906 280.351562 252.808594 280.351562 252.808594 281.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.082031 154.105469 C 280.082031 155.726562 277.652344 155.726562 277.652344 154.105469 C 277.652344 152.488281 280.082031 152.488281 280.082031 154.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.167969 156.9375 C 198.167969 158.558594 195.738281 158.558594 195.738281 156.9375 C 195.738281 155.316406 198.167969 155.316406 198.167969 156.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.214844 312.574219 C 147.214844 314.195312 144.785156 314.195312 144.785156 312.574219 C 144.785156 310.953125 147.214844 310.953125 147.214844 312.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.121094 268.402344 C 309.121094 270.023438 306.691406 270.023438 306.691406 268.402344 C 306.691406 266.78125 309.121094 266.78125 309.121094 268.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.53125 279.859375 C 241.53125 281.480469 239.101562 281.480469 239.101562 279.859375 C 239.101562 278.238281 241.53125 278.238281 241.53125 279.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.246094 141.359375 C 254.246094 142.980469 251.816406 142.980469 251.816406 141.359375 C 251.816406 139.738281 254.246094 139.738281 254.246094 141.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.257812 128.972656 C 176.257812 130.59375 173.828125 130.59375 173.828125 128.972656 C 173.828125 127.351562 176.257812 127.351562 176.257812 128.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.546875 108.039062 C 261.546875 109.660156 259.113281 109.660156 259.113281 108.039062 C 259.113281 106.421875 261.546875 106.421875 261.546875 108.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.847656 305.621094 C 230.847656 307.242188 228.414062 307.242188 228.414062 305.621094 C 228.414062 304.003906 230.847656 304.003906 230.847656 305.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.308594 266.007812 C 311.308594 267.628906 308.878906 267.628906 308.878906 266.007812 C 308.878906 264.390625 311.308594 264.390625 311.308594 266.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.632812 264.210938 C 268.632812 265.828125 266.203125 265.828125 266.203125 264.210938 C 266.203125 262.589844 268.632812 262.589844 268.632812 264.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.957031 294.007812 C 286.957031 295.628906 284.523438 295.628906 284.523438 294.007812 C 284.523438 292.386719 286.957031 292.386719 286.957031 294.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.539062 251.085938 C 246.539062 252.703125 244.109375 252.703125 244.109375 251.085938 C 244.109375 249.464844 246.539062 249.464844 246.539062 251.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.574219 208.441406 C 191.574219 210.0625 189.144531 210.0625 189.144531 208.441406 C 189.144531 206.820312 191.574219 206.820312 191.574219 208.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.761719 258.558594 C 259.761719 260.179688 257.332031 260.179688 257.332031 258.558594 C 257.332031 256.9375 259.761719 256.9375 259.761719 258.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.03125 70.910156 L 249.667969 73.746094 L 246.394531 73.746094 Z M 248.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.605469 124.304688 C 209.605469 125.925781 207.175781 125.925781 207.175781 124.304688 C 207.175781 122.683594 209.605469 122.683594 209.605469 124.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.929688 126.027344 C 270.929688 127.648438 268.5 127.648438 268.5 126.027344 C 268.5 124.40625 270.929688 124.40625 270.929688 126.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.121094 165.414062 C 215.121094 167.035156 212.691406 167.035156 212.691406 165.414062 C 212.691406 163.796875 215.121094 163.796875 215.121094 165.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.21875 217.414062 C 212.21875 219.035156 209.789062 219.035156 209.789062 217.414062 C 209.789062 215.792969 212.21875 215.792969 212.21875 217.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.390625 101.304688 C 228.390625 102.921875 225.960938 102.921875 225.960938 101.304688 C 225.960938 99.683594 228.390625 99.683594 228.390625 101.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.84375 70.910156 L 261.480469 73.746094 L 258.207031 73.746094 Z M 259.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.566406 254.628906 C 241.566406 256.246094 239.136719 256.246094 239.136719 254.628906 C 239.136719 253.007812 241.566406 253.007812 241.566406 254.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.332031 265.496094 C 293.332031 267.113281 290.902344 267.113281 290.902344 265.496094 C 290.902344 263.875 293.332031 263.875 293.332031 265.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.949219 250.53125 C 267.949219 252.148438 265.519531 252.148438 265.519531 250.53125 C 265.519531 248.910156 267.949219 248.910156 267.949219 250.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.753906 238.902344 C 264.753906 240.523438 262.324219 240.523438 262.324219 238.902344 C 262.324219 237.28125 264.753906 237.28125 264.753906 238.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.277344 226.664062 C 286.277344 228.285156 283.847656 228.285156 283.847656 226.664062 C 283.847656 225.046875 286.277344 225.046875 286.277344 226.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.242188 274.765625 C 220.242188 276.386719 217.8125 276.386719 217.8125 274.765625 C 217.8125 273.148438 220.242188 273.148438 220.242188 274.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.101562 122.644531 C 281.101562 124.265625 278.671875 124.265625 278.671875 122.644531 C 278.671875 121.023438 281.101562 121.023438 281.101562 122.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.683594 148.5625 C 250.683594 150.179688 248.253906 150.179688 248.253906 148.5625 C 248.253906 146.941406 250.683594 146.941406 250.683594 148.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.890625 70.910156 L 209.527344 73.746094 L 206.253906 73.746094 Z M 207.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.171875 185.402344 C 224.171875 187.023438 221.742188 187.023438 221.742188 185.402344 C 221.742188 183.785156 224.171875 183.785156 224.171875 185.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.332031 219.789062 C 187.332031 221.40625 184.902344 221.40625 184.902344 219.789062 C 184.902344 218.167969 187.332031 218.167969 187.332031 219.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.121094 216.386719 C 267.121094 218.007812 264.691406 218.007812 264.691406 216.386719 C 264.691406 214.765625 267.121094 214.765625 267.121094 216.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.410156 273.902344 C 234.410156 275.519531 231.980469 275.519531 231.980469 273.902344 C 231.980469 272.28125 234.410156 272.28125 234.410156 273.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.199219 275.835938 C 252.199219 277.457031 249.769531 277.457031 249.769531 275.835938 C 249.769531 274.214844 252.199219 274.214844 252.199219 275.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.082031 273.121094 C 165.082031 274.738281 162.652344 274.738281 162.652344 273.121094 C 162.652344 271.5 165.082031 271.5 165.082031 273.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.109375 326.542969 C 268.109375 328.164062 265.679688 328.164062 265.679688 326.542969 C 265.679688 324.921875 268.109375 324.921875 268.109375 326.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.488281 134.851562 C 221.488281 136.472656 219.054688 136.472656 219.054688 134.851562 C 219.054688 133.230469 221.488281 133.230469 221.488281 134.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.902344 238.65625 C 276.902344 240.277344 274.472656 240.277344 274.472656 238.65625 C 274.472656 237.035156 276.902344 237.035156 276.902344 238.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.121094 346.375 C 258.121094 347.996094 255.691406 347.996094 255.691406 346.375 C 255.691406 344.757812 258.121094 344.757812 258.121094 346.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.105469 215.96875 C 229.105469 217.589844 226.675781 217.589844 226.675781 215.96875 C 226.675781 214.347656 229.105469 214.347656 229.105469 215.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.210938 276.632812 C 292.210938 278.253906 289.78125 278.253906 289.78125 276.632812 C 289.78125 275.011719 292.210938 275.011719 292.210938 276.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.921875 245.261719 C 240.921875 246.878906 238.488281 246.878906 238.488281 245.261719 C 238.488281 243.640625 240.921875 243.640625 240.921875 245.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.28125 177.40625 C 138.28125 179.023438 135.847656 179.023438 135.847656 177.40625 C 135.847656 175.785156 138.28125 175.785156 138.28125 177.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.101562 70.910156 L 152.738281 73.746094 L 149.464844 73.746094 Z M 151.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.929688 244.195312 C 280.929688 245.816406 278.5 245.816406 278.5 244.195312 C 278.5 242.574219 280.929688 242.574219 280.929688 244.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 357.332031 109.101562 C 357.332031 110.722656 354.902344 110.722656 354.902344 109.101562 C 354.902344 107.480469 357.332031 107.480469 357.332031 109.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.351562 164.957031 C 247.351562 166.574219 244.921875 166.574219 244.921875 164.957031 C 244.921875 163.335938 247.351562 163.335938 247.351562 164.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.007812 89.992188 C 286.007812 91.613281 283.578125 91.613281 283.578125 89.992188 C 283.578125 88.371094 286.007812 88.371094 286.007812 89.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.003906 173.832031 C 293.003906 175.453125 290.574219 175.453125 290.574219 173.832031 C 290.574219 172.210938 293.003906 172.210938 293.003906 173.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.882812 294.050781 C 179.882812 295.671875 177.449219 295.671875 177.449219 294.050781 C 177.449219 292.429688 179.882812 292.429688 179.882812 294.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.46875 325.210938 C 290.46875 326.832031 288.039062 326.832031 288.039062 325.210938 C 288.039062 323.589844 290.46875 323.589844 290.46875 325.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.796875 230.726562 C 314.796875 232.347656 312.367188 232.347656 312.367188 230.726562 C 312.367188 229.105469 314.796875 229.105469 314.796875 230.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.796875 212.640625 C 297.796875 214.257812 295.367188 214.257812 295.367188 212.640625 C 295.367188 211.019531 297.796875 211.019531 297.796875 212.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.621094 183.90625 C 276.621094 185.523438 274.191406 185.523438 274.191406 183.90625 C 274.191406 182.285156 276.621094 182.285156 276.621094 183.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.984375 175.070312 C 282.984375 176.691406 280.554688 176.691406 280.554688 175.070312 C 280.554688 173.449219 282.984375 173.449219 282.984375 175.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.535156 164.21875 C 307.535156 165.839844 305.105469 165.839844 305.105469 164.21875 C 305.105469 162.601562 307.535156 162.601562 307.535156 164.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.5 258.160156 C 264.5 259.78125 262.066406 259.78125 262.066406 258.160156 C 262.066406 256.542969 264.5 256.542969 264.5 258.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.980469 253.386719 C 264.980469 255.003906 262.550781 255.003906 262.550781 253.386719 C 262.550781 251.765625 264.980469 251.765625 264.980469 253.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.988281 200.101562 C 266.988281 201.722656 264.558594 201.722656 264.558594 200.101562 C 264.558594 198.480469 266.988281 198.480469 266.988281 200.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.511719 307.234375 C 188.511719 308.855469 186.078125 308.855469 186.078125 307.234375 C 186.078125 305.613281 188.511719 305.613281 188.511719 307.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.488281 354.386719 C 288.488281 356.007812 286.058594 356.007812 286.058594 354.386719 C 286.058594 352.765625 288.488281 352.765625 288.488281 354.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.472656 256.65625 C 255.472656 258.273438 253.042969 258.273438 253.042969 256.65625 C 253.042969 255.035156 255.472656 255.035156 255.472656 256.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.601562 364.433594 C 284.601562 366.054688 282.171875 366.054688 282.171875 364.433594 C 282.171875 362.8125 284.601562 362.8125 284.601562 364.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.96875 372.734375 C 306.96875 374.355469 304.539062 374.355469 304.539062 372.734375 C 304.539062 371.117188 306.96875 371.117188 306.96875 372.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.71875 250.925781 C 218.71875 252.546875 216.289062 252.546875 216.289062 250.925781 C 216.289062 249.304688 218.71875 249.304688 218.71875 250.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.0625 220.675781 C 242.0625 222.296875 239.632812 222.296875 239.632812 220.675781 C 239.632812 219.054688 242.0625 219.054688 242.0625 220.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.375 195.179688 C 247.375 196.800781 244.941406 196.800781 244.941406 195.179688 C 244.941406 193.5625 247.375 193.5625 247.375 195.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.46875 209.746094 C 309.46875 211.367188 307.039062 211.367188 307.039062 209.746094 C 307.039062 208.125 309.46875 208.125 309.46875 209.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.371094 316.230469 C 318.371094 317.851562 315.941406 317.851562 315.941406 316.230469 C 315.941406 314.613281 318.371094 314.613281 318.371094 316.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.664062 283.433594 C 303.664062 285.050781 301.234375 285.050781 301.234375 283.433594 C 301.234375 281.8125 303.664062 281.8125 303.664062 283.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.6875 321.171875 C 210.6875 322.789062 208.257812 322.789062 208.257812 321.171875 C 208.257812 319.550781 210.6875 319.550781 210.6875 321.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.046875 270.824219 C 301.046875 272.441406 298.617188 272.441406 298.617188 270.824219 C 298.617188 269.203125 301.046875 269.203125 301.046875 270.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.191406 152.511719 C 216.191406 154.128906 213.761719 154.128906 213.761719 152.511719 C 213.761719 150.890625 216.191406 150.890625 216.191406 152.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.257812 70.910156 L 276.894531 73.746094 L 273.621094 73.746094 Z M 275.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.539062 201.4375 C 241.539062 203.058594 239.109375 203.058594 239.109375 201.4375 C 239.109375 199.820312 241.539062 199.820312 241.539062 201.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.351562 194.199219 C 289.351562 195.820312 286.921875 195.820312 286.921875 194.199219 C 286.921875 192.578125 289.351562 192.578125 289.351562 194.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.082031 226.734375 C 240.082031 228.351562 237.652344 228.351562 237.652344 226.734375 C 237.652344 225.113281 240.082031 225.113281 240.082031 226.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.574219 211.066406 C 249.574219 212.6875 247.144531 212.6875 247.144531 211.066406 C 247.144531 209.449219 249.574219 209.449219 249.574219 211.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.511719 152.128906 C 241.511719 153.75 239.082031 153.75 239.082031 152.128906 C 239.082031 150.511719 241.511719 150.511719 241.511719 152.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.941406 247.914062 C 327.941406 249.53125 325.511719 249.53125 325.511719 247.914062 C 325.511719 246.292969 327.941406 246.292969 327.941406 247.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.726562 212.179688 C 265.726562 213.800781 263.296875 213.800781 263.296875 212.179688 C 263.296875 210.558594 265.726562 210.558594 265.726562 212.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.117188 214.503906 C 225.117188 216.121094 222.6875 216.121094 222.6875 214.503906 C 222.6875 212.882812 225.117188 212.882812 225.117188 214.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.707031 199.292969 C 259.707031 200.910156 257.277344 200.910156 257.277344 199.292969 C 257.277344 197.671875 259.707031 197.671875 259.707031 199.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.542969 344.054688 C 275.542969 345.675781 273.113281 345.675781 273.113281 344.054688 C 273.113281 342.433594 275.542969 342.433594 275.542969 344.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.160156 70.910156 L 258.796875 73.746094 L 255.523438 73.746094 Z M 257.160156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.980469 70.910156 L 201.617188 73.746094 L 198.34375 73.746094 Z M 199.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.535156 244.929688 C 316.535156 246.546875 314.105469 246.546875 314.105469 244.929688 C 314.105469 243.308594 316.535156 243.308594 316.535156 244.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.648438 285.289062 C 241.648438 286.910156 239.21875 286.910156 239.21875 285.289062 C 239.21875 283.671875 241.648438 283.671875 241.648438 285.289062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.457031 418.691406 L 300.09375 415.855469 L 296.820312 415.855469 Z M 298.457031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.117188 133.550781 C 117.117188 135.171875 114.6875 135.171875 114.6875 133.550781 C 114.6875 131.933594 117.117188 131.933594 117.117188 133.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.171875 70.910156 L 205.808594 73.746094 L 202.539062 73.746094 Z M 204.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.65625 213.996094 C 298.65625 215.617188 296.226562 215.617188 296.226562 213.996094 C 296.226562 212.378906 298.65625 212.378906 298.65625 213.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.761719 347.660156 C 306.761719 349.277344 304.332031 349.277344 304.332031 347.660156 C 304.332031 346.039062 306.761719 346.039062 306.761719 347.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.328125 220.878906 C 250.328125 222.5 247.898438 222.5 247.898438 220.878906 C 247.898438 219.257812 250.328125 219.257812 250.328125 220.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.75 222.320312 C 139.75 223.941406 137.320312 223.941406 137.320312 222.320312 C 137.320312 220.703125 139.75 220.703125 139.75 222.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.597656 271.042969 C 280.597656 272.660156 278.164062 272.660156 278.164062 271.042969 C 278.164062 269.421875 280.597656 269.421875 280.597656 271.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.511719 239.785156 C 158.511719 241.40625 156.082031 241.40625 156.082031 239.785156 C 156.082031 238.164062 158.511719 238.164062 158.511719 239.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.203125 418.691406 L 333.835938 415.855469 L 330.566406 415.855469 Z M 332.203125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.980469 152.433594 C 281.980469 154.050781 279.550781 154.050781 279.550781 152.433594 C 279.550781 150.8125 281.980469 150.8125 281.980469 152.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.746094 92.984375 C 220.746094 94.605469 218.316406 94.605469 218.316406 92.984375 C 218.316406 91.367188 220.746094 91.367188 220.746094 92.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.652344 317.066406 C 260.652344 318.683594 258.222656 318.683594 258.222656 317.066406 C 258.222656 315.445312 260.652344 315.445312 260.652344 317.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.867188 271.519531 C 203.867188 273.140625 201.433594 273.140625 201.433594 271.519531 C 201.433594 269.898438 203.867188 269.898438 203.867188 271.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.960938 251.78125 C 156.960938 253.398438 154.53125 253.398438 154.53125 251.78125 C 154.53125 250.160156 156.960938 250.160156 156.960938 251.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.558594 244.171875 C 333.558594 245.789062 331.128906 245.789062 331.128906 244.171875 C 331.128906 242.550781 333.558594 242.550781 333.558594 244.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.460938 418.691406 L 121.097656 415.855469 L 117.824219 415.855469 Z M 119.460938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.753906 396.015625 C 197.753906 397.636719 195.324219 397.636719 195.324219 396.015625 C 195.324219 394.398438 197.753906 394.398438 197.753906 396.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.785156 405.261719 C 182.785156 406.882812 180.355469 406.882812 180.355469 405.261719 C 180.355469 403.644531 182.785156 403.644531 182.785156 405.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.0625 271.179688 C 136.0625 272.800781 133.632812 272.800781 133.632812 271.179688 C 133.632812 269.558594 136.0625 269.558594 136.0625 271.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.019531 353.609375 C 193.019531 355.230469 190.589844 355.230469 190.589844 353.609375 C 190.589844 351.988281 193.019531 351.988281 193.019531 353.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.5625 418.691406 L 146.199219 415.855469 L 142.925781 415.855469 Z M 144.5625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.078125 304.777344 C 207.078125 306.394531 204.648438 306.394531 204.648438 304.777344 C 204.648438 303.15625 207.078125 303.15625 207.078125 304.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.386719 208.269531 C 154.386719 209.886719 151.957031 209.886719 151.957031 208.269531 C 151.957031 206.648438 154.386719 206.648438 154.386719 208.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.261719 203.605469 C 300.261719 205.226562 297.832031 205.226562 297.832031 203.605469 C 297.832031 201.984375 300.261719 201.984375 300.261719 203.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.957031 418.691406 L 357.59375 415.855469 L 354.324219 415.855469 Z M 355.957031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.828125 397.609375 C 236.828125 399.230469 234.398438 399.230469 234.398438 397.609375 C 234.398438 395.988281 236.828125 395.988281 236.828125 397.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.140625 258.40625 C 227.140625 260.027344 224.707031 260.027344 224.707031 258.40625 C 224.707031 256.785156 227.140625 256.785156 227.140625 258.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.152344 247.84375 C 266.152344 249.464844 263.722656 249.464844 263.722656 247.84375 C 263.722656 246.226562 266.152344 246.226562 266.152344 247.84375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.71875 70.910156 L 179.355469 73.746094 L 176.085938 73.746094 Z M 177.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.613281 227.117188 C 261.613281 228.734375 259.183594 228.734375 259.183594 227.117188 C 259.183594 225.496094 261.613281 225.496094 261.613281 227.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.9375 70.910156 L 206.574219 73.746094 L 203.300781 73.746094 Z M 204.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.777344 356.386719 C 312.777344 358.003906 310.34375 358.003906 310.34375 356.386719 C 310.34375 354.765625 312.777344 354.765625 312.777344 356.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.457031 294.558594 C 140.457031 296.175781 138.027344 296.175781 138.027344 294.558594 C 138.027344 292.9375 140.457031 292.9375 140.457031 294.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.886719 70.910156 L 298.523438 73.746094 L 295.25 73.746094 Z M 296.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.496094 268.347656 C 268.496094 269.964844 266.066406 269.964844 266.066406 268.347656 C 266.066406 266.726562 268.496094 266.726562 268.496094 268.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.765625 189.824219 C 207.765625 191.445312 205.332031 191.445312 205.332031 189.824219 C 205.332031 188.207031 207.765625 188.207031 207.765625 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.953125 225.816406 C 221.953125 227.4375 219.523438 227.4375 219.523438 225.816406 C 219.523438 224.195312 221.953125 224.195312 221.953125 225.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.210938 418.691406 L 186.847656 415.855469 L 183.574219 415.855469 Z M 185.210938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.765625 198.902344 C 266.765625 200.523438 264.335938 200.523438 264.335938 198.902344 C 264.335938 197.28125 266.765625 197.28125 266.765625 198.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.433594 132.90625 C 133.433594 134.527344 131.003906 134.527344 131.003906 132.90625 C 131.003906 131.285156 133.433594 131.285156 133.433594 132.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.875 140.332031 C 327.875 141.953125 325.445312 141.953125 325.445312 140.332031 C 325.445312 138.714844 327.875 138.714844 327.875 140.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.4375 70.910156 L 192.070312 73.746094 L 188.800781 73.746094 Z M 190.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.523438 80.328125 C 189.523438 81.949219 187.089844 81.949219 187.089844 80.328125 C 187.089844 78.707031 189.523438 78.707031 189.523438 80.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.648438 317.925781 C 258.648438 319.546875 256.21875 319.546875 256.21875 317.925781 C 256.21875 316.308594 258.648438 316.308594 258.648438 317.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.359375 70.910156 L 226.996094 73.746094 L 223.722656 73.746094 Z M 225.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.179688 240.175781 C 220.179688 241.796875 217.75 241.796875 217.75 240.175781 C 217.75 238.558594 220.179688 238.558594 220.179688 240.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.132812 239.179688 C 278.132812 240.796875 275.703125 240.796875 275.703125 239.179688 C 275.703125 237.558594 278.132812 237.558594 278.132812 239.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.589844 231.570312 C 278.589844 233.191406 276.160156 233.191406 276.160156 231.570312 C 276.160156 229.949219 278.589844 229.949219 278.589844 231.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.089844 70.910156 L 129.722656 73.746094 L 126.453125 73.746094 Z M 128.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.503906 286.632812 C 209.503906 288.253906 207.074219 288.253906 207.074219 286.632812 C 207.074219 285.011719 209.503906 285.011719 209.503906 286.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.507812 275.542969 C 318.507812 277.160156 316.078125 277.160156 316.078125 275.542969 C 316.078125 273.921875 318.507812 273.921875 318.507812 275.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.726562 343.511719 C 201.726562 345.132812 199.296875 345.132812 199.296875 343.511719 C 199.296875 341.894531 201.726562 341.894531 201.726562 343.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.109375 418.691406 L 174.746094 415.855469 L 171.472656 415.855469 Z M 173.109375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.578125 276.519531 C 326.578125 278.140625 324.144531 278.140625 324.144531 276.519531 C 324.144531 274.898438 326.578125 274.898438 326.578125 276.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.242188 201.832031 C 290.242188 203.449219 287.8125 203.449219 287.8125 201.832031 C 287.8125 200.210938 290.242188 200.210938 290.242188 201.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.96875 297.378906 C 301.96875 299 299.535156 299 299.535156 297.378906 C 299.535156 295.757812 301.96875 295.757812 301.96875 297.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.464844 247.613281 C 233.464844 249.234375 231.035156 249.234375 231.035156 247.613281 C 231.035156 245.996094 233.464844 245.996094 233.464844 247.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.125 232.378906 C 254.125 234 251.695312 234 251.695312 232.378906 C 251.695312 230.761719 254.125 230.761719 254.125 232.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.753906 337.367188 C 201.753906 338.988281 199.324219 338.988281 199.324219 337.367188 C 199.324219 335.746094 201.753906 335.746094 201.753906 337.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.523438 217.953125 C 166.523438 219.574219 164.089844 219.574219 164.089844 217.953125 C 164.089844 216.335938 166.523438 216.335938 166.523438 217.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.429688 418.691406 L 120.066406 415.855469 L 116.792969 415.855469 Z M 118.429688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.5625 418.691406 L 325.199219 415.855469 L 321.925781 415.855469 Z M 323.5625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.117188 418.691406 L 130.75 415.855469 L 127.480469 415.855469 Z M 129.117188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.898438 361.199219 C 143.898438 362.820312 141.46875 362.820312 141.46875 361.199219 C 141.46875 359.582031 143.898438 359.582031 143.898438 361.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.328125 346.492188 C 323.328125 348.113281 320.898438 348.113281 320.898438 346.492188 C 320.898438 344.871094 323.328125 344.871094 323.328125 346.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.886719 188.027344 C 137.886719 189.648438 135.457031 189.648438 135.457031 188.027344 C 135.457031 186.40625 137.886719 186.40625 137.886719 188.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.972656 304.664062 C 125.972656 306.28125 123.542969 306.28125 123.542969 304.664062 C 123.542969 303.042969 125.972656 303.042969 125.972656 304.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.019531 295.84375 C 285.019531 297.464844 282.589844 297.464844 282.589844 295.84375 C 282.589844 294.222656 285.019531 294.222656 285.019531 295.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.441406 289.171875 C 279.441406 290.792969 277.007812 290.792969 277.007812 289.171875 C 277.007812 287.554688 279.441406 287.554688 279.441406 289.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.949219 418.691406 L 158.585938 415.855469 L 155.3125 415.855469 Z M 156.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.007812 273.402344 C 251.007812 275.019531 248.574219 275.019531 248.574219 273.402344 C 248.574219 271.78125 251.007812 271.78125 251.007812 273.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.859375 245.382812 C 241.859375 247.003906 239.429688 247.003906 239.429688 245.382812 C 239.429688 243.765625 241.859375 243.765625 241.859375 245.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.445312 300.347656 C 292.445312 301.96875 290.015625 301.96875 290.015625 300.347656 C 290.015625 298.726562 292.445312 298.726562 292.445312 300.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.179688 70.910156 L 217.816406 73.746094 L 214.542969 73.746094 Z M 216.179688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.6875 350.191406 C 135.6875 351.8125 133.257812 351.8125 133.257812 350.191406 C 133.257812 348.570312 135.6875 348.570312 135.6875 350.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.929688 418.691406 L 293.566406 415.855469 L 290.296875 415.855469 Z M 291.929688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.210938 347.027344 C 227.210938 348.648438 224.78125 348.648438 224.78125 347.027344 C 224.78125 345.40625 227.210938 345.40625 227.210938 347.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.730469 326.949219 C 223.730469 328.570312 221.300781 328.570312 221.300781 326.949219 C 221.300781 325.328125 223.730469 325.328125 223.730469 326.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.183594 150.667969 C 192.183594 152.285156 189.75 152.285156 189.75 150.667969 C 189.75 149.046875 192.183594 149.046875 192.183594 150.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.226562 171.324219 C 208.226562 172.945312 205.796875 172.945312 205.796875 171.324219 C 205.796875 169.703125 208.226562 169.703125 208.226562 171.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.996094 210.503906 C 140.996094 212.125 138.566406 212.125 138.566406 210.503906 C 138.566406 208.882812 140.996094 208.882812 140.996094 210.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.433594 70.910156 L 326.070312 73.746094 L 322.800781 73.746094 Z M 324.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.601562 144.160156 C 210.601562 145.78125 208.171875 145.78125 208.171875 144.160156 C 208.171875 142.542969 210.601562 142.542969 210.601562 144.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.171875 70.910156 L 181.808594 73.746094 L 178.539062 73.746094 Z M 180.171875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.160156 70.910156 L 162.796875 73.746094 L 159.523438 73.746094 Z M 161.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.128906 70.910156 L 285.765625 73.746094 L 282.492188 73.746094 Z M 284.128906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.152344 418.691406 L 218.789062 415.855469 L 215.515625 415.855469 Z M 217.152344 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.039062 70.910156 L 188.671875 73.746094 L 185.402344 73.746094 Z M 187.039062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.542969 283.054688 C 220.542969 284.675781 218.113281 284.675781 218.113281 283.054688 C 218.113281 281.433594 220.542969 281.433594 220.542969 283.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.808594 70.910156 L 115.445312 73.746094 L 112.175781 73.746094 Z M 113.808594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.695312 70.910156 L 172.332031 73.746094 L 169.058594 73.746094 Z M 170.695312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.40625 70.910156 L 257.039062 73.746094 L 253.769531 73.746094 Z M 255.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.042969 248.992188 C 250.042969 250.613281 247.613281 250.613281 247.613281 248.992188 C 247.613281 247.375 250.042969 247.375 250.042969 248.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.910156 250.351562 C 228.910156 251.96875 226.480469 251.96875 226.480469 250.351562 C 226.480469 248.730469 228.910156 248.730469 228.910156 250.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.335938 280.238281 C 278.335938 281.859375 275.90625 281.859375 275.90625 280.238281 C 275.90625 278.617188 278.335938 278.617188 278.335938 280.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.632812 252.796875 C 308.632812 254.417969 306.203125 254.417969 306.203125 252.796875 C 306.203125 251.179688 308.632812 251.179688 308.632812 252.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.640625 245.410156 C 265.640625 247.03125 263.210938 247.03125 263.210938 245.410156 C 263.210938 243.789062 265.640625 243.789062 265.640625 245.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.4375 211.882812 C 244.4375 213.503906 242.007812 213.503906 242.007812 211.882812 C 242.007812 210.261719 244.4375 210.261719 244.4375 211.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.5625 197.867188 C 252.5625 199.484375 250.132812 199.484375 250.132812 197.867188 C 250.132812 196.246094 252.5625 196.246094 252.5625 197.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.054688 78.460938 C 127.054688 80.082031 124.625 80.082031 124.625 78.460938 C 124.625 76.84375 127.054688 76.84375 127.054688 78.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.734375 70.910156 L 234.371094 73.746094 L 231.097656 73.746094 Z M 232.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.597656 314.972656 C 249.597656 316.59375 247.167969 316.59375 247.167969 314.972656 C 247.167969 313.351562 249.597656 313.351562 249.597656 314.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.035156 242.042969 C 264.035156 243.664062 261.605469 243.664062 261.605469 242.042969 C 261.605469 240.421875 264.035156 240.421875 264.035156 242.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.351562 232.011719 C 242.351562 233.632812 239.921875 233.632812 239.921875 232.011719 C 239.921875 230.390625 242.351562 230.390625 242.351562 232.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.417969 232.226562 C 226.417969 233.847656 223.988281 233.847656 223.988281 232.226562 C 223.988281 230.609375 226.417969 230.609375 226.417969 232.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.269531 223.574219 C 260.269531 225.195312 257.839844 225.195312 257.839844 223.574219 C 257.839844 221.957031 260.269531 221.957031 260.269531 223.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.238281 183.207031 C 199.238281 184.828125 196.808594 184.828125 196.808594 183.207031 C 196.808594 181.585938 199.238281 181.585938 199.238281 183.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.035156 241.507812 C 270.035156 243.128906 267.605469 243.128906 267.605469 241.507812 C 267.605469 239.886719 270.035156 239.886719 270.035156 241.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.054688 202.445312 C 283.054688 204.066406 280.625 204.066406 280.625 202.445312 C 280.625 200.824219 283.054688 200.824219 283.054688 202.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.78125 216.914062 C 268.78125 218.535156 266.351562 218.535156 266.351562 216.914062 C 266.351562 215.296875 268.78125 215.296875 268.78125 216.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.671875 183.476562 C 319.671875 185.097656 317.242188 185.097656 317.242188 183.476562 C 317.242188 181.855469 319.671875 181.855469 319.671875 183.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.261719 147.96875 C 327.261719 149.585938 324.832031 149.585938 324.832031 147.96875 C 324.832031 146.347656 327.261719 146.347656 327.261719 147.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.167969 282.976562 C 273.167969 284.597656 270.738281 284.597656 270.738281 282.976562 C 270.738281 281.359375 273.167969 281.359375 273.167969 282.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.125 186.703125 C 212.125 188.324219 209.695312 188.324219 209.695312 186.703125 C 209.695312 185.082031 212.125 185.082031 212.125 186.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.90625 75.167969 C 237.90625 76.789062 235.476562 76.789062 235.476562 75.167969 C 235.476562 73.546875 237.90625 73.546875 237.90625 75.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.917969 70.910156 L 191.554688 73.746094 L 188.28125 73.746094 Z M 189.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.667969 76.019531 C 196.667969 77.640625 194.238281 77.640625 194.238281 76.019531 C 194.238281 74.398438 196.667969 74.398438 196.667969 76.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.546875 301.0625 C 286.546875 302.683594 284.117188 302.683594 284.117188 301.0625 C 284.117188 299.445312 286.546875 299.445312 286.546875 301.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 351.023438 224.832031 C 351.023438 226.453125 348.59375 226.453125 348.59375 224.832031 C 348.59375 223.210938 351.023438 223.210938 351.023438 224.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.503906 172.378906 C 295.503906 174 293.074219 174 293.074219 172.378906 C 293.074219 170.757812 295.503906 170.757812 295.503906 172.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.578125 235.269531 C 274.578125 236.890625 272.148438 236.890625 272.148438 235.269531 C 272.148438 233.648438 274.578125 233.648438 274.578125 235.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.136719 416.226562 C 269.136719 417.84375 266.707031 417.84375 266.707031 416.226562 C 266.707031 414.605469 269.136719 414.605469 269.136719 416.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.21875 315.328125 C 258.21875 316.949219 255.789062 316.949219 255.789062 315.328125 C 255.789062 313.710938 258.21875 313.710938 258.21875 315.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.402344 129.992188 C 268.402344 131.609375 265.972656 131.609375 265.972656 129.992188 C 265.972656 128.371094 268.402344 128.371094 268.402344 129.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.359375 87.136719 C 215.359375 88.757812 212.929688 88.757812 212.929688 87.136719 C 212.929688 85.515625 215.359375 85.515625 215.359375 87.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.640625 268.308594 C 258.640625 269.925781 256.210938 269.925781 256.210938 268.308594 C 256.210938 266.6875 258.640625 266.6875 258.640625 268.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.511719 310.128906 C 239.511719 311.75 237.082031 311.75 237.082031 310.128906 C 237.082031 308.511719 239.511719 308.511719 239.511719 310.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.4375 296.582031 C 252.4375 298.199219 250.007812 298.199219 250.007812 296.582031 C 250.007812 294.960938 252.4375 294.960938 252.4375 296.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.574219 147.09375 C 204.574219 148.714844 202.144531 148.714844 202.144531 147.09375 C 202.144531 145.476562 204.574219 145.476562 204.574219 147.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.421875 167.777344 C 294.421875 169.398438 291.992188 169.398438 291.992188 167.777344 C 291.992188 166.15625 294.421875 166.15625 294.421875 167.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.742188 196.660156 C 273.742188 198.28125 271.3125 198.28125 271.3125 196.660156 C 271.3125 195.039062 273.742188 195.039062 273.742188 196.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.242188 260.097656 C 270.242188 261.71875 267.8125 261.71875 267.8125 260.097656 C 267.8125 258.476562 270.242188 258.476562 270.242188 260.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.027344 418.691406 L 246.664062 415.855469 L 243.390625 415.855469 Z M 245.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.726562 201.363281 C 284.726562 202.984375 282.296875 202.984375 282.296875 201.363281 C 282.296875 199.742188 284.726562 199.742188 284.726562 201.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.402344 268.523438 C 278.402344 270.144531 275.972656 270.144531 275.972656 268.523438 C 275.972656 266.902344 278.402344 266.902344 278.402344 268.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.222656 349.414062 C 247.222656 351.03125 244.792969 351.03125 244.792969 349.414062 C 244.792969 347.792969 247.222656 347.792969 247.222656 349.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.691406 119.75 C 170.691406 121.371094 168.261719 121.371094 168.261719 119.75 C 168.261719 118.128906 170.691406 118.128906 170.691406 119.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.890625 418.691406 L 149.527344 415.855469 L 146.253906 415.855469 Z M 147.890625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.765625 70.910156 L 181.402344 73.746094 L 178.128906 73.746094 Z M 179.765625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.464844 70.910156 L 150.097656 73.746094 L 146.828125 73.746094 Z M 148.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.445312 216.265625 C 259.445312 217.882812 257.015625 217.882812 257.015625 216.265625 C 257.015625 214.644531 259.445312 214.644531 259.445312 216.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.921875 243.882812 C 268.921875 245.503906 266.492188 245.503906 266.492188 243.882812 C 266.492188 242.261719 268.921875 242.261719 268.921875 243.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.425781 236.140625 C 279.425781 237.761719 276.996094 237.761719 276.996094 236.140625 C 276.996094 234.519531 279.425781 234.519531 279.425781 236.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.007812 263.570312 C 234.007812 265.191406 231.578125 265.191406 231.578125 263.570312 C 231.578125 261.949219 234.007812 261.949219 234.007812 263.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 357.945312 231.910156 C 357.945312 233.53125 355.515625 233.53125 355.515625 231.910156 C 355.515625 230.289062 357.945312 230.289062 357.945312 231.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.8125 100.496094 C 248.8125 102.117188 246.382812 102.117188 246.382812 100.496094 C 246.382812 98.878906 248.8125 98.878906 248.8125 100.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.839844 70.910156 L 174.476562 73.746094 L 171.203125 73.746094 Z M 172.839844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.601562 418.691406 L 215.238281 415.855469 L 211.964844 415.855469 Z M 213.601562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.878906 70.910156 L 222.515625 73.746094 L 219.242188 73.746094 Z M 220.878906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.433594 70.910156 L 207.070312 73.746094 L 203.796875 73.746094 Z M 205.433594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.621094 70.910156 L 171.257812 73.746094 L 167.988281 73.746094 Z M 169.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.835938 70.910156 L 198.472656 73.746094 L 195.199219 73.746094 Z M 196.835938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.855469 70.910156 L 220.492188 73.746094 L 217.21875 73.746094 Z M 218.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.382812 180.136719 C 210.382812 181.757812 207.953125 181.757812 207.953125 180.136719 C 207.953125 178.515625 210.382812 178.515625 210.382812 180.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.660156 275.101562 C 298.660156 276.722656 296.226562 276.722656 296.226562 275.101562 C 296.226562 273.480469 298.660156 273.480469 298.660156 275.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.582031 418.691406 L 269.21875 415.855469 L 265.945312 415.855469 Z M 267.582031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 363.265625 187.957031 C 363.265625 189.574219 360.835938 189.574219 360.835938 187.957031 C 360.835938 186.335938 363.265625 186.335938 363.265625 187.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.277344 283.257812 C 246.277344 284.875 243.847656 284.875 243.847656 283.257812 C 243.847656 281.636719 246.277344 281.636719 246.277344 283.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.636719 257.417969 C 235.636719 259.039062 233.207031 259.039062 233.207031 257.417969 C 233.207031 255.796875 235.636719 255.796875 235.636719 257.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.042969 370.769531 C 362.042969 372.390625 359.613281 372.390625 359.613281 370.769531 C 359.613281 369.148438 362.042969 369.148438 362.042969 370.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.296875 217.742188 C 293.296875 219.359375 290.867188 219.359375 290.867188 217.742188 C 290.867188 216.121094 293.296875 216.121094 293.296875 217.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.386719 129.40625 C 195.386719 131.023438 192.957031 131.023438 192.957031 129.40625 C 192.957031 127.785156 195.386719 127.785156 195.386719 129.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.410156 276.820312 C 145.410156 278.441406 142.980469 278.441406 142.980469 276.820312 C 142.980469 275.203125 145.410156 275.203125 145.410156 276.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.316406 148.875 C 175.316406 150.492188 172.886719 150.492188 172.886719 148.875 C 172.886719 147.253906 175.316406 147.253906 175.316406 148.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.652344 70.910156 L 264.289062 73.746094 L 261.015625 73.746094 Z M 262.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.476562 203.386719 C 244.476562 205.007812 242.046875 205.007812 242.046875 203.386719 C 242.046875 201.765625 244.476562 201.765625 244.476562 203.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.589844 331.71875 C 113.589844 333.339844 111.160156 333.339844 111.160156 331.71875 C 111.160156 330.097656 113.589844 330.097656 113.589844 331.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.027344 70.910156 L 177.664062 73.746094 L 174.390625 73.746094 Z M 176.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.757812 75.835938 C 280.757812 77.457031 278.328125 77.457031 278.328125 75.835938 C 278.328125 74.214844 280.757812 74.214844 280.757812 75.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.953125 224.019531 C 241.953125 225.640625 239.523438 225.640625 239.523438 224.019531 C 239.523438 222.398438 241.953125 222.398438 241.953125 224.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.390625 295.925781 C 290.390625 297.546875 287.960938 297.546875 287.960938 295.925781 C 287.960938 294.304688 290.390625 294.304688 290.390625 295.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.515625 418.691406 L 179.152344 415.855469 L 175.878906 415.855469 Z M 177.515625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.96875 418.691406 L 131.605469 415.855469 L 128.332031 415.855469 Z M 129.96875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.105469 96.5625 C 152.105469 98.183594 149.675781 98.183594 149.675781 96.5625 C 149.675781 94.945312 152.105469 94.945312 152.105469 96.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.53125 261.449219 C 268.53125 263.070312 266.101562 263.070312 266.101562 261.449219 C 266.101562 259.832031 268.53125 259.832031 268.53125 261.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.464844 245.152344 C 250.464844 246.773438 248.035156 246.773438 248.035156 245.152344 C 248.035156 243.53125 250.464844 243.53125 250.464844 245.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.746094 321.140625 C 267.746094 322.761719 265.316406 322.761719 265.316406 321.140625 C 265.316406 319.523438 267.746094 319.523438 267.746094 321.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.164062 281.433594 C 190.164062 283.050781 187.734375 283.050781 187.734375 281.433594 C 187.734375 279.8125 190.164062 279.8125 190.164062 281.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.3125 307.082031 C 257.3125 308.699219 254.878906 308.699219 254.878906 307.082031 C 254.878906 305.460938 257.3125 305.460938 257.3125 307.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.167969 226.144531 C 224.167969 227.765625 221.738281 227.765625 221.738281 226.144531 C 221.738281 224.527344 224.167969 224.527344 224.167969 226.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.835938 220.078125 C 204.835938 221.699219 202.40625 221.699219 202.40625 220.078125 C 202.40625 218.457031 204.835938 218.457031 204.835938 220.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.757812 348.015625 C 163.757812 349.636719 161.328125 349.636719 161.328125 348.015625 C 161.328125 346.394531 163.757812 346.394531 163.757812 348.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.308594 272.808594 C 288.308594 274.429688 285.878906 274.429688 285.878906 272.808594 C 285.878906 271.1875 288.308594 271.1875 288.308594 272.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.199219 287.535156 C 166.199219 289.15625 163.769531 289.15625 163.769531 287.535156 C 163.769531 285.914062 166.199219 285.914062 166.199219 287.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.515625 70.910156 L 153.152344 73.746094 L 149.878906 73.746094 Z M 151.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.421875 260.5 C 321.421875 262.121094 318.992188 262.121094 318.992188 260.5 C 318.992188 258.878906 321.421875 258.878906 321.421875 260.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.453125 307.753906 C 312.453125 309.371094 310.023438 309.371094 310.023438 307.753906 C 310.023438 306.132812 312.453125 306.132812 312.453125 307.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.574219 263.742188 C 219.574219 265.359375 217.144531 265.359375 217.144531 263.742188 C 217.144531 262.121094 219.574219 262.121094 219.574219 263.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.3125 319.378906 C 229.3125 321 226.882812 321 226.882812 319.378906 C 226.882812 317.757812 229.3125 317.757812 229.3125 319.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.492188 342.332031 C 198.492188 343.953125 196.0625 343.953125 196.0625 342.332031 C 196.0625 340.710938 198.492188 340.710938 198.492188 342.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.5625 310.828125 C 255.5625 312.449219 253.132812 312.449219 253.132812 310.828125 C 253.132812 309.210938 255.5625 309.210938 255.5625 310.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.644531 271.089844 C 237.644531 272.710938 235.214844 272.710938 235.214844 271.089844 C 235.214844 269.472656 237.644531 269.472656 237.644531 271.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.207031 239.78125 C 279.207031 241.402344 276.777344 241.402344 276.777344 239.78125 C 276.777344 238.160156 279.207031 238.160156 279.207031 239.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.6875 70.910156 L 141.324219 73.746094 L 138.050781 73.746094 Z M 139.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.117188 285.46875 C 284.117188 287.085938 281.6875 287.085938 281.6875 285.46875 C 281.6875 283.847656 284.117188 283.847656 284.117188 285.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.769531 272.417969 C 320.769531 274.035156 318.339844 274.035156 318.339844 272.417969 C 318.339844 270.796875 320.769531 270.796875 320.769531 272.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.929688 252.832031 C 240.929688 254.453125 238.5 254.453125 238.5 252.832031 C 238.5 251.210938 240.929688 251.210938 240.929688 252.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.675781 232.554688 C 213.675781 234.175781 211.246094 234.175781 211.246094 232.554688 C 211.246094 230.9375 213.675781 230.9375 213.675781 232.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.417969 209.855469 C 199.417969 211.476562 196.988281 211.476562 196.988281 209.855469 C 196.988281 208.234375 199.417969 208.234375 199.417969 209.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.519531 189.003906 C 214.519531 190.625 212.089844 190.625 212.089844 189.003906 C 212.089844 187.386719 214.519531 187.386719 214.519531 189.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.800781 300.800781 C 122.800781 302.421875 120.371094 302.421875 120.371094 300.800781 C 120.371094 299.183594 122.800781 299.183594 122.800781 300.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.203125 193.9375 C 241.203125 195.554688 238.773438 195.554688 238.773438 193.9375 C 238.773438 192.316406 241.203125 192.316406 241.203125 193.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.125 170.609375 C 237.125 172.230469 234.695312 172.230469 234.695312 170.609375 C 234.695312 168.988281 237.125 168.988281 237.125 170.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.683594 284.113281 C 133.683594 285.730469 131.253906 285.730469 131.253906 284.113281 C 131.253906 282.492188 133.683594 282.492188 133.683594 284.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.242188 194.351562 C 227.242188 195.972656 224.808594 195.972656 224.808594 194.351562 C 224.808594 192.730469 227.242188 192.730469 227.242188 194.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.371094 250.3125 C 295.371094 251.929688 292.941406 251.929688 292.941406 250.3125 C 292.941406 248.691406 295.371094 248.691406 295.371094 250.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.042969 294.625 C 302.042969 296.242188 299.613281 296.242188 299.613281 294.625 C 299.613281 293.003906 302.042969 293.003906 302.042969 294.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.808594 284.355469 C 223.808594 285.976562 221.378906 285.976562 221.378906 284.355469 C 221.378906 282.738281 223.808594 282.738281 223.808594 284.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.6875 335.890625 C 205.6875 337.511719 203.257812 337.511719 203.257812 335.890625 C 203.257812 334.273438 205.6875 334.273438 205.6875 335.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.558594 70.910156 L 210.195312 73.746094 L 206.921875 73.746094 Z M 208.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.984375 96.222656 C 261.984375 97.839844 259.554688 97.839844 259.554688 96.222656 C 259.554688 94.601562 261.984375 94.601562 261.984375 96.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.480469 309.195312 C 269.480469 310.8125 267.050781 310.8125 267.050781 309.195312 C 267.050781 307.574219 269.480469 307.574219 269.480469 309.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.976562 298.21875 C 243.976562 299.839844 241.546875 299.839844 241.546875 298.21875 C 241.546875 296.597656 243.976562 296.597656 243.976562 298.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.535156 365.742188 C 266.535156 367.363281 264.105469 367.363281 264.105469 365.742188 C 264.105469 364.125 266.535156 364.125 266.535156 365.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.640625 411.804688 C 277.640625 413.425781 275.210938 413.425781 275.210938 411.804688 C 275.210938 410.1875 277.640625 410.1875 277.640625 411.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.914062 303.457031 C 257.914062 305.078125 255.484375 305.078125 255.484375 303.457031 C 255.484375 301.835938 257.914062 301.835938 257.914062 303.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.203125 92.1875 C 176.203125 93.808594 173.773438 93.808594 173.773438 92.1875 C 173.773438 90.570312 176.203125 90.570312 176.203125 92.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.417969 212.730469 C 251.417969 214.347656 248.988281 214.347656 248.988281 212.730469 C 248.988281 211.109375 251.417969 211.109375 251.417969 212.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.925781 308.121094 C 323.925781 309.738281 321.496094 309.738281 321.496094 308.121094 C 321.496094 306.5 323.925781 306.5 323.925781 308.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.722656 305.332031 C 164.722656 306.953125 162.292969 306.953125 162.292969 305.332031 C 162.292969 303.710938 164.722656 303.710938 164.722656 305.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.132812 70.910156 L 289.769531 73.746094 L 286.496094 73.746094 Z M 288.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 174.769531 408.296875 C 174.769531 409.917969 172.339844 409.917969 172.339844 408.296875 C 172.339844 406.679688 174.769531 406.679688 174.769531 408.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.121094 353.21875 C 250.121094 354.839844 247.691406 354.839844 247.691406 353.21875 C 247.691406 351.597656 250.121094 351.597656 250.121094 353.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.984375 258.992188 C 257.984375 260.613281 255.554688 260.613281 255.554688 258.992188 C 255.554688 257.375 257.984375 257.375 257.984375 258.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.5 240.199219 C 228.5 241.820312 226.070312 241.820312 226.070312 240.199219 C 226.070312 238.578125 228.5 238.578125 228.5 240.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.554688 384.722656 C 120.554688 386.339844 118.125 386.339844 118.125 384.722656 C 118.125 383.101562 120.554688 383.101562 120.554688 384.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.136719 229.632812 C 254.136719 231.253906 251.707031 231.253906 251.707031 229.632812 C 251.707031 228.015625 254.136719 228.015625 254.136719 229.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.980469 289.371094 C 266.980469 290.988281 264.546875 290.988281 264.546875 289.371094 C 264.546875 287.75 266.980469 287.75 266.980469 289.371094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.582031 70.910156 L 160.21875 73.746094 L 156.945312 73.746094 Z M 158.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.359375 375.828125 C 146.359375 377.449219 143.929688 377.449219 143.929688 375.828125 C 143.929688 374.207031 146.359375 374.207031 146.359375 375.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.367188 257.582031 C 302.367188 259.203125 299.9375 259.203125 299.9375 257.582031 C 299.9375 255.964844 302.367188 255.964844 302.367188 257.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.082031 177.53125 C 278.082031 179.148438 275.652344 179.148438 275.652344 177.53125 C 275.652344 175.910156 278.082031 175.910156 278.082031 177.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.738281 224.378906 C 213.738281 225.996094 211.308594 225.996094 211.308594 224.378906 C 211.308594 222.757812 213.738281 222.757812 213.738281 224.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.496094 276.996094 C 253.496094 278.617188 251.066406 278.617188 251.066406 276.996094 C 251.066406 275.375 253.496094 275.375 253.496094 276.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.351562 70.910156 L 172.988281 73.746094 L 169.714844 73.746094 Z M 171.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.988281 81.433594 C 206.988281 83.050781 204.558594 83.050781 204.558594 81.433594 C 204.558594 79.8125 206.988281 79.8125 206.988281 81.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.203125 304.789062 C 256.203125 306.410156 253.773438 306.410156 253.773438 304.789062 C 253.773438 303.167969 256.203125 303.167969 256.203125 304.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.914062 418.691406 L 364.550781 415.855469 L 361.277344 415.855469 Z M 362.914062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.125 330.648438 C 209.125 332.269531 206.695312 332.269531 206.695312 330.648438 C 206.695312 329.027344 209.125 329.027344 209.125 330.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.003906 185.753906 C 221.003906 187.375 218.574219 187.375 218.574219 185.753906 C 218.574219 184.132812 221.003906 184.132812 221.003906 185.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.003906 161.84375 C 187.003906 163.460938 184.574219 163.460938 184.574219 161.84375 C 184.574219 160.222656 187.003906 160.222656 187.003906 161.84375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.621094 70.910156 L 162.257812 73.746094 L 158.984375 73.746094 Z M 160.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.320312 191.890625 C 345.320312 193.511719 342.890625 193.511719 342.890625 191.890625 C 342.890625 190.273438 345.320312 190.273438 345.320312 191.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.882812 70.910156 L 156.519531 73.746094 L 153.246094 73.746094 Z M 154.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.613281 244.152344 C 280.613281 245.773438 278.183594 245.773438 278.183594 244.152344 C 278.183594 242.53125 280.613281 242.53125 280.613281 244.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.519531 300.453125 C 273.519531 302.070312 271.089844 302.070312 271.089844 300.453125 C 271.089844 298.832031 273.519531 298.832031 273.519531 300.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.167969 237.554688 C 259.167969 239.175781 256.738281 239.175781 256.738281 237.554688 C 256.738281 235.933594 259.167969 235.933594 259.167969 237.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.261719 244.46875 C 213.261719 246.089844 210.832031 246.089844 210.832031 244.46875 C 210.832031 242.851562 213.261719 242.851562 213.261719 244.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.746094 336.210938 C 275.746094 337.832031 273.316406 337.832031 273.316406 336.210938 C 273.316406 334.589844 275.746094 334.589844 275.746094 336.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.558594 178.273438 C 146.558594 179.894531 144.128906 179.894531 144.128906 178.273438 C 144.128906 176.652344 146.558594 176.652344 146.558594 178.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.300781 70.910156 L 237.9375 73.746094 L 234.664062 73.746094 Z M 236.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.054688 180.953125 C 206.054688 182.574219 203.625 182.574219 203.625 180.953125 C 203.625 179.335938 206.054688 179.335938 206.054688 180.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.933594 169.085938 C 214.933594 170.707031 212.5 170.707031 212.5 169.085938 C 212.5 167.46875 214.933594 167.46875 214.933594 169.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.683594 270.566406 C 198.683594 272.1875 196.253906 272.1875 196.253906 270.566406 C 196.253906 268.945312 198.683594 268.945312 198.683594 270.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.65625 249.058594 C 300.65625 250.675781 298.226562 250.675781 298.226562 249.058594 C 298.226562 247.4375 300.65625 247.4375 300.65625 249.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.300781 277.878906 C 258.300781 279.5 255.871094 279.5 255.871094 277.878906 C 255.871094 276.257812 258.300781 276.257812 258.300781 277.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.21875 202.148438 C 276.21875 203.769531 273.789062 203.769531 273.789062 202.148438 C 273.789062 200.527344 276.21875 200.527344 276.21875 202.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.003906 164.988281 C 140.003906 166.605469 137.574219 166.605469 137.574219 164.988281 C 137.574219 163.367188 140.003906 163.367188 140.003906 164.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.015625 279.191406 C 169.015625 280.808594 166.585938 280.808594 166.585938 279.191406 C 166.585938 277.570312 169.015625 277.570312 169.015625 279.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.230469 229.253906 C 244.230469 230.875 241.800781 230.875 241.800781 229.253906 C 241.800781 227.636719 244.230469 227.636719 244.230469 229.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.125 343.21875 C 227.125 344.835938 224.695312 344.835938 224.695312 343.21875 C 224.695312 341.597656 227.125 341.597656 227.125 343.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.976562 306.015625 C 270.976562 307.636719 268.546875 307.636719 268.546875 306.015625 C 268.546875 304.398438 270.976562 304.398438 270.976562 306.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.730469 316.613281 C 301.730469 318.234375 299.300781 318.234375 299.300781 316.613281 C 299.300781 314.992188 301.730469 314.992188 301.730469 316.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.390625 103.242188 C 139.390625 104.863281 136.960938 104.863281 136.960938 103.242188 C 136.960938 101.621094 139.390625 101.621094 139.390625 103.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.4375 228.160156 C 292.4375 229.78125 290.007812 229.78125 290.007812 228.160156 C 290.007812 226.542969 292.4375 226.542969 292.4375 228.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.472656 161.894531 C 184.472656 163.511719 182.042969 163.511719 182.042969 161.894531 C 182.042969 160.273438 184.472656 160.273438 184.472656 161.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.65625 337.824219 C 358.65625 339.441406 356.226562 339.441406 356.226562 337.824219 C 356.226562 336.203125 358.65625 336.203125 358.65625 337.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.453125 418.691406 L 227.089844 415.855469 L 223.816406 415.855469 Z M 225.453125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.066406 275.328125 C 272.066406 276.949219 269.636719 276.949219 269.636719 275.328125 C 269.636719 273.710938 272.066406 273.710938 272.066406 275.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.484375 222.796875 C 276.484375 224.417969 274.054688 224.417969 274.054688 222.796875 C 274.054688 221.175781 276.484375 221.175781 276.484375 222.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.183594 414.367188 C 283.183594 415.984375 280.753906 415.984375 280.753906 414.367188 C 280.753906 412.746094 283.183594 412.746094 283.183594 414.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.519531 418.691406 L 189.15625 415.855469 L 185.882812 415.855469 Z M 187.519531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.457031 244.460938 C 185.457031 246.082031 183.027344 246.082031 183.027344 244.460938 C 183.027344 242.84375 185.457031 242.84375 185.457031 244.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.683594 410.574219 C 123.683594 412.195312 121.25 412.195312 121.25 410.574219 C 121.25 408.953125 123.683594 408.953125 123.683594 410.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.078125 200.363281 C 123.078125 201.980469 120.648438 201.980469 120.648438 200.363281 C 120.648438 198.742188 123.078125 198.742188 123.078125 200.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.386719 70.910156 L 198.023438 73.746094 L 194.75 73.746094 Z M 196.386719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.84375 70.910156 L 140.480469 73.746094 L 137.207031 73.746094 Z M 138.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.164062 70.910156 L 132.796875 73.746094 L 129.527344 73.746094 Z M 131.164062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.734375 294.390625 C 274.734375 296.011719 272.304688 296.011719 272.304688 294.390625 C 272.304688 292.769531 274.734375 292.769531 274.734375 294.390625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.378906 418.691406 L 250.015625 415.855469 L 246.742188 415.855469 Z M 248.378906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.832031 329.96875 C 250.832031 331.585938 248.402344 331.585938 248.402344 329.96875 C 248.402344 328.347656 250.832031 328.347656 250.832031 329.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.0625 254.457031 C 129.0625 256.074219 126.632812 256.074219 126.632812 254.457031 C 126.632812 252.835938 129.0625 252.835938 129.0625 254.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.890625 265.742188 C 157.890625 267.359375 155.457031 267.359375 155.457031 265.742188 C 155.457031 264.121094 157.890625 264.121094 157.890625 265.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.230469 149.148438 C 297.230469 150.769531 294.800781 150.769531 294.800781 149.148438 C 294.800781 147.53125 297.230469 147.53125 297.230469 149.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.3125 70.910156 L 210.949219 73.746094 L 207.675781 73.746094 Z M 209.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.59375 297.789062 C 286.59375 299.410156 284.164062 299.410156 284.164062 297.789062 C 284.164062 296.167969 286.59375 296.167969 286.59375 297.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.394531 77.445312 C 207.394531 79.066406 204.960938 79.066406 204.960938 77.445312 C 204.960938 75.824219 207.394531 75.824219 207.394531 77.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.269531 340.042969 C 268.269531 341.664062 265.839844 341.664062 265.839844 340.042969 C 265.839844 338.421875 268.269531 338.421875 268.269531 340.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.425781 159.039062 C 300.425781 160.65625 297.996094 160.65625 297.996094 159.039062 C 297.996094 157.417969 300.425781 157.417969 300.425781 159.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.054688 118.804688 C 250.054688 120.425781 247.621094 120.425781 247.621094 118.804688 C 247.621094 117.183594 250.054688 117.183594 250.054688 118.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.414062 312.613281 C 330.414062 314.230469 327.984375 314.230469 327.984375 312.613281 C 327.984375 310.992188 330.414062 310.992188 330.414062 312.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.949219 277.253906 C 303.949219 278.875 301.519531 278.875 301.519531 277.253906 C 301.519531 275.636719 303.949219 275.636719 303.949219 277.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.933594 70.910156 L 157.570312 73.746094 L 154.296875 73.746094 Z M 155.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.167969 78.503906 C 126.167969 80.125 123.738281 80.125 123.738281 78.503906 C 123.738281 76.882812 126.167969 76.882812 126.167969 78.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.117188 247.429688 C 288.117188 249.046875 285.6875 249.046875 285.6875 247.429688 C 285.6875 245.808594 288.117188 245.808594 288.117188 247.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.8125 274.980469 C 268.8125 276.597656 266.382812 276.597656 266.382812 274.980469 C 266.382812 273.359375 268.8125 273.359375 268.8125 274.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.105469 303.007812 C 253.105469 304.628906 250.675781 304.628906 250.675781 303.007812 C 250.675781 301.386719 253.105469 301.386719 253.105469 303.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.082031 140.292969 C 226.082031 141.914062 223.652344 141.914062 223.652344 140.292969 C 223.652344 138.671875 226.082031 138.671875 226.082031 140.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.277344 151.488281 C 222.277344 153.109375 219.847656 153.109375 219.847656 151.488281 C 219.847656 149.867188 222.277344 149.867188 222.277344 151.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.714844 261.726562 C 268.714844 263.34375 266.285156 263.34375 266.285156 261.726562 C 266.285156 260.105469 268.714844 260.105469 268.714844 261.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.179688 248.0625 C 248.179688 249.683594 245.75 249.683594 245.75 248.0625 C 245.75 246.445312 248.179688 246.445312 248.179688 248.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.675781 70.910156 L 179.3125 73.746094 L 176.039062 73.746094 Z M 177.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.59375 341.125 C 262.59375 342.746094 260.164062 342.746094 260.164062 341.125 C 260.164062 339.507812 262.59375 339.507812 262.59375 341.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.285156 285.289062 C 254.285156 286.90625 251.855469 286.90625 251.855469 285.289062 C 251.855469 283.667969 254.285156 283.667969 254.285156 285.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.78125 318.84375 C 294.78125 320.464844 292.351562 320.464844 292.351562 318.84375 C 292.351562 317.222656 294.78125 317.222656 294.78125 318.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.203125 236.941406 C 317.203125 238.558594 314.773438 238.558594 314.773438 236.941406 C 314.773438 235.320312 317.203125 235.320312 317.203125 236.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.433594 321.324219 C 274.433594 322.945312 272.003906 322.945312 272.003906 321.324219 C 272.003906 319.703125 274.433594 319.703125 274.433594 321.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.359375 381.175781 C 288.359375 382.796875 285.925781 382.796875 285.925781 381.175781 C 285.925781 379.554688 288.359375 379.554688 288.359375 381.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.6875 300.597656 C 287.6875 302.21875 285.257812 302.21875 285.257812 300.597656 C 285.257812 298.980469 287.6875 298.980469 287.6875 300.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.21875 240.816406 C 306.21875 242.4375 303.789062 242.4375 303.789062 240.816406 C 303.789062 239.195312 306.21875 239.195312 306.21875 240.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.371094 273.808594 C 240.371094 275.429688 237.941406 275.429688 237.941406 273.808594 C 237.941406 272.191406 240.371094 272.191406 240.371094 273.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.308594 224.5625 C 258.308594 226.183594 255.878906 226.183594 255.878906 224.5625 C 255.878906 222.941406 258.308594 222.941406 258.308594 224.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.003906 277.820312 C 201.003906 279.441406 198.574219 279.441406 198.574219 277.820312 C 198.574219 276.199219 201.003906 276.199219 201.003906 277.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.359375 258.953125 C 221.359375 260.570312 218.929688 260.570312 218.929688 258.953125 C 218.929688 257.332031 221.359375 257.332031 221.359375 258.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.101562 234.675781 C 232.101562 236.292969 229.671875 236.292969 229.671875 234.675781 C 229.671875 233.054688 232.101562 233.054688 232.101562 234.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.265625 116.558594 C 214.265625 118.179688 211.835938 118.179688 211.835938 116.558594 C 211.835938 114.941406 214.265625 114.941406 214.265625 116.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.796875 347.566406 C 197.796875 349.1875 195.363281 349.1875 195.363281 347.566406 C 195.363281 345.945312 197.796875 345.945312 197.796875 347.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.097656 315.601562 C 288.097656 317.222656 285.667969 317.222656 285.667969 315.601562 C 285.667969 313.984375 288.097656 313.984375 288.097656 315.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.191406 332.941406 C 252.191406 334.558594 249.761719 334.558594 249.761719 332.941406 C 249.761719 331.320312 252.191406 331.320312 252.191406 332.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.566406 70.910156 L 279.203125 73.746094 L 275.929688 73.746094 Z M 277.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.414062 321.042969 C 232.414062 322.664062 229.984375 322.664062 229.984375 321.042969 C 229.984375 319.425781 232.414062 319.425781 232.414062 321.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.53125 250.804688 C 247.53125 252.425781 245.101562 252.425781 245.101562 250.804688 C 245.101562 249.1875 247.53125 249.1875 247.53125 250.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.972656 117.246094 C 184.972656 118.867188 182.539062 118.867188 182.539062 117.246094 C 182.539062 115.625 184.972656 115.625 184.972656 117.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.351562 70.910156 L 240.988281 73.746094 L 237.714844 73.746094 Z M 239.351562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.863281 70.910156 L 183.5 73.746094 L 180.226562 73.746094 Z M 181.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.992188 313.671875 C 223.992188 315.292969 221.5625 315.292969 221.5625 313.671875 C 221.5625 312.054688 223.992188 312.054688 223.992188 313.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.296875 70.910156 L 238.933594 73.746094 L 235.660156 73.746094 Z M 237.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.46875 323 C 273.46875 324.621094 271.039062 324.621094 271.039062 323 C 271.039062 321.378906 273.46875 321.378906 273.46875 323 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.066406 216.851562 C 328.066406 218.472656 325.636719 218.472656 325.636719 216.851562 C 325.636719 215.234375 328.066406 215.234375 328.066406 216.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.585938 279.089844 C 281.585938 280.710938 279.15625 280.710938 279.15625 279.089844 C 279.15625 277.46875 281.585938 277.46875 281.585938 279.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.6875 180.929688 C 168.6875 182.550781 166.257812 182.550781 166.257812 180.929688 C 166.257812 179.308594 168.6875 179.308594 168.6875 180.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.195312 178.308594 C 151.195312 179.925781 148.765625 179.925781 148.765625 178.308594 C 148.765625 176.6875 151.195312 176.6875 151.195312 178.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.355469 70.910156 L 225.992188 73.746094 L 222.71875 73.746094 Z M 224.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.539062 276.113281 C 162.539062 277.734375 160.105469 277.734375 160.105469 276.113281 C 160.105469 274.492188 162.539062 274.492188 162.539062 276.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.464844 132.382812 C 239.464844 134 237.035156 134 237.035156 132.382812 C 237.035156 130.761719 239.464844 130.761719 239.464844 132.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.953125 147.09375 C 243.953125 148.710938 241.523438 148.710938 241.523438 147.09375 C 241.523438 145.472656 243.953125 145.472656 243.953125 147.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.476562 70.910156 L 169.113281 73.746094 L 165.839844 73.746094 Z M 167.476562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.949219 70.910156 L 151.585938 73.746094 L 148.3125 73.746094 Z M 149.949219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.703125 70.910156 L 208.339844 73.746094 L 205.066406 73.746094 Z M 206.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.339844 265.015625 C 250.339844 266.636719 247.90625 266.636719 247.90625 265.015625 C 247.90625 263.394531 250.339844 263.394531 250.339844 265.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.5 260.441406 C 251.5 262.0625 249.070312 262.0625 249.070312 260.441406 C 249.070312 258.824219 251.5 258.824219 251.5 260.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.101562 282.609375 C 290.101562 284.230469 287.671875 284.230469 287.671875 282.609375 C 287.671875 280.992188 290.101562 280.992188 290.101562 282.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 127.550781 C 118.445312 129.171875 116.015625 129.171875 116.015625 127.550781 C 116.015625 125.933594 118.445312 125.933594 118.445312 127.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.765625 70.910156 L 239.402344 73.746094 L 236.128906 73.746094 Z M 237.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.191406 196.300781 C 242.191406 197.921875 239.761719 197.921875 239.761719 196.300781 C 239.761719 194.679688 242.191406 194.679688 242.191406 196.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.09375 70.910156 L 180.730469 73.746094 L 177.457031 73.746094 Z M 179.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.035156 264.339844 C 230.035156 265.960938 227.605469 265.960938 227.605469 264.339844 C 227.605469 262.722656 230.035156 262.722656 230.035156 264.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.785156 304.097656 C 173.785156 305.71875 171.355469 305.71875 171.355469 304.097656 C 171.355469 302.480469 173.785156 302.480469 173.785156 304.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.28125 399.96875 C 152.28125 401.589844 149.851562 401.589844 149.851562 399.96875 C 149.851562 398.351562 152.28125 398.351562 152.28125 399.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.863281 70.910156 L 163.5 73.746094 L 160.230469 73.746094 Z M 161.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.28125 70.910156 L 151.917969 73.746094 L 148.644531 73.746094 Z M 150.28125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.863281 70.910156 L 185.5 73.746094 L 182.226562 73.746094 Z M 183.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.226562 323.003906 C 312.226562 324.625 309.796875 324.625 309.796875 323.003906 C 309.796875 321.386719 312.226562 321.386719 312.226562 323.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.230469 213.921875 C 267.230469 215.542969 264.800781 215.542969 264.800781 213.921875 C 264.800781 212.304688 267.230469 212.304688 267.230469 213.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.492188 143.300781 C 243.492188 144.921875 241.0625 144.921875 241.0625 143.300781 C 241.0625 141.683594 243.492188 141.683594 243.492188 143.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.019531 253.820312 C 217.019531 255.441406 214.589844 255.441406 214.589844 253.820312 C 214.589844 252.199219 217.019531 252.199219 217.019531 253.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.945312 327.585938 C 140.945312 329.203125 138.515625 329.203125 138.515625 327.585938 C 138.515625 325.964844 140.945312 325.964844 140.945312 327.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.546875 187.589844 C 227.546875 189.210938 225.117188 189.210938 225.117188 187.589844 C 225.117188 185.972656 227.546875 185.972656 227.546875 187.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.425781 347.398438 C 269.425781 349.019531 266.996094 349.019531 266.996094 347.398438 C 266.996094 345.777344 269.425781 345.777344 269.425781 347.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.855469 290.140625 C 278.855469 291.761719 276.425781 291.761719 276.425781 290.140625 C 276.425781 288.523438 278.855469 288.523438 278.855469 290.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.804688 70.910156 L 196.441406 73.746094 L 193.167969 73.746094 Z M 194.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.59375 298.21875 C 239.59375 299.839844 237.164062 299.839844 237.164062 298.21875 C 237.164062 296.597656 239.59375 296.597656 239.59375 298.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.949219 166.882812 C 223.949219 168.5 221.519531 168.5 221.519531 166.882812 C 221.519531 165.261719 223.949219 165.261719 223.949219 166.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.324219 209.839844 C 196.324219 211.460938 193.894531 211.460938 193.894531 209.839844 C 193.894531 208.21875 196.324219 208.21875 196.324219 209.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.722656 70.910156 L 202.359375 73.746094 L 199.085938 73.746094 Z M 200.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.273438 108.140625 C 220.273438 109.757812 217.84375 109.757812 217.84375 108.140625 C 217.84375 106.519531 220.273438 106.519531 220.273438 108.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.308594 182.910156 C 327.308594 184.53125 324.878906 184.53125 324.878906 182.910156 C 324.878906 181.289062 327.308594 181.289062 327.308594 182.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.429688 311.070312 C 269.429688 312.691406 267 312.691406 267 311.070312 C 267 309.449219 269.429688 309.449219 269.429688 311.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.9375 184.425781 C 232.9375 186.046875 230.507812 186.046875 230.507812 184.425781 C 230.507812 182.804688 232.9375 182.804688 232.9375 184.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.992188 220.804688 C 267.992188 222.421875 265.5625 222.421875 265.5625 220.804688 C 265.5625 219.183594 267.992188 219.183594 267.992188 220.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.765625 70.910156 L 268.398438 73.746094 L 265.128906 73.746094 Z M 266.765625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.324219 70.910156 L 161.960938 73.746094 L 158.6875 73.746094 Z M 160.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.945312 70.910156 L 255.582031 73.746094 L 252.308594 73.746094 Z M 253.945312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.128906 70.910156 L 142.765625 73.746094 L 139.492188 73.746094 Z M 141.128906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.25 70.910156 L 152.886719 73.746094 L 149.613281 73.746094 Z M 151.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.554688 179.613281 C 147.554688 181.234375 145.125 181.234375 145.125 179.613281 C 145.125 177.996094 147.554688 177.996094 147.554688 179.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.367188 156.394531 C 193.367188 158.011719 190.9375 158.011719 190.9375 156.394531 C 190.9375 154.773438 193.367188 154.773438 193.367188 156.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.253906 94.988281 C 122.253906 96.609375 119.824219 96.609375 119.824219 94.988281 C 119.824219 93.367188 122.253906 93.367188 122.253906 94.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.53125 70.910156 L 174.167969 73.746094 L 170.894531 73.746094 Z M 172.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.644531 70.910156 L 195.28125 73.746094 L 192.007812 73.746094 Z M 193.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.910156 113.582031 C 146.910156 115.199219 144.480469 115.199219 144.480469 113.582031 C 144.480469 111.960938 146.910156 111.960938 146.910156 113.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.53125 275.324219 C 222.53125 276.945312 220.101562 276.945312 220.101562 275.324219 C 220.101562 273.703125 222.53125 273.703125 222.53125 275.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.742188 264.652344 C 283.742188 266.273438 281.3125 266.273438 281.3125 264.652344 C 281.3125 263.03125 283.742188 263.03125 283.742188 264.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.320312 261.316406 C 297.320312 262.9375 294.890625 262.9375 294.890625 261.316406 C 294.890625 259.699219 297.320312 259.699219 297.320312 261.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.257812 418.691406 L 172.894531 415.855469 L 169.621094 415.855469 Z M 171.257812 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.707031 418.691406 L 246.34375 415.855469 L 243.070312 415.855469 Z M 244.707031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.835938 193.40625 C 128.835938 195.023438 126.40625 195.023438 126.40625 193.40625 C 126.40625 191.785156 128.835938 191.785156 128.835938 193.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.703125 70.910156 L 197.339844 73.746094 L 194.066406 73.746094 Z M 195.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.90625 331.71875 C 290.90625 333.335938 288.472656 333.335938 288.472656 331.71875 C 288.472656 330.097656 290.90625 330.097656 290.90625 331.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.433594 70.910156 L 319.070312 73.746094 L 315.796875 73.746094 Z M 317.433594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.207031 70.910156 L 119.84375 73.746094 L 116.570312 73.746094 Z M 118.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.03125 139.613281 C 272.03125 141.230469 269.601562 141.230469 269.601562 139.613281 C 269.601562 137.992188 272.03125 137.992188 272.03125 139.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.515625 70.910156 L 329.152344 73.746094 L 325.878906 73.746094 Z M 327.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.46875 281.132812 C 242.46875 282.75 240.039062 282.75 240.039062 281.132812 C 240.039062 279.511719 242.46875 279.511719 242.46875 281.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.246094 203.160156 C 220.246094 204.78125 217.816406 204.78125 217.816406 203.160156 C 217.816406 201.539062 220.246094 201.539062 220.246094 203.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.445312 157.511719 C 248.445312 159.128906 246.015625 159.128906 246.015625 157.511719 C 246.015625 155.890625 248.445312 155.890625 248.445312 157.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.214844 147.609375 C 178.214844 149.230469 175.785156 149.230469 175.785156 147.609375 C 175.785156 145.992188 178.214844 145.992188 178.214844 147.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.113281 348.988281 C 298.113281 350.609375 295.679688 350.609375 295.679688 348.988281 C 295.679688 347.367188 298.113281 347.367188 298.113281 348.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.386719 158.914062 C 272.386719 160.53125 269.953125 160.53125 269.953125 158.914062 C 269.953125 157.292969 272.386719 157.292969 272.386719 158.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.359375 311.070312 C 235.359375 312.691406 232.929688 312.691406 232.929688 311.070312 C 232.929688 309.453125 235.359375 309.453125 235.359375 311.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.28125 278.109375 C 208.28125 279.726562 205.851562 279.726562 205.851562 278.109375 C 205.851562 276.488281 208.28125 276.488281 208.28125 278.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.019531 187.84375 C 249.019531 189.464844 246.589844 189.464844 246.589844 187.84375 C 246.589844 186.222656 249.019531 186.222656 249.019531 187.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.925781 130.546875 C 198.925781 132.164062 196.496094 132.164062 196.496094 130.546875 C 196.496094 128.925781 198.925781 128.925781 198.925781 130.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.878906 373.085938 C 116.878906 374.703125 114.449219 374.703125 114.449219 373.085938 C 114.449219 371.464844 116.878906 371.464844 116.878906 373.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.476562 306.4375 C 260.476562 308.058594 258.046875 308.058594 258.046875 306.4375 C 258.046875 304.816406 260.476562 304.816406 260.476562 306.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.078125 265.164062 C 253.078125 266.78125 250.648438 266.78125 250.648438 265.164062 C 250.648438 263.542969 253.078125 263.542969 253.078125 265.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.535156 275.675781 C 241.535156 277.296875 239.105469 277.296875 239.105469 275.675781 C 239.105469 274.054688 241.535156 274.054688 241.535156 275.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.480469 291.132812 C 264.480469 292.753906 262.050781 292.753906 262.050781 291.132812 C 262.050781 289.515625 264.480469 289.515625 264.480469 291.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.734375 161.660156 C 223.734375 163.277344 221.304688 163.277344 221.304688 161.660156 C 221.304688 160.039062 223.734375 160.039062 223.734375 161.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.105469 316.109375 C 211.105469 317.730469 208.675781 317.730469 208.675781 316.109375 C 208.675781 314.488281 211.105469 314.488281 211.105469 316.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.847656 300.628906 C 265.847656 302.246094 263.417969 302.246094 263.417969 300.628906 C 263.417969 299.007812 265.847656 299.007812 265.847656 300.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 343.890625 70.910156 L 345.527344 73.746094 L 342.253906 73.746094 Z M 343.890625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.726562 70.910156 L 276.363281 73.746094 L 273.089844 73.746094 Z M 274.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.703125 188.960938 C 145.703125 190.578125 143.273438 190.578125 143.273438 188.960938 C 143.273438 187.339844 145.703125 187.339844 145.703125 188.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.804688 182.417969 C 255.804688 184.039062 253.375 184.039062 253.375 182.417969 C 253.375 180.800781 255.804688 180.800781 255.804688 182.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.941406 70.910156 L 238.578125 73.746094 L 235.308594 73.746094 Z M 236.941406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.066406 70.910156 L 184.703125 73.746094 L 181.429688 73.746094 Z M 183.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.078125 126.394531 C 239.078125 128.011719 236.648438 128.011719 236.648438 126.394531 C 236.648438 124.773438 239.078125 124.773438 239.078125 126.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.5 70.910156 L 184.136719 73.746094 L 180.863281 73.746094 Z M 182.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.644531 137.910156 C 271.644531 139.527344 269.214844 139.527344 269.214844 137.910156 C 269.214844 136.289062 271.644531 136.289062 271.644531 137.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.28125 221.035156 C 297.28125 222.652344 294.851562 222.652344 294.851562 221.035156 C 294.851562 219.414062 297.28125 219.414062 297.28125 221.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.734375 182.375 C 218.734375 183.996094 216.304688 183.996094 216.304688 182.375 C 216.304688 180.753906 218.734375 180.753906 218.734375 182.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.105469 261.519531 C 258.105469 263.136719 255.675781 263.136719 255.675781 261.519531 C 255.675781 259.898438 258.105469 259.898438 258.105469 261.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.207031 246.9375 C 238.207031 248.558594 235.777344 248.558594 235.777344 246.9375 C 235.777344 245.316406 238.207031 245.316406 238.207031 246.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.203125 318.910156 C 246.203125 320.527344 243.773438 320.527344 243.773438 318.910156 C 243.773438 317.289062 246.203125 317.289062 246.203125 318.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.292969 146.285156 C 261.292969 147.902344 258.863281 147.902344 258.863281 146.285156 C 258.863281 144.664062 261.292969 144.664062 261.292969 146.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.5625 193.929688 C 191.5625 195.546875 189.132812 195.546875 189.132812 193.929688 C 189.132812 192.308594 191.5625 192.308594 191.5625 193.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.828125 251.625 C 313.828125 253.242188 311.398438 253.242188 311.398438 251.625 C 311.398438 250.003906 313.828125 250.003906 313.828125 251.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.050781 304.582031 C 165.050781 306.199219 162.621094 306.199219 162.621094 304.582031 C 162.621094 302.960938 165.050781 302.960938 165.050781 304.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.355469 418.691406 L 139.992188 415.855469 L 136.71875 415.855469 Z M 138.355469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.882812 264.667969 C 236.882812 266.289062 234.453125 266.289062 234.453125 264.667969 C 234.453125 263.046875 236.882812 263.046875 236.882812 264.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.839844 286.386719 C 274.839844 288.007812 272.410156 288.007812 272.410156 286.386719 C 272.410156 284.765625 274.839844 284.765625 274.839844 286.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.433594 235.699219 C 171.433594 237.320312 169.003906 237.320312 169.003906 235.699219 C 169.003906 234.082031 171.433594 234.082031 171.433594 235.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.886719 70.910156 L 168.519531 73.746094 L 165.25 73.746094 Z M 166.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.207031 279.226562 C 293.207031 280.847656 290.777344 280.847656 290.777344 279.226562 C 290.777344 277.609375 293.207031 277.609375 293.207031 279.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.648438 170.839844 C 271.648438 172.460938 269.21875 172.460938 269.21875 170.839844 C 269.21875 169.21875 271.648438 169.21875 271.648438 170.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.886719 70.910156 L 178.523438 73.746094 L 175.25 73.746094 Z M 176.886719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.1875 70.910156 L 198.824219 73.746094 L 195.550781 73.746094 Z M 197.1875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.820312 70.910156 L 261.457031 73.746094 L 258.183594 73.746094 Z M 259.820312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.050781 70.910156 L 238.6875 73.746094 L 235.414062 73.746094 Z M 237.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.847656 232.472656 C 220.847656 234.09375 218.417969 234.09375 218.417969 232.472656 C 218.417969 230.851562 220.847656 230.851562 220.847656 232.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.519531 177.53125 C 293.519531 179.152344 291.089844 179.152344 291.089844 177.53125 C 291.089844 175.914062 293.519531 175.914062 293.519531 177.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.796875 336.976562 C 298.796875 338.597656 296.367188 338.597656 296.367188 336.976562 C 296.367188 335.355469 298.796875 335.355469 298.796875 336.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.371094 70.910156 L 219.007812 73.746094 L 215.734375 73.746094 Z M 217.371094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.464844 176.34375 C 269.464844 177.964844 267.035156 177.964844 267.035156 176.34375 C 267.035156 174.722656 269.464844 174.722656 269.464844 176.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.621094 219.28125 C 294.621094 220.898438 292.191406 220.898438 292.191406 219.28125 C 292.191406 217.660156 294.621094 217.660156 294.621094 219.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.914062 70.910156 L 256.550781 73.746094 L 253.277344 73.746094 Z M 254.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.921875 204.074219 C 277.921875 205.695312 275.492188 205.695312 275.492188 204.074219 C 275.492188 202.457031 277.921875 202.457031 277.921875 204.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.777344 192.230469 C 207.777344 193.851562 205.347656 193.851562 205.347656 192.230469 C 205.347656 190.613281 207.777344 190.613281 207.777344 192.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.6875 276.535156 C 294.6875 278.15625 292.257812 278.15625 292.257812 276.535156 C 292.257812 274.914062 294.6875 274.914062 294.6875 276.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.769531 281.964844 C 285.769531 283.585938 283.339844 283.585938 283.339844 281.964844 C 283.339844 280.34375 285.769531 280.34375 285.769531 281.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.613281 175.558594 C 157.613281 177.179688 155.183594 177.179688 155.183594 175.558594 C 155.183594 173.941406 157.613281 173.941406 157.613281 175.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.933594 239.257812 C 309.933594 240.875 307.503906 240.875 307.503906 239.257812 C 307.503906 237.636719 309.933594 237.636719 309.933594 239.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.238281 230.9375 C 282.238281 232.558594 279.808594 232.558594 279.808594 230.9375 C 279.808594 229.320312 282.238281 229.320312 282.238281 230.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.527344 246.503906 C 271.527344 248.125 269.097656 248.125 269.097656 246.503906 C 269.097656 244.882812 271.527344 244.882812 271.527344 246.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.292969 168.027344 C 319.292969 169.644531 316.863281 169.644531 316.863281 168.027344 C 316.863281 166.40625 319.292969 166.40625 319.292969 168.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.851562 70.910156 L 245.488281 73.746094 L 242.21875 73.746094 Z M 243.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.65625 202.445312 C 123.65625 204.066406 121.226562 204.066406 121.226562 202.445312 C 121.226562 200.824219 123.65625 200.824219 123.65625 202.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.824219 200.019531 C 273.824219 201.636719 271.394531 201.636719 271.394531 200.019531 C 271.394531 198.398438 273.824219 198.398438 273.824219 200.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.984375 189.546875 C 267.984375 191.167969 265.554688 191.167969 265.554688 189.546875 C 265.554688 187.925781 267.984375 187.925781 267.984375 189.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.816406 227.039062 C 316.816406 228.660156 314.382812 228.660156 314.382812 227.039062 C 314.382812 225.417969 316.816406 225.417969 316.816406 227.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.210938 286.460938 C 209.210938 288.082031 206.78125 288.082031 206.78125 286.460938 C 206.78125 284.84375 209.210938 284.84375 209.210938 286.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.921875 241.144531 C 190.921875 242.761719 188.492188 242.761719 188.492188 241.144531 C 188.492188 239.523438 190.921875 239.523438 190.921875 241.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.8125 175.828125 C 238.8125 177.445312 236.382812 177.445312 236.382812 175.828125 C 236.382812 174.207031 238.8125 174.207031 238.8125 175.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.808594 268.804688 C 255.808594 270.425781 253.378906 270.425781 253.378906 268.804688 C 253.378906 267.1875 255.808594 267.1875 255.808594 268.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.261719 242.570312 C 190.261719 244.191406 187.828125 244.191406 187.828125 242.570312 C 187.828125 240.949219 190.261719 240.949219 190.261719 242.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.609375 206.238281 C 170.609375 207.859375 168.179688 207.859375 168.179688 206.238281 C 168.179688 204.621094 170.609375 204.621094 170.609375 206.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.261719 322.492188 C 299.261719 324.109375 296.832031 324.109375 296.832031 322.492188 C 296.832031 320.871094 299.261719 320.871094 299.261719 322.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.238281 303.566406 C 236.238281 305.1875 233.808594 305.1875 233.808594 303.566406 C 233.808594 301.945312 236.238281 301.945312 236.238281 303.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.484375 229.273438 C 219.484375 230.894531 217.050781 230.894531 217.050781 229.273438 C 217.050781 227.652344 219.484375 227.652344 219.484375 229.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.644531 231.304688 C 262.644531 232.921875 260.214844 232.921875 260.214844 231.304688 C 260.214844 229.683594 262.644531 229.683594 262.644531 231.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.707031 249.9375 C 231.707031 251.554688 229.277344 251.554688 229.277344 249.9375 C 229.277344 248.316406 231.707031 248.316406 231.707031 249.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.003906 70.910156 L 170.636719 73.746094 L 167.367188 73.746094 Z M 169.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.074219 186.195312 C 239.074219 187.816406 236.644531 187.816406 236.644531 186.195312 C 236.644531 184.574219 239.074219 184.574219 239.074219 186.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.320312 70.910156 L 204.957031 73.746094 L 201.683594 73.746094 Z M 203.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.558594 123.652344 C 310.558594 125.273438 308.128906 125.273438 308.128906 123.652344 C 308.128906 122.03125 310.558594 122.03125 310.558594 123.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.6875 163.078125 C 283.6875 164.699219 281.257812 164.699219 281.257812 163.078125 C 281.257812 161.457031 283.6875 161.457031 283.6875 163.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.585938 332.578125 C 276.585938 334.199219 274.15625 334.199219 274.15625 332.578125 C 274.15625 330.957031 276.585938 330.957031 276.585938 332.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.890625 204.164062 C 297.890625 205.785156 295.460938 205.785156 295.460938 204.164062 C 295.460938 202.542969 297.890625 202.542969 297.890625 204.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 400.148438 157.058594 C 400.148438 158.679688 397.71875 158.679688 397.71875 157.058594 C 397.71875 155.4375 400.148438 155.4375 400.148438 157.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.164062 306.054688 C 322.164062 307.671875 319.734375 307.671875 319.734375 306.054688 C 319.734375 304.433594 322.164062 304.433594 322.164062 306.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.21875 188.265625 C 273.21875 189.886719 270.789062 189.886719 270.789062 188.265625 C 270.789062 186.644531 273.21875 186.644531 273.21875 188.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.207031 204.378906 C 274.207031 206 271.773438 206 271.773438 204.378906 C 271.773438 202.757812 274.207031 202.757812 274.207031 204.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.363281 283.117188 C 156.363281 284.738281 153.933594 284.738281 153.933594 283.117188 C 153.933594 281.496094 156.363281 281.496094 156.363281 283.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.445312 233.015625 C 313.445312 234.636719 311.015625 234.636719 311.015625 233.015625 C 311.015625 231.394531 313.445312 231.394531 313.445312 233.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.316406 200.96875 C 277.316406 202.589844 274.886719 202.589844 274.886719 200.96875 C 274.886719 199.351562 277.316406 199.351562 277.316406 200.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.933594 270.054688 C 251.933594 271.675781 249.503906 271.675781 249.503906 270.054688 C 249.503906 268.4375 251.933594 268.4375 251.933594 270.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.773438 70.910156 L 277.410156 73.746094 L 274.136719 73.746094 Z M 275.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.71875 272.515625 C 254.71875 274.136719 252.289062 274.136719 252.289062 272.515625 C 252.289062 270.898438 254.71875 270.898438 254.71875 272.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.519531 92.625 C 241.519531 94.246094 239.089844 94.246094 239.089844 92.625 C 239.089844 91.007812 241.519531 91.007812 241.519531 92.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.507812 300.160156 C 225.507812 301.777344 223.078125 301.777344 223.078125 300.160156 C 223.078125 298.539062 225.507812 298.539062 225.507812 300.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.660156 273.8125 C 205.660156 275.433594 203.230469 275.433594 203.230469 273.8125 C 203.230469 272.191406 205.660156 272.191406 205.660156 273.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.015625 284.8125 C 286.015625 286.433594 283.585938 286.433594 283.585938 284.8125 C 283.585938 283.195312 286.015625 283.195312 286.015625 284.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.195312 70.910156 L 204.832031 73.746094 L 201.558594 73.746094 Z M 203.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.871094 289.226562 C 288.871094 290.847656 286.441406 290.847656 286.441406 289.226562 C 286.441406 287.605469 288.871094 287.605469 288.871094 289.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.285156 256.769531 C 246.285156 258.390625 243.855469 258.390625 243.855469 256.769531 C 243.855469 255.148438 246.285156 255.148438 246.285156 256.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.09375 70.910156 L 225.730469 73.746094 L 222.457031 73.746094 Z M 224.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.140625 292.300781 C 242.140625 293.921875 239.710938 293.921875 239.710938 292.300781 C 239.710938 290.679688 242.140625 290.679688 242.140625 292.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.980469 265.230469 C 279.980469 266.847656 277.546875 266.847656 277.546875 265.230469 C 277.546875 263.609375 279.980469 263.609375 279.980469 265.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.929688 70.910156 L 181.566406 73.746094 L 178.292969 73.746094 Z M 179.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.589844 177.34375 C 281.589844 178.964844 279.160156 178.964844 279.160156 177.34375 C 279.160156 175.726562 281.589844 175.726562 281.589844 177.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.679688 184.5 C 238.679688 186.121094 236.25 186.121094 236.25 184.5 C 236.25 182.878906 238.679688 182.878906 238.679688 184.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.925781 105.203125 C 262.925781 106.824219 260.496094 106.824219 260.496094 105.203125 C 260.496094 103.585938 262.925781 103.585938 262.925781 105.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.804688 275.890625 C 261.804688 277.511719 259.375 277.511719 259.375 275.890625 C 259.375 274.273438 261.804688 274.273438 261.804688 275.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.402344 108.84375 C 259.402344 110.460938 256.972656 110.460938 256.972656 108.84375 C 256.972656 107.222656 259.402344 107.222656 259.402344 108.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.632812 349.820312 C 199.632812 351.441406 197.203125 351.441406 197.203125 349.820312 C 197.203125 348.203125 199.632812 348.203125 199.632812 349.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.359375 310.367188 C 231.359375 311.988281 228.929688 311.988281 228.929688 310.367188 C 228.929688 308.75 231.359375 308.75 231.359375 310.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.65625 70.910156 L 133.292969 73.746094 L 130.019531 73.746094 Z M 131.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.195312 257.496094 C 239.195312 259.117188 236.765625 259.117188 236.765625 257.496094 C 236.765625 255.875 239.195312 255.875 239.195312 257.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.726562 240.769531 C 227.726562 242.390625 225.296875 242.390625 225.296875 240.769531 C 225.296875 239.148438 227.726562 239.148438 227.726562 240.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.855469 169.285156 C 189.855469 170.90625 187.425781 170.90625 187.425781 169.285156 C 187.425781 167.664062 189.855469 167.664062 189.855469 169.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.316406 140.675781 C 132.316406 142.292969 129.886719 142.292969 129.886719 140.675781 C 129.886719 139.054688 132.316406 139.054688 132.316406 140.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.535156 119.71875 C 322.535156 121.339844 320.105469 121.339844 320.105469 119.71875 C 320.105469 118.101562 322.535156 118.101562 322.535156 119.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.730469 418.691406 L 359.367188 415.855469 L 356.09375 415.855469 Z M 357.730469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.851562 294.925781 C 252.851562 296.546875 250.421875 296.546875 250.421875 294.925781 C 250.421875 293.304688 252.851562 293.304688 252.851562 294.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.984375 239.367188 C 308.984375 240.988281 306.550781 240.988281 306.550781 239.367188 C 306.550781 237.75 308.984375 237.75 308.984375 239.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.152344 217.566406 C 251.152344 219.183594 248.722656 219.183594 248.722656 217.566406 C 248.722656 215.945312 251.152344 215.945312 251.152344 217.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.15625 102.824219 C 294.15625 104.445312 291.726562 104.445312 291.726562 102.824219 C 291.726562 101.207031 294.15625 101.207031 294.15625 102.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.289062 245.015625 C 281.289062 246.636719 278.859375 246.636719 278.859375 245.015625 C 278.859375 243.398438 281.289062 243.398438 281.289062 245.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.847656 239.1875 C 279.847656 240.808594 277.417969 240.808594 277.417969 239.1875 C 277.417969 237.570312 279.847656 237.570312 279.847656 239.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.597656 322.984375 C 241.597656 324.605469 239.167969 324.605469 239.167969 322.984375 C 239.167969 321.363281 241.597656 321.363281 241.597656 322.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.570312 324.792969 C 110.570312 326.414062 108.140625 326.414062 108.140625 324.792969 C 108.140625 323.171875 110.570312 323.171875 110.570312 324.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.003906 70.910156 L 126.640625 73.746094 L 123.367188 73.746094 Z M 125.003906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.109375 70.910156 L 202.746094 73.746094 L 199.472656 73.746094 Z M 201.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.597656 248.558594 C 326.597656 250.179688 324.167969 250.179688 324.167969 248.558594 C 324.167969 246.941406 326.597656 246.941406 326.597656 248.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.453125 70.910156 L 148.089844 73.746094 L 144.816406 73.746094 Z M 146.453125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.535156 405.960938 C 256.535156 407.578125 254.105469 407.578125 254.105469 405.960938 C 254.105469 404.339844 256.535156 404.339844 256.535156 405.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.675781 381.023438 C 233.675781 382.640625 231.246094 382.640625 231.246094 381.023438 C 231.246094 379.402344 233.675781 379.402344 233.675781 381.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.8125 70.910156 L 168.449219 73.746094 L 165.175781 73.746094 Z M 166.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.929688 160.96875 C 290.929688 162.585938 288.5 162.585938 288.5 160.96875 C 288.5 159.347656 290.929688 159.347656 290.929688 160.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.472656 70.910156 L 223.109375 73.746094 L 219.839844 73.746094 Z M 221.472656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.3125 70.910156 L 217.945312 73.746094 L 214.675781 73.746094 Z M 216.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.507812 80.628906 C 206.507812 82.25 204.078125 82.25 204.078125 80.628906 C 204.078125 79.011719 206.507812 79.011719 206.507812 80.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.023438 70.910156 L 195.660156 73.746094 L 192.390625 73.746094 Z M 194.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.023438 230.199219 C 280.023438 231.820312 277.59375 231.820312 277.59375 230.199219 C 277.59375 228.578125 280.023438 228.578125 280.023438 230.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.875 70.910156 L 211.511719 73.746094 L 208.238281 73.746094 Z M 209.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.496094 188.632812 C 249.496094 190.253906 247.066406 190.253906 247.066406 188.632812 C 247.066406 187.015625 249.496094 187.015625 249.496094 188.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.742188 310.984375 C 309.742188 312.605469 307.3125 312.605469 307.3125 310.984375 C 307.3125 309.363281 309.742188 309.363281 309.742188 310.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.582031 146.023438 C 192.582031 147.644531 190.148438 147.644531 190.148438 146.023438 C 190.148438 144.402344 192.582031 144.402344 192.582031 146.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.324219 70.910156 L 174.960938 73.746094 L 171.691406 73.746094 Z M 173.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.5 70.910156 L 213.136719 73.746094 L 209.863281 73.746094 Z M 211.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.894531 208.0625 C 254.894531 209.679688 252.464844 209.679688 252.464844 208.0625 C 252.464844 206.441406 254.894531 206.441406 254.894531 208.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.902344 291.609375 C 264.902344 293.230469 262.472656 293.230469 262.472656 291.609375 C 262.472656 289.992188 264.902344 289.992188 264.902344 291.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.910156 179.210938 C 331.910156 180.832031 329.480469 180.832031 329.480469 179.210938 C 329.480469 177.589844 331.910156 177.589844 331.910156 179.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.230469 234.777344 C 282.230469 236.398438 279.796875 236.398438 279.796875 234.777344 C 279.796875 233.15625 282.230469 233.15625 282.230469 234.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.847656 323.722656 C 167.847656 325.34375 165.417969 325.34375 165.417969 323.722656 C 165.417969 322.101562 167.847656 322.101562 167.847656 323.722656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.195312 70.910156 L 312.832031 73.746094 L 309.558594 73.746094 Z M 311.195312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.089844 70.910156 L 235.726562 73.746094 L 232.453125 73.746094 Z M 234.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.640625 246.667969 C 329.640625 248.289062 327.210938 248.289062 327.210938 246.667969 C 327.210938 245.046875 329.640625 245.046875 329.640625 246.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.777344 285.222656 C 293.777344 286.84375 291.347656 286.84375 291.347656 285.222656 C 291.347656 283.601562 293.777344 283.601562 293.777344 285.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.183594 278.609375 C 187.183594 280.226562 184.753906 280.226562 184.753906 278.609375 C 184.753906 276.988281 187.183594 276.988281 187.183594 278.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.265625 70.910156 L 224.902344 73.746094 L 221.628906 73.746094 Z M 223.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.53125 255.113281 C 314.53125 256.734375 312.101562 256.734375 312.101562 255.113281 C 312.101562 253.492188 314.53125 253.492188 314.53125 255.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.992188 292.480469 C 281.992188 294.101562 279.5625 294.101562 279.5625 292.480469 C 279.5625 290.859375 281.992188 290.859375 281.992188 292.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.066406 242.691406 C 306.066406 244.3125 303.636719 244.3125 303.636719 242.691406 C 303.636719 241.074219 306.066406 241.074219 306.066406 242.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.910156 252.136719 C 298.910156 253.757812 296.480469 253.757812 296.480469 252.136719 C 296.480469 250.515625 298.910156 250.515625 298.910156 252.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.179688 270.542969 C 274.179688 272.164062 271.746094 272.164062 271.746094 270.542969 C 271.746094 268.925781 274.179688 268.925781 274.179688 270.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.871094 222.054688 C 288.871094 223.675781 286.441406 223.675781 286.441406 222.054688 C 286.441406 220.433594 288.871094 220.433594 288.871094 222.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.527344 269.757812 C 284.527344 271.378906 282.097656 271.378906 282.097656 269.757812 C 282.097656 268.136719 284.527344 268.136719 284.527344 269.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.789062 83.59375 C 233.789062 85.214844 231.359375 85.214844 231.359375 83.59375 C 231.359375 81.972656 233.789062 81.972656 233.789062 83.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.914062 290.222656 C 221.914062 291.84375 219.484375 291.84375 219.484375 290.222656 C 219.484375 288.605469 221.914062 288.605469 221.914062 290.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.667969 251.996094 C 306.667969 253.617188 304.238281 253.617188 304.238281 251.996094 C 304.238281 250.378906 306.667969 250.378906 306.667969 251.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.667969 139.757812 C 143.667969 141.375 141.238281 141.375 141.238281 139.757812 C 141.238281 138.136719 143.667969 138.136719 143.667969 139.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.488281 70.910156 L 164.125 73.746094 L 160.851562 73.746094 Z M 162.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.515625 223.917969 C 258.515625 225.539062 256.085938 225.539062 256.085938 223.917969 C 256.085938 222.296875 258.515625 222.296875 258.515625 223.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.714844 70.910156 L 176.351562 73.746094 L 173.078125 73.746094 Z M 174.714844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.074219 70.910156 L 227.710938 73.746094 L 224.4375 73.746094 Z M 226.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.054688 70.910156 L 246.691406 73.746094 L 243.417969 73.746094 Z M 245.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.714844 258.835938 C 282.714844 260.453125 280.285156 260.453125 280.285156 258.835938 C 280.285156 257.214844 282.714844 257.214844 282.714844 258.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.355469 280.316406 C 237.355469 281.9375 234.925781 281.9375 234.925781 280.316406 C 234.925781 278.695312 237.355469 278.695312 237.355469 280.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.472656 268.320312 C 253.472656 269.941406 251.042969 269.941406 251.042969 268.320312 C 251.042969 266.699219 253.472656 266.699219 253.472656 268.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.550781 105.894531 C 120.550781 107.515625 118.121094 107.515625 118.121094 105.894531 C 118.121094 104.277344 120.550781 104.277344 120.550781 105.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.445312 70.910156 L 155.082031 73.746094 L 151.808594 73.746094 Z M 153.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.148438 335.195312 C 314.148438 336.816406 311.71875 336.816406 311.71875 335.195312 C 311.71875 333.574219 314.148438 333.574219 314.148438 335.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.097656 331.492188 C 286.097656 333.113281 283.667969 333.113281 283.667969 331.492188 C 283.667969 329.875 286.097656 329.875 286.097656 331.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.355469 334.183594 C 258.355469 335.804688 255.925781 335.804688 255.925781 334.183594 C 255.925781 332.566406 258.355469 332.566406 258.355469 334.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.441406 274.960938 C 315.441406 276.582031 313.011719 276.582031 313.011719 274.960938 C 313.011719 273.339844 315.441406 273.339844 315.441406 274.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.039062 366.453125 C 194.039062 368.070312 191.609375 368.070312 191.609375 366.453125 C 191.609375 364.832031 194.039062 364.832031 194.039062 366.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.71875 246.5 C 285.71875 248.121094 283.289062 248.121094 283.289062 246.5 C 283.289062 244.878906 285.71875 244.878906 285.71875 246.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.304688 228.460938 C 248.304688 230.082031 245.875 230.082031 245.875 228.460938 C 245.875 226.839844 248.304688 226.839844 248.304688 228.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.292969 280.421875 C 273.292969 282.042969 270.859375 282.042969 270.859375 280.421875 C 270.859375 278.804688 273.292969 278.804688 273.292969 280.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.84375 216.15625 C 261.84375 217.773438 259.414062 217.773438 259.414062 216.15625 C 259.414062 214.535156 261.84375 214.535156 261.84375 216.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.339844 282.957031 C 267.339844 284.578125 264.910156 284.578125 264.910156 282.957031 C 264.910156 281.339844 267.339844 281.339844 267.339844 282.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.125 223.90625 C 288.125 225.523438 285.695312 225.523438 285.695312 223.90625 C 285.695312 222.285156 288.125 222.285156 288.125 223.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.296875 213.132812 C 339.296875 214.75 336.867188 214.75 336.867188 213.132812 C 336.867188 211.511719 339.296875 211.511719 339.296875 213.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.34375 260.222656 C 118.34375 261.839844 115.914062 261.839844 115.914062 260.222656 C 115.914062 258.601562 118.34375 258.601562 118.34375 260.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.734375 215.386719 C 296.734375 217.003906 294.304688 217.003906 294.304688 215.386719 C 294.304688 213.765625 296.734375 213.765625 296.734375 215.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.960938 320.34375 C 295.960938 321.964844 293.53125 321.964844 293.53125 320.34375 C 293.53125 318.722656 295.960938 318.722656 295.960938 320.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.414062 319.132812 C 264.414062 320.753906 261.980469 320.753906 261.980469 319.132812 C 261.980469 317.515625 264.414062 317.515625 264.414062 319.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.625 253.875 C 301.625 255.496094 299.195312 255.496094 299.195312 253.875 C 299.195312 252.257812 301.625 252.257812 301.625 253.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.707031 70.910156 L 180.34375 73.746094 L 177.070312 73.746094 Z M 178.707031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.316406 70.910156 L 170.953125 73.746094 L 167.679688 73.746094 Z M 169.316406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.117188 70.910156 L 281.753906 73.746094 L 278.480469 73.746094 Z M 280.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.066406 258.351562 C 253.066406 259.96875 250.636719 259.96875 250.636719 258.351562 C 250.636719 256.730469 253.066406 256.730469 253.066406 258.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.1875 286.589844 C 291.1875 288.210938 288.757812 288.210938 288.757812 286.589844 C 288.757812 284.96875 291.1875 284.96875 291.1875 286.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.636719 206.0625 C 250.636719 207.683594 248.207031 207.683594 248.207031 206.0625 C 248.207031 204.445312 250.636719 204.445312 250.636719 206.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.613281 215.332031 C 259.613281 216.953125 257.183594 216.953125 257.183594 215.332031 C 257.183594 213.710938 259.613281 213.710938 259.613281 215.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.503906 213.554688 C 242.503906 215.175781 240.070312 215.175781 240.070312 213.554688 C 240.070312 211.933594 242.503906 211.933594 242.503906 213.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.535156 84.882812 C 143.535156 86.5 141.105469 86.5 141.105469 84.882812 C 141.105469 83.261719 143.535156 83.261719 143.535156 84.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.503906 70.910156 L 160.136719 73.746094 L 156.867188 73.746094 Z M 158.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.554688 272.59375 C 345.554688 274.214844 343.125 274.214844 343.125 272.59375 C 343.125 270.972656 345.554688 270.972656 345.554688 272.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.734375 70.910156 L 254.371094 73.746094 L 251.097656 73.746094 Z M 252.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.34375 344.46875 C 264.34375 346.089844 261.914062 346.089844 261.914062 344.46875 C 261.914062 342.847656 264.34375 342.847656 264.34375 344.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.292969 70.910156 L 129.925781 73.746094 L 126.65625 73.746094 Z M 128.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.214844 231.648438 C 218.214844 233.269531 215.785156 233.269531 215.785156 231.648438 C 215.785156 230.027344 218.214844 230.027344 218.214844 231.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.558594 290.808594 C 179.558594 292.429688 177.128906 292.429688 177.128906 290.808594 C 177.128906 289.191406 179.558594 289.191406 179.558594 290.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.382812 70.910156 L 133.019531 73.746094 L 129.746094 73.746094 Z M 131.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.839844 70.910156 L 221.476562 73.746094 L 218.203125 73.746094 Z M 219.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.191406 203.679688 C 232.191406 205.296875 229.761719 205.296875 229.761719 203.679688 C 229.761719 202.058594 232.191406 202.058594 232.191406 203.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.15625 220.320312 C 233.15625 221.941406 230.726562 221.941406 230.726562 220.320312 C 230.726562 218.699219 233.15625 218.699219 233.15625 220.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.089844 70.910156 L 226.726562 73.746094 L 223.453125 73.746094 Z M 225.089844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.613281 70.910156 L 312.25 73.746094 L 308.980469 73.746094 Z M 310.613281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.363281 70.910156 L 180 73.746094 L 176.726562 73.746094 Z M 178.363281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.765625 70.910156 L 150.402344 73.746094 L 147.132812 73.746094 Z M 148.765625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.09375 70.910156 L 124.730469 73.746094 L 121.457031 73.746094 Z M 123.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.75 70.910156 L 189.386719 73.746094 L 186.113281 73.746094 Z M 187.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.210938 136.140625 C 168.210938 137.761719 165.78125 137.761719 165.78125 136.140625 C 165.78125 134.519531 168.210938 134.519531 168.210938 136.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.863281 323.847656 C 220.863281 325.464844 218.433594 325.464844 218.433594 323.847656 C 218.433594 322.226562 220.863281 322.226562 220.863281 323.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.960938 285.535156 C 275.960938 287.15625 273.53125 287.15625 273.53125 285.535156 C 273.53125 283.917969 275.960938 283.917969 275.960938 285.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.847656 70.910156 L 141.484375 73.746094 L 138.210938 73.746094 Z M 139.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.769531 70.910156 L 140.40625 73.746094 L 137.132812 73.746094 Z M 138.769531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.917969 181.039062 C 226.917969 182.65625 224.488281 182.65625 224.488281 181.039062 C 224.488281 179.417969 226.917969 179.417969 226.917969 181.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.738281 232.128906 C 201.738281 233.75 199.308594 233.75 199.308594 232.128906 C 199.308594 230.511719 201.738281 230.511719 201.738281 232.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.28125 70.910156 L 227.917969 73.746094 L 224.644531 73.746094 Z M 226.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.613281 140.59375 C 162.613281 142.214844 160.183594 142.214844 160.183594 140.59375 C 160.183594 138.976562 162.613281 138.976562 162.613281 140.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.574219 391.886719 C 262.574219 393.503906 260.144531 393.503906 260.144531 391.886719 C 260.144531 390.265625 262.574219 390.265625 262.574219 391.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.210938 242.617188 C 267.210938 244.234375 264.78125 244.234375 264.78125 242.617188 C 264.78125 240.996094 267.210938 240.996094 267.210938 242.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.976562 359.636719 C 237.976562 361.257812 235.546875 361.257812 235.546875 359.636719 C 235.546875 358.019531 237.976562 358.019531 237.976562 359.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.851562 157.195312 C 198.851562 158.816406 196.421875 158.816406 196.421875 157.195312 C 196.421875 155.574219 198.851562 155.574219 198.851562 157.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.445312 319.539062 C 145.445312 321.160156 143.015625 321.160156 143.015625 319.539062 C 143.015625 317.921875 145.445312 317.921875 145.445312 319.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.019531 331.929688 C 149.019531 333.550781 146.585938 333.550781 146.585938 331.929688 C 146.585938 330.3125 149.019531 330.3125 149.019531 331.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.261719 255.621094 C 246.261719 257.242188 243.832031 257.242188 243.832031 255.621094 C 243.832031 254.003906 246.261719 254.003906 246.261719 255.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.835938 306.164062 C 209.835938 307.785156 207.40625 307.785156 207.40625 306.164062 C 207.40625 304.542969 209.835938 304.542969 209.835938 306.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.136719 241.898438 C 283.136719 243.519531 280.707031 243.519531 280.707031 241.898438 C 280.707031 240.277344 283.136719 240.277344 283.136719 241.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.9375 355.296875 C 285.9375 356.917969 283.507812 356.917969 283.507812 355.296875 C 283.507812 353.679688 285.9375 353.679688 285.9375 355.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.433594 132.90625 C 133.433594 134.527344 131.003906 134.527344 131.003906 132.90625 C 131.003906 131.285156 133.433594 131.285156 133.433594 132.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.125 70.910156 L 248.761719 73.746094 L 245.488281 73.746094 Z M 247.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.152344 205.941406 C 278.152344 207.5625 275.722656 207.5625 275.722656 205.941406 C 275.722656 204.320312 278.152344 204.320312 278.152344 205.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.476562 308.417969 C 263.476562 310.035156 261.046875 310.035156 261.046875 308.417969 C 261.046875 306.796875 263.476562 306.796875 263.476562 308.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.996094 286.339844 C 250.996094 287.960938 248.566406 287.960938 248.566406 286.339844 C 248.566406 284.722656 250.996094 284.722656 250.996094 286.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.992188 324.644531 C 189.992188 326.265625 187.5625 326.265625 187.5625 324.644531 C 187.5625 323.023438 189.992188 323.023438 189.992188 324.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.027344 163.992188 C 309.027344 165.613281 306.597656 165.613281 306.597656 163.992188 C 306.597656 162.371094 309.027344 162.371094 309.027344 163.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.992188 202.730469 C 277.992188 204.351562 275.558594 204.351562 275.558594 202.730469 C 275.558594 201.113281 277.992188 201.113281 277.992188 202.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.667969 154.308594 C 200.667969 155.929688 198.234375 155.929688 198.234375 154.308594 C 198.234375 152.6875 200.667969 152.6875 200.667969 154.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.089844 216.433594 C 266.089844 218.050781 263.660156 218.050781 263.660156 216.433594 C 263.660156 214.8125 266.089844 214.8125 266.089844 216.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.011719 205.839844 C 324.011719 207.460938 321.582031 207.460938 321.582031 205.839844 C 321.582031 204.222656 324.011719 204.222656 324.011719 205.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.101562 70.910156 L 200.738281 73.746094 L 197.464844 73.746094 Z M 199.101562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.746094 70.910156 L 193.382812 73.746094 L 190.109375 73.746094 Z M 191.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.332031 258.488281 C 128.332031 260.109375 125.902344 260.109375 125.902344 258.488281 C 125.902344 256.867188 128.332031 256.867188 128.332031 258.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.074219 297.960938 C 252.074219 299.582031 249.640625 299.582031 249.640625 297.960938 C 249.640625 296.34375 252.074219 296.34375 252.074219 297.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.679688 70.910156 L 216.3125 73.746094 L 213.042969 73.746094 Z M 214.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.402344 280.417969 C 230.402344 282.039062 227.972656 282.039062 227.972656 280.417969 C 227.972656 278.796875 230.402344 278.796875 230.402344 280.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.085938 88.074219 C 154.085938 89.695312 151.65625 89.695312 151.65625 88.074219 C 151.65625 86.453125 154.085938 86.453125 154.085938 88.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.804688 108.507812 C 233.804688 110.128906 231.375 110.128906 231.375 108.507812 C 231.375 106.890625 233.804688 106.890625 233.804688 108.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.140625 230.566406 C 274.140625 232.1875 271.710938 232.1875 271.710938 230.566406 C 271.710938 228.945312 274.140625 228.945312 274.140625 230.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.507812 70.910156 L 265.144531 73.746094 L 261.871094 73.746094 Z M 263.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.5625 418.691406 L 269.199219 415.855469 L 265.925781 415.855469 Z M 267.5625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.355469 252.910156 C 260.355469 254.53125 257.925781 254.53125 257.925781 252.910156 C 257.925781 251.289062 260.355469 251.289062 260.355469 252.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.03125 248.847656 C 239.03125 250.46875 236.601562 250.46875 236.601562 248.847656 C 236.601562 247.226562 239.03125 247.226562 239.03125 248.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.011719 70.910156 L 191.648438 73.746094 L 188.375 73.746094 Z M 190.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.597656 276.355469 C 140.597656 277.976562 138.167969 277.976562 138.167969 276.355469 C 138.167969 274.738281 140.597656 274.738281 140.597656 276.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.589844 238.660156 C 303.589844 240.277344 301.160156 240.277344 301.160156 238.660156 C 301.160156 237.039062 303.589844 237.039062 303.589844 238.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.472656 259.3125 C 169.472656 260.933594 167.042969 260.933594 167.042969 259.3125 C 167.042969 257.691406 169.472656 257.691406 169.472656 259.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.460938 220.273438 C 265.460938 221.894531 263.03125 221.894531 263.03125 220.273438 C 263.03125 218.652344 265.460938 218.652344 265.460938 220.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.726562 311.132812 C 217.726562 312.75 215.296875 312.75 215.296875 311.132812 C 215.296875 309.511719 217.726562 309.511719 217.726562 311.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.023438 70.910156 L 279.65625 73.746094 L 276.386719 73.746094 Z M 278.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.34375 398.886719 C 266.34375 400.503906 263.914062 400.503906 263.914062 398.886719 C 263.914062 397.265625 266.34375 397.265625 266.34375 398.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.292969 388.488281 C 268.292969 390.109375 265.863281 390.109375 265.863281 388.488281 C 265.863281 386.867188 268.292969 386.867188 268.292969 388.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.140625 335.730469 C 154.140625 337.351562 151.710938 337.351562 151.710938 335.730469 C 151.710938 334.109375 154.140625 334.109375 154.140625 335.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.824219 245.773438 C 265.824219 247.394531 263.394531 247.394531 263.394531 245.773438 C 263.394531 244.152344 265.824219 244.152344 265.824219 245.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.621094 214.199219 C 180.621094 215.816406 178.191406 215.816406 178.191406 214.199219 C 178.191406 212.578125 180.621094 212.578125 180.621094 214.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.015625 166.558594 C 281.015625 168.175781 278.585938 168.175781 278.585938 166.558594 C 278.585938 164.9375 281.015625 164.9375 281.015625 166.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.359375 211.914062 C 255.359375 213.535156 252.929688 213.535156 252.929688 211.914062 C 252.929688 210.292969 255.359375 210.292969 255.359375 211.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.394531 250.820312 C 195.394531 252.441406 192.964844 252.441406 192.964844 250.820312 C 192.964844 249.203125 195.394531 249.203125 195.394531 250.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.300781 272.621094 C 280.300781 274.242188 277.871094 274.242188 277.871094 272.621094 C 277.871094 271 280.300781 271 280.300781 272.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.492188 245.839844 C 321.492188 247.460938 319.0625 247.460938 319.0625 245.839844 C 319.0625 244.21875 321.492188 244.21875 321.492188 245.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.15625 282.945312 C 239.15625 284.566406 236.726562 284.566406 236.726562 282.945312 C 236.726562 281.324219 239.15625 281.324219 239.15625 282.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.019531 273.328125 C 246.019531 274.949219 243.589844 274.949219 243.589844 273.328125 C 243.589844 271.707031 246.019531 271.707031 246.019531 273.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.675781 70.910156 L 238.3125 73.746094 L 235.039062 73.746094 Z M 236.675781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.773438 70.910156 L 354.410156 73.746094 L 351.136719 73.746094 Z M 352.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 342.339844 387.726562 C 342.339844 389.34375 339.910156 389.34375 339.910156 387.726562 C 339.910156 386.105469 342.339844 386.105469 342.339844 387.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.46875 264.148438 C 154.46875 265.769531 152.035156 265.769531 152.035156 264.148438 C 152.035156 262.53125 154.46875 262.53125 154.46875 264.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.105469 311.449219 C 242.105469 313.070312 239.675781 313.070312 239.675781 311.449219 C 239.675781 309.828125 242.105469 309.828125 242.105469 311.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.5625 285.59375 C 235.5625 287.210938 233.132812 287.210938 233.132812 285.59375 C 233.132812 283.972656 235.5625 283.972656 235.5625 285.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.898438 232.328125 C 278.898438 233.949219 276.46875 233.949219 276.46875 232.328125 C 276.46875 230.707031 278.898438 230.707031 278.898438 232.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.878906 166.117188 C 231.878906 167.734375 229.449219 167.734375 229.449219 166.117188 C 229.449219 164.496094 231.878906 164.496094 231.878906 166.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.117188 294.421875 C 231.117188 296.042969 228.6875 296.042969 228.6875 294.421875 C 228.6875 292.804688 231.117188 292.804688 231.117188 294.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.886719 245.054688 C 128.886719 246.671875 126.457031 246.671875 126.457031 245.054688 C 126.457031 243.433594 128.886719 243.433594 128.886719 245.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.460938 294.480469 C 213.460938 296.101562 211.03125 296.101562 211.03125 294.480469 C 211.03125 292.859375 213.460938 292.859375 213.460938 294.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.429688 70.910156 L 165.0625 73.746094 L 161.792969 73.746094 Z M 163.429688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.898438 70.910156 L 210.535156 73.746094 L 207.261719 73.746094 Z M 208.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.097656 273.238281 C 305.097656 274.859375 302.667969 274.859375 302.667969 273.238281 C 302.667969 271.617188 305.097656 271.617188 305.097656 273.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.066406 113.355469 C 264.066406 114.972656 261.636719 114.972656 261.636719 113.355469 C 261.636719 111.734375 264.066406 111.734375 264.066406 113.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.539062 153.960938 C 262.539062 155.582031 260.109375 155.582031 260.109375 153.960938 C 260.109375 152.34375 262.539062 152.34375 262.539062 153.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.835938 357.027344 C 247.835938 358.648438 245.40625 358.648438 245.40625 357.027344 C 245.40625 355.40625 247.835938 355.40625 247.835938 357.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.652344 300.992188 C 287.652344 302.613281 285.222656 302.613281 285.222656 300.992188 C 285.222656 299.375 287.652344 299.375 287.652344 300.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.039062 235.683594 C 298.039062 237.304688 295.609375 237.304688 295.609375 235.683594 C 295.609375 234.066406 298.039062 234.066406 298.039062 235.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.703125 261.28125 C 245.703125 262.898438 243.273438 262.898438 243.273438 261.28125 C 243.273438 259.660156 245.703125 259.660156 245.703125 261.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.601562 150.160156 C 150.601562 151.78125 148.171875 151.78125 148.171875 150.160156 C 148.171875 148.539062 150.601562 148.539062 150.601562 150.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.652344 293.328125 C 268.652344 294.945312 266.222656 294.945312 266.222656 293.328125 C 266.222656 291.707031 268.652344 291.707031 268.652344 293.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.835938 290.671875 C 268.835938 292.292969 266.40625 292.292969 266.40625 290.671875 C 266.40625 289.054688 268.835938 289.054688 268.835938 290.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.953125 274.765625 C 318.953125 276.386719 316.523438 276.386719 316.523438 274.765625 C 316.523438 273.148438 318.953125 273.148438 318.953125 274.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.714844 272.640625 C 266.714844 274.261719 264.285156 274.261719 264.285156 272.640625 C 264.285156 271.019531 266.714844 271.019531 266.714844 272.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.574219 281.128906 C 220.574219 282.746094 218.144531 282.746094 218.144531 281.128906 C 218.144531 279.507812 220.574219 279.507812 220.574219 281.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.207031 70.910156 L 334.84375 73.746094 L 331.570312 73.746094 Z M 333.207031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.535156 70.910156 L 209.167969 73.746094 L 205.898438 73.746094 Z M 207.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.453125 99.941406 C 233.453125 101.5625 231.019531 101.5625 231.019531 99.941406 C 231.019531 98.320312 233.453125 98.320312 233.453125 99.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.800781 112.417969 C 282.800781 114.039062 280.371094 114.039062 280.371094 112.417969 C 280.371094 110.800781 282.800781 110.800781 282.800781 112.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.25 311.730469 C 248.25 313.347656 245.820312 313.347656 245.820312 311.730469 C 245.820312 310.109375 248.25 310.109375 248.25 311.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.890625 305.128906 C 286.890625 306.75 284.460938 306.75 284.460938 305.128906 C 284.460938 303.507812 286.890625 303.507812 286.890625 305.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.589844 322.761719 C 305.589844 324.382812 303.160156 324.382812 303.160156 322.761719 C 303.160156 321.144531 305.589844 321.144531 305.589844 322.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.296875 150.453125 C 252.296875 152.074219 249.867188 152.074219 249.867188 150.453125 C 249.867188 148.835938 252.296875 148.835938 252.296875 150.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.585938 161.859375 C 210.585938 163.480469 208.15625 163.480469 208.15625 161.859375 C 208.15625 160.238281 210.585938 160.238281 210.585938 161.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.6875 327.585938 C 227.6875 329.207031 225.257812 329.207031 225.257812 327.585938 C 225.257812 325.96875 227.6875 325.96875 227.6875 327.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.472656 298.894531 C 143.472656 300.515625 141.039062 300.515625 141.039062 298.894531 C 141.039062 297.277344 143.472656 297.277344 143.472656 298.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.214844 262.585938 C 215.214844 264.207031 212.785156 264.207031 212.785156 262.585938 C 212.785156 260.96875 215.214844 260.96875 215.214844 262.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.285156 260.917969 C 249.285156 262.539062 246.851562 262.539062 246.851562 260.917969 C 246.851562 259.296875 249.285156 259.296875 249.285156 260.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.480469 218.863281 C 238.480469 220.480469 236.046875 220.480469 236.046875 218.863281 C 236.046875 217.242188 238.480469 217.242188 238.480469 218.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.472656 255.351562 C 234.472656 256.972656 232.042969 256.972656 232.042969 255.351562 C 232.042969 253.730469 234.472656 253.730469 234.472656 255.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.53125 418.691406 L 349.167969 415.855469 L 345.894531 415.855469 Z M 347.53125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.539062 239.953125 C 250.539062 241.574219 248.109375 241.574219 248.109375 239.953125 C 248.109375 238.332031 250.539062 238.332031 250.539062 239.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.46875 70.910156 L 307.105469 73.746094 L 303.832031 73.746094 Z M 305.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.296875 196.710938 C 178.296875 198.332031 175.867188 198.332031 175.867188 196.710938 C 175.867188 195.089844 178.296875 195.089844 178.296875 196.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.085938 264 C 116.085938 265.617188 113.65625 265.617188 113.65625 264 C 113.65625 262.378906 116.085938 262.378906 116.085938 264 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.308594 262.460938 C 240.308594 264.082031 237.878906 264.082031 237.878906 262.460938 C 237.878906 260.839844 240.308594 260.839844 240.308594 262.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.445312 296.289062 C 251.445312 297.910156 249.015625 297.910156 249.015625 296.289062 C 249.015625 294.671875 251.445312 294.671875 251.445312 296.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.082031 258.03125 C 187.082031 259.652344 184.652344 259.652344 184.652344 258.03125 C 184.652344 256.414062 187.082031 256.414062 187.082031 258.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.332031 226.820312 C 301.332031 228.4375 298.902344 228.4375 298.902344 226.820312 C 298.902344 225.199219 301.332031 225.199219 301.332031 226.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.070312 255.820312 C 290.070312 257.4375 287.640625 257.4375 287.640625 255.820312 C 287.640625 254.199219 290.070312 254.199219 290.070312 255.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.0625 263.550781 C 275.0625 265.167969 272.632812 265.167969 272.632812 263.550781 C 272.632812 261.929688 275.0625 261.929688 275.0625 263.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.496094 254.828125 C 227.496094 256.449219 225.066406 256.449219 225.066406 254.828125 C 225.066406 253.207031 227.496094 253.207031 227.496094 254.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.320312 231.792969 C 273.320312 233.410156 270.890625 233.410156 270.890625 231.792969 C 270.890625 230.171875 273.320312 230.171875 273.320312 231.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.683594 126.414062 C 172.683594 128.035156 170.253906 128.035156 170.253906 126.414062 C 170.253906 124.796875 172.683594 124.796875 172.683594 126.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.367188 260.113281 C 212.367188 261.734375 209.9375 261.734375 209.9375 260.113281 C 209.9375 258.492188 212.367188 258.492188 212.367188 260.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.539062 291.042969 C 269.539062 292.664062 267.109375 292.664062 267.109375 291.042969 C 267.109375 289.421875 269.539062 289.421875 269.539062 291.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.949219 279.597656 C 234.949219 281.21875 232.519531 281.21875 232.519531 279.597656 C 232.519531 277.976562 234.949219 277.976562 234.949219 279.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.464844 302.097656 C 195.464844 303.71875 193.035156 303.71875 193.035156 302.097656 C 193.035156 300.480469 195.464844 300.480469 195.464844 302.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.90625 262.53125 C 269.90625 264.148438 267.476562 264.148438 267.476562 262.53125 C 267.476562 260.910156 269.90625 260.910156 269.90625 262.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.710938 242.847656 C 198.710938 244.464844 196.28125 244.464844 196.28125 242.847656 C 196.28125 241.226562 198.710938 241.226562 198.710938 242.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.070312 211.308594 C 231.070312 212.929688 228.640625 212.929688 228.640625 211.308594 C 228.640625 209.6875 231.070312 209.6875 231.070312 211.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.011719 283.734375 C 254.011719 285.351562 251.582031 285.351562 251.582031 283.734375 C 251.582031 282.113281 254.011719 282.113281 254.011719 283.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.25 338.847656 C 332.25 340.464844 329.820312 340.464844 329.820312 338.847656 C 329.820312 337.226562 332.25 337.226562 332.25 338.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.351562 151.914062 C 222.351562 153.535156 219.921875 153.535156 219.921875 151.914062 C 219.921875 150.292969 222.351562 150.292969 222.351562 151.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.511719 252.511719 C 277.511719 254.128906 275.078125 254.128906 275.078125 252.511719 C 275.078125 250.890625 277.511719 250.890625 277.511719 252.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.351562 293.902344 C 292.351562 295.523438 289.921875 295.523438 289.921875 293.902344 C 289.921875 292.28125 292.351562 292.28125 292.351562 293.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.765625 89.246094 C 161.765625 90.867188 159.335938 90.867188 159.335938 89.246094 C 159.335938 87.628906 161.765625 87.628906 161.765625 89.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.273438 400.734375 C 208.273438 402.355469 205.84375 402.355469 205.84375 400.734375 C 205.84375 399.117188 208.273438 399.117188 208.273438 400.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.6875 375.765625 C 248.6875 377.382812 246.257812 377.382812 246.257812 375.765625 C 246.257812 374.144531 248.6875 374.144531 248.6875 375.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.664062 164.394531 C 154.664062 166.011719 152.234375 166.011719 152.234375 164.394531 C 152.234375 162.773438 154.664062 162.773438 154.664062 164.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.320312 199.421875 C 277.320312 201.042969 274.890625 201.042969 274.890625 199.421875 C 274.890625 197.804688 277.320312 197.804688 277.320312 199.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.402344 241.167969 C 310.402344 242.785156 307.972656 242.785156 307.972656 241.167969 C 307.972656 239.546875 310.402344 239.546875 310.402344 241.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.386719 359.0625 C 222.386719 360.679688 219.957031 360.679688 219.957031 359.0625 C 219.957031 357.441406 222.386719 357.441406 222.386719 359.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286 329.0625 C 286 330.683594 283.570312 330.683594 283.570312 329.0625 C 283.570312 327.445312 286 327.445312 286 329.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.980469 167.71875 C 301.980469 169.339844 299.550781 169.339844 299.550781 167.71875 C 299.550781 166.097656 301.980469 166.097656 301.980469 167.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.792969 184.902344 C 168.792969 186.519531 166.363281 186.519531 166.363281 184.902344 C 166.363281 183.28125 168.792969 183.28125 168.792969 184.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.207031 285.875 C 202.207031 287.492188 199.777344 287.492188 199.777344 285.875 C 199.777344 284.253906 202.207031 284.253906 202.207031 285.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.230469 291.117188 C 254.230469 292.738281 251.800781 292.738281 251.800781 291.117188 C 251.800781 289.496094 254.230469 289.496094 254.230469 291.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.328125 283.699219 C 245.328125 285.320312 242.898438 285.320312 242.898438 283.699219 C 242.898438 282.078125 245.328125 282.078125 245.328125 283.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.332031 211.203125 C 203.332031 212.820312 200.902344 212.820312 200.902344 211.203125 C 200.902344 209.582031 203.332031 209.582031 203.332031 211.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.097656 261.464844 C 270.097656 263.085938 267.667969 263.085938 267.667969 261.464844 C 267.667969 259.847656 270.097656 259.847656 270.097656 261.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.570312 259.316406 C 321.570312 260.9375 319.140625 260.9375 319.140625 259.316406 C 319.140625 257.699219 321.570312 257.699219 321.570312 259.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.546875 70.910156 L 238.183594 73.746094 L 234.910156 73.746094 Z M 236.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.921875 361.003906 C 253.921875 362.621094 251.492188 362.621094 251.492188 361.003906 C 251.492188 359.382812 253.921875 359.382812 253.921875 361.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.570312 144.28125 C 282.570312 145.902344 280.140625 145.902344 280.140625 144.28125 C 280.140625 142.664062 282.570312 142.664062 282.570312 144.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.902344 239.554688 C 292.902344 241.171875 290.472656 241.171875 290.472656 239.554688 C 290.472656 237.933594 292.902344 237.933594 292.902344 239.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.070312 308.773438 C 284.070312 310.394531 281.640625 310.394531 281.640625 308.773438 C 281.640625 307.152344 284.070312 307.152344 284.070312 308.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.097656 180.53125 C 199.097656 182.152344 196.667969 182.152344 196.667969 180.53125 C 196.667969 178.910156 199.097656 178.910156 199.097656 180.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.265625 236.097656 C 238.265625 237.714844 235.832031 237.714844 235.832031 236.097656 C 235.832031 234.476562 238.265625 234.476562 238.265625 236.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.167969 237.707031 C 296.167969 239.324219 293.738281 239.324219 293.738281 237.707031 C 293.738281 236.085938 296.167969 236.085938 296.167969 237.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.359375 113.75 C 274.359375 115.367188 271.929688 115.367188 271.929688 113.75 C 271.929688 112.128906 274.359375 112.128906 274.359375 113.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.554688 70.910156 L 128.191406 73.746094 L 124.917969 73.746094 Z M 126.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.710938 279.660156 C 258.710938 281.28125 256.28125 281.28125 256.28125 279.660156 C 256.28125 278.039062 258.710938 278.039062 258.710938 279.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.644531 418.691406 L 241.28125 415.855469 L 238.007812 415.855469 Z M 239.644531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.671875 253.421875 C 228.671875 255.039062 226.242188 255.039062 226.242188 253.421875 C 226.242188 251.800781 228.671875 251.800781 228.671875 253.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.804688 250.027344 C 142.804688 251.644531 140.375 251.644531 140.375 250.027344 C 140.375 248.40625 142.804688 248.40625 142.804688 250.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.640625 268.25 C 237.640625 269.867188 235.210938 269.867188 235.210938 268.25 C 235.210938 266.628906 237.640625 266.628906 237.640625 268.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.300781 261.640625 C 273.300781 263.261719 270.867188 263.261719 270.867188 261.640625 C 270.867188 260.023438 273.300781 260.023438 273.300781 261.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.953125 205.074219 C 247.953125 206.695312 245.519531 206.695312 245.519531 205.074219 C 245.519531 203.457031 247.953125 203.457031 247.953125 205.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.125 418.691406 L 270.761719 415.855469 L 267.488281 415.855469 Z M 269.125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.398438 215.195312 C 175.398438 216.816406 172.96875 216.816406 172.96875 215.195312 C 172.96875 213.578125 175.398438 213.578125 175.398438 215.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.375 182.699219 C 221.375 184.316406 218.945312 184.316406 218.945312 182.699219 C 218.945312 181.078125 221.375 181.078125 221.375 182.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.617188 244.328125 C 234.617188 245.945312 232.1875 245.945312 232.1875 244.328125 C 232.1875 242.707031 234.617188 242.707031 234.617188 244.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.148438 225.007812 C 253.148438 226.625 250.71875 226.625 250.71875 225.007812 C 250.71875 223.386719 253.148438 223.386719 253.148438 225.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.863281 242.03125 C 171.863281 243.652344 169.433594 243.652344 169.433594 242.03125 C 169.433594 240.410156 171.863281 240.410156 171.863281 242.03125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.578125 70.910156 L 242.210938 73.746094 L 238.941406 73.746094 Z M 240.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.816406 315.15625 C 245.816406 316.777344 243.386719 316.777344 243.386719 315.15625 C 243.386719 313.539062 245.816406 313.539062 245.816406 315.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.253906 208.984375 C 216.253906 210.601562 213.824219 210.601562 213.824219 208.984375 C 213.824219 207.363281 216.253906 207.363281 216.253906 208.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.890625 183.832031 C 298.890625 185.449219 296.460938 185.449219 296.460938 183.832031 C 296.460938 182.210938 298.890625 182.210938 298.890625 183.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.703125 70.910156 L 209.339844 73.746094 L 206.066406 73.746094 Z M 207.703125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.0625 70.910156 L 153.699219 73.746094 L 150.425781 73.746094 Z M 152.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.011719 70.910156 L 178.648438 73.746094 L 175.375 73.746094 Z M 177.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.410156 274.035156 C 252.410156 275.65625 249.980469 275.65625 249.980469 274.035156 C 249.980469 272.414062 252.410156 272.414062 252.410156 274.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.808594 234.085938 C 309.808594 235.707031 307.378906 235.707031 307.378906 234.085938 C 307.378906 232.464844 309.808594 232.464844 309.808594 234.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.898438 78.402344 C 125.898438 80.023438 123.46875 80.023438 123.46875 78.402344 C 123.46875 76.78125 125.898438 76.78125 125.898438 78.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.550781 189.246094 C 166.550781 190.867188 164.121094 190.867188 164.121094 189.246094 C 164.121094 187.625 166.550781 187.625 166.550781 189.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.921875 325.773438 C 252.921875 327.394531 250.488281 327.394531 250.488281 325.773438 C 250.488281 324.152344 252.921875 324.152344 252.921875 325.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.089844 288.265625 C 271.089844 289.886719 268.660156 289.886719 268.660156 288.265625 C 268.660156 286.644531 271.089844 286.644531 271.089844 288.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.433594 418.691406 L 126.070312 415.855469 L 122.796875 415.855469 Z M 124.433594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.960938 294.140625 C 315.960938 295.761719 313.53125 295.761719 313.53125 294.140625 C 313.53125 292.519531 315.960938 292.519531 315.960938 294.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.472656 221.777344 C 316.472656 223.398438 314.042969 223.398438 314.042969 221.777344 C 314.042969 220.15625 316.472656 220.15625 316.472656 221.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.179688 238.664062 C 278.179688 240.285156 275.75 240.285156 275.75 238.664062 C 275.75 237.042969 278.179688 237.042969 278.179688 238.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.804688 291.523438 C 282.804688 293.144531 280.375 293.144531 280.375 291.523438 C 280.375 289.902344 282.804688 289.902344 282.804688 291.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.371094 243.019531 C 237.371094 244.640625 234.941406 244.640625 234.941406 243.019531 C 234.941406 241.398438 237.371094 241.398438 237.371094 243.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.972656 402.367188 C 196.972656 403.984375 194.542969 403.984375 194.542969 402.367188 C 194.542969 400.746094 196.972656 400.746094 196.972656 402.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.03125 392.503906 C 264.03125 394.125 261.601562 394.125 261.601562 392.503906 C 261.601562 390.886719 264.03125 390.886719 264.03125 392.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.945312 402.261719 C 300.945312 403.882812 298.515625 403.882812 298.515625 402.261719 C 298.515625 400.640625 300.945312 400.640625 300.945312 402.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.683594 287.671875 C 306.683594 289.292969 304.253906 289.292969 304.253906 287.671875 C 304.253906 286.054688 306.683594 286.054688 306.683594 287.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.050781 250.601562 C 283.050781 252.222656 280.621094 252.222656 280.621094 250.601562 C 280.621094 248.980469 283.050781 248.980469 283.050781 250.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.964844 307.324219 C 316.964844 308.945312 314.535156 308.945312 314.535156 307.324219 C 314.535156 305.707031 316.964844 305.707031 316.964844 307.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.859375 291.015625 C 292.859375 292.632812 290.429688 292.632812 290.429688 291.015625 C 290.429688 289.394531 292.859375 289.394531 292.859375 291.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.324219 70.910156 L 122.960938 73.746094 L 119.6875 73.746094 Z M 121.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.382812 346.171875 C 264.382812 347.789062 261.953125 347.789062 261.953125 346.171875 C 261.953125 344.550781 264.382812 344.550781 264.382812 346.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.949219 372.429688 C 245.949219 374.050781 243.519531 374.050781 243.519531 372.429688 C 243.519531 370.808594 245.949219 370.808594 245.949219 372.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.390625 227.734375 C 259.390625 229.355469 256.960938 229.355469 256.960938 227.734375 C 256.960938 226.113281 259.390625 226.113281 259.390625 227.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.785156 238.464844 C 306.785156 240.085938 304.351562 240.085938 304.351562 238.464844 C 304.351562 236.847656 306.785156 236.847656 306.785156 238.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.515625 286.070312 C 250.515625 287.691406 248.085938 287.691406 248.085938 286.070312 C 248.085938 284.449219 250.515625 284.449219 250.515625 286.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.054688 145.605469 C 268.054688 147.226562 265.625 147.226562 265.625 145.605469 C 265.625 143.984375 268.054688 143.984375 268.054688 145.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.296875 183.066406 C 211.296875 184.6875 208.867188 184.6875 208.867188 183.066406 C 208.867188 181.449219 211.296875 181.449219 211.296875 183.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.160156 276.601562 C 248.160156 278.222656 245.730469 278.222656 245.730469 276.601562 C 245.730469 274.980469 248.160156 274.980469 248.160156 276.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.992188 105.980469 C 274.992188 107.597656 272.5625 107.597656 272.5625 105.980469 C 272.5625 104.359375 274.992188 104.359375 274.992188 105.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.457031 257.472656 C 312.457031 259.089844 310.027344 259.089844 310.027344 257.472656 C 310.027344 255.851562 312.457031 255.851562 312.457031 257.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.96875 216.027344 C 304.96875 217.648438 302.535156 217.648438 302.535156 216.027344 C 302.535156 214.40625 304.96875 214.40625 304.96875 216.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.042969 163.457031 C 329.042969 165.078125 326.613281 165.078125 326.613281 163.457031 C 326.613281 161.835938 329.042969 161.835938 329.042969 163.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.242188 274.695312 C 265.242188 276.316406 262.8125 276.316406 262.8125 274.695312 C 262.8125 273.074219 265.242188 273.074219 265.242188 274.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.558594 264.203125 C 212.558594 265.824219 210.128906 265.824219 210.128906 264.203125 C 210.128906 262.585938 212.558594 262.585938 212.558594 264.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.027344 251.195312 C 221.027344 252.816406 218.597656 252.816406 218.597656 251.195312 C 218.597656 249.574219 221.027344 249.574219 221.027344 251.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.421875 238.722656 C 174.421875 240.34375 171.988281 240.34375 171.988281 238.722656 C 171.988281 237.101562 174.421875 237.101562 174.421875 238.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.902344 296.691406 C 220.902344 298.3125 218.472656 298.3125 218.472656 296.691406 C 218.472656 295.070312 220.902344 295.070312 220.902344 296.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.730469 178.960938 C 281.730469 180.582031 279.300781 180.582031 279.300781 178.960938 C 279.300781 177.339844 281.730469 177.339844 281.730469 178.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.429688 190.996094 C 328.429688 192.613281 326 192.613281 326 190.996094 C 326 189.375 328.429688 189.375 328.429688 190.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.636719 194.335938 C 257.636719 195.957031 255.207031 195.957031 255.207031 194.335938 C 255.207031 192.714844 257.636719 192.714844 257.636719 194.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.09375 182.28125 C 208.09375 183.902344 205.664062 183.902344 205.664062 182.28125 C 205.664062 180.660156 208.09375 180.660156 208.09375 182.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 365.765625 318.5 C 365.765625 320.121094 363.335938 320.121094 363.335938 318.5 C 363.335938 316.878906 365.765625 316.878906 365.765625 318.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.863281 418.691406 L 234.5 415.855469 L 231.226562 415.855469 Z M 232.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.738281 228.175781 C 265.738281 229.796875 263.308594 229.796875 263.308594 228.175781 C 263.308594 226.558594 265.738281 226.558594 265.738281 228.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.316406 160.363281 C 250.316406 161.984375 247.886719 161.984375 247.886719 160.363281 C 247.886719 158.742188 250.316406 158.742188 250.316406 160.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.394531 70.910156 L 190.03125 73.746094 L 186.757812 73.746094 Z M 188.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.152344 163.117188 C 259.152344 164.734375 256.722656 164.734375 256.722656 163.117188 C 256.722656 161.496094 259.152344 161.496094 259.152344 163.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.820312 363.742188 C 260.820312 365.363281 258.390625 365.363281 258.390625 363.742188 C 258.390625 362.121094 260.820312 362.121094 260.820312 363.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.296875 257.632812 C 195.296875 259.253906 192.863281 259.253906 192.863281 257.632812 C 192.863281 256.011719 195.296875 256.011719 195.296875 257.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.480469 140.453125 C 206.480469 142.070312 204.050781 142.070312 204.050781 140.453125 C 204.050781 138.832031 206.480469 138.832031 206.480469 140.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 174.398438 401.46875 C 174.398438 403.089844 171.96875 403.089844 171.96875 401.46875 C 171.96875 399.851562 174.398438 399.851562 174.398438 401.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.714844 89.222656 C 140.714844 90.84375 138.285156 90.84375 138.285156 89.222656 C 138.285156 87.601562 140.714844 87.601562 140.714844 89.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.925781 70.910156 L 177.5625 73.746094 L 174.289062 73.746094 Z M 175.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.566406 199.929688 C 285.566406 201.546875 283.136719 201.546875 283.136719 199.929688 C 283.136719 198.308594 285.566406 198.308594 285.566406 199.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.367188 70.910156 L 189.003906 73.746094 L 185.730469 73.746094 Z M 187.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.394531 162.183594 C 272.394531 163.804688 269.960938 163.804688 269.960938 162.183594 C 269.960938 160.566406 272.394531 160.566406 272.394531 162.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.871094 294.84375 C 284.871094 296.464844 282.441406 296.464844 282.441406 294.84375 C 282.441406 293.222656 284.871094 293.222656 284.871094 294.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.742188 292.035156 C 270.742188 293.65625 268.308594 293.65625 268.308594 292.035156 C 268.308594 290.417969 270.742188 290.417969 270.742188 292.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.347656 254.84375 C 161.347656 256.464844 158.917969 256.464844 158.917969 254.84375 C 158.917969 253.222656 161.347656 253.222656 161.347656 254.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.011719 249.902344 C 247.011719 251.519531 244.582031 251.519531 244.582031 249.902344 C 244.582031 248.28125 247.011719 248.28125 247.011719 249.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.203125 276.796875 C 264.203125 278.417969 261.769531 278.417969 261.769531 276.796875 C 261.769531 275.179688 264.203125 275.179688 264.203125 276.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.613281 257.839844 C 223.613281 259.457031 221.183594 259.457031 221.183594 257.839844 C 221.183594 256.21875 223.613281 256.21875 223.613281 257.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.996094 283.824219 C 283.996094 285.441406 281.5625 285.441406 281.5625 283.824219 C 281.5625 282.203125 283.996094 282.203125 283.996094 283.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.453125 224.234375 C 267.453125 225.855469 265.019531 225.855469 265.019531 224.234375 C 265.019531 222.617188 267.453125 222.617188 267.453125 224.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.738281 228.871094 C 278.738281 230.492188 276.308594 230.492188 276.308594 228.871094 C 276.308594 227.25 278.738281 227.25 278.738281 228.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.40625 268.925781 C 213.40625 270.546875 210.976562 270.546875 210.976562 268.925781 C 210.976562 267.304688 213.40625 267.304688 213.40625 268.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.402344 172.394531 C 128.402344 174.015625 125.972656 174.015625 125.972656 172.394531 C 125.972656 170.777344 128.402344 170.777344 128.402344 172.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.386719 249.71875 C 239.386719 251.339844 236.957031 251.339844 236.957031 249.71875 C 236.957031 248.097656 239.386719 248.097656 239.386719 249.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.121094 266.859375 C 249.121094 268.476562 246.691406 268.476562 246.691406 266.859375 C 246.691406 265.238281 249.121094 265.238281 249.121094 266.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.496094 251.664062 C 296.496094 253.285156 294.066406 253.285156 294.066406 251.664062 C 294.066406 250.046875 296.496094 250.046875 296.496094 251.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.457031 262.003906 C 294.457031 263.621094 292.027344 263.621094 292.027344 262.003906 C 292.027344 260.382812 294.457031 260.382812 294.457031 262.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 415.996094 171.027344 C 415.996094 172.648438 413.566406 172.648438 413.566406 171.027344 C 413.566406 169.410156 415.996094 169.410156 415.996094 171.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.925781 277.492188 C 237.925781 279.113281 235.496094 279.113281 235.496094 277.492188 C 235.496094 275.871094 237.925781 275.871094 237.925781 277.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.515625 290.378906 C 230.515625 292 228.085938 292 228.085938 290.378906 C 228.085938 288.757812 230.515625 288.757812 230.515625 290.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.765625 315.085938 C 216.765625 316.707031 214.332031 316.707031 214.332031 315.085938 C 214.332031 313.464844 216.765625 313.464844 216.765625 315.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.25 288.855469 C 248.25 290.472656 245.820312 290.472656 245.820312 288.855469 C 245.820312 287.234375 248.25 287.234375 248.25 288.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.464844 418.691406 L 169.101562 415.855469 L 165.832031 415.855469 Z M 167.464844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.714844 299.933594 C 186.714844 301.554688 184.285156 301.554688 184.285156 299.933594 C 184.285156 298.3125 186.714844 298.3125 186.714844 299.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.753906 279.234375 C 301.753906 280.855469 299.324219 280.855469 299.324219 279.234375 C 299.324219 277.613281 301.753906 277.613281 301.753906 279.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.113281 246.820312 C 198.113281 248.441406 195.683594 248.441406 195.683594 246.820312 C 195.683594 245.203125 198.113281 245.203125 198.113281 246.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.21875 376.757812 C 155.21875 378.378906 152.789062 378.378906 152.789062 376.757812 C 152.789062 375.140625 155.21875 375.140625 155.21875 376.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.097656 275.753906 C 284.097656 277.375 281.667969 277.375 281.667969 275.753906 C 281.667969 274.132812 284.097656 274.132812 284.097656 275.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.167969 292.472656 C 210.167969 294.089844 207.738281 294.089844 207.738281 292.472656 C 207.738281 290.851562 210.167969 290.851562 210.167969 292.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.785156 288.90625 C 334.785156 290.527344 332.355469 290.527344 332.355469 288.90625 C 332.355469 287.289062 334.785156 287.289062 334.785156 288.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.6875 164.507812 C 231.6875 166.128906 229.257812 166.128906 229.257812 164.507812 C 229.257812 162.890625 231.6875 162.890625 231.6875 164.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.117188 166.632812 C 263.117188 168.253906 260.6875 168.253906 260.6875 166.632812 C 260.6875 165.015625 263.117188 165.015625 263.117188 166.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.386719 239.039062 C 298.386719 240.660156 295.957031 240.660156 295.957031 239.039062 C 295.957031 237.417969 298.386719 237.417969 298.386719 239.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.339844 193.414062 C 282.339844 195.035156 279.910156 195.035156 279.910156 193.414062 C 279.910156 191.796875 282.339844 191.796875 282.339844 193.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.445312 167.164062 C 315.445312 168.785156 313.015625 168.785156 313.015625 167.164062 C 313.015625 165.542969 315.445312 165.542969 315.445312 167.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.6875 237.910156 C 240.6875 239.53125 238.257812 239.53125 238.257812 237.910156 C 238.257812 236.292969 240.6875 236.292969 240.6875 237.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.769531 245.003906 C 247.769531 246.625 245.339844 246.625 245.339844 245.003906 C 245.339844 243.382812 247.769531 243.382812 247.769531 245.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.4375 259.296875 C 311.4375 260.914062 309.007812 260.914062 309.007812 259.296875 C 309.007812 257.675781 311.4375 257.675781 311.4375 259.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.796875 231.972656 C 285.796875 233.589844 283.367188 233.589844 283.367188 231.972656 C 283.367188 230.351562 285.796875 230.351562 285.796875 231.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.046875 222.359375 C 303.046875 223.976562 300.617188 223.976562 300.617188 222.359375 C 300.617188 220.738281 303.046875 220.738281 303.046875 222.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.609375 236.382812 C 195.609375 238.003906 193.179688 238.003906 193.179688 236.382812 C 193.179688 234.765625 195.609375 234.765625 195.609375 236.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.867188 206.917969 C 200.867188 208.539062 198.4375 208.539062 198.4375 206.917969 C 198.4375 205.300781 200.867188 205.300781 200.867188 206.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.101562 204.09375 C 291.101562 205.714844 288.667969 205.714844 288.667969 204.09375 C 288.667969 202.472656 291.101562 202.472656 291.101562 204.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.429688 176.125 C 290.429688 177.746094 287.996094 177.746094 287.996094 176.125 C 287.996094 174.503906 290.429688 174.503906 290.429688 176.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.996094 70.910156 L 244.632812 73.746094 L 241.359375 73.746094 Z M 242.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.390625 254.558594 C 119.390625 256.179688 116.960938 256.179688 116.960938 254.558594 C 116.960938 252.941406 119.390625 252.941406 119.390625 254.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.9375 243.1875 C 246.9375 244.808594 244.507812 244.808594 244.507812 243.1875 C 244.507812 241.570312 246.9375 241.570312 246.9375 243.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.304688 298.617188 C 235.304688 300.238281 232.875 300.238281 232.875 298.617188 C 232.875 296.996094 235.304688 296.996094 235.304688 298.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.433594 240.816406 C 242.433594 242.4375 240.003906 242.4375 240.003906 240.816406 C 240.003906 239.199219 242.433594 239.199219 242.433594 240.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 361.933594 290.832031 C 361.933594 292.453125 359.503906 292.453125 359.503906 290.832031 C 359.503906 289.210938 361.933594 289.210938 361.933594 290.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247 70.910156 L 248.636719 73.746094 L 245.363281 73.746094 Z M 247 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.101562 323.863281 C 269.101562 325.484375 266.671875 325.484375 266.671875 323.863281 C 266.671875 322.242188 269.101562 322.242188 269.101562 323.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.769531 139.417969 C 216.769531 141.039062 214.339844 141.039062 214.339844 139.417969 C 214.339844 137.800781 216.769531 137.800781 216.769531 139.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.539062 70.910156 L 135.175781 73.746094 L 131.902344 73.746094 Z M 133.539062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.140625 198.757812 C 270.140625 200.375 267.710938 200.375 267.710938 198.757812 C 267.710938 197.136719 270.140625 197.136719 270.140625 198.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 379.394531 282.238281 C 379.394531 283.859375 376.960938 283.859375 376.960938 282.238281 C 376.960938 280.621094 379.394531 280.621094 379.394531 282.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.203125 412.976562 C 124.203125 414.59375 121.773438 414.59375 121.773438 412.976562 C 121.773438 411.355469 124.203125 411.355469 124.203125 412.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.445312 70.910156 L 251.082031 73.746094 L 247.808594 73.746094 Z M 249.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.714844 223.332031 C 230.714844 224.953125 228.285156 224.953125 228.285156 223.332031 C 228.285156 221.714844 230.714844 221.714844 230.714844 223.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.421875 381.851562 C 257.421875 383.472656 254.992188 383.472656 254.992188 381.851562 C 254.992188 380.230469 257.421875 380.230469 257.421875 381.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.660156 70.910156 L 185.292969 73.746094 L 182.023438 73.746094 Z M 183.660156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.765625 70.910156 L 222.402344 73.746094 L 219.128906 73.746094 Z M 220.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.554688 274.390625 C 214.554688 276.007812 212.125 276.007812 212.125 274.390625 C 212.125 272.769531 214.554688 272.769531 214.554688 274.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.984375 294.945312 C 224.984375 296.566406 222.554688 296.566406 222.554688 294.945312 C 222.554688 293.324219 224.984375 293.324219 224.984375 294.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.179688 353.058594 C 241.179688 354.675781 238.75 354.675781 238.75 353.058594 C 238.75 351.4375 241.179688 351.4375 241.179688 353.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.214844 307.769531 C 310.214844 309.390625 307.785156 309.390625 307.785156 307.769531 C 307.785156 306.152344 310.214844 306.152344 310.214844 307.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.515625 316.929688 C 266.515625 318.546875 264.085938 318.546875 264.085938 316.929688 C 264.085938 315.308594 266.515625 315.308594 266.515625 316.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.003906 284.921875 C 200.003906 286.542969 197.574219 286.542969 197.574219 284.921875 C 197.574219 283.300781 200.003906 283.300781 200.003906 284.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.226562 364.574219 C 277.226562 366.191406 274.796875 366.191406 274.796875 364.574219 C 274.796875 362.953125 277.226562 362.953125 277.226562 364.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.042969 418.691406 L 184.679688 415.855469 L 181.40625 415.855469 Z M 183.042969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.742188 70.910156 L 238.378906 73.746094 L 235.105469 73.746094 Z M 236.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.082031 219.140625 C 224.082031 220.757812 221.652344 220.757812 221.652344 219.140625 C 221.652344 217.519531 224.082031 217.519531 224.082031 219.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.617188 221.59375 C 204.617188 223.214844 202.1875 223.214844 202.1875 221.59375 C 202.1875 219.972656 204.617188 219.972656 204.617188 221.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.867188 348.585938 C 220.867188 350.207031 218.4375 350.207031 218.4375 348.585938 C 218.4375 346.964844 220.867188 346.964844 220.867188 348.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.875 303.941406 C 221.875 305.558594 219.445312 305.558594 219.445312 303.941406 C 219.445312 302.320312 221.875 302.320312 221.875 303.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.21875 306.65625 C 296.21875 308.277344 293.789062 308.277344 293.789062 306.65625 C 293.789062 305.039062 296.21875 305.039062 296.21875 306.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.859375 227.402344 C 269.859375 229.019531 267.429688 229.019531 267.429688 227.402344 C 267.429688 225.78125 269.859375 225.78125 269.859375 227.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.160156 212.054688 C 225.160156 213.675781 222.730469 213.675781 222.730469 212.054688 C 222.730469 210.4375 225.160156 210.4375 225.160156 212.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.320312 70.910156 L 199.957031 73.746094 L 196.683594 73.746094 Z M 198.320312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.503906 70.910156 L 172.140625 73.746094 L 168.867188 73.746094 Z M 170.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.175781 320.179688 C 185.175781 321.800781 182.746094 321.800781 182.746094 320.179688 C 182.746094 318.5625 185.175781 318.5625 185.175781 320.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.347656 316.371094 C 328.347656 317.992188 325.917969 317.992188 325.917969 316.371094 C 325.917969 314.753906 328.347656 314.753906 328.347656 316.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.671875 75.898438 C 236.671875 77.519531 234.242188 77.519531 234.242188 75.898438 C 234.242188 74.277344 236.671875 74.277344 236.671875 75.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.085938 278.480469 C 213.085938 280.101562 210.65625 280.101562 210.65625 278.480469 C 210.65625 276.859375 213.085938 276.859375 213.085938 278.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.398438 125.414062 C 243.398438 127.035156 240.96875 127.035156 240.96875 125.414062 C 240.96875 123.796875 243.398438 123.796875 243.398438 125.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.867188 218.15625 C 220.867188 219.777344 218.4375 219.777344 218.4375 218.15625 C 218.4375 216.539062 220.867188 216.539062 220.867188 218.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.898438 272.628906 C 215.898438 274.25 213.46875 274.25 213.46875 272.628906 C 213.46875 271.011719 215.898438 271.011719 215.898438 272.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.710938 262.058594 C 250.710938 263.679688 248.28125 263.679688 248.28125 262.058594 C 248.28125 260.441406 250.710938 260.441406 250.710938 262.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.851562 262.839844 C 271.851562 264.460938 269.421875 264.460938 269.421875 262.839844 C 269.421875 261.21875 271.851562 261.21875 271.851562 262.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.859375 322.160156 C 231.859375 323.78125 229.429688 323.78125 229.429688 322.160156 C 229.429688 320.539062 231.859375 320.539062 231.859375 322.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.679688 270.167969 C 179.679688 271.789062 177.25 271.789062 177.25 270.167969 C 177.25 268.550781 179.679688 268.550781 179.679688 270.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.214844 222.558594 C 303.214844 224.179688 300.785156 224.179688 300.785156 222.558594 C 300.785156 220.941406 303.214844 220.941406 303.214844 222.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.722656 298.28125 C 230.722656 299.902344 228.292969 299.902344 228.292969 298.28125 C 228.292969 296.664062 230.722656 296.664062 230.722656 298.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.832031 266.421875 C 243.832031 268.039062 241.402344 268.039062 241.402344 266.421875 C 241.402344 264.800781 243.832031 264.800781 243.832031 266.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.550781 239.792969 C 294.550781 241.414062 292.121094 241.414062 292.121094 239.792969 C 292.121094 238.175781 294.550781 238.175781 294.550781 239.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.9375 174.035156 C 236.9375 175.652344 234.507812 175.652344 234.507812 174.035156 C 234.507812 172.414062 236.9375 172.414062 236.9375 174.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.191406 168.757812 C 235.191406 170.378906 232.761719 170.378906 232.761719 168.757812 C 232.761719 167.136719 235.191406 167.136719 235.191406 168.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.058594 70.910156 L 248.695312 73.746094 L 245.421875 73.746094 Z M 247.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.691406 403.25 C 298.691406 404.871094 296.261719 404.871094 296.261719 403.25 C 296.261719 401.632812 298.691406 401.632812 298.691406 403.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.621094 412.921875 C 281.621094 414.542969 279.191406 414.542969 279.191406 412.921875 C 279.191406 411.304688 281.621094 411.304688 281.621094 412.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.023438 147.199219 C 211.023438 148.820312 208.59375 148.820312 208.59375 147.199219 C 208.59375 145.582031 211.023438 145.582031 211.023438 147.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.9375 255.007812 C 286.9375 256.625 284.507812 256.625 284.507812 255.007812 C 284.507812 253.386719 286.9375 253.386719 286.9375 255.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.382812 323.304688 C 129.382812 324.921875 126.953125 324.921875 126.953125 323.304688 C 126.953125 321.683594 129.382812 321.683594 129.382812 323.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.664062 267.046875 C 287.664062 268.667969 285.234375 268.667969 285.234375 267.046875 C 285.234375 265.425781 287.664062 265.425781 287.664062 267.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.433594 284.636719 C 245.433594 286.257812 243.003906 286.257812 243.003906 284.636719 C 243.003906 283.019531 245.433594 283.019531 245.433594 284.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.460938 281.660156 C 228.460938 283.28125 226.03125 283.28125 226.03125 281.660156 C 226.03125 280.042969 228.460938 280.042969 228.460938 281.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.316406 248.019531 C 262.316406 249.636719 259.886719 249.636719 259.886719 248.019531 C 259.886719 246.398438 262.316406 246.398438 262.316406 248.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.34375 208.835938 C 232.34375 210.457031 229.914062 210.457031 229.914062 208.835938 C 229.914062 207.21875 232.34375 207.21875 232.34375 208.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.296875 308.496094 C 313.296875 310.113281 310.867188 310.113281 310.867188 308.496094 C 310.867188 306.875 313.296875 306.875 313.296875 308.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.1875 188.839844 C 212.1875 190.460938 209.757812 190.460938 209.757812 188.839844 C 209.757812 187.21875 212.1875 187.21875 212.1875 188.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.703125 345.921875 C 285.703125 347.542969 283.273438 347.542969 283.273438 345.921875 C 283.273438 344.304688 285.703125 344.304688 285.703125 345.921875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.851562 70.910156 L 251.484375 73.746094 L 248.214844 73.746094 Z M 249.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.824219 220.070312 C 278.824219 221.6875 276.394531 221.6875 276.394531 220.070312 C 276.394531 218.449219 278.824219 218.449219 278.824219 220.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.917969 263.613281 C 333.917969 265.230469 331.488281 265.230469 331.488281 263.613281 C 331.488281 261.992188 333.917969 261.992188 333.917969 263.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.203125 223.324219 C 281.203125 224.941406 278.773438 224.941406 278.773438 223.324219 C 278.773438 221.703125 281.203125 221.703125 281.203125 223.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.617188 293.3125 C 252.617188 294.933594 250.1875 294.933594 250.1875 293.3125 C 250.1875 291.691406 252.617188 291.691406 252.617188 293.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.75 293.484375 C 155.75 295.101562 153.320312 295.101562 153.320312 293.484375 C 153.320312 291.863281 155.75 291.863281 155.75 293.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.378906 278.925781 C 242.378906 280.542969 239.949219 280.542969 239.949219 278.925781 C 239.949219 277.304688 242.378906 277.304688 242.378906 278.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.820312 306.550781 C 191.820312 308.171875 189.390625 308.171875 189.390625 306.550781 C 189.390625 304.933594 191.820312 304.933594 191.820312 306.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.296875 267.535156 C 334.296875 269.15625 331.867188 269.15625 331.867188 267.535156 C 331.867188 265.914062 334.296875 265.914062 334.296875 267.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.984375 250.820312 C 328.984375 252.441406 326.554688 252.441406 326.554688 250.820312 C 326.554688 249.199219 328.984375 249.199219 328.984375 250.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.589844 258.394531 C 285.589844 260.015625 283.160156 260.015625 283.160156 258.394531 C 283.160156 256.773438 285.589844 256.773438 285.589844 258.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.625 248.589844 C 129.625 250.210938 127.195312 250.210938 127.195312 248.589844 C 127.195312 246.96875 129.625 246.96875 129.625 248.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.671875 231.472656 C 276.671875 233.09375 274.242188 233.09375 274.242188 231.472656 C 274.242188 229.855469 276.671875 229.855469 276.671875 231.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.695312 266.429688 C 256.695312 268.050781 254.265625 268.050781 254.265625 266.429688 C 254.265625 264.8125 256.695312 264.8125 256.695312 266.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.347656 267.789062 C 276.347656 269.40625 273.914062 269.40625 273.914062 267.789062 C 273.914062 266.167969 276.347656 266.167969 276.347656 267.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.957031 220.921875 C 268.957031 222.539062 266.527344 222.539062 266.527344 220.921875 C 266.527344 219.300781 268.957031 219.300781 268.957031 220.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.574219 87.328125 C 268.574219 88.949219 266.144531 88.949219 266.144531 87.328125 C 266.144531 85.707031 268.574219 85.707031 268.574219 87.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.804688 241.125 C 244.804688 242.746094 242.375 242.746094 242.375 241.125 C 242.375 239.503906 244.804688 239.503906 244.804688 241.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.136719 275.898438 C 252.136719 277.519531 249.707031 277.519531 249.707031 275.898438 C 249.707031 274.277344 252.136719 274.277344 252.136719 275.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.128906 324.820312 C 347.128906 326.441406 344.699219 326.441406 344.699219 324.820312 C 344.699219 323.203125 347.128906 323.203125 347.128906 324.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.011719 225.527344 C 278.011719 227.148438 275.582031 227.148438 275.582031 225.527344 C 275.582031 223.90625 278.011719 223.90625 278.011719 225.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.242188 240.921875 C 284.242188 242.542969 281.8125 242.542969 281.8125 240.921875 C 281.8125 239.304688 284.242188 239.304688 284.242188 240.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.746094 250.992188 C 257.746094 252.609375 255.316406 252.609375 255.316406 250.992188 C 255.316406 249.371094 257.746094 249.371094 257.746094 250.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 382.675781 127.117188 C 382.675781 128.734375 380.246094 128.734375 380.246094 127.117188 C 380.246094 125.496094 382.675781 125.496094 382.675781 127.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.914062 233.113281 C 273.914062 234.734375 271.484375 234.734375 271.484375 233.113281 C 271.484375 231.492188 273.914062 231.492188 273.914062 233.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.476562 219.402344 C 187.476562 221.023438 185.046875 221.023438 185.046875 219.402344 C 185.046875 217.78125 187.476562 217.78125 187.476562 219.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.832031 276.582031 C 141.832031 278.203125 139.402344 278.203125 139.402344 276.582031 C 139.402344 274.964844 141.832031 274.964844 141.832031 276.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.722656 274.496094 C 268.722656 276.113281 266.292969 276.113281 266.292969 274.496094 C 266.292969 272.875 268.722656 272.875 268.722656 274.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.578125 253.867188 C 291.578125 255.488281 289.148438 255.488281 289.148438 253.867188 C 289.148438 252.246094 291.578125 252.246094 291.578125 253.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.371094 225.894531 C 267.371094 227.515625 264.941406 227.515625 264.941406 225.894531 C 264.941406 224.277344 267.371094 224.277344 267.371094 225.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.4375 224.5625 C 328.4375 226.183594 326.007812 226.183594 326.007812 224.5625 C 326.007812 222.945312 328.4375 222.945312 328.4375 224.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.558594 228.710938 C 230.558594 230.328125 228.128906 230.328125 228.128906 228.710938 C 228.128906 227.089844 230.558594 227.089844 230.558594 228.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.863281 218.820312 C 250.863281 220.4375 248.433594 220.4375 248.433594 218.820312 C 248.433594 217.199219 250.863281 217.199219 250.863281 218.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.640625 280.730469 C 241.640625 282.351562 239.207031 282.351562 239.207031 280.730469 C 239.207031 279.113281 241.640625 279.113281 241.640625 280.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.316406 209.917969 C 283.316406 211.539062 280.886719 211.539062 280.886719 209.917969 C 280.886719 208.296875 283.316406 208.296875 283.316406 209.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.667969 258.183594 C 281.667969 259.804688 279.238281 259.804688 279.238281 258.183594 C 279.238281 256.566406 281.667969 256.566406 281.667969 258.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.554688 265.246094 C 305.554688 266.867188 303.125 266.867188 303.125 265.246094 C 303.125 263.628906 305.554688 263.628906 305.554688 265.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.9375 212.289062 C 291.9375 213.910156 289.507812 213.910156 289.507812 212.289062 C 289.507812 210.667969 291.9375 210.667969 291.9375 212.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.125 265.808594 C 293.125 267.429688 290.695312 267.429688 290.695312 265.808594 C 290.695312 264.191406 293.125 264.191406 293.125 265.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.976562 252.128906 C 330.976562 253.746094 328.546875 253.746094 328.546875 252.128906 C 328.546875 250.507812 330.976562 250.507812 330.976562 252.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.390625 223.542969 C 249.390625 225.164062 246.960938 225.164062 246.960938 223.542969 C 246.960938 221.921875 249.390625 221.921875 249.390625 223.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.726562 224.917969 C 304.726562 226.539062 302.296875 226.539062 302.296875 224.917969 C 302.296875 223.300781 304.726562 223.300781 304.726562 224.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.292969 324.101562 C 242.292969 325.722656 239.863281 325.722656 239.863281 324.101562 C 239.863281 322.480469 242.292969 322.480469 242.292969 324.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.515625 318.332031 C 287.515625 319.949219 285.085938 319.949219 285.085938 318.332031 C 285.085938 316.710938 287.515625 316.710938 287.515625 318.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.058594 215.398438 C 234.058594 217.019531 231.628906 217.019531 231.628906 215.398438 C 231.628906 213.78125 234.058594 213.78125 234.058594 215.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.296875 233.042969 C 276.296875 234.660156 273.867188 234.660156 273.867188 233.042969 C 273.867188 231.421875 276.296875 231.421875 276.296875 233.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.335938 265.910156 C 244.335938 267.527344 241.90625 267.527344 241.90625 265.910156 C 241.90625 264.289062 244.335938 264.289062 244.335938 265.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.757812 288.546875 C 230.757812 290.167969 228.328125 290.167969 228.328125 288.546875 C 228.328125 286.929688 230.757812 286.929688 230.757812 288.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.199219 305.703125 C 152.199219 307.324219 149.769531 307.324219 149.769531 305.703125 C 149.769531 304.082031 152.199219 304.082031 152.199219 305.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.460938 168.34375 C 141.460938 169.960938 139.03125 169.960938 139.03125 168.34375 C 139.03125 166.722656 141.460938 166.722656 141.460938 168.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.800781 346.171875 C 334.800781 347.792969 332.371094 347.792969 332.371094 346.171875 C 332.371094 344.550781 334.800781 344.550781 334.800781 346.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.546875 302.109375 C 370.546875 303.730469 368.113281 303.730469 368.113281 302.109375 C 368.113281 300.492188 370.546875 300.492188 370.546875 302.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.695312 218.277344 C 316.695312 219.894531 314.261719 219.894531 314.261719 218.277344 C 314.261719 216.65625 316.695312 216.65625 316.695312 218.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.058594 251.460938 C 255.058594 253.082031 252.628906 253.082031 252.628906 251.460938 C 252.628906 249.839844 255.058594 249.839844 255.058594 251.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.246094 166.5625 C 166.246094 168.183594 163.816406 168.183594 163.816406 166.5625 C 163.816406 164.941406 166.246094 164.941406 166.246094 166.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.449219 240.707031 C 232.449219 242.328125 230.019531 242.328125 230.019531 240.707031 C 230.019531 239.089844 232.449219 239.089844 232.449219 240.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.644531 360.644531 C 222.644531 362.265625 220.214844 362.265625 220.214844 360.644531 C 220.214844 359.027344 222.644531 359.027344 222.644531 360.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.109375 221.078125 C 243.109375 222.699219 240.679688 222.699219 240.679688 221.078125 C 240.679688 219.457031 243.109375 219.457031 243.109375 221.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.066406 297.410156 C 219.066406 299.03125 216.636719 299.03125 216.636719 297.410156 C 216.636719 295.789062 219.066406 295.789062 219.066406 297.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.589844 208.234375 C 292.589844 209.855469 290.160156 209.855469 290.160156 208.234375 C 290.160156 206.613281 292.589844 206.613281 292.589844 208.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.1875 246.253906 C 242.1875 247.875 239.757812 247.875 239.757812 246.253906 C 239.757812 244.632812 242.1875 244.632812 242.1875 246.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.785156 252.488281 C 262.785156 254.105469 260.355469 254.105469 260.355469 252.488281 C 260.355469 250.867188 262.785156 250.867188 262.785156 252.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.292969 291.035156 C 311.292969 292.65625 308.863281 292.65625 308.863281 291.035156 C 308.863281 289.414062 311.292969 289.414062 311.292969 291.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.070312 289.347656 C 279.070312 290.964844 276.640625 290.964844 276.640625 289.347656 C 276.640625 287.726562 279.070312 287.726562 279.070312 289.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.183594 242.550781 C 243.183594 244.171875 240.753906 244.171875 240.753906 242.550781 C 240.753906 240.933594 243.183594 240.933594 243.183594 242.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.839844 70.910156 L 382.476562 73.746094 L 379.203125 73.746094 Z M 380.839844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.714844 70.910156 L 129.351562 73.746094 L 126.078125 73.746094 Z M 127.714844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.328125 70.910156 L 360.964844 73.746094 L 357.691406 73.746094 Z M 359.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.207031 225.011719 C 256.207031 226.632812 253.777344 226.632812 253.777344 225.011719 C 253.777344 223.394531 256.207031 223.394531 256.207031 225.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.539062 181.046875 C 193.539062 182.664062 191.109375 182.664062 191.109375 181.046875 C 191.109375 179.425781 193.539062 179.425781 193.539062 181.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.414062 70.910156 L 167.050781 73.746094 L 163.777344 73.746094 Z M 165.414062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.269531 70.910156 L 194.90625 73.746094 L 191.632812 73.746094 Z M 193.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.703125 227.421875 C 275.703125 229.042969 273.273438 229.042969 273.273438 227.421875 C 273.273438 225.800781 275.703125 225.800781 275.703125 227.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.394531 234.074219 C 261.394531 235.695312 258.964844 235.695312 258.964844 234.074219 C 258.964844 232.457031 261.394531 232.457031 261.394531 234.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.058594 229.992188 C 258.058594 231.609375 255.628906 231.609375 255.628906 229.992188 C 255.628906 228.371094 258.058594 228.371094 258.058594 229.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.339844 220.785156 C 284.339844 222.402344 281.910156 222.402344 281.910156 220.785156 C 281.910156 219.164062 284.339844 219.164062 284.339844 220.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.828125 315.039062 C 295.828125 316.65625 293.394531 316.65625 293.394531 315.039062 C 293.394531 313.417969 295.828125 313.417969 295.828125 315.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.9375 208.625 C 310.9375 210.242188 308.507812 210.242188 308.507812 208.625 C 308.507812 207.003906 310.9375 207.003906 310.9375 208.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.566406 303.597656 C 238.566406 305.21875 236.132812 305.21875 236.132812 303.597656 C 236.132812 301.976562 238.566406 301.976562 238.566406 303.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.949219 277.242188 C 269.949219 278.859375 267.519531 278.859375 267.519531 277.242188 C 267.519531 275.621094 269.949219 275.621094 269.949219 277.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.957031 259.324219 C 147.957031 260.945312 145.527344 260.945312 145.527344 259.324219 C 145.527344 257.703125 147.957031 257.703125 147.957031 259.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.109375 281.234375 C 204.109375 282.855469 201.679688 282.855469 201.679688 281.234375 C 201.679688 279.613281 204.109375 279.613281 204.109375 281.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.121094 246.679688 C 230.121094 248.296875 227.691406 248.296875 227.691406 246.679688 C 227.691406 245.058594 230.121094 245.058594 230.121094 246.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.207031 259.550781 C 281.207031 261.171875 278.777344 261.171875 278.777344 259.550781 C 278.777344 257.933594 281.207031 257.933594 281.207031 259.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.242188 251.386719 C 306.242188 253.003906 303.8125 253.003906 303.8125 251.386719 C 303.8125 249.765625 306.242188 249.765625 306.242188 251.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.453125 218.289062 C 238.453125 219.910156 236.023438 219.910156 236.023438 218.289062 C 236.023438 216.667969 238.453125 216.667969 238.453125 218.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.058594 318.394531 C 316.058594 320.015625 313.628906 320.015625 313.628906 318.394531 C 313.628906 316.773438 316.058594 316.773438 316.058594 318.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.414062 249.230469 C 236.414062 250.851562 233.984375 250.851562 233.984375 249.230469 C 233.984375 247.609375 236.414062 247.609375 236.414062 249.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.726562 70.910156 L 210.359375 73.746094 L 207.089844 73.746094 Z M 208.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.453125 247.175781 C 330.453125 248.796875 328.023438 248.796875 328.023438 247.175781 C 328.023438 245.554688 330.453125 245.554688 330.453125 247.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.1875 418.691406 L 208.824219 415.855469 L 205.550781 415.855469 Z M 207.1875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.636719 209.652344 C 166.636719 211.273438 164.207031 211.273438 164.207031 209.652344 C 164.207031 208.03125 166.636719 208.03125 166.636719 209.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.574219 247.597656 C 240.574219 249.21875 238.144531 249.21875 238.144531 247.597656 C 238.144531 245.976562 240.574219 245.976562 240.574219 247.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.136719 341.867188 C 351.136719 343.488281 348.707031 343.488281 348.707031 341.867188 C 348.707031 340.25 351.136719 340.25 351.136719 341.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.21875 223.554688 C 271.21875 225.175781 268.785156 225.175781 268.785156 223.554688 C 268.785156 221.933594 271.21875 221.933594 271.21875 223.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.578125 251.417969 C 227.578125 253.039062 225.148438 253.039062 225.148438 251.417969 C 225.148438 249.800781 227.578125 249.800781 227.578125 251.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.171875 243.507812 C 235.171875 245.125 232.742188 245.125 232.742188 243.507812 C 232.742188 241.886719 235.171875 241.886719 235.171875 243.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.074219 308.570312 C 288.074219 310.1875 285.644531 310.1875 285.644531 308.570312 C 285.644531 306.949219 288.074219 306.949219 288.074219 308.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.453125 257.128906 C 258.453125 258.75 256.023438 258.75 256.023438 257.128906 C 256.023438 255.507812 258.453125 255.507812 258.453125 257.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.121094 70.910156 L 171.753906 73.746094 L 168.484375 73.746094 Z M 170.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.179688 83.035156 C 192.179688 84.652344 189.746094 84.652344 189.746094 83.035156 C 189.746094 81.414062 192.179688 81.414062 192.179688 83.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.492188 70.910156 L 204.128906 73.746094 L 200.855469 73.746094 Z M 202.492188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.398438 70.910156 L 249.035156 73.746094 L 245.761719 73.746094 Z M 247.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.382812 275.140625 C 270.382812 276.757812 267.953125 276.757812 267.953125 275.140625 C 267.953125 273.519531 270.382812 273.519531 270.382812 275.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.328125 243.902344 C 235.328125 245.523438 232.898438 245.523438 232.898438 243.902344 C 232.898438 242.285156 235.328125 242.285156 235.328125 243.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.542969 160.664062 C 159.542969 162.285156 157.113281 162.285156 157.113281 160.664062 C 157.113281 159.042969 159.542969 159.042969 159.542969 160.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.132812 245.425781 C 289.132812 247.046875 286.703125 247.046875 286.703125 245.425781 C 286.703125 243.808594 289.132812 243.808594 289.132812 245.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.792969 144.371094 C 134.792969 145.992188 132.363281 145.992188 132.363281 144.371094 C 132.363281 142.75 134.792969 142.75 134.792969 144.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.285156 309.074219 C 262.285156 310.695312 259.855469 310.695312 259.855469 309.074219 C 259.855469 307.453125 262.285156 307.453125 262.285156 309.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.796875 296.761719 C 333.796875 298.378906 331.367188 298.378906 331.367188 296.761719 C 331.367188 295.140625 333.796875 295.140625 333.796875 296.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.292969 339.539062 C 298.292969 341.15625 295.863281 341.15625 295.863281 339.539062 C 295.863281 337.917969 298.292969 337.917969 298.292969 339.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.609375 275.878906 C 249.609375 277.5 247.179688 277.5 247.179688 275.878906 C 247.179688 274.257812 249.609375 274.257812 249.609375 275.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.707031 241.527344 C 290.707031 243.148438 288.277344 243.148438 288.277344 241.527344 C 288.277344 239.910156 290.707031 239.910156 290.707031 241.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.550781 369.8125 C 154.550781 371.429688 152.121094 371.429688 152.121094 369.8125 C 152.121094 368.191406 154.550781 368.191406 154.550781 369.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.160156 300.867188 C 157.160156 302.488281 154.730469 302.488281 154.730469 300.867188 C 154.730469 299.25 157.160156 299.25 157.160156 300.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.640625 70.910156 L 151.277344 73.746094 L 148.003906 73.746094 Z M 149.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.472656 184.042969 C 297.472656 185.660156 295.042969 185.660156 295.042969 184.042969 C 295.042969 182.421875 297.472656 182.421875 297.472656 184.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.519531 236.886719 C 223.519531 238.507812 221.089844 238.507812 221.089844 236.886719 C 221.089844 235.269531 223.519531 235.269531 223.519531 236.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.445312 161.179688 C 202.445312 162.800781 200.015625 162.800781 200.015625 161.179688 C 200.015625 159.5625 202.445312 159.5625 202.445312 161.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.167969 286.640625 C 243.167969 288.257812 240.738281 288.257812 240.738281 286.640625 C 240.738281 285.019531 243.167969 285.019531 243.167969 286.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.464844 180.601562 C 275.464844 182.222656 273.035156 182.222656 273.035156 180.601562 C 273.035156 178.980469 275.464844 178.980469 275.464844 180.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.828125 70.910156 L 198.464844 73.746094 L 195.191406 73.746094 Z M 196.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.429688 160.957031 C 201.429688 162.578125 199 162.578125 199 160.957031 C 199 159.339844 201.429688 159.339844 201.429688 160.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.054688 293.175781 C 139.054688 294.792969 136.625 294.792969 136.625 293.175781 C 136.625 291.554688 139.054688 291.554688 139.054688 293.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.214844 168.578125 C 240.214844 170.199219 237.785156 170.199219 237.785156 168.578125 C 237.785156 166.960938 240.214844 166.960938 240.214844 168.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.609375 237.910156 C 262.609375 239.53125 260.179688 239.53125 260.179688 237.910156 C 260.179688 236.289062 262.609375 236.289062 262.609375 237.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.746094 70.910156 L 186.382812 73.746094 L 183.109375 73.746094 Z M 184.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.648438 70.910156 L 199.28125 73.746094 L 196.011719 73.746094 Z M 197.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.875 315.488281 C 284.875 317.109375 282.445312 317.109375 282.445312 315.488281 C 282.445312 313.867188 284.875 313.867188 284.875 315.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.6875 244.921875 C 234.6875 246.539062 232.257812 246.539062 232.257812 244.921875 C 232.257812 243.300781 234.6875 243.300781 234.6875 244.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.039062 227.984375 C 307.039062 229.605469 304.609375 229.605469 304.609375 227.984375 C 304.609375 226.363281 307.039062 226.363281 307.039062 227.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.777344 230.507812 C 236.777344 232.128906 234.347656 232.128906 234.347656 230.507812 C 234.347656 228.890625 236.777344 228.890625 236.777344 230.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.449219 219.832031 C 255.449219 221.453125 253.019531 221.453125 253.019531 219.832031 C 253.019531 218.210938 255.449219 218.210938 255.449219 219.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.785156 404.816406 C 317.785156 406.4375 315.355469 406.4375 315.355469 404.816406 C 315.355469 403.199219 317.785156 403.199219 317.785156 404.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.09375 313.300781 C 265.09375 314.917969 262.664062 314.917969 262.664062 313.300781 C 262.664062 311.679688 265.09375 311.679688 265.09375 313.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.832031 322.957031 C 282.832031 324.578125 280.402344 324.578125 280.402344 322.957031 C 280.402344 321.339844 282.832031 321.339844 282.832031 322.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.039062 403.125 C 123.039062 404.746094 120.609375 404.746094 120.609375 403.125 C 120.609375 401.503906 123.039062 401.503906 123.039062 403.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 381.078125 193.003906 C 381.078125 194.621094 378.648438 194.621094 378.648438 193.003906 C 378.648438 191.382812 381.078125 191.382812 381.078125 193.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.039062 256.417969 C 259.039062 258.039062 256.605469 258.039062 256.605469 256.417969 C 256.605469 254.796875 259.039062 254.796875 259.039062 256.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.964844 70.910156 L 163.601562 73.746094 L 160.328125 73.746094 Z M 161.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.410156 183.351562 C 261.410156 184.972656 258.980469 184.972656 258.980469 183.351562 C 258.980469 181.734375 261.410156 181.734375 261.410156 183.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.167969 136.730469 C 253.167969 138.351562 250.738281 138.351562 250.738281 136.730469 C 250.738281 135.113281 253.167969 135.113281 253.167969 136.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.894531 70.910156 L 259.53125 73.746094 L 256.257812 73.746094 Z M 257.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.644531 276.796875 C 259.644531 278.417969 257.214844 278.417969 257.214844 276.796875 C 257.214844 275.179688 259.644531 275.179688 259.644531 276.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.863281 416.242188 C 126.863281 417.859375 124.433594 417.859375 124.433594 416.242188 C 124.433594 414.621094 126.863281 414.621094 126.863281 416.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.472656 297.082031 C 303.472656 298.703125 301.042969 298.703125 301.042969 297.082031 C 301.042969 295.460938 303.472656 295.460938 303.472656 297.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.46875 192.277344 C 278.46875 193.898438 276.035156 193.898438 276.035156 192.277344 C 276.035156 190.65625 278.46875 190.65625 278.46875 192.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.480469 242.121094 C 264.480469 243.738281 262.050781 243.738281 262.050781 242.121094 C 262.050781 240.5 264.480469 240.5 264.480469 242.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.523438 70.910156 L 172.160156 73.746094 L 168.886719 73.746094 Z M 170.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.589844 70.910156 L 217.226562 73.746094 L 213.953125 73.746094 Z M 215.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.234375 140.9375 C 249.234375 142.554688 246.804688 142.554688 246.804688 140.9375 C 246.804688 139.316406 249.234375 139.316406 249.234375 140.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.511719 245.8125 C 338.511719 247.433594 336.082031 247.433594 336.082031 245.8125 C 336.082031 244.191406 338.511719 244.191406 338.511719 245.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.617188 253.578125 C 119.617188 255.199219 117.1875 255.199219 117.1875 253.578125 C 117.1875 251.960938 119.617188 251.960938 119.617188 253.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.09375 228.535156 C 238.09375 230.15625 235.664062 230.15625 235.664062 228.535156 C 235.664062 226.914062 238.09375 226.914062 238.09375 228.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.722656 70.910156 L 267.355469 73.746094 L 264.085938 73.746094 Z M 265.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.046875 291.882812 C 262.046875 293.5 259.617188 293.5 259.617188 291.882812 C 259.617188 290.261719 262.046875 290.261719 262.046875 291.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.652344 381.929688 C 268.652344 383.550781 266.222656 383.550781 266.222656 381.929688 C 266.222656 380.3125 268.652344 380.3125 268.652344 381.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.875 309.707031 C 255.875 311.324219 253.445312 311.324219 253.445312 309.707031 C 253.445312 308.085938 255.875 308.085938 255.875 309.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.515625 282.953125 C 280.515625 284.574219 278.085938 284.574219 278.085938 282.953125 C 278.085938 281.332031 280.515625 281.332031 280.515625 282.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.058594 113.300781 C 318.058594 114.917969 315.628906 114.917969 315.628906 113.300781 C 315.628906 111.679688 318.058594 111.679688 318.058594 113.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.648438 76.570312 C 219.648438 78.1875 217.21875 78.1875 217.21875 76.570312 C 217.21875 74.949219 219.648438 74.949219 219.648438 76.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.277344 231.730469 C 210.277344 233.347656 207.847656 233.347656 207.847656 231.730469 C 207.847656 230.109375 210.277344 230.109375 210.277344 231.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.101562 225.347656 C 157.101562 226.964844 154.671875 226.964844 154.671875 225.347656 C 154.671875 223.726562 157.101562 223.726562 157.101562 225.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.203125 307.3125 C 147.203125 308.933594 144.773438 308.933594 144.773438 307.3125 C 144.773438 305.691406 147.203125 305.691406 147.203125 307.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.429688 231.847656 C 266.429688 233.46875 264 233.46875 264 231.847656 C 264 230.230469 266.429688 230.230469 266.429688 231.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.992188 70.910156 L 304.628906 73.746094 L 301.359375 73.746094 Z M 302.992188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.023438 233.921875 C 295.023438 235.542969 292.59375 235.542969 292.59375 233.921875 C 292.59375 232.300781 295.023438 232.300781 295.023438 233.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196 274.851562 C 196 276.472656 193.566406 276.472656 193.566406 274.851562 C 193.566406 273.230469 196 273.230469 196 274.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.5 301.570312 C 248.5 303.191406 246.070312 303.191406 246.070312 301.570312 C 246.070312 299.949219 248.5 299.949219 248.5 301.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281 330.765625 C 281 332.382812 278.570312 332.382812 278.570312 330.765625 C 278.570312 329.144531 281 329.144531 281 330.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.195312 198.140625 C 235.195312 199.761719 232.765625 199.761719 232.765625 198.140625 C 232.765625 196.523438 235.195312 196.523438 235.195312 198.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.246094 212.3125 C 269.246094 213.933594 266.816406 213.933594 266.816406 212.3125 C 266.816406 210.695312 269.246094 210.695312 269.246094 212.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.332031 278.179688 C 159.332031 279.800781 156.898438 279.800781 156.898438 278.179688 C 156.898438 276.558594 159.332031 276.558594 159.332031 278.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.847656 70.910156 L 244.484375 73.746094 L 241.210938 73.746094 Z M 242.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 407.230469 148.175781 C 407.230469 149.796875 404.800781 149.796875 404.800781 148.175781 C 404.800781 146.558594 407.230469 146.558594 407.230469 148.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.679688 288.179688 C 296.679688 289.800781 294.25 289.800781 294.25 288.179688 C 294.25 286.5625 296.679688 286.5625 296.679688 288.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.34375 245.230469 C 240.34375 246.851562 237.914062 246.851562 237.914062 245.230469 C 237.914062 243.609375 240.34375 243.609375 240.34375 245.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.328125 204.703125 C 274.328125 206.324219 271.898438 206.324219 271.898438 204.703125 C 271.898438 203.085938 274.328125 203.085938 274.328125 204.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.679688 300.296875 C 252.679688 301.917969 250.25 301.917969 250.25 300.296875 C 250.25 298.679688 252.679688 298.679688 252.679688 300.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.816406 70.910156 L 177.453125 73.746094 L 174.183594 73.746094 Z M 175.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.46875 274.3125 C 215.46875 275.933594 213.039062 275.933594 213.039062 274.3125 C 213.039062 272.695312 215.46875 272.695312 215.46875 274.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.265625 266.871094 C 258.265625 268.492188 255.832031 268.492188 255.832031 266.871094 C 255.832031 265.253906 258.265625 265.253906 258.265625 266.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.578125 251.9375 C 232.578125 253.558594 230.148438 253.558594 230.148438 251.9375 C 230.148438 250.316406 232.578125 250.316406 232.578125 251.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.070312 256.75 C 285.070312 258.367188 282.640625 258.367188 282.640625 256.75 C 282.640625 255.128906 285.070312 255.128906 285.070312 256.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.601562 271.933594 C 252.601562 273.550781 250.171875 273.550781 250.171875 271.933594 C 250.171875 270.3125 252.601562 270.3125 252.601562 271.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.355469 377.554688 C 299.355469 379.175781 296.925781 379.175781 296.925781 377.554688 C 296.925781 375.9375 299.355469 375.9375 299.355469 377.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.144531 185.554688 C 244.144531 187.175781 241.714844 187.175781 241.714844 185.554688 C 241.714844 183.933594 244.144531 183.933594 244.144531 185.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.863281 241.269531 C 240.863281 242.886719 238.433594 242.886719 238.433594 241.269531 C 238.433594 239.648438 240.863281 239.648438 240.863281 241.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.371094 239.679688 C 222.371094 241.300781 219.941406 241.300781 219.941406 239.679688 C 219.941406 238.0625 222.371094 238.0625 222.371094 239.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.515625 138.996094 C 177.515625 140.617188 175.085938 140.617188 175.085938 138.996094 C 175.085938 137.378906 177.515625 137.378906 177.515625 138.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.125 258.710938 C 267.125 260.332031 264.695312 260.332031 264.695312 258.710938 C 264.695312 257.089844 267.125 257.089844 267.125 258.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.160156 271.292969 C 300.160156 272.914062 297.730469 272.914062 297.730469 271.292969 C 297.730469 269.671875 300.160156 269.671875 300.160156 271.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.070312 291.40625 C 256.070312 293.027344 253.640625 293.027344 253.640625 291.40625 C 253.640625 289.789062 256.070312 289.789062 256.070312 291.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.578125 287.09375 C 297.578125 288.710938 295.144531 288.710938 295.144531 287.09375 C 295.144531 285.472656 297.578125 285.472656 297.578125 287.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.746094 323.207031 C 244.746094 324.828125 242.316406 324.828125 242.316406 323.207031 C 242.316406 321.585938 244.746094 321.585938 244.746094 323.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 362.484375 418.691406 L 364.121094 415.855469 L 360.847656 415.855469 Z M 362.484375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.566406 213.496094 C 221.566406 215.117188 219.136719 215.117188 219.136719 213.496094 C 219.136719 211.875 221.566406 211.875 221.566406 213.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.925781 248.664062 C 296.925781 250.285156 294.496094 250.285156 294.496094 248.664062 C 294.496094 247.042969 296.925781 247.042969 296.925781 248.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.015625 196.84375 C 156.015625 198.464844 153.585938 198.464844 153.585938 196.84375 C 153.585938 195.222656 156.015625 195.222656 156.015625 196.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.828125 297.773438 C 293.828125 299.394531 291.398438 299.394531 291.398438 297.773438 C 291.398438 296.15625 293.828125 296.15625 293.828125 297.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.046875 70.910156 L 138.683594 73.746094 L 135.410156 73.746094 Z M 137.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.449219 318.414062 C 237.449219 320.03125 235.019531 320.03125 235.019531 318.414062 C 235.019531 316.792969 237.449219 316.792969 237.449219 318.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.148438 322.367188 C 224.148438 323.984375 221.71875 323.984375 221.71875 322.367188 C 221.71875 320.746094 224.148438 320.746094 224.148438 322.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.035156 232.78125 C 302.035156 234.402344 299.605469 234.402344 299.605469 232.78125 C 299.605469 231.160156 302.035156 231.160156 302.035156 232.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.636719 262.410156 C 177.636719 264.03125 175.207031 264.03125 175.207031 262.410156 C 175.207031 260.792969 177.636719 260.792969 177.636719 262.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.847656 231.4375 C 236.847656 233.054688 234.414062 233.054688 234.414062 231.4375 C 234.414062 229.816406 236.847656 229.816406 236.847656 231.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.894531 70.910156 L 191.53125 73.746094 L 188.257812 73.746094 Z M 189.894531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.347656 70.910156 L 244.984375 73.746094 L 241.710938 73.746094 Z M 243.347656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.378906 167.988281 C 229.378906 169.609375 226.949219 169.609375 226.949219 167.988281 C 226.949219 166.371094 229.378906 166.371094 229.378906 167.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.78125 284.730469 C 329.78125 286.351562 327.351562 286.351562 327.351562 284.730469 C 327.351562 283.109375 329.78125 283.109375 329.78125 284.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.167969 309.027344 C 269.167969 310.648438 266.738281 310.648438 266.738281 309.027344 C 266.738281 307.40625 269.167969 307.40625 269.167969 309.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.675781 265.515625 C 271.675781 267.136719 269.246094 267.136719 269.246094 265.515625 C 269.246094 263.898438 271.675781 263.898438 271.675781 265.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.273438 162.839844 C 229.273438 164.460938 226.84375 164.460938 226.84375 162.839844 C 226.84375 161.21875 229.273438 161.21875 229.273438 162.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.988281 181.761719 C 292.988281 183.382812 290.554688 183.382812 290.554688 181.761719 C 290.554688 180.144531 292.988281 180.144531 292.988281 181.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.761719 203.046875 C 246.761719 204.667969 244.332031 204.667969 244.332031 203.046875 C 244.332031 201.429688 246.761719 201.429688 246.761719 203.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.992188 260.71875 C 209.992188 262.339844 207.5625 262.339844 207.5625 260.71875 C 207.5625 259.101562 209.992188 259.101562 209.992188 260.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.710938 329.097656 C 175.710938 330.71875 173.277344 330.71875 173.277344 329.097656 C 173.277344 327.480469 175.710938 327.480469 175.710938 329.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 368.578125 307.445312 C 368.578125 309.0625 366.148438 309.0625 366.148438 307.445312 C 366.148438 305.824219 368.578125 305.824219 368.578125 307.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.921875 70.910156 L 199.554688 73.746094 L 196.285156 73.746094 Z M 197.921875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.917969 418.691406 L 110.550781 415.855469 L 107.28125 415.855469 Z M 108.917969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.042969 259.304688 C 234.042969 260.921875 231.609375 260.921875 231.609375 259.304688 C 231.609375 257.683594 234.042969 257.683594 234.042969 259.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.71875 252.582031 C 202.71875 254.203125 200.289062 254.203125 200.289062 252.582031 C 200.289062 250.960938 202.71875 250.960938 202.71875 252.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.898438 275.742188 C 259.898438 277.363281 257.46875 277.363281 257.46875 275.742188 C 257.46875 274.121094 259.898438 274.121094 259.898438 275.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.378906 285.796875 C 237.378906 287.417969 234.949219 287.417969 234.949219 285.796875 C 234.949219 284.175781 237.378906 284.175781 237.378906 285.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.421875 246.585938 C 269.421875 248.203125 266.992188 248.203125 266.992188 246.585938 C 266.992188 244.964844 269.421875 244.964844 269.421875 246.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.164062 153.191406 C 250.164062 154.808594 247.734375 154.808594 247.734375 153.191406 C 247.734375 151.570312 250.164062 151.570312 250.164062 153.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.949219 116.703125 C 136.949219 118.324219 134.519531 118.324219 134.519531 116.703125 C 134.519531 115.082031 136.949219 115.082031 136.949219 116.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.140625 235.019531 C 252.140625 236.636719 249.710938 236.636719 249.710938 235.019531 C 249.710938 233.398438 252.140625 233.398438 252.140625 235.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.335938 245.917969 C 326.335938 247.539062 323.90625 247.539062 323.90625 245.917969 C 323.90625 244.296875 326.335938 244.296875 326.335938 245.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 179.820312 81.992188 C 179.820312 83.613281 177.390625 83.613281 177.390625 81.992188 C 177.390625 80.375 179.820312 80.375 179.820312 81.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.8125 203.4375 C 198.8125 205.058594 196.378906 205.058594 196.378906 203.4375 C 196.378906 201.820312 198.8125 201.820312 198.8125 203.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.878906 228.792969 C 246.878906 230.414062 244.449219 230.414062 244.449219 228.792969 C 244.449219 227.175781 246.878906 227.175781 246.878906 228.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.84375 305.503906 C 225.84375 307.125 223.414062 307.125 223.414062 305.503906 C 223.414062 303.886719 225.84375 303.886719 225.84375 305.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.019531 70.910156 L 274.65625 73.746094 L 271.382812 73.746094 Z M 273.019531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.03125 70.910156 L 262.667969 73.746094 L 259.394531 73.746094 Z M 261.03125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.039062 70.910156 L 237.675781 73.746094 L 234.402344 73.746094 Z M 236.039062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.183594 223.234375 C 174.183594 224.855469 171.753906 224.855469 171.753906 223.234375 C 171.753906 221.617188 174.183594 221.617188 174.183594 223.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.742188 249.472656 C 176.742188 251.09375 174.3125 251.09375 174.3125 249.472656 C 174.3125 247.855469 176.742188 247.855469 176.742188 249.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.246094 305.835938 C 237.246094 307.457031 234.816406 307.457031 234.816406 305.835938 C 234.816406 304.214844 237.246094 304.214844 237.246094 305.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.132812 210.796875 C 287.132812 212.417969 284.703125 212.417969 284.703125 210.796875 C 284.703125 209.175781 287.132812 209.175781 287.132812 210.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.9375 186.070312 C 344.9375 187.691406 342.507812 187.691406 342.507812 186.070312 C 342.507812 184.449219 344.9375 184.449219 344.9375 186.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.683594 215.199219 C 347.683594 216.820312 345.253906 216.820312 345.253906 215.199219 C 345.253906 213.582031 347.683594 213.582031 347.683594 215.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.167969 291 C 297.167969 292.621094 294.738281 292.621094 294.738281 291 C 294.738281 289.378906 297.167969 289.378906 297.167969 291 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.972656 269.632812 C 290.972656 271.253906 288.542969 271.253906 288.542969 269.632812 C 288.542969 268.015625 290.972656 268.015625 290.972656 269.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.105469 348.601562 C 295.105469 350.222656 292.675781 350.222656 292.675781 348.601562 C 292.675781 346.980469 295.105469 346.980469 295.105469 348.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.222656 337.261719 C 280.222656 338.878906 277.792969 338.878906 277.792969 337.261719 C 277.792969 335.640625 280.222656 335.640625 280.222656 337.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.847656 165.132812 C 312.847656 166.753906 310.417969 166.753906 310.417969 165.132812 C 310.417969 163.511719 312.847656 163.511719 312.847656 165.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.992188 261.132812 C 302.992188 262.753906 300.5625 262.753906 300.5625 261.132812 C 300.5625 259.511719 302.992188 259.511719 302.992188 261.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.90625 207.167969 C 178.90625 208.785156 176.476562 208.785156 176.476562 207.167969 C 176.476562 205.546875 178.90625 205.546875 178.90625 207.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.167969 298.375 C 306.167969 299.996094 303.734375 299.996094 303.734375 298.375 C 303.734375 296.753906 306.167969 296.753906 306.167969 298.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.636719 235.945312 C 260.636719 237.5625 258.207031 237.5625 258.207031 235.945312 C 258.207031 234.324219 260.636719 234.324219 260.636719 235.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.699219 325.691406 C 262.699219 327.308594 260.269531 327.308594 260.269531 325.691406 C 260.269531 324.070312 262.699219 324.070312 262.699219 325.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.160156 331.519531 C 234.160156 333.140625 231.730469 333.140625 231.730469 331.519531 C 231.730469 329.898438 234.160156 329.898438 234.160156 331.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.46875 312.332031 C 337.46875 313.953125 335.039062 313.953125 335.039062 312.332031 C 335.039062 310.714844 337.46875 310.714844 337.46875 312.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.425781 296.019531 C 250.425781 297.640625 247.996094 297.640625 247.996094 296.019531 C 247.996094 294.398438 250.425781 294.398438 250.425781 296.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.625 188.410156 C 191.625 190.03125 189.191406 190.03125 189.191406 188.410156 C 189.191406 186.789062 191.625 186.789062 191.625 188.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.335938 312.484375 C 289.335938 314.105469 286.902344 314.105469 286.902344 312.484375 C 286.902344 310.863281 289.335938 310.863281 289.335938 312.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.300781 247.398438 C 299.300781 249.019531 296.871094 249.019531 296.871094 247.398438 C 296.871094 245.78125 299.300781 245.78125 299.300781 247.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.359375 260.496094 C 147.359375 262.117188 144.929688 262.117188 144.929688 260.496094 C 144.929688 258.875 147.359375 258.875 147.359375 260.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.210938 418.691406 L 278.84375 415.855469 L 275.574219 415.855469 Z M 277.210938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.648438 120.320312 C 226.648438 121.941406 224.21875 121.941406 224.21875 120.320312 C 224.21875 118.699219 226.648438 118.699219 226.648438 120.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.160156 86.863281 C 260.160156 88.484375 257.730469 88.484375 257.730469 86.863281 C 257.730469 85.242188 260.160156 85.242188 260.160156 86.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.324219 119.878906 C 193.324219 121.5 190.894531 121.5 190.894531 119.878906 C 190.894531 118.257812 193.324219 118.257812 193.324219 119.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.640625 219.160156 C 262.640625 220.777344 260.210938 220.777344 260.210938 219.160156 C 260.210938 217.539062 262.640625 217.539062 262.640625 219.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.171875 252.800781 C 316.171875 254.421875 313.742188 254.421875 313.742188 252.800781 C 313.742188 251.179688 316.171875 251.179688 316.171875 252.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.453125 293.074219 C 213.453125 294.695312 211.023438 294.695312 211.023438 293.074219 C 211.023438 291.453125 213.453125 291.453125 213.453125 293.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.898438 274.234375 C 307.898438 275.851562 305.46875 275.851562 305.46875 274.234375 C 305.46875 272.613281 307.898438 272.613281 307.898438 274.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.375 184.632812 C 261.375 186.253906 258.945312 186.253906 258.945312 184.632812 C 258.945312 183.011719 261.375 183.011719 261.375 184.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.621094 70.910156 L 127.253906 73.746094 L 123.984375 73.746094 Z M 125.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.269531 217.726562 C 294.269531 219.34375 291.839844 219.34375 291.839844 217.726562 C 291.839844 216.105469 294.269531 216.105469 294.269531 217.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.738281 300.980469 C 262.738281 302.601562 260.308594 302.601562 260.308594 300.980469 C 260.308594 299.363281 262.738281 299.363281 262.738281 300.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.316406 285.183594 C 269.316406 286.804688 266.886719 286.804688 266.886719 285.183594 C 266.886719 283.5625 269.316406 283.5625 269.316406 285.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.34375 249.078125 C 232.34375 250.695312 229.914062 250.695312 229.914062 249.078125 C 229.914062 247.457031 232.34375 247.457031 232.34375 249.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.335938 320.796875 C 218.335938 322.417969 215.90625 322.417969 215.90625 320.796875 C 215.90625 319.175781 218.335938 319.175781 218.335938 320.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.597656 308.046875 C 290.597656 309.667969 288.167969 309.667969 288.167969 308.046875 C 288.167969 306.425781 290.597656 306.425781 290.597656 308.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.535156 288.320312 C 291.535156 289.9375 289.105469 289.9375 289.105469 288.320312 C 289.105469 286.699219 291.535156 286.699219 291.535156 288.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.351562 294.105469 C 258.351562 295.726562 255.921875 295.726562 255.921875 294.105469 C 255.921875 292.484375 258.351562 292.484375 258.351562 294.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.332031 294.480469 C 148.332031 296.101562 145.898438 296.101562 145.898438 294.480469 C 145.898438 292.859375 148.332031 292.859375 148.332031 294.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.074219 253.777344 C 165.074219 255.394531 162.644531 255.394531 162.644531 253.777344 C 162.644531 252.15625 165.074219 252.15625 165.074219 253.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.199219 418.691406 L 269.835938 415.855469 L 266.5625 415.855469 Z M 268.199219 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.808594 418.691406 L 248.445312 415.855469 L 245.171875 415.855469 Z M 246.808594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.980469 275.261719 C 144.980469 276.878906 142.546875 276.878906 142.546875 275.261719 C 142.546875 273.640625 144.980469 273.640625 144.980469 275.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.808594 70.910156 L 207.445312 73.746094 L 204.171875 73.746094 Z M 205.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.402344 183.164062 C 258.402344 184.785156 255.972656 184.785156 255.972656 183.164062 C 255.972656 181.542969 258.402344 181.542969 258.402344 183.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.6875 161.929688 C 216.6875 163.550781 214.257812 163.550781 214.257812 161.929688 C 214.257812 160.308594 216.6875 160.308594 216.6875 161.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.785156 241.222656 C 259.785156 242.84375 257.355469 242.84375 257.355469 241.222656 C 257.355469 239.601562 259.785156 239.601562 259.785156 241.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.421875 267.0625 C 240.421875 268.683594 237.992188 268.683594 237.992188 267.0625 C 237.992188 265.445312 240.421875 265.445312 240.421875 267.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.128906 220.015625 C 242.128906 221.636719 239.699219 221.636719 239.699219 220.015625 C 239.699219 218.394531 242.128906 218.394531 242.128906 220.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.742188 243.554688 C 266.742188 245.175781 264.3125 245.175781 264.3125 243.554688 C 264.3125 241.9375 266.742188 241.9375 266.742188 243.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.253906 265.527344 C 265.253906 267.148438 262.824219 267.148438 262.824219 265.527344 C 262.824219 263.910156 265.253906 263.910156 265.253906 265.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.625 375.832031 C 118.625 377.449219 116.195312 377.449219 116.195312 375.832031 C 116.195312 374.210938 118.625 374.210938 118.625 375.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.195312 260.074219 C 200.195312 261.695312 197.765625 261.695312 197.765625 260.074219 C 197.765625 258.453125 200.195312 258.453125 200.195312 260.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.363281 117.8125 C 171.363281 119.433594 168.933594 119.433594 168.933594 117.8125 C 168.933594 116.191406 171.363281 116.191406 171.363281 117.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.097656 229.566406 C 233.097656 231.183594 230.667969 231.183594 230.667969 229.566406 C 230.667969 227.945312 233.097656 227.945312 233.097656 229.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.085938 194.621094 C 249.085938 196.238281 246.65625 196.238281 246.65625 194.621094 C 246.65625 193 249.085938 193 249.085938 194.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.910156 178.515625 C 166.910156 180.136719 164.480469 180.136719 164.480469 178.515625 C 164.480469 176.894531 166.910156 176.894531 166.910156 178.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.101562 70.910156 L 218.738281 73.746094 L 215.464844 73.746094 Z M 217.101562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.207031 70.910156 L 205.84375 73.746094 L 202.574219 73.746094 Z M 204.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.039062 323.390625 C 275.039062 325.011719 272.609375 325.011719 272.609375 323.390625 C 272.609375 321.773438 275.039062 321.773438 275.039062 323.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.882812 242.089844 C 289.882812 243.710938 287.453125 243.710938 287.453125 242.089844 C 287.453125 240.46875 289.882812 240.46875 289.882812 242.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.214844 230.46875 C 284.214844 232.089844 281.785156 232.089844 281.785156 230.46875 C 281.785156 228.847656 284.214844 228.847656 284.214844 230.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 351.140625 268.804688 C 351.140625 270.421875 348.710938 270.421875 348.710938 268.804688 C 348.710938 267.183594 351.140625 267.183594 351.140625 268.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.992188 102.699219 C 156.992188 104.320312 154.5625 104.320312 154.5625 102.699219 C 154.5625 101.078125 156.992188 101.078125 156.992188 102.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.382812 70.910156 L 296.019531 73.746094 L 292.746094 73.746094 Z M 294.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.8125 169.335938 C 173.8125 170.957031 171.382812 170.957031 171.382812 169.335938 C 171.382812 167.71875 173.8125 167.71875 173.8125 169.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.320312 77.847656 C 142.320312 79.46875 139.890625 79.46875 139.890625 77.847656 C 139.890625 76.226562 142.320312 76.226562 142.320312 77.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.558594 257.855469 C 213.558594 259.476562 211.128906 259.476562 211.128906 257.855469 C 211.128906 256.238281 213.558594 256.238281 213.558594 257.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.273438 238.910156 C 242.273438 240.53125 239.84375 240.53125 239.84375 238.910156 C 239.84375 237.292969 242.273438 237.292969 242.273438 238.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.980469 70.910156 L 202.617188 73.746094 L 199.34375 73.746094 Z M 200.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.589844 223.96875 C 215.589844 225.589844 213.160156 225.589844 213.160156 223.96875 C 213.160156 222.351562 215.589844 222.351562 215.589844 223.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.148438 70.910156 L 155.785156 73.746094 L 152.511719 73.746094 Z M 154.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.402344 252.488281 C 278.402344 254.109375 275.972656 254.109375 275.972656 252.488281 C 275.972656 250.867188 278.402344 250.867188 278.402344 252.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.082031 70.910156 L 132.71875 73.746094 L 129.445312 73.746094 Z M 131.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.769531 249.363281 C 138.769531 250.980469 136.339844 250.980469 136.339844 249.363281 C 136.339844 247.742188 138.769531 247.742188 138.769531 249.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.382812 70.910156 L 180.019531 73.746094 L 176.746094 73.746094 Z M 178.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.894531 160.714844 C 127.894531 162.332031 125.464844 162.332031 125.464844 160.714844 C 125.464844 159.09375 127.894531 159.09375 127.894531 160.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.882812 70.910156 L 130.519531 73.746094 L 127.246094 73.746094 Z M 128.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.875 399.148438 C 163.875 400.765625 161.445312 400.765625 161.445312 399.148438 C 161.445312 397.527344 163.875 397.527344 163.875 399.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.769531 189.261719 C 264.769531 190.882812 262.339844 190.882812 262.339844 189.261719 C 262.339844 187.640625 264.769531 187.640625 264.769531 189.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.265625 207.597656 C 272.265625 209.21875 269.835938 209.21875 269.835938 207.597656 C 269.835938 205.976562 272.265625 205.976562 272.265625 207.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.125 70.910156 L 247.761719 73.746094 L 244.488281 73.746094 Z M 246.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.1875 199.570312 C 255.1875 201.1875 252.757812 201.1875 252.757812 199.570312 C 252.757812 197.949219 255.1875 197.949219 255.1875 199.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.519531 253.539062 C 281.519531 255.160156 279.089844 255.160156 279.089844 253.539062 C 279.089844 251.917969 281.519531 251.917969 281.519531 253.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.292969 318.539062 C 294.292969 320.160156 291.863281 320.160156 291.863281 318.539062 C 291.863281 316.917969 294.292969 316.917969 294.292969 318.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.316406 254.621094 C 202.316406 256.238281 199.886719 256.238281 199.886719 254.621094 C 199.886719 253 202.316406 253 202.316406 254.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.019531 130.953125 C 252.019531 132.574219 249.589844 132.574219 249.589844 130.953125 C 249.589844 129.335938 252.019531 129.335938 252.019531 130.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.96875 95.449219 C 258.96875 97.070312 256.539062 97.070312 256.539062 95.449219 C 256.539062 93.828125 258.96875 93.828125 258.96875 95.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.488281 70.910156 L 189.125 73.746094 L 185.851562 73.746094 Z M 187.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.863281 70.910156 L 160.5 73.746094 L 157.230469 73.746094 Z M 158.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.472656 152.316406 C 141.472656 153.9375 139.042969 153.9375 139.042969 152.316406 C 139.042969 150.695312 141.472656 150.695312 141.472656 152.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.511719 165.988281 C 259.511719 167.605469 257.082031 167.605469 257.082031 165.988281 C 257.082031 164.367188 259.511719 164.367188 259.511719 165.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.644531 79.347656 C 300.644531 80.964844 298.214844 80.964844 298.214844 79.347656 C 298.214844 77.726562 300.644531 77.726562 300.644531 79.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.011719 117.179688 C 119.011719 118.800781 116.582031 118.800781 116.582031 117.179688 C 116.582031 115.558594 119.011719 115.558594 119.011719 117.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.117188 70.910156 L 235.753906 73.746094 L 232.480469 73.746094 Z M 234.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.992188 374.460938 C 267.992188 376.082031 265.5625 376.082031 265.5625 374.460938 C 265.5625 372.84375 267.992188 372.84375 267.992188 374.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.972656 365.03125 C 245.972656 366.648438 243.542969 366.648438 243.542969 365.03125 C 243.542969 363.410156 245.972656 363.410156 245.972656 365.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.601562 388.894531 C 280.601562 390.515625 278.171875 390.515625 278.171875 388.894531 C 278.171875 387.273438 280.601562 387.273438 280.601562 388.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.292969 296.367188 C 126.292969 297.988281 123.863281 297.988281 123.863281 296.367188 C 123.863281 294.75 126.292969 294.75 126.292969 296.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.769531 173.273438 C 109.769531 174.894531 107.339844 174.894531 107.339844 173.273438 C 107.339844 171.652344 109.769531 171.652344 109.769531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.175781 275.097656 C 272.175781 276.71875 269.746094 276.71875 269.746094 275.097656 C 269.746094 273.480469 272.175781 273.480469 272.175781 275.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.527344 294.632812 C 292.527344 296.253906 290.097656 296.253906 290.097656 294.632812 C 290.097656 293.015625 292.527344 293.015625 292.527344 294.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.925781 173.855469 C 168.925781 175.472656 166.496094 175.472656 166.496094 173.855469 C 166.496094 172.234375 168.925781 172.234375 168.925781 173.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.921875 329.816406 C 140.921875 331.4375 138.492188 331.4375 138.492188 329.816406 C 138.492188 328.195312 140.921875 328.195312 140.921875 329.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.101562 70.910156 L 205.738281 73.746094 L 202.464844 73.746094 Z M 204.101562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.6875 70.910156 L 207.320312 73.746094 L 204.050781 73.746094 Z M 205.6875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.589844 70.910156 L 163.226562 73.746094 L 159.953125 73.746094 Z M 161.589844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.925781 70.910156 L 254.5625 73.746094 L 251.289062 73.746094 Z M 252.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.0625 241.746094 C 231.0625 243.367188 228.632812 243.367188 228.632812 241.746094 C 228.632812 240.125 231.0625 240.125 231.0625 241.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.039062 418.691406 L 307.675781 415.855469 L 304.402344 415.855469 Z M 306.039062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.902344 190.480469 C 231.902344 192.101562 229.472656 192.101562 229.472656 190.480469 C 229.472656 188.859375 231.902344 188.859375 231.902344 190.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.445312 287.917969 C 305.445312 289.539062 303.015625 289.539062 303.015625 287.917969 C 303.015625 286.300781 305.445312 286.300781 305.445312 287.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.152344 375.683594 C 287.152344 377.304688 284.722656 377.304688 284.722656 375.683594 C 284.722656 374.0625 287.152344 374.0625 287.152344 375.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.90625 418.691406 L 278.542969 415.855469 L 275.273438 415.855469 Z M 276.90625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.214844 70.910156 L 225.851562 73.746094 L 222.578125 73.746094 Z M 224.214844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.0625 70.910156 L 195.699219 73.746094 L 192.425781 73.746094 Z M 194.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.234375 244.273438 C 194.234375 245.894531 191.804688 245.894531 191.804688 244.273438 C 191.804688 242.652344 194.234375 242.652344 194.234375 244.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.84375 70.910156 L 179.480469 73.746094 L 176.207031 73.746094 Z M 177.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.992188 418.691406 L 210.628906 415.855469 L 207.355469 415.855469 Z M 208.992188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.972656 119.433594 C 258.972656 121.050781 256.542969 121.050781 256.542969 119.433594 C 256.542969 117.8125 258.972656 117.8125 258.972656 119.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.882812 280.359375 C 303.882812 281.980469 301.453125 281.980469 301.453125 280.359375 C 301.453125 278.738281 303.882812 278.738281 303.882812 280.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.953125 184.558594 C 252.953125 186.175781 250.523438 186.175781 250.523438 184.558594 C 250.523438 182.9375 252.953125 182.9375 252.953125 184.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.152344 269.136719 C 232.152344 270.757812 229.722656 270.757812 229.722656 269.136719 C 229.722656 267.515625 232.152344 267.515625 232.152344 269.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.667969 70.910156 L 265.304688 73.746094 L 262.03125 73.746094 Z M 263.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.035156 70.910156 L 139.671875 73.746094 L 136.398438 73.746094 Z M 138.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.738281 203.652344 C 245.738281 205.269531 243.308594 205.269531 243.308594 203.652344 C 243.308594 202.03125 245.738281 202.03125 245.738281 203.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.828125 153.976562 C 226.828125 155.597656 224.398438 155.597656 224.398438 153.976562 C 224.398438 152.355469 226.828125 152.355469 226.828125 153.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.800781 175.9375 C 224.800781 177.558594 222.371094 177.558594 222.371094 175.9375 C 222.371094 174.316406 224.800781 174.316406 224.800781 175.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.019531 345.914062 C 272.019531 347.535156 269.589844 347.535156 269.589844 345.914062 C 269.589844 344.292969 272.019531 344.292969 272.019531 345.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.101562 210.769531 C 143.101562 212.390625 140.671875 212.390625 140.671875 210.769531 C 140.671875 209.148438 143.101562 209.148438 143.101562 210.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.105469 219.96875 C 241.105469 221.589844 238.675781 221.589844 238.675781 219.96875 C 238.675781 218.351562 241.105469 218.351562 241.105469 219.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.097656 202.75 C 294.097656 204.371094 291.667969 204.371094 291.667969 202.75 C 291.667969 201.128906 294.097656 201.128906 294.097656 202.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.21875 363.796875 C 228.21875 365.417969 225.789062 365.417969 225.789062 363.796875 C 225.789062 362.175781 228.21875 362.175781 228.21875 363.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.453125 356.660156 C 226.453125 358.28125 224.023438 358.28125 224.023438 356.660156 C 224.023438 355.039062 226.453125 355.039062 226.453125 356.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.332031 327.433594 C 275.332031 329.054688 272.902344 329.054688 272.902344 327.433594 C 272.902344 325.816406 275.332031 325.816406 275.332031 327.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.832031 271.714844 C 329.832031 273.335938 327.398438 273.335938 327.398438 271.714844 C 327.398438 270.097656 329.832031 270.097656 329.832031 271.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.945312 418.691406 L 135.582031 415.855469 L 132.308594 415.855469 Z M 133.945312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.429688 296.074219 C 189.429688 297.691406 187 297.691406 187 296.074219 C 187 294.453125 189.429688 294.453125 189.429688 296.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 180.679688 78.265625 C 180.679688 79.886719 178.246094 79.886719 178.246094 78.265625 C 178.246094 76.644531 180.679688 76.644531 180.679688 78.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.21875 307.191406 C 339.21875 308.8125 336.789062 308.8125 336.789062 307.191406 C 336.789062 305.574219 339.21875 305.574219 339.21875 307.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.703125 70.910156 L 197.339844 73.746094 L 194.066406 73.746094 Z M 195.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.039062 220.363281 C 335.039062 221.984375 332.609375 221.984375 332.609375 220.363281 C 332.609375 218.746094 335.039062 218.746094 335.039062 220.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.109375 175.675781 C 245.109375 177.292969 242.679688 177.292969 242.679688 175.675781 C 242.679688 174.054688 245.109375 174.054688 245.109375 175.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.054688 281.789062 C 302.054688 283.40625 299.625 283.40625 299.625 281.789062 C 299.625 280.167969 302.054688 280.167969 302.054688 281.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.453125 274.003906 C 295.453125 275.625 293.023438 275.625 293.023438 274.003906 C 293.023438 272.382812 295.453125 272.382812 295.453125 274.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.570312 294.824219 C 213.570312 296.445312 211.140625 296.445312 211.140625 294.824219 C 211.140625 293.207031 213.570312 293.207031 213.570312 294.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.734375 291.886719 C 260.734375 293.503906 258.304688 293.503906 258.304688 291.886719 C 258.304688 290.265625 260.734375 290.265625 260.734375 291.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.285156 372.289062 C 247.285156 373.910156 244.855469 373.910156 244.855469 372.289062 C 244.855469 370.667969 247.285156 370.667969 247.285156 372.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.039062 321.765625 C 270.039062 323.386719 267.609375 323.386719 267.609375 321.765625 C 267.609375 320.144531 270.039062 320.144531 270.039062 321.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.058594 70.910156 L 264.695312 73.746094 L 261.421875 73.746094 Z M 263.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.214844 70.910156 L 322.851562 73.746094 L 319.578125 73.746094 Z M 321.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.949219 133.300781 C 248.949219 134.921875 246.519531 134.921875 246.519531 133.300781 C 246.519531 131.683594 248.949219 131.683594 248.949219 133.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.269531 412.792969 C 222.269531 414.414062 219.839844 414.414062 219.839844 412.792969 C 219.839844 411.171875 222.269531 411.171875 222.269531 412.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.355469 208.371094 C 147.355469 209.992188 144.925781 209.992188 144.925781 208.371094 C 144.925781 206.753906 147.355469 206.753906 147.355469 208.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.929688 263.664062 C 205.929688 265.285156 203.5 265.285156 203.5 263.664062 C 203.5 262.042969 205.929688 262.042969 205.929688 263.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.800781 256.6875 C 272.800781 258.308594 270.371094 258.308594 270.371094 256.6875 C 270.371094 255.066406 272.800781 255.066406 272.800781 256.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.441406 328.050781 C 193.441406 329.667969 191.011719 329.667969 191.011719 328.050781 C 191.011719 326.429688 193.441406 326.429688 193.441406 328.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.734375 288.515625 C 180.734375 290.136719 178.304688 290.136719 178.304688 288.515625 C 178.304688 286.898438 180.734375 286.898438 180.734375 288.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.226562 281.476562 C 259.226562 283.097656 256.796875 283.097656 256.796875 281.476562 C 256.796875 279.859375 259.226562 279.859375 259.226562 281.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.496094 233.132812 C 307.496094 234.75 305.066406 234.75 305.066406 233.132812 C 305.066406 231.511719 307.496094 231.511719 307.496094 233.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.71875 229.828125 C 300.71875 231.445312 298.289062 231.445312 298.289062 229.828125 C 298.289062 228.207031 300.71875 228.207031 300.71875 229.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.050781 260.527344 C 296.050781 262.144531 293.621094 262.144531 293.621094 260.527344 C 293.621094 258.90625 296.050781 258.90625 296.050781 260.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.75 70.910156 L 275.386719 73.746094 L 272.113281 73.746094 Z M 273.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.4375 126.152344 C 190.4375 127.773438 188.007812 127.773438 188.007812 126.152344 C 188.007812 124.535156 190.4375 124.535156 190.4375 126.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.742188 263.21875 C 282.742188 264.835938 280.3125 264.835938 280.3125 263.21875 C 280.3125 261.597656 282.742188 261.597656 282.742188 263.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.007812 312.457031 C 234.007812 314.078125 231.578125 314.078125 231.578125 312.457031 C 231.578125 310.835938 234.007812 310.835938 234.007812 312.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.292969 279.484375 C 297.292969 281.101562 294.863281 281.101562 294.863281 279.484375 C 294.863281 277.863281 297.292969 277.863281 297.292969 279.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.871094 353.765625 C 287.871094 355.386719 285.441406 355.386719 285.441406 353.765625 C 285.441406 352.144531 287.871094 352.144531 287.871094 353.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.003906 271.566406 C 259.003906 273.1875 256.570312 273.1875 256.570312 271.566406 C 256.570312 269.949219 259.003906 269.949219 259.003906 271.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.105469 281.785156 C 356.105469 283.40625 353.675781 283.40625 353.675781 281.785156 C 353.675781 280.164062 356.105469 280.164062 356.105469 281.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.125 95.359375 C 193.125 96.976562 190.695312 96.976562 190.695312 95.359375 C 190.695312 93.738281 193.125 93.738281 193.125 95.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.144531 329.234375 C 196.144531 330.855469 193.714844 330.855469 193.714844 329.234375 C 193.714844 327.613281 196.144531 327.613281 196.144531 329.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.433594 262.542969 C 166.433594 264.160156 164.003906 264.160156 164.003906 262.542969 C 164.003906 260.921875 166.433594 260.921875 166.433594 262.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.765625 418.691406 L 153.402344 415.855469 L 150.128906 415.855469 Z M 151.765625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.082031 103.546875 C 183.082031 105.167969 180.652344 105.167969 180.652344 103.546875 C 180.652344 101.925781 183.082031 101.925781 183.082031 103.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.839844 262.101562 C 216.839844 263.71875 214.410156 263.71875 214.410156 262.101562 C 214.410156 260.480469 216.839844 260.480469 216.839844 262.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.980469 373.117188 C 117.980469 374.738281 115.550781 374.738281 115.550781 373.117188 C 115.550781 371.496094 117.980469 371.496094 117.980469 373.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.800781 169.035156 C 250.800781 170.65625 248.371094 170.65625 248.371094 169.035156 C 248.371094 167.414062 250.800781 167.414062 250.800781 169.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.515625 70.910156 L 122.152344 73.746094 L 118.878906 73.746094 Z M 120.515625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.621094 70.910156 L 146.257812 73.746094 L 142.984375 73.746094 Z M 144.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.535156 70.910156 L 236.171875 73.746094 L 232.898438 73.746094 Z M 234.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.179688 230.378906 C 140.179688 231.996094 137.75 231.996094 137.75 230.378906 C 137.75 228.757812 140.179688 228.757812 140.179688 230.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.816406 175.855469 C 343.816406 177.476562 341.386719 177.476562 341.386719 175.855469 C 341.386719 174.238281 343.816406 174.238281 343.816406 175.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.378906 70.910156 L 205.015625 73.746094 L 201.742188 73.746094 Z M 203.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.59375 70.910156 L 176.230469 73.746094 L 172.957031 73.746094 Z M 174.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.144531 85.191406 C 191.144531 86.8125 188.714844 86.8125 188.714844 85.191406 C 188.714844 83.570312 191.144531 83.570312 191.144531 85.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.058594 112.570312 C 180.058594 114.191406 177.628906 114.191406 177.628906 112.570312 C 177.628906 110.949219 180.058594 110.949219 180.058594 112.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.242188 271.46875 C 187.242188 273.089844 184.8125 273.089844 184.8125 271.46875 C 184.8125 269.847656 187.242188 269.847656 187.242188 271.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.40625 185.027344 C 222.40625 186.648438 219.976562 186.648438 219.976562 185.027344 C 219.976562 183.40625 222.40625 183.40625 222.40625 185.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.832031 273.039062 C 279.832031 274.65625 277.402344 274.65625 277.402344 273.039062 C 277.402344 271.417969 279.832031 271.417969 279.832031 273.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.855469 418.691406 L 218.492188 415.855469 L 215.21875 415.855469 Z M 216.855469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.359375 326.496094 C 312.359375 328.113281 309.929688 328.113281 309.929688 326.496094 C 309.929688 324.875 312.359375 324.875 312.359375 326.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.875 70.910156 L 229.511719 73.746094 L 226.238281 73.746094 Z M 227.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.054688 96.304688 C 205.054688 97.925781 202.625 97.925781 202.625 96.304688 C 202.625 94.683594 205.054688 94.683594 205.054688 96.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.210938 252.195312 C 145.210938 253.816406 142.78125 253.816406 142.78125 252.195312 C 142.78125 250.578125 145.210938 250.578125 145.210938 252.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.71875 418.691406 L 287.355469 415.855469 L 284.082031 415.855469 Z M 285.71875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.101562 70.910156 L 232.734375 73.746094 L 229.464844 73.746094 Z M 231.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.605469 221.238281 C 279.605469 222.859375 277.175781 222.859375 277.175781 221.238281 C 277.175781 219.621094 279.605469 219.621094 279.605469 221.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.976562 139.953125 C 245.976562 141.574219 243.546875 141.574219 243.546875 139.953125 C 243.546875 138.335938 245.976562 138.335938 245.976562 139.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.777344 245.007812 C 270.777344 246.628906 268.347656 246.628906 268.347656 245.007812 C 268.347656 243.386719 270.777344 243.386719 270.777344 245.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.101562 311.914062 C 235.101562 313.53125 232.671875 313.53125 232.671875 311.914062 C 232.671875 310.292969 235.101562 310.292969 235.101562 311.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.496094 98.269531 C 180.496094 99.890625 178.066406 99.890625 178.066406 98.269531 C 178.066406 96.648438 180.496094 96.648438 180.496094 98.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.941406 70.910156 L 132.578125 73.746094 L 129.304688 73.746094 Z M 130.941406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.671875 228.617188 C 296.671875 230.238281 294.242188 230.238281 294.242188 228.617188 C 294.242188 227 296.671875 227 296.671875 228.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.324219 283.40625 C 184.324219 285.027344 181.894531 285.027344 181.894531 283.40625 C 181.894531 281.789062 184.324219 281.789062 184.324219 283.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.117188 265.460938 C 175.117188 267.082031 172.6875 267.082031 172.6875 265.460938 C 172.6875 263.839844 175.117188 263.839844 175.117188 265.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.851562 288.171875 C 232.851562 289.792969 230.421875 289.792969 230.421875 288.171875 C 230.421875 286.554688 232.851562 286.554688 232.851562 288.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.371094 391.253906 C 263.371094 392.875 260.941406 392.875 260.941406 391.253906 C 260.941406 389.636719 263.371094 389.636719 263.371094 391.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.550781 188.371094 C 213.550781 189.992188 211.121094 189.992188 211.121094 188.371094 C 211.121094 186.75 213.550781 186.75 213.550781 188.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.433594 372.660156 C 308.433594 374.28125 306.003906 374.28125 306.003906 372.660156 C 306.003906 371.039062 308.433594 371.039062 308.433594 372.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.113281 418.691406 L 291.75 415.855469 L 288.476562 415.855469 Z M 290.113281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.664062 418.691406 L 275.300781 415.855469 L 272.027344 415.855469 Z M 273.664062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.339844 212.210938 C 253.339844 213.828125 250.910156 213.828125 250.910156 212.210938 C 250.910156 210.589844 253.339844 210.589844 253.339844 212.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.828125 205.84375 C 307.828125 207.464844 305.394531 207.464844 305.394531 205.84375 C 305.394531 204.222656 307.828125 204.222656 307.828125 205.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.734375 202.371094 C 301.734375 203.992188 299.304688 203.992188 299.304688 202.371094 C 299.304688 200.753906 301.734375 200.753906 301.734375 202.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.0625 239.804688 C 313.0625 241.421875 310.632812 241.421875 310.632812 239.804688 C 310.632812 238.183594 313.0625 238.183594 313.0625 239.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.429688 123.511719 C 283.429688 125.128906 281 125.128906 281 123.511719 C 281 121.890625 283.429688 121.890625 283.429688 123.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.953125 105.058594 C 295.953125 106.679688 293.523438 106.679688 293.523438 105.058594 C 293.523438 103.441406 295.953125 103.441406 295.953125 105.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.910156 200.335938 C 268.910156 201.953125 266.480469 201.953125 266.480469 200.335938 C 266.480469 198.714844 268.910156 198.714844 268.910156 200.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.25 369.457031 C 289.25 371.078125 286.820312 371.078125 286.820312 369.457031 C 286.820312 367.839844 289.25 367.839844 289.25 369.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.429688 70.910156 L 230.066406 73.746094 L 226.792969 73.746094 Z M 228.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.335938 165.398438 C 235.335938 167.019531 232.90625 167.019531 232.90625 165.398438 C 232.90625 163.78125 235.335938 163.78125 235.335938 165.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.207031 187.855469 C 235.207031 189.476562 232.777344 189.476562 232.777344 187.855469 C 232.777344 186.234375 235.207031 186.234375 235.207031 187.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.269531 245.996094 C 139.269531 247.617188 136.839844 247.617188 136.839844 245.996094 C 136.839844 244.378906 139.269531 244.378906 139.269531 245.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.867188 299.292969 C 251.867188 300.910156 249.433594 300.910156 249.433594 299.292969 C 249.433594 297.671875 251.867188 297.671875 251.867188 299.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.363281 70.910156 L 307 73.746094 L 303.726562 73.746094 Z M 305.363281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.082031 70.910156 L 342.71875 73.746094 L 339.445312 73.746094 Z M 341.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.824219 209.890625 C 258.824219 211.511719 256.394531 211.511719 256.394531 209.890625 C 256.394531 208.269531 258.824219 208.269531 258.824219 209.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.445312 281.675781 C 306.445312 283.296875 304.015625 283.296875 304.015625 281.675781 C 304.015625 280.054688 306.445312 280.054688 306.445312 281.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.703125 177.472656 C 274.703125 179.09375 272.273438 179.09375 272.273438 177.472656 C 272.273438 175.855469 274.703125 175.855469 274.703125 177.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.902344 231.75 C 228.902344 233.371094 226.472656 233.371094 226.472656 231.75 C 226.472656 230.132812 228.902344 230.132812 228.902344 231.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.070312 70.910156 L 183.707031 73.746094 L 180.433594 73.746094 Z M 182.070312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.089844 70.910156 L 248.726562 73.746094 L 245.453125 73.746094 Z M 247.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.445312 295.625 C 299.445312 297.242188 297.015625 297.242188 297.015625 295.625 C 297.015625 294.003906 299.445312 294.003906 299.445312 295.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.621094 246.976562 C 260.621094 248.59375 258.191406 248.59375 258.191406 246.976562 C 258.191406 245.355469 260.621094 245.355469 260.621094 246.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.097656 264.894531 C 261.097656 266.511719 258.667969 266.511719 258.667969 264.894531 C 258.667969 263.273438 261.097656 263.273438 261.097656 264.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.367188 173.402344 C 244.367188 175.023438 241.9375 175.023438 241.9375 173.402344 C 241.9375 171.785156 244.367188 171.785156 244.367188 173.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.765625 113.855469 C 221.765625 115.476562 219.335938 115.476562 219.335938 113.855469 C 219.335938 112.238281 221.765625 112.238281 221.765625 113.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.105469 211.65625 C 279.105469 213.277344 276.671875 213.277344 276.671875 211.65625 C 276.671875 210.035156 279.105469 210.035156 279.105469 211.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.710938 232.738281 C 296.710938 234.359375 294.28125 234.359375 294.28125 232.738281 C 294.28125 231.117188 296.710938 231.117188 296.710938 232.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.667969 301.21875 C 236.667969 302.835938 234.234375 302.835938 234.234375 301.21875 C 234.234375 299.597656 236.667969 299.597656 236.667969 301.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.910156 294.332031 C 189.910156 295.949219 187.480469 295.949219 187.480469 294.332031 C 187.480469 292.710938 189.910156 292.710938 189.910156 294.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.859375 241.109375 C 248.859375 242.726562 246.429688 242.726562 246.429688 241.109375 C 246.429688 239.488281 248.859375 239.488281 248.859375 241.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.101562 363.824219 C 168.101562 365.445312 165.671875 365.445312 165.671875 363.824219 C 165.671875 362.207031 168.101562 362.207031 168.101562 363.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.859375 272.570312 C 262.859375 274.191406 260.429688 274.191406 260.429688 272.570312 C 260.429688 270.949219 262.859375 270.949219 262.859375 272.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.726562 70.910156 L 153.359375 73.746094 L 150.089844 73.746094 Z M 151.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.914062 243.691406 C 243.914062 245.3125 241.484375 245.3125 241.484375 243.691406 C 241.484375 242.074219 243.914062 242.074219 243.914062 243.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.101562 306.742188 C 274.101562 308.363281 271.671875 308.363281 271.671875 306.742188 C 271.671875 305.125 274.101562 305.125 274.101562 306.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.394531 258.371094 C 227.394531 259.988281 224.964844 259.988281 224.964844 258.371094 C 224.964844 256.75 227.394531 256.75 227.394531 258.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.453125 306.882812 C 301.453125 308.503906 299.019531 308.503906 299.019531 306.882812 C 299.019531 305.265625 301.453125 305.265625 301.453125 306.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.382812 249.246094 C 307.382812 250.867188 304.953125 250.867188 304.953125 249.246094 C 304.953125 247.628906 307.382812 247.628906 307.382812 249.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.609375 418.691406 L 140.246094 415.855469 L 136.972656 415.855469 Z M 138.609375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.078125 359.078125 C 314.078125 360.699219 311.648438 360.699219 311.648438 359.078125 C 311.648438 357.457031 314.078125 357.457031 314.078125 359.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.292969 318.585938 C 246.292969 320.207031 243.863281 320.207031 243.863281 318.585938 C 243.863281 316.964844 246.292969 316.964844 246.292969 318.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.566406 342.496094 C 290.566406 344.113281 288.136719 344.113281 288.136719 342.496094 C 288.136719 340.875 290.566406 340.875 290.566406 342.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.261719 245.761719 C 284.261719 247.382812 281.832031 247.382812 281.832031 245.761719 C 281.832031 244.140625 284.261719 244.140625 284.261719 245.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.257812 222.957031 C 294.257812 224.578125 291.828125 224.578125 291.828125 222.957031 C 291.828125 221.335938 294.257812 221.335938 294.257812 222.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.464844 70.910156 L 256.101562 73.746094 L 252.828125 73.746094 Z M 254.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.84375 206.871094 C 168.84375 208.492188 166.414062 208.492188 166.414062 206.871094 C 166.414062 205.25 168.84375 205.25 168.84375 206.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.308594 70.910156 L 283.945312 73.746094 L 280.671875 73.746094 Z M 282.308594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.53125 70.910156 L 148.167969 73.746094 L 144.894531 73.746094 Z M 146.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.261719 202.339844 C 249.261719 203.960938 246.832031 203.960938 246.832031 202.339844 C 246.832031 200.71875 249.261719 200.71875 249.261719 202.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.582031 70.910156 L 293.214844 73.746094 L 289.945312 73.746094 Z M 291.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.71875 70.910156 L 178.351562 73.746094 L 175.082031 73.746094 Z M 176.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.007812 282.054688 C 240.007812 283.675781 237.578125 283.675781 237.578125 282.054688 C 237.578125 280.4375 240.007812 280.4375 240.007812 282.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.925781 241.609375 C 221.925781 243.226562 219.496094 243.226562 219.496094 241.609375 C 219.496094 239.988281 221.925781 239.988281 221.925781 241.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.167969 184.296875 C 248.167969 185.914062 245.738281 185.914062 245.738281 184.296875 C 245.738281 182.675781 248.167969 182.675781 248.167969 184.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.582031 70.910156 L 293.214844 73.746094 L 289.945312 73.746094 Z M 291.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.632812 418.691406 L 316.269531 415.855469 L 312.996094 415.855469 Z M 314.632812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.613281 288.394531 C 299.613281 290.011719 297.183594 290.011719 297.183594 288.394531 C 297.183594 286.773438 299.613281 286.773438 299.613281 288.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.132812 70.910156 L 228.769531 73.746094 L 225.5 73.746094 Z M 227.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.917969 315.527344 C 136.917969 317.148438 134.488281 317.148438 134.488281 315.527344 C 134.488281 313.910156 136.917969 313.910156 136.917969 315.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 381.570312 222.609375 C 381.570312 224.230469 379.140625 224.230469 379.140625 222.609375 C 379.140625 220.988281 381.570312 220.988281 381.570312 222.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.964844 70.910156 L 136.601562 73.746094 L 133.328125 73.746094 Z M 134.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.363281 229.429688 C 290.363281 231.050781 287.933594 231.050781 287.933594 229.429688 C 287.933594 227.808594 290.363281 227.808594 290.363281 229.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.199219 269.472656 C 272.199219 271.09375 269.769531 271.09375 269.769531 269.472656 C 269.769531 267.855469 272.199219 267.855469 272.199219 269.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.179688 70.910156 L 129.816406 73.746094 L 126.542969 73.746094 Z M 128.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.054688 247.054688 C 131.054688 248.675781 128.625 248.675781 128.625 247.054688 C 128.625 245.433594 131.054688 245.433594 131.054688 247.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.167969 280.035156 C 291.167969 281.65625 288.738281 281.65625 288.738281 280.035156 C 288.738281 278.417969 291.167969 278.417969 291.167969 280.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.1875 275.53125 C 215.1875 277.152344 212.757812 277.152344 212.757812 275.53125 C 212.757812 273.910156 215.1875 273.910156 215.1875 275.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.738281 259.140625 C 237.738281 260.761719 235.308594 260.761719 235.308594 259.140625 C 235.308594 257.519531 237.738281 257.519531 237.738281 259.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.078125 278.792969 C 253.078125 280.414062 250.648438 280.414062 250.648438 278.792969 C 250.648438 277.175781 253.078125 277.175781 253.078125 278.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.046875 70.910156 L 216.683594 73.746094 L 213.410156 73.746094 Z M 215.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.664062 341.339844 C 243.664062 342.960938 241.230469 342.960938 241.230469 341.339844 C 241.230469 339.71875 243.664062 339.71875 243.664062 341.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.269531 313.191406 C 250.269531 314.8125 247.839844 314.8125 247.839844 313.191406 C 247.839844 311.574219 250.269531 311.574219 250.269531 313.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.882812 136.308594 C 253.882812 137.929688 251.453125 137.929688 251.453125 136.308594 C 251.453125 134.6875 253.882812 134.6875 253.882812 136.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.285156 70.910156 L 158.921875 73.746094 L 155.648438 73.746094 Z M 157.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.3125 222.0625 C 181.3125 223.683594 178.882812 223.683594 178.882812 222.0625 C 178.882812 220.441406 181.3125 220.441406 181.3125 222.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.648438 243.375 C 268.648438 244.992188 266.21875 244.992188 266.21875 243.375 C 266.21875 241.753906 268.648438 241.753906 268.648438 243.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.128906 262.605469 C 318.128906 264.226562 315.699219 264.226562 315.699219 262.605469 C 315.699219 260.984375 318.128906 260.984375 318.128906 262.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.164062 334.433594 C 208.164062 336.054688 205.734375 336.054688 205.734375 334.433594 C 205.734375 332.816406 208.164062 332.816406 208.164062 334.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.273438 285.707031 C 310.273438 287.328125 307.84375 287.328125 307.84375 285.707031 C 307.84375 284.089844 310.273438 284.089844 310.273438 285.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.886719 86.523438 C 199.886719 88.144531 197.457031 88.144531 197.457031 86.523438 C 197.457031 84.902344 199.886719 84.902344 199.886719 86.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.539062 192.410156 C 250.539062 194.03125 248.109375 194.03125 248.109375 192.410156 C 248.109375 190.789062 250.539062 190.789062 250.539062 192.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.726562 282.171875 C 261.726562 283.789062 259.292969 283.789062 259.292969 282.171875 C 259.292969 280.550781 261.726562 280.550781 261.726562 282.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.160156 319.09375 C 256.160156 320.714844 253.730469 320.714844 253.730469 319.09375 C 253.730469 317.476562 256.160156 317.476562 256.160156 319.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.558594 181.285156 C 257.558594 182.902344 255.128906 182.902344 255.128906 181.285156 C 255.128906 179.664062 257.558594 179.664062 257.558594 181.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.203125 70.910156 L 161.839844 73.746094 L 158.566406 73.746094 Z M 160.203125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.019531 70.910156 L 209.65625 73.746094 L 206.386719 73.746094 Z M 208.019531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.1875 70.910156 L 184.824219 73.746094 L 181.550781 73.746094 Z M 183.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.425781 277.367188 C 255.425781 278.988281 252.996094 278.988281 252.996094 277.367188 C 252.996094 275.75 255.425781 275.75 255.425781 277.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.402344 203.113281 C 244.402344 204.730469 241.972656 204.730469 241.972656 203.113281 C 241.972656 201.492188 244.402344 201.492188 244.402344 203.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.023438 70.910156 L 148.660156 73.746094 L 145.386719 73.746094 Z M 147.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.300781 70.910156 L 299.9375 73.746094 L 296.664062 73.746094 Z M 298.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.199219 221.339844 C 317.199219 222.960938 314.769531 222.960938 314.769531 221.339844 C 314.769531 219.71875 317.199219 219.71875 317.199219 221.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.304688 70.910156 L 160.9375 73.746094 L 157.667969 73.746094 Z M 159.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.410156 188.882812 C 210.410156 190.5 207.980469 190.5 207.980469 188.882812 C 207.980469 187.261719 210.410156 187.261719 210.410156 188.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.695312 255.0625 C 194.695312 256.683594 192.265625 256.683594 192.265625 255.0625 C 192.265625 253.445312 194.695312 253.445312 194.695312 255.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.703125 306.269531 C 301.703125 307.890625 299.273438 307.890625 299.273438 306.269531 C 299.273438 304.648438 301.703125 304.648438 301.703125 306.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.753906 183.242188 C 170.753906 184.859375 168.324219 184.859375 168.324219 183.242188 C 168.324219 181.621094 170.753906 181.621094 170.753906 183.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.675781 95.109375 C 309.675781 96.730469 307.246094 96.730469 307.246094 95.109375 C 307.246094 93.492188 309.675781 93.492188 309.675781 95.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.039062 200.074219 C 288.039062 201.695312 285.609375 201.695312 285.609375 200.074219 C 285.609375 198.453125 288.039062 198.453125 288.039062 200.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.257812 236.972656 C 298.257812 238.59375 295.828125 238.59375 295.828125 236.972656 C 295.828125 235.351562 298.257812 235.351562 298.257812 236.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.699219 221.113281 C 212.699219 222.734375 210.269531 222.734375 210.269531 221.113281 C 210.269531 219.492188 212.699219 219.492188 212.699219 221.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.019531 243.929688 C 322.019531 245.546875 319.589844 245.546875 319.589844 243.929688 C 319.589844 242.308594 322.019531 242.308594 322.019531 243.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.914062 230.492188 C 310.914062 232.113281 308.484375 232.113281 308.484375 230.492188 C 308.484375 228.875 310.914062 228.875 310.914062 230.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.527344 418.691406 L 171.164062 415.855469 L 167.890625 415.855469 Z M 169.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.03125 196.636719 C 295.03125 198.257812 292.601562 198.257812 292.601562 196.636719 C 292.601562 195.019531 295.03125 195.019531 295.03125 196.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.230469 82.929688 C 167.230469 84.550781 164.800781 84.550781 164.800781 82.929688 C 164.800781 81.308594 167.230469 81.308594 167.230469 82.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.332031 70.910156 L 201.964844 73.746094 L 198.695312 73.746094 Z M 200.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.085938 418.691406 L 258.722656 415.855469 L 255.449219 415.855469 Z M 257.085938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.34375 408.839844 C 225.34375 410.460938 222.914062 410.460938 222.914062 408.839844 C 222.914062 407.21875 225.34375 407.21875 225.34375 408.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 187.609375 394.46875 C 187.609375 396.089844 185.179688 396.089844 185.179688 394.46875 C 185.179688 392.847656 187.609375 392.847656 187.609375 394.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.675781 257.25 C 259.675781 258.871094 257.246094 258.871094 257.246094 257.25 C 257.246094 255.628906 259.675781 255.628906 259.675781 257.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.933594 70.910156 L 214.566406 73.746094 L 211.296875 73.746094 Z M 212.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.597656 198.738281 C 238.597656 200.359375 236.164062 200.359375 236.164062 198.738281 C 236.164062 197.117188 238.597656 197.117188 238.597656 198.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.734375 70.910156 L 222.371094 73.746094 L 219.101562 73.746094 Z M 220.734375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.816406 70.910156 L 128.453125 73.746094 L 125.183594 73.746094 Z M 126.816406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.871094 70.910156 L 171.507812 73.746094 L 168.234375 73.746094 Z M 169.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.671875 233.464844 C 218.671875 235.085938 216.242188 235.085938 216.242188 233.464844 C 216.242188 231.84375 218.671875 231.84375 218.671875 233.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.390625 70.910156 L 182.027344 73.746094 L 178.753906 73.746094 Z M 180.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.476562 315.371094 C 233.476562 316.988281 231.046875 316.988281 231.046875 315.371094 C 231.046875 313.75 233.476562 313.75 233.476562 315.371094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.121094 155.429688 C 113.121094 157.046875 110.691406 157.046875 110.691406 155.429688 C 110.691406 153.808594 113.121094 153.808594 113.121094 155.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.582031 70.910156 L 298.21875 73.746094 L 294.945312 73.746094 Z M 296.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.347656 269.636719 C 275.347656 271.257812 272.917969 271.257812 272.917969 269.636719 C 272.917969 268.015625 275.347656 268.015625 275.347656 269.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.574219 286.15625 C 327.574219 287.773438 325.144531 287.773438 325.144531 286.15625 C 325.144531 284.535156 327.574219 284.535156 327.574219 286.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.976562 70.910156 L 184.613281 73.746094 L 181.339844 73.746094 Z M 182.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.851562 197.976562 C 224.851562 199.597656 222.421875 199.597656 222.421875 197.976562 C 222.421875 196.359375 224.851562 196.359375 224.851562 197.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.117188 70.910156 L 197.753906 73.746094 L 194.480469 73.746094 Z M 196.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.457031 162.203125 C 185.457031 163.824219 183.027344 163.824219 183.027344 162.203125 C 183.027344 160.585938 185.457031 160.585938 185.457031 162.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.640625 226.980469 C 321.640625 228.601562 319.207031 228.601562 319.207031 226.980469 C 319.207031 225.359375 321.640625 225.359375 321.640625 226.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.761719 295.730469 C 298.761719 297.351562 296.332031 297.351562 296.332031 295.730469 C 296.332031 294.109375 298.761719 294.109375 298.761719 295.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.527344 181.105469 C 282.527344 182.722656 280.097656 182.722656 280.097656 181.105469 C 280.097656 179.484375 282.527344 179.484375 282.527344 181.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.382812 70.910156 L 177.019531 73.746094 L 173.746094 73.746094 Z M 175.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.921875 78.292969 C 236.921875 79.914062 234.492188 79.914062 234.492188 78.292969 C 234.492188 76.675781 236.921875 76.675781 236.921875 78.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.625 142.917969 C 166.625 144.539062 164.195312 144.539062 164.195312 142.917969 C 164.195312 141.300781 166.625 141.300781 166.625 142.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 353.675781 310.53125 C 353.675781 312.152344 351.246094 312.152344 351.246094 310.53125 C 351.246094 308.914062 353.675781 308.914062 353.675781 310.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.378906 292.578125 C 286.378906 294.199219 283.949219 294.199219 283.949219 292.578125 C 283.949219 290.960938 286.378906 290.960938 286.378906 292.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.457031 70.910156 L 278.09375 73.746094 L 274.820312 73.746094 Z M 276.457031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.414062 70.910156 L 129.050781 73.746094 L 125.777344 73.746094 Z M 127.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.574219 138.144531 C 233.574219 139.765625 231.144531 139.765625 231.144531 138.144531 C 231.144531 136.527344 233.574219 136.527344 233.574219 138.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.023438 221.679688 C 264.023438 223.296875 261.59375 223.296875 261.59375 221.679688 C 261.59375 220.058594 264.023438 220.058594 264.023438 221.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.097656 385.433594 C 325.097656 387.054688 322.667969 387.054688 322.667969 385.433594 C 322.667969 383.816406 325.097656 383.816406 325.097656 385.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.898438 276.214844 C 280.898438 277.835938 278.46875 277.835938 278.46875 276.214844 C 278.46875 274.59375 280.898438 274.59375 280.898438 276.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.710938 268.832031 C 270.710938 270.453125 268.28125 270.453125 268.28125 268.832031 C 268.28125 267.210938 270.710938 267.210938 270.710938 268.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.011719 205.902344 C 241.011719 207.523438 238.582031 207.523438 238.582031 205.902344 C 238.582031 204.28125 241.011719 204.28125 241.011719 205.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.027344 70.910156 L 134.664062 73.746094 L 131.390625 73.746094 Z M 133.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.28125 174.914062 C 260.28125 176.535156 257.851562 176.535156 257.851562 174.914062 C 257.851562 173.296875 260.28125 173.296875 260.28125 174.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.199219 249.878906 C 315.199219 251.5 312.769531 251.5 312.769531 249.878906 C 312.769531 248.257812 315.199219 248.257812 315.199219 249.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.292969 70.910156 L 129.925781 73.746094 L 126.65625 73.746094 Z M 128.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.914062 183.058594 C 221.914062 184.679688 219.484375 184.679688 219.484375 183.058594 C 219.484375 181.441406 221.914062 181.441406 221.914062 183.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.160156 239.308594 C 249.160156 240.929688 246.730469 240.929688 246.730469 239.308594 C 246.730469 237.691406 249.160156 237.691406 249.160156 239.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.054688 204.699219 C 293.054688 206.320312 290.625 206.320312 290.625 204.699219 C 290.625 203.082031 293.054688 203.082031 293.054688 204.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.792969 114.097656 C 149.792969 115.714844 147.363281 115.714844 147.363281 114.097656 C 147.363281 112.476562 149.792969 112.476562 149.792969 114.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.886719 198.320312 C 316.886719 199.941406 314.457031 199.941406 314.457031 198.320312 C 314.457031 196.703125 316.886719 196.703125 316.886719 198.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.097656 241.515625 C 295.097656 243.136719 292.667969 243.136719 292.667969 241.515625 C 292.667969 239.894531 295.097656 239.894531 295.097656 241.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.730469 176.433594 C 281.730469 178.054688 279.300781 178.054688 279.300781 176.433594 C 279.300781 174.816406 281.730469 174.816406 281.730469 176.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.957031 246.292969 C 266.957031 247.914062 264.527344 247.914062 264.527344 246.292969 C 264.527344 244.671875 266.957031 244.671875 266.957031 246.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.75 280.429688 C 287.75 282.050781 285.320312 282.050781 285.320312 280.429688 C 285.320312 278.808594 287.75 278.808594 287.75 280.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.125 243.105469 C 295.125 244.726562 292.695312 244.726562 292.695312 243.105469 C 292.695312 241.484375 295.125 241.484375 295.125 243.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.980469 141 C 115.980469 142.621094 113.550781 142.621094 113.550781 141 C 113.550781 139.378906 115.980469 139.378906 115.980469 141 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.472656 253.789062 C 288.472656 255.410156 286.042969 255.410156 286.042969 253.789062 C 286.042969 252.171875 288.472656 252.171875 288.472656 253.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.117188 354.921875 C 263.117188 356.542969 260.6875 356.542969 260.6875 354.921875 C 260.6875 353.300781 263.117188 353.300781 263.117188 354.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.734375 116.078125 C 269.734375 117.699219 267.304688 117.699219 267.304688 116.078125 C 267.304688 114.457031 269.734375 114.457031 269.734375 116.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.074219 241.058594 C 276.074219 242.675781 273.644531 242.675781 273.644531 241.058594 C 273.644531 239.4375 276.074219 239.4375 276.074219 241.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.070312 288.449219 C 286.070312 290.066406 283.640625 290.066406 283.640625 288.449219 C 283.640625 286.828125 286.070312 286.828125 286.070312 288.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.046875 243.5625 C 182.046875 245.179688 179.617188 245.179688 179.617188 243.5625 C 179.617188 241.941406 182.046875 241.941406 182.046875 243.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.199219 70.910156 L 229.835938 73.746094 L 226.566406 73.746094 Z M 228.199219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.945312 262.441406 C 262.945312 264.0625 260.515625 264.0625 260.515625 262.441406 C 260.515625 260.824219 262.945312 260.824219 262.945312 262.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.308594 70.910156 L 225.945312 73.746094 L 222.671875 73.746094 Z M 224.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.050781 211.570312 C 243.050781 213.191406 240.621094 213.191406 240.621094 211.570312 C 240.621094 209.953125 243.050781 209.953125 243.050781 211.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.644531 254.777344 C 297.644531 256.398438 295.210938 256.398438 295.210938 254.777344 C 295.210938 253.160156 297.644531 253.160156 297.644531 254.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.144531 193.507812 C 233.144531 195.128906 230.714844 195.128906 230.714844 193.507812 C 230.714844 191.886719 233.144531 191.886719 233.144531 193.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.304688 196.4375 C 244.304688 198.054688 241.875 198.054688 241.875 196.4375 C 241.875 194.816406 244.304688 194.816406 244.304688 196.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.550781 249.359375 C 215.550781 250.980469 213.117188 250.980469 213.117188 249.359375 C 213.117188 247.742188 215.550781 247.742188 215.550781 249.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.722656 203.382812 C 261.722656 205.003906 259.292969 205.003906 259.292969 203.382812 C 259.292969 201.765625 261.722656 201.765625 261.722656 203.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.0625 279.390625 C 289.0625 281.007812 286.632812 281.007812 286.632812 279.390625 C 286.632812 277.769531 289.0625 277.769531 289.0625 279.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.179688 185.25 C 182.179688 186.871094 179.75 186.871094 179.75 185.25 C 179.75 183.628906 182.179688 183.628906 182.179688 185.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.765625 115.089844 C 300.765625 116.710938 298.335938 116.710938 298.335938 115.089844 C 298.335938 113.46875 300.765625 113.46875 300.765625 115.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.199219 224.5 C 317.199219 226.121094 314.769531 226.121094 314.769531 224.5 C 314.769531 222.882812 317.199219 222.882812 317.199219 224.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.183594 307.28125 C 209.183594 308.898438 206.753906 308.898438 206.753906 307.28125 C 206.753906 305.660156 209.183594 305.660156 209.183594 307.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.234375 280.59375 C 248.234375 282.214844 245.804688 282.214844 245.804688 280.59375 C 245.804688 278.972656 248.234375 278.972656 248.234375 280.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.039062 249.863281 C 268.039062 251.484375 265.609375 251.484375 265.609375 249.863281 C 265.609375 248.242188 268.039062 248.242188 268.039062 249.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.453125 157.171875 C 187.453125 158.792969 185.023438 158.792969 185.023438 157.171875 C 185.023438 155.554688 187.453125 155.554688 187.453125 157.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.707031 361.171875 C 277.707031 362.792969 275.277344 362.792969 275.277344 361.171875 C 275.277344 359.550781 277.707031 359.550781 277.707031 361.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.390625 356.441406 C 195.390625 358.0625 192.960938 358.0625 192.960938 356.441406 C 192.960938 354.820312 195.390625 354.820312 195.390625 356.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.160156 418.691406 L 188.796875 415.855469 L 185.523438 415.855469 Z M 187.160156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.425781 283.273438 C 251.425781 284.894531 248.996094 284.894531 248.996094 283.273438 C 248.996094 281.65625 251.425781 281.65625 251.425781 283.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.96875 202.742188 C 315.96875 204.363281 313.539062 204.363281 313.539062 202.742188 C 313.539062 201.125 315.96875 201.125 315.96875 202.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.734375 298.777344 C 253.734375 300.398438 251.304688 300.398438 251.304688 298.777344 C 251.304688 297.15625 253.734375 297.15625 253.734375 298.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.628906 246.636719 C 319.628906 248.253906 317.199219 248.253906 317.199219 246.636719 C 317.199219 245.015625 319.628906 245.015625 319.628906 246.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.734375 231.050781 C 196.734375 232.671875 194.304688 232.671875 194.304688 231.050781 C 194.304688 229.429688 196.734375 229.429688 196.734375 231.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.738281 256.058594 C 282.738281 257.679688 280.308594 257.679688 280.308594 256.058594 C 280.308594 254.441406 282.738281 254.441406 282.738281 256.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.882812 272.390625 C 283.882812 274.011719 281.453125 274.011719 281.453125 272.390625 C 281.453125 270.773438 283.882812 270.773438 283.882812 272.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.058594 381.394531 C 337.058594 383.015625 334.628906 383.015625 334.628906 381.394531 C 334.628906 379.773438 337.058594 379.773438 337.058594 381.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.769531 278.386719 C 261.769531 280.003906 259.339844 280.003906 259.339844 278.386719 C 259.339844 276.765625 261.769531 276.765625 261.769531 278.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.65625 224.132812 C 260.65625 225.75 258.222656 225.75 258.222656 224.132812 C 258.222656 222.511719 260.65625 222.511719 260.65625 224.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.734375 264.648438 C 280.734375 266.269531 278.300781 266.269531 278.300781 264.648438 C 278.300781 263.03125 280.734375 263.03125 280.734375 264.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.320312 275.179688 C 249.320312 276.796875 246.890625 276.796875 246.890625 275.179688 C 246.890625 273.558594 249.320312 273.558594 249.320312 275.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.695312 239.972656 C 299.695312 241.59375 297.265625 241.59375 297.265625 239.972656 C 297.265625 238.351562 299.695312 238.351562 299.695312 239.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.664062 341.941406 C 294.664062 343.5625 292.234375 343.5625 292.234375 341.941406 C 292.234375 340.320312 294.664062 340.320312 294.664062 341.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.757812 223.050781 C 211.757812 224.671875 209.328125 224.671875 209.328125 223.050781 C 209.328125 221.429688 211.757812 221.429688 211.757812 223.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.175781 105.761719 C 212.175781 107.382812 209.746094 107.382812 209.746094 105.761719 C 209.746094 104.140625 212.175781 104.140625 212.175781 105.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.183594 241.503906 C 248.183594 243.125 245.753906 243.125 245.753906 241.503906 C 245.753906 239.886719 248.183594 239.886719 248.183594 241.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.585938 258.953125 C 242.585938 260.574219 240.15625 260.574219 240.15625 258.953125 C 240.15625 257.335938 242.585938 257.335938 242.585938 258.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.988281 167.773438 C 235.988281 169.394531 233.558594 169.394531 233.558594 167.773438 C 233.558594 166.152344 235.988281 166.152344 235.988281 167.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.324219 208.582031 C 281.324219 210.203125 278.894531 210.203125 278.894531 208.582031 C 278.894531 206.964844 281.324219 206.964844 281.324219 208.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.886719 93.148438 C 232.886719 94.769531 230.457031 94.769531 230.457031 93.148438 C 230.457031 91.53125 232.886719 91.53125 232.886719 93.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.636719 258.324219 C 248.636719 259.945312 246.207031 259.945312 246.207031 258.324219 C 246.207031 256.703125 248.636719 256.703125 248.636719 258.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.746094 114.617188 C 146.746094 116.238281 144.316406 116.238281 144.316406 114.617188 C 144.316406 112.996094 146.746094 112.996094 146.746094 114.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.855469 281.03125 C 234.855469 282.652344 232.425781 282.652344 232.425781 281.03125 C 232.425781 279.410156 234.855469 279.410156 234.855469 281.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.785156 273.28125 C 279.785156 274.898438 277.351562 274.898438 277.351562 273.28125 C 277.351562 271.660156 279.785156 271.660156 279.785156 273.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.660156 309.070312 C 275.660156 310.691406 273.230469 310.691406 273.230469 309.070312 C 273.230469 307.453125 275.660156 307.453125 275.660156 309.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.753906 250.058594 C 281.753906 251.679688 279.324219 251.679688 279.324219 250.058594 C 279.324219 248.441406 281.753906 248.441406 281.753906 250.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.121094 70.910156 L 159.757812 73.746094 L 156.488281 73.746094 Z M 158.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.003906 229.695312 C 205.003906 231.3125 202.574219 231.3125 202.574219 229.695312 C 202.574219 228.074219 205.003906 228.074219 205.003906 229.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.667969 152.949219 C 237.667969 154.570312 235.238281 154.570312 235.238281 152.949219 C 235.238281 151.328125 237.667969 151.328125 237.667969 152.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.539062 70.910156 L 285.175781 73.746094 L 281.902344 73.746094 Z M 283.539062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.554688 70.910156 L 178.191406 73.746094 L 174.921875 73.746094 Z M 176.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.703125 213.164062 C 290.703125 214.785156 288.273438 214.785156 288.273438 213.164062 C 288.273438 211.542969 290.703125 211.542969 290.703125 213.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.167969 246.832031 C 312.167969 248.453125 309.738281 248.453125 309.738281 246.832031 C 309.738281 245.214844 312.167969 245.214844 312.167969 246.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.148438 211.976562 C 238.148438 213.59375 235.71875 213.59375 235.71875 211.976562 C 235.71875 210.355469 238.148438 210.355469 238.148438 211.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.582031 336.007812 C 255.582031 337.628906 253.152344 337.628906 253.152344 336.007812 C 253.152344 334.390625 255.582031 334.390625 255.582031 336.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.613281 185.289062 C 245.613281 186.910156 243.183594 186.910156 243.183594 185.289062 C 243.183594 183.667969 245.613281 183.667969 245.613281 185.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.421875 70.910156 L 160.058594 73.746094 L 156.785156 73.746094 Z M 158.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.195312 203.839844 C 276.195312 205.460938 273.765625 205.460938 273.765625 203.839844 C 273.765625 202.21875 276.195312 202.21875 276.195312 203.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.742188 291.148438 C 258.742188 292.765625 256.3125 292.765625 256.3125 291.148438 C 256.3125 289.527344 258.742188 289.527344 258.742188 291.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.625 151.785156 C 313.625 153.402344 311.195312 153.402344 311.195312 151.785156 C 311.195312 150.164062 313.625 150.164062 313.625 151.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.773438 262.445312 C 305.773438 264.0625 303.34375 264.0625 303.34375 262.445312 C 303.34375 260.824219 305.773438 260.824219 305.773438 262.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.429688 334.914062 C 287.429688 336.535156 285 336.535156 285 334.914062 C 285 333.296875 287.429688 333.296875 287.429688 334.914062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.691406 70.910156 L 242.328125 73.746094 L 239.054688 73.746094 Z M 240.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.78125 265.832031 C 294.78125 267.453125 292.351562 267.453125 292.351562 265.832031 C 292.351562 264.214844 294.78125 264.214844 294.78125 265.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.785156 293.703125 C 306.785156 295.320312 304.355469 295.320312 304.355469 293.703125 C 304.355469 292.082031 306.785156 292.082031 306.785156 293.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.667969 215.699219 C 287.667969 217.316406 285.238281 217.316406 285.238281 215.699219 C 285.238281 214.078125 287.667969 214.078125 287.667969 215.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.234375 202.203125 C 270.234375 203.824219 267.804688 203.824219 267.804688 202.203125 C 267.804688 200.585938 270.234375 200.585938 270.234375 202.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.671875 229.671875 C 211.671875 231.289062 209.242188 231.289062 209.242188 229.671875 C 209.242188 228.050781 211.671875 228.050781 211.671875 229.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.277344 217.359375 C 262.277344 218.980469 259.847656 218.980469 259.847656 217.359375 C 259.847656 215.742188 262.277344 215.742188 262.277344 217.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.945312 70.910156 L 269.578125 73.746094 L 266.308594 73.746094 Z M 267.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.40625 161.222656 C 192.40625 162.84375 189.972656 162.84375 189.972656 161.222656 C 189.972656 159.605469 192.40625 159.605469 192.40625 161.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.890625 164.949219 C 172.890625 166.566406 170.460938 166.566406 170.460938 164.949219 C 170.460938 163.328125 172.890625 163.328125 172.890625 164.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.699219 182.746094 C 246.699219 184.367188 244.269531 184.367188 244.269531 182.746094 C 244.269531 181.125 246.699219 181.125 246.699219 182.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.921875 169.210938 C 163.921875 170.832031 161.492188 170.832031 161.492188 169.210938 C 161.492188 167.589844 163.921875 167.589844 163.921875 169.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.527344 215.949219 C 247.527344 217.570312 245.097656 217.570312 245.097656 215.949219 C 245.097656 214.332031 247.527344 214.332031 247.527344 215.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.449219 236.25 C 292.449219 237.871094 290.019531 237.871094 290.019531 236.25 C 290.019531 234.632812 292.449219 234.632812 292.449219 236.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.800781 257.75 C 266.800781 259.371094 264.371094 259.371094 264.371094 257.75 C 264.371094 256.128906 266.800781 256.128906 266.800781 257.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.761719 230.949219 C 288.761719 232.570312 286.332031 232.570312 286.332031 230.949219 C 286.332031 229.332031 288.761719 229.332031 288.761719 230.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.492188 273.007812 C 278.492188 274.628906 276.0625 274.628906 276.0625 273.007812 C 276.0625 271.390625 278.492188 271.390625 278.492188 273.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.507812 218.75 C 291.507812 220.367188 289.078125 220.367188 289.078125 218.75 C 289.078125 217.128906 291.507812 217.128906 291.507812 218.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.597656 240.90625 C 281.597656 242.523438 279.167969 242.523438 279.167969 240.90625 C 279.167969 239.285156 281.597656 239.285156 281.597656 240.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.839844 70.910156 L 116.476562 73.746094 L 113.203125 73.746094 Z M 114.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.5625 255.121094 C 290.5625 256.738281 288.132812 256.738281 288.132812 255.121094 C 288.132812 253.5 290.5625 253.5 290.5625 255.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.246094 418.691406 L 261.882812 415.855469 L 258.609375 415.855469 Z M 260.246094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.070312 244.21875 C 305.070312 245.839844 302.640625 245.839844 302.640625 244.21875 C 302.640625 242.597656 305.070312 242.597656 305.070312 244.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.417969 222.871094 C 197.417969 224.488281 194.988281 224.488281 194.988281 222.871094 C 194.988281 221.25 197.417969 221.25 197.417969 222.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.992188 222.070312 C 238.992188 223.691406 236.5625 223.691406 236.5625 222.070312 C 236.5625 220.449219 238.992188 220.449219 238.992188 222.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.066406 129.800781 C 265.066406 131.421875 262.636719 131.421875 262.636719 129.800781 C 262.636719 128.179688 265.066406 128.179688 265.066406 129.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5 70.910156 L 264.136719 73.746094 L 260.863281 73.746094 Z M 262.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.457031 271.359375 C 308.457031 272.976562 306.027344 272.976562 306.027344 271.359375 C 306.027344 269.738281 308.457031 269.738281 308.457031 271.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.527344 196.234375 C 318.527344 197.855469 316.097656 197.855469 316.097656 196.234375 C 316.097656 194.617188 318.527344 194.617188 318.527344 196.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.613281 227.648438 C 313.613281 229.269531 311.183594 229.269531 311.183594 227.648438 C 311.183594 226.03125 313.613281 226.03125 313.613281 227.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.308594 219.601562 C 141.308594 221.222656 138.878906 221.222656 138.878906 219.601562 C 138.878906 217.980469 141.308594 217.980469 141.308594 219.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.199219 297.722656 C 290.199219 299.339844 287.769531 299.339844 287.769531 297.722656 C 287.769531 296.101562 290.199219 296.101562 290.199219 297.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.800781 294.972656 C 250.800781 296.59375 248.367188 296.59375 248.367188 294.972656 C 248.367188 293.351562 250.800781 293.351562 250.800781 294.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.648438 242.496094 C 265.648438 244.117188 263.21875 244.117188 263.21875 242.496094 C 263.21875 240.875 265.648438 240.875 265.648438 242.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 365.363281 295.5625 C 365.363281 297.183594 362.933594 297.183594 362.933594 295.5625 C 362.933594 293.941406 365.363281 293.941406 365.363281 295.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.214844 265.027344 C 288.214844 266.644531 285.785156 266.644531 285.785156 265.027344 C 285.785156 263.40625 288.214844 263.40625 288.214844 265.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.710938 184.027344 C 281.710938 185.648438 279.28125 185.648438 279.28125 184.027344 C 279.28125 182.40625 281.710938 182.40625 281.710938 184.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.8125 212.707031 C 193.8125 214.328125 191.382812 214.328125 191.382812 212.707031 C 191.382812 211.085938 193.8125 211.085938 193.8125 212.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.652344 70.910156 L 206.289062 73.746094 L 203.015625 73.746094 Z M 204.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.324219 236.515625 C 268.324219 238.136719 265.894531 238.136719 265.894531 236.515625 C 265.894531 234.894531 268.324219 234.894531 268.324219 236.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.496094 70.910156 L 188.132812 73.746094 L 184.859375 73.746094 Z M 186.496094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.035156 70.910156 L 209.671875 73.746094 L 206.398438 73.746094 Z M 208.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.804688 110.347656 C 248.804688 111.964844 246.375 111.964844 246.375 110.347656 C 246.375 108.726562 248.804688 108.726562 248.804688 110.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.015625 70.910156 L 249.652344 73.746094 L 246.378906 73.746094 Z M 248.015625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.65625 70.910156 L 266.292969 73.746094 L 263.019531 73.746094 Z M 264.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.828125 300.824219 C 330.828125 302.445312 328.398438 302.445312 328.398438 300.824219 C 328.398438 299.203125 330.828125 299.203125 330.828125 300.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.625 387.222656 C 320.625 388.839844 318.195312 388.839844 318.195312 387.222656 C 318.195312 385.601562 320.625 385.601562 320.625 387.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.203125 335.960938 C 292.203125 337.582031 289.773438 337.582031 289.773438 335.960938 C 289.773438 334.34375 292.203125 334.34375 292.203125 335.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.679688 294.566406 C 269.679688 296.1875 267.25 296.1875 267.25 294.566406 C 267.25 292.945312 269.679688 292.945312 269.679688 294.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.640625 364.996094 C 143.640625 366.613281 141.210938 366.613281 141.210938 364.996094 C 141.210938 363.375 143.640625 363.375 143.640625 364.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.648438 70.910156 L 215.285156 73.746094 L 212.011719 73.746094 Z M 213.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.398438 137.5625 C 158.398438 139.183594 155.96875 139.183594 155.96875 137.5625 C 155.96875 135.941406 158.398438 135.941406 158.398438 137.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.007812 255.5 C 297.007812 257.121094 294.578125 257.121094 294.578125 255.5 C 294.578125 253.878906 297.007812 253.878906 297.007812 255.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.1875 138.191406 C 315.1875 139.8125 312.757812 139.8125 312.757812 138.191406 C 312.757812 136.570312 315.1875 136.570312 315.1875 138.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.792969 96.039062 C 302.792969 97.65625 300.363281 97.65625 300.363281 96.039062 C 300.363281 94.417969 302.792969 94.417969 302.792969 96.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.882812 228.628906 C 291.882812 230.25 289.453125 230.25 289.453125 228.628906 C 289.453125 227.011719 291.882812 227.011719 291.882812 228.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.570312 201.867188 C 271.570312 203.484375 269.140625 203.484375 269.140625 201.867188 C 269.140625 200.246094 271.570312 200.246094 271.570312 201.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.09375 262.082031 C 305.09375 263.703125 302.664062 263.703125 302.664062 262.082031 C 302.664062 260.460938 305.09375 260.460938 305.09375 262.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.988281 319.328125 C 256.988281 320.945312 254.558594 320.945312 254.558594 319.328125 C 254.558594 317.707031 256.988281 317.707031 256.988281 319.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.558594 263.136719 C 282.558594 264.757812 280.128906 264.757812 280.128906 263.136719 C 280.128906 261.515625 282.558594 261.515625 282.558594 263.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.382812 70.910156 L 146.019531 73.746094 L 142.746094 73.746094 Z M 144.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.34375 70.910156 L 184.980469 73.746094 L 181.707031 73.746094 Z M 183.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.421875 382.929688 C 285.421875 384.550781 282.988281 384.550781 282.988281 382.929688 C 282.988281 381.3125 285.421875 381.3125 285.421875 382.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.816406 353.023438 C 276.816406 354.644531 274.386719 354.644531 274.386719 353.023438 C 274.386719 351.402344 276.816406 351.402344 276.816406 353.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.351562 295.65625 C 345.351562 297.273438 342.921875 297.273438 342.921875 295.65625 C 342.921875 294.035156 345.351562 294.035156 345.351562 295.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 363.480469 207.445312 C 363.480469 209.066406 361.050781 209.066406 361.050781 207.445312 C 361.050781 205.824219 363.480469 205.824219 363.480469 207.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.875 256.898438 C 261.875 258.515625 259.441406 258.515625 259.441406 256.898438 C 259.441406 255.277344 261.875 255.277344 261.875 256.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.820312 70.910156 L 286.457031 73.746094 L 283.183594 73.746094 Z M 284.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.578125 282.804688 C 293.578125 284.421875 291.148438 284.421875 291.148438 282.804688 C 291.148438 281.183594 293.578125 281.183594 293.578125 282.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.808594 199.585938 C 281.808594 201.203125 279.378906 201.203125 279.378906 199.585938 C 279.378906 197.964844 281.808594 197.964844 281.808594 199.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.792969 259.433594 C 258.792969 261.054688 256.363281 261.054688 256.363281 259.433594 C 256.363281 257.8125 258.792969 257.8125 258.792969 259.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.703125 159.351562 C 251.703125 160.972656 249.269531 160.972656 249.269531 159.351562 C 249.269531 157.734375 251.703125 157.734375 251.703125 159.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.257812 83.003906 C 153.257812 84.625 150.828125 84.625 150.828125 83.003906 C 150.828125 81.382812 153.257812 81.382812 153.257812 83.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.121094 70.910156 L 302.757812 73.746094 L 299.484375 73.746094 Z M 301.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.226562 150.519531 C 198.226562 152.136719 195.796875 152.136719 195.796875 150.519531 C 195.796875 148.898438 198.226562 148.898438 198.226562 150.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.683594 242.625 C 179.683594 244.246094 177.253906 244.246094 177.253906 242.625 C 177.253906 241.003906 179.683594 241.003906 179.683594 242.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.035156 245.289062 C 232.035156 246.910156 229.605469 246.910156 229.605469 245.289062 C 229.605469 243.667969 232.035156 243.667969 232.035156 245.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.535156 290.5625 C 287.535156 292.183594 285.105469 292.183594 285.105469 290.5625 C 285.105469 288.945312 287.535156 288.945312 287.535156 290.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.152344 309.792969 C 317.152344 311.414062 314.722656 311.414062 314.722656 309.792969 C 314.722656 308.171875 317.152344 308.171875 317.152344 309.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.195312 330.417969 C 293.195312 332.039062 290.765625 332.039062 290.765625 330.417969 C 290.765625 328.796875 293.195312 328.796875 293.195312 330.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.195312 70.910156 L 263.832031 73.746094 L 260.558594 73.746094 Z M 262.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.320312 178.246094 C 180.320312 179.867188 177.890625 179.867188 177.890625 178.246094 C 177.890625 176.628906 180.320312 176.628906 180.320312 178.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.726562 165.96875 C 226.726562 167.585938 224.296875 167.585938 224.296875 165.96875 C 224.296875 164.347656 226.726562 164.347656 226.726562 165.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.023438 150.46875 C 289.023438 152.089844 286.59375 152.089844 286.59375 150.46875 C 286.59375 148.851562 289.023438 148.851562 289.023438 150.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.210938 105.132812 C 149.210938 106.75 146.78125 106.75 146.78125 105.132812 C 146.78125 103.511719 149.210938 103.511719 149.210938 105.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.734375 211.191406 C 223.734375 212.8125 221.304688 212.8125 221.304688 211.191406 C 221.304688 209.574219 223.734375 209.574219 223.734375 211.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.167969 70.910156 L 219.804688 73.746094 L 216.53125 73.746094 Z M 218.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.105469 86.648438 C 254.105469 88.265625 251.675781 88.265625 251.675781 86.648438 C 251.675781 85.027344 254.105469 85.027344 254.105469 86.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.851562 300.109375 C 283.851562 301.730469 281.421875 301.730469 281.421875 300.109375 C 281.421875 298.488281 283.851562 298.488281 283.851562 300.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.058594 318.113281 C 232.058594 319.730469 229.628906 319.730469 229.628906 318.113281 C 229.628906 316.492188 232.058594 316.492188 232.058594 318.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.949219 352.902344 C 322.949219 354.523438 320.519531 354.523438 320.519531 352.902344 C 320.519531 351.285156 322.949219 351.285156 322.949219 352.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.292969 221.664062 C 279.292969 223.285156 276.863281 223.285156 276.863281 221.664062 C 276.863281 220.042969 279.292969 220.042969 279.292969 221.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.640625 182.277344 C 312.640625 183.898438 310.210938 183.898438 310.210938 182.277344 C 310.210938 180.65625 312.640625 180.65625 312.640625 182.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.433594 241.324219 C 256.433594 242.945312 254.003906 242.945312 254.003906 241.324219 C 254.003906 239.707031 256.433594 239.707031 256.433594 241.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.839844 241.800781 C 283.839844 243.421875 281.410156 243.421875 281.410156 241.800781 C 281.410156 240.183594 283.839844 240.183594 283.839844 241.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.632812 234.566406 C 288.632812 236.183594 286.203125 236.183594 286.203125 234.566406 C 286.203125 232.945312 288.632812 232.945312 288.632812 234.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.75 70.910156 L 173.386719 73.746094 L 170.113281 73.746094 Z M 171.75 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.027344 70.910156 L 272.664062 73.746094 L 269.394531 73.746094 Z M 271.027344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.414062 418.691406 L 139.050781 415.855469 L 135.78125 415.855469 Z M 137.414062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.53125 287.402344 C 293.53125 289.019531 291.101562 289.019531 291.101562 287.402344 C 291.101562 285.78125 293.53125 285.78125 293.53125 287.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.667969 418.691406 L 303.304688 415.855469 L 300.03125 415.855469 Z M 301.667969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.738281 200.832031 C 192.738281 202.449219 190.308594 202.449219 190.308594 200.832031 C 190.308594 199.210938 192.738281 199.210938 192.738281 200.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.136719 347.992188 C 254.136719 349.613281 251.707031 349.613281 251.707031 347.992188 C 251.707031 346.371094 254.136719 346.371094 254.136719 347.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.628906 197.941406 C 236.628906 199.5625 234.199219 199.5625 234.199219 197.941406 C 234.199219 196.320312 236.628906 196.320312 236.628906 197.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.246094 255.804688 C 176.246094 257.425781 173.816406 257.425781 173.816406 255.804688 C 173.816406 254.1875 176.246094 254.1875 176.246094 255.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.417969 291.496094 C 279.417969 293.117188 276.988281 293.117188 276.988281 291.496094 C 276.988281 289.875 279.417969 289.875 279.417969 291.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.808594 327.183594 C 162.808594 328.800781 160.378906 328.800781 160.378906 327.183594 C 160.378906 325.5625 162.808594 325.5625 162.808594 327.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.179688 259.847656 C 260.179688 261.464844 257.75 261.464844 257.75 259.847656 C 257.75 258.226562 260.179688 258.226562 260.179688 259.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.699219 418.691406 L 248.332031 415.855469 L 245.0625 415.855469 Z M 246.699219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.101562 312.542969 C 262.101562 314.164062 259.671875 314.164062 259.671875 312.542969 C 259.671875 310.925781 262.101562 310.925781 262.101562 312.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.207031 70.910156 L 135.84375 73.746094 L 132.570312 73.746094 Z M 134.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.359375 237.089844 C 234.359375 238.710938 231.925781 238.710938 231.925781 237.089844 C 231.925781 235.472656 234.359375 235.472656 234.359375 237.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.910156 265.613281 C 240.910156 267.234375 238.480469 267.234375 238.480469 265.613281 C 238.480469 263.992188 240.910156 263.992188 240.910156 265.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.742188 109.242188 C 138.742188 110.859375 136.3125 110.859375 136.3125 109.242188 C 136.3125 107.621094 138.742188 107.621094 138.742188 109.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.914062 70.910156 L 226.550781 73.746094 L 223.277344 73.746094 Z M 224.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.589844 70.910156 L 180.226562 73.746094 L 176.953125 73.746094 Z M 178.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.34375 345.675781 C 291.34375 347.296875 288.914062 347.296875 288.914062 345.675781 C 288.914062 344.054688 291.34375 344.054688 291.34375 345.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.324219 418.691406 L 195.957031 415.855469 L 192.6875 415.855469 Z M 194.324219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.574219 235.003906 C 267.574219 236.625 265.140625 236.625 265.140625 235.003906 C 265.140625 233.386719 267.574219 233.386719 267.574219 235.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.539062 275.984375 C 255.539062 277.601562 253.109375 277.601562 253.109375 275.984375 C 253.109375 274.363281 255.539062 274.363281 255.539062 275.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.390625 70.910156 L 236.027344 73.746094 L 232.753906 73.746094 Z M 234.390625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.882812 70.910156 L 229.519531 73.746094 L 226.246094 73.746094 Z M 227.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.667969 390.273438 C 277.667969 391.894531 275.234375 391.894531 275.234375 390.273438 C 275.234375 388.652344 277.667969 388.652344 277.667969 390.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.1875 70.910156 L 262.824219 73.746094 L 259.550781 73.746094 Z M 261.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.582031 144.269531 C 274.582031 145.890625 272.152344 145.890625 272.152344 144.269531 C 272.152344 142.652344 274.582031 142.652344 274.582031 144.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.59375 279.746094 C 296.59375 281.367188 294.164062 281.367188 294.164062 279.746094 C 294.164062 278.125 296.59375 278.125 296.59375 279.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.539062 321.550781 C 323.539062 323.167969 321.109375 323.167969 321.109375 321.550781 C 321.109375 319.929688 323.539062 319.929688 323.539062 321.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.816406 202.71875 C 299.816406 204.339844 297.386719 204.339844 297.386719 202.71875 C 297.386719 201.097656 299.816406 201.097656 299.816406 202.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.703125 257.566406 C 253.703125 259.1875 251.273438 259.1875 251.273438 257.566406 C 251.273438 255.949219 253.703125 255.949219 253.703125 257.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.59375 70.910156 L 207.230469 73.746094 L 203.957031 73.746094 Z M 205.59375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.851562 70.910156 L 196.488281 73.746094 L 193.214844 73.746094 Z M 194.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.039062 87.667969 C 280.039062 89.289062 277.609375 89.289062 277.609375 87.667969 C 277.609375 86.046875 280.039062 86.046875 280.039062 87.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.46875 357.53125 C 147.46875 359.152344 145.039062 359.152344 145.039062 357.53125 C 145.039062 355.914062 147.46875 355.914062 147.46875 357.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.75 239.835938 C 242.75 241.453125 240.320312 241.453125 240.320312 239.835938 C 240.320312 238.214844 242.75 238.214844 242.75 239.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.558594 317.695312 C 327.558594 319.3125 325.125 319.3125 325.125 317.695312 C 325.125 316.074219 327.558594 316.074219 327.558594 317.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.582031 264.734375 C 280.582031 266.355469 278.152344 266.355469 278.152344 264.734375 C 278.152344 263.113281 280.582031 263.113281 280.582031 264.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.582031 267.484375 C 246.582031 269.105469 244.152344 269.105469 244.152344 267.484375 C 244.152344 265.863281 246.582031 265.863281 246.582031 267.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.84375 216.539062 C 248.84375 218.160156 246.414062 218.160156 246.414062 216.539062 C 246.414062 214.917969 248.84375 214.917969 248.84375 216.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.78125 140.3125 C 274.78125 141.933594 272.351562 141.933594 272.351562 140.3125 C 272.351562 138.691406 274.78125 138.691406 274.78125 140.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.671875 155.480469 C 113.671875 157.097656 111.242188 157.097656 111.242188 155.480469 C 111.242188 153.859375 113.671875 153.859375 113.671875 155.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.8125 70.910156 L 158.445312 73.746094 L 155.175781 73.746094 Z M 156.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.785156 94.175781 C 204.785156 95.796875 202.355469 95.796875 202.355469 94.175781 C 202.355469 92.554688 204.785156 92.554688 204.785156 94.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.890625 231.636719 C 287.890625 233.257812 285.460938 233.257812 285.460938 231.636719 C 285.460938 230.015625 287.890625 230.015625 287.890625 231.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.875 255.789062 C 287.875 257.410156 285.445312 257.410156 285.445312 255.789062 C 285.445312 254.171875 287.875 254.171875 287.875 255.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.367188 160.058594 C 275.367188 161.679688 272.9375 161.679688 272.9375 160.058594 C 272.9375 158.4375 275.367188 158.4375 275.367188 160.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.539062 145.214844 C 309.539062 146.835938 307.109375 146.835938 307.109375 145.214844 C 307.109375 143.597656 309.539062 143.597656 309.539062 145.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.140625 70.910156 L 243.777344 73.746094 L 240.507812 73.746094 Z M 242.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.753906 155.539062 C 235.753906 157.15625 233.324219 157.15625 233.324219 155.539062 C 233.324219 153.917969 235.753906 153.917969 235.753906 155.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.578125 264.460938 C 234.578125 266.078125 232.148438 266.078125 232.148438 264.460938 C 232.148438 262.839844 234.578125 262.839844 234.578125 264.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.453125 70.910156 L 264.085938 73.746094 L 260.816406 73.746094 Z M 262.453125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.367188 70.910156 L 197.003906 73.746094 L 193.730469 73.746094 Z M 195.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.289062 246.535156 C 201.289062 248.15625 198.859375 248.15625 198.859375 246.535156 C 198.859375 244.914062 201.289062 244.914062 201.289062 246.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.566406 269.066406 C 283.566406 270.6875 281.136719 270.6875 281.136719 269.066406 C 281.136719 267.445312 283.566406 267.445312 283.566406 269.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.863281 281.769531 C 284.863281 283.390625 282.433594 283.390625 282.433594 281.769531 C 282.433594 280.148438 284.863281 280.148438 284.863281 281.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.136719 180.949219 C 240.136719 182.570312 237.703125 182.570312 237.703125 180.949219 C 237.703125 179.328125 240.136719 179.328125 240.136719 180.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.070312 275.566406 C 216.070312 277.1875 213.640625 277.1875 213.640625 275.566406 C 213.640625 273.945312 216.070312 273.945312 216.070312 275.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.03125 235.488281 C 183.03125 237.109375 180.601562 237.109375 180.601562 235.488281 C 180.601562 233.871094 183.03125 233.871094 183.03125 235.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.484375 247.347656 C 249.484375 248.96875 247.054688 248.96875 247.054688 247.347656 C 247.054688 245.730469 249.484375 245.730469 249.484375 247.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.097656 246.21875 C 256.097656 247.835938 253.667969 247.835938 253.667969 246.21875 C 253.667969 244.597656 256.097656 244.597656 256.097656 246.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.304688 294.378906 C 259.304688 296 256.875 296 256.875 294.378906 C 256.875 292.757812 259.304688 292.757812 259.304688 294.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.566406 70.910156 L 153.203125 73.746094 L 149.933594 73.746094 Z M 151.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.113281 176.324219 C 278.113281 177.941406 275.683594 177.941406 275.683594 176.324219 C 275.683594 174.703125 278.113281 174.703125 278.113281 176.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.09375 399.46875 C 309.09375 401.089844 306.664062 401.089844 306.664062 399.46875 C 306.664062 397.851562 309.09375 397.851562 309.09375 399.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.585938 206.527344 C 326.585938 208.148438 324.15625 208.148438 324.15625 206.527344 C 324.15625 204.910156 326.585938 204.910156 326.585938 206.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.933594 213.324219 C 157.933594 214.945312 155.503906 214.945312 155.503906 213.324219 C 155.503906 211.703125 157.933594 211.703125 157.933594 213.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.726562 280.996094 C 305.726562 282.617188 303.292969 282.617188 303.292969 280.996094 C 303.292969 279.378906 305.726562 279.378906 305.726562 280.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.429688 281.859375 C 248.429688 283.480469 246 283.480469 246 281.859375 C 246 280.242188 248.429688 280.242188 248.429688 281.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.496094 221.242188 C 330.496094 222.863281 328.066406 222.863281 328.066406 221.242188 C 328.066406 219.621094 330.496094 219.621094 330.496094 221.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.140625 70.910156 L 273.777344 73.746094 L 270.503906 73.746094 Z M 272.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.96875 259.761719 C 243.96875 261.382812 241.539062 261.382812 241.539062 259.761719 C 241.539062 258.140625 243.96875 258.140625 243.96875 259.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.609375 260.21875 C 214.609375 261.839844 212.175781 261.839844 212.175781 260.21875 C 212.175781 258.597656 214.609375 258.597656 214.609375 260.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.136719 70.910156 L 258.773438 73.746094 L 255.503906 73.746094 Z M 257.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.496094 329.757812 C 225.496094 331.375 223.066406 331.375 223.066406 329.757812 C 223.066406 328.136719 225.496094 328.136719 225.496094 329.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.667969 231.773438 C 226.667969 233.390625 224.238281 233.390625 224.238281 231.773438 C 224.238281 230.152344 226.667969 230.152344 226.667969 231.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.449219 196.679688 C 272.449219 198.300781 270.019531 198.300781 270.019531 196.679688 C 270.019531 195.0625 272.449219 195.0625 272.449219 196.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.234375 70.910156 L 239.871094 73.746094 L 236.597656 73.746094 Z M 238.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.453125 70.910156 L 224.089844 73.746094 L 220.816406 73.746094 Z M 222.453125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.136719 235.496094 C 291.136719 237.117188 288.703125 237.117188 288.703125 235.496094 C 288.703125 233.875 291.136719 233.875 291.136719 235.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.984375 229.691406 C 311.984375 231.308594 309.554688 231.308594 309.554688 229.691406 C 309.554688 228.070312 311.984375 228.070312 311.984375 229.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.363281 254.371094 C 320.363281 255.992188 317.933594 255.992188 317.933594 254.371094 C 317.933594 252.75 320.363281 252.75 320.363281 254.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.480469 354.5625 C 129.480469 356.183594 127.050781 356.183594 127.050781 354.5625 C 127.050781 352.941406 129.480469 352.941406 129.480469 354.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.554688 109.398438 C 184.554688 111.015625 182.125 111.015625 182.125 109.398438 C 182.125 107.777344 184.554688 107.777344 184.554688 109.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.308594 179.632812 C 248.308594 181.253906 245.878906 181.253906 245.878906 179.632812 C 245.878906 178.011719 248.308594 178.011719 248.308594 179.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.625 213.460938 C 272.625 215.082031 270.191406 215.082031 270.191406 213.460938 C 270.191406 211.84375 272.625 211.84375 272.625 213.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.429688 245.175781 C 207.429688 246.796875 205 246.796875 205 245.175781 C 205 243.554688 207.429688 243.554688 207.429688 245.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.105469 162.144531 C 269.105469 163.761719 266.675781 163.761719 266.675781 162.144531 C 266.675781 160.523438 269.105469 160.523438 269.105469 162.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.726562 302.003906 C 310.726562 303.625 308.296875 303.625 308.296875 302.003906 C 308.296875 300.382812 310.726562 300.382812 310.726562 302.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.203125 156.449219 C 262.203125 158.066406 259.773438 158.066406 259.773438 156.449219 C 259.773438 154.828125 262.203125 154.828125 262.203125 156.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.195312 125.316406 C 308.195312 126.9375 305.765625 126.9375 305.765625 125.316406 C 305.765625 123.695312 308.195312 123.695312 308.195312 125.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.996094 128.160156 C 315.996094 129.78125 313.566406 129.78125 313.566406 128.160156 C 313.566406 126.539062 315.996094 126.539062 315.996094 128.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.265625 224.902344 C 292.265625 226.523438 289.835938 226.523438 289.835938 224.902344 C 289.835938 223.28125 292.265625 223.28125 292.265625 224.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.410156 198.800781 C 291.410156 200.421875 288.980469 200.421875 288.980469 198.800781 C 288.980469 197.179688 291.410156 197.179688 291.410156 198.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.914062 70.910156 L 207.546875 73.746094 L 204.277344 73.746094 Z M 205.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.21875 208.355469 C 126.21875 209.972656 123.789062 209.972656 123.789062 208.355469 C 123.789062 206.734375 126.21875 206.734375 126.21875 208.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 374.371094 225.605469 C 374.371094 227.226562 371.941406 227.226562 371.941406 225.605469 C 371.941406 223.988281 374.371094 223.988281 374.371094 225.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.429688 70.910156 L 361.066406 73.746094 L 357.796875 73.746094 Z M 359.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.050781 176.890625 C 333.050781 178.511719 330.621094 178.511719 330.621094 176.890625 C 330.621094 175.269531 333.050781 175.269531 333.050781 176.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 419.773438 418.691406 L 421.410156 415.855469 L 418.136719 415.855469 Z M 419.773438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.988281 350.046875 C 270.988281 351.667969 268.558594 351.667969 268.558594 350.046875 C 268.558594 348.429688 270.988281 348.429688 270.988281 350.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.511719 216.3125 C 302.511719 217.929688 300.082031 217.929688 300.082031 216.3125 C 300.082031 214.691406 302.511719 214.691406 302.511719 216.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.683594 139.828125 C 292.683594 141.449219 290.25 141.449219 290.25 139.828125 C 290.25 138.207031 292.683594 138.207031 292.683594 139.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.996094 312.890625 C 182.996094 314.511719 180.566406 314.511719 180.566406 312.890625 C 180.566406 311.269531 182.996094 311.269531 182.996094 312.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.769531 241.304688 C 345.769531 242.925781 343.339844 242.925781 343.339844 241.304688 C 343.339844 239.683594 345.769531 239.683594 345.769531 241.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 370.582031 249.1875 C 370.582031 250.808594 368.152344 250.808594 368.152344 249.1875 C 368.152344 247.566406 370.582031 247.566406 370.582031 249.1875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.339844 70.910156 L 149.976562 73.746094 L 146.703125 73.746094 Z M 148.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.566406 227.988281 C 303.566406 229.609375 301.136719 229.609375 301.136719 227.988281 C 301.136719 226.371094 303.566406 226.371094 303.566406 227.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.863281 377.511719 C 231.863281 379.132812 229.433594 379.132812 229.433594 377.511719 C 229.433594 375.890625 231.863281 375.890625 231.863281 377.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.773438 205.328125 C 297.773438 206.949219 295.34375 206.949219 295.34375 205.328125 C 295.34375 203.710938 297.773438 203.710938 297.773438 205.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.40625 249.703125 C 292.40625 251.324219 289.976562 251.324219 289.976562 249.703125 C 289.976562 248.085938 292.40625 248.085938 292.40625 249.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.644531 190.613281 C 276.644531 192.234375 274.214844 192.234375 274.214844 190.613281 C 274.214844 188.992188 276.644531 188.992188 276.644531 190.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.894531 120.945312 C 217.894531 122.566406 215.464844 122.566406 215.464844 120.945312 C 215.464844 119.328125 217.894531 119.328125 217.894531 120.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.113281 241.855469 C 268.113281 243.476562 265.683594 243.476562 265.683594 241.855469 C 265.683594 240.234375 268.113281 240.234375 268.113281 241.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.875 145.730469 C 234.875 147.351562 232.445312 147.351562 232.445312 145.730469 C 232.445312 144.113281 234.875 144.113281 234.875 145.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.769531 275.027344 C 234.769531 276.648438 232.339844 276.648438 232.339844 275.027344 C 232.339844 273.410156 234.769531 273.410156 234.769531 275.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.777344 70.910156 L 192.414062 73.746094 L 189.140625 73.746094 Z M 190.777344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.464844 263.027344 C 131.464844 264.648438 129.035156 264.648438 129.035156 263.027344 C 129.035156 261.410156 131.464844 261.410156 131.464844 263.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.429688 228.183594 C 246.429688 229.804688 244 229.804688 244 228.183594 C 244 226.5625 246.429688 226.5625 246.429688 228.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.726562 301.425781 C 274.726562 303.042969 272.296875 303.042969 272.296875 301.425781 C 272.296875 299.804688 274.726562 299.804688 274.726562 301.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.449219 70.910156 L 225.085938 73.746094 L 221.8125 73.746094 Z M 223.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.890625 115.40625 C 265.890625 117.027344 263.460938 117.027344 263.460938 115.40625 C 263.460938 113.785156 265.890625 113.785156 265.890625 115.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.375 148.402344 C 247.375 150.019531 244.945312 150.019531 244.945312 148.402344 C 244.945312 146.78125 247.375 146.78125 247.375 148.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.894531 253.207031 C 202.894531 254.828125 200.464844 254.828125 200.464844 253.207031 C 200.464844 251.585938 202.894531 251.585938 202.894531 253.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.859375 101.699219 C 202.859375 103.316406 200.429688 103.316406 200.429688 101.699219 C 200.429688 100.078125 202.859375 100.078125 202.859375 101.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.585938 230.863281 C 233.585938 232.484375 231.15625 232.484375 231.15625 230.863281 C 231.15625 229.246094 233.585938 229.246094 233.585938 230.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.972656 70.910156 L 237.609375 73.746094 L 234.335938 73.746094 Z M 235.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.960938 189.0625 C 265.960938 190.679688 263.53125 190.679688 263.53125 189.0625 C 263.53125 187.441406 265.960938 187.441406 265.960938 189.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.933594 329.230469 C 320.933594 330.851562 318.503906 330.851562 318.503906 329.230469 C 318.503906 327.609375 320.933594 327.609375 320.933594 329.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.917969 418.691406 L 186.554688 415.855469 L 183.28125 415.855469 Z M 184.917969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.269531 418.691406 L 321.90625 415.855469 L 318.636719 415.855469 Z M 320.269531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.597656 282.0625 C 306.597656 283.679688 304.167969 283.679688 304.167969 282.0625 C 304.167969 280.441406 306.597656 280.441406 306.597656 282.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.34375 155.605469 C 185.34375 157.226562 182.914062 157.226562 182.914062 155.605469 C 182.914062 153.984375 185.34375 153.984375 185.34375 155.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.933594 265.921875 C 250.933594 267.539062 248.503906 267.539062 248.503906 265.921875 C 248.503906 264.300781 250.933594 264.300781 250.933594 265.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.742188 197.382812 C 225.742188 199.003906 223.3125 199.003906 223.3125 197.382812 C 223.3125 195.761719 225.742188 195.761719 225.742188 197.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.757812 196.203125 C 246.757812 197.824219 244.328125 197.824219 244.328125 196.203125 C 244.328125 194.585938 246.757812 194.585938 246.757812 196.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.84375 252.855469 C 173.84375 254.476562 171.414062 254.476562 171.414062 252.855469 C 171.414062 251.234375 173.84375 251.234375 173.84375 252.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.066406 317.289062 C 308.066406 318.910156 305.636719 318.910156 305.636719 317.289062 C 305.636719 315.671875 308.066406 315.671875 308.066406 317.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.921875 178.722656 C 232.921875 180.34375 230.492188 180.34375 230.492188 178.722656 C 230.492188 177.101562 232.921875 177.101562 232.921875 178.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.753906 264.296875 C 297.753906 265.917969 295.324219 265.917969 295.324219 264.296875 C 295.324219 262.679688 297.753906 262.679688 297.753906 264.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.808594 179.03125 C 260.808594 180.652344 258.378906 180.652344 258.378906 179.03125 C 258.378906 177.410156 260.808594 177.410156 260.808594 179.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.488281 195.097656 C 297.488281 196.71875 295.058594 196.71875 295.058594 195.097656 C 295.058594 193.476562 297.488281 193.476562 297.488281 195.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.171875 261.652344 C 236.171875 263.273438 233.742188 263.273438 233.742188 261.652344 C 233.742188 260.03125 236.171875 260.03125 236.171875 261.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.199219 238.777344 C 292.199219 240.398438 289.769531 240.398438 289.769531 238.777344 C 289.769531 237.160156 292.199219 237.160156 292.199219 238.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.890625 301.015625 C 281.890625 302.632812 279.457031 302.632812 279.457031 301.015625 C 279.457031 299.394531 281.890625 299.394531 281.890625 301.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.941406 195.929688 C 177.941406 197.546875 175.511719 197.546875 175.511719 195.929688 C 175.511719 194.308594 177.941406 194.308594 177.941406 195.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.949219 418.691406 L 235.585938 415.855469 L 232.3125 415.855469 Z M 233.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.320312 338.351562 C 260.320312 339.96875 257.890625 339.96875 257.890625 338.351562 C 257.890625 336.730469 260.320312 336.730469 260.320312 338.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.636719 286.253906 C 280.636719 287.875 278.207031 287.875 278.207031 286.253906 C 278.207031 284.636719 280.636719 284.636719 280.636719 286.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.402344 418.691406 L 185.039062 415.855469 L 181.765625 415.855469 Z M 183.402344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.554688 361.789062 C 260.554688 363.410156 258.125 363.410156 258.125 361.789062 C 258.125 360.167969 260.554688 360.167969 260.554688 361.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.015625 92.558594 C 207.015625 94.175781 204.582031 94.175781 204.582031 92.558594 C 204.582031 90.9375 207.015625 90.9375 207.015625 92.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.253906 328.523438 C 284.253906 330.140625 281.824219 330.140625 281.824219 328.523438 C 281.824219 326.902344 284.253906 326.902344 284.253906 328.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.683594 73.742188 C 283.683594 75.363281 281.253906 75.363281 281.253906 73.742188 C 281.253906 72.121094 283.683594 72.121094 283.683594 73.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.617188 183.074219 C 183.617188 184.691406 181.1875 184.691406 181.1875 183.074219 C 181.1875 181.453125 183.617188 181.453125 183.617188 183.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.214844 190.945312 C 258.214844 192.566406 255.785156 192.566406 255.785156 190.945312 C 255.785156 189.324219 258.214844 189.324219 258.214844 190.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.464844 274.753906 C 294.464844 276.371094 292.035156 276.371094 292.035156 274.753906 C 292.035156 273.132812 294.464844 273.132812 294.464844 274.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.164062 269.191406 C 249.164062 270.8125 246.734375 270.8125 246.734375 269.191406 C 246.734375 267.570312 249.164062 267.570312 249.164062 269.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.253906 126.210938 C 247.253906 127.832031 244.824219 127.832031 244.824219 126.210938 C 244.824219 124.59375 247.253906 124.59375 247.253906 126.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.222656 217.15625 C 229.222656 218.777344 226.792969 218.777344 226.792969 217.15625 C 226.792969 215.539062 229.222656 215.539062 229.222656 217.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.445312 262.148438 C 181.445312 263.769531 179.015625 263.769531 179.015625 262.148438 C 179.015625 260.527344 181.445312 260.527344 181.445312 262.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.011719 117.179688 C 119.011719 118.800781 116.582031 118.800781 116.582031 117.179688 C 116.582031 115.558594 119.011719 115.558594 119.011719 117.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.867188 290.65625 C 231.867188 292.277344 229.4375 292.277344 229.4375 290.65625 C 229.4375 289.039062 231.867188 289.039062 231.867188 290.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.535156 265.503906 C 268.535156 267.125 266.105469 267.125 266.105469 265.503906 C 266.105469 263.882812 268.535156 263.882812 268.535156 265.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.1875 270.351562 C 263.1875 271.972656 260.757812 271.972656 260.757812 270.351562 C 260.757812 268.730469 263.1875 268.730469 263.1875 270.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.039062 296.113281 C 259.039062 297.734375 256.609375 297.734375 256.609375 296.113281 C 256.609375 294.492188 259.039062 294.492188 259.039062 296.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 367.699219 343.023438 C 367.699219 344.644531 365.269531 344.644531 365.269531 343.023438 C 365.269531 341.402344 367.699219 341.402344 367.699219 343.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.96875 173.804688 C 166.96875 175.425781 164.539062 175.425781 164.539062 173.804688 C 164.539062 172.183594 166.96875 172.183594 166.96875 173.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.542969 110.042969 C 262.542969 111.664062 260.113281 111.664062 260.113281 110.042969 C 260.113281 108.421875 262.542969 108.421875 262.542969 110.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.488281 118.898438 C 170.488281 120.519531 168.058594 120.519531 168.058594 118.898438 C 168.058594 117.277344 170.488281 117.277344 170.488281 118.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.507812 235.054688 C 284.507812 236.671875 282.078125 236.671875 282.078125 235.054688 C 282.078125 233.433594 284.507812 233.433594 284.507812 235.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.945312 70.910156 L 187.582031 73.746094 L 184.308594 73.746094 Z M 185.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.421875 122.140625 C 192.421875 123.757812 189.992188 123.757812 189.992188 122.140625 C 189.992188 120.519531 192.421875 120.519531 192.421875 122.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.609375 248.785156 C 195.609375 250.402344 193.175781 250.402344 193.175781 248.785156 C 193.175781 247.164062 195.609375 247.164062 195.609375 248.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.671875 70.910156 L 270.308594 73.746094 L 267.039062 73.746094 Z M 268.671875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.195312 220.332031 C 281.195312 221.949219 278.761719 221.949219 278.761719 220.332031 C 278.761719 218.710938 281.195312 218.710938 281.195312 220.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.503906 70.910156 L 173.140625 73.746094 L 169.867188 73.746094 Z M 171.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267 264.671875 C 267 266.292969 264.570312 266.292969 264.570312 264.671875 C 264.570312 263.054688 267 263.054688 267 264.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.808594 186.652344 C 253.808594 188.273438 251.378906 188.273438 251.378906 186.652344 C 251.378906 185.035156 253.808594 185.035156 253.808594 186.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.980469 191.042969 C 301.980469 192.664062 299.550781 192.664062 299.550781 191.042969 C 299.550781 189.421875 301.980469 189.421875 301.980469 191.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.082031 255 C 246.082031 256.621094 243.652344 256.621094 243.652344 255 C 243.652344 253.382812 246.082031 253.382812 246.082031 255 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.582031 70.910156 L 287.21875 73.746094 L 283.945312 73.746094 Z M 285.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.519531 258.714844 C 299.519531 260.335938 297.089844 260.335938 297.089844 258.714844 C 297.089844 257.09375 299.519531 257.09375 299.519531 258.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.03125 418.691406 L 279.667969 415.855469 L 276.394531 415.855469 Z M 278.03125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.070312 254.867188 C 284.070312 256.488281 281.640625 256.488281 281.640625 254.867188 C 281.640625 253.246094 284.070312 253.246094 284.070312 254.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.859375 342.359375 C 224.859375 343.980469 222.429688 343.980469 222.429688 342.359375 C 222.429688 340.738281 224.859375 340.738281 224.859375 342.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.449219 70.910156 L 213.085938 73.746094 L 209.8125 73.746094 Z M 211.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.265625 143.367188 C 311.265625 144.988281 308.835938 144.988281 308.835938 143.367188 C 308.835938 141.746094 311.265625 141.746094 311.265625 143.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.527344 265.757812 C 247.527344 267.378906 245.097656 267.378906 245.097656 265.757812 C 245.097656 264.136719 247.527344 264.136719 247.527344 265.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.824219 293.457031 C 301.824219 295.078125 299.394531 295.078125 299.394531 293.457031 C 299.394531 291.835938 301.824219 291.835938 301.824219 293.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.335938 128.445312 C 264.335938 130.0625 261.90625 130.0625 261.90625 128.445312 C 261.90625 126.824219 264.335938 126.824219 264.335938 128.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 361.917969 352.28125 C 361.917969 353.898438 359.488281 353.898438 359.488281 352.28125 C 359.488281 350.660156 361.917969 350.660156 361.917969 352.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.203125 212.476562 C 285.203125 214.097656 282.773438 214.097656 282.773438 212.476562 C 282.773438 210.855469 285.203125 210.855469 285.203125 212.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.527344 234.035156 C 270.527344 235.652344 268.097656 235.652344 268.097656 234.035156 C 268.097656 232.414062 270.527344 232.414062 270.527344 234.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.265625 402.167969 C 226.265625 403.789062 223.835938 403.789062 223.835938 402.167969 C 223.835938 400.550781 226.265625 400.550781 226.265625 402.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.816406 418.691406 L 225.453125 415.855469 L 222.179688 415.855469 Z M 223.816406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.148438 184.878906 C 282.148438 186.496094 279.714844 186.496094 279.714844 184.878906 C 279.714844 183.257812 282.148438 183.257812 282.148438 184.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.613281 229.140625 C 213.613281 230.761719 211.183594 230.761719 211.183594 229.140625 C 211.183594 227.519531 213.613281 227.519531 213.613281 229.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.125 206.542969 C 258.125 208.164062 255.695312 208.164062 255.695312 206.542969 C 255.695312 204.925781 258.125 204.925781 258.125 206.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.09375 139.859375 C 236.09375 141.476562 233.664062 141.476562 233.664062 139.859375 C 233.664062 138.238281 236.09375 138.238281 236.09375 139.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.507812 256.1875 C 291.507812 257.808594 289.078125 257.808594 289.078125 256.1875 C 289.078125 254.566406 291.507812 254.566406 291.507812 256.1875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.84375 70.910156 L 260.480469 73.746094 L 257.207031 73.746094 Z M 258.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.621094 229.34375 C 273.621094 230.964844 271.191406 230.964844 271.191406 229.34375 C 271.191406 227.722656 273.621094 227.722656 273.621094 229.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.46875 319.039062 C 237.46875 320.65625 235.035156 320.65625 235.035156 319.039062 C 235.035156 317.417969 237.46875 317.417969 237.46875 319.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.003906 292.902344 C 263.003906 294.523438 260.574219 294.523438 260.574219 292.902344 C 260.574219 291.28125 263.003906 291.28125 263.003906 292.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.554688 229.238281 C 131.554688 230.859375 129.125 230.859375 129.125 229.238281 C 129.125 227.617188 131.554688 227.617188 131.554688 229.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.054688 233.457031 C 240.054688 235.074219 237.625 235.074219 237.625 233.457031 C 237.625 231.835938 240.054688 231.835938 240.054688 233.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.835938 198.128906 C 246.835938 199.75 244.40625 199.75 244.40625 198.128906 C 244.40625 196.507812 246.835938 196.507812 246.835938 198.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.179688 101.992188 C 192.179688 103.609375 189.75 103.609375 189.75 101.992188 C 189.75 100.371094 192.179688 100.371094 192.179688 101.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.230469 70.910156 L 262.867188 73.746094 L 259.59375 73.746094 Z M 261.230469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.773438 70.910156 L 169.410156 73.746094 L 166.136719 73.746094 Z M 167.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.835938 70.910156 L 292.472656 73.746094 L 289.199219 73.746094 Z M 290.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.476562 289.257812 C 291.476562 290.875 289.042969 290.875 289.042969 289.257812 C 289.042969 287.636719 291.476562 287.636719 291.476562 289.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.894531 270.921875 C 272.894531 272.542969 270.464844 272.542969 270.464844 270.921875 C 270.464844 269.300781 272.894531 269.300781 272.894531 270.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.164062 246.914062 C 261.164062 248.535156 258.734375 248.535156 258.734375 246.914062 C 258.734375 245.292969 261.164062 245.292969 261.164062 246.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.015625 283.464844 C 299.015625 285.085938 296.585938 285.085938 296.585938 283.464844 C 296.585938 281.847656 299.015625 281.847656 299.015625 283.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.289062 260.433594 C 290.289062 262.054688 287.859375 262.054688 287.859375 260.433594 C 287.859375 258.8125 290.289062 258.8125 290.289062 260.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.964844 188.453125 C 266.964844 190.070312 264.53125 190.070312 264.53125 188.453125 C 264.53125 186.832031 266.964844 186.832031 266.964844 188.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.398438 300.316406 C 170.398438 301.9375 167.96875 301.9375 167.96875 300.316406 C 167.96875 298.695312 170.398438 298.695312 170.398438 300.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.445312 250.414062 C 268.445312 252.035156 266.015625 252.035156 266.015625 250.414062 C 266.015625 248.792969 268.445312 248.792969 268.445312 250.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.273438 278.253906 C 305.273438 279.871094 302.84375 279.871094 302.84375 278.253906 C 302.84375 276.632812 305.273438 276.632812 305.273438 278.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.246094 70.910156 L 147.882812 73.746094 L 144.609375 73.746094 Z M 146.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.503906 306.722656 C 273.503906 308.339844 271.070312 308.339844 271.070312 306.722656 C 271.070312 305.101562 273.503906 305.101562 273.503906 306.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.738281 190.035156 C 222.738281 191.652344 220.308594 191.652344 220.308594 190.035156 C 220.308594 188.414062 222.738281 188.414062 222.738281 190.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.230469 286.875 C 320.230469 288.492188 317.800781 288.492188 317.800781 286.875 C 317.800781 285.253906 320.230469 285.253906 320.230469 286.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.484375 289.519531 C 181.484375 291.140625 179.054688 291.140625 179.054688 289.519531 C 179.054688 287.898438 181.484375 287.898438 181.484375 289.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.6875 319.988281 C 268.6875 321.609375 266.257812 321.609375 266.257812 319.988281 C 266.257812 318.371094 268.6875 318.371094 268.6875 319.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.601562 246.503906 C 211.601562 248.125 209.171875 248.125 209.171875 246.503906 C 209.171875 244.882812 211.601562 244.882812 211.601562 246.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.132812 280.273438 C 309.132812 281.890625 306.703125 281.890625 306.703125 280.273438 C 306.703125 278.652344 309.132812 278.652344 309.132812 280.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.035156 201.507812 C 199.035156 203.128906 196.601562 203.128906 196.601562 201.507812 C 196.601562 199.886719 199.035156 199.886719 199.035156 201.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.671875 188.988281 C 278.671875 190.609375 276.242188 190.609375 276.242188 188.988281 C 276.242188 187.371094 278.671875 187.371094 278.671875 188.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.660156 70.910156 L 313.296875 73.746094 L 310.023438 73.746094 Z M 311.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.9375 77.632812 C 286.9375 79.253906 284.507812 79.253906 284.507812 77.632812 C 284.507812 76.015625 286.9375 76.015625 286.9375 77.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.832031 253.027344 C 288.832031 254.648438 286.402344 254.648438 286.402344 253.027344 C 286.402344 251.410156 288.832031 251.410156 288.832031 253.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.683594 232.828125 C 269.683594 234.449219 267.253906 234.449219 267.253906 232.828125 C 267.253906 231.210938 269.683594 231.210938 269.683594 232.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.132812 220.484375 C 262.132812 222.105469 259.703125 222.105469 259.703125 220.484375 C 259.703125 218.867188 262.132812 218.867188 262.132812 220.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254 233.25 C 254 234.871094 251.570312 234.871094 251.570312 233.25 C 251.570312 231.628906 254 231.628906 254 233.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251 194.375 C 251 195.996094 248.570312 195.996094 248.570312 194.375 C 248.570312 192.757812 251 192.757812 251 194.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.597656 398.5625 C 198.597656 400.183594 196.167969 400.183594 196.167969 398.5625 C 196.167969 396.945312 198.597656 396.945312 198.597656 398.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.382812 133.757812 C 274.382812 135.378906 271.953125 135.378906 271.953125 133.757812 C 271.953125 132.136719 274.382812 132.136719 274.382812 133.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.917969 242.261719 C 235.917969 243.882812 233.488281 243.882812 233.488281 242.261719 C 233.488281 240.640625 235.917969 240.640625 235.917969 242.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.765625 70.910156 L 247.402344 73.746094 L 244.128906 73.746094 Z M 245.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.226562 171.90625 C 140.226562 173.527344 137.796875 173.527344 137.796875 171.90625 C 137.796875 170.285156 140.226562 170.285156 140.226562 171.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.980469 70.910156 L 223.617188 73.746094 L 220.347656 73.746094 Z M 221.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.003906 286.550781 C 145.003906 288.171875 142.574219 288.171875 142.574219 286.550781 C 142.574219 284.933594 145.003906 284.933594 145.003906 286.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.773438 330.367188 C 268.773438 331.988281 266.34375 331.988281 266.34375 330.367188 C 266.34375 328.746094 268.773438 328.746094 268.773438 330.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.574219 155.671875 C 167.574219 157.289062 165.144531 157.289062 165.144531 155.671875 C 165.144531 154.050781 167.574219 154.050781 167.574219 155.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.625 70.910156 L 162.261719 73.746094 L 158.988281 73.746094 Z M 160.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.015625 224.046875 C 264.015625 225.667969 261.585938 225.667969 261.585938 224.046875 C 261.585938 222.425781 264.015625 222.425781 264.015625 224.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.386719 70.910156 L 256.023438 73.746094 L 252.75 73.746094 Z M 254.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.363281 126.832031 C 335.363281 128.453125 332.933594 128.453125 332.933594 126.832031 C 332.933594 125.210938 335.363281 125.210938 335.363281 126.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.941406 259.214844 C 147.941406 260.832031 145.511719 260.832031 145.511719 259.214844 C 145.511719 257.59375 147.941406 257.59375 147.941406 259.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.300781 278.15625 C 275.300781 279.773438 272.871094 279.773438 272.871094 278.15625 C 272.871094 276.535156 275.300781 276.535156 275.300781 278.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.398438 223.453125 C 263.398438 225.074219 260.96875 225.074219 260.96875 223.453125 C 260.96875 221.835938 263.398438 221.835938 263.398438 223.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.125 70.910156 L 218.757812 73.746094 L 215.488281 73.746094 Z M 217.125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.441406 70.910156 L 233.074219 73.746094 L 229.804688 73.746094 Z M 231.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.347656 409.664062 C 125.347656 411.285156 122.917969 411.285156 122.917969 409.664062 C 122.917969 408.042969 125.347656 408.042969 125.347656 409.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.632812 70.910156 L 214.269531 73.746094 L 210.996094 73.746094 Z M 212.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.703125 70.910156 L 271.339844 73.746094 L 268.066406 73.746094 Z M 269.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.28125 240.878906 C 261.28125 242.496094 258.851562 242.496094 258.851562 240.878906 C 258.851562 239.257812 261.28125 239.257812 261.28125 240.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.75 290.542969 C 271.75 292.164062 269.320312 292.164062 269.320312 290.542969 C 269.320312 288.921875 271.75 288.921875 271.75 290.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.765625 70.910156 L 162.402344 73.746094 L 159.128906 73.746094 Z M 160.765625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.367188 70.910156 L 166.003906 73.746094 L 162.730469 73.746094 Z M 164.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.238281 313.222656 C 240.238281 314.84375 237.804688 314.84375 237.804688 313.222656 C 237.804688 311.605469 240.238281 311.605469 240.238281 313.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.105469 70.910156 L 136.742188 73.746094 L 133.46875 73.746094 Z M 135.105469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.1875 70.910156 L 249.824219 73.746094 L 246.550781 73.746094 Z M 248.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.347656 347.265625 C 223.347656 348.886719 220.917969 348.886719 220.917969 347.265625 C 220.917969 345.648438 223.347656 345.648438 223.347656 347.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.101562 364.964844 C 267.101562 366.585938 264.671875 366.585938 264.671875 364.964844 C 264.671875 363.34375 267.101562 363.34375 267.101562 364.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.210938 128.179688 C 118.210938 129.796875 115.78125 129.796875 115.78125 128.179688 C 115.78125 126.558594 118.210938 126.558594 118.210938 128.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.804688 256.617188 C 299.804688 258.238281 297.375 258.238281 297.375 256.617188 C 297.375 254.996094 299.804688 254.996094 299.804688 256.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.148438 246.898438 C 292.148438 248.519531 289.71875 248.519531 289.71875 246.898438 C 289.71875 245.277344 292.148438 245.277344 292.148438 246.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.394531 174.226562 C 146.394531 175.847656 143.964844 175.847656 143.964844 174.226562 C 143.964844 172.605469 146.394531 172.605469 146.394531 174.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 387.789062 116.054688 C 387.789062 117.671875 385.355469 117.671875 385.355469 116.054688 C 385.355469 114.433594 387.789062 114.433594 387.789062 116.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.007812 70.910156 L 180.644531 73.746094 L 177.375 73.746094 Z M 179.007812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.449219 70.910156 L 207.085938 73.746094 L 203.8125 73.746094 Z M 205.449219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.648438 92.726562 C 254.648438 94.34375 252.21875 94.34375 252.21875 92.726562 C 252.21875 91.105469 254.648438 91.105469 254.648438 92.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 362.917969 260.628906 C 362.917969 262.25 360.488281 262.25 360.488281 260.628906 C 360.488281 259.007812 362.917969 259.007812 362.917969 260.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.617188 70.910156 L 246.253906 73.746094 L 242.980469 73.746094 Z M 244.617188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.554688 70.910156 L 229.191406 73.746094 L 225.921875 73.746094 Z M 227.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.417969 157.394531 C 200.417969 159.015625 197.988281 159.015625 197.988281 157.394531 C 197.988281 155.773438 200.417969 155.773438 200.417969 157.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.011719 70.910156 L 281.648438 73.746094 L 278.375 73.746094 Z M 280.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.714844 257.140625 C 316.714844 258.761719 314.285156 258.761719 314.285156 257.140625 C 314.285156 255.519531 316.714844 255.519531 316.714844 257.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.09375 266.910156 C 310.09375 268.527344 307.664062 268.527344 307.664062 266.910156 C 307.664062 265.289062 310.09375 265.289062 310.09375 266.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.570312 70.910156 L 168.207031 73.746094 L 164.933594 73.746094 Z M 166.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.011719 268.03125 C 300.011719 269.652344 297.582031 269.652344 297.582031 268.03125 C 297.582031 266.410156 300.011719 266.410156 300.011719 268.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.667969 319.046875 C 245.667969 320.664062 243.234375 320.664062 243.234375 319.046875 C 243.234375 317.425781 245.667969 317.425781 245.667969 319.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.6875 181.125 C 284.6875 182.742188 282.257812 182.742188 282.257812 181.125 C 282.257812 179.503906 284.6875 179.503906 284.6875 181.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.425781 221.117188 C 233.425781 222.738281 230.996094 222.738281 230.996094 221.117188 C 230.996094 219.5 233.425781 219.5 233.425781 221.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.171875 239.089844 C 330.171875 240.710938 327.742188 240.710938 327.742188 239.089844 C 327.742188 237.472656 330.171875 237.472656 330.171875 239.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.351562 205.273438 C 287.351562 206.894531 284.921875 206.894531 284.921875 205.273438 C 284.921875 203.65625 287.351562 203.65625 287.351562 205.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.917969 70.910156 L 174.554688 73.746094 L 171.28125 73.746094 Z M 172.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.824219 275.277344 C 271.824219 276.894531 269.390625 276.894531 269.390625 275.277344 C 269.390625 273.65625 271.824219 273.65625 271.824219 275.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.015625 223.433594 C 340.015625 225.054688 337.585938 225.054688 337.585938 223.433594 C 337.585938 221.816406 340.015625 221.816406 340.015625 223.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.09375 239.691406 C 175.09375 241.3125 172.664062 241.3125 172.664062 239.691406 C 172.664062 238.070312 175.09375 238.070312 175.09375 239.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.578125 159.632812 C 218.578125 161.253906 216.148438 161.253906 216.148438 159.632812 C 216.148438 158.015625 218.578125 158.015625 218.578125 159.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.851562 229.402344 C 307.851562 231.019531 305.421875 231.019531 305.421875 229.402344 C 305.421875 227.78125 307.851562 227.78125 307.851562 229.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.691406 254.550781 C 294.691406 256.171875 292.261719 256.171875 292.261719 254.550781 C 292.261719 252.929688 294.691406 252.929688 294.691406 254.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.464844 276.027344 C 261.464844 277.648438 259.035156 277.648438 259.035156 276.027344 C 259.035156 274.40625 261.464844 274.40625 261.464844 276.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.96875 70.910156 L 130.605469 73.746094 L 127.332031 73.746094 Z M 128.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.789062 244.8125 C 142.789062 246.433594 140.359375 246.433594 140.359375 244.8125 C 140.359375 243.191406 142.789062 243.191406 142.789062 244.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.652344 258.949219 C 280.652344 260.570312 278.222656 260.570312 278.222656 258.949219 C 278.222656 257.332031 280.652344 257.332031 280.652344 258.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.875 180.183594 C 282.875 181.804688 280.445312 181.804688 280.445312 180.183594 C 280.445312 178.566406 282.875 178.566406 282.875 180.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.460938 117.066406 C 184.460938 118.683594 182.027344 118.683594 182.027344 117.066406 C 182.027344 115.445312 184.460938 115.445312 184.460938 117.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.554688 104.144531 C 336.554688 105.765625 334.125 105.765625 334.125 104.144531 C 334.125 102.527344 336.554688 102.527344 336.554688 104.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.179688 117.644531 C 281.179688 119.265625 278.75 119.265625 278.75 117.644531 C 278.75 116.023438 281.179688 116.023438 281.179688 117.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.917969 220.902344 C 284.917969 222.519531 282.488281 222.519531 282.488281 220.902344 C 282.488281 219.28125 284.917969 219.28125 284.917969 220.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.117188 306.171875 C 256.117188 307.792969 253.6875 307.792969 253.6875 306.171875 C 253.6875 304.554688 256.117188 304.554688 256.117188 306.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.148438 70.910156 L 287.785156 73.746094 L 284.511719 73.746094 Z M 286.148438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.425781 70.910156 L 269.0625 73.746094 L 265.789062 73.746094 Z M 267.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.714844 227.027344 C 288.714844 228.648438 286.285156 228.648438 286.285156 227.027344 C 286.285156 225.40625 288.714844 225.40625 288.714844 227.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.269531 271.277344 C 271.269531 272.898438 268.839844 272.898438 268.839844 271.277344 C 268.839844 269.65625 271.269531 269.65625 271.269531 271.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.59375 188.410156 C 239.59375 190.03125 237.164062 190.03125 237.164062 188.410156 C 237.164062 186.789062 239.59375 186.789062 239.59375 188.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.609375 221.183594 C 236.609375 222.800781 234.179688 222.800781 234.179688 221.183594 C 234.179688 219.5625 236.609375 219.5625 236.609375 221.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.542969 213.882812 C 208.542969 215.503906 206.113281 215.503906 206.113281 213.882812 C 206.113281 212.265625 208.542969 212.265625 208.542969 213.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.167969 242.402344 C 231.167969 244.023438 228.738281 244.023438 228.738281 242.402344 C 228.738281 240.78125 231.167969 240.78125 231.167969 242.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.085938 70.910156 L 175.722656 73.746094 L 172.449219 73.746094 Z M 174.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.78125 186.148438 C 170.78125 187.765625 168.351562 187.765625 168.351562 186.148438 C 168.351562 184.527344 170.78125 184.527344 170.78125 186.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.8125 140.839844 C 258.8125 142.457031 256.382812 142.457031 256.382812 140.839844 C 256.382812 139.21875 258.8125 139.21875 258.8125 140.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.832031 236.414062 C 262.832031 238.035156 260.402344 238.035156 260.402344 236.414062 C 260.402344 234.792969 262.832031 234.792969 262.832031 236.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.855469 231.175781 C 332.855469 232.796875 330.425781 232.796875 330.425781 231.175781 C 330.425781 229.558594 332.855469 229.558594 332.855469 231.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.804688 70.910156 L 240.441406 73.746094 L 237.171875 73.746094 Z M 238.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.886719 292.03125 C 185.886719 293.652344 183.457031 293.652344 183.457031 292.03125 C 183.457031 290.414062 185.886719 290.414062 185.886719 292.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.660156 255.136719 C 243.660156 256.753906 241.230469 256.753906 241.230469 255.136719 C 241.230469 253.515625 243.660156 253.515625 243.660156 255.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.078125 299.148438 C 132.078125 300.769531 129.648438 300.769531 129.648438 299.148438 C 129.648438 297.53125 132.078125 297.53125 132.078125 299.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.054688 418.691406 L 255.691406 415.855469 L 252.421875 415.855469 Z M 254.054688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.585938 246.835938 C 280.585938 248.457031 278.152344 248.457031 278.152344 246.835938 C 278.152344 245.21875 280.585938 245.21875 280.585938 246.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.625 70.910156 L 176.261719 73.746094 L 172.988281 73.746094 Z M 174.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.628906 270.957031 C 248.628906 272.578125 246.199219 272.578125 246.199219 270.957031 C 246.199219 269.335938 248.628906 269.335938 248.628906 270.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.765625 290.929688 C 269.765625 292.550781 267.335938 292.550781 267.335938 290.929688 C 267.335938 289.3125 269.765625 289.3125 269.765625 290.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.8125 242.710938 C 209.8125 244.332031 207.382812 244.332031 207.382812 242.710938 C 207.382812 241.089844 209.8125 241.089844 209.8125 242.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.449219 222.140625 C 279.449219 223.761719 277.019531 223.761719 277.019531 222.140625 C 277.019531 220.519531 279.449219 220.519531 279.449219 222.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.210938 307.875 C 293.210938 309.496094 290.777344 309.496094 290.777344 307.875 C 290.777344 306.257812 293.210938 306.257812 293.210938 307.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.609375 84.226562 C 248.609375 85.847656 246.179688 85.847656 246.179688 84.226562 C 246.179688 82.605469 248.609375 82.605469 248.609375 84.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.933594 207.285156 C 224.933594 208.90625 222.503906 208.90625 222.503906 207.285156 C 222.503906 205.664062 224.933594 205.664062 224.933594 207.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.601562 418.691406 L 120.238281 415.855469 L 116.964844 415.855469 Z M 118.601562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.179688 191.746094 C 183.179688 193.363281 180.75 193.363281 180.75 191.746094 C 180.75 190.125 183.179688 190.125 183.179688 191.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.847656 183.347656 C 206.847656 184.964844 204.414062 184.964844 204.414062 183.347656 C 204.414062 181.726562 206.847656 181.726562 206.847656 183.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.789062 181.027344 C 267.789062 182.648438 265.359375 182.648438 265.359375 181.027344 C 265.359375 179.40625 267.789062 179.40625 267.789062 181.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.339844 120.527344 C 147.339844 122.148438 144.910156 122.148438 144.910156 120.527344 C 144.910156 118.910156 147.339844 118.910156 147.339844 120.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.527344 188.550781 C 256.527344 190.171875 254.097656 190.171875 254.097656 188.550781 C 254.097656 186.929688 256.527344 186.929688 256.527344 188.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.980469 157.300781 C 175.980469 158.921875 173.546875 158.921875 173.546875 157.300781 C 173.546875 155.679688 175.980469 155.679688 175.980469 157.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.835938 179.792969 C 229.835938 181.410156 227.402344 181.410156 227.402344 179.792969 C 227.402344 178.171875 229.835938 178.171875 229.835938 179.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.097656 181.25 C 187.097656 182.867188 184.667969 182.867188 184.667969 181.25 C 184.667969 179.628906 187.097656 179.628906 187.097656 181.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.515625 292.582031 C 197.515625 294.199219 195.085938 294.199219 195.085938 292.582031 C 195.085938 290.960938 197.515625 290.960938 197.515625 292.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.15625 154.972656 C 214.15625 156.589844 211.726562 156.589844 211.726562 154.972656 C 211.726562 153.351562 214.15625 153.351562 214.15625 154.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.214844 256.375 C 151.214844 257.996094 148.785156 257.996094 148.785156 256.375 C 148.785156 254.753906 151.214844 254.753906 151.214844 256.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.265625 193.5 C 202.265625 195.121094 199.835938 195.121094 199.835938 193.5 C 199.835938 191.878906 202.265625 191.878906 202.265625 193.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.902344 286.429688 C 264.902344 288.050781 262.472656 288.050781 262.472656 286.429688 C 262.472656 284.8125 264.902344 284.8125 264.902344 286.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.074219 377.859375 C 119.074219 379.480469 116.644531 379.480469 116.644531 377.859375 C 116.644531 376.242188 119.074219 376.242188 119.074219 377.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.085938 245.535156 C 118.085938 247.152344 115.65625 247.152344 115.65625 245.535156 C 115.65625 243.914062 118.085938 243.914062 118.085938 245.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.453125 273.046875 C 230.453125 274.667969 228.023438 274.667969 228.023438 273.046875 C 228.023438 271.425781 230.453125 271.425781 230.453125 273.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.925781 251.601562 C 263.925781 253.21875 261.496094 253.21875 261.496094 251.601562 C 261.496094 249.980469 263.925781 249.980469 263.925781 251.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.292969 218.5 C 314.292969 220.117188 311.863281 220.117188 311.863281 218.5 C 311.863281 216.878906 314.292969 216.878906 314.292969 218.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.691406 253.605469 C 250.691406 255.226562 248.261719 255.226562 248.261719 253.605469 C 248.261719 251.984375 250.691406 251.984375 250.691406 253.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.164062 161.019531 C 238.164062 162.636719 235.734375 162.636719 235.734375 161.019531 C 235.734375 159.398438 238.164062 159.398438 238.164062 161.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.78125 236.042969 C 213.78125 237.664062 211.347656 237.664062 211.347656 236.042969 C 211.347656 234.421875 213.78125 234.421875 213.78125 236.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.460938 356.175781 C 145.460938 357.796875 143.03125 357.796875 143.03125 356.175781 C 143.03125 354.554688 145.460938 354.554688 145.460938 356.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.566406 295.140625 C 169.566406 296.761719 167.136719 296.761719 167.136719 295.140625 C 167.136719 293.519531 169.566406 293.519531 169.566406 295.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.042969 86.878906 C 124.042969 88.496094 121.613281 88.496094 121.613281 86.878906 C 121.613281 85.257812 124.042969 85.257812 124.042969 86.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.757812 70.910156 L 272.394531 73.746094 L 269.121094 73.746094 Z M 270.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.820312 248.09375 C 253.820312 249.714844 251.390625 249.714844 251.390625 248.09375 C 251.390625 246.472656 253.820312 246.472656 253.820312 248.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.539062 311.960938 C 326.539062 313.578125 324.109375 313.578125 324.109375 311.960938 C 324.109375 310.339844 326.539062 310.339844 326.539062 311.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.492188 137.472656 C 270.492188 139.09375 268.0625 139.09375 268.0625 137.472656 C 268.0625 135.851562 270.492188 135.851562 270.492188 137.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.785156 222.167969 C 251.785156 223.789062 249.355469 223.789062 249.355469 222.167969 C 249.355469 220.546875 251.785156 220.546875 251.785156 222.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.585938 249.863281 C 201.585938 251.484375 199.15625 251.484375 199.15625 249.863281 C 199.15625 248.242188 201.585938 248.242188 201.585938 249.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.527344 192.253906 C 185.527344 193.875 183.097656 193.875 183.097656 192.253906 C 183.097656 190.632812 185.527344 190.632812 185.527344 192.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.03125 265.175781 C 238.03125 266.796875 235.601562 266.796875 235.601562 265.175781 C 235.601562 263.554688 238.03125 263.554688 238.03125 265.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.882812 310.753906 C 231.882812 312.371094 229.453125 312.371094 229.453125 310.753906 C 229.453125 309.132812 231.882812 309.132812 231.882812 310.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.683594 286.734375 C 322.683594 288.351562 320.25 288.351562 320.25 286.734375 C 320.25 285.113281 322.683594 285.113281 322.683594 286.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.59375 253.285156 C 213.59375 254.90625 211.164062 254.90625 211.164062 253.285156 C 211.164062 251.667969 213.59375 251.667969 213.59375 253.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.921875 239.902344 C 233.921875 241.519531 231.492188 241.519531 231.492188 239.902344 C 231.492188 238.28125 233.921875 238.28125 233.921875 239.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.210938 287.046875 C 131.210938 288.664062 128.78125 288.664062 128.78125 287.046875 C 128.78125 285.425781 131.210938 285.425781 131.210938 287.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.949219 137.625 C 132.949219 139.242188 130.519531 139.242188 130.519531 137.625 C 130.519531 136.003906 132.949219 136.003906 132.949219 137.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.359375 222.734375 C 218.359375 224.351562 215.929688 224.351562 215.929688 222.734375 C 215.929688 221.113281 218.359375 221.113281 218.359375 222.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.324219 222.140625 C 295.324219 223.761719 292.890625 223.761719 292.890625 222.140625 C 292.890625 220.523438 295.324219 220.523438 295.324219 222.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.894531 338.382812 C 278.894531 340.003906 276.464844 340.003906 276.464844 338.382812 C 276.464844 336.761719 278.894531 336.761719 278.894531 338.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.886719 148.558594 C 266.886719 150.175781 264.457031 150.175781 264.457031 148.558594 C 264.457031 146.9375 266.886719 146.9375 266.886719 148.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.300781 70.910156 L 190.9375 73.746094 L 187.664062 73.746094 Z M 189.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.222656 207.875 C 261.222656 209.492188 258.792969 209.492188 258.792969 207.875 C 258.792969 206.253906 261.222656 206.253906 261.222656 207.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.3125 234.636719 C 304.3125 236.257812 301.882812 236.257812 301.882812 234.636719 C 301.882812 233.015625 304.3125 233.015625 304.3125 234.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.539062 260.601562 C 294.539062 262.21875 292.109375 262.21875 292.109375 260.601562 C 292.109375 258.980469 294.539062 258.980469 294.539062 260.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.542969 236 C 290.542969 237.621094 288.113281 237.621094 288.113281 236 C 288.113281 234.378906 290.542969 234.378906 290.542969 236 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.203125 221.335938 C 342.203125 222.953125 339.773438 222.953125 339.773438 221.335938 C 339.773438 219.714844 342.203125 219.714844 342.203125 221.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.109375 248.207031 C 343.109375 249.824219 340.679688 249.824219 340.679688 248.207031 C 340.679688 246.585938 343.109375 246.585938 343.109375 248.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.054688 191.421875 C 253.054688 193.042969 250.625 193.042969 250.625 191.421875 C 250.625 189.800781 253.054688 189.800781 253.054688 191.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.128906 366.488281 C 285.128906 368.109375 282.699219 368.109375 282.699219 366.488281 C 282.699219 364.871094 285.128906 364.871094 285.128906 366.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.683594 364.027344 C 245.683594 365.648438 243.253906 365.648438 243.253906 364.027344 C 243.253906 362.410156 245.683594 362.410156 245.683594 364.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.574219 365.644531 C 250.574219 367.261719 248.140625 367.261719 248.140625 365.644531 C 248.140625 364.023438 250.574219 364.023438 250.574219 365.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.496094 354.953125 C 290.496094 356.574219 288.0625 356.574219 288.0625 354.953125 C 288.0625 353.335938 290.496094 353.335938 290.496094 354.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.523438 418.691406 L 223.160156 415.855469 L 219.886719 415.855469 Z M 221.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.503906 280.496094 C 273.503906 282.113281 271.074219 282.113281 271.074219 280.496094 C 271.074219 278.875 273.503906 278.875 273.503906 280.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.976562 169.234375 C 197.976562 170.855469 195.546875 170.855469 195.546875 169.234375 C 195.546875 167.613281 197.976562 167.613281 197.976562 169.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.152344 392.628906 C 271.152344 394.246094 268.722656 394.246094 268.722656 392.628906 C 268.722656 391.007812 271.152344 391.007812 271.152344 392.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.933594 184.296875 C 270.933594 185.917969 268.503906 185.917969 268.503906 184.296875 C 268.503906 182.675781 270.933594 182.675781 270.933594 184.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.878906 223.304688 C 245.878906 224.921875 243.449219 224.921875 243.449219 223.304688 C 243.449219 221.683594 245.878906 221.683594 245.878906 223.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.15625 243.835938 C 292.15625 245.457031 289.726562 245.457031 289.726562 243.835938 C 289.726562 242.21875 292.15625 242.21875 292.15625 243.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.484375 70.910156 L 150.121094 73.746094 L 146.847656 73.746094 Z M 148.484375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.363281 70.910156 L 176 73.746094 L 172.726562 73.746094 Z M 174.363281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.8125 113.0625 C 243.8125 114.679688 241.382812 114.679688 241.382812 113.0625 C 241.382812 111.441406 243.8125 111.441406 243.8125 113.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.542969 374.5625 C 258.542969 376.183594 256.113281 376.183594 256.113281 374.5625 C 256.113281 372.941406 258.542969 372.941406 258.542969 374.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.613281 379.476562 C 311.613281 381.097656 309.183594 381.097656 309.183594 379.476562 C 309.183594 377.855469 311.613281 377.855469 311.613281 379.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.453125 278.136719 C 261.453125 279.753906 259.023438 279.753906 259.023438 278.136719 C 259.023438 276.515625 261.453125 276.515625 261.453125 278.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.441406 109.136719 C 277.441406 110.757812 275.011719 110.757812 275.011719 109.136719 C 275.011719 107.519531 277.441406 107.519531 277.441406 109.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.292969 70.910156 L 218.929688 73.746094 L 215.65625 73.746094 Z M 217.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.007812 169.464844 C 291.007812 171.085938 288.578125 171.085938 288.578125 169.464844 C 288.578125 167.84375 291.007812 167.84375 291.007812 169.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.148438 229.484375 C 244.148438 231.105469 241.71875 231.105469 241.71875 229.484375 C 241.71875 227.863281 244.148438 227.863281 244.148438 229.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.761719 270.351562 C 253.761719 271.972656 251.332031 271.972656 251.332031 270.351562 C 251.332031 268.730469 253.761719 268.730469 253.761719 270.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.382812 70.910156 L 198.019531 73.746094 L 194.746094 73.746094 Z M 196.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.421875 331.335938 C 234.421875 332.957031 231.988281 332.957031 231.988281 331.335938 C 231.988281 329.714844 234.421875 329.714844 234.421875 331.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.167969 143.082031 C 205.167969 144.703125 202.734375 144.703125 202.734375 143.082031 C 202.734375 141.464844 205.167969 141.464844 205.167969 143.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.917969 271.160156 C 205.917969 272.777344 203.488281 272.777344 203.488281 271.160156 C 203.488281 269.539062 205.917969 269.539062 205.917969 271.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.480469 99.75 C 122.480469 101.371094 120.050781 101.371094 120.050781 99.75 C 120.050781 98.128906 122.480469 98.128906 122.480469 99.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.003906 88.328125 C 194.003906 89.949219 191.574219 89.949219 191.574219 88.328125 C 191.574219 86.710938 194.003906 86.710938 194.003906 88.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.445312 108.640625 C 285.445312 110.261719 283.015625 110.261719 283.015625 108.640625 C 283.015625 107.023438 285.445312 107.023438 285.445312 108.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.453125 332.878906 C 297.453125 334.5 295.019531 334.5 295.019531 332.878906 C 295.019531 331.257812 297.453125 331.257812 297.453125 332.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.4375 289.507812 C 266.4375 291.128906 264.007812 291.128906 264.007812 289.507812 C 264.007812 287.886719 266.4375 287.886719 266.4375 289.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.402344 190.660156 C 255.402344 192.277344 252.972656 192.277344 252.972656 190.660156 C 252.972656 189.039062 255.402344 189.039062 255.402344 190.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.464844 236.0625 C 261.464844 237.683594 259.035156 237.683594 259.035156 236.0625 C 259.035156 234.445312 261.464844 234.445312 261.464844 236.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 354.898438 418.691406 L 356.535156 415.855469 L 353.261719 415.855469 Z M 354.898438 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.546875 418.691406 L 325.183594 415.855469 L 321.910156 415.855469 Z M 323.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.90625 346.191406 C 261.90625 347.808594 259.476562 347.808594 259.476562 346.191406 C 259.476562 344.570312 261.90625 344.570312 261.90625 346.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.507812 203.507812 C 278.507812 205.128906 276.078125 205.128906 276.078125 203.507812 C 276.078125 201.890625 278.507812 201.890625 278.507812 203.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.835938 134.207031 C 305.835938 135.828125 303.40625 135.828125 303.40625 134.207031 C 303.40625 132.585938 305.835938 132.585938 305.835938 134.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.371094 184.332031 C 302.371094 185.953125 299.941406 185.953125 299.941406 184.332031 C 299.941406 182.710938 302.371094 182.710938 302.371094 184.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.117188 190.472656 C 344.117188 192.09375 341.6875 192.09375 341.6875 190.472656 C 341.6875 188.855469 344.117188 188.855469 344.117188 190.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.480469 278.238281 C 290.480469 279.859375 288.050781 279.859375 288.050781 278.238281 C 288.050781 276.621094 290.480469 276.621094 290.480469 278.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.183594 252.484375 C 253.183594 254.105469 250.753906 254.105469 250.753906 252.484375 C 250.753906 250.863281 253.183594 250.863281 253.183594 252.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.382812 250.898438 C 307.382812 252.519531 304.949219 252.519531 304.949219 250.898438 C 304.949219 249.277344 307.382812 249.277344 307.382812 250.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.183594 317.6875 C 229.183594 319.304688 226.753906 319.304688 226.753906 317.6875 C 226.753906 316.066406 229.183594 316.066406 229.183594 317.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.101562 262.769531 C 271.101562 264.390625 268.671875 264.390625 268.671875 262.769531 C 268.671875 261.148438 271.101562 261.148438 271.101562 262.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.273438 70.910156 L 198.910156 73.746094 L 195.636719 73.746094 Z M 197.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.191406 253.574219 C 269.191406 255.195312 266.761719 255.195312 266.761719 253.574219 C 266.761719 251.953125 269.191406 251.953125 269.191406 253.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.300781 215.273438 C 327.300781 216.894531 324.871094 216.894531 324.871094 215.273438 C 324.871094 213.65625 327.300781 213.65625 327.300781 215.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.027344 70.910156 L 208.664062 73.746094 L 205.390625 73.746094 Z M 207.027344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.074219 70.910156 L 184.710938 73.746094 L 181.4375 73.746094 Z M 183.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.457031 296.074219 C 256.457031 297.695312 254.027344 297.695312 254.027344 296.074219 C 254.027344 294.453125 256.457031 294.453125 256.457031 296.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.339844 134.640625 C 208.339844 136.261719 205.910156 136.261719 205.910156 134.640625 C 205.910156 133.023438 208.339844 133.023438 208.339844 134.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.480469 248.714844 C 296.480469 250.335938 294.050781 250.335938 294.050781 248.714844 C 294.050781 247.09375 296.480469 247.09375 296.480469 248.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.890625 254.625 C 240.890625 256.242188 238.460938 256.242188 238.460938 254.625 C 238.460938 253.003906 240.890625 253.003906 240.890625 254.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.289062 254.789062 C 283.289062 256.40625 280.859375 256.40625 280.859375 254.789062 C 280.859375 253.167969 283.289062 253.167969 283.289062 254.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.210938 223.640625 C 241.210938 225.257812 238.78125 225.257812 238.78125 223.640625 C 238.78125 222.019531 241.210938 222.019531 241.210938 223.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.773438 247 C 291.773438 248.621094 289.34375 248.621094 289.34375 247 C 289.34375 245.382812 291.773438 245.382812 291.773438 247 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.488281 193.050781 C 253.488281 194.671875 251.058594 194.671875 251.058594 193.050781 C 251.058594 191.429688 253.488281 191.429688 253.488281 193.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.820312 140.042969 C 215.820312 141.664062 213.390625 141.664062 213.390625 140.042969 C 213.390625 138.421875 215.820312 138.421875 215.820312 140.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.035156 229.21875 C 286.035156 230.839844 283.605469 230.839844 283.605469 229.21875 C 283.605469 227.597656 286.035156 227.597656 286.035156 229.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.226562 147.605469 C 292.226562 149.226562 289.796875 149.226562 289.796875 147.605469 C 289.796875 145.988281 292.226562 145.988281 292.226562 147.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.957031 307.105469 C 264.957031 308.726562 262.523438 308.726562 262.523438 307.105469 C 262.523438 305.484375 264.957031 305.484375 264.957031 307.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.269531 292.835938 C 234.269531 294.457031 231.839844 294.457031 231.839844 292.835938 C 231.839844 291.214844 234.269531 291.214844 234.269531 292.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281 231.988281 C 281 233.609375 278.570312 233.609375 278.570312 231.988281 C 278.570312 230.367188 281 230.367188 281 231.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.425781 285.277344 C 264.425781 286.898438 261.996094 286.898438 261.996094 285.277344 C 261.996094 283.65625 264.425781 283.65625 264.425781 285.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.871094 171.945312 C 288.871094 173.566406 286.441406 173.566406 286.441406 171.945312 C 286.441406 170.324219 288.871094 170.324219 288.871094 171.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.394531 156.757812 C 225.394531 158.378906 222.964844 158.378906 222.964844 156.757812 C 222.964844 155.140625 225.394531 155.140625 225.394531 156.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.21875 273.457031 C 300.21875 275.074219 297.789062 275.074219 297.789062 273.457031 C 297.789062 271.835938 300.21875 271.835938 300.21875 273.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.832031 259.929688 C 309.832031 261.550781 307.402344 261.550781 307.402344 259.929688 C 307.402344 258.3125 309.832031 258.3125 309.832031 259.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.066406 266.082031 C 282.066406 267.703125 279.636719 267.703125 279.636719 266.082031 C 279.636719 264.460938 282.066406 264.460938 282.066406 266.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288 260.410156 C 288 262.03125 285.570312 262.03125 285.570312 260.410156 C 285.570312 258.792969 288 258.792969 288 260.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.839844 70.910156 L 116.476562 73.746094 L 113.203125 73.746094 Z M 114.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.351562 161.65625 C 141.351562 163.277344 138.921875 163.277344 138.921875 161.65625 C 138.921875 160.035156 141.351562 160.035156 141.351562 161.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.347656 195.8125 C 155.347656 197.433594 152.917969 197.433594 152.917969 195.8125 C 152.917969 194.195312 155.347656 194.195312 155.347656 195.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.316406 221.941406 C 247.316406 223.5625 244.886719 223.5625 244.886719 221.941406 C 244.886719 220.324219 247.316406 220.324219 247.316406 221.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.875 306.660156 C 146.875 308.277344 144.445312 308.277344 144.445312 306.660156 C 144.445312 305.039062 146.875 305.039062 146.875 306.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.414062 339.230469 C 274.414062 340.851562 271.984375 340.851562 271.984375 339.230469 C 271.984375 337.613281 274.414062 337.613281 274.414062 339.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.058594 177.328125 C 151.058594 178.949219 148.628906 178.949219 148.628906 177.328125 C 148.628906 175.710938 151.058594 175.710938 151.058594 177.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.359375 258.726562 C 329.359375 260.347656 326.929688 260.347656 326.929688 258.726562 C 326.929688 257.105469 329.359375 257.105469 329.359375 258.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.371094 276.230469 C 286.371094 277.847656 283.941406 277.847656 283.941406 276.230469 C 283.941406 274.609375 286.371094 274.609375 286.371094 276.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.550781 264.1875 C 275.550781 265.808594 273.121094 265.808594 273.121094 264.1875 C 273.121094 262.570312 275.550781 262.570312 275.550781 264.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.152344 366.097656 C 304.152344 367.714844 301.71875 367.714844 301.71875 366.097656 C 301.71875 364.476562 304.152344 364.476562 304.152344 366.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.523438 222.78125 C 216.523438 224.402344 214.09375 224.402344 214.09375 222.78125 C 214.09375 221.160156 216.523438 221.160156 216.523438 222.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.019531 274.375 C 194.019531 275.996094 191.585938 275.996094 191.585938 274.375 C 191.585938 272.757812 194.019531 272.757812 194.019531 274.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.777344 270.585938 C 293.777344 272.203125 291.347656 272.203125 291.347656 270.585938 C 291.347656 268.964844 293.777344 268.964844 293.777344 270.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.144531 70.910156 L 142.78125 73.746094 L 139.511719 73.746094 Z M 141.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.84375 206.589844 C 241.84375 208.210938 239.414062 208.210938 239.414062 206.589844 C 239.414062 204.96875 241.84375 204.96875 241.84375 206.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.679688 289.730469 C 253.679688 291.351562 251.25 291.351562 251.25 289.730469 C 251.25 288.113281 253.679688 288.113281 253.679688 289.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.203125 297.164062 C 267.203125 298.785156 264.773438 298.785156 264.773438 297.164062 C 264.773438 295.546875 267.203125 295.546875 267.203125 297.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.683594 265.796875 C 283.683594 267.417969 281.253906 267.417969 281.253906 265.796875 C 281.253906 264.175781 283.683594 264.175781 283.683594 265.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.433594 70.910156 L 344.070312 73.746094 L 340.796875 73.746094 Z M 342.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.789062 267.789062 C 269.789062 269.410156 267.359375 269.410156 267.359375 267.789062 C 267.359375 266.167969 269.789062 266.167969 269.789062 267.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.71875 377.910156 C 285.71875 379.53125 283.289062 379.53125 283.289062 377.910156 C 283.289062 376.289062 285.71875 376.289062 285.71875 377.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.597656 312.023438 C 273.597656 313.644531 271.167969 313.644531 271.167969 312.023438 C 271.167969 310.402344 273.597656 310.402344 273.597656 312.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.953125 238.617188 C 267.953125 240.238281 265.523438 240.238281 265.523438 238.617188 C 265.523438 236.996094 267.953125 236.996094 267.953125 238.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.46875 181.054688 C 298.46875 182.671875 296.039062 182.671875 296.039062 181.054688 C 296.039062 179.433594 298.46875 179.433594 298.46875 181.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.382812 191.523438 C 306.382812 193.144531 303.953125 193.144531 303.953125 191.523438 C 303.953125 189.902344 306.382812 189.902344 306.382812 191.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.609375 221.824219 C 259.609375 223.445312 257.179688 223.445312 257.179688 221.824219 C 257.179688 220.203125 259.609375 220.203125 259.609375 221.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.847656 218.15625 C 285.847656 219.777344 283.417969 219.777344 283.417969 218.15625 C 283.417969 216.535156 285.847656 216.535156 285.847656 218.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.039062 70.910156 L 261.675781 73.746094 L 258.402344 73.746094 Z M 260.039062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.546875 70.910156 L 284.183594 73.746094 L 280.910156 73.746094 Z M 282.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.039062 247.410156 C 317.039062 249.03125 314.609375 249.03125 314.609375 247.410156 C 314.609375 245.792969 317.039062 245.792969 317.039062 247.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.875 97.277344 C 226.875 98.894531 224.445312 98.894531 224.445312 97.277344 C 224.445312 95.65625 226.875 95.65625 226.875 97.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.738281 214.507812 C 305.738281 216.125 303.308594 216.125 303.308594 214.507812 C 303.308594 212.886719 305.738281 212.886719 305.738281 214.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.167969 275.632812 C 169.167969 277.253906 166.734375 277.253906 166.734375 275.632812 C 166.734375 274.015625 169.167969 274.015625 169.167969 275.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.757812 70.910156 L 165.390625 73.746094 L 162.121094 73.746094 Z M 163.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.613281 344.695312 C 214.613281 346.3125 212.183594 346.3125 212.183594 344.695312 C 212.183594 343.074219 214.613281 343.074219 214.613281 344.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.332031 97.21875 C 221.332031 98.835938 218.902344 98.835938 218.902344 97.21875 C 218.902344 95.597656 221.332031 95.597656 221.332031 97.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.933594 418.691406 L 150.566406 415.855469 L 147.296875 415.855469 Z M 148.933594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.675781 70.910156 L 165.3125 73.746094 L 162.039062 73.746094 Z M 163.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.121094 133.851562 C 201.121094 135.472656 198.691406 135.472656 198.691406 133.851562 C 198.691406 132.234375 201.121094 132.234375 201.121094 133.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.789062 244.332031 C 173.789062 245.953125 171.359375 245.953125 171.359375 244.332031 C 171.359375 242.710938 173.789062 242.710938 173.789062 244.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.144531 144.425781 C 243.144531 146.042969 240.714844 146.042969 240.714844 144.425781 C 240.714844 142.804688 243.144531 142.804688 243.144531 144.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.863281 418.691406 L 287.5 415.855469 L 284.226562 415.855469 Z M 285.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.808594 251.664062 C 309.808594 253.285156 307.378906 253.285156 307.378906 251.664062 C 307.378906 250.046875 309.808594 250.046875 309.808594 251.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.367188 285.945312 C 263.367188 287.566406 260.9375 287.566406 260.9375 285.945312 C 260.9375 284.324219 263.367188 284.324219 263.367188 285.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.785156 70.910156 L 195.421875 73.746094 L 192.148438 73.746094 Z M 193.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.410156 215.578125 C 261.410156 217.199219 258.980469 217.199219 258.980469 215.578125 C 258.980469 213.957031 261.410156 213.957031 261.410156 215.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.386719 168.753906 C 198.386719 170.371094 195.953125 170.371094 195.953125 168.753906 C 195.953125 167.132812 198.386719 167.132812 198.386719 168.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.316406 243.867188 C 320.316406 245.488281 317.886719 245.488281 317.886719 243.867188 C 317.886719 242.246094 320.316406 242.246094 320.316406 243.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.683594 209.445312 C 274.683594 211.0625 272.253906 211.0625 272.253906 209.445312 C 272.253906 207.824219 274.683594 207.824219 274.683594 209.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.515625 262.609375 C 340.515625 264.230469 338.085938 264.230469 338.085938 262.609375 C 338.085938 260.988281 340.515625 260.988281 340.515625 262.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.476562 274.40625 C 315.476562 276.027344 313.046875 276.027344 313.046875 274.40625 C 313.046875 272.785156 315.476562 272.785156 315.476562 274.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.621094 199.597656 C 251.621094 201.21875 249.191406 201.21875 249.191406 199.597656 C 249.191406 197.976562 251.621094 197.976562 251.621094 199.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.246094 236.53125 C 209.246094 238.152344 206.816406 238.152344 206.816406 236.53125 C 206.816406 234.910156 209.246094 234.910156 209.246094 236.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.699219 194.675781 C 236.699219 196.296875 234.269531 196.296875 234.269531 194.675781 C 234.269531 193.058594 236.699219 193.058594 236.699219 194.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.121094 257.796875 C 296.121094 259.417969 293.691406 259.417969 293.691406 257.796875 C 293.691406 256.175781 296.121094 256.175781 296.121094 257.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.117188 381.328125 C 177.117188 382.949219 174.6875 382.949219 174.6875 381.328125 C 174.6875 379.707031 177.117188 379.707031 177.117188 381.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.933594 269.78125 C 271.933594 271.402344 269.503906 271.402344 269.503906 269.78125 C 269.503906 268.160156 271.933594 268.160156 271.933594 269.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.03125 332.441406 C 284.03125 334.0625 281.601562 334.0625 281.601562 332.441406 C 281.601562 330.820312 284.03125 330.820312 284.03125 332.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.59375 252.171875 C 294.59375 253.792969 292.160156 253.792969 292.160156 252.171875 C 292.160156 250.550781 294.59375 250.550781 294.59375 252.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.449219 255.089844 C 217.449219 256.710938 215.015625 256.710938 215.015625 255.089844 C 215.015625 253.46875 217.449219 253.46875 217.449219 255.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.167969 367.707031 C 358.167969 369.328125 355.738281 369.328125 355.738281 367.707031 C 355.738281 366.085938 358.167969 366.085938 358.167969 367.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.238281 116.546875 C 119.238281 118.167969 116.808594 118.167969 116.808594 116.546875 C 116.808594 114.925781 119.238281 114.925781 119.238281 116.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.113281 372.164062 C 227.113281 373.785156 224.683594 373.785156 224.683594 372.164062 C 224.683594 370.542969 227.113281 370.542969 227.113281 372.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.273438 256.3125 C 249.273438 257.933594 246.84375 257.933594 246.84375 256.3125 C 246.84375 254.691406 249.273438 254.691406 249.273438 256.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.972656 235.863281 C 271.972656 237.484375 269.542969 237.484375 269.542969 235.863281 C 269.542969 234.246094 271.972656 234.246094 271.972656 235.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.636719 318.941406 C 256.636719 320.5625 254.207031 320.5625 254.207031 318.941406 C 254.207031 317.320312 256.636719 317.320312 256.636719 318.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.828125 173.269531 C 111.828125 174.890625 109.398438 174.890625 109.398438 173.269531 C 109.398438 171.648438 111.828125 171.648438 111.828125 173.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.199219 70.910156 L 146.835938 73.746094 L 143.5625 73.746094 Z M 145.199219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.667969 119.4375 C 265.667969 121.054688 263.238281 121.054688 263.238281 119.4375 C 263.238281 117.816406 265.667969 117.816406 265.667969 119.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.335938 125.089844 C 203.335938 126.710938 200.90625 126.710938 200.90625 125.089844 C 200.90625 123.46875 203.335938 123.46875 203.335938 125.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.261719 180.082031 C 215.261719 181.703125 212.832031 181.703125 212.832031 180.082031 C 212.832031 178.460938 215.261719 178.460938 215.261719 180.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.726562 249.539062 C 282.726562 251.15625 280.296875 251.15625 280.296875 249.539062 C 280.296875 247.917969 282.726562 247.917969 282.726562 249.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.75 340.128906 C 287.75 341.746094 285.320312 341.746094 285.320312 340.128906 C 285.320312 338.507812 287.75 338.507812 287.75 340.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.632812 249.839844 C 290.632812 251.460938 288.203125 251.460938 288.203125 249.839844 C 288.203125 248.21875 290.632812 248.21875 290.632812 249.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.015625 293.585938 C 289.015625 295.207031 286.585938 295.207031 286.585938 293.585938 C 286.585938 291.964844 289.015625 291.964844 289.015625 293.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.035156 263.945312 C 320.035156 265.566406 317.605469 265.566406 317.605469 263.945312 C 317.605469 262.324219 320.035156 262.324219 320.035156 263.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.804688 246.660156 C 216.804688 248.28125 214.375 248.28125 214.375 246.660156 C 214.375 245.039062 216.804688 245.039062 216.804688 246.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.804688 227.195312 C 316.804688 228.816406 314.375 228.816406 314.375 227.195312 C 314.375 225.574219 316.804688 225.574219 316.804688 227.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.484375 70.910156 L 154.117188 73.746094 L 150.847656 73.746094 Z M 152.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.457031 214.121094 C 219.457031 215.738281 217.027344 215.738281 217.027344 214.121094 C 217.027344 212.5 219.457031 212.5 219.457031 214.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.78125 247.753906 C 302.78125 249.375 300.351562 249.375 300.351562 247.753906 C 300.351562 246.132812 302.78125 246.132812 302.78125 247.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.539062 280.777344 C 262.539062 282.398438 260.109375 282.398438 260.109375 280.777344 C 260.109375 279.15625 262.539062 279.15625 262.539062 280.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.90625 288.664062 C 267.90625 290.285156 265.476562 290.285156 265.476562 288.664062 C 265.476562 287.042969 267.90625 287.042969 267.90625 288.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.808594 219.246094 C 293.808594 220.863281 291.378906 220.863281 291.378906 219.246094 C 291.378906 217.625 293.808594 217.625 293.808594 219.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.195312 254.800781 C 262.195312 256.421875 259.765625 256.421875 259.765625 254.800781 C 259.765625 253.183594 262.195312 253.183594 262.195312 254.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.289062 260.945312 C 189.289062 262.566406 186.859375 262.566406 186.859375 260.945312 C 186.859375 259.324219 189.289062 259.324219 189.289062 260.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.902344 70.910156 L 268.539062 73.746094 L 265.265625 73.746094 Z M 266.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.914062 243.710938 C 314.914062 245.332031 312.484375 245.332031 312.484375 243.710938 C 312.484375 242.089844 314.914062 242.089844 314.914062 243.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.835938 304.753906 C 187.835938 306.375 185.40625 306.375 185.40625 304.753906 C 185.40625 303.136719 187.835938 303.136719 187.835938 304.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.542969 149.273438 C 210.542969 150.894531 208.113281 150.894531 208.113281 149.273438 C 208.113281 147.652344 210.542969 147.652344 210.542969 149.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.535156 108.800781 C 194.535156 110.421875 192.101562 110.421875 192.101562 108.800781 C 192.101562 107.183594 194.535156 107.183594 194.535156 108.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.820312 251.003906 C 187.820312 252.625 185.386719 252.625 185.386719 251.003906 C 185.386719 249.382812 187.820312 249.382812 187.820312 251.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.210938 418.691406 L 296.847656 415.855469 L 293.578125 415.855469 Z M 295.210938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.476562 70.910156 L 209.113281 73.746094 L 205.839844 73.746094 Z M 207.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.066406 293.15625 C 245.066406 294.777344 242.636719 294.777344 242.636719 293.15625 C 242.636719 291.539062 245.066406 291.539062 245.066406 293.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.167969 203.355469 C 240.167969 204.976562 237.738281 204.976562 237.738281 203.355469 C 237.738281 201.734375 240.167969 201.734375 240.167969 203.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.046875 178.554688 C 273.046875 180.171875 270.617188 180.171875 270.617188 178.554688 C 270.617188 176.933594 273.046875 176.933594 273.046875 178.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.175781 151.386719 C 215.175781 153.007812 212.746094 153.007812 212.746094 151.386719 C 212.746094 149.769531 215.175781 149.769531 215.175781 151.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.316406 78.246094 C 264.316406 79.863281 261.886719 79.863281 261.886719 78.246094 C 261.886719 76.625 264.316406 76.625 264.316406 78.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.820312 256.179688 C 264.820312 257.800781 262.390625 257.800781 262.390625 256.179688 C 262.390625 254.5625 264.820312 254.5625 264.820312 256.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.355469 298.585938 C 286.355469 300.203125 283.925781 300.203125 283.925781 298.585938 C 283.925781 296.964844 286.355469 296.964844 286.355469 298.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.550781 241.582031 C 339.550781 243.203125 337.121094 243.203125 337.121094 241.582031 C 337.121094 239.964844 339.550781 239.964844 339.550781 241.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.476562 288.515625 C 215.476562 290.136719 213.046875 290.136719 213.046875 288.515625 C 213.046875 286.898438 215.476562 286.898438 215.476562 288.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.601562 317.007812 C 123.601562 318.628906 121.171875 318.628906 121.171875 317.007812 C 121.171875 315.386719 123.601562 315.386719 123.601562 317.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.671875 70.910156 L 193.308594 73.746094 L 190.039062 73.746094 Z M 191.671875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.667969 70.910156 L 176.304688 73.746094 L 173.03125 73.746094 Z M 174.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.148438 70.910156 L 175.785156 73.746094 L 172.511719 73.746094 Z M 174.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.890625 184.34375 C 212.890625 185.964844 210.460938 185.964844 210.460938 184.34375 C 210.460938 182.726562 212.890625 182.726562 212.890625 184.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.492188 195.351562 C 267.492188 196.972656 265.0625 196.972656 265.0625 195.351562 C 265.0625 193.730469 267.492188 193.730469 267.492188 195.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.480469 102.0625 C 149.480469 103.683594 147.050781 103.683594 147.050781 102.0625 C 147.050781 100.445312 149.480469 100.445312 149.480469 102.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.960938 358.457031 C 318.960938 360.078125 316.53125 360.078125 316.53125 358.457031 C 316.53125 356.835938 318.960938 356.835938 318.960938 358.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.375 277.984375 C 290.375 279.605469 287.945312 279.605469 287.945312 277.984375 C 287.945312 276.363281 290.375 276.363281 290.375 277.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.324219 171.542969 C 266.324219 173.164062 263.894531 173.164062 263.894531 171.542969 C 263.894531 169.925781 266.324219 169.925781 266.324219 171.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.765625 146.410156 C 166.765625 148.03125 164.335938 148.03125 164.335938 146.410156 C 164.335938 144.792969 166.765625 144.792969 166.765625 146.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.363281 305.503906 C 306.363281 307.125 303.929688 307.125 303.929688 305.503906 C 303.929688 303.882812 306.363281 303.882812 306.363281 305.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.507812 190.761719 C 305.507812 192.382812 303.074219 192.382812 303.074219 190.761719 C 303.074219 189.144531 305.507812 189.144531 305.507812 190.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.484375 303.351562 C 143.484375 304.972656 141.054688 304.972656 141.054688 303.351562 C 141.054688 301.730469 143.484375 301.730469 143.484375 303.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.769531 334.097656 C 167.769531 335.714844 165.339844 335.714844 165.339844 334.097656 C 165.339844 332.476562 167.769531 332.476562 167.769531 334.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.644531 70.910156 L 200.28125 73.746094 L 197.011719 73.746094 Z M 198.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 417.34375 202.398438 C 417.34375 204.019531 414.914062 204.019531 414.914062 202.398438 C 414.914062 200.777344 417.34375 200.777344 417.34375 202.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.777344 176.039062 C 295.777344 177.660156 293.347656 177.660156 293.347656 176.039062 C 293.347656 174.417969 295.777344 174.417969 295.777344 176.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.617188 268.386719 C 292.617188 270.007812 290.1875 270.007812 290.1875 268.386719 C 290.1875 266.765625 292.617188 266.765625 292.617188 268.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.855469 301.582031 C 307.855469 303.199219 305.425781 303.199219 305.425781 301.582031 C 305.425781 299.960938 307.855469 299.960938 307.855469 301.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.667969 418.691406 L 183.304688 415.855469 L 180.03125 415.855469 Z M 181.667969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.851562 285.398438 C 275.851562 287.019531 273.421875 287.019531 273.421875 285.398438 C 273.421875 283.777344 275.851562 283.777344 275.851562 285.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.410156 182.425781 C 296.410156 184.046875 293.980469 184.046875 293.980469 182.425781 C 293.980469 180.804688 296.410156 180.804688 296.410156 182.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.167969 223.441406 C 266.167969 225.0625 263.738281 225.0625 263.738281 223.441406 C 263.738281 221.820312 266.167969 221.820312 266.167969 223.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.890625 263.226562 C 145.890625 264.84375 143.460938 264.84375 143.460938 263.226562 C 143.460938 261.605469 145.890625 261.605469 145.890625 263.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.984375 365.503906 C 210.984375 367.125 208.554688 367.125 208.554688 365.503906 C 208.554688 363.882812 210.984375 363.882812 210.984375 365.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.941406 248.917969 C 266.941406 250.535156 264.507812 250.535156 264.507812 248.917969 C 264.507812 247.296875 266.941406 247.296875 266.941406 248.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.609375 247.210938 C 296.609375 248.832031 294.179688 248.832031 294.179688 247.210938 C 294.179688 245.589844 296.609375 245.589844 296.609375 247.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.347656 291.5625 C 266.347656 293.183594 263.917969 293.183594 263.917969 291.5625 C 263.917969 289.945312 266.347656 289.945312 266.347656 291.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.796875 165.109375 C 233.796875 166.730469 231.367188 166.730469 231.367188 165.109375 C 231.367188 163.488281 233.796875 163.488281 233.796875 165.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.15625 278.273438 C 315.15625 279.894531 312.726562 279.894531 312.726562 278.273438 C 312.726562 276.652344 315.15625 276.652344 315.15625 278.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.015625 272.753906 C 279.015625 274.375 276.585938 274.375 276.585938 272.753906 C 276.585938 271.132812 279.015625 271.132812 279.015625 272.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.765625 251.980469 C 308.765625 253.601562 306.335938 253.601562 306.335938 251.980469 C 306.335938 250.359375 308.765625 250.359375 308.765625 251.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.101562 278.816406 C 242.101562 280.433594 239.671875 280.433594 239.671875 278.816406 C 239.671875 277.195312 242.101562 277.195312 242.101562 278.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.136719 70.910156 L 279.773438 73.746094 L 276.5 73.746094 Z M 278.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.121094 165.808594 C 256.121094 167.429688 253.691406 167.429688 253.691406 165.808594 C 253.691406 164.1875 256.121094 164.1875 256.121094 165.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.613281 191.574219 C 220.613281 193.195312 218.183594 193.195312 218.183594 191.574219 C 218.183594 189.957031 220.613281 189.957031 220.613281 191.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.683594 245.976562 C 238.683594 247.597656 236.253906 247.597656 236.253906 245.976562 C 236.253906 244.359375 238.683594 244.359375 238.683594 245.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.214844 70.910156 L 209.851562 73.746094 L 206.578125 73.746094 Z M 208.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.753906 264.234375 C 268.753906 265.855469 266.324219 265.855469 266.324219 264.234375 C 266.324219 262.617188 268.753906 262.617188 268.753906 264.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.378906 286.125 C 300.378906 287.746094 297.949219 287.746094 297.949219 286.125 C 297.949219 284.503906 300.378906 284.503906 300.378906 286.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.351562 242.445312 C 264.351562 244.066406 261.921875 244.066406 261.921875 242.445312 C 261.921875 240.828125 264.351562 240.828125 264.351562 242.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.769531 246.3125 C 252.769531 247.933594 250.339844 247.933594 250.339844 246.3125 C 250.339844 244.691406 252.769531 244.691406 252.769531 246.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 403.175781 318.382812 C 403.175781 320.003906 400.742188 320.003906 400.742188 318.382812 C 400.742188 316.765625 403.175781 316.765625 403.175781 318.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.125 406.515625 C 284.125 408.132812 281.691406 408.132812 281.691406 406.515625 C 281.691406 404.894531 284.125 404.894531 284.125 406.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.335938 70.910156 L 164.972656 73.746094 L 161.699219 73.746094 Z M 163.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.535156 339.882812 C 260.535156 341.503906 258.105469 341.503906 258.105469 339.882812 C 258.105469 338.261719 260.535156 338.261719 260.535156 339.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.4375 368.371094 C 193.4375 369.992188 191.007812 369.992188 191.007812 368.371094 C 191.007812 366.75 193.4375 366.75 193.4375 368.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.503906 303.207031 C 251.503906 304.828125 249.074219 304.828125 249.074219 303.207031 C 249.074219 301.585938 251.503906 301.585938 251.503906 303.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.042969 298.339844 C 284.042969 299.957031 281.613281 299.957031 281.613281 298.339844 C 281.613281 296.71875 284.042969 296.71875 284.042969 298.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.753906 259.046875 C 203.753906 260.664062 201.324219 260.664062 201.324219 259.046875 C 201.324219 257.425781 203.753906 257.425781 203.753906 259.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.402344 217.785156 C 232.402344 219.402344 229.972656 219.402344 229.972656 217.785156 C 229.972656 216.164062 232.402344 216.164062 232.402344 217.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.757812 70.910156 L 201.394531 73.746094 L 198.121094 73.746094 Z M 199.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.78125 215.789062 C 291.78125 217.40625 289.351562 217.40625 289.351562 215.789062 C 289.351562 214.167969 291.78125 214.167969 291.78125 215.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.257812 70.910156 L 151.894531 73.746094 L 148.621094 73.746094 Z M 150.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.925781 255.707031 C 279.925781 257.328125 277.496094 257.328125 277.496094 255.707031 C 277.496094 254.085938 279.925781 254.085938 279.925781 255.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.546875 291.226562 C 299.546875 292.847656 297.117188 292.847656 297.117188 291.226562 C 297.117188 289.609375 299.546875 289.609375 299.546875 291.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.417969 134.945312 C 299.417969 136.566406 296.988281 136.566406 296.988281 134.945312 C 296.988281 133.324219 299.417969 133.324219 299.417969 134.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.957031 278.90625 C 201.957031 280.527344 199.527344 280.527344 199.527344 278.90625 C 199.527344 277.289062 201.957031 277.289062 201.957031 278.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.679688 338.40625 C 154.679688 340.023438 152.25 340.023438 152.25 338.40625 C 152.25 336.785156 154.679688 336.785156 154.679688 338.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.914062 95.027344 C 230.914062 96.648438 228.484375 96.648438 228.484375 95.027344 C 228.484375 93.40625 230.914062 93.40625 230.914062 95.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.511719 153.304688 C 222.511719 154.925781 220.082031 154.925781 220.082031 153.304688 C 220.082031 151.683594 222.511719 151.683594 222.511719 153.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.261719 70.910156 L 207.898438 73.746094 L 204.625 73.746094 Z M 206.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.648438 380.753906 C 181.648438 382.375 179.21875 382.375 179.21875 380.753906 C 179.21875 379.136719 181.648438 379.136719 181.648438 380.753906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.664062 70.910156 L 174.300781 73.746094 L 171.027344 73.746094 Z M 172.664062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.101562 70.910156 L 288.738281 73.746094 L 285.464844 73.746094 Z M 287.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.398438 213.667969 C 307.398438 215.289062 304.96875 215.289062 304.96875 213.667969 C 304.96875 212.050781 307.398438 212.050781 307.398438 213.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.546875 260.078125 C 264.546875 261.699219 262.117188 261.699219 262.117188 260.078125 C 262.117188 258.460938 264.546875 258.460938 264.546875 260.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.589844 151.75 C 175.589844 153.371094 173.160156 153.371094 173.160156 151.75 C 173.160156 150.132812 175.589844 150.132812 175.589844 151.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.917969 249.503906 C 275.917969 251.125 273.488281 251.125 273.488281 249.503906 C 273.488281 247.882812 275.917969 247.882812 275.917969 249.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.441406 264.628906 C 273.441406 266.25 271.011719 266.25 271.011719 264.628906 C 271.011719 263.011719 273.441406 263.011719 273.441406 264.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.289062 249.148438 C 241.289062 250.765625 238.859375 250.765625 238.859375 249.148438 C 238.859375 247.527344 241.289062 247.527344 241.289062 249.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.066406 161.085938 C 133.066406 162.707031 130.636719 162.707031 130.636719 161.085938 C 130.636719 159.464844 133.066406 159.464844 133.066406 161.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.25 271.460938 C 272.25 273.082031 269.820312 273.082031 269.820312 271.460938 C 269.820312 269.839844 272.25 269.839844 272.25 271.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305 332.066406 C 305 333.683594 302.570312 333.683594 302.570312 332.066406 C 302.570312 330.445312 305 330.445312 305 332.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.371094 235.417969 C 246.371094 237.039062 243.941406 237.039062 243.941406 235.417969 C 243.941406 233.796875 246.371094 233.796875 246.371094 235.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.945312 228.664062 C 254.945312 230.285156 252.515625 230.285156 252.515625 228.664062 C 252.515625 227.042969 254.945312 227.042969 254.945312 228.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.328125 70.910156 L 185.964844 73.746094 L 182.695312 73.746094 Z M 184.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.46875 304.988281 C 154.46875 306.609375 152.039062 306.609375 152.039062 304.988281 C 152.039062 303.371094 154.46875 303.371094 154.46875 304.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.878906 210.664062 C 209.878906 212.285156 207.449219 212.285156 207.449219 210.664062 C 207.449219 209.046875 209.878906 209.046875 209.878906 210.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.871094 309.9375 C 158.871094 311.558594 156.441406 311.558594 156.441406 309.9375 C 156.441406 308.316406 158.871094 308.316406 158.871094 309.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.070312 237.476562 C 303.070312 239.097656 300.640625 239.097656 300.640625 237.476562 C 300.640625 235.855469 303.070312 235.855469 303.070312 237.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.519531 410.914062 C 274.519531 412.535156 272.089844 412.535156 272.089844 410.914062 C 272.089844 409.292969 274.519531 409.292969 274.519531 410.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.144531 138.730469 C 157.144531 140.351562 154.714844 140.351562 154.714844 138.730469 C 154.714844 137.113281 157.144531 137.113281 157.144531 138.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.714844 416.472656 C 259.714844 418.09375 257.285156 418.09375 257.285156 416.472656 C 257.285156 414.855469 259.714844 414.855469 259.714844 416.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.929688 418.691406 L 220.566406 415.855469 L 217.292969 415.855469 Z M 218.929688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.398438 251.183594 C 218.398438 252.804688 215.96875 252.804688 215.96875 251.183594 C 215.96875 249.566406 218.398438 249.566406 218.398438 251.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.277344 171.902344 C 235.277344 173.523438 232.847656 173.523438 232.847656 171.902344 C 232.847656 170.28125 235.277344 170.28125 235.277344 171.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.726562 210.84375 C 160.726562 212.460938 158.296875 212.460938 158.296875 210.84375 C 158.296875 209.222656 160.726562 209.222656 160.726562 210.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.109375 219.800781 C 258.109375 221.421875 255.675781 221.421875 255.675781 219.800781 C 255.675781 218.183594 258.109375 218.183594 258.109375 219.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.222656 79.675781 C 214.222656 81.292969 211.792969 81.292969 211.792969 79.675781 C 211.792969 78.054688 214.222656 78.054688 214.222656 79.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 355.597656 398.222656 C 355.597656 399.84375 353.167969 399.84375 353.167969 398.222656 C 353.167969 396.601562 355.597656 396.601562 355.597656 398.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.027344 70.910156 L 138.664062 73.746094 L 135.390625 73.746094 Z M 137.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.1875 194.886719 C 320.1875 196.507812 317.757812 196.507812 317.757812 194.886719 C 317.757812 193.265625 320.1875 193.265625 320.1875 194.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.199219 236.285156 C 330.199219 237.90625 327.769531 237.90625 327.769531 236.285156 C 327.769531 234.664062 330.199219 234.664062 330.199219 236.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.019531 113.402344 C 255.019531 115.023438 252.589844 115.023438 252.589844 113.402344 C 252.589844 111.785156 255.019531 111.785156 255.019531 113.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.984375 95.863281 C 210.984375 97.480469 208.550781 97.480469 208.550781 95.863281 C 208.550781 94.242188 210.984375 94.242188 210.984375 95.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.140625 70.910156 L 155.777344 73.746094 L 152.507812 73.746094 Z M 154.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.792969 304.75 C 312.792969 306.371094 310.363281 306.371094 310.363281 304.75 C 310.363281 303.132812 312.792969 303.132812 312.792969 304.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.761719 209.667969 C 285.761719 211.289062 283.332031 211.289062 283.332031 209.667969 C 283.332031 208.046875 285.761719 208.046875 285.761719 209.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.394531 70.910156 L 248.03125 73.746094 L 244.757812 73.746094 Z M 246.394531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.488281 361.699219 C 241.488281 363.316406 239.058594 363.316406 239.058594 361.699219 C 239.058594 360.078125 241.488281 360.078125 241.488281 361.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.175781 203.847656 C 277.175781 205.464844 274.746094 205.464844 274.746094 203.847656 C 274.746094 202.226562 277.175781 202.226562 277.175781 203.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.378906 70.910156 L 132.015625 73.746094 L 128.742188 73.746094 Z M 130.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.792969 226.34375 C 238.792969 227.964844 236.359375 227.964844 236.359375 226.34375 C 236.359375 224.722656 238.792969 224.722656 238.792969 226.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.871094 241.425781 C 265.871094 243.042969 263.441406 243.042969 263.441406 241.425781 C 263.441406 239.804688 265.871094 239.804688 265.871094 241.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.296875 261.5625 C 222.296875 263.183594 219.867188 263.183594 219.867188 261.5625 C 219.867188 259.945312 222.296875 259.945312 222.296875 261.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.253906 247.058594 C 320.253906 248.675781 317.824219 248.675781 317.824219 247.058594 C 317.824219 245.4375 320.253906 245.4375 320.253906 247.058594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.796875 70.910156 L 181.429688 73.746094 L 178.160156 73.746094 Z M 179.796875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.449219 70.910156 L 310.085938 73.746094 L 306.8125 73.746094 Z M 308.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.925781 283.242188 C 268.925781 284.863281 266.496094 284.863281 266.496094 283.242188 C 266.496094 281.625 268.925781 281.625 268.925781 283.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.417969 266.910156 C 254.417969 268.53125 251.988281 268.53125 251.988281 266.910156 C 251.988281 265.289062 254.417969 265.289062 254.417969 266.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.519531 274.210938 C 298.519531 275.832031 296.089844 275.832031 296.089844 274.210938 C 296.089844 272.589844 298.519531 272.589844 298.519531 274.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.75 337.472656 C 245.75 339.09375 243.320312 339.09375 243.320312 337.472656 C 243.320312 335.851562 245.75 335.851562 245.75 337.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.816406 234.960938 C 282.816406 236.582031 280.386719 236.582031 280.386719 234.960938 C 280.386719 233.34375 282.816406 233.34375 282.816406 234.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.859375 261.875 C 283.859375 263.492188 281.429688 263.492188 281.429688 261.875 C 281.429688 260.253906 283.859375 260.253906 283.859375 261.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.574219 70.910156 L 221.210938 73.746094 L 217.9375 73.746094 Z M 219.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.589844 172.882812 C 248.589844 174.503906 246.160156 174.503906 246.160156 172.882812 C 246.160156 171.261719 248.589844 171.261719 248.589844 172.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.105469 246.832031 C 232.105469 248.453125 229.675781 248.453125 229.675781 246.832031 C 229.675781 245.214844 232.105469 245.214844 232.105469 246.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.898438 281.378906 C 239.898438 283 237.46875 283 237.46875 281.378906 C 237.46875 279.761719 239.898438 279.761719 239.898438 281.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.09375 304.953125 C 213.09375 306.574219 210.664062 306.574219 210.664062 304.953125 C 210.664062 303.332031 213.09375 303.332031 213.09375 304.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.816406 245.070312 C 291.816406 246.691406 289.386719 246.691406 289.386719 245.070312 C 289.386719 243.449219 291.816406 243.449219 291.816406 245.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.011719 290.878906 C 268.011719 292.496094 265.582031 292.496094 265.582031 290.878906 C 265.582031 289.257812 268.011719 289.257812 268.011719 290.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.496094 306.917969 C 151.496094 308.539062 149.066406 308.539062 149.066406 306.917969 C 149.066406 305.296875 151.496094 305.296875 151.496094 306.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.3125 229.921875 C 239.3125 231.542969 236.882812 231.542969 236.882812 229.921875 C 236.882812 228.300781 239.3125 228.300781 239.3125 229.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.667969 216.035156 C 273.667969 217.65625 271.238281 217.65625 271.238281 216.035156 C 271.238281 214.414062 273.667969 214.414062 273.667969 216.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.417969 70.910156 L 167.054688 73.746094 L 163.78125 73.746094 Z M 165.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.503906 158.996094 C 170.503906 160.617188 168.074219 160.617188 168.074219 158.996094 C 168.074219 157.378906 170.503906 157.378906 170.503906 158.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.488281 263.042969 C 256.488281 264.660156 254.058594 264.660156 254.058594 263.042969 C 254.058594 261.421875 256.488281 261.421875 256.488281 263.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.363281 218.207031 C 226.363281 219.828125 223.933594 219.828125 223.933594 218.207031 C 223.933594 216.585938 226.363281 216.585938 226.363281 218.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.339844 418.691406 L 320.976562 415.855469 L 317.703125 415.855469 Z M 319.339844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.085938 223.515625 C 265.085938 225.132812 262.65625 225.132812 262.65625 223.515625 C 262.65625 221.894531 265.085938 221.894531 265.085938 223.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.585938 191.414062 C 289.585938 193.035156 287.15625 193.035156 287.15625 191.414062 C 287.15625 189.792969 289.585938 189.792969 289.585938 191.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.425781 70.910156 L 194.0625 73.746094 L 190.789062 73.746094 Z M 192.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.515625 317.847656 C 245.515625 319.46875 243.085938 319.46875 243.085938 317.847656 C 243.085938 316.226562 245.515625 316.226562 245.515625 317.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.207031 322.644531 C 232.207031 324.261719 229.777344 324.261719 229.777344 322.644531 C 229.777344 321.023438 232.207031 321.023438 232.207031 322.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.222656 280.832031 C 167.222656 282.449219 164.792969 282.449219 164.792969 280.832031 C 164.792969 279.210938 167.222656 279.210938 167.222656 280.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.414062 266.972656 C 278.414062 268.59375 275.984375 268.59375 275.984375 266.972656 C 275.984375 265.351562 278.414062 265.351562 278.414062 266.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.867188 215.289062 C 248.867188 216.910156 246.4375 216.910156 246.4375 215.289062 C 246.4375 213.667969 248.867188 213.667969 248.867188 215.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.1875 341.570312 C 310.1875 343.1875 307.757812 343.1875 307.757812 341.570312 C 307.757812 339.949219 310.1875 339.949219 310.1875 341.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.375 154.863281 C 343.375 156.480469 340.945312 156.480469 340.945312 154.863281 C 340.945312 153.242188 343.375 153.242188 343.375 154.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.597656 336.542969 C 241.597656 338.164062 239.167969 338.164062 239.167969 336.542969 C 239.167969 334.925781 241.597656 334.925781 241.597656 336.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.644531 267.140625 C 311.644531 268.761719 309.214844 268.761719 309.214844 267.140625 C 309.214844 265.523438 311.644531 265.523438 311.644531 267.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.382812 418.691406 L 238.019531 415.855469 L 234.746094 415.855469 Z M 236.382812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.449219 223.507812 C 257.449219 225.125 255.019531 225.125 255.019531 223.507812 C 255.019531 221.886719 257.449219 221.886719 257.449219 223.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.101562 337.445312 C 307.101562 339.066406 304.671875 339.066406 304.671875 337.445312 C 304.671875 335.828125 307.101562 335.828125 307.101562 337.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.980469 294.628906 C 267.980469 296.25 265.550781 296.25 265.550781 294.628906 C 265.550781 293.007812 267.980469 293.007812 267.980469 294.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.453125 273.929688 C 284.453125 275.550781 282.023438 275.550781 282.023438 273.929688 C 282.023438 272.3125 284.453125 272.3125 284.453125 273.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.480469 235.578125 C 245.480469 237.199219 243.050781 237.199219 243.050781 235.578125 C 243.050781 233.957031 245.480469 233.957031 245.480469 235.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.773438 266.9375 C 271.773438 268.558594 269.34375 268.558594 269.34375 266.9375 C 269.34375 265.316406 271.773438 265.316406 271.773438 266.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.191406 113.046875 C 231.191406 114.664062 228.761719 114.664062 228.761719 113.046875 C 228.761719 111.425781 231.191406 111.425781 231.191406 113.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.648438 238.839844 C 314.648438 240.460938 312.21875 240.460938 312.21875 238.839844 C 312.21875 237.21875 314.648438 237.21875 314.648438 238.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.828125 281.273438 C 307.828125 282.890625 305.398438 282.890625 305.398438 281.273438 C 305.398438 279.652344 307.828125 279.652344 307.828125 281.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.878906 279.292969 C 272.878906 280.914062 270.449219 280.914062 270.449219 279.292969 C 270.449219 277.675781 272.878906 277.675781 272.878906 279.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.953125 153.003906 C 272.953125 154.625 270.523438 154.625 270.523438 153.003906 C 270.523438 151.386719 272.953125 151.386719 272.953125 153.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.625 248.589844 C 129.625 250.210938 127.195312 250.210938 127.195312 248.589844 C 127.195312 246.96875 129.625 246.96875 129.625 248.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.507812 70.910156 L 131.144531 73.746094 L 127.871094 73.746094 Z M 129.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.011719 253.789062 C 275.011719 255.410156 272.578125 255.410156 272.578125 253.789062 C 272.578125 252.171875 275.011719 252.171875 275.011719 253.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.621094 319.972656 C 213.621094 321.59375 211.191406 321.59375 211.191406 319.972656 C 211.191406 318.351562 213.621094 318.351562 213.621094 319.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.054688 297.03125 C 198.054688 298.648438 195.625 298.648438 195.625 297.03125 C 195.625 295.410156 198.054688 295.410156 198.054688 297.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.945312 70.910156 L 205.582031 73.746094 L 202.308594 73.746094 Z M 203.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.289062 70.910156 L 165.921875 73.746094 L 162.652344 73.746094 Z M 164.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.191406 70.910156 L 194.828125 73.746094 L 191.554688 73.746094 Z M 193.191406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.253906 70.910156 L 133.886719 73.746094 L 130.617188 73.746094 Z M 132.253906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.070312 70.910156 L 177.707031 73.746094 L 174.433594 73.746094 Z M 176.070312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.09375 418.691406 L 154.730469 415.855469 L 151.457031 415.855469 Z M 153.09375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.582031 70.910156 L 150.21875 73.746094 L 146.945312 73.746094 Z M 148.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.03125 307.992188 C 225.03125 309.613281 222.601562 309.613281 222.601562 307.992188 C 222.601562 306.371094 225.03125 306.371094 225.03125 307.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.320312 375.285156 C 204.320312 376.90625 201.890625 376.90625 201.890625 375.285156 C 201.890625 373.667969 204.320312 373.667969 204.320312 375.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.355469 418.691406 L 194.992188 415.855469 L 191.71875 415.855469 Z M 193.355469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.609375 70.910156 L 224.246094 73.746094 L 220.972656 73.746094 Z M 222.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.398438 189.160156 C 300.398438 190.777344 297.964844 190.777344 297.964844 189.160156 C 297.964844 187.539062 300.398438 187.539062 300.398438 189.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.09375 192.578125 C 323.09375 194.199219 320.664062 194.199219 320.664062 192.578125 C 320.664062 190.960938 323.09375 190.960938 323.09375 192.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.824219 201.738281 C 283.824219 203.359375 281.394531 203.359375 281.394531 201.738281 C 281.394531 200.121094 283.824219 200.121094 283.824219 201.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.972656 193.25 C 207.972656 194.871094 205.539062 194.871094 205.539062 193.25 C 205.539062 191.632812 207.972656 191.632812 207.972656 193.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.464844 168.09375 C 180.464844 169.714844 178.035156 169.714844 178.035156 168.09375 C 178.035156 166.476562 180.464844 166.476562 180.464844 168.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.675781 291.582031 C 289.675781 293.199219 287.246094 293.199219 287.246094 291.582031 C 287.246094 289.960938 289.675781 289.960938 289.675781 291.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.484375 254.015625 C 271.484375 255.636719 269.054688 255.636719 269.054688 254.015625 C 269.054688 252.398438 271.484375 252.398438 271.484375 254.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.8125 280.609375 C 297.8125 282.226562 295.382812 282.226562 295.382812 280.609375 C 295.382812 278.988281 297.8125 278.988281 297.8125 280.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.539062 307.9375 C 260.539062 309.558594 258.109375 309.558594 258.109375 307.9375 C 258.109375 306.320312 260.539062 306.320312 260.539062 307.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.371094 281.605469 C 271.371094 283.226562 268.941406 283.226562 268.941406 281.605469 C 268.941406 279.988281 271.371094 279.988281 271.371094 281.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.421875 257.175781 C 304.421875 258.792969 301.992188 258.792969 301.992188 257.175781 C 301.992188 255.554688 304.421875 255.554688 304.421875 257.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.125 273.894531 C 246.125 275.515625 243.695312 275.515625 243.695312 273.894531 C 243.695312 272.277344 246.125 272.277344 246.125 273.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.40625 128.671875 C 362.40625 130.292969 359.976562 130.292969 359.976562 128.671875 C 359.976562 127.050781 362.40625 127.050781 362.40625 128.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.292969 295.160156 C 258.292969 296.78125 255.863281 296.78125 255.863281 295.160156 C 255.863281 293.542969 258.292969 293.542969 258.292969 295.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.683594 178.265625 C 213.683594 179.886719 211.253906 179.886719 211.253906 178.265625 C 211.253906 176.644531 213.683594 176.644531 213.683594 178.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.984375 296.203125 C 304.984375 297.824219 302.550781 297.824219 302.550781 296.203125 C 302.550781 294.585938 304.984375 294.585938 304.984375 296.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.144531 194.867188 C 263.144531 196.488281 260.714844 196.488281 260.714844 194.867188 C 260.714844 193.25 263.144531 193.25 263.144531 194.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.71875 190.53125 C 266.71875 192.152344 264.289062 192.152344 264.289062 190.53125 C 264.289062 188.910156 266.71875 188.910156 266.71875 190.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.984375 208.628906 C 323.984375 210.25 321.554688 210.25 321.554688 208.628906 C 321.554688 207.011719 323.984375 207.011719 323.984375 208.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.363281 253.699219 C 247.363281 255.320312 244.933594 255.320312 244.933594 253.699219 C 244.933594 252.078125 247.363281 252.078125 247.363281 253.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.785156 303.710938 C 231.785156 305.328125 229.355469 305.328125 229.355469 303.710938 C 229.355469 302.089844 231.785156 302.089844 231.785156 303.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.410156 230.160156 C 267.410156 231.78125 264.980469 231.78125 264.980469 230.160156 C 264.980469 228.542969 267.410156 228.542969 267.410156 230.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.738281 211.816406 C 207.738281 213.433594 205.308594 213.433594 205.308594 211.816406 C 205.308594 210.195312 207.738281 210.195312 207.738281 211.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.546875 418.691406 L 265.183594 415.855469 L 261.910156 415.855469 Z M 263.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.503906 262.953125 C 291.503906 264.574219 289.074219 264.574219 289.074219 262.953125 C 289.074219 261.332031 291.503906 261.332031 291.503906 262.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.949219 325.660156 C 237.949219 327.28125 235.519531 327.28125 235.519531 325.660156 C 235.519531 324.039062 237.949219 324.039062 237.949219 325.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.746094 210.203125 C 221.746094 211.824219 219.316406 211.824219 219.316406 210.203125 C 219.316406 208.582031 221.746094 208.582031 221.746094 210.203125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.667969 418.691406 L 155.300781 415.855469 L 152.03125 415.855469 Z M 153.667969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.691406 418.691406 L 169.328125 415.855469 L 166.054688 415.855469 Z M 167.691406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.316406 312.007812 C 253.316406 313.628906 250.886719 313.628906 250.886719 312.007812 C 250.886719 310.390625 253.316406 310.390625 253.316406 312.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.484375 258.644531 C 211.484375 260.265625 209.054688 260.265625 209.054688 258.644531 C 209.054688 257.027344 211.484375 257.027344 211.484375 258.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.117188 264.367188 C 323.117188 265.988281 320.6875 265.988281 320.6875 264.367188 C 320.6875 262.75 323.117188 262.75 323.117188 264.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.332031 70.910156 L 159.96875 73.746094 L 156.695312 73.746094 Z M 158.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.441406 70.910156 L 137.078125 73.746094 L 133.804688 73.746094 Z M 135.441406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.242188 70.910156 L 161.878906 73.746094 L 158.605469 73.746094 Z M 160.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.863281 166.800781 C 264.863281 168.417969 262.433594 168.417969 262.433594 166.800781 C 262.433594 165.179688 264.863281 165.179688 264.863281 166.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.046875 70.910156 L 137.683594 73.746094 L 134.410156 73.746094 Z M 136.046875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.128906 70.910156 L 229.765625 73.746094 L 226.492188 73.746094 Z M 228.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.773438 189.421875 C 273.773438 191.042969 271.34375 191.042969 271.34375 189.421875 C 271.34375 187.800781 273.773438 187.800781 273.773438 189.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.851562 178.054688 C 212.851562 179.675781 210.421875 179.675781 210.421875 178.054688 C 210.421875 176.433594 212.851562 176.433594 212.851562 178.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.449219 217.160156 C 309.449219 218.78125 307.019531 218.78125 307.019531 217.160156 C 307.019531 215.539062 309.449219 215.539062 309.449219 217.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.046875 328.578125 C 294.046875 330.195312 291.617188 330.195312 291.617188 328.578125 C 291.617188 326.957031 294.046875 326.957031 294.046875 328.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.582031 70.910156 L 191.21875 73.746094 L 187.945312 73.746094 Z M 189.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.339844 317.726562 C 294.339844 319.347656 291.910156 319.347656 291.910156 317.726562 C 291.910156 316.109375 294.339844 316.109375 294.339844 317.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.578125 212.835938 C 243.578125 214.457031 241.144531 214.457031 241.144531 212.835938 C 241.144531 211.214844 243.578125 211.214844 243.578125 212.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.6875 211.410156 C 307.6875 213.03125 305.257812 213.03125 305.257812 211.410156 C 305.257812 209.792969 307.6875 209.792969 307.6875 211.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.96875 288.453125 C 214.96875 290.074219 212.535156 290.074219 212.535156 288.453125 C 212.535156 286.832031 214.96875 286.832031 214.96875 288.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.410156 307.148438 C 238.410156 308.765625 235.980469 308.765625 235.980469 307.148438 C 235.980469 305.527344 238.410156 305.527344 238.410156 307.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.257812 218.429688 C 191.257812 220.046875 188.828125 220.046875 188.828125 218.429688 C 188.828125 216.808594 191.257812 216.808594 191.257812 218.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.464844 244.980469 C 296.464844 246.597656 294.035156 246.597656 294.035156 244.980469 C 294.035156 243.359375 296.464844 243.359375 296.464844 244.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.820312 212.644531 C 289.820312 214.265625 287.390625 214.265625 287.390625 212.644531 C 287.390625 211.023438 289.820312 211.023438 289.820312 212.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.8125 107.699219 C 273.8125 109.320312 271.382812 109.320312 271.382812 107.699219 C 271.382812 106.078125 273.8125 106.078125 273.8125 107.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.691406 260.109375 C 167.691406 261.730469 165.261719 261.730469 165.261719 260.109375 C 165.261719 258.488281 167.691406 258.488281 167.691406 260.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.074219 120.933594 C 183.074219 122.554688 180.644531 122.554688 180.644531 120.933594 C 180.644531 119.316406 183.074219 119.316406 183.074219 120.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.6875 261.796875 C 191.6875 263.417969 189.257812 263.417969 189.257812 261.796875 C 189.257812 260.179688 191.6875 260.179688 191.6875 261.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.433594 309.640625 C 268.433594 311.261719 266 311.261719 266 309.640625 C 266 308.023438 268.433594 308.023438 268.433594 309.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.527344 281.644531 C 167.527344 283.265625 165.097656 283.265625 165.097656 281.644531 C 165.097656 280.023438 167.527344 280.023438 167.527344 281.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.65625 254.015625 C 221.65625 255.632812 219.226562 255.632812 219.226562 254.015625 C 219.226562 252.394531 221.65625 252.394531 221.65625 254.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.707031 207.515625 C 243.707031 209.132812 241.277344 209.132812 241.277344 207.515625 C 241.277344 205.894531 243.707031 205.894531 243.707031 207.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.921875 185.273438 C 234.921875 186.894531 232.492188 186.894531 232.492188 185.273438 C 232.492188 183.652344 234.921875 183.652344 234.921875 185.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.753906 182.148438 C 265.753906 183.769531 263.324219 183.769531 263.324219 182.148438 C 263.324219 180.53125 265.753906 180.53125 265.753906 182.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.753906 246.355469 C 323.753906 247.976562 321.324219 247.976562 321.324219 246.355469 C 321.324219 244.738281 323.753906 244.738281 323.753906 246.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.402344 133.3125 C 132.402344 134.929688 129.972656 134.929688 129.972656 133.3125 C 129.972656 131.691406 132.402344 131.691406 132.402344 133.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.90625 115.359375 C 252.90625 116.980469 250.476562 116.980469 250.476562 115.359375 C 250.476562 113.738281 252.90625 113.738281 252.90625 115.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.257812 302.332031 C 289.257812 303.949219 286.828125 303.949219 286.828125 302.332031 C 286.828125 300.710938 289.257812 300.710938 289.257812 302.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.800781 325.203125 C 278.800781 326.824219 276.371094 326.824219 276.371094 325.203125 C 276.371094 323.585938 278.800781 323.585938 278.800781 325.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.609375 242.695312 C 291.609375 244.3125 289.179688 244.3125 289.179688 242.695312 C 289.179688 241.074219 291.609375 241.074219 291.609375 242.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.578125 70.910156 L 194.214844 73.746094 L 190.941406 73.746094 Z M 192.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.296875 204.421875 C 247.296875 206.042969 244.867188 206.042969 244.867188 204.421875 C 244.867188 202.804688 247.296875 202.804688 247.296875 204.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.421875 294.394531 C 180.421875 296.015625 177.992188 296.015625 177.992188 294.394531 C 177.992188 292.773438 180.421875 292.773438 180.421875 294.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.480469 254.851562 C 208.480469 256.472656 206.050781 256.472656 206.050781 254.851562 C 206.050781 253.234375 208.480469 253.234375 208.480469 254.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.035156 292.769531 C 272.035156 294.386719 269.605469 294.386719 269.605469 292.769531 C 269.605469 291.148438 272.035156 291.148438 272.035156 292.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.554688 251.304688 C 293.554688 252.925781 291.125 252.925781 291.125 251.304688 C 291.125 249.6875 293.554688 249.6875 293.554688 251.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.222656 253.679688 C 238.222656 255.300781 235.792969 255.300781 235.792969 253.679688 C 235.792969 252.058594 238.222656 252.058594 238.222656 253.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.578125 296.402344 C 255.578125 298.023438 253.148438 298.023438 253.148438 296.402344 C 253.148438 294.78125 255.578125 294.78125 255.578125 296.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.960938 267.113281 C 271.960938 268.734375 269.53125 268.734375 269.53125 267.113281 C 269.53125 265.492188 271.960938 265.492188 271.960938 267.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.671875 155.480469 C 113.671875 157.097656 111.242188 157.097656 111.242188 155.480469 C 111.242188 153.859375 113.671875 153.859375 113.671875 155.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.679688 257.898438 C 272.679688 259.519531 270.25 259.519531 270.25 257.898438 C 270.25 256.28125 272.679688 256.28125 272.679688 257.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.996094 261.957031 C 265.996094 263.578125 263.5625 263.578125 263.5625 261.957031 C 263.5625 260.335938 265.996094 260.335938 265.996094 261.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.789062 178.167969 C 252.789062 179.785156 250.359375 179.785156 250.359375 178.167969 C 250.359375 176.546875 252.789062 176.546875 252.789062 178.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.109375 418.691406 L 317.746094 415.855469 L 314.472656 415.855469 Z M 316.109375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.1875 346.277344 C 271.1875 347.894531 268.757812 347.894531 268.757812 346.277344 C 268.757812 344.65625 271.1875 344.65625 271.1875 346.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.207031 408.867188 C 264.207031 410.488281 261.777344 410.488281 261.777344 408.867188 C 261.777344 407.246094 264.207031 407.246094 264.207031 408.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.609375 255.382812 C 277.609375 257.003906 275.179688 257.003906 275.179688 255.382812 C 275.179688 253.765625 277.609375 253.765625 277.609375 255.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.925781 236.0625 C 253.925781 237.683594 251.496094 237.683594 251.496094 236.0625 C 251.496094 234.441406 253.925781 234.441406 253.925781 236.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.359375 234.964844 C 250.359375 236.585938 247.929688 236.585938 247.929688 234.964844 C 247.929688 233.34375 250.359375 233.34375 250.359375 234.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.132812 405.546875 C 277.132812 407.167969 274.703125 407.167969 274.703125 405.546875 C 274.703125 403.929688 277.132812 403.929688 277.132812 405.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.613281 284.394531 C 223.613281 286.015625 221.179688 286.015625 221.179688 284.394531 C 221.179688 282.773438 223.613281 282.773438 223.613281 284.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.804688 361.332031 C 251.804688 362.949219 249.375 362.949219 249.375 361.332031 C 249.375 359.710938 251.804688 359.710938 251.804688 361.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.164062 305.617188 C 293.164062 307.234375 290.734375 307.234375 290.734375 305.617188 C 290.734375 303.996094 293.164062 303.996094 293.164062 305.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.707031 297.730469 C 264.707031 299.351562 262.277344 299.351562 262.277344 297.730469 C 262.277344 296.109375 264.707031 296.109375 264.707031 297.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.710938 136.621094 C 235.710938 138.238281 233.28125 138.238281 233.28125 136.621094 C 233.28125 135 235.710938 135 235.710938 136.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.832031 286.425781 C 132.832031 288.046875 130.402344 288.046875 130.402344 286.425781 C 130.402344 284.808594 132.832031 284.808594 132.832031 286.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.800781 217.691406 C 244.800781 219.3125 242.371094 219.3125 242.371094 217.691406 C 242.371094 216.070312 244.800781 216.070312 244.800781 217.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.972656 275.203125 C 297.972656 276.824219 295.542969 276.824219 295.542969 275.203125 C 295.542969 273.585938 297.972656 273.585938 297.972656 275.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.402344 370.5 C 234.402344 372.121094 231.972656 372.121094 231.972656 370.5 C 231.972656 368.882812 234.402344 368.882812 234.402344 370.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.855469 373.9375 C 212.855469 375.558594 210.425781 375.558594 210.425781 373.9375 C 210.425781 372.320312 212.855469 372.320312 212.855469 373.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.175781 168.101562 C 170.175781 169.722656 167.746094 169.722656 167.746094 168.101562 C 167.746094 166.484375 170.175781 166.484375 170.175781 168.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.660156 264.136719 C 236.660156 265.757812 234.226562 265.757812 234.226562 264.136719 C 234.226562 262.515625 236.660156 262.515625 236.660156 264.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.472656 231.605469 C 220.472656 233.226562 218.039062 233.226562 218.039062 231.605469 C 218.039062 229.984375 220.472656 229.984375 220.472656 231.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.9375 289.691406 C 134.9375 291.308594 132.507812 291.308594 132.507812 289.691406 C 132.507812 288.070312 134.9375 288.070312 134.9375 289.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.335938 266.691406 C 268.335938 268.3125 265.90625 268.3125 265.90625 266.691406 C 265.90625 265.070312 268.335938 265.070312 268.335938 266.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.519531 258.796875 C 273.519531 260.414062 271.089844 260.414062 271.089844 258.796875 C 271.089844 257.175781 273.519531 257.175781 273.519531 258.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.277344 281.304688 C 322.277344 282.921875 319.847656 282.921875 319.847656 281.304688 C 319.847656 279.683594 322.277344 279.683594 322.277344 281.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.28125 171.632812 C 280.28125 173.25 277.851562 173.25 277.851562 171.632812 C 277.851562 170.011719 280.28125 170.011719 280.28125 171.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.90625 156.726562 C 310.90625 158.347656 308.476562 158.347656 308.476562 156.726562 C 308.476562 155.109375 310.90625 155.109375 310.90625 156.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.683594 214.226562 C 221.683594 215.84375 219.253906 215.84375 219.253906 214.226562 C 219.253906 212.605469 221.683594 212.605469 221.683594 214.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.054688 297.152344 C 310.054688 298.773438 307.625 298.773438 307.625 297.152344 C 307.625 295.535156 310.054688 295.535156 310.054688 297.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.363281 340.652344 C 242.363281 342.273438 239.933594 342.273438 239.933594 340.652344 C 239.933594 339.035156 242.363281 339.035156 242.363281 340.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.410156 160.335938 C 219.410156 161.957031 216.980469 161.957031 216.980469 160.335938 C 216.980469 158.714844 219.410156 158.714844 219.410156 160.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.382812 152.523438 C 209.382812 154.144531 206.953125 154.144531 206.953125 152.523438 C 206.953125 150.902344 209.382812 150.902344 209.382812 152.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.730469 282.164062 C 272.730469 283.785156 270.296875 283.785156 270.296875 282.164062 C 270.296875 280.546875 272.730469 280.546875 272.730469 282.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.171875 287.65625 C 291.171875 289.277344 288.742188 289.277344 288.742188 287.65625 C 288.742188 286.035156 291.171875 286.035156 291.171875 287.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.289062 230.625 C 310.289062 232.242188 307.859375 232.242188 307.859375 230.625 C 307.859375 229.003906 310.289062 229.003906 310.289062 230.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.488281 190.0625 C 272.488281 191.679688 270.058594 191.679688 270.058594 190.0625 C 270.058594 188.441406 272.488281 188.441406 272.488281 190.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.691406 247.242188 C 294.691406 248.859375 292.257812 248.859375 292.257812 247.242188 C 292.257812 245.621094 294.691406 245.621094 294.691406 247.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.328125 202.808594 C 303.328125 204.429688 300.898438 204.429688 300.898438 202.808594 C 300.898438 201.1875 303.328125 201.1875 303.328125 202.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.125 279.835938 C 250.125 281.457031 247.695312 281.457031 247.695312 279.835938 C 247.695312 278.21875 250.125 278.21875 250.125 279.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.78125 265.636719 C 293.78125 267.257812 291.351562 267.257812 291.351562 265.636719 C 291.351562 264.019531 293.78125 264.019531 293.78125 265.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.183594 337.988281 C 140.183594 339.609375 137.753906 339.609375 137.753906 337.988281 C 137.753906 336.367188 140.183594 336.367188 140.183594 337.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.605469 259.488281 C 296.605469 261.109375 294.175781 261.109375 294.175781 259.488281 C 294.175781 257.867188 296.605469 257.867188 296.605469 259.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.082031 250.785156 C 270.082031 252.40625 267.652344 252.40625 267.652344 250.785156 C 267.652344 249.167969 270.082031 249.167969 270.082031 250.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.679688 231.058594 C 280.679688 232.679688 278.25 232.679688 278.25 231.058594 C 278.25 229.4375 280.679688 229.4375 280.679688 231.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.242188 179.269531 C 174.242188 180.890625 171.808594 180.890625 171.808594 179.269531 C 171.808594 177.652344 174.242188 177.652344 174.242188 179.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.058594 263.375 C 319.058594 264.992188 316.628906 264.992188 316.628906 263.375 C 316.628906 261.753906 319.058594 261.753906 319.058594 263.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.519531 98.230469 C 152.519531 99.851562 150.089844 99.851562 150.089844 98.230469 C 150.089844 96.613281 152.519531 96.613281 152.519531 98.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.371094 313.828125 C 176.371094 315.449219 173.941406 315.449219 173.941406 313.828125 C 173.941406 312.210938 176.371094 312.210938 176.371094 313.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.121094 309.839844 C 268.121094 311.460938 265.691406 311.460938 265.691406 309.839844 C 265.691406 308.21875 268.121094 308.21875 268.121094 309.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.589844 287.375 C 293.589844 288.996094 291.160156 288.996094 291.160156 287.375 C 291.160156 285.753906 293.589844 285.753906 293.589844 287.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.765625 217.257812 C 265.765625 218.878906 263.335938 218.878906 263.335938 217.257812 C 263.335938 215.636719 265.765625 215.636719 265.765625 217.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.246094 244.855469 C 278.246094 246.476562 275.816406 246.476562 275.816406 244.855469 C 275.816406 243.234375 278.246094 243.234375 278.246094 244.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.421875 285.265625 C 132.421875 286.886719 129.992188 286.886719 129.992188 285.265625 C 129.992188 283.648438 132.421875 283.648438 132.421875 285.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.109375 187.816406 C 265.109375 189.4375 262.679688 189.4375 262.679688 187.816406 C 262.679688 186.199219 265.109375 186.199219 265.109375 187.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.140625 159.085938 C 256.140625 160.703125 253.710938 160.703125 253.710938 159.085938 C 253.710938 157.464844 256.140625 157.464844 256.140625 159.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.84375 230.925781 C 333.84375 232.542969 331.414062 232.542969 331.414062 230.925781 C 331.414062 229.304688 333.84375 229.304688 333.84375 230.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.214844 255.734375 C 201.214844 257.355469 198.785156 257.355469 198.785156 255.734375 C 198.785156 254.113281 201.214844 254.113281 201.214844 255.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.839844 235.171875 C 302.839844 236.792969 300.410156 236.792969 300.410156 235.171875 C 300.410156 233.550781 302.839844 233.550781 302.839844 235.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.523438 238.917969 C 221.523438 240.539062 219.09375 240.539062 219.09375 238.917969 C 219.09375 237.300781 221.523438 237.300781 221.523438 238.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.121094 251.449219 C 248.121094 253.070312 245.6875 253.070312 245.6875 251.449219 C 245.6875 249.828125 248.121094 249.828125 248.121094 251.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.484375 162.148438 C 275.484375 163.769531 273.054688 163.769531 273.054688 162.148438 C 273.054688 160.53125 275.484375 160.53125 275.484375 162.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.210938 175.503906 C 237.210938 177.121094 234.78125 177.121094 234.78125 175.503906 C 234.78125 173.882812 237.210938 173.882812 237.210938 175.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.523438 279.242188 C 282.523438 280.863281 280.09375 280.863281 280.09375 279.242188 C 280.09375 277.621094 282.523438 277.621094 282.523438 279.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.851562 70.910156 L 240.488281 73.746094 L 237.214844 73.746094 Z M 238.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.628906 269.949219 C 326.628906 271.570312 324.199219 271.570312 324.199219 269.949219 C 324.199219 268.332031 326.628906 268.332031 326.628906 269.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.257812 70.910156 L 182.894531 73.746094 L 179.621094 73.746094 Z M 181.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.101562 270.273438 C 251.101562 271.894531 248.671875 271.894531 248.671875 270.273438 C 248.671875 268.652344 251.101562 268.652344 251.101562 270.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.617188 307.121094 C 229.617188 308.742188 227.1875 308.742188 227.1875 307.121094 C 227.1875 305.5 229.617188 305.5 229.617188 307.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.300781 194.953125 C 318.300781 196.574219 315.871094 196.574219 315.871094 194.953125 C 315.871094 193.335938 318.300781 193.335938 318.300781 194.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.777344 243.988281 C 261.777344 245.609375 259.347656 245.609375 259.347656 243.988281 C 259.347656 242.367188 261.777344 242.367188 261.777344 243.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.003906 261.0625 C 323.003906 262.683594 320.574219 262.683594 320.574219 261.0625 C 320.574219 259.441406 323.003906 259.441406 323.003906 261.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.785156 267.578125 C 262.785156 269.195312 260.355469 269.195312 260.355469 267.578125 C 260.355469 265.957031 262.785156 265.957031 262.785156 267.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.589844 360.796875 C 159.589844 362.417969 157.160156 362.417969 157.160156 360.796875 C 157.160156 359.179688 159.589844 359.179688 159.589844 360.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.847656 127.578125 C 116.847656 129.199219 114.417969 129.199219 114.417969 127.578125 C 114.417969 125.960938 116.847656 125.960938 116.847656 127.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.777344 297.316406 C 256.777344 298.933594 254.34375 298.933594 254.34375 297.316406 C 254.34375 295.695312 256.777344 295.695312 256.777344 297.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.546875 186.765625 C 137.546875 188.386719 135.117188 188.386719 135.117188 186.765625 C 135.117188 185.148438 137.546875 185.148438 137.546875 186.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.269531 224.398438 C 297.269531 226.019531 294.839844 226.019531 294.839844 224.398438 C 294.839844 222.78125 297.269531 222.78125 297.269531 224.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.074219 255.652344 C 281.074219 257.273438 278.644531 257.273438 278.644531 255.652344 C 278.644531 254.035156 281.074219 254.035156 281.074219 255.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.71875 174.074219 C 287.71875 175.695312 285.285156 175.695312 285.285156 174.074219 C 285.285156 172.457031 287.71875 172.457031 287.71875 174.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.871094 339.59375 C 114.871094 341.214844 112.441406 341.214844 112.441406 339.59375 C 112.441406 337.972656 114.871094 337.972656 114.871094 339.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.574219 250.65625 C 209.574219 252.277344 207.144531 252.277344 207.144531 250.65625 C 207.144531 249.039062 209.574219 249.039062 209.574219 250.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.699219 227.355469 C 213.699219 228.972656 211.269531 228.972656 211.269531 227.355469 C 211.269531 225.734375 213.699219 225.734375 213.699219 227.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.136719 247.585938 C 291.136719 249.203125 288.707031 249.203125 288.707031 247.585938 C 288.707031 245.964844 291.136719 245.964844 291.136719 247.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.847656 156.28125 C 132.847656 157.902344 130.417969 157.902344 130.417969 156.28125 C 130.417969 154.660156 132.847656 154.660156 132.847656 156.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.152344 161.03125 C 178.152344 162.652344 175.71875 162.652344 175.71875 161.03125 C 175.71875 159.410156 178.152344 159.410156 178.152344 161.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.875 397.527344 C 157.875 399.144531 155.445312 399.144531 155.445312 397.527344 C 155.445312 395.90625 157.875 395.90625 157.875 397.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.804688 293.976562 C 297.804688 295.597656 295.375 295.597656 295.375 293.976562 C 295.375 292.355469 297.804688 292.355469 297.804688 293.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.558594 200.515625 C 289.558594 202.136719 287.128906 202.136719 287.128906 200.515625 C 287.128906 198.894531 289.558594 198.894531 289.558594 200.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.101562 202.140625 C 180.101562 203.761719 177.671875 203.761719 177.671875 202.140625 C 177.671875 200.519531 180.101562 200.519531 180.101562 202.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.433594 384.296875 C 277.433594 385.917969 275.003906 385.917969 275.003906 384.296875 C 275.003906 382.679688 277.433594 382.679688 277.433594 384.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.261719 196.265625 C 183.261719 197.886719 180.832031 197.886719 180.832031 196.265625 C 180.832031 194.644531 183.261719 194.644531 183.261719 196.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.613281 99.269531 C 169.613281 100.886719 167.183594 100.886719 167.183594 99.269531 C 167.183594 97.648438 169.613281 97.648438 169.613281 99.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.21875 225.339844 C 260.21875 226.960938 257.789062 226.960938 257.789062 225.339844 C 257.789062 223.71875 260.21875 223.71875 260.21875 225.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.535156 287.632812 C 309.535156 289.25 307.105469 289.25 307.105469 287.632812 C 307.105469 286.011719 309.535156 286.011719 309.535156 287.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.960938 292.316406 C 175.960938 293.9375 173.53125 293.9375 173.53125 292.316406 C 173.53125 290.699219 175.960938 290.699219 175.960938 292.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.917969 274.371094 C 279.917969 275.992188 277.488281 275.992188 277.488281 274.371094 C 277.488281 272.753906 279.917969 272.753906 279.917969 274.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.980469 222.601562 C 274.980469 224.222656 272.550781 224.222656 272.550781 222.601562 C 272.550781 220.980469 274.980469 220.980469 274.980469 222.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.128906 255.5 C 242.128906 257.121094 239.699219 257.121094 239.699219 255.5 C 239.699219 253.878906 242.128906 253.878906 242.128906 255.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.625 275.007812 C 208.625 276.628906 206.195312 276.628906 206.195312 275.007812 C 206.195312 273.390625 208.625 273.390625 208.625 275.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.160156 292.171875 C 254.160156 293.792969 251.730469 293.792969 251.730469 292.171875 C 251.730469 290.550781 254.160156 290.550781 254.160156 292.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.738281 418.691406 L 113.375 415.855469 L 110.101562 415.855469 Z M 111.738281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.441406 79.328125 C 167.441406 80.949219 165.007812 80.949219 165.007812 79.328125 C 165.007812 77.707031 167.441406 77.707031 167.441406 79.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.875 180.339844 C 167.875 181.960938 165.445312 181.960938 165.445312 180.339844 C 165.445312 178.71875 167.875 178.71875 167.875 180.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.792969 241.34375 C 243.792969 242.964844 241.363281 242.964844 241.363281 241.34375 C 241.363281 239.726562 243.792969 239.726562 243.792969 241.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.984375 278.289062 C 196.984375 279.910156 194.554688 279.910156 194.554688 278.289062 C 194.554688 276.667969 196.984375 276.667969 196.984375 278.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.398438 287.851562 C 245.398438 289.472656 242.96875 289.472656 242.96875 287.851562 C 242.96875 286.230469 245.398438 286.230469 245.398438 287.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.164062 276.730469 C 275.164062 278.351562 272.734375 278.351562 272.734375 276.730469 C 272.734375 275.113281 275.164062 275.113281 275.164062 276.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.035156 279.761719 C 239.035156 281.378906 236.605469 281.378906 236.605469 279.761719 C 236.605469 278.140625 239.035156 278.140625 239.035156 279.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.117188 226.648438 C 291.117188 228.269531 288.6875 228.269531 288.6875 226.648438 C 288.6875 225.027344 291.117188 225.027344 291.117188 226.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.472656 271.042969 C 283.472656 272.660156 281.042969 272.660156 281.042969 271.042969 C 281.042969 269.421875 283.472656 269.421875 283.472656 271.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.828125 204.617188 C 305.828125 206.234375 303.398438 206.234375 303.398438 204.617188 C 303.398438 202.996094 305.828125 202.996094 305.828125 204.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.4375 162.929688 C 290.4375 164.546875 288.007812 164.546875 288.007812 162.929688 C 288.007812 161.308594 290.4375 161.308594 290.4375 162.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.8125 305.707031 C 275.8125 307.328125 273.382812 307.328125 273.382812 305.707031 C 273.382812 304.089844 275.8125 304.089844 275.8125 305.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.828125 323.242188 C 229.828125 324.863281 227.398438 324.863281 227.398438 323.242188 C 227.398438 321.625 229.828125 321.625 229.828125 323.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.65625 275.503906 C 278.65625 277.125 276.226562 277.125 276.226562 275.503906 C 276.226562 273.882812 278.65625 273.882812 278.65625 275.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.078125 253.714844 C 328.078125 255.335938 325.648438 255.335938 325.648438 253.714844 C 325.648438 252.097656 328.078125 252.097656 328.078125 253.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.179688 201.597656 C 295.179688 203.21875 292.746094 203.21875 292.746094 201.597656 C 292.746094 199.980469 295.179688 199.980469 295.179688 201.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.738281 410.023438 C 262.738281 411.644531 260.308594 411.644531 260.308594 410.023438 C 260.308594 408.402344 262.738281 408.402344 262.738281 410.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.90625 70.910156 L 153.539062 73.746094 L 150.269531 73.746094 Z M 151.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 359.339844 418.691406 L 360.976562 415.855469 L 357.703125 415.855469 Z M 359.339844 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.871094 418.691406 L 337.507812 415.855469 L 334.238281 415.855469 Z M 335.871094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.59375 207.558594 C 269.59375 209.175781 267.164062 209.175781 267.164062 207.558594 C 267.164062 205.9375 269.59375 205.9375 269.59375 207.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.023438 129.628906 C 219.023438 131.246094 216.59375 131.246094 216.59375 129.628906 C 216.59375 128.007812 219.023438 128.007812 219.023438 129.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.683594 146.917969 C 260.683594 148.539062 258.253906 148.539062 258.253906 146.917969 C 258.253906 145.296875 260.683594 145.296875 260.683594 146.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.769531 298.65625 C 124.769531 300.277344 122.339844 300.277344 122.339844 298.65625 C 122.339844 297.039062 124.769531 297.039062 124.769531 298.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.035156 229.328125 C 198.035156 230.949219 195.605469 230.949219 195.605469 229.328125 C 195.605469 227.710938 198.035156 227.710938 198.035156 229.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.113281 262.703125 C 310.113281 264.324219 307.683594 264.324219 307.683594 262.703125 C 307.683594 261.082031 310.113281 261.082031 310.113281 262.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.589844 70.910156 L 140.226562 73.746094 L 136.953125 73.746094 Z M 138.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.535156 373.792969 C 244.535156 375.414062 242.101562 375.414062 242.101562 373.792969 C 242.101562 372.171875 244.535156 372.171875 244.535156 373.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.082031 262.09375 C 211.082031 263.714844 208.652344 263.714844 208.652344 262.09375 C 208.652344 260.472656 211.082031 260.472656 211.082031 262.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.746094 284.234375 C 247.746094 285.855469 245.316406 285.855469 245.316406 284.234375 C 245.316406 282.617188 247.746094 282.617188 247.746094 284.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.113281 264.132812 C 253.113281 265.75 250.683594 265.75 250.683594 264.132812 C 250.683594 262.511719 253.113281 262.511719 253.113281 264.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.734375 241.988281 C 309.734375 243.609375 307.304688 243.609375 307.304688 241.988281 C 307.304688 240.367188 309.734375 240.367188 309.734375 241.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.445312 251.855469 C 267.445312 253.476562 265.015625 253.476562 265.015625 251.855469 C 265.015625 250.234375 267.445312 250.234375 267.445312 251.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.128906 198.964844 C 150.128906 200.585938 147.699219 200.585938 147.699219 198.964844 C 147.699219 197.34375 150.128906 197.34375 150.128906 198.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.636719 291.394531 C 233.636719 293.015625 231.207031 293.015625 231.207031 291.394531 C 231.207031 289.777344 233.636719 289.777344 233.636719 291.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.375 191.570312 C 217.375 193.191406 214.945312 193.191406 214.945312 191.570312 C 214.945312 189.953125 217.375 189.953125 217.375 191.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.710938 164.039062 C 235.710938 165.660156 233.28125 165.660156 233.28125 164.039062 C 233.28125 162.417969 235.710938 162.417969 235.710938 164.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.761719 311.050781 C 217.761719 312.671875 215.332031 312.671875 215.332031 311.050781 C 215.332031 309.429688 217.761719 309.429688 217.761719 311.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.390625 237.34375 C 260.390625 238.960938 257.957031 238.960938 257.957031 237.34375 C 257.957031 235.722656 260.390625 235.722656 260.390625 237.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.054688 302.253906 C 211.054688 303.875 208.625 303.875 208.625 302.253906 C 208.625 300.632812 211.054688 300.632812 211.054688 302.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 354.773438 159.21875 C 354.773438 160.835938 352.34375 160.835938 352.34375 159.21875 C 352.34375 157.597656 354.773438 157.597656 354.773438 159.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.359375 130.03125 C 205.359375 131.652344 202.929688 131.652344 202.929688 130.03125 C 202.929688 128.414062 205.359375 128.414062 205.359375 130.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.875 340.222656 C 217.875 341.839844 215.445312 341.839844 215.445312 340.222656 C 215.445312 338.601562 217.875 338.601562 217.875 340.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.550781 269.875 C 189.550781 271.492188 187.121094 271.492188 187.121094 269.875 C 187.121094 268.253906 189.550781 268.253906 189.550781 269.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.511719 79.800781 C 255.511719 81.421875 253.082031 81.421875 253.082031 79.800781 C 253.082031 78.179688 255.511719 78.179688 255.511719 79.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.671875 231.058594 C 261.671875 232.679688 259.242188 232.679688 259.242188 231.058594 C 259.242188 229.4375 261.671875 229.4375 261.671875 231.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.167969 221.015625 C 207.167969 222.636719 204.738281 222.636719 204.738281 221.015625 C 204.738281 219.398438 207.167969 219.398438 207.167969 221.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.304688 257.703125 C 142.304688 259.324219 139.875 259.324219 139.875 257.703125 C 139.875 256.085938 142.304688 256.085938 142.304688 257.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.355469 70.910156 L 292.992188 73.746094 L 289.71875 73.746094 Z M 291.355469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.167969 70.910156 L 338.804688 73.746094 L 335.53125 73.746094 Z M 337.167969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.867188 70.910156 L 213.5 73.746094 L 210.230469 73.746094 Z M 211.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.128906 148.714844 C 166.128906 150.332031 163.699219 150.332031 163.699219 148.714844 C 163.699219 147.09375 166.128906 147.09375 166.128906 148.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.765625 274 C 253.765625 275.621094 251.335938 275.621094 251.335938 274 C 251.335938 272.378906 253.765625 272.378906 253.765625 274 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.480469 294.4375 C 254.480469 296.058594 252.050781 296.058594 252.050781 294.4375 C 252.050781 292.816406 254.480469 292.816406 254.480469 294.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.050781 273.683594 C 165.050781 275.304688 162.621094 275.304688 162.621094 273.683594 C 162.621094 272.066406 165.050781 272.066406 165.050781 273.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.070312 184.414062 C 267.070312 186.035156 264.640625 186.035156 264.640625 184.414062 C 264.640625 182.792969 267.070312 182.792969 267.070312 184.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.761719 70.910156 L 153.398438 73.746094 L 150.125 73.746094 Z M 151.761719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.820312 70.910156 L 241.453125 73.746094 L 238.183594 73.746094 Z M 239.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.503906 273.046875 C 317.503906 274.667969 315.074219 274.667969 315.074219 273.046875 C 315.074219 271.429688 317.503906 271.429688 317.503906 273.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.238281 334.953125 C 321.238281 336.574219 318.808594 336.574219 318.808594 334.953125 C 318.808594 333.335938 321.238281 333.335938 321.238281 334.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.667969 408.097656 C 295.667969 409.71875 293.238281 409.71875 293.238281 408.097656 C 293.238281 406.476562 295.667969 406.476562 295.667969 408.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.292969 271.714844 C 244.292969 273.335938 241.863281 273.335938 241.863281 271.714844 C 241.863281 270.09375 244.292969 270.09375 244.292969 271.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.144531 273.414062 C 301.144531 275.035156 298.714844 275.035156 298.714844 273.414062 C 298.714844 271.796875 301.144531 271.796875 301.144531 273.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.53125 70.910156 L 169.167969 73.746094 L 165.894531 73.746094 Z M 167.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.246094 249.429688 C 116.246094 251.046875 113.816406 251.046875 113.816406 249.429688 C 113.816406 247.808594 116.246094 247.808594 116.246094 249.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.109375 191.378906 C 280.109375 193 277.679688 193 277.679688 191.378906 C 277.679688 189.757812 280.109375 189.757812 280.109375 191.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.832031 70.910156 L 226.46875 73.746094 L 223.195312 73.746094 Z M 224.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.140625 246.214844 C 286.140625 247.835938 283.710938 247.835938 283.710938 246.214844 C 283.710938 244.59375 286.140625 244.59375 286.140625 246.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.207031 132.605469 C 187.207031 134.226562 184.777344 134.226562 184.777344 132.605469 C 184.777344 130.984375 187.207031 130.984375 187.207031 132.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.605469 292.882812 C 289.605469 294.503906 287.175781 294.503906 287.175781 292.882812 C 287.175781 291.261719 289.605469 291.261719 289.605469 292.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.863281 70.910156 L 151.5 73.746094 L 148.226562 73.746094 Z M 149.863281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.339844 418.691406 L 176.976562 415.855469 L 173.707031 415.855469 Z M 175.339844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.003906 282.765625 C 278.003906 284.386719 275.570312 284.386719 275.570312 282.765625 C 275.570312 281.148438 278.003906 281.148438 278.003906 282.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.984375 338.535156 C 142.984375 340.15625 140.554688 340.15625 140.554688 338.535156 C 140.554688 336.914062 142.984375 336.914062 142.984375 338.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.136719 227.730469 C 299.136719 229.351562 296.707031 229.351562 296.707031 227.730469 C 296.707031 226.109375 299.136719 226.109375 299.136719 227.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.9375 238.777344 C 314.9375 240.398438 312.507812 240.398438 312.507812 238.777344 C 312.507812 237.15625 314.9375 237.15625 314.9375 238.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.988281 70.910156 L 274.625 73.746094 L 271.355469 73.746094 Z M 272.988281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.105469 70.910156 L 184.742188 73.746094 L 181.46875 73.746094 Z M 183.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.617188 230.300781 C 297.617188 231.921875 295.1875 231.921875 295.1875 230.300781 C 295.1875 228.679688 297.617188 228.679688 297.617188 230.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.757812 276.445312 C 150.757812 278.0625 148.328125 278.0625 148.328125 276.445312 C 148.328125 274.824219 150.757812 274.824219 150.757812 276.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.597656 271.492188 C 165.597656 273.109375 163.167969 273.109375 163.167969 271.492188 C 163.167969 269.871094 165.597656 269.871094 165.597656 271.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.480469 304.433594 C 228.480469 306.054688 226.050781 306.054688 226.050781 304.433594 C 226.050781 302.8125 228.480469 302.8125 228.480469 304.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.101562 280.042969 C 266.101562 281.664062 263.667969 281.664062 263.667969 280.042969 C 263.667969 278.421875 266.101562 278.421875 266.101562 280.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.621094 354.964844 C 247.621094 356.585938 245.191406 356.585938 245.191406 354.964844 C 245.191406 353.347656 247.621094 353.347656 247.621094 354.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.570312 70.910156 L 169.207031 73.746094 L 165.933594 73.746094 Z M 167.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.5625 100.503906 C 308.5625 102.125 306.132812 102.125 306.132812 100.503906 C 306.132812 98.886719 308.5625 98.886719 308.5625 100.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.28125 70.910156 L 191.917969 73.746094 L 188.648438 73.746094 Z M 190.28125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.804688 70.910156 L 191.4375 73.746094 L 188.167969 73.746094 Z M 189.804688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.375 70.910156 L 202.011719 73.746094 L 198.738281 73.746094 Z M 200.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.132812 137.371094 C 219.132812 138.992188 216.703125 138.992188 216.703125 137.371094 C 216.703125 135.753906 219.132812 135.753906 219.132812 137.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.800781 263.265625 C 134.800781 264.886719 132.371094 264.886719 132.371094 263.265625 C 132.371094 261.644531 134.800781 261.644531 134.800781 263.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.078125 226.28125 C 287.078125 227.902344 284.648438 227.902344 284.648438 226.28125 C 284.648438 224.660156 287.078125 224.660156 287.078125 226.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.179688 212.074219 C 263.179688 213.695312 260.75 213.695312 260.75 212.074219 C 260.75 210.453125 263.179688 210.453125 263.179688 212.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.375 338.820312 C 148.375 340.441406 145.945312 340.441406 145.945312 338.820312 C 145.945312 337.203125 148.375 337.203125 148.375 338.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.304688 229.34375 C 291.304688 230.964844 288.871094 230.964844 288.871094 229.34375 C 288.871094 227.722656 291.304688 227.722656 291.304688 229.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.730469 317.09375 C 327.730469 318.714844 325.300781 318.714844 325.300781 317.09375 C 325.300781 315.476562 327.730469 315.476562 327.730469 317.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.933594 221.03125 C 265.933594 222.652344 263.503906 222.652344 263.503906 221.03125 C 263.503906 219.410156 265.933594 219.410156 265.933594 221.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.792969 262.128906 C 238.792969 263.75 236.363281 263.75 236.363281 262.128906 C 236.363281 260.511719 238.792969 260.511719 238.792969 262.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.546875 247.425781 C 118.546875 249.046875 116.117188 249.046875 116.117188 247.425781 C 116.117188 245.804688 118.546875 245.804688 118.546875 247.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.023438 286.449219 C 259.023438 288.066406 256.59375 288.066406 256.59375 286.449219 C 256.59375 284.828125 259.023438 284.828125 259.023438 286.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.738281 101.851562 C 194.738281 103.46875 192.304688 103.46875 192.304688 101.851562 C 192.304688 100.230469 194.738281 100.230469 194.738281 101.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.328125 233.9375 C 167.328125 235.558594 164.898438 235.558594 164.898438 233.9375 C 164.898438 232.316406 167.328125 232.316406 167.328125 233.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.726562 225.742188 C 296.726562 227.363281 294.296875 227.363281 294.296875 225.742188 C 294.296875 224.125 296.726562 224.125 296.726562 225.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.773438 347 C 297.773438 348.617188 295.34375 348.617188 295.34375 347 C 295.34375 345.378906 297.773438 345.378906 297.773438 347 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.246094 220.835938 C 204.246094 222.453125 201.816406 222.453125 201.816406 220.835938 C 201.816406 219.214844 204.246094 219.214844 204.246094 220.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.050781 263.820312 C 281.050781 265.441406 278.621094 265.441406 278.621094 263.820312 C 278.621094 262.203125 281.050781 262.203125 281.050781 263.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.410156 214.824219 C 125.410156 216.441406 122.980469 216.441406 122.980469 214.824219 C 122.980469 213.203125 125.410156 213.203125 125.410156 214.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.3125 345.722656 C 207.3125 347.34375 204.882812 347.34375 204.882812 345.722656 C 204.882812 344.105469 207.3125 344.105469 207.3125 345.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.109375 359.84375 C 203.109375 361.464844 200.679688 361.464844 200.679688 359.84375 C 200.679688 358.222656 203.109375 358.222656 203.109375 359.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.953125 225.257812 C 212.953125 226.875 210.523438 226.875 210.523438 225.257812 C 210.523438 223.636719 212.953125 223.636719 212.953125 225.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.464844 259.265625 C 258.464844 260.882812 256.035156 260.882812 256.035156 259.265625 C 256.035156 257.644531 258.464844 257.644531 258.464844 259.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.582031 173.296875 C 174.582031 174.917969 172.152344 174.917969 172.152344 173.296875 C 172.152344 171.679688 174.582031 171.679688 174.582031 173.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.851562 371.011719 C 311.851562 372.632812 309.417969 372.632812 309.417969 371.011719 C 309.417969 369.390625 311.851562 369.390625 311.851562 371.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.960938 168.484375 C 259.960938 170.105469 257.53125 170.105469 257.53125 168.484375 C 257.53125 166.867188 259.960938 166.867188 259.960938 168.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.253906 233.039062 C 326.253906 234.65625 323.824219 234.65625 323.824219 233.039062 C 323.824219 231.417969 326.253906 231.417969 326.253906 233.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.996094 70.910156 L 184.632812 73.746094 L 181.359375 73.746094 Z M 182.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.335938 272.078125 C 307.335938 273.695312 304.90625 273.695312 304.90625 272.078125 C 304.90625 270.457031 307.335938 270.457031 307.335938 272.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.378906 70.910156 L 216.015625 73.746094 L 212.742188 73.746094 Z M 214.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.039062 183.945312 C 254.039062 185.5625 251.609375 185.5625 251.609375 183.945312 C 251.609375 182.324219 254.039062 182.324219 254.039062 183.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.222656 159.582031 C 252.222656 161.203125 249.792969 161.203125 249.792969 159.582031 C 249.792969 157.964844 252.222656 157.964844 252.222656 159.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.957031 418.691406 L 117.59375 415.855469 L 114.320312 415.855469 Z M 115.957031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.269531 204.074219 C 274.269531 205.695312 271.839844 205.695312 271.839844 204.074219 C 271.839844 202.453125 274.269531 202.453125 274.269531 204.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.609375 76.898438 C 235.609375 78.519531 233.179688 78.519531 233.179688 76.898438 C 233.179688 75.28125 235.609375 75.28125 235.609375 76.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.355469 218.652344 C 312.355469 220.273438 309.925781 220.273438 309.925781 218.652344 C 309.925781 217.03125 312.355469 217.03125 312.355469 218.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.308594 291.890625 C 274.308594 293.511719 271.878906 293.511719 271.878906 291.890625 C 271.878906 290.269531 274.308594 290.269531 274.308594 291.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.378906 290.289062 C 263.378906 291.910156 260.945312 291.910156 260.945312 290.289062 C 260.945312 288.671875 263.378906 288.671875 263.378906 290.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.253906 342.21875 C 302.253906 343.839844 299.824219 343.839844 299.824219 342.21875 C 299.824219 340.601562 302.253906 340.601562 302.253906 342.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.957031 280.96875 C 215.957031 282.589844 213.527344 282.589844 213.527344 280.96875 C 213.527344 279.351562 215.957031 279.351562 215.957031 280.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.949219 374.910156 C 262.949219 376.53125 260.515625 376.53125 260.515625 374.910156 C 260.515625 373.289062 262.949219 373.289062 262.949219 374.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.613281 418.691406 L 177.246094 415.855469 L 173.976562 415.855469 Z M 175.613281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.863281 250.660156 C 286.863281 252.277344 284.433594 252.277344 284.433594 250.660156 C 284.433594 249.039062 286.863281 249.039062 286.863281 250.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.078125 398.457031 C 334.078125 400.074219 331.648438 400.074219 331.648438 398.457031 C 331.648438 396.835938 334.078125 396.835938 334.078125 398.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.28125 261.246094 C 275.28125 262.867188 272.847656 262.867188 272.847656 261.246094 C 272.847656 259.625 275.28125 259.625 275.28125 261.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.21875 225.214844 C 256.21875 226.835938 253.789062 226.835938 253.789062 225.214844 C 253.789062 223.59375 256.21875 223.59375 256.21875 225.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.617188 264.964844 C 267.617188 266.585938 265.1875 266.585938 265.1875 264.964844 C 265.1875 263.347656 267.617188 263.347656 267.617188 264.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.421875 217.007812 C 254.421875 218.625 251.992188 218.625 251.992188 217.007812 C 251.992188 215.386719 254.421875 215.386719 254.421875 217.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.472656 316.410156 C 261.472656 318.03125 259.042969 318.03125 259.042969 316.410156 C 259.042969 314.792969 261.472656 314.792969 261.472656 316.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.875 331.074219 C 274.875 332.695312 272.445312 332.695312 272.445312 331.074219 C 272.445312 329.453125 274.875 329.453125 274.875 331.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.785156 418.691406 L 154.421875 415.855469 L 151.148438 415.855469 Z M 152.785156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.71875 220.804688 C 243.71875 222.421875 241.285156 222.421875 241.285156 220.804688 C 241.285156 219.183594 243.71875 219.183594 243.71875 220.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.730469 202.515625 C 280.730469 204.132812 278.300781 204.132812 278.300781 202.515625 C 278.300781 200.894531 280.730469 200.894531 280.730469 202.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.222656 215.730469 C 240.222656 217.351562 237.792969 217.351562 237.792969 215.730469 C 237.792969 214.109375 240.222656 214.109375 240.222656 215.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.246094 163.34375 C 220.246094 164.964844 217.816406 164.964844 217.816406 163.34375 C 217.816406 161.722656 220.246094 161.722656 220.246094 163.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.566406 289.246094 C 237.566406 290.867188 235.136719 290.867188 235.136719 289.246094 C 235.136719 287.625 237.566406 287.625 237.566406 289.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.402344 363.042969 C 206.402344 364.664062 203.972656 364.664062 203.972656 363.042969 C 203.972656 361.421875 206.402344 361.421875 206.402344 363.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.148438 224.761719 C 151.148438 226.382812 148.71875 226.382812 148.71875 224.761719 C 148.71875 223.140625 151.148438 223.140625 151.148438 224.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.5625 246.40625 C 153.5625 248.027344 151.132812 248.027344 151.132812 246.40625 C 151.132812 244.785156 153.5625 244.785156 153.5625 246.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.464844 280.488281 C 195.464844 282.109375 193.03125 282.109375 193.03125 280.488281 C 193.03125 278.867188 195.464844 278.867188 195.464844 280.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299 306.421875 C 299 308.042969 296.570312 308.042969 296.570312 306.421875 C 296.570312 304.804688 299 304.804688 299 306.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.75 281.359375 C 295.75 282.980469 293.320312 282.980469 293.320312 281.359375 C 293.320312 279.742188 295.75 279.742188 295.75 281.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.234375 257.011719 C 333.234375 258.628906 330.804688 258.628906 330.804688 257.011719 C 330.804688 255.390625 333.234375 255.390625 333.234375 257.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.359375 275.851562 C 258.359375 277.46875 255.929688 277.46875 255.929688 275.851562 C 255.929688 274.230469 258.359375 274.230469 258.359375 275.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.960938 248.570312 C 315.960938 250.191406 313.53125 250.191406 313.53125 248.570312 C 313.53125 246.949219 315.960938 246.949219 315.960938 248.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.511719 126.460938 C 146.511719 128.082031 144.078125 128.082031 144.078125 126.460938 C 144.078125 124.84375 146.511719 124.84375 146.511719 126.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.730469 70.910156 L 117.367188 73.746094 L 114.09375 73.746094 Z M 115.730469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.847656 70.910156 L 141.480469 73.746094 L 138.210938 73.746094 Z M 139.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.429688 250.664062 C 302.429688 252.28125 300 252.28125 300 250.664062 C 300 249.042969 302.429688 249.042969 302.429688 250.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.910156 239.667969 C 276.910156 241.289062 274.480469 241.289062 274.480469 239.667969 C 274.480469 238.046875 276.910156 238.046875 276.910156 239.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.648438 278.140625 C 189.648438 279.761719 187.21875 279.761719 187.21875 278.140625 C 187.21875 276.523438 189.648438 276.523438 189.648438 278.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.847656 266.996094 C 264.847656 268.617188 262.417969 268.617188 262.417969 266.996094 C 262.417969 265.375 264.847656 265.375 264.847656 266.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.023438 248.796875 C 243.023438 250.417969 240.59375 250.417969 240.59375 248.796875 C 240.59375 247.179688 243.023438 247.179688 243.023438 248.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.828125 250.183594 C 227.828125 251.804688 225.398438 251.804688 225.398438 250.183594 C 225.398438 248.5625 227.828125 248.5625 227.828125 250.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.429688 215.652344 C 286.429688 217.273438 284 217.273438 284 215.652344 C 284 214.03125 286.429688 214.03125 286.429688 215.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.644531 254.121094 C 269.644531 255.742188 267.214844 255.742188 267.214844 254.121094 C 267.214844 252.5 269.644531 252.5 269.644531 254.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.308594 239.699219 C 264.308594 241.316406 261.878906 241.316406 261.878906 239.699219 C 261.878906 238.078125 264.308594 238.078125 264.308594 239.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.085938 236.738281 C 316.085938 238.359375 313.65625 238.359375 313.65625 236.738281 C 313.65625 235.117188 316.085938 235.117188 316.085938 236.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.257812 323.175781 C 234.257812 324.792969 231.828125 324.792969 231.828125 323.175781 C 231.828125 321.554688 234.257812 321.554688 234.257812 323.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.53125 249.5 C 220.53125 251.121094 218.101562 251.121094 218.101562 249.5 C 218.101562 247.882812 220.53125 247.882812 220.53125 249.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.417969 220.523438 C 240.417969 222.144531 237.988281 222.144531 237.988281 220.523438 C 237.988281 218.90625 240.417969 218.90625 240.417969 220.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.714844 177.832031 C 216.714844 179.453125 214.285156 179.453125 214.285156 177.832031 C 214.285156 176.210938 216.714844 176.210938 216.714844 177.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.792969 225.015625 C 234.792969 226.636719 232.363281 226.636719 232.363281 225.015625 C 232.363281 223.398438 234.792969 223.398438 234.792969 225.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.539062 335.128906 C 344.539062 336.75 342.109375 336.75 342.109375 335.128906 C 342.109375 333.511719 344.539062 333.511719 344.539062 335.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.691406 329.054688 C 237.691406 330.675781 235.261719 330.675781 235.261719 329.054688 C 235.261719 327.4375 237.691406 327.4375 237.691406 329.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.332031 404.75 C 339.332031 406.367188 336.902344 406.367188 336.902344 404.75 C 336.902344 403.128906 339.332031 403.128906 339.332031 404.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.382812 337.609375 C 230.382812 339.230469 227.953125 339.230469 227.953125 337.609375 C 227.953125 335.988281 230.382812 335.988281 230.382812 337.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.675781 262.710938 C 253.675781 264.328125 251.246094 264.328125 251.246094 262.710938 C 251.246094 261.089844 253.675781 261.089844 253.675781 262.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.605469 327.808594 C 184.605469 329.429688 182.175781 329.429688 182.175781 327.808594 C 182.175781 326.1875 184.605469 326.1875 184.605469 327.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.347656 268.515625 C 276.347656 270.136719 273.917969 270.136719 273.917969 268.515625 C 273.917969 266.894531 276.347656 266.894531 276.347656 268.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.078125 385.714844 C 161.078125 387.335938 158.648438 387.335938 158.648438 385.714844 C 158.648438 384.097656 161.078125 384.097656 161.078125 385.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.015625 200.265625 C 231.015625 201.886719 228.585938 201.886719 228.585938 200.265625 C 228.585938 198.644531 231.015625 198.644531 231.015625 200.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.570312 297.269531 C 291.570312 298.886719 289.140625 298.886719 289.140625 297.269531 C 289.140625 295.648438 291.570312 295.648438 291.570312 297.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 349.8125 269.523438 C 349.8125 271.144531 347.382812 271.144531 347.382812 269.523438 C 347.382812 267.902344 349.8125 267.902344 349.8125 269.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.804688 226.90625 C 281.804688 228.527344 279.375 228.527344 279.375 226.90625 C 279.375 225.285156 281.804688 225.285156 281.804688 226.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.550781 193.804688 C 284.550781 195.421875 282.121094 195.421875 282.121094 193.804688 C 282.121094 192.183594 284.550781 192.183594 284.550781 193.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.359375 70.910156 L 194.996094 73.746094 L 191.722656 73.746094 Z M 193.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.257812 235.8125 C 247.257812 237.433594 244.828125 237.433594 244.828125 235.8125 C 244.828125 234.191406 247.257812 234.191406 247.257812 235.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.144531 195.710938 C 163.144531 197.332031 160.714844 197.332031 160.714844 195.710938 C 160.714844 194.089844 163.144531 194.089844 163.144531 195.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.949219 244.195312 C 281.949219 245.816406 279.519531 245.816406 279.519531 244.195312 C 279.519531 242.578125 281.949219 242.578125 281.949219 244.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.171875 122.171875 C 219.171875 123.789062 216.742188 123.789062 216.742188 122.171875 C 216.742188 120.550781 219.171875 120.550781 219.171875 122.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.511719 277.390625 C 146.511719 279.011719 144.082031 279.011719 144.082031 277.390625 C 144.082031 275.769531 146.511719 275.769531 146.511719 277.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.792969 139.703125 C 185.792969 141.324219 183.359375 141.324219 183.359375 139.703125 C 183.359375 138.085938 185.792969 138.085938 185.792969 139.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.351562 339.695312 C 113.351562 341.316406 110.921875 341.316406 110.921875 339.695312 C 110.921875 338.078125 113.351562 338.078125 113.351562 339.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.488281 234.203125 C 227.488281 235.824219 225.058594 235.824219 225.058594 234.203125 C 225.058594 232.585938 227.488281 232.585938 227.488281 234.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.789062 317.769531 C 107.789062 319.390625 105.359375 319.390625 105.359375 317.769531 C 105.359375 316.148438 107.789062 316.148438 107.789062 317.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.179688 70.910156 L 234.816406 73.746094 L 231.542969 73.746094 Z M 233.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.429688 195.171875 C 136.429688 196.792969 134 196.792969 134 195.171875 C 134 193.550781 136.429688 193.550781 136.429688 195.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.824219 275.304688 C 272.824219 276.925781 270.394531 276.925781 270.394531 275.304688 C 270.394531 273.6875 272.824219 273.6875 272.824219 275.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.835938 276.617188 C 224.835938 278.238281 222.40625 278.238281 222.40625 276.617188 C 222.40625 274.996094 224.835938 274.996094 224.835938 276.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.464844 70.910156 L 142.101562 73.746094 L 138.828125 73.746094 Z M 140.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.257812 142.542969 C 188.257812 144.164062 185.824219 144.164062 185.824219 142.542969 C 185.824219 140.921875 188.257812 140.921875 188.257812 142.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.199219 246.679688 C 129.199219 248.296875 126.765625 248.296875 126.765625 246.679688 C 126.765625 245.058594 129.199219 245.058594 129.199219 246.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.695312 208.269531 C 307.695312 209.890625 305.265625 209.890625 305.265625 208.269531 C 305.265625 206.648438 307.695312 206.648438 307.695312 208.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.558594 163.402344 C 243.558594 165.019531 241.128906 165.019531 241.128906 163.402344 C 241.128906 161.78125 243.558594 161.78125 243.558594 163.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.152344 283.875 C 287.152344 285.496094 284.722656 285.496094 284.722656 283.875 C 284.722656 282.257812 287.152344 282.257812 287.152344 283.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.453125 284.554688 C 169.453125 286.175781 167.023438 286.175781 167.023438 284.554688 C 167.023438 282.933594 169.453125 282.933594 169.453125 284.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.839844 234.6875 C 290.839844 236.308594 288.410156 236.308594 288.410156 234.6875 C 288.410156 233.070312 290.839844 233.070312 290.839844 234.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.289062 253.140625 C 248.289062 254.761719 245.859375 254.761719 245.859375 253.140625 C 245.859375 251.519531 248.289062 251.519531 248.289062 253.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.507812 187.25 C 151.507812 188.871094 149.078125 188.871094 149.078125 187.25 C 149.078125 185.628906 151.507812 185.628906 151.507812 187.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.097656 248.609375 C 237.097656 250.230469 234.667969 250.230469 234.667969 248.609375 C 234.667969 246.988281 237.097656 246.988281 237.097656 248.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.984375 220.285156 C 247.984375 221.90625 245.554688 221.90625 245.554688 220.285156 C 245.554688 218.664062 247.984375 218.664062 247.984375 220.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.351562 248.863281 C 261.351562 250.484375 258.921875 250.484375 258.921875 248.863281 C 258.921875 247.242188 261.351562 247.242188 261.351562 248.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.257812 221.78125 C 314.257812 223.402344 311.828125 223.402344 311.828125 221.78125 C 311.828125 220.160156 314.257812 220.160156 314.257812 221.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.578125 275.179688 C 331.578125 276.800781 329.148438 276.800781 329.148438 275.179688 C 329.148438 273.5625 331.578125 273.5625 331.578125 275.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.773438 304.304688 C 239.773438 305.925781 237.339844 305.925781 237.339844 304.304688 C 237.339844 302.683594 239.773438 302.683594 239.773438 304.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.1875 229.105469 C 249.1875 230.722656 246.753906 230.722656 246.753906 229.105469 C 246.753906 227.484375 249.1875 227.484375 249.1875 229.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.28125 318.246094 C 227.28125 319.867188 224.851562 319.867188 224.851562 318.246094 C 224.851562 316.625 227.28125 316.625 227.28125 318.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.257812 281.703125 C 195.257812 283.320312 192.828125 283.320312 192.828125 281.703125 C 192.828125 280.082031 195.257812 280.082031 195.257812 281.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.328125 241.925781 C 208.328125 243.546875 205.898438 243.546875 205.898438 241.925781 C 205.898438 240.304688 208.328125 240.304688 208.328125 241.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.683594 287.9375 C 245.683594 289.554688 243.253906 289.554688 243.253906 287.9375 C 243.253906 286.316406 245.683594 286.316406 245.683594 287.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.386719 220.734375 C 124.386719 222.355469 121.957031 222.355469 121.957031 220.734375 C 121.957031 219.117188 124.386719 219.117188 124.386719 220.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.34375 260.222656 C 118.34375 261.839844 115.914062 261.839844 115.914062 260.222656 C 115.914062 258.601562 118.34375 258.601562 118.34375 260.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.636719 286.066406 C 272.636719 287.683594 270.207031 287.683594 270.207031 286.066406 C 270.207031 284.445312 272.636719 284.445312 272.636719 286.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.242188 247.320312 C 306.242188 248.941406 303.8125 248.941406 303.8125 247.320312 C 303.8125 245.699219 306.242188 245.699219 306.242188 247.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.355469 335.742188 C 253.355469 337.363281 250.925781 337.363281 250.925781 335.742188 C 250.925781 334.125 253.355469 334.125 253.355469 335.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.488281 70.910156 L 289.125 73.746094 L 285.851562 73.746094 Z M 287.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.316406 418.691406 L 174.953125 415.855469 L 171.679688 415.855469 Z M 173.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.40625 298.945312 C 276.40625 300.566406 273.976562 300.566406 273.976562 298.945312 C 273.976562 297.328125 276.40625 297.328125 276.40625 298.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.914062 263.378906 C 264.914062 265 262.484375 265 262.484375 263.378906 C 262.484375 261.761719 264.914062 261.761719 264.914062 263.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.183594 271.46875 C 262.183594 273.085938 259.75 273.085938 259.75 271.46875 C 259.75 269.847656 262.183594 269.847656 262.183594 271.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.949219 297.394531 C 238.949219 299.015625 236.519531 299.015625 236.519531 297.394531 C 236.519531 295.777344 238.949219 295.777344 238.949219 297.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.980469 224.769531 C 303.980469 226.390625 301.550781 226.390625 301.550781 224.769531 C 301.550781 223.152344 303.980469 223.152344 303.980469 224.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.445312 257.585938 C 266.445312 259.207031 264.015625 259.207031 264.015625 257.585938 C 264.015625 255.96875 266.445312 255.96875 266.445312 257.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.445312 70.910156 L 317.082031 73.746094 L 313.808594 73.746094 Z M 315.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.644531 222.941406 C 316.644531 224.5625 314.214844 224.5625 314.214844 222.941406 C 314.214844 221.320312 316.644531 221.320312 316.644531 222.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.246094 316.910156 C 279.246094 318.53125 276.816406 318.53125 276.816406 316.910156 C 276.816406 315.289062 279.246094 315.289062 279.246094 316.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.019531 111.90625 C 224.019531 113.527344 221.589844 113.527344 221.589844 111.90625 C 221.589844 110.289062 224.019531 110.289062 224.019531 111.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.730469 74.148438 C 278.730469 75.769531 276.300781 75.769531 276.300781 74.148438 C 276.300781 72.53125 278.730469 72.53125 278.730469 74.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.25 288.453125 C 233.25 290.070312 230.820312 290.070312 230.820312 288.453125 C 230.820312 286.832031 233.25 286.832031 233.25 288.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.53125 300.777344 C 228.53125 302.398438 226.101562 302.398438 226.101562 300.777344 C 226.101562 299.160156 228.53125 299.160156 228.53125 300.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.460938 263.832031 C 301.460938 265.453125 299.03125 265.453125 299.03125 263.832031 C 299.03125 262.214844 301.460938 262.214844 301.460938 263.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.972656 288.171875 C 283.972656 289.792969 281.542969 289.792969 281.542969 288.171875 C 281.542969 286.554688 283.972656 286.554688 283.972656 288.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.261719 308.410156 C 239.261719 310.027344 236.832031 310.027344 236.832031 308.410156 C 236.832031 306.789062 239.261719 306.789062 239.261719 308.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.277344 287.054688 C 276.277344 288.671875 273.847656 288.671875 273.847656 287.054688 C 273.847656 285.433594 276.277344 285.433594 276.277344 287.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.015625 215.535156 C 254.015625 217.15625 251.585938 217.15625 251.585938 215.535156 C 251.585938 213.914062 254.015625 213.914062 254.015625 215.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.230469 282.644531 C 228.230469 284.265625 225.800781 284.265625 225.800781 282.644531 C 225.800781 281.027344 228.230469 281.027344 228.230469 282.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.421875 274.925781 C 307.421875 276.546875 304.992188 276.546875 304.992188 274.925781 C 304.992188 273.304688 307.421875 273.304688 307.421875 274.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.785156 282.449219 C 254.785156 284.066406 252.355469 284.066406 252.355469 282.449219 C 252.355469 280.828125 254.785156 280.828125 254.785156 282.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.621094 386.652344 C 241.621094 388.269531 239.191406 388.269531 239.191406 386.652344 C 239.191406 385.03125 241.621094 385.03125 241.621094 386.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.855469 229.113281 C 246.855469 230.730469 244.425781 230.730469 244.425781 229.113281 C 244.425781 227.492188 246.855469 227.492188 246.855469 229.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.484375 248.835938 C 257.484375 250.457031 255.054688 250.457031 255.054688 248.835938 C 255.054688 247.214844 257.484375 247.214844 257.484375 248.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.191406 70.910156 L 164.828125 73.746094 L 161.554688 73.746094 Z M 163.191406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.148438 70.910156 L 141.785156 73.746094 L 138.511719 73.746094 Z M 140.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.296875 216.914062 C 291.296875 218.535156 288.867188 218.535156 288.867188 216.914062 C 288.867188 215.292969 291.296875 215.292969 291.296875 216.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 342.074219 177.632812 C 342.074219 179.25 339.644531 179.25 339.644531 177.632812 C 339.644531 176.011719 342.074219 176.011719 342.074219 177.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.59375 90.148438 C 245.59375 91.769531 243.164062 91.769531 243.164062 90.148438 C 243.164062 88.527344 245.59375 88.527344 245.59375 90.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.097656 165.792969 C 204.097656 167.414062 201.667969 167.414062 201.667969 165.792969 C 201.667969 164.175781 204.097656 164.175781 204.097656 165.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.691406 271.945312 C 150.691406 273.566406 148.261719 273.566406 148.261719 271.945312 C 148.261719 270.324219 150.691406 270.324219 150.691406 271.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.996094 239.007812 C 243.996094 240.628906 241.566406 240.628906 241.566406 239.007812 C 241.566406 237.386719 243.996094 237.386719 243.996094 239.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.78125 224.273438 C 205.78125 225.890625 203.351562 225.890625 203.351562 224.273438 C 203.351562 222.652344 205.78125 222.652344 205.78125 224.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.742188 237.421875 C 282.742188 239.039062 280.3125 239.039062 280.3125 237.421875 C 280.3125 235.800781 282.742188 235.800781 282.742188 237.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.769531 76.996094 C 193.769531 78.617188 191.339844 78.617188 191.339844 76.996094 C 191.339844 75.378906 193.769531 75.378906 193.769531 76.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.273438 316.53125 C 317.273438 318.148438 314.84375 318.148438 314.84375 316.53125 C 314.84375 314.910156 317.273438 314.910156 317.273438 316.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.011719 171.054688 C 272.011719 172.671875 269.582031 172.671875 269.582031 171.054688 C 269.582031 169.433594 272.011719 169.433594 272.011719 171.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.414062 242.664062 C 267.414062 244.28125 264.980469 244.28125 264.980469 242.664062 C 264.980469 241.042969 267.414062 241.042969 267.414062 242.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.292969 89.152344 C 201.292969 90.773438 198.863281 90.773438 198.863281 89.152344 C 198.863281 87.53125 201.292969 87.53125 201.292969 89.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.394531 242.855469 C 227.394531 244.476562 224.964844 244.476562 224.964844 242.855469 C 224.964844 241.234375 227.394531 241.234375 227.394531 242.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.875 283.871094 C 277.875 285.492188 275.445312 285.492188 275.445312 283.871094 C 275.445312 282.253906 277.875 282.253906 277.875 283.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.726562 70.910156 L 295.363281 73.746094 L 292.089844 73.746094 Z M 293.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.628906 268.738281 C 227.628906 270.359375 225.195312 270.359375 225.195312 268.738281 C 225.195312 267.117188 227.628906 267.117188 227.628906 268.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.316406 275.242188 C 261.316406 276.863281 258.882812 276.863281 258.882812 275.242188 C 258.882812 273.621094 261.316406 273.621094 261.316406 275.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.667969 79.265625 C 206.667969 80.886719 204.234375 80.886719 204.234375 79.265625 C 204.234375 77.644531 206.667969 77.644531 206.667969 79.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.832031 70.910156 L 118.464844 73.746094 L 115.195312 73.746094 Z M 116.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.796875 270.203125 C 268.796875 271.824219 266.367188 271.824219 266.367188 270.203125 C 266.367188 268.582031 268.796875 268.582031 268.796875 270.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.734375 287.238281 C 195.734375 288.859375 193.304688 288.859375 193.304688 287.238281 C 193.304688 285.621094 195.734375 285.621094 195.734375 287.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.367188 178.984375 C 168.367188 180.601562 165.9375 180.601562 165.9375 178.984375 C 165.9375 177.363281 168.367188 177.363281 168.367188 178.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.078125 289.503906 C 264.078125 291.121094 261.644531 291.121094 261.644531 289.503906 C 261.644531 287.882812 264.078125 287.882812 264.078125 289.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.304688 264.472656 C 284.304688 266.09375 281.875 266.09375 281.875 264.472656 C 281.875 262.855469 284.304688 262.855469 284.304688 264.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.925781 118.269531 C 297.925781 119.890625 295.496094 119.890625 295.496094 118.269531 C 295.496094 116.648438 297.925781 116.648438 297.925781 118.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.464844 397.605469 C 309.464844 399.226562 307.035156 399.226562 307.035156 397.605469 C 307.035156 395.984375 309.464844 395.984375 309.464844 397.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.765625 235.542969 C 299.765625 237.164062 297.335938 237.164062 297.335938 235.542969 C 297.335938 233.921875 299.765625 233.921875 299.765625 235.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.960938 296.601562 C 300.960938 298.222656 298.53125 298.222656 298.53125 296.601562 C 298.53125 294.980469 300.960938 294.980469 300.960938 296.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.109375 237.527344 C 282.109375 239.148438 279.679688 239.148438 279.679688 237.527344 C 279.679688 235.90625 282.109375 235.90625 282.109375 237.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.464844 244.613281 C 210.464844 246.234375 208.035156 246.234375 208.035156 244.613281 C 208.035156 242.996094 210.464844 242.996094 210.464844 244.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.363281 323.53125 C 278.363281 325.152344 275.933594 325.152344 275.933594 323.53125 C 275.933594 321.910156 278.363281 321.910156 278.363281 323.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.789062 288.464844 C 277.789062 290.082031 275.359375 290.082031 275.359375 288.464844 C 275.359375 286.84375 277.789062 286.84375 277.789062 288.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.09375 276.457031 C 259.09375 278.074219 256.660156 278.074219 256.660156 276.457031 C 256.660156 274.835938 259.09375 274.835938 259.09375 276.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.757812 299.074219 C 200.757812 300.695312 198.328125 300.695312 198.328125 299.074219 C 198.328125 297.453125 200.757812 297.453125 200.757812 299.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.238281 418.691406 L 160.875 415.855469 L 157.605469 415.855469 Z M 159.238281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.117188 224.828125 C 285.117188 226.449219 282.683594 226.449219 282.683594 224.828125 C 282.683594 223.207031 285.117188 223.207031 285.117188 224.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.75 239.347656 C 272.75 240.964844 270.320312 240.964844 270.320312 239.347656 C 270.320312 237.726562 272.75 237.726562 272.75 239.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.007812 79.199219 C 270.007812 80.820312 267.578125 80.820312 267.578125 79.199219 C 267.578125 77.578125 270.007812 77.578125 270.007812 79.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.824219 90.726562 C 239.824219 92.34375 237.394531 92.34375 237.394531 90.726562 C 237.394531 89.105469 239.824219 89.105469 239.824219 90.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.519531 404.84375 C 284.519531 406.464844 282.089844 406.464844 282.089844 404.84375 C 282.089844 403.222656 284.519531 403.222656 284.519531 404.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.109375 282.648438 C 242.109375 284.269531 239.679688 284.269531 239.679688 282.648438 C 239.679688 281.03125 242.109375 281.03125 242.109375 282.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.128906 271.597656 C 278.128906 273.21875 275.699219 273.21875 275.699219 271.597656 C 275.699219 269.976562 278.128906 269.976562 278.128906 271.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.507812 265.769531 C 239.507812 267.386719 237.078125 267.386719 237.078125 265.769531 C 237.078125 264.148438 239.507812 264.148438 239.507812 265.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.460938 70.910156 L 176.097656 73.746094 L 172.824219 73.746094 Z M 174.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.671875 288.214844 C 262.671875 289.835938 260.242188 289.835938 260.242188 288.214844 C 260.242188 286.59375 262.671875 286.59375 262.671875 288.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.015625 293.699219 C 267.015625 295.320312 264.585938 295.320312 264.585938 293.699219 C 264.585938 292.082031 267.015625 292.082031 267.015625 293.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.8125 333.929688 C 316.8125 335.550781 314.382812 335.550781 314.382812 333.929688 C 314.382812 332.3125 316.8125 332.3125 316.8125 333.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.066406 239.152344 C 175.066406 240.773438 172.636719 240.773438 172.636719 239.152344 C 172.636719 237.535156 175.066406 237.535156 175.066406 239.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.195312 219.234375 C 201.195312 220.855469 198.765625 220.855469 198.765625 219.234375 C 198.765625 217.617188 201.195312 217.617188 201.195312 219.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.78125 418.691406 L 214.417969 415.855469 L 211.144531 415.855469 Z M 212.78125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.167969 116.386719 C 208.167969 118.007812 205.738281 118.007812 205.738281 116.386719 C 205.738281 114.769531 208.167969 114.769531 208.167969 116.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.492188 116.9375 C 177.492188 118.554688 175.0625 118.554688 175.0625 116.9375 C 175.0625 115.316406 177.492188 115.316406 177.492188 116.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.179688 70.910156 L 242.816406 73.746094 L 239.542969 73.746094 Z M 241.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.839844 261.265625 C 269.839844 262.886719 267.410156 262.886719 267.410156 261.265625 C 267.410156 259.644531 269.839844 259.644531 269.839844 261.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.628906 308.96875 C 288.628906 310.589844 286.199219 310.589844 286.199219 308.96875 C 286.199219 307.351562 288.628906 307.351562 288.628906 308.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.738281 191.65625 C 276.738281 193.277344 274.308594 193.277344 274.308594 191.65625 C 274.308594 190.039062 276.738281 190.039062 276.738281 191.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.402344 195.292969 C 187.402344 196.914062 184.972656 196.914062 184.972656 195.292969 C 184.972656 193.675781 187.402344 193.675781 187.402344 195.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.847656 239.125 C 157.847656 240.746094 155.417969 240.746094 155.417969 239.125 C 155.417969 237.507812 157.847656 237.507812 157.847656 239.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.917969 106.695312 C 260.917969 108.316406 258.488281 108.316406 258.488281 106.695312 C 258.488281 105.074219 260.917969 105.074219 260.917969 106.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.992188 220.789062 C 185.992188 222.40625 183.5625 222.40625 183.5625 220.789062 C 183.5625 219.167969 185.992188 219.167969 185.992188 220.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.515625 203.042969 C 242.515625 204.664062 240.082031 204.664062 240.082031 203.042969 C 240.082031 201.425781 242.515625 201.425781 242.515625 203.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.664062 311.59375 C 213.664062 313.214844 211.234375 313.214844 211.234375 311.59375 C 211.234375 309.972656 213.664062 309.972656 213.664062 311.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.488281 256.917969 C 217.488281 258.539062 215.058594 258.539062 215.058594 256.917969 C 215.058594 255.300781 217.488281 255.300781 217.488281 256.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.816406 288.8125 C 268.816406 290.429688 266.386719 290.429688 266.386719 288.8125 C 266.386719 287.191406 268.816406 287.191406 268.816406 288.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.746094 265.976562 C 261.746094 267.597656 259.316406 267.597656 259.316406 265.976562 C 259.316406 264.355469 261.746094 264.355469 261.746094 265.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.210938 305.753906 C 236.210938 307.375 233.78125 307.375 233.78125 305.753906 C 233.78125 304.132812 236.210938 304.132812 236.210938 305.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.398438 317.652344 C 259.398438 319.273438 256.96875 319.273438 256.96875 317.652344 C 256.96875 316.03125 259.398438 316.03125 259.398438 317.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.003906 285.480469 C 287.003906 287.101562 284.570312 287.101562 284.570312 285.480469 C 284.570312 283.863281 287.003906 283.863281 287.003906 285.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.652344 279.097656 C 295.652344 280.714844 293.21875 280.714844 293.21875 279.097656 C 293.21875 277.476562 295.652344 277.476562 295.652344 279.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.75 301.414062 C 225.75 303.035156 223.320312 303.035156 223.320312 301.414062 C 223.320312 299.796875 225.75 299.796875 225.75 301.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.925781 418.691406 L 131.5625 415.855469 L 128.292969 415.855469 Z M 129.925781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.207031 418.691406 L 235.84375 415.855469 L 232.570312 415.855469 Z M 234.207031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.601562 382.445312 C 210.601562 384.066406 208.171875 384.066406 208.171875 382.445312 C 208.171875 380.824219 210.601562 380.824219 210.601562 382.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.035156 402.675781 C 214.035156 404.292969 211.605469 404.292969 211.605469 402.675781 C 211.605469 401.054688 214.035156 401.054688 214.035156 402.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.394531 362.910156 C 260.394531 364.527344 257.964844 364.527344 257.964844 362.910156 C 257.964844 361.289062 260.394531 361.289062 260.394531 362.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.324219 70.910156 L 291.957031 73.746094 L 288.6875 73.746094 Z M 290.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.445312 243.289062 C 266.445312 244.90625 264.015625 244.90625 264.015625 243.289062 C 264.015625 241.667969 266.445312 241.667969 266.445312 243.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.972656 299.96875 C 273.972656 301.589844 271.542969 301.589844 271.542969 299.96875 C 271.542969 298.351562 273.972656 298.351562 273.972656 299.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.984375 314.847656 C 263.984375 316.464844 261.554688 316.464844 261.554688 314.847656 C 261.554688 313.226562 263.984375 313.226562 263.984375 314.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.964844 94.730469 C 196.964844 96.351562 194.535156 96.351562 194.535156 94.730469 C 194.535156 93.109375 196.964844 93.109375 196.964844 94.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.886719 167.753906 C 303.886719 169.371094 301.457031 169.371094 301.457031 167.753906 C 301.457031 166.132812 303.886719 166.132812 303.886719 167.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.425781 200.496094 C 168.425781 202.117188 165.996094 202.117188 165.996094 200.496094 C 165.996094 198.875 168.425781 198.875 168.425781 200.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.589844 240.339844 C 239.589844 241.960938 237.160156 241.960938 237.160156 240.339844 C 237.160156 238.71875 239.589844 238.71875 239.589844 240.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.757812 418.691406 L 260.394531 415.855469 L 257.121094 415.855469 Z M 258.757812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.117188 197.472656 C 302.117188 199.09375 299.6875 199.09375 299.6875 197.472656 C 299.6875 195.851562 302.117188 195.851562 302.117188 197.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.652344 185.324219 C 231.652344 186.945312 229.222656 186.945312 229.222656 185.324219 C 229.222656 183.703125 231.652344 183.703125 231.652344 185.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.511719 364.421875 C 289.511719 366.039062 287.082031 366.039062 287.082031 364.421875 C 287.082031 362.800781 289.511719 362.800781 289.511719 364.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.726562 168.433594 C 139.726562 170.054688 137.296875 170.054688 137.296875 168.433594 C 137.296875 166.8125 139.726562 166.8125 139.726562 168.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.050781 110.585938 C 137.050781 112.203125 134.621094 112.203125 134.621094 110.585938 C 134.621094 108.964844 137.050781 108.964844 137.050781 110.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.664062 281.289062 C 248.664062 282.910156 246.234375 282.910156 246.234375 281.289062 C 246.234375 279.667969 248.664062 279.667969 248.664062 281.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.296875 70.910156 L 166.933594 73.746094 L 163.660156 73.746094 Z M 165.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.3125 290.738281 C 276.3125 292.359375 273.882812 292.359375 273.882812 290.738281 C 273.882812 289.117188 276.3125 289.117188 276.3125 290.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.367188 349.195312 C 198.367188 350.816406 195.9375 350.816406 195.9375 349.195312 C 195.9375 347.574219 198.367188 347.574219 198.367188 349.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.503906 282.519531 C 268.503906 284.136719 266.074219 284.136719 266.074219 282.519531 C 266.074219 280.898438 268.503906 280.898438 268.503906 282.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.097656 251.75 C 221.097656 253.371094 218.667969 253.371094 218.667969 251.75 C 218.667969 250.132812 221.097656 250.132812 221.097656 251.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.632812 70.910156 L 336.269531 73.746094 L 332.996094 73.746094 Z M 334.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.679688 334.996094 C 289.679688 336.617188 287.25 336.617188 287.25 334.996094 C 287.25 333.375 289.679688 333.375 289.679688 334.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.664062 298.519531 C 275.664062 300.136719 273.234375 300.136719 273.234375 298.519531 C 273.234375 296.898438 275.664062 296.898438 275.664062 298.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.496094 328.996094 C 225.496094 330.617188 223.066406 330.617188 223.066406 328.996094 C 223.066406 327.378906 225.496094 327.378906 225.496094 328.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.816406 120.984375 C 241.816406 122.605469 239.386719 122.605469 239.386719 120.984375 C 239.386719 119.363281 241.816406 119.363281 241.816406 120.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.949219 201.128906 C 153.949219 202.75 151.519531 202.75 151.519531 201.128906 C 151.519531 199.507812 153.949219 199.507812 153.949219 201.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.738281 287.457031 C 285.738281 289.078125 283.304688 289.078125 283.304688 287.457031 C 283.304688 285.835938 285.738281 285.835938 285.738281 287.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.089844 311.429688 C 264.089844 313.050781 261.660156 313.050781 261.660156 311.429688 C 261.660156 309.8125 264.089844 309.8125 264.089844 311.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.703125 152.027344 C 267.703125 153.648438 265.273438 153.648438 265.273438 152.027344 C 265.273438 150.40625 267.703125 150.40625 267.703125 152.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.289062 283.425781 C 132.289062 285.046875 129.859375 285.046875 129.859375 283.425781 C 129.859375 281.804688 132.289062 281.804688 132.289062 283.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.070312 246.078125 C 315.070312 247.699219 312.640625 247.699219 312.640625 246.078125 C 312.640625 244.460938 315.070312 244.460938 315.070312 246.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.144531 255.238281 C 246.144531 256.859375 243.714844 256.859375 243.714844 255.238281 C 243.714844 253.617188 246.144531 253.617188 246.144531 255.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.523438 293.851562 C 248.523438 295.472656 246.09375 295.472656 246.09375 293.851562 C 246.09375 292.230469 248.523438 292.230469 248.523438 293.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.449219 239.507812 C 246.449219 241.128906 244.015625 241.128906 244.015625 239.507812 C 244.015625 237.890625 246.449219 237.890625 246.449219 239.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.914062 178.875 C 305.914062 180.496094 303.484375 180.496094 303.484375 178.875 C 303.484375 177.257812 305.914062 177.257812 305.914062 178.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.894531 191.132812 C 303.894531 192.753906 301.464844 192.753906 301.464844 191.132812 C 301.464844 189.515625 303.894531 189.515625 303.894531 191.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.660156 178.828125 C 346.660156 180.449219 344.230469 180.449219 344.230469 178.828125 C 344.230469 177.210938 346.660156 177.210938 346.660156 178.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.789062 70.910156 L 266.421875 73.746094 L 263.152344 73.746094 Z M 264.789062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.636719 418.691406 L 128.273438 415.855469 L 125 415.855469 Z M 126.636719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.382812 274.703125 C 289.382812 276.324219 286.953125 276.324219 286.953125 274.703125 C 286.953125 273.082031 289.382812 273.082031 289.382812 274.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.394531 258.730469 C 290.394531 260.347656 287.964844 260.347656 287.964844 258.730469 C 287.964844 257.109375 290.394531 257.109375 290.394531 258.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.074219 324.835938 C 226.074219 326.457031 223.644531 326.457031 223.644531 324.835938 C 223.644531 323.214844 226.074219 323.214844 226.074219 324.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.066406 303.074219 C 186.066406 304.695312 183.636719 304.695312 183.636719 303.074219 C 183.636719 301.457031 186.066406 301.457031 186.066406 303.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.371094 273.089844 C 289.371094 274.710938 286.941406 274.710938 286.941406 273.089844 C 286.941406 271.46875 289.371094 271.46875 289.371094 273.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.902344 418.691406 L 141.539062 415.855469 L 138.265625 415.855469 Z M 139.902344 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.730469 249.644531 C 243.730469 251.261719 241.300781 251.261719 241.300781 249.644531 C 241.300781 248.023438 243.730469 248.023438 243.730469 249.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.191406 273.496094 C 274.191406 275.117188 271.761719 275.117188 271.761719 273.496094 C 271.761719 271.875 274.191406 271.875 274.191406 273.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.679688 223.65625 C 225.679688 225.277344 223.246094 225.277344 223.246094 223.65625 C 223.246094 222.039062 225.679688 222.039062 225.679688 223.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.972656 223.71875 C 221.972656 225.335938 219.542969 225.335938 219.542969 223.71875 C 219.542969 222.097656 221.972656 222.097656 221.972656 223.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.242188 234.914062 C 173.242188 236.535156 170.8125 236.535156 170.8125 234.914062 C 170.8125 233.292969 173.242188 233.292969 173.242188 234.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.625 133.589844 C 316.625 135.210938 314.195312 135.210938 314.195312 133.589844 C 314.195312 131.96875 316.625 131.96875 316.625 133.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.683594 70.910156 L 233.320312 73.746094 L 230.050781 73.746094 Z M 231.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272 216.261719 C 272 217.882812 269.570312 217.882812 269.570312 216.261719 C 269.570312 214.640625 272 214.640625 272 216.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.605469 232.019531 C 274.605469 233.640625 272.175781 233.640625 272.175781 232.019531 C 272.175781 230.402344 274.605469 230.402344 274.605469 232.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.136719 260.867188 C 234.136719 262.488281 231.707031 262.488281 231.707031 260.867188 C 231.707031 259.246094 234.136719 259.246094 234.136719 260.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.230469 418.691406 L 130.867188 415.855469 L 127.59375 415.855469 Z M 129.230469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.472656 272.15625 C 270.472656 273.773438 268.042969 273.773438 268.042969 272.15625 C 268.042969 270.535156 270.472656 270.535156 270.472656 272.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.867188 275.675781 C 194.867188 277.296875 192.4375 277.296875 192.4375 275.675781 C 192.4375 274.054688 194.867188 274.054688 194.867188 275.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.574219 70.910156 L 246.210938 73.746094 L 242.9375 73.746094 Z M 244.574219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.648438 70.910156 L 180.285156 73.746094 L 177.015625 73.746094 Z M 178.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.597656 142.03125 C 286.597656 143.652344 284.167969 143.652344 284.167969 142.03125 C 284.167969 140.414062 286.597656 140.414062 286.597656 142.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.167969 290.175781 C 284.167969 291.792969 281.738281 291.792969 281.738281 290.175781 C 281.738281 288.554688 284.167969 288.554688 284.167969 290.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.496094 258.160156 C 266.496094 259.78125 264.066406 259.78125 264.066406 258.160156 C 264.066406 256.539062 266.496094 256.539062 266.496094 258.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.738281 279.453125 C 317.738281 281.070312 315.308594 281.070312 315.308594 279.453125 C 315.308594 277.832031 317.738281 277.832031 317.738281 279.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 185.058594 404.132812 C 185.058594 405.75 182.628906 405.75 182.628906 404.132812 C 182.628906 402.511719 185.058594 402.511719 185.058594 404.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.886719 70.910156 L 191.523438 73.746094 L 188.25 73.746094 Z M 189.886719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.070312 70.910156 L 147.707031 73.746094 L 144.433594 73.746094 Z M 146.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.75 217.75 C 277.75 219.371094 275.320312 219.371094 275.320312 217.75 C 275.320312 216.132812 277.75 216.132812 277.75 217.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.207031 219.171875 C 141.207031 220.789062 138.777344 220.789062 138.777344 219.171875 C 138.777344 217.550781 141.207031 217.550781 141.207031 219.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.039062 277.613281 C 273.039062 279.230469 270.609375 279.230469 270.609375 277.613281 C 270.609375 275.992188 273.039062 275.992188 273.039062 277.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.050781 235.265625 C 242.050781 236.886719 239.621094 236.886719 239.621094 235.265625 C 239.621094 233.648438 242.050781 233.648438 242.050781 235.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.015625 143.8125 C 245.015625 145.429688 242.585938 145.429688 242.585938 143.8125 C 242.585938 142.191406 245.015625 142.191406 245.015625 143.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.59375 114.078125 C 254.59375 115.699219 252.164062 115.699219 252.164062 114.078125 C 252.164062 112.460938 254.59375 112.460938 254.59375 114.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.144531 70.910156 L 163.78125 73.746094 L 160.507812 73.746094 Z M 162.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.28125 86.890625 C 125.28125 88.511719 122.851562 88.511719 122.851562 86.890625 C 122.851562 85.269531 125.28125 85.269531 125.28125 86.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.859375 70.910156 L 262.492188 73.746094 L 259.222656 73.746094 Z M 260.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.539062 237.4375 C 176.539062 239.058594 174.109375 239.058594 174.109375 237.4375 C 174.109375 235.816406 176.539062 235.816406 176.539062 237.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.4375 172.230469 C 227.4375 173.851562 225.007812 173.851562 225.007812 172.230469 C 225.007812 170.609375 227.4375 170.609375 227.4375 172.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.933594 70.910156 L 284.566406 73.746094 L 281.296875 73.746094 Z M 282.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.632812 388.359375 C 136.632812 389.980469 134.203125 389.980469 134.203125 388.359375 C 134.203125 386.738281 136.632812 386.738281 136.632812 388.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.644531 70.910156 L 188.28125 73.746094 L 185.007812 73.746094 Z M 186.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.796875 157.570312 C 128.796875 159.1875 126.367188 159.1875 126.367188 157.570312 C 126.367188 155.949219 128.796875 155.949219 128.796875 157.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.121094 269.136719 C 284.121094 270.757812 281.691406 270.757812 281.691406 269.136719 C 281.691406 267.515625 284.121094 267.515625 284.121094 269.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.972656 364.644531 C 212.972656 366.261719 210.539062 366.261719 210.539062 364.644531 C 210.539062 363.023438 212.972656 363.023438 212.972656 364.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.371094 273.6875 C 220.371094 275.308594 217.941406 275.308594 217.941406 273.6875 C 217.941406 272.066406 220.371094 272.066406 220.371094 273.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.359375 70.910156 L 136.996094 73.746094 L 133.722656 73.746094 Z M 135.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.789062 266.910156 C 322.789062 268.53125 320.359375 268.53125 320.359375 266.910156 C 320.359375 265.289062 322.789062 265.289062 322.789062 266.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.5625 201.59375 C 289.5625 203.214844 287.132812 203.214844 287.132812 201.59375 C 287.132812 199.972656 289.5625 199.972656 289.5625 201.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.042969 170.199219 C 267.042969 171.820312 264.613281 171.820312 264.613281 170.199219 C 264.613281 168.578125 267.042969 168.578125 267.042969 170.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.703125 155.035156 C 226.703125 156.65625 224.273438 156.65625 224.273438 155.035156 C 224.273438 153.414062 226.703125 153.414062 226.703125 155.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.84375 279.875 C 260.84375 281.496094 258.414062 281.496094 258.414062 279.875 C 258.414062 278.257812 260.84375 278.257812 260.84375 279.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.785156 211.480469 C 187.785156 213.101562 185.355469 213.101562 185.355469 211.480469 C 185.355469 209.863281 187.785156 209.863281 187.785156 211.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.582031 70.910156 L 151.21875 73.746094 L 147.945312 73.746094 Z M 149.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.742188 213.5 C 203.742188 215.121094 201.3125 215.121094 201.3125 213.5 C 201.3125 211.882812 203.742188 211.882812 203.742188 213.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.976562 212.703125 C 226.976562 214.324219 224.546875 214.324219 224.546875 212.703125 C 224.546875 211.085938 226.976562 211.085938 226.976562 212.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.976562 245.488281 C 276.976562 247.109375 274.546875 247.109375 274.546875 245.488281 C 274.546875 243.871094 276.976562 243.871094 276.976562 245.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.261719 119.273438 C 213.261719 120.890625 210.832031 120.890625 210.832031 119.273438 C 210.832031 117.652344 213.261719 117.652344 213.261719 119.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.789062 197.351562 C 175.789062 198.972656 173.359375 198.972656 173.359375 197.351562 C 173.359375 195.730469 175.789062 195.730469 175.789062 197.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.566406 220.550781 C 238.566406 222.171875 236.136719 222.171875 236.136719 220.550781 C 236.136719 218.933594 238.566406 218.933594 238.566406 220.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.132812 209.449219 C 189.132812 211.070312 186.703125 211.070312 186.703125 209.449219 C 186.703125 207.828125 189.132812 207.828125 189.132812 209.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.632812 70.910156 L 297.269531 73.746094 L 293.996094 73.746094 Z M 295.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.722656 251.257812 C 228.722656 252.875 226.292969 252.875 226.292969 251.257812 C 226.292969 249.636719 228.722656 249.636719 228.722656 251.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.597656 244.191406 C 136.597656 245.8125 134.167969 245.8125 134.167969 244.191406 C 134.167969 242.570312 136.597656 242.570312 136.597656 244.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.417969 244.003906 C 170.417969 245.621094 167.988281 245.621094 167.988281 244.003906 C 167.988281 242.382812 170.417969 242.382812 170.417969 244.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.371094 244.773438 C 239.371094 246.394531 236.941406 246.394531 236.941406 244.773438 C 236.941406 243.15625 239.371094 243.15625 239.371094 244.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.015625 222.410156 C 222.015625 224.03125 219.585938 224.03125 219.585938 222.410156 C 219.585938 220.789062 222.015625 220.789062 222.015625 222.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.140625 70.910156 L 139.777344 73.746094 L 136.503906 73.746094 Z M 138.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.265625 258.804688 C 229.265625 260.425781 226.835938 260.425781 226.835938 258.804688 C 226.835938 257.1875 229.265625 257.1875 229.265625 258.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.847656 268.042969 C 213.847656 269.664062 211.417969 269.664062 211.417969 268.042969 C 211.417969 266.421875 213.847656 266.421875 213.847656 268.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.519531 242.777344 C 209.519531 244.398438 207.089844 244.398438 207.089844 242.777344 C 207.089844 241.15625 209.519531 241.15625 209.519531 242.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.957031 219.429688 C 269.957031 221.050781 267.527344 221.050781 267.527344 219.429688 C 267.527344 217.8125 269.957031 217.8125 269.957031 219.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.875 340.222656 C 169.875 341.84375 167.445312 341.84375 167.445312 340.222656 C 167.445312 338.605469 169.875 338.605469 169.875 340.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.945312 229.980469 C 182.945312 231.601562 180.515625 231.601562 180.515625 229.980469 C 180.515625 228.359375 182.945312 228.359375 182.945312 229.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.296875 289.832031 C 306.296875 291.453125 303.867188 291.453125 303.867188 289.832031 C 303.867188 288.214844 306.296875 288.214844 306.296875 289.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.019531 70.910156 L 149.65625 73.746094 L 146.382812 73.746094 Z M 148.019531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.871094 172.269531 C 180.871094 173.890625 178.441406 173.890625 178.441406 172.269531 C 178.441406 170.648438 180.871094 170.648438 180.871094 172.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.425781 70.910156 L 276.0625 73.746094 L 272.789062 73.746094 Z M 274.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.535156 70.910156 L 157.167969 73.746094 L 153.898438 73.746094 Z M 155.535156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.789062 70.910156 L 127.425781 73.746094 L 124.152344 73.746094 Z M 125.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.855469 164.109375 C 276.855469 165.726562 274.421875 165.726562 274.421875 164.109375 C 274.421875 162.488281 276.855469 162.488281 276.855469 164.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.140625 358.671875 C 159.140625 360.292969 156.710938 360.292969 156.710938 358.671875 C 156.710938 357.054688 159.140625 357.054688 159.140625 358.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.421875 316.722656 C 246.421875 318.339844 243.992188 318.339844 243.992188 316.722656 C 243.992188 315.101562 246.421875 315.101562 246.421875 316.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.019531 244.371094 C 319.019531 245.992188 316.589844 245.992188 316.589844 244.371094 C 316.589844 242.75 319.019531 242.75 319.019531 244.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.5 155.808594 C 177.5 157.429688 175.070312 157.429688 175.070312 155.808594 C 175.070312 154.1875 177.5 154.1875 177.5 155.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.542969 147.691406 C 290.542969 149.3125 288.113281 149.3125 288.113281 147.691406 C 288.113281 146.070312 290.542969 146.070312 290.542969 147.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.285156 311.996094 C 172.285156 313.617188 169.855469 313.617188 169.855469 311.996094 C 169.855469 310.375 172.285156 310.375 172.285156 311.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.816406 70.910156 L 128.453125 73.746094 L 125.183594 73.746094 Z M 126.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.804688 196.105469 C 194.804688 197.722656 192.375 197.722656 192.375 196.105469 C 192.375 194.484375 194.804688 194.484375 194.804688 196.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.476562 239.6875 C 205.476562 241.308594 203.042969 241.308594 203.042969 239.6875 C 203.042969 238.066406 205.476562 238.066406 205.476562 239.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.488281 305.847656 C 255.488281 307.46875 253.058594 307.46875 253.058594 305.847656 C 253.058594 304.226562 255.488281 304.226562 255.488281 305.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.066406 124.511719 C 248.066406 126.132812 245.636719 126.132812 245.636719 124.511719 C 245.636719 122.894531 248.066406 122.894531 248.066406 124.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.148438 219.136719 C 221.148438 220.757812 218.71875 220.757812 218.71875 219.136719 C 218.71875 217.519531 221.148438 217.519531 221.148438 219.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.386719 310.164062 C 259.386719 311.785156 256.957031 311.785156 256.957031 310.164062 C 256.957031 308.542969 259.386719 308.542969 259.386719 310.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.0625 159.726562 C 189.0625 161.347656 186.628906 161.347656 186.628906 159.726562 C 186.628906 158.105469 189.0625 158.105469 189.0625 159.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.03125 222.101562 C 246.03125 223.722656 243.601562 223.722656 243.601562 222.101562 C 243.601562 220.480469 246.03125 220.480469 246.03125 222.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.96875 274.574219 C 313.96875 276.195312 311.539062 276.195312 311.539062 274.574219 C 311.539062 272.957031 313.96875 272.957031 313.96875 274.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.265625 281.679688 C 209.265625 283.296875 206.835938 283.296875 206.835938 281.679688 C 206.835938 280.058594 209.265625 280.058594 209.265625 281.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.96875 222.78125 C 323.96875 224.402344 321.539062 224.402344 321.539062 222.78125 C 321.539062 221.160156 323.96875 221.160156 323.96875 222.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.777344 391.09375 C 282.777344 392.714844 280.34375 392.714844 280.34375 391.09375 C 280.34375 389.472656 282.777344 389.472656 282.777344 391.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.628906 228.863281 C 310.628906 230.484375 308.199219 230.484375 308.199219 228.863281 C 308.199219 227.246094 310.628906 227.246094 310.628906 228.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.269531 206.8125 C 205.269531 208.433594 202.839844 208.433594 202.839844 206.8125 C 202.839844 205.195312 205.269531 205.195312 205.269531 206.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.964844 198.425781 C 196.964844 200.046875 194.535156 200.046875 194.535156 198.425781 C 194.535156 196.804688 196.964844 196.804688 196.964844 198.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.144531 225.007812 C 331.144531 226.628906 328.714844 226.628906 328.714844 225.007812 C 328.714844 223.390625 331.144531 223.390625 331.144531 225.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.402344 257.464844 C 265.402344 259.085938 262.972656 259.085938 262.972656 257.464844 C 262.972656 255.847656 265.402344 255.847656 265.402344 257.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.910156 298.292969 C 157.910156 299.910156 155.480469 299.910156 155.480469 298.292969 C 155.480469 296.671875 157.910156 296.671875 157.910156 298.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.613281 312.652344 C 270.613281 314.273438 268.183594 314.273438 268.183594 312.652344 C 268.183594 311.03125 270.613281 311.03125 270.613281 312.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.359375 305.953125 C 280.359375 307.574219 277.929688 307.574219 277.929688 305.953125 C 277.929688 304.335938 280.359375 304.335938 280.359375 305.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.761719 230.199219 C 254.761719 231.820312 252.332031 231.820312 252.332031 230.199219 C 252.332031 228.582031 254.761719 228.582031 254.761719 230.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.085938 197.585938 C 251.085938 199.207031 248.65625 199.207031 248.65625 197.585938 C 248.65625 195.964844 251.085938 195.964844 251.085938 197.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.828125 286.238281 C 267.828125 287.855469 265.394531 287.855469 265.394531 286.238281 C 265.394531 284.617188 267.828125 284.617188 267.828125 286.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.480469 301.214844 C 264.480469 302.835938 262.046875 302.835938 262.046875 301.214844 C 262.046875 299.59375 264.480469 299.59375 264.480469 301.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.660156 290.226562 C 185.660156 291.84375 183.230469 291.84375 183.230469 290.226562 C 183.230469 288.605469 185.660156 288.605469 185.660156 290.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.191406 302.691406 C 123.191406 304.3125 120.761719 304.3125 120.761719 302.691406 C 120.761719 301.074219 123.191406 301.074219 123.191406 302.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.371094 271.285156 C 174.371094 272.90625 171.941406 272.90625 171.941406 271.285156 C 171.941406 269.664062 174.371094 269.664062 174.371094 271.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.9375 227.742188 C 262.9375 229.359375 260.503906 229.359375 260.503906 227.742188 C 260.503906 226.121094 262.9375 226.121094 262.9375 227.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.273438 199.980469 C 123.273438 201.601562 120.84375 201.601562 120.84375 199.980469 C 120.84375 198.363281 123.273438 198.363281 123.273438 199.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.4375 77.683594 C 239.4375 79.304688 237.007812 79.304688 237.007812 77.683594 C 237.007812 76.066406 239.4375 76.066406 239.4375 77.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.40625 231.941406 C 260.40625 233.5625 257.976562 233.5625 257.976562 231.941406 C 257.976562 230.324219 260.40625 230.324219 260.40625 231.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.222656 211.070312 C 121.222656 212.6875 118.792969 212.6875 118.792969 211.070312 C 118.792969 209.449219 121.222656 209.449219 121.222656 211.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.738281 276.847656 C 236.738281 278.46875 234.308594 278.46875 234.308594 276.847656 C 234.308594 275.230469 236.738281 275.230469 236.738281 276.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.773438 261.335938 C 227.773438 262.957031 225.34375 262.957031 225.34375 261.335938 C 225.34375 259.714844 227.773438 259.714844 227.773438 261.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.921875 362.558594 C 145.921875 364.179688 143.492188 364.179688 143.492188 362.558594 C 143.492188 360.941406 145.921875 360.941406 145.921875 362.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.96875 270.960938 C 141.96875 272.582031 139.539062 272.582031 139.539062 270.960938 C 139.539062 269.339844 141.96875 269.339844 141.96875 270.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.320312 263.441406 C 272.320312 265.058594 269.890625 265.058594 269.890625 263.441406 C 269.890625 261.820312 272.320312 261.820312 272.320312 263.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.4375 233.492188 C 269.4375 235.109375 267.007812 235.109375 267.007812 233.492188 C 267.007812 231.871094 269.4375 231.871094 269.4375 233.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.253906 210.574219 C 205.253906 212.195312 202.824219 212.195312 202.824219 210.574219 C 202.824219 208.953125 205.253906 208.953125 205.253906 210.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.144531 253.664062 C 189.144531 255.285156 186.714844 255.285156 186.714844 253.664062 C 186.714844 252.042969 189.144531 252.042969 189.144531 253.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.597656 247.511719 C 179.597656 249.128906 177.167969 249.128906 177.167969 247.511719 C 177.167969 245.890625 179.597656 245.890625 179.597656 247.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.082031 70.910156 L 173.71875 73.746094 L 170.445312 73.746094 Z M 172.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.597656 260.296875 C 280.597656 261.914062 278.167969 261.914062 278.167969 260.296875 C 278.167969 258.675781 280.597656 258.675781 280.597656 260.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.792969 265.726562 C 229.792969 267.347656 227.363281 267.347656 227.363281 265.726562 C 227.363281 264.105469 229.792969 264.105469 229.792969 265.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.144531 70.910156 L 133.78125 73.746094 L 130.507812 73.746094 Z M 132.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.269531 213.21875 C 287.269531 214.839844 284.839844 214.839844 284.839844 213.21875 C 284.839844 211.601562 287.269531 211.601562 287.269531 213.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.007812 73.453125 C 270.007812 75.074219 267.578125 75.074219 267.578125 73.453125 C 267.578125 71.832031 270.007812 71.832031 270.007812 73.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.886719 249.117188 C 263.886719 250.738281 261.457031 250.738281 261.457031 249.117188 C 261.457031 247.496094 263.886719 247.496094 263.886719 249.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.785156 231.609375 C 265.785156 233.230469 263.351562 233.230469 263.351562 231.609375 C 263.351562 229.988281 265.785156 229.988281 265.785156 231.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.1875 272.046875 C 244.1875 273.667969 241.757812 273.667969 241.757812 272.046875 C 241.757812 270.429688 244.1875 270.429688 244.1875 272.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.09375 290.386719 C 276.09375 292.003906 273.664062 292.003906 273.664062 290.386719 C 273.664062 288.765625 276.09375 288.765625 276.09375 290.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.574219 305.300781 C 123.574219 306.917969 121.140625 306.917969 121.140625 305.300781 C 121.140625 303.679688 123.574219 303.679688 123.574219 305.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.777344 232.46875 C 306.777344 234.085938 304.347656 234.085938 304.347656 232.46875 C 304.347656 230.847656 306.777344 230.847656 306.777344 232.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.039062 247.820312 C 223.039062 249.441406 220.609375 249.441406 220.609375 247.820312 C 220.609375 246.203125 223.039062 246.203125 223.039062 247.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.171875 262.78125 C 261.171875 264.402344 258.742188 264.402344 258.742188 262.78125 C 258.742188 261.160156 261.171875 261.160156 261.171875 262.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.460938 279.292969 C 260.460938 280.910156 258.03125 280.910156 258.03125 279.292969 C 258.03125 277.671875 260.460938 277.671875 260.460938 279.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.878906 190.867188 C 277.878906 192.488281 275.449219 192.488281 275.449219 190.867188 C 275.449219 189.246094 277.878906 189.246094 277.878906 190.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.738281 279.304688 C 179.738281 280.921875 177.308594 280.921875 177.308594 279.304688 C 177.308594 277.683594 179.738281 277.683594 179.738281 279.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.003906 292.863281 C 331.003906 294.484375 328.574219 294.484375 328.574219 292.863281 C 328.574219 291.246094 331.003906 291.246094 331.003906 292.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.933594 262.789062 C 255.933594 264.410156 253.503906 264.410156 253.503906 262.789062 C 253.503906 261.171875 255.933594 261.171875 255.933594 262.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.472656 210.335938 C 298.472656 211.957031 296.042969 211.957031 296.042969 210.335938 C 296.042969 208.71875 298.472656 208.71875 298.472656 210.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.742188 241.753906 C 251.742188 243.375 249.3125 243.375 249.3125 241.753906 C 249.3125 240.136719 251.742188 240.136719 251.742188 241.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.839844 242.757812 C 232.839844 244.378906 230.410156 244.378906 230.410156 242.757812 C 230.410156 241.140625 232.839844 241.140625 232.839844 242.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.503906 92.363281 C 243.503906 93.984375 241.074219 93.984375 241.074219 92.363281 C 241.074219 90.742188 243.503906 90.742188 243.503906 92.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.550781 256.773438 C 269.550781 258.394531 267.121094 258.394531 267.121094 256.773438 C 267.121094 255.152344 269.550781 255.152344 269.550781 256.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.820312 248.046875 C 263.820312 249.667969 261.390625 249.667969 261.390625 248.046875 C 261.390625 246.425781 263.820312 246.425781 263.820312 248.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.40625 293.398438 C 267.40625 295.015625 264.976562 295.015625 264.976562 293.398438 C 264.976562 291.777344 267.40625 291.777344 267.40625 293.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.65625 326.3125 C 172.65625 327.933594 170.226562 327.933594 170.226562 326.3125 C 170.226562 324.691406 172.65625 324.691406 172.65625 326.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.242188 311 C 164.242188 312.621094 161.8125 312.621094 161.8125 311 C 161.8125 309.378906 164.242188 309.378906 164.242188 311 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.527344 198.476562 C 319.527344 200.09375 317.097656 200.09375 317.097656 198.476562 C 317.097656 196.855469 319.527344 196.855469 319.527344 198.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.578125 70.910156 L 168.214844 73.746094 L 164.941406 73.746094 Z M 166.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.914062 243.734375 C 240.914062 245.355469 238.484375 245.355469 238.484375 243.734375 C 238.484375 242.113281 240.914062 242.113281 240.914062 243.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.210938 228.910156 C 208.210938 230.53125 205.78125 230.53125 205.78125 228.910156 C 205.78125 227.289062 208.210938 227.289062 208.210938 228.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.484375 275.527344 C 227.484375 277.148438 225.054688 277.148438 225.054688 275.527344 C 225.054688 273.90625 227.484375 273.90625 227.484375 275.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.957031 244.628906 C 275.957031 246.25 273.527344 246.25 273.527344 244.628906 C 273.527344 243.011719 275.957031 243.011719 275.957031 244.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.667969 171.394531 C 245.667969 173.015625 243.238281 173.015625 243.238281 171.394531 C 243.238281 169.773438 245.667969 169.773438 245.667969 171.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.453125 171.554688 C 216.453125 173.175781 214.023438 173.175781 214.023438 171.554688 C 214.023438 169.9375 216.453125 169.9375 216.453125 171.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.796875 418.691406 L 192.433594 415.855469 L 189.160156 415.855469 Z M 190.796875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.65625 89.320312 C 139.65625 90.9375 137.226562 90.9375 137.226562 89.320312 C 137.226562 87.699219 139.65625 87.699219 139.65625 89.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.292969 363.316406 C 195.292969 364.933594 192.863281 364.933594 192.863281 363.316406 C 192.863281 361.695312 195.292969 361.695312 195.292969 363.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.703125 195.929688 C 171.703125 197.546875 169.273438 197.546875 169.273438 195.929688 C 169.273438 194.308594 171.703125 194.308594 171.703125 195.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.261719 70.910156 L 183.898438 73.746094 L 180.625 73.746094 Z M 182.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.945312 223.011719 C 306.945312 224.632812 304.515625 224.632812 304.515625 223.011719 C 304.515625 221.390625 306.945312 221.390625 306.945312 223.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.78125 307.667969 C 200.78125 309.289062 198.351562 309.289062 198.351562 307.667969 C 198.351562 306.046875 200.78125 306.046875 200.78125 307.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.601562 252.914062 C 217.601562 254.53125 215.171875 254.53125 215.171875 252.914062 C 215.171875 251.292969 217.601562 251.292969 217.601562 252.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.6875 241.203125 C 260.6875 242.824219 258.257812 242.824219 258.257812 241.203125 C 258.257812 239.585938 260.6875 239.585938 260.6875 241.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.664062 226.507812 C 271.664062 228.125 269.234375 228.125 269.234375 226.507812 C 269.234375 224.886719 271.664062 224.886719 271.664062 226.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.179688 310.78125 C 272.179688 312.402344 269.75 312.402344 269.75 310.78125 C 269.75 309.160156 272.179688 309.160156 272.179688 310.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.359375 286.109375 C 263.359375 287.730469 260.929688 287.730469 260.929688 286.109375 C 260.929688 284.492188 263.359375 284.492188 263.359375 286.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.167969 353.996094 C 262.167969 355.617188 259.738281 355.617188 259.738281 353.996094 C 259.738281 352.378906 262.167969 352.378906 262.167969 353.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.320312 282.132812 C 264.320312 283.753906 261.890625 283.753906 261.890625 282.132812 C 261.890625 280.515625 264.320312 280.515625 264.320312 282.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.355469 259.40625 C 321.355469 261.027344 318.925781 261.027344 318.925781 259.40625 C 318.925781 257.789062 321.355469 257.789062 321.355469 259.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.109375 70.910156 L 164.746094 73.746094 L 161.472656 73.746094 Z M 163.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.402344 70.910156 L 243.039062 73.746094 L 239.765625 73.746094 Z M 241.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.128906 289.242188 C 253.128906 290.863281 250.699219 290.863281 250.699219 289.242188 C 250.699219 287.621094 253.128906 287.621094 253.128906 289.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.140625 304.074219 C 258.140625 305.695312 255.710938 305.695312 255.710938 304.074219 C 255.710938 302.453125 258.140625 302.453125 258.140625 304.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.636719 253.769531 C 130.636719 255.386719 128.207031 255.386719 128.207031 253.769531 C 128.207031 252.148438 130.636719 252.148438 130.636719 253.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.011719 277.21875 C 320.011719 278.839844 317.582031 278.839844 317.582031 277.21875 C 317.582031 275.597656 320.011719 275.597656 320.011719 277.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.875 115.484375 C 192.875 117.101562 190.445312 117.101562 190.445312 115.484375 C 190.445312 113.863281 192.875 113.863281 192.875 115.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.140625 70.910156 L 155.777344 73.746094 L 152.503906 73.746094 Z M 154.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.746094 259.730469 C 270.746094 261.351562 268.316406 261.351562 268.316406 259.730469 C 268.316406 258.109375 270.746094 258.109375 270.746094 259.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.078125 283.082031 C 199.078125 284.703125 196.648438 284.703125 196.648438 283.082031 C 196.648438 281.460938 199.078125 281.460938 199.078125 283.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 352.871094 154.832031 C 352.871094 156.453125 350.441406 156.453125 350.441406 154.832031 C 350.441406 153.214844 352.871094 153.214844 352.871094 154.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.691406 70.910156 L 235.328125 73.746094 L 232.054688 73.746094 Z M 233.691406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.839844 70.910156 L 198.476562 73.746094 L 195.203125 73.746094 Z M 196.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.945312 287.160156 C 304.945312 288.777344 302.515625 288.777344 302.515625 287.160156 C 302.515625 285.539062 304.945312 285.539062 304.945312 287.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.828125 314.703125 C 335.828125 316.320312 333.398438 316.320312 333.398438 314.703125 C 333.398438 313.082031 335.828125 313.082031 335.828125 314.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.019531 182.167969 C 280.019531 183.789062 277.589844 183.789062 277.589844 182.167969 C 277.589844 180.550781 280.019531 180.550781 280.019531 182.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.105469 210.363281 C 123.105469 211.984375 120.675781 211.984375 120.675781 210.363281 C 120.675781 208.746094 123.105469 208.746094 123.105469 210.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.367188 202.378906 C 224.367188 203.996094 221.9375 203.996094 221.9375 202.378906 C 221.9375 200.757812 224.367188 200.757812 224.367188 202.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.277344 288.902344 C 285.277344 290.523438 282.84375 290.523438 282.84375 288.902344 C 282.84375 287.285156 285.277344 287.285156 285.277344 288.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.785156 269.257812 C 297.785156 270.878906 295.355469 270.878906 295.355469 269.257812 C 295.355469 267.636719 297.785156 267.636719 297.785156 269.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.527344 213.222656 C 273.527344 214.839844 271.097656 214.839844 271.097656 213.222656 C 271.097656 211.601562 273.527344 211.601562 273.527344 213.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.859375 283.539062 C 169.859375 285.160156 167.429688 285.160156 167.429688 283.539062 C 167.429688 281.917969 169.859375 281.917969 169.859375 283.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.859375 234.933594 C 179.859375 236.554688 177.429688 236.554688 177.429688 234.933594 C 177.429688 233.3125 179.859375 233.3125 179.859375 234.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.675781 198.539062 C 229.675781 200.160156 227.246094 200.160156 227.246094 198.539062 C 227.246094 196.917969 229.675781 196.917969 229.675781 198.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.113281 263.96875 C 301.113281 265.589844 298.683594 265.589844 298.683594 263.96875 C 298.683594 262.347656 301.113281 262.347656 301.113281 263.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.121094 264.078125 C 310.121094 265.695312 307.691406 265.695312 307.691406 264.078125 C 307.691406 262.457031 310.121094 262.457031 310.121094 264.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.484375 288.066406 C 309.484375 289.683594 307.054688 289.683594 307.054688 288.066406 C 307.054688 286.445312 309.484375 286.445312 309.484375 288.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.011719 248.171875 C 282.011719 249.792969 279.582031 249.792969 279.582031 248.171875 C 279.582031 246.554688 282.011719 246.554688 282.011719 248.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.394531 241.480469 C 269.394531 243.101562 266.960938 243.101562 266.960938 241.480469 C 266.960938 239.863281 269.394531 239.863281 269.394531 241.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.65625 70.910156 L 159.292969 73.746094 L 156.019531 73.746094 Z M 157.65625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.042969 70.910156 L 146.679688 73.746094 L 143.40625 73.746094 Z M 145.042969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.375 418.691406 L 159.011719 415.855469 L 155.742188 415.855469 Z M 157.375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.972656 143.648438 C 215.972656 145.265625 213.542969 145.265625 213.542969 143.648438 C 213.542969 142.027344 215.972656 142.027344 215.972656 143.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.167969 157.15625 C 333.167969 158.777344 330.738281 158.777344 330.738281 157.15625 C 330.738281 155.535156 333.167969 155.535156 333.167969 157.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.5 187.234375 C 298.5 188.855469 296.070312 188.855469 296.070312 187.234375 C 296.070312 185.613281 298.5 185.613281 298.5 187.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.828125 197.503906 C 265.828125 199.121094 263.398438 199.121094 263.398438 197.503906 C 263.398438 195.882812 265.828125 195.882812 265.828125 197.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.03125 204.253906 C 320.03125 205.875 317.601562 205.875 317.601562 204.253906 C 317.601562 202.632812 320.03125 202.632812 320.03125 204.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.675781 74.234375 C 226.675781 75.855469 224.246094 75.855469 224.246094 74.234375 C 224.246094 72.613281 226.675781 72.613281 226.675781 74.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.480469 281.855469 C 154.480469 283.476562 152.050781 283.476562 152.050781 281.855469 C 152.050781 280.234375 154.480469 280.234375 154.480469 281.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.75 266.160156 C 159.75 267.78125 157.320312 267.78125 157.320312 266.160156 C 157.320312 264.539062 159.75 264.539062 159.75 266.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.257812 312.050781 C 226.257812 313.671875 223.828125 313.671875 223.828125 312.050781 C 223.828125 310.429688 226.257812 310.429688 226.257812 312.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.886719 267.542969 C 252.886719 269.164062 250.453125 269.164062 250.453125 267.542969 C 250.453125 265.921875 252.886719 265.921875 252.886719 267.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.632812 411.089844 C 232.632812 412.710938 230.203125 412.710938 230.203125 411.089844 C 230.203125 409.46875 232.632812 409.46875 232.632812 411.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.351562 343.375 C 302.351562 344.996094 299.921875 344.996094 299.921875 343.375 C 299.921875 341.753906 302.351562 341.753906 302.351562 343.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.285156 224.984375 C 230.285156 226.605469 227.855469 226.605469 227.855469 224.984375 C 227.855469 223.363281 230.285156 223.363281 230.285156 224.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.890625 234.226562 C 236.890625 235.84375 234.460938 235.84375 234.460938 234.226562 C 234.460938 232.605469 236.890625 232.605469 236.890625 234.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.011719 224.308594 C 270.011719 225.925781 267.582031 225.925781 267.582031 224.308594 C 267.582031 222.6875 270.011719 222.6875 270.011719 224.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.363281 209.105469 C 248.363281 210.726562 245.933594 210.726562 245.933594 209.105469 C 245.933594 207.484375 248.363281 207.484375 248.363281 209.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.21875 170.457031 C 183.21875 172.078125 180.789062 172.078125 180.789062 170.457031 C 180.789062 168.835938 183.21875 168.835938 183.21875 170.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.898438 288.710938 C 241.898438 290.328125 239.46875 290.328125 239.46875 288.710938 C 239.46875 287.089844 241.898438 287.089844 241.898438 288.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.890625 281.511719 C 262.890625 283.132812 260.460938 283.132812 260.460938 281.511719 C 260.460938 279.890625 262.890625 279.890625 262.890625 281.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.726562 258.652344 C 247.726562 260.269531 245.296875 260.269531 245.296875 258.652344 C 245.296875 257.03125 247.726562 257.03125 247.726562 258.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.671875 267.050781 C 313.671875 268.667969 311.242188 268.667969 311.242188 267.050781 C 311.242188 265.429688 313.671875 265.429688 313.671875 267.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.132812 285.390625 C 255.132812 287.011719 252.703125 287.011719 252.703125 285.390625 C 252.703125 283.769531 255.132812 283.769531 255.132812 285.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.328125 127.570312 C 117.328125 129.191406 114.898438 129.191406 114.898438 127.570312 C 114.898438 125.953125 117.328125 125.953125 117.328125 127.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.984375 251.269531 C 226.984375 252.890625 224.554688 252.890625 224.554688 251.269531 C 224.554688 249.648438 226.984375 249.648438 226.984375 251.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.867188 305.375 C 232.867188 306.996094 230.4375 306.996094 230.4375 305.375 C 230.4375 303.753906 232.867188 303.753906 232.867188 305.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.0625 202.914062 C 196.0625 204.535156 193.632812 204.535156 193.632812 202.914062 C 193.632812 201.296875 196.0625 201.296875 196.0625 202.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.9375 238.550781 C 271.9375 240.167969 269.507812 240.167969 269.507812 238.550781 C 269.507812 236.929688 271.9375 236.929688 271.9375 238.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.289062 295.777344 C 285.289062 297.394531 282.859375 297.394531 282.859375 295.777344 C 282.859375 294.15625 285.289062 294.15625 285.289062 295.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.6875 94.808594 C 250.6875 96.429688 248.257812 96.429688 248.257812 94.808594 C 248.257812 93.1875 250.6875 93.1875 250.6875 94.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.691406 234.46875 C 118.691406 236.089844 116.261719 236.089844 116.261719 234.46875 C 116.261719 232.851562 118.691406 232.851562 118.691406 234.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.179688 266.871094 C 154.179688 268.492188 151.75 268.492188 151.75 266.871094 C 151.75 265.25 154.179688 265.25 154.179688 266.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.617188 337.976562 C 225.617188 339.597656 223.1875 339.597656 223.1875 337.976562 C 223.1875 336.355469 225.617188 336.355469 225.617188 337.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.660156 228.710938 C 271.660156 230.328125 269.230469 230.328125 269.230469 228.710938 C 269.230469 227.089844 271.660156 227.089844 271.660156 228.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.679688 70.910156 L 268.316406 73.746094 L 265.042969 73.746094 Z M 266.679688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.761719 70.910156 L 264.398438 73.746094 L 261.125 73.746094 Z M 262.761719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.492188 70.910156 L 290.128906 73.746094 L 286.855469 73.746094 Z M 288.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.308594 275.339844 C 330.308594 276.960938 327.878906 276.960938 327.878906 275.339844 C 327.878906 273.71875 330.308594 273.71875 330.308594 275.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.609375 70.910156 L 258.246094 73.746094 L 254.972656 73.746094 Z M 256.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.195312 262.054688 C 264.195312 263.675781 261.765625 263.675781 261.765625 262.054688 C 261.765625 260.433594 264.195312 260.433594 264.195312 262.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.398438 70.910156 L 204.035156 73.746094 L 200.761719 73.746094 Z M 202.398438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 371.378906 70.910156 L 373.015625 73.746094 L 369.742188 73.746094 Z M 371.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.707031 172.019531 C 268.707031 173.640625 266.277344 173.640625 266.277344 172.019531 C 266.277344 170.402344 268.707031 170.402344 268.707031 172.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.839844 164.785156 C 129.839844 166.402344 127.410156 166.402344 127.410156 164.785156 C 127.410156 163.164062 129.839844 163.164062 129.839844 164.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.300781 70.910156 L 291.933594 73.746094 L 288.664062 73.746094 Z M 290.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.136719 70.910156 L 171.773438 73.746094 L 168.5 73.746094 Z M 170.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.441406 292.476562 C 296.441406 294.09375 294.011719 294.09375 294.011719 292.476562 C 294.011719 290.855469 296.441406 290.855469 296.441406 292.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.082031 182.703125 C 252.082031 184.320312 249.652344 184.320312 249.652344 182.703125 C 249.652344 181.082031 252.082031 181.082031 252.082031 182.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.296875 250.308594 C 260.296875 251.929688 257.867188 251.929688 257.867188 250.308594 C 257.867188 248.691406 260.296875 248.691406 260.296875 250.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.25 230.402344 C 275.25 232.023438 272.820312 232.023438 272.820312 230.402344 C 272.820312 228.78125 275.25 228.78125 275.25 230.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.03125 242.5625 C 292.03125 244.183594 289.601562 244.183594 289.601562 242.5625 C 289.601562 240.941406 292.03125 240.941406 292.03125 242.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.277344 311.128906 C 302.277344 312.746094 299.847656 312.746094 299.847656 311.128906 C 299.847656 309.507812 302.277344 309.507812 302.277344 311.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.796875 367.546875 C 236.796875 369.164062 234.367188 369.164062 234.367188 367.546875 C 234.367188 365.925781 236.796875 365.925781 236.796875 367.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.78125 228.542969 C 303.78125 230.164062 301.351562 230.164062 301.351562 228.542969 C 301.351562 226.925781 303.78125 226.925781 303.78125 228.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.304688 70.910156 L 247.941406 73.746094 L 244.667969 73.746094 Z M 246.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.070312 177.78125 C 221.070312 179.402344 218.640625 179.402344 218.640625 177.78125 C 218.640625 176.160156 221.070312 176.160156 221.070312 177.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.824219 209.199219 C 280.824219 210.816406 278.394531 210.816406 278.394531 209.199219 C 278.394531 207.578125 280.824219 207.578125 280.824219 209.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.152344 340.972656 C 129.152344 342.59375 126.722656 342.59375 126.722656 340.972656 C 126.722656 339.351562 129.152344 339.351562 129.152344 340.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.699219 159.179688 C 325.699219 160.800781 323.269531 160.800781 323.269531 159.179688 C 323.269531 157.5625 325.699219 157.5625 325.699219 159.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.914062 335.753906 C 170.914062 337.375 168.484375 337.375 168.484375 335.753906 C 168.484375 334.132812 170.914062 334.132812 170.914062 335.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.867188 276.363281 C 290.867188 277.984375 288.4375 277.984375 288.4375 276.363281 C 288.4375 274.742188 290.867188 274.742188 290.867188 276.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.945312 282.792969 C 284.945312 284.414062 282.515625 284.414062 282.515625 282.792969 C 282.515625 281.175781 284.945312 281.175781 284.945312 282.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 382.152344 318.675781 C 382.152344 320.292969 379.722656 320.292969 379.722656 318.675781 C 379.722656 317.054688 382.152344 317.054688 382.152344 318.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 393.496094 282.550781 C 393.496094 284.171875 391.066406 284.171875 391.066406 282.550781 C 391.066406 280.929688 393.496094 280.929688 393.496094 282.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.246094 287.132812 C 257.246094 288.753906 254.816406 288.753906 254.816406 287.132812 C 254.816406 285.511719 257.246094 285.511719 257.246094 287.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.691406 344.101562 C 279.691406 345.71875 277.257812 345.71875 277.257812 344.101562 C 277.257812 342.480469 279.691406 342.480469 279.691406 344.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.511719 418.691406 L 171.148438 415.855469 L 167.875 415.855469 Z M 169.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.785156 255.535156 C 284.785156 257.152344 282.355469 257.152344 282.355469 255.535156 C 282.355469 253.914062 284.785156 253.914062 284.785156 255.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.957031 249.375 C 255.957031 250.992188 253.527344 250.992188 253.527344 249.375 C 253.527344 247.753906 255.957031 247.753906 255.957031 249.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.507812 99.96875 C 291.507812 101.589844 289.078125 101.589844 289.078125 99.96875 C 289.078125 98.347656 291.507812 98.347656 291.507812 99.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.855469 228.925781 C 212.855469 230.546875 210.425781 230.546875 210.425781 228.925781 C 210.425781 227.304688 212.855469 227.304688 212.855469 228.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.371094 242.730469 C 287.371094 244.347656 284.941406 244.347656 284.941406 242.730469 C 284.941406 241.109375 287.371094 241.109375 287.371094 242.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.34375 70.910156 L 157.980469 73.746094 L 154.707031 73.746094 Z M 156.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.320312 248.199219 C 279.320312 249.816406 276.886719 249.816406 276.886719 248.199219 C 276.886719 246.578125 279.320312 246.578125 279.320312 248.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.699219 178.152344 C 237.699219 179.773438 235.269531 179.773438 235.269531 178.152344 C 235.269531 176.53125 237.699219 176.53125 237.699219 178.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.175781 196.925781 C 284.175781 198.542969 281.746094 198.542969 281.746094 196.925781 C 281.746094 195.304688 284.175781 195.304688 284.175781 196.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.636719 226.808594 C 286.636719 228.429688 284.207031 228.429688 284.207031 226.808594 C 284.207031 225.1875 286.636719 225.1875 286.636719 226.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.753906 337.890625 C 239.753906 339.511719 237.324219 339.511719 237.324219 337.890625 C 237.324219 336.273438 239.753906 336.273438 239.753906 337.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.441406 200.148438 C 209.441406 201.769531 207.011719 201.769531 207.011719 200.148438 C 207.011719 198.53125 209.441406 198.53125 209.441406 200.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.449219 186.929688 C 235.449219 188.550781 233.019531 188.550781 233.019531 186.929688 C 233.019531 185.308594 235.449219 185.308594 235.449219 186.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.667969 195.960938 C 240.667969 197.582031 238.238281 197.582031 238.238281 195.960938 C 238.238281 194.339844 240.667969 194.339844 240.667969 195.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.734375 312.726562 C 207.734375 314.347656 205.304688 314.347656 205.304688 312.726562 C 205.304688 311.105469 207.734375 311.105469 207.734375 312.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.871094 126.289062 C 266.871094 127.910156 264.441406 127.910156 264.441406 126.289062 C 264.441406 124.671875 266.871094 124.671875 266.871094 126.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.992188 401.769531 C 279.992188 403.390625 277.5625 403.390625 277.5625 401.769531 C 277.5625 400.148438 279.992188 400.148438 279.992188 401.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204 70.910156 L 205.636719 73.746094 L 202.363281 73.746094 Z M 204 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.613281 70.910156 L 253.25 73.746094 L 249.976562 73.746094 Z M 251.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.488281 274.21875 C 204.488281 275.835938 202.054688 275.835938 202.054688 274.21875 C 202.054688 272.597656 204.488281 272.597656 204.488281 274.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.695312 287.972656 C 275.695312 289.59375 273.265625 289.59375 273.265625 287.972656 C 273.265625 286.351562 275.695312 286.351562 275.695312 287.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.417969 390.230469 C 337.417969 391.847656 334.988281 391.847656 334.988281 390.230469 C 334.988281 388.609375 337.417969 388.609375 337.417969 390.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.988281 314.097656 C 211.988281 315.71875 209.558594 315.71875 209.558594 314.097656 C 209.558594 312.480469 211.988281 312.480469 211.988281 314.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.480469 298.707031 C 219.480469 300.324219 217.050781 300.324219 217.050781 298.707031 C 217.050781 297.085938 219.480469 297.085938 219.480469 298.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.9375 285.371094 C 300.9375 286.992188 298.507812 286.992188 298.507812 285.371094 C 298.507812 283.75 300.9375 283.75 300.9375 285.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.515625 235.976562 C 184.515625 237.597656 182.085938 237.597656 182.085938 235.976562 C 182.085938 234.355469 184.515625 234.355469 184.515625 235.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.488281 237.753906 C 311.488281 239.375 309.054688 239.375 309.054688 237.753906 C 309.054688 236.132812 311.488281 236.132812 311.488281 237.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.117188 249.960938 C 283.117188 251.582031 280.6875 251.582031 280.6875 249.960938 C 280.6875 248.34375 283.117188 248.34375 283.117188 249.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.113281 275.15625 C 278.113281 276.777344 275.683594 276.777344 275.683594 275.15625 C 275.683594 273.535156 278.113281 273.535156 278.113281 275.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.410156 418.691406 L 177.046875 415.855469 L 173.773438 415.855469 Z M 175.410156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.546875 248.890625 C 246.546875 250.507812 244.117188 250.507812 244.117188 248.890625 C 244.117188 247.269531 246.546875 247.269531 246.546875 248.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.34375 330.492188 C 197.34375 332.113281 194.914062 332.113281 194.914062 330.492188 C 194.914062 328.871094 197.34375 328.871094 197.34375 330.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.167969 70.910156 L 337.804688 73.746094 L 334.53125 73.746094 Z M 336.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.890625 270.460938 C 304.890625 272.078125 302.460938 272.078125 302.460938 270.460938 C 302.460938 268.839844 304.890625 268.839844 304.890625 270.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.226562 294.582031 C 303.226562 296.203125 300.796875 296.203125 300.796875 294.582031 C 300.796875 292.960938 303.226562 292.960938 303.226562 294.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.707031 229.523438 C 273.707031 231.144531 271.277344 231.144531 271.277344 229.523438 C 271.277344 227.90625 273.707031 227.90625 273.707031 229.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.226562 264.8125 C 237.226562 266.433594 234.796875 266.433594 234.796875 264.8125 C 234.796875 263.195312 237.226562 263.195312 237.226562 264.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.941406 252.632812 C 239.941406 254.25 237.511719 254.25 237.511719 252.632812 C 237.511719 251.011719 239.941406 251.011719 239.941406 252.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.910156 198 C 247.910156 199.621094 245.480469 199.621094 245.480469 198 C 245.480469 196.378906 247.910156 196.378906 247.910156 198 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.171875 280.933594 C 273.171875 282.554688 270.742188 282.554688 270.742188 280.933594 C 270.742188 279.3125 273.171875 279.3125 273.171875 280.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.894531 70.910156 L 306.53125 73.746094 L 303.257812 73.746094 Z M 304.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.960938 263.15625 C 323.960938 264.773438 321.53125 264.773438 321.53125 263.15625 C 321.53125 261.535156 323.960938 261.535156 323.960938 263.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.71875 70.910156 L 128.355469 73.746094 L 125.085938 73.746094 Z M 126.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.160156 70.910156 L 169.796875 73.746094 L 166.523438 73.746094 Z M 168.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.183594 153.765625 C 256.183594 155.386719 253.753906 155.386719 253.753906 153.765625 C 253.753906 152.148438 256.183594 152.148438 256.183594 153.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.503906 70.910156 L 193.140625 73.746094 L 189.867188 73.746094 Z M 191.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.328125 199.007812 C 280.328125 200.625 277.898438 200.625 277.898438 199.007812 C 277.898438 197.386719 280.328125 197.386719 280.328125 199.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.359375 290.65625 C 326.359375 292.277344 323.929688 292.277344 323.929688 290.65625 C 323.929688 289.035156 326.359375 289.035156 326.359375 290.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.289062 197.765625 C 179.289062 199.386719 176.859375 199.386719 176.859375 197.765625 C 176.859375 196.148438 179.289062 196.148438 179.289062 197.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.066406 204.757812 C 280.066406 206.378906 277.636719 206.378906 277.636719 204.757812 C 277.636719 203.136719 280.066406 203.136719 280.066406 204.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.28125 161.09375 C 218.28125 162.714844 215.851562 162.714844 215.851562 161.09375 C 215.851562 159.472656 218.28125 159.472656 218.28125 161.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.753906 200.949219 C 228.753906 202.570312 226.324219 202.570312 226.324219 200.949219 C 226.324219 199.328125 228.753906 199.328125 228.753906 200.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.835938 241.046875 C 204.835938 242.667969 202.40625 242.667969 202.40625 241.046875 C 202.40625 239.429688 204.835938 239.429688 204.835938 241.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.476562 214.464844 C 214.476562 216.085938 212.046875 216.085938 212.046875 214.464844 C 212.046875 212.84375 214.476562 212.84375 214.476562 214.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.789062 230.179688 C 208.789062 231.796875 206.359375 231.796875 206.359375 230.179688 C 206.359375 228.558594 208.789062 228.558594 208.789062 230.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.179688 230.378906 C 140.179688 231.996094 137.75 231.996094 137.75 230.378906 C 137.75 228.757812 140.179688 228.757812 140.179688 230.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.011719 273.554688 C 274.011719 275.175781 271.578125 275.175781 271.578125 273.554688 C 271.578125 271.933594 274.011719 271.933594 274.011719 273.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.347656 91.28125 C 273.347656 92.902344 270.917969 92.902344 270.917969 91.28125 C 270.917969 89.664062 273.347656 89.664062 273.347656 91.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.671875 297.292969 C 300.671875 298.914062 298.242188 298.914062 298.242188 297.292969 C 298.242188 295.671875 300.671875 295.671875 300.671875 297.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.972656 70.910156 L 176.609375 73.746094 L 173.335938 73.746094 Z M 174.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.90625 183.226562 C 249.90625 184.847656 247.476562 184.847656 247.476562 183.226562 C 247.476562 181.609375 249.90625 181.609375 249.90625 183.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.859375 134.667969 C 260.859375 136.285156 258.429688 136.285156 258.429688 134.667969 C 258.429688 133.046875 260.859375 133.046875 260.859375 134.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.371094 244.582031 C 332.371094 246.199219 329.941406 246.199219 329.941406 244.582031 C 329.941406 242.960938 332.371094 242.960938 332.371094 244.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.175781 70.910156 L 256.8125 73.746094 L 253.539062 73.746094 Z M 255.175781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.980469 418.691406 L 378.613281 415.855469 L 375.34375 415.855469 Z M 376.980469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.851562 70.910156 L 180.488281 73.746094 L 177.214844 73.746094 Z M 178.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.617188 198.296875 C 203.617188 199.914062 201.1875 199.914062 201.1875 198.296875 C 201.1875 196.675781 203.617188 196.675781 203.617188 198.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.808594 331.011719 C 299.808594 332.632812 297.378906 332.632812 297.378906 331.011719 C 297.378906 329.390625 299.808594 329.390625 299.808594 331.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.789062 418.691406 L 208.425781 415.855469 L 205.152344 415.855469 Z M 206.789062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.269531 224.542969 C 140.269531 226.160156 137.839844 226.160156 137.839844 224.542969 C 137.839844 222.921875 140.269531 222.921875 140.269531 224.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.039062 261.269531 C 245.039062 262.890625 242.609375 262.890625 242.609375 261.269531 C 242.609375 259.652344 245.039062 259.652344 245.039062 261.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.882812 301.21875 C 259.882812 302.839844 257.453125 302.839844 257.453125 301.21875 C 257.453125 299.597656 259.882812 299.597656 259.882812 301.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.507812 305.789062 C 230.507812 307.410156 228.078125 307.410156 228.078125 305.789062 C 228.078125 304.171875 230.507812 304.171875 230.507812 305.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.832031 320.8125 C 279.832031 322.429688 277.402344 322.429688 277.402344 320.8125 C 277.402344 319.191406 279.832031 319.191406 279.832031 320.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.035156 201.273438 C 296.035156 202.890625 293.605469 202.890625 293.605469 201.273438 C 293.605469 199.652344 296.035156 199.652344 296.035156 201.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.902344 207.910156 C 280.902344 209.527344 278.472656 209.527344 278.472656 207.910156 C 278.472656 206.289062 280.902344 206.289062 280.902344 207.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.332031 82.921875 C 183.332031 84.542969 180.902344 84.542969 180.902344 82.921875 C 180.902344 81.300781 183.332031 81.300781 183.332031 82.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.652344 94.976562 C 122.652344 96.59375 120.222656 96.59375 120.222656 94.976562 C 120.222656 93.355469 122.652344 93.355469 122.652344 94.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.007812 82.652344 C 181.007812 84.269531 178.578125 84.269531 178.578125 82.652344 C 178.578125 81.03125 181.007812 81.03125 181.007812 82.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.601562 208.4375 C 286.601562 210.058594 284.171875 210.058594 284.171875 208.4375 C 284.171875 206.820312 286.601562 206.820312 286.601562 208.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.429688 169.453125 C 260.429688 171.074219 258 171.074219 258 169.453125 C 258 167.835938 260.429688 167.835938 260.429688 169.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.988281 350.964844 C 242.988281 352.585938 240.558594 352.585938 240.558594 350.964844 C 240.558594 349.347656 242.988281 349.347656 242.988281 350.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.265625 301.28125 C 263.265625 302.902344 260.835938 302.902344 260.835938 301.28125 C 260.835938 299.660156 263.265625 299.660156 263.265625 301.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.753906 70.910156 L 263.390625 73.746094 L 260.117188 73.746094 Z M 261.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.242188 269.960938 C 294.242188 271.582031 291.8125 271.582031 291.8125 269.960938 C 291.8125 268.339844 294.242188 268.339844 294.242188 269.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.410156 70.910156 L 211.046875 73.746094 L 207.773438 73.746094 Z M 209.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.015625 70.910156 L 169.652344 73.746094 L 166.378906 73.746094 Z M 168.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.796875 144.121094 C 248.796875 145.738281 246.367188 145.738281 246.367188 144.121094 C 246.367188 142.5 248.796875 142.5 248.796875 144.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.851562 82.773438 C 166.851562 84.390625 164.421875 84.390625 164.421875 82.773438 C 164.421875 81.152344 166.851562 81.152344 166.851562 82.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.019531 290.476562 C 250.019531 292.09375 247.589844 292.09375 247.589844 290.476562 C 247.589844 288.855469 250.019531 288.855469 250.019531 290.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.96875 207.265625 C 146.96875 208.886719 144.539062 208.886719 144.539062 207.265625 C 144.539062 205.644531 146.96875 205.644531 146.96875 207.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.371094 188.050781 C 213.371094 189.667969 210.941406 189.667969 210.941406 188.050781 C 210.941406 186.429688 213.371094 186.429688 213.371094 188.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.375 229.894531 C 120.375 231.511719 117.945312 231.511719 117.945312 229.894531 C 117.945312 228.273438 120.375 228.273438 120.375 229.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.898438 70.910156 L 242.535156 73.746094 L 239.261719 73.746094 Z M 240.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.039062 70.910156 L 162.675781 73.746094 L 159.402344 73.746094 Z M 161.039062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.222656 70.910156 L 162.859375 73.746094 L 159.589844 73.746094 Z M 161.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.21875 286.605469 C 333.21875 288.226562 330.789062 288.226562 330.789062 286.605469 C 330.789062 284.984375 333.21875 284.984375 333.21875 286.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.160156 121.832031 C 192.160156 123.453125 189.730469 123.453125 189.730469 121.832031 C 189.730469 120.214844 192.160156 120.214844 192.160156 121.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.351562 178.441406 C 343.351562 180.0625 340.921875 180.0625 340.921875 178.441406 C 340.921875 176.820312 343.351562 176.820312 343.351562 178.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.996094 298.617188 C 192.996094 300.238281 190.566406 300.238281 190.566406 298.617188 C 190.566406 296.996094 192.996094 296.996094 192.996094 298.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.363281 291.519531 C 258.363281 293.140625 255.933594 293.140625 255.933594 291.519531 C 255.933594 289.898438 258.363281 289.898438 258.363281 291.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.335938 70.910156 L 165.972656 73.746094 L 162.699219 73.746094 Z M 164.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.972656 286.351562 C 244.972656 287.972656 242.542969 287.972656 242.542969 286.351562 C 242.542969 284.730469 244.972656 284.730469 244.972656 286.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.988281 246.871094 C 323.988281 248.492188 321.558594 248.492188 321.558594 246.871094 C 321.558594 245.25 323.988281 245.25 323.988281 246.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.808594 231.515625 C 272.808594 233.132812 270.375 233.132812 270.375 231.515625 C 270.375 229.894531 272.808594 229.894531 272.808594 231.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.597656 273.730469 C 226.597656 275.351562 224.167969 275.351562 224.167969 273.730469 C 224.167969 272.113281 226.597656 272.113281 226.597656 273.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.722656 254.945312 C 287.722656 256.566406 285.292969 256.566406 285.292969 254.945312 C 285.292969 253.328125 287.722656 253.328125 287.722656 254.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.40625 111.796875 C 139.40625 113.417969 136.972656 113.417969 136.972656 111.796875 C 136.972656 110.179688 139.40625 110.179688 139.40625 111.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.726562 70.910156 L 150.363281 73.746094 L 147.089844 73.746094 Z M 148.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.234375 268.96875 C 267.234375 270.585938 264.804688 270.585938 264.804688 268.96875 C 264.804688 267.347656 267.234375 267.347656 267.234375 268.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.609375 259.160156 C 288.609375 260.78125 286.179688 260.78125 286.179688 259.160156 C 286.179688 257.539062 288.609375 257.539062 288.609375 259.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.230469 290.816406 C 237.230469 292.4375 234.800781 292.4375 234.800781 290.816406 C 234.800781 289.199219 237.230469 289.199219 237.230469 290.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.5625 268.566406 C 295.5625 270.183594 293.132812 270.183594 293.132812 268.566406 C 293.132812 266.945312 295.5625 266.945312 295.5625 268.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.585938 81.441406 C 235.585938 83.058594 233.15625 83.058594 233.15625 81.441406 C 233.15625 79.820312 235.585938 79.820312 235.585938 81.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.980469 245.421875 C 290.980469 247.042969 288.550781 247.042969 288.550781 245.421875 C 288.550781 243.800781 290.980469 243.800781 290.980469 245.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.832031 418.691406 L 128.46875 415.855469 L 125.195312 415.855469 Z M 126.832031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.140625 187.328125 C 278.140625 188.949219 275.710938 188.949219 275.710938 187.328125 C 275.710938 185.710938 278.140625 185.710938 278.140625 187.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.992188 190.980469 C 238.992188 192.597656 236.5625 192.597656 236.5625 190.980469 C 236.5625 189.359375 238.992188 189.359375 238.992188 190.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.15625 286.875 C 262.15625 288.492188 259.726562 288.492188 259.726562 286.875 C 259.726562 285.253906 262.15625 285.253906 262.15625 286.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.351562 174.195312 C 207.351562 175.8125 204.921875 175.8125 204.921875 174.195312 C 204.921875 172.574219 207.351562 172.574219 207.351562 174.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.964844 200.320312 C 243.964844 201.941406 241.535156 201.941406 241.535156 200.320312 C 241.535156 198.699219 243.964844 198.699219 243.964844 200.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.953125 249.976562 C 293.953125 251.597656 291.523438 251.597656 291.523438 249.976562 C 291.523438 248.355469 293.953125 248.355469 293.953125 249.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.214844 94.605469 C 224.214844 96.226562 221.785156 96.226562 221.785156 94.605469 C 221.785156 92.984375 224.214844 92.984375 224.214844 94.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.257812 331.515625 C 214.257812 333.136719 211.828125 333.136719 211.828125 331.515625 C 211.828125 329.894531 214.257812 329.894531 214.257812 331.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.199219 418.691406 L 132.835938 415.855469 L 129.5625 415.855469 Z M 131.199219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.890625 222.4375 C 133.890625 224.058594 131.460938 224.058594 131.460938 222.4375 C 131.460938 220.816406 133.890625 220.816406 133.890625 222.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.828125 331.742188 C 154.828125 333.363281 152.398438 333.363281 152.398438 331.742188 C 152.398438 330.121094 154.828125 330.121094 154.828125 331.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.691406 251.136719 C 249.691406 252.757812 247.257812 252.757812 247.257812 251.136719 C 247.257812 249.519531 249.691406 249.519531 249.691406 251.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.769531 249.875 C 217.769531 251.492188 215.339844 251.492188 215.339844 249.875 C 215.339844 248.253906 217.769531 248.253906 217.769531 249.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.800781 70.910156 L 260.4375 73.746094 L 257.164062 73.746094 Z M 258.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.289062 316.4375 C 260.289062 318.054688 257.859375 318.054688 257.859375 316.4375 C 257.859375 314.816406 260.289062 314.816406 260.289062 316.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.226562 194.917969 C 272.226562 196.539062 269.796875 196.539062 269.796875 194.917969 C 269.796875 193.296875 272.226562 193.296875 272.226562 194.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.296875 191.226562 C 273.296875 192.84375 270.867188 192.84375 270.867188 191.226562 C 270.867188 189.605469 273.296875 189.605469 273.296875 191.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.628906 176.3125 C 268.628906 177.929688 266.199219 177.929688 266.199219 176.3125 C 266.199219 174.691406 268.628906 174.691406 268.628906 176.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.308594 238.445312 C 258.308594 240.066406 255.878906 240.066406 255.878906 238.445312 C 255.878906 236.824219 258.308594 236.824219 258.308594 238.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.882812 250.855469 C 287.882812 252.476562 285.449219 252.476562 285.449219 250.855469 C 285.449219 249.238281 287.882812 249.238281 287.882812 250.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.105469 102.714844 C 236.105469 104.335938 233.671875 104.335938 233.671875 102.714844 C 233.671875 101.09375 236.105469 101.09375 236.105469 102.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.566406 228.972656 C 304.566406 230.59375 302.136719 230.59375 302.136719 228.972656 C 302.136719 227.351562 304.566406 227.351562 304.566406 228.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.757812 304.339844 C 285.757812 305.957031 283.328125 305.957031 283.328125 304.339844 C 283.328125 302.71875 285.757812 302.71875 285.757812 304.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.648438 288.972656 C 296.648438 290.59375 294.21875 290.59375 294.21875 288.972656 C 294.21875 287.355469 296.648438 287.355469 296.648438 288.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.21875 215.269531 C 267.21875 216.890625 264.785156 216.890625 264.785156 215.269531 C 264.785156 213.652344 267.21875 213.652344 267.21875 215.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.53125 180.621094 C 257.53125 182.242188 255.101562 182.242188 255.101562 180.621094 C 255.101562 179.003906 257.53125 179.003906 257.53125 180.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.789062 344.253906 C 276.789062 345.875 274.359375 345.875 274.359375 344.253906 C 274.359375 342.632812 276.789062 342.632812 276.789062 344.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.894531 286.554688 C 206.894531 288.175781 204.464844 288.175781 204.464844 286.554688 C 204.464844 284.933594 206.894531 284.933594 206.894531 286.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.964844 309.433594 C 277.964844 311.054688 275.535156 311.054688 275.535156 309.433594 C 275.535156 307.8125 277.964844 307.8125 277.964844 309.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.144531 272.46875 C 305.144531 274.085938 302.714844 274.085938 302.714844 272.46875 C 302.714844 270.847656 305.144531 270.847656 305.144531 272.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294 177.027344 C 294 178.648438 291.570312 178.648438 291.570312 177.027344 C 291.570312 175.40625 294 175.40625 294 177.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.234375 269.757812 C 326.234375 271.375 323.800781 271.375 323.800781 269.757812 C 323.800781 268.136719 326.234375 268.136719 326.234375 269.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.445312 300.699219 C 327.445312 302.316406 325.015625 302.316406 325.015625 300.699219 C 325.015625 299.078125 327.445312 299.078125 327.445312 300.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.429688 265.582031 C 283.429688 267.203125 281 267.203125 281 265.582031 C 281 263.964844 283.429688 263.964844 283.429688 265.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.652344 146.390625 C 292.652344 148.011719 290.222656 148.011719 290.222656 146.390625 C 290.222656 144.769531 292.652344 144.769531 292.652344 146.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.496094 164.085938 C 277.496094 165.703125 275.066406 165.703125 275.066406 164.085938 C 275.066406 162.464844 277.496094 162.464844 277.496094 164.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.964844 290.84375 C 303.964844 292.464844 301.535156 292.464844 301.535156 290.84375 C 301.535156 289.222656 303.964844 289.222656 303.964844 290.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.144531 339.929688 C 297.144531 341.550781 294.714844 341.550781 294.714844 339.929688 C 294.714844 338.308594 297.144531 338.308594 297.144531 339.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 360.46875 352.964844 C 360.46875 354.582031 358.039062 354.582031 358.039062 352.964844 C 358.039062 351.34375 360.46875 351.34375 360.46875 352.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.136719 294.414062 C 239.136719 296.035156 236.707031 296.035156 236.707031 294.414062 C 236.707031 292.792969 239.136719 292.792969 239.136719 294.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.535156 224.976562 C 316.535156 226.597656 314.105469 226.597656 314.105469 224.976562 C 314.105469 223.355469 316.535156 223.355469 316.535156 224.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.484375 181.347656 C 280.484375 182.96875 278.050781 182.96875 278.050781 181.347656 C 278.050781 179.730469 280.484375 179.730469 280.484375 181.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.894531 274.160156 C 144.894531 275.78125 142.464844 275.78125 142.464844 274.160156 C 142.464844 272.542969 144.894531 272.542969 144.894531 274.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.503906 217.425781 C 185.503906 219.046875 183.074219 219.046875 183.074219 217.425781 C 183.074219 215.804688 185.503906 215.804688 185.503906 217.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.410156 294.410156 C 327.410156 296.03125 324.976562 296.03125 324.976562 294.410156 C 324.976562 292.789062 327.410156 292.789062 327.410156 294.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.214844 239.53125 C 322.214844 241.152344 319.78125 241.152344 319.78125 239.53125 C 319.78125 237.910156 322.214844 237.910156 322.214844 239.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.703125 260.367188 C 302.703125 261.988281 300.269531 261.988281 300.269531 260.367188 C 300.269531 258.746094 302.703125 258.746094 302.703125 260.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.074219 340.804688 C 142.074219 342.425781 139.644531 342.425781 139.644531 340.804688 C 139.644531 339.183594 142.074219 339.183594 142.074219 340.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.019531 376.652344 C 345.019531 378.273438 342.589844 378.273438 342.589844 376.652344 C 342.589844 375.035156 345.019531 375.035156 345.019531 376.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.652344 299.371094 C 209.652344 300.992188 207.222656 300.992188 207.222656 299.371094 C 207.222656 297.75 209.652344 297.75 209.652344 299.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.429688 270.261719 C 244.429688 271.882812 242 271.882812 242 270.261719 C 242 268.644531 244.429688 268.644531 244.429688 270.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.949219 193.023438 C 262.949219 194.644531 260.519531 194.644531 260.519531 193.023438 C 260.519531 191.402344 262.949219 191.402344 262.949219 193.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.171875 70.910156 L 172.808594 73.746094 L 169.535156 73.746094 Z M 171.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.402344 83.195312 C 218.402344 84.8125 215.972656 84.8125 215.972656 83.195312 C 215.972656 81.574219 218.402344 81.574219 218.402344 83.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.933594 113.121094 C 177.933594 114.742188 175.503906 114.742188 175.503906 113.121094 C 175.503906 111.5 177.933594 111.5 177.933594 113.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.386719 165.96875 C 271.386719 167.589844 268.953125 167.589844 268.953125 165.96875 C 268.953125 164.351562 271.386719 164.351562 271.386719 165.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.054688 262.933594 C 285.054688 264.554688 282.625 264.554688 282.625 262.933594 C 282.625 261.3125 285.054688 261.3125 285.054688 262.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.460938 248.78125 C 234.460938 250.398438 232.03125 250.398438 232.03125 248.78125 C 232.03125 247.160156 234.460938 247.160156 234.460938 248.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.222656 118.085938 C 148.222656 119.703125 145.789062 119.703125 145.789062 118.085938 C 145.789062 116.464844 148.222656 116.464844 148.222656 118.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.167969 197.742188 C 203.167969 199.359375 200.738281 199.359375 200.738281 197.742188 C 200.738281 196.121094 203.167969 196.121094 203.167969 197.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.996094 149.761719 C 192.996094 151.382812 190.566406 151.382812 190.566406 149.761719 C 190.566406 148.140625 192.996094 148.140625 192.996094 149.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.730469 70.910156 L 220.363281 73.746094 L 217.09375 73.746094 Z M 218.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.898438 339.058594 C 274.898438 340.675781 272.46875 340.675781 272.46875 339.058594 C 272.46875 337.4375 274.898438 337.4375 274.898438 339.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.902344 400.90625 C 143.902344 402.527344 141.472656 402.527344 141.472656 400.90625 C 141.472656 399.285156 143.902344 399.285156 143.902344 400.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.75 282.433594 C 226.75 284.050781 224.320312 284.050781 224.320312 282.433594 C 224.320312 280.8125 226.75 280.8125 226.75 282.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.179688 86.511719 C 230.179688 88.132812 227.75 88.132812 227.75 86.511719 C 227.75 84.890625 230.179688 84.890625 230.179688 86.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.484375 284.464844 C 308.484375 286.085938 306.054688 286.085938 306.054688 284.464844 C 306.054688 282.84375 308.484375 282.84375 308.484375 284.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.515625 277.675781 C 252.515625 279.292969 250.085938 279.292969 250.085938 277.675781 C 250.085938 276.054688 252.515625 276.054688 252.515625 277.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.558594 324.148438 C 348.558594 325.765625 346.128906 325.765625 346.128906 324.148438 C 346.128906 322.527344 348.558594 322.527344 348.558594 324.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189 269.234375 C 189 270.855469 186.570312 270.855469 186.570312 269.234375 C 186.570312 267.613281 189 267.613281 189 269.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.4375 260.996094 C 226.4375 262.617188 224.007812 262.617188 224.007812 260.996094 C 224.007812 259.375 226.4375 259.375 226.4375 260.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.558594 239.898438 C 302.558594 241.519531 300.128906 241.519531 300.128906 239.898438 C 300.128906 238.277344 302.558594 238.277344 302.558594 239.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.210938 266.589844 C 296.210938 268.210938 293.78125 268.210938 293.78125 266.589844 C 293.78125 264.972656 296.210938 264.972656 296.210938 266.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.261719 268.90625 C 315.261719 270.527344 312.832031 270.527344 312.832031 268.90625 C 312.832031 267.285156 315.261719 267.285156 315.261719 268.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.582031 390.625 C 120.582031 392.246094 118.152344 392.246094 118.152344 390.625 C 118.152344 389.003906 120.582031 389.003906 120.582031 390.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.773438 166.890625 C 243.773438 168.507812 241.34375 168.507812 241.34375 166.890625 C 241.34375 165.269531 243.773438 165.269531 243.773438 166.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.003906 172.609375 C 182.003906 174.226562 179.574219 174.226562 179.574219 172.609375 C 179.574219 170.988281 182.003906 170.988281 182.003906 172.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.871094 160.292969 C 209.871094 161.914062 207.441406 161.914062 207.441406 160.292969 C 207.441406 158.671875 209.871094 158.671875 209.871094 160.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.289062 321.125 C 283.289062 322.746094 280.859375 322.746094 280.859375 321.125 C 280.859375 319.503906 283.289062 319.503906 283.289062 321.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.222656 261.742188 C 308.222656 263.363281 305.792969 263.363281 305.792969 261.742188 C 305.792969 260.121094 308.222656 260.121094 308.222656 261.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.519531 338.558594 C 297.519531 340.179688 295.089844 340.179688 295.089844 338.558594 C 295.089844 336.941406 297.519531 336.941406 297.519531 338.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.296875 176.320312 C 267.296875 177.9375 264.867188 177.9375 264.867188 176.320312 C 264.867188 174.699219 267.296875 174.699219 267.296875 176.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.691406 234.46875 C 118.691406 236.089844 116.261719 236.089844 116.261719 234.46875 C 116.261719 232.851562 118.691406 232.851562 118.691406 234.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 368.019531 227.832031 C 368.019531 229.449219 365.585938 229.449219 365.585938 227.832031 C 365.585938 226.210938 368.019531 226.210938 368.019531 227.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.949219 256.75 C 323.949219 258.371094 321.519531 258.371094 321.519531 256.75 C 321.519531 255.132812 323.949219 255.132812 323.949219 256.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.542969 253.011719 C 295.542969 254.632812 293.113281 254.632812 293.113281 253.011719 C 293.113281 251.390625 295.542969 251.390625 295.542969 253.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.609375 250.058594 C 289.609375 251.679688 287.179688 251.679688 287.179688 250.058594 C 287.179688 248.4375 289.609375 248.4375 289.609375 250.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.882812 220.765625 C 285.882812 222.386719 283.453125 222.386719 283.453125 220.765625 C 283.453125 219.144531 285.882812 219.144531 285.882812 220.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.726562 96.902344 C 268.726562 98.523438 266.296875 98.523438 266.296875 96.902344 C 266.296875 95.28125 268.726562 95.28125 268.726562 96.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.972656 169.011719 C 128.972656 170.632812 126.542969 170.632812 126.542969 169.011719 C 126.542969 167.394531 128.972656 167.394531 128.972656 169.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.234375 86.210938 C 124.234375 87.828125 121.804688 87.828125 121.804688 86.210938 C 121.804688 84.589844 124.234375 84.589844 124.234375 86.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.671875 70.910156 L 173.304688 73.746094 L 170.035156 73.746094 Z M 171.671875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.210938 70.910156 L 180.847656 73.746094 L 177.574219 73.746094 Z M 179.210938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 344.902344 254.023438 C 344.902344 255.644531 342.46875 255.644531 342.46875 254.023438 C 342.46875 252.40625 344.902344 252.40625 344.902344 254.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.011719 336.015625 C 130.011719 337.636719 127.582031 337.636719 127.582031 336.015625 C 127.582031 334.398438 130.011719 334.398438 130.011719 336.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.90625 373.503906 C 233.90625 375.121094 231.476562 375.121094 231.476562 373.503906 C 231.476562 371.882812 233.90625 371.882812 233.90625 373.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.390625 70.910156 L 264.027344 73.746094 L 260.757812 73.746094 Z M 262.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.773438 169.996094 C 236.773438 171.613281 234.34375 171.613281 234.34375 169.996094 C 234.34375 168.375 236.773438 168.375 236.773438 169.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.472656 186.730469 C 197.472656 188.351562 195.042969 188.351562 195.042969 186.730469 C 195.042969 185.113281 197.472656 185.113281 197.472656 186.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.121094 277.265625 C 290.121094 278.882812 287.691406 278.882812 287.691406 277.265625 C 287.691406 275.644531 290.121094 275.644531 290.121094 277.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.125 259.199219 C 248.125 260.816406 245.695312 260.816406 245.695312 259.199219 C 245.695312 257.578125 248.125 257.578125 248.125 259.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.953125 316.429688 C 269.953125 318.050781 267.523438 318.050781 267.523438 316.429688 C 267.523438 314.8125 269.953125 314.8125 269.953125 316.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.324219 264.597656 C 269.324219 266.21875 266.894531 266.21875 266.894531 264.597656 C 266.894531 262.976562 269.324219 262.976562 269.324219 264.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.636719 238.847656 C 282.636719 240.46875 280.207031 240.46875 280.207031 238.847656 C 280.207031 237.226562 282.636719 237.226562 282.636719 238.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.121094 278.179688 C 346.121094 279.800781 343.691406 279.800781 343.691406 278.179688 C 343.691406 276.5625 346.121094 276.5625 346.121094 278.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.648438 260.210938 C 120.648438 261.828125 118.214844 261.828125 118.214844 260.210938 C 118.214844 258.589844 120.648438 258.589844 120.648438 260.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.769531 236.96875 C 317.769531 238.585938 315.335938 238.585938 315.335938 236.96875 C 315.335938 235.347656 317.769531 235.347656 317.769531 236.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.015625 202.453125 C 239.015625 204.074219 236.585938 204.074219 236.585938 202.453125 C 236.585938 200.835938 239.015625 200.835938 239.015625 202.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.292969 249.730469 C 278.292969 251.347656 275.863281 251.347656 275.863281 249.730469 C 275.863281 248.109375 278.292969 248.109375 278.292969 249.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.4375 322.011719 C 227.4375 323.628906 225.007812 323.628906 225.007812 322.011719 C 225.007812 320.390625 227.4375 320.390625 227.4375 322.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.109375 311.46875 C 193.109375 313.089844 190.679688 313.089844 190.679688 311.46875 C 190.679688 309.851562 193.109375 309.851562 193.109375 311.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.433594 132.90625 C 133.433594 134.527344 131.003906 134.527344 131.003906 132.90625 C 131.003906 131.285156 133.433594 131.285156 133.433594 132.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.355469 89.132812 C 184.355469 90.753906 181.925781 90.753906 181.925781 89.132812 C 181.925781 87.515625 184.355469 87.515625 184.355469 89.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.929688 237.359375 C 293.929688 238.976562 291.5 238.976562 291.5 237.359375 C 291.5 235.738281 293.929688 235.738281 293.929688 237.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.605469 70.910156 L 230.242188 73.746094 L 226.96875 73.746094 Z M 228.605469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.457031 70.910156 L 155.09375 73.746094 L 151.820312 73.746094 Z M 153.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.507812 364.800781 C 134.507812 366.421875 132.078125 366.421875 132.078125 364.800781 C 132.078125 363.183594 134.507812 363.183594 134.507812 364.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.359375 280.707031 C 276.359375 282.324219 273.929688 282.324219 273.929688 280.707031 C 273.929688 279.085938 276.359375 279.085938 276.359375 280.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.257812 299.273438 C 284.257812 300.890625 281.828125 300.890625 281.828125 299.273438 C 281.828125 297.652344 284.257812 297.652344 284.257812 299.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.824219 70.910156 L 149.460938 73.746094 L 146.1875 73.746094 Z M 147.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.347656 277.507812 C 293.347656 279.128906 290.917969 279.128906 290.917969 277.507812 C 290.917969 275.886719 293.347656 275.886719 293.347656 277.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.972656 261.019531 C 277.972656 262.640625 275.542969 262.640625 275.542969 261.019531 C 275.542969 259.398438 277.972656 259.398438 277.972656 261.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.203125 239.671875 C 264.203125 241.292969 261.773438 241.292969 261.773438 239.671875 C 261.773438 238.054688 264.203125 238.054688 264.203125 239.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 359.210938 200.425781 C 359.210938 202.046875 356.78125 202.046875 356.78125 200.425781 C 356.78125 198.808594 359.210938 198.808594 359.210938 200.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.710938 70.910156 L 151.347656 73.746094 L 148.074219 73.746094 Z M 149.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 342.816406 325.070312 C 342.816406 326.691406 340.386719 326.691406 340.386719 325.070312 C 340.386719 323.449219 342.816406 323.449219 342.816406 325.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 349.933594 195.78125 C 349.933594 197.398438 347.503906 197.398438 347.503906 195.78125 C 347.503906 194.160156 349.933594 194.160156 349.933594 195.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.03125 346.351562 C 267.03125 347.972656 264.597656 347.972656 264.597656 346.351562 C 264.597656 344.734375 267.03125 344.734375 267.03125 346.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.691406 163.550781 C 235.691406 165.171875 233.261719 165.171875 233.261719 163.550781 C 233.261719 161.929688 235.691406 161.929688 235.691406 163.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.222656 265.828125 C 244.222656 267.449219 241.792969 267.449219 241.792969 265.828125 C 241.792969 264.207031 244.222656 264.207031 244.222656 265.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.148438 182.261719 C 270.148438 183.882812 267.71875 183.882812 267.71875 182.261719 C 267.71875 180.640625 270.148438 180.640625 270.148438 182.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.953125 266.066406 C 304.953125 267.683594 302.523438 267.683594 302.523438 266.066406 C 302.523438 264.445312 304.953125 264.445312 304.953125 266.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.796875 199.261719 C 311.796875 200.878906 309.367188 200.878906 309.367188 199.261719 C 309.367188 197.640625 311.796875 197.640625 311.796875 199.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.253906 83.582031 C 191.253906 85.203125 188.824219 85.203125 188.824219 83.582031 C 188.824219 81.960938 191.253906 81.960938 191.253906 83.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220 249.039062 C 220 250.65625 217.570312 250.65625 217.570312 249.039062 C 217.570312 247.417969 220 247.417969 220 249.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.667969 70.910156 L 130.304688 73.746094 L 127.03125 73.746094 Z M 128.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.363281 418.691406 L 118.996094 415.855469 L 115.726562 415.855469 Z M 117.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.902344 202.285156 C 144.902344 203.90625 142.472656 203.90625 142.472656 202.285156 C 142.472656 200.667969 144.902344 200.667969 144.902344 202.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.824219 190.339844 C 257.824219 191.960938 255.394531 191.960938 255.394531 190.339844 C 255.394531 188.71875 257.824219 188.71875 257.824219 190.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.386719 196.695312 C 288.386719 198.316406 285.957031 198.316406 285.957031 196.695312 C 285.957031 195.074219 288.386719 195.074219 288.386719 196.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.820312 70.910156 L 169.457031 73.746094 L 166.183594 73.746094 Z M 167.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.023438 270.261719 C 188.023438 271.878906 185.59375 271.878906 185.59375 270.261719 C 185.59375 268.640625 188.023438 268.640625 188.023438 270.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.6875 284.371094 C 236.6875 285.992188 234.257812 285.992188 234.257812 284.371094 C 234.257812 282.75 236.6875 282.75 236.6875 284.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.203125 276.578125 C 231.203125 278.199219 228.773438 278.199219 228.773438 276.578125 C 228.773438 274.960938 231.203125 274.960938 231.203125 276.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.613281 358.679688 C 294.613281 360.296875 292.183594 360.296875 292.183594 358.679688 C 292.183594 357.058594 294.613281 357.058594 294.613281 358.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 349.625 353.730469 C 349.625 355.351562 347.195312 355.351562 347.195312 353.730469 C 347.195312 352.113281 349.625 352.113281 349.625 353.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.265625 255.691406 C 266.265625 257.3125 263.835938 257.3125 263.835938 255.691406 C 263.835938 254.074219 266.265625 254.074219 266.265625 255.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.488281 293.753906 C 233.488281 295.375 231.058594 295.375 231.058594 293.753906 C 231.058594 292.132812 233.488281 292.132812 233.488281 293.753906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.746094 70.910156 L 155.382812 73.746094 L 152.109375 73.746094 Z M 153.746094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.628906 70.910156 L 241.265625 73.746094 L 237.992188 73.746094 Z M 239.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.695312 248.214844 C 278.695312 249.835938 276.265625 249.835938 276.265625 248.214844 C 276.265625 246.59375 278.695312 246.59375 278.695312 248.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.03125 232.503906 C 312.03125 234.121094 309.601562 234.121094 309.601562 232.503906 C 309.601562 230.882812 312.03125 230.882812 312.03125 232.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.945312 243.003906 C 322.945312 244.625 320.515625 244.625 320.515625 243.003906 C 320.515625 241.386719 322.945312 241.386719 322.945312 243.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.808594 70.910156 L 295.441406 73.746094 L 292.171875 73.746094 Z M 293.808594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.074219 70.910156 L 175.710938 73.746094 L 172.4375 73.746094 Z M 174.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.59375 288.003906 C 267.59375 289.621094 265.164062 289.621094 265.164062 288.003906 C 265.164062 286.382812 267.59375 286.382812 267.59375 288.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.945312 291.601562 C 242.945312 293.222656 240.515625 293.222656 240.515625 291.601562 C 240.515625 289.980469 242.945312 289.980469 242.945312 291.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.96875 307.3125 C 268.96875 308.933594 266.539062 308.933594 266.539062 307.3125 C 266.539062 305.691406 268.96875 305.691406 268.96875 307.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.851562 137.660156 C 287.851562 139.277344 285.421875 139.277344 285.421875 137.660156 C 285.421875 136.039062 287.851562 136.039062 287.851562 137.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.703125 301.863281 C 263.703125 303.484375 261.273438 303.484375 261.273438 301.863281 C 261.273438 300.242188 263.703125 300.242188 263.703125 301.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.566406 262.121094 C 285.566406 263.742188 283.136719 263.742188 283.136719 262.121094 C 283.136719 260.5 285.566406 260.5 285.566406 262.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.25 332.449219 C 290.25 334.070312 287.820312 334.070312 287.820312 332.449219 C 287.820312 330.832031 290.25 330.832031 290.25 332.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.261719 274.5 C 295.261719 276.117188 292.832031 276.117188 292.832031 274.5 C 292.832031 272.878906 295.261719 272.878906 295.261719 274.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.121094 265.492188 C 258.121094 267.113281 255.691406 267.113281 255.691406 265.492188 C 255.691406 263.871094 258.121094 263.871094 258.121094 265.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.082031 326.289062 C 266.082031 327.90625 263.652344 327.90625 263.652344 326.289062 C 263.652344 324.667969 266.082031 324.667969 266.082031 326.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.328125 234.105469 C 291.328125 235.722656 288.898438 235.722656 288.898438 234.105469 C 288.898438 232.484375 291.328125 232.484375 291.328125 234.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.683594 218.058594 C 237.683594 219.679688 235.253906 219.679688 235.253906 218.058594 C 235.253906 216.441406 237.683594 216.441406 237.683594 218.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.503906 266.3125 C 216.503906 267.929688 214.074219 267.929688 214.074219 266.3125 C 214.074219 264.691406 216.503906 264.691406 216.503906 266.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.613281 386.449219 C 275.613281 388.066406 273.179688 388.066406 273.179688 386.449219 C 273.179688 384.828125 275.613281 384.828125 275.613281 386.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.691406 70.910156 L 273.328125 73.746094 L 270.054688 73.746094 Z M 271.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.460938 284.460938 C 308.460938 286.082031 306.03125 286.082031 306.03125 284.460938 C 306.03125 282.839844 308.460938 282.839844 308.460938 284.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.90625 270.824219 C 280.90625 272.445312 278.476562 272.445312 278.476562 270.824219 C 278.476562 269.203125 280.90625 269.203125 280.90625 270.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.925781 223.980469 C 257.925781 225.601562 255.496094 225.601562 255.496094 223.980469 C 255.496094 222.359375 257.925781 222.359375 257.925781 223.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.757812 179.910156 C 229.757812 181.53125 227.328125 181.53125 227.328125 179.910156 C 227.328125 178.292969 229.757812 178.292969 229.757812 179.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.34375 229.472656 C 239.34375 231.09375 236.914062 231.09375 236.914062 229.472656 C 236.914062 227.851562 239.34375 227.851562 239.34375 229.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.140625 291.957031 C 283.140625 293.578125 280.710938 293.578125 280.710938 291.957031 C 280.710938 290.339844 283.140625 290.339844 283.140625 291.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.140625 272.621094 C 174.140625 274.238281 171.710938 274.238281 171.710938 272.621094 C 171.710938 271 174.140625 271 174.140625 272.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.480469 418.691406 L 138.113281 415.855469 L 134.84375 415.855469 Z M 136.480469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.347656 299.226562 C 263.347656 300.847656 260.917969 300.847656 260.917969 299.226562 C 260.917969 297.605469 263.347656 297.605469 263.347656 299.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.605469 418.691406 L 297.242188 415.855469 L 293.972656 415.855469 Z M 295.605469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.457031 365.890625 C 329.457031 367.511719 327.027344 367.511719 327.027344 365.890625 C 327.027344 364.269531 329.457031 364.269531 329.457031 365.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.933594 268.863281 C 278.933594 270.484375 276.503906 270.484375 276.503906 268.863281 C 276.503906 267.246094 278.933594 267.246094 278.933594 268.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.417969 70.910156 L 236.054688 73.746094 L 232.78125 73.746094 Z M 234.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.863281 295.753906 C 259.863281 297.375 257.433594 297.375 257.433594 295.753906 C 257.433594 294.136719 259.863281 294.136719 259.863281 295.753906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.261719 418.691406 L 264.898438 415.855469 L 261.625 415.855469 Z M 263.261719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.121094 239.542969 C 191.121094 241.164062 188.691406 241.164062 188.691406 239.542969 C 188.691406 237.921875 191.121094 237.921875 191.121094 239.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.582031 294.777344 C 307.582031 296.394531 305.148438 296.394531 305.148438 294.777344 C 305.148438 293.15625 307.582031 293.15625 307.582031 294.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.597656 320.542969 C 318.597656 322.164062 316.167969 322.164062 316.167969 320.542969 C 316.167969 318.925781 318.597656 318.925781 318.597656 320.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.46875 366.371094 C 248.46875 367.992188 246.039062 367.992188 246.039062 366.371094 C 246.039062 364.75 248.46875 364.75 248.46875 366.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.121094 246.425781 C 277.121094 248.042969 274.691406 248.042969 274.691406 246.425781 C 274.691406 244.804688 277.121094 244.804688 277.121094 246.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.5625 114.804688 C 174.5625 116.425781 172.132812 116.425781 172.132812 114.804688 C 172.132812 113.1875 174.5625 113.1875 174.5625 114.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.894531 70.910156 L 184.53125 73.746094 L 181.257812 73.746094 Z M 182.894531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.402344 70.910156 L 242.039062 73.746094 L 238.765625 73.746094 Z M 240.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.054688 187.550781 C 304.054688 189.171875 301.625 189.171875 301.625 187.550781 C 301.625 185.929688 304.054688 185.929688 304.054688 187.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.171875 185.648438 C 277.171875 187.265625 274.742188 187.265625 274.742188 185.648438 C 274.742188 184.027344 277.171875 184.027344 277.171875 185.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.492188 70.910156 L 240.128906 73.746094 L 236.855469 73.746094 Z M 238.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.84375 308.535156 C 218.84375 310.152344 216.414062 310.152344 216.414062 308.535156 C 216.414062 306.914062 218.84375 306.914062 218.84375 308.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.503906 70.910156 L 192.140625 73.746094 L 188.867188 73.746094 Z M 190.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.019531 175.460938 C 318.019531 177.082031 315.589844 177.082031 315.589844 175.460938 C 315.589844 173.839844 318.019531 173.839844 318.019531 175.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.777344 283.578125 C 300.777344 285.195312 298.347656 285.195312 298.347656 283.578125 C 298.347656 281.957031 300.777344 281.957031 300.777344 283.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.601562 301.523438 C 249.601562 303.144531 247.167969 303.144531 247.167969 301.523438 C 247.167969 299.902344 249.601562 299.902344 249.601562 301.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.085938 224.84375 C 278.085938 226.464844 275.65625 226.464844 275.65625 224.84375 C 275.65625 223.222656 278.085938 223.222656 278.085938 224.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.324219 108.308594 C 327.324219 109.925781 324.890625 109.925781 324.890625 108.308594 C 324.890625 106.6875 327.324219 106.6875 327.324219 108.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.746094 248.242188 C 276.746094 249.859375 274.316406 249.859375 274.316406 248.242188 C 274.316406 246.621094 276.746094 246.621094 276.746094 248.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.003906 218.726562 C 331.003906 220.34375 328.574219 220.34375 328.574219 218.726562 C 328.574219 217.105469 331.003906 217.105469 331.003906 218.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.945312 227.851562 C 241.945312 229.472656 239.515625 229.472656 239.515625 227.851562 C 239.515625 226.234375 241.945312 226.234375 241.945312 227.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.050781 379.070312 C 318.050781 380.691406 315.621094 380.691406 315.621094 379.070312 C 315.621094 377.449219 318.050781 377.449219 318.050781 379.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.667969 70.910156 L 141.304688 73.746094 L 138.03125 73.746094 Z M 139.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.453125 268.503906 C 287.453125 270.125 285.023438 270.125 285.023438 268.503906 C 285.023438 266.886719 287.453125 266.886719 287.453125 268.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.453125 301.886719 C 253.453125 303.503906 251.023438 303.503906 251.023438 301.886719 C 251.023438 300.265625 253.453125 300.265625 253.453125 301.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.757812 307.875 C 280.757812 309.496094 278.328125 309.496094 278.328125 307.875 C 278.328125 306.253906 280.757812 306.253906 280.757812 307.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.503906 226.304688 C 241.503906 227.921875 239.074219 227.921875 239.074219 226.304688 C 239.074219 224.683594 241.503906 224.683594 241.503906 226.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.878906 70.910156 L 252.515625 73.746094 L 249.242188 73.746094 Z M 250.878906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.058594 70.910156 L 285.695312 73.746094 L 282.421875 73.746094 Z M 284.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.472656 260.222656 C 315.472656 261.84375 313.042969 261.84375 313.042969 260.222656 C 313.042969 258.605469 315.472656 258.605469 315.472656 260.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.492188 290.078125 C 300.492188 291.699219 298.0625 291.699219 298.0625 290.078125 C 298.0625 288.460938 300.492188 288.460938 300.492188 290.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.066406 70.910156 L 170.699219 73.746094 L 167.429688 73.746094 Z M 169.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.25 70.910156 L 277.886719 73.746094 L 274.613281 73.746094 Z M 276.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.042969 227.6875 C 305.042969 229.308594 302.613281 229.308594 302.613281 227.6875 C 302.613281 226.066406 305.042969 226.066406 305.042969 227.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.546875 70.910156 L 248.183594 73.746094 L 244.910156 73.746094 Z M 246.546875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.894531 70.910156 L 253.53125 73.746094 L 250.257812 73.746094 Z M 251.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.734375 322.210938 C 262.734375 323.832031 260.304688 323.832031 260.304688 322.210938 C 260.304688 320.589844 262.734375 320.589844 262.734375 322.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.859375 301.457031 C 324.859375 303.078125 322.429688 303.078125 322.429688 301.457031 C 322.429688 299.839844 324.859375 299.839844 324.859375 301.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.425781 210.855469 C 275.425781 212.476562 272.996094 212.476562 272.996094 210.855469 C 272.996094 209.234375 275.425781 209.234375 275.425781 210.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.175781 84 C 178.175781 85.621094 175.746094 85.621094 175.746094 84 C 175.746094 82.382812 178.175781 82.382812 178.175781 84 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.824219 135.523438 C 206.824219 137.144531 204.394531 137.144531 204.394531 135.523438 C 204.394531 133.902344 206.824219 133.902344 206.824219 135.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.777344 159.207031 C 131.777344 160.824219 129.347656 160.824219 129.347656 159.207031 C 129.347656 157.585938 131.777344 157.585938 131.777344 159.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.195312 154.546875 C 174.195312 156.164062 171.765625 156.164062 171.765625 154.546875 C 171.765625 152.925781 174.195312 152.925781 174.195312 154.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.894531 70.910156 L 216.53125 73.746094 L 213.257812 73.746094 Z M 214.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.75 129.890625 C 263.75 131.511719 261.320312 131.511719 261.320312 129.890625 C 261.320312 128.273438 263.75 128.273438 263.75 129.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.453125 418.691406 L 122.089844 415.855469 L 118.816406 415.855469 Z M 120.453125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.035156 418.691406 L 120.671875 415.855469 L 117.398438 415.855469 Z M 119.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.703125 321.890625 C 258.703125 323.511719 256.273438 323.511719 256.273438 321.890625 C 256.273438 320.273438 258.703125 320.273438 258.703125 321.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.410156 123.476562 C 290.410156 125.097656 287.980469 125.097656 287.980469 123.476562 C 287.980469 121.855469 290.410156 121.855469 290.410156 123.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.933594 244.507812 C 286.933594 246.125 284.503906 246.125 284.503906 244.507812 C 284.503906 242.886719 286.933594 242.886719 286.933594 244.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.574219 221.292969 C 287.574219 222.910156 285.144531 222.910156 285.144531 221.292969 C 285.144531 219.671875 287.574219 219.671875 287.574219 221.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.800781 342.097656 C 153.800781 343.71875 151.371094 343.71875 151.371094 342.097656 C 151.371094 340.476562 153.800781 340.476562 153.800781 342.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.902344 309.878906 C 215.902344 311.496094 213.472656 311.496094 213.472656 309.878906 C 213.472656 308.257812 215.902344 308.257812 215.902344 309.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.359375 268.066406 C 214.359375 269.683594 211.929688 269.683594 211.929688 268.066406 C 211.929688 266.445312 214.359375 266.445312 214.359375 268.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.949219 227.039062 C 255.949219 228.660156 253.519531 228.660156 253.519531 227.039062 C 253.519531 225.417969 255.949219 225.417969 255.949219 227.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.90625 244.234375 C 330.90625 245.855469 328.476562 245.855469 328.476562 244.234375 C 328.476562 242.613281 330.90625 242.613281 330.90625 244.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.578125 266.34375 C 238.578125 267.964844 236.148438 267.964844 236.148438 266.34375 C 236.148438 264.722656 238.578125 264.722656 238.578125 266.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.574219 206.230469 C 261.574219 207.847656 259.144531 207.847656 259.144531 206.230469 C 259.144531 204.609375 261.574219 204.609375 261.574219 206.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.148438 178.882812 C 245.148438 180.5 242.71875 180.5 242.71875 178.882812 C 242.71875 177.261719 245.148438 177.261719 245.148438 178.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.71875 234.570312 C 345.71875 236.1875 343.289062 236.1875 343.289062 234.570312 C 343.289062 232.949219 345.71875 232.949219 345.71875 234.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.226562 70.910156 L 135.863281 73.746094 L 132.589844 73.746094 Z M 134.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.265625 129.65625 C 144.265625 131.277344 141.835938 131.277344 141.835938 129.65625 C 141.835938 128.039062 144.265625 128.039062 144.265625 129.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.671875 271.101562 C 245.671875 272.71875 243.242188 272.71875 243.242188 271.101562 C 243.242188 269.480469 245.671875 269.480469 245.671875 271.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.679688 340.792969 C 245.679688 342.414062 243.25 342.414062 243.25 340.792969 C 243.25 339.175781 245.679688 339.175781 245.679688 340.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.511719 299.808594 C 186.511719 301.429688 184.082031 301.429688 184.082031 299.808594 C 184.082031 298.1875 186.511719 298.1875 186.511719 299.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.246094 243.929688 C 283.246094 245.550781 280.816406 245.550781 280.816406 243.929688 C 280.816406 242.308594 283.246094 242.308594 283.246094 243.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.042969 253.640625 C 287.042969 255.261719 284.613281 255.261719 284.613281 253.640625 C 284.613281 252.023438 287.042969 252.023438 287.042969 253.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.148438 241.976562 C 311.148438 243.597656 308.71875 243.597656 308.71875 241.976562 C 308.71875 240.359375 311.148438 240.359375 311.148438 241.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.074219 261.472656 C 323.074219 263.09375 320.644531 263.09375 320.644531 261.472656 C 320.644531 259.855469 323.074219 259.855469 323.074219 261.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.695312 70.910156 L 286.332031 73.746094 L 283.058594 73.746094 Z M 284.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.921875 70.910156 L 253.558594 73.746094 L 250.285156 73.746094 Z M 251.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.71875 162.613281 C 209.71875 164.234375 207.289062 164.234375 207.289062 162.613281 C 207.289062 160.992188 209.71875 160.992188 209.71875 162.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.191406 291.300781 C 321.191406 292.917969 318.761719 292.917969 318.761719 291.300781 C 318.761719 289.679688 321.191406 289.679688 321.191406 291.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.402344 138.878906 C 258.402344 140.5 255.972656 140.5 255.972656 138.878906 C 255.972656 137.257812 258.402344 137.257812 258.402344 138.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.011719 120.796875 C 272.011719 122.417969 269.582031 122.417969 269.582031 120.796875 C 269.582031 119.179688 272.011719 119.179688 272.011719 120.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 385.933594 305.003906 C 385.933594 306.621094 383.503906 306.621094 383.503906 305.003906 C 383.503906 303.382812 385.933594 303.382812 385.933594 305.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.316406 273.300781 C 278.316406 274.917969 275.886719 274.917969 275.886719 273.300781 C 275.886719 271.679688 278.316406 271.679688 278.316406 273.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.28125 350.554688 C 220.28125 352.175781 217.851562 352.175781 217.851562 350.554688 C 217.851562 348.933594 220.28125 348.933594 220.28125 350.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.152344 196.105469 C 124.152344 197.722656 121.722656 197.722656 121.722656 196.105469 C 121.722656 194.484375 124.152344 194.484375 124.152344 196.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 357.664062 363.566406 C 357.664062 365.1875 355.234375 365.1875 355.234375 363.566406 C 355.234375 361.945312 357.664062 361.945312 357.664062 363.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.527344 418.691406 L 281.164062 415.855469 L 277.890625 415.855469 Z M 279.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.378906 151.570312 C 259.378906 153.191406 256.949219 153.191406 256.949219 151.570312 C 256.949219 149.949219 259.378906 149.949219 259.378906 151.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.113281 70.910156 L 119.75 73.746094 L 116.476562 73.746094 Z M 118.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.503906 403.152344 C 278.503906 404.773438 276.074219 404.773438 276.074219 403.152344 C 276.074219 401.53125 278.503906 401.53125 278.503906 403.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.96875 330.441406 C 285.96875 332.0625 283.539062 332.0625 283.539062 330.441406 C 283.539062 328.824219 285.96875 328.824219 285.96875 330.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.726562 406.917969 C 301.726562 408.539062 299.296875 408.539062 299.296875 406.917969 C 299.296875 405.296875 301.726562 405.296875 301.726562 406.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.179688 329.445312 C 240.179688 331.066406 237.75 331.066406 237.75 329.445312 C 237.75 327.824219 240.179688 327.824219 240.179688 329.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.875 70.910156 L 265.511719 73.746094 L 262.238281 73.746094 Z M 263.875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 323.683594 70.910156 L 325.320312 73.746094 L 322.046875 73.746094 Z M 323.683594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.019531 70.910156 L 227.65625 73.746094 L 224.382812 73.746094 Z M 226.019531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.398438 193.34375 C 313.398438 194.964844 310.96875 194.964844 310.96875 193.34375 C 310.96875 191.722656 313.398438 191.722656 313.398438 193.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.753906 215.292969 C 229.753906 216.914062 227.324219 216.914062 227.324219 215.292969 C 227.324219 213.675781 229.753906 213.675781 229.753906 215.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.828125 418.691406 L 318.464844 415.855469 L 315.191406 415.855469 Z M 316.828125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.15625 313.230469 C 149.15625 314.847656 146.726562 314.847656 146.726562 313.230469 C 146.726562 311.609375 149.15625 311.609375 149.15625 313.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.082031 260.695312 C 234.082031 262.316406 231.652344 262.316406 231.652344 260.695312 C 231.652344 259.074219 234.082031 259.074219 234.082031 260.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.507812 265.847656 C 167.507812 267.46875 165.078125 267.46875 165.078125 265.847656 C 165.078125 264.226562 167.507812 264.226562 167.507812 265.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 392.054688 416.242188 C 392.054688 417.863281 389.625 417.863281 389.625 416.242188 C 389.625 414.621094 392.054688 414.621094 392.054688 416.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.9375 157.390625 C 294.9375 159.011719 292.507812 159.011719 292.507812 157.390625 C 292.507812 155.773438 294.9375 155.773438 294.9375 157.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.988281 254.488281 C 266.988281 256.109375 264.558594 256.109375 264.558594 254.488281 C 264.558594 252.871094 266.988281 252.871094 266.988281 254.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.507812 418.691406 L 128.144531 415.855469 L 124.871094 415.855469 Z M 126.507812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.453125 293.714844 C 287.453125 295.335938 285.019531 295.335938 285.019531 293.714844 C 285.019531 292.09375 287.453125 292.09375 287.453125 293.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.765625 70.910156 L 265.402344 73.746094 L 262.128906 73.746094 Z M 263.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.023438 270.824219 C 255.023438 272.445312 252.59375 272.445312 252.59375 270.824219 C 252.59375 269.203125 255.023438 269.203125 255.023438 270.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.222656 255.691406 C 280.222656 257.3125 277.792969 257.3125 277.792969 255.691406 C 277.792969 254.074219 280.222656 254.074219 280.222656 255.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.761719 248.707031 C 270.761719 250.328125 268.332031 250.328125 268.332031 248.707031 C 268.332031 247.085938 270.761719 247.085938 270.761719 248.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.121094 281.324219 C 306.121094 282.945312 303.691406 282.945312 303.691406 281.324219 C 303.691406 279.707031 306.121094 279.707031 306.121094 281.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.964844 311.449219 C 249.964844 313.070312 247.535156 313.070312 247.535156 311.449219 C 247.535156 309.832031 249.964844 309.832031 249.964844 311.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.4375 173.316406 C 245.4375 174.933594 243.007812 174.933594 243.007812 173.316406 C 243.007812 171.695312 245.4375 171.695312 245.4375 173.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.746094 70.910156 L 155.382812 73.746094 L 152.109375 73.746094 Z M 153.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.289062 139.195312 C 290.289062 140.8125 287.859375 140.8125 287.859375 139.195312 C 287.859375 137.574219 290.289062 137.574219 290.289062 139.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.996094 200.328125 C 278.996094 201.949219 276.566406 201.949219 276.566406 200.328125 C 276.566406 198.707031 278.996094 198.707031 278.996094 200.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.546875 247.425781 C 118.546875 249.046875 116.117188 249.046875 116.117188 247.425781 C 116.117188 245.804688 118.546875 245.804688 118.546875 247.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.21875 310.191406 C 340.21875 311.8125 337.789062 311.8125 337.789062 310.191406 C 337.789062 308.570312 340.21875 308.570312 340.21875 310.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.71875 100.398438 C 219.71875 102.019531 217.285156 102.019531 217.285156 100.398438 C 217.285156 98.78125 219.71875 98.78125 219.71875 100.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.976562 70.910156 L 170.613281 73.746094 L 167.339844 73.746094 Z M 168.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.390625 102.285156 C 214.390625 103.902344 211.960938 103.902344 211.960938 102.285156 C 211.960938 100.664062 214.390625 100.664062 214.390625 102.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.289062 153.820312 C 142.289062 155.441406 139.859375 155.441406 139.859375 153.820312 C 139.859375 152.199219 142.289062 152.199219 142.289062 153.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.878906 89.628906 C 265.878906 91.25 263.449219 91.25 263.449219 89.628906 C 263.449219 88.011719 265.878906 88.011719 265.878906 89.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.183594 255.191406 C 317.183594 256.8125 314.75 256.8125 314.75 255.191406 C 314.75 253.570312 317.183594 253.570312 317.183594 255.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.464844 418.691406 L 232.101562 415.855469 L 228.832031 415.855469 Z M 230.464844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.742188 247.289062 C 215.742188 248.910156 213.3125 248.910156 213.3125 247.289062 C 213.3125 245.667969 215.742188 245.667969 215.742188 247.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.078125 358.21875 C 291.078125 359.839844 288.648438 359.839844 288.648438 358.21875 C 288.648438 356.597656 291.078125 356.597656 291.078125 358.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.21875 130.921875 C 265.21875 132.542969 262.785156 132.542969 262.785156 130.921875 C 262.785156 129.300781 265.21875 129.300781 265.21875 130.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.304688 322.792969 C 316.304688 324.414062 313.875 324.414062 313.875 322.792969 C 313.875 321.171875 316.304688 321.171875 316.304688 322.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.929688 70.910156 L 126.566406 73.746094 L 123.292969 73.746094 Z M 124.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.703125 202.214844 C 229.703125 203.832031 227.273438 203.832031 227.273438 202.214844 C 227.273438 200.59375 229.703125 200.59375 229.703125 202.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.933594 271.558594 C 229.933594 273.179688 227.503906 273.179688 227.503906 271.558594 C 227.503906 269.941406 229.933594 269.941406 229.933594 271.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.667969 238.824219 C 263.667969 240.445312 261.238281 240.445312 261.238281 238.824219 C 261.238281 237.203125 263.667969 237.203125 263.667969 238.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.539062 251.90625 C 236.539062 253.527344 234.109375 253.527344 234.109375 251.90625 C 234.109375 250.289062 236.539062 250.289062 236.539062 251.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.253906 94.988281 C 122.253906 96.609375 119.824219 96.609375 119.824219 94.988281 C 119.824219 93.367188 122.253906 93.367188 122.253906 94.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.847656 70.910156 L 261.484375 73.746094 L 258.210938 73.746094 Z M 259.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.558594 114.378906 C 291.558594 115.996094 289.128906 115.996094 289.128906 114.378906 C 289.128906 112.757812 291.558594 112.757812 291.558594 114.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.21875 70.910156 L 205.855469 73.746094 L 202.582031 73.746094 Z M 204.21875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.359375 70.910156 L 287.996094 73.746094 L 284.722656 73.746094 Z M 286.359375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.125 70.910156 L 316.761719 73.746094 L 313.488281 73.746094 Z M 315.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.855469 127.597656 C 309.855469 129.21875 307.425781 129.21875 307.425781 127.597656 C 307.425781 125.980469 309.855469 125.980469 309.855469 127.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.332031 246.542969 C 258.332031 248.164062 255.902344 248.164062 255.902344 246.542969 C 255.902344 244.921875 258.332031 244.921875 258.332031 246.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.535156 269.542969 C 273.535156 271.164062 271.105469 271.164062 271.105469 269.542969 C 271.105469 267.921875 273.535156 267.921875 273.535156 269.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.160156 243.609375 C 264.160156 245.226562 261.730469 245.226562 261.730469 243.609375 C 261.730469 241.988281 264.160156 241.988281 264.160156 243.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.382812 251.316406 C 264.382812 252.9375 261.953125 252.9375 261.953125 251.316406 C 261.953125 249.695312 264.382812 249.695312 264.382812 251.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.023438 348.925781 C 247.023438 350.546875 244.59375 350.546875 244.59375 348.925781 C 244.59375 347.304688 247.023438 347.304688 247.023438 348.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.132812 70.910156 L 256.769531 73.746094 L 253.496094 73.746094 Z M 255.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.617188 156.914062 C 219.617188 158.535156 217.1875 158.535156 217.1875 156.914062 C 217.1875 155.292969 219.617188 155.292969 219.617188 156.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.855469 265.210938 C 251.855469 266.832031 249.425781 266.832031 249.425781 265.210938 C 249.425781 263.589844 251.855469 263.589844 251.855469 265.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.484375 252.265625 C 318.484375 253.886719 316.054688 253.886719 316.054688 252.265625 C 316.054688 250.648438 318.484375 250.648438 318.484375 252.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.695312 243.550781 C 191.695312 245.167969 189.265625 245.167969 189.265625 243.550781 C 189.265625 241.929688 191.695312 241.929688 191.695312 243.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.421875 276.417969 C 278.421875 278.039062 275.992188 278.039062 275.992188 276.417969 C 275.992188 274.800781 278.421875 274.800781 278.421875 276.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.046875 255.394531 C 274.046875 257.015625 271.617188 257.015625 271.617188 255.394531 C 271.617188 253.777344 274.046875 253.777344 274.046875 255.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.273438 246.417969 C 274.273438 248.039062 271.84375 248.039062 271.84375 246.417969 C 271.84375 244.796875 274.273438 244.796875 274.273438 246.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.453125 268.996094 C 224.453125 270.617188 222.023438 270.617188 222.023438 268.996094 C 222.023438 267.378906 224.453125 267.378906 224.453125 268.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.878906 78 C 265.878906 79.621094 263.449219 79.621094 263.449219 78 C 263.449219 76.382812 265.878906 76.382812 265.878906 78 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.355469 355.773438 C 321.355469 357.394531 318.925781 357.394531 318.925781 355.773438 C 318.925781 354.152344 321.355469 354.152344 321.355469 355.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.273438 228.730469 C 307.273438 230.351562 304.84375 230.351562 304.84375 228.730469 C 304.84375 227.113281 307.273438 227.113281 307.273438 228.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.726562 216.589844 C 315.726562 218.210938 313.296875 218.210938 313.296875 216.589844 C 313.296875 214.96875 315.726562 214.96875 315.726562 216.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.90625 132.726562 C 267.90625 134.347656 265.476562 134.347656 265.476562 132.726562 C 265.476562 131.105469 267.90625 131.105469 267.90625 132.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.230469 83.59375 C 240.230469 85.214844 237.800781 85.214844 237.800781 83.59375 C 237.800781 81.976562 240.230469 81.976562 240.230469 83.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.074219 197.714844 C 243.074219 199.335938 240.644531 199.335938 240.644531 197.714844 C 240.644531 196.09375 243.074219 196.09375 243.074219 197.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.855469 256.195312 C 244.855469 257.816406 242.425781 257.816406 242.425781 256.195312 C 242.425781 254.574219 244.855469 254.574219 244.855469 256.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.464844 275.054688 C 305.464844 276.675781 303.035156 276.675781 303.035156 275.054688 C 303.035156 273.433594 305.464844 273.433594 305.464844 275.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.949219 278.339844 C 255.949219 279.960938 253.519531 279.960938 253.519531 278.339844 C 253.519531 276.71875 255.949219 276.71875 255.949219 278.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.625 256.203125 C 298.625 257.820312 296.195312 257.820312 296.195312 256.203125 C 296.195312 254.582031 298.625 254.582031 298.625 256.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.925781 187.191406 C 280.925781 188.808594 278.496094 188.808594 278.496094 187.191406 C 278.496094 185.570312 280.925781 185.570312 280.925781 187.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.429688 70.910156 L 236.066406 73.746094 L 232.792969 73.746094 Z M 234.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.277344 241.875 C 275.277344 243.496094 272.847656 243.496094 272.847656 241.875 C 272.847656 240.253906 275.277344 240.253906 275.277344 241.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.097656 70.910156 L 182.734375 73.746094 L 179.464844 73.746094 Z M 181.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.4375 180.675781 C 110.4375 182.296875 108.007812 182.296875 108.007812 180.675781 C 108.007812 179.054688 110.4375 179.054688 110.4375 180.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.917969 285.417969 C 312.917969 287.035156 310.488281 287.035156 310.488281 285.417969 C 310.488281 283.796875 312.917969 283.796875 312.917969 285.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.78125 229.632812 C 302.78125 231.253906 300.351562 231.253906 300.351562 229.632812 C 300.351562 228.015625 302.78125 228.015625 302.78125 229.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.9375 296.234375 C 259.9375 297.855469 257.507812 297.855469 257.507812 296.234375 C 257.507812 294.613281 259.9375 294.613281 259.9375 296.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.953125 126.800781 C 236.953125 128.417969 234.523438 128.417969 234.523438 126.800781 C 234.523438 125.179688 236.953125 125.179688 236.953125 126.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.523438 70.910156 L 216.160156 73.746094 L 212.886719 73.746094 Z M 214.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.035156 271.671875 C 313.035156 273.292969 310.605469 273.292969 310.605469 271.671875 C 310.605469 270.050781 313.035156 270.050781 313.035156 271.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.597656 315.933594 C 282.597656 317.554688 280.167969 317.554688 280.167969 315.933594 C 280.167969 314.3125 282.597656 314.3125 282.597656 315.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.765625 227.65625 C 292.765625 229.277344 290.335938 229.277344 290.335938 227.65625 C 290.335938 226.039062 292.765625 226.039062 292.765625 227.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.953125 335.738281 C 181.953125 337.359375 179.523438 337.359375 179.523438 335.738281 C 179.523438 334.117188 181.953125 334.117188 181.953125 335.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.105469 418.691406 L 177.742188 415.855469 L 174.46875 415.855469 Z M 176.105469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.917969 367.890625 C 227.917969 369.511719 225.488281 369.511719 225.488281 367.890625 C 225.488281 366.269531 227.917969 366.269531 227.917969 367.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.523438 264.328125 C 300.523438 265.945312 298.089844 265.945312 298.089844 264.328125 C 298.089844 262.707031 300.523438 262.707031 300.523438 264.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.335938 110.183594 C 170.335938 111.804688 167.90625 111.804688 167.90625 110.183594 C 167.90625 108.566406 170.335938 108.566406 170.335938 110.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.710938 238.980469 C 333.710938 240.601562 331.28125 240.601562 331.28125 238.980469 C 331.28125 237.359375 333.710938 237.359375 333.710938 238.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.746094 161.96875 C 284.746094 163.589844 282.3125 163.589844 282.3125 161.96875 C 282.3125 160.351562 284.746094 160.351562 284.746094 161.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.863281 224.902344 C 218.863281 226.519531 216.433594 226.519531 216.433594 224.902344 C 216.433594 223.28125 218.863281 223.28125 218.863281 224.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.382812 274.929688 C 210.382812 276.546875 207.953125 276.546875 207.953125 274.929688 C 207.953125 273.308594 210.382812 273.308594 210.382812 274.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.769531 256.507812 C 188.769531 258.128906 186.339844 258.128906 186.339844 256.507812 C 186.339844 254.886719 188.769531 254.886719 188.769531 256.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.929688 177.4375 C 145.929688 179.058594 143.5 179.058594 143.5 177.4375 C 143.5 175.816406 145.929688 175.816406 145.929688 177.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.492188 117.234375 C 120.492188 118.855469 118.0625 118.855469 118.0625 117.234375 C 118.0625 115.617188 120.492188 115.617188 120.492188 117.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.539062 236.898438 C 238.539062 238.519531 236.109375 238.519531 236.109375 236.898438 C 236.109375 235.277344 238.539062 235.277344 238.539062 236.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.667969 265.632812 C 222.667969 267.25 220.238281 267.25 220.238281 265.632812 C 220.238281 264.011719 222.667969 264.011719 222.667969 265.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 385.003906 418.691406 L 386.640625 415.855469 L 383.367188 415.855469 Z M 385.003906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.625 254.472656 C 236.625 256.089844 234.195312 256.089844 234.195312 254.472656 C 234.195312 252.851562 236.625 252.851562 236.625 254.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.535156 271.601562 C 309.535156 273.21875 307.105469 273.21875 307.105469 271.601562 C 307.105469 269.980469 309.535156 269.980469 309.535156 271.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.25 101.5 C 157.25 103.121094 154.820312 103.121094 154.820312 101.5 C 154.820312 99.878906 157.25 99.878906 157.25 101.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.734375 219.3125 C 284.734375 220.929688 282.304688 220.929688 282.304688 219.3125 C 282.304688 217.691406 284.734375 217.691406 284.734375 219.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 344.398438 267.171875 C 344.398438 268.792969 341.96875 268.792969 341.96875 267.171875 C 341.96875 265.550781 344.398438 265.550781 344.398438 267.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.886719 205.664062 C 199.886719 207.285156 197.457031 207.285156 197.457031 205.664062 C 197.457031 204.046875 199.886719 204.046875 199.886719 205.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.761719 252.839844 C 243.761719 254.460938 241.332031 254.460938 241.332031 252.839844 C 241.332031 251.222656 243.761719 251.222656 243.761719 252.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.945312 263.914062 C 238.945312 265.535156 236.515625 265.535156 236.515625 263.914062 C 236.515625 262.292969 238.945312 262.292969 238.945312 263.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.167969 201.441406 C 257.167969 203.0625 254.738281 203.0625 254.738281 201.441406 C 254.738281 199.820312 257.167969 199.820312 257.167969 201.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.730469 278.75 C 296.730469 280.371094 294.300781 280.371094 294.300781 278.75 C 294.300781 277.128906 296.730469 277.128906 296.730469 278.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.230469 196.132812 C 178.230469 197.75 175.800781 197.75 175.800781 196.132812 C 175.800781 194.511719 178.230469 194.511719 178.230469 196.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.871094 250.195312 C 235.871094 251.8125 233.441406 251.8125 233.441406 250.195312 C 233.441406 248.574219 235.871094 248.574219 235.871094 250.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.757812 196.808594 C 250.757812 198.429688 248.328125 198.429688 248.328125 196.808594 C 248.328125 195.191406 250.757812 195.191406 250.757812 196.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.644531 155.351562 C 205.644531 156.972656 203.214844 156.972656 203.214844 155.351562 C 203.214844 153.730469 205.644531 153.730469 205.644531 155.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.265625 83.085938 C 240.265625 84.707031 237.835938 84.707031 237.835938 83.085938 C 237.835938 81.464844 240.265625 81.464844 240.265625 83.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.671875 70.910156 L 163.308594 73.746094 L 160.035156 73.746094 Z M 161.671875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.847656 203.480469 C 279.847656 205.101562 277.417969 205.101562 277.417969 203.480469 C 277.417969 201.859375 279.847656 201.859375 279.847656 203.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.792969 294.152344 C 231.792969 295.773438 229.363281 295.773438 229.363281 294.152344 C 229.363281 292.535156 231.792969 292.535156 231.792969 294.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.679688 282.695312 C 270.679688 284.3125 268.25 284.3125 268.25 282.695312 C 268.25 281.074219 270.679688 281.074219 270.679688 282.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.199219 382.839844 C 137.199219 384.457031 134.769531 384.457031 134.769531 382.839844 C 134.769531 381.21875 137.199219 381.21875 137.199219 382.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.574219 322.011719 C 306.574219 323.632812 304.144531 323.632812 304.144531 322.011719 C 304.144531 320.390625 306.574219 320.390625 306.574219 322.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.398438 314.425781 C 265.398438 316.046875 262.96875 316.046875 262.96875 314.425781 C 262.96875 312.804688 265.398438 312.804688 265.398438 314.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.59375 325.890625 C 264.59375 327.511719 262.164062 327.511719 262.164062 325.890625 C 262.164062 324.273438 264.59375 324.273438 264.59375 325.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.5625 275.417969 C 206.5625 277.035156 204.132812 277.035156 204.132812 275.417969 C 204.132812 273.796875 206.5625 273.796875 206.5625 275.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.746094 264.046875 C 228.746094 265.667969 226.316406 265.667969 226.316406 264.046875 C 226.316406 262.429688 228.746094 262.429688 228.746094 264.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.558594 249.589844 C 180.558594 251.207031 178.128906 251.207031 178.128906 249.589844 C 178.128906 247.96875 180.558594 247.96875 180.558594 249.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.464844 320.328125 C 240.464844 321.949219 238.035156 321.949219 238.035156 320.328125 C 238.035156 318.707031 240.464844 318.707031 240.464844 320.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.335938 306.703125 C 291.335938 308.320312 288.90625 308.320312 288.90625 306.703125 C 288.90625 305.082031 291.335938 305.082031 291.335938 306.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.003906 224.730469 C 145.003906 226.351562 142.574219 226.351562 142.574219 224.730469 C 142.574219 223.109375 145.003906 223.109375 145.003906 224.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.164062 90.558594 C 123.164062 92.179688 120.734375 92.179688 120.734375 90.558594 C 120.734375 88.941406 123.164062 88.941406 123.164062 90.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.273438 291.414062 C 288.273438 293.03125 285.839844 293.03125 285.839844 291.414062 C 285.839844 289.792969 288.273438 289.792969 288.273438 291.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.46875 149.515625 C 180.46875 151.136719 178.039062 151.136719 178.039062 149.515625 C 178.039062 147.898438 180.46875 147.898438 180.46875 149.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.101562 188.667969 C 204.101562 190.285156 201.671875 190.285156 201.671875 188.667969 C 201.671875 187.046875 204.101562 187.046875 204.101562 188.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.171875 279.039062 C 224.171875 280.660156 221.742188 280.660156 221.742188 279.039062 C 221.742188 277.417969 224.171875 277.417969 224.171875 279.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.648438 70.910156 L 128.285156 73.746094 L 125.011719 73.746094 Z M 126.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.257812 221.34375 C 278.257812 222.964844 275.828125 222.964844 275.828125 221.34375 C 275.828125 219.722656 278.257812 219.722656 278.257812 221.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.765625 302.460938 C 206.765625 304.078125 204.335938 304.078125 204.335938 302.460938 C 204.335938 300.839844 206.765625 300.839844 206.765625 302.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.574219 297.03125 C 298.574219 298.652344 296.144531 298.652344 296.144531 297.03125 C 296.144531 295.414062 298.574219 295.414062 298.574219 297.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.804688 313.828125 C 245.804688 315.449219 243.375 315.449219 243.375 313.828125 C 243.375 312.207031 245.804688 312.207031 245.804688 313.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.117188 241.628906 C 343.117188 243.25 340.6875 243.25 340.6875 241.628906 C 340.6875 240.007812 343.117188 240.007812 343.117188 241.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.230469 231.652344 C 272.230469 233.273438 269.800781 233.273438 269.800781 231.652344 C 269.800781 230.035156 272.230469 230.035156 272.230469 231.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.390625 267.660156 C 265.390625 269.28125 262.960938 269.28125 262.960938 267.660156 C 262.960938 266.042969 265.390625 266.042969 265.390625 267.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.304688 181.492188 C 255.304688 183.113281 252.875 183.113281 252.875 181.492188 C 252.875 179.875 255.304688 179.875 255.304688 181.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.410156 288.8125 C 203.410156 290.433594 200.980469 290.433594 200.980469 288.8125 C 200.980469 287.195312 203.410156 287.195312 203.410156 288.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.578125 70.910156 L 265.214844 73.746094 L 261.941406 73.746094 Z M 263.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.917969 218.558594 C 233.917969 220.179688 231.488281 220.179688 231.488281 218.558594 C 231.488281 216.941406 233.917969 216.941406 233.917969 218.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.207031 70.910156 L 164.84375 73.746094 L 161.570312 73.746094 Z M 163.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.390625 234.863281 C 257.390625 236.484375 254.960938 236.484375 254.960938 234.863281 C 254.960938 233.242188 257.390625 233.242188 257.390625 234.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.269531 309.398438 C 278.269531 311.019531 275.839844 311.019531 275.839844 309.398438 C 275.839844 307.777344 278.269531 307.777344 278.269531 309.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.820312 315.371094 C 279.820312 316.992188 277.390625 316.992188 277.390625 315.371094 C 277.390625 313.75 279.820312 313.75 279.820312 315.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.429688 215.527344 C 328.429688 217.144531 326 217.144531 326 215.527344 C 326 213.90625 328.429688 213.90625 328.429688 215.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.851562 95.539062 C 221.851562 97.160156 219.421875 97.160156 219.421875 95.539062 C 219.421875 93.917969 221.851562 93.917969 221.851562 95.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.578125 207.539062 C 206.578125 209.15625 204.148438 209.15625 204.148438 207.539062 C 204.148438 205.917969 206.578125 205.917969 206.578125 207.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.449219 70.910156 L 162.085938 73.746094 L 158.8125 73.746094 Z M 160.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.179688 209.070312 C 292.179688 210.6875 289.75 210.6875 289.75 209.070312 C 289.75 207.449219 292.179688 207.449219 292.179688 209.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.949219 418.691406 L 226.585938 415.855469 L 223.3125 415.855469 Z M 224.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.003906 231.96875 C 222.003906 233.589844 219.574219 233.589844 219.574219 231.96875 C 219.574219 230.347656 222.003906 230.347656 222.003906 231.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.097656 175.546875 C 264.097656 177.167969 261.667969 177.167969 261.667969 175.546875 C 261.667969 173.925781 264.097656 173.925781 264.097656 175.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.964844 242.082031 C 246.964844 243.703125 244.535156 243.703125 244.535156 242.082031 C 244.535156 240.460938 246.964844 240.460938 246.964844 242.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.46875 234.65625 C 283.46875 236.277344 281.039062 236.277344 281.039062 234.65625 C 281.039062 233.035156 283.46875 233.035156 283.46875 234.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.398438 202.453125 C 229.398438 204.074219 226.96875 204.074219 226.96875 202.453125 C 226.96875 200.832031 229.398438 200.832031 229.398438 202.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.710938 256.902344 C 308.710938 258.523438 306.28125 258.523438 306.28125 256.902344 C 306.28125 255.285156 308.710938 255.285156 308.710938 256.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.769531 334.113281 C 321.769531 335.734375 319.339844 335.734375 319.339844 334.113281 C 319.339844 332.492188 321.769531 332.492188 321.769531 334.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.097656 249.863281 C 147.097656 251.484375 144.667969 251.484375 144.667969 249.863281 C 144.667969 248.246094 147.097656 248.246094 147.097656 249.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.039062 228.335938 C 216.039062 229.957031 213.609375 229.957031 213.609375 228.335938 C 213.609375 226.714844 216.039062 226.714844 216.039062 228.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.15625 312.792969 C 217.15625 314.414062 214.726562 314.414062 214.726562 312.792969 C 214.726562 311.171875 217.15625 311.171875 217.15625 312.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.929688 275.730469 C 299.929688 277.351562 297.5 277.351562 297.5 275.730469 C 297.5 274.109375 299.929688 274.109375 299.929688 275.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.644531 274.117188 C 265.644531 275.738281 263.214844 275.738281 263.214844 274.117188 C 263.214844 272.5 265.644531 272.5 265.644531 274.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.839844 124.570312 C 308.839844 126.191406 306.40625 126.191406 306.40625 124.570312 C 306.40625 122.953125 308.839844 122.953125 308.839844 124.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.800781 70.910156 L 187.4375 73.746094 L 184.164062 73.746094 Z M 185.800781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.863281 70.910156 L 241.5 73.746094 L 238.226562 73.746094 Z M 239.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.679688 208.859375 C 313.679688 210.480469 311.25 210.480469 311.25 208.859375 C 311.25 207.242188 313.679688 207.242188 313.679688 208.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.84375 239.269531 C 246.84375 240.890625 244.410156 240.890625 244.410156 239.269531 C 244.410156 237.648438 246.84375 237.648438 246.84375 239.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.648438 93.101562 C 209.648438 94.722656 207.21875 94.722656 207.21875 93.101562 C 207.21875 91.480469 209.648438 91.480469 209.648438 93.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.042969 130.820312 C 195.042969 132.441406 192.613281 132.441406 192.613281 130.820312 C 192.613281 129.203125 195.042969 129.203125 195.042969 130.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.722656 324.351562 C 182.722656 325.972656 180.292969 325.972656 180.292969 324.351562 C 180.292969 322.734375 182.722656 322.734375 182.722656 324.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.195312 280.429688 C 242.195312 282.050781 239.765625 282.050781 239.765625 280.429688 C 239.765625 278.8125 242.195312 278.8125 242.195312 280.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.5625 108.382812 C 139.5625 110 137.128906 110 137.128906 108.382812 C 137.128906 106.761719 139.5625 106.761719 139.5625 108.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.402344 299.582031 C 288.402344 301.203125 285.972656 301.203125 285.972656 299.582031 C 285.972656 297.960938 288.402344 297.960938 288.402344 299.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.738281 265.210938 C 277.738281 266.828125 275.308594 266.828125 275.308594 265.210938 C 275.308594 263.589844 277.738281 263.589844 277.738281 265.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.273438 198.519531 C 181.273438 200.140625 178.839844 200.140625 178.839844 198.519531 C 178.839844 196.898438 181.273438 196.898438 181.273438 198.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.464844 179.199219 C 152.464844 180.820312 150.03125 180.820312 150.03125 179.199219 C 150.03125 177.582031 152.464844 177.582031 152.464844 179.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.144531 284.542969 C 201.144531 286.164062 198.714844 286.164062 198.714844 284.542969 C 198.714844 282.925781 201.144531 282.925781 201.144531 284.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.472656 296.152344 C 192.472656 297.773438 190.042969 297.773438 190.042969 296.152344 C 190.042969 294.53125 192.472656 294.53125 192.472656 296.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.417969 230.445312 C 256.417969 232.066406 253.988281 232.066406 253.988281 230.445312 C 253.988281 228.824219 256.417969 228.824219 256.417969 230.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.167969 346.910156 C 268.167969 348.53125 265.738281 348.53125 265.738281 346.910156 C 265.738281 345.292969 268.167969 345.292969 268.167969 346.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.742188 412.003906 C 144.742188 413.621094 142.3125 413.621094 142.3125 412.003906 C 142.3125 410.382812 144.742188 410.382812 144.742188 412.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.621094 249.46875 C 268.621094 251.085938 266.191406 251.085938 266.191406 249.46875 C 266.191406 247.847656 268.621094 247.847656 268.621094 249.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.027344 306.6875 C 255.027344 308.308594 252.597656 308.308594 252.597656 306.6875 C 252.597656 305.066406 255.027344 305.066406 255.027344 306.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.078125 70.910156 L 211.714844 73.746094 L 208.441406 73.746094 Z M 210.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.644531 266.457031 C 291.644531 268.078125 289.214844 268.078125 289.214844 266.457031 C 289.214844 264.839844 291.644531 264.839844 291.644531 266.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.234375 257.132812 C 222.234375 258.75 219.804688 258.75 219.804688 257.132812 C 219.804688 255.511719 222.234375 255.511719 222.234375 257.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.695312 70.910156 L 220.332031 73.746094 L 217.058594 73.746094 Z M 218.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.335938 243.738281 C 254.335938 245.359375 251.90625 245.359375 251.90625 243.738281 C 251.90625 242.121094 254.335938 242.121094 254.335938 243.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.53125 383.234375 C 289.53125 384.855469 287.101562 384.855469 287.101562 383.234375 C 287.101562 381.613281 289.53125 381.613281 289.53125 383.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.296875 400.734375 C 236.296875 402.351562 233.867188 402.351562 233.867188 400.734375 C 233.867188 399.113281 236.296875 399.113281 236.296875 400.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.167969 204.394531 C 284.167969 206.015625 281.734375 206.015625 281.734375 204.394531 C 281.734375 202.777344 284.167969 202.777344 284.167969 204.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.183594 254.417969 C 275.183594 256.039062 272.753906 256.039062 272.753906 254.417969 C 272.753906 252.800781 275.183594 252.800781 275.183594 254.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.238281 258.351562 C 273.238281 259.96875 270.808594 259.96875 270.808594 258.351562 C 270.808594 256.730469 273.238281 256.730469 273.238281 258.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.21875 281.03125 C 250.21875 282.652344 247.785156 282.652344 247.785156 281.03125 C 247.785156 279.414062 250.21875 279.414062 250.21875 281.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.246094 226.710938 C 292.246094 228.332031 289.816406 228.332031 289.816406 226.710938 C 289.816406 225.09375 292.246094 225.09375 292.246094 226.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.175781 296.183594 C 252.175781 297.804688 249.742188 297.804688 249.742188 296.183594 C 249.742188 294.566406 252.175781 294.566406 252.175781 296.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.601562 297.824219 C 209.601562 299.445312 207.171875 299.445312 207.171875 297.824219 C 207.171875 296.203125 209.601562 296.203125 209.601562 297.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.679688 311.808594 C 234.679688 313.429688 232.25 313.429688 232.25 311.808594 C 232.25 310.1875 234.679688 310.1875 234.679688 311.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.144531 265.71875 C 274.144531 267.335938 271.714844 267.335938 271.714844 265.71875 C 271.714844 264.097656 274.144531 264.097656 274.144531 265.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.101562 255.710938 C 258.101562 257.328125 255.671875 257.328125 255.671875 255.710938 C 255.671875 254.089844 258.101562 254.089844 258.101562 255.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.910156 360.488281 C 191.910156 362.109375 189.476562 362.109375 189.476562 360.488281 C 189.476562 358.871094 191.910156 358.871094 191.910156 360.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.101562 412.070312 C 192.101562 413.6875 189.671875 413.6875 189.671875 412.070312 C 189.671875 410.449219 192.101562 410.449219 192.101562 412.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.621094 364.757812 C 248.621094 366.378906 246.191406 366.378906 246.191406 364.757812 C 246.191406 363.140625 248.621094 363.140625 248.621094 364.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.476562 328.042969 C 149.476562 329.660156 147.046875 329.660156 147.046875 328.042969 C 147.046875 326.421875 149.476562 326.421875 149.476562 328.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.53125 239.644531 C 296.53125 241.261719 294.101562 241.261719 294.101562 239.644531 C 294.101562 238.023438 296.53125 238.023438 296.53125 239.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.988281 262.113281 C 226.988281 263.734375 224.558594 263.734375 224.558594 262.113281 C 224.558594 260.492188 226.988281 260.492188 226.988281 262.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.15625 217.359375 C 252.15625 218.980469 249.726562 218.980469 249.726562 217.359375 C 249.726562 215.738281 252.15625 215.738281 252.15625 217.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 353.042969 224.484375 C 353.042969 226.105469 350.613281 226.105469 350.613281 224.484375 C 350.613281 222.867188 353.042969 222.867188 353.042969 224.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.28125 272.710938 C 274.28125 274.332031 271.851562 274.332031 271.851562 272.710938 C 271.851562 271.089844 274.28125 271.089844 274.28125 272.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.910156 147.101562 C 160.910156 148.722656 158.480469 148.722656 158.480469 147.101562 C 158.480469 145.484375 160.910156 145.484375 160.910156 147.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.203125 222.703125 C 236.203125 224.324219 233.773438 224.324219 233.773438 222.703125 C 233.773438 221.082031 236.203125 221.082031 236.203125 222.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.734375 317.136719 C 231.734375 318.757812 229.304688 318.757812 229.304688 317.136719 C 229.304688 315.515625 231.734375 315.515625 231.734375 317.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.503906 299.902344 C 265.503906 301.523438 263.074219 301.523438 263.074219 299.902344 C 263.074219 298.28125 265.503906 298.28125 265.503906 299.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.699219 248.152344 C 237.699219 249.769531 235.269531 249.769531 235.269531 248.152344 C 235.269531 246.53125 237.699219 246.53125 237.699219 248.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.894531 216.53125 C 294.894531 218.152344 292.460938 218.152344 292.460938 216.53125 C 292.460938 214.914062 294.894531 214.914062 294.894531 216.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.835938 239.996094 C 267.835938 241.617188 265.40625 241.617188 265.40625 239.996094 C 265.40625 238.375 267.835938 238.375 267.835938 239.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.65625 289.925781 C 190.65625 291.542969 188.226562 291.542969 188.226562 289.925781 C 188.226562 288.304688 190.65625 288.304688 190.65625 289.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.578125 295.65625 C 281.578125 297.273438 279.148438 297.273438 279.148438 295.65625 C 279.148438 294.035156 281.578125 294.035156 281.578125 295.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.417969 168.902344 C 255.417969 170.523438 252.988281 170.523438 252.988281 168.902344 C 252.988281 167.285156 255.417969 167.285156 255.417969 168.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.847656 283.148438 C 245.847656 284.769531 243.417969 284.769531 243.417969 283.148438 C 243.417969 281.527344 245.847656 281.527344 245.847656 283.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.335938 281.78125 C 231.335938 283.402344 228.90625 283.402344 228.90625 281.78125 C 228.90625 280.160156 231.335938 280.160156 231.335938 281.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.425781 150.707031 C 161.425781 152.324219 158.996094 152.324219 158.996094 150.707031 C 158.996094 149.085938 161.425781 149.085938 161.425781 150.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.550781 384.765625 C 119.550781 386.386719 117.121094 386.386719 117.121094 384.765625 C 117.121094 383.148438 119.550781 383.148438 119.550781 384.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.855469 341.453125 C 277.855469 343.070312 275.425781 343.070312 275.425781 341.453125 C 275.425781 339.832031 277.855469 339.832031 277.855469 341.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.78125 140.359375 C 313.78125 141.980469 311.351562 141.980469 311.351562 140.359375 C 311.351562 138.738281 313.78125 138.738281 313.78125 140.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.550781 208.4375 C 267.550781 210.054688 265.121094 210.054688 265.121094 208.4375 C 265.121094 206.816406 267.550781 206.816406 267.550781 208.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.714844 251.714844 C 217.714844 253.335938 215.285156 253.335938 215.285156 251.714844 C 215.285156 250.097656 217.714844 250.097656 217.714844 251.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.226562 111.480469 C 237.226562 113.097656 234.796875 113.097656 234.796875 111.480469 C 234.796875 109.859375 237.226562 109.859375 237.226562 111.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.195312 201.105469 C 258.195312 202.722656 255.765625 202.722656 255.765625 201.105469 C 255.765625 199.484375 258.195312 199.484375 258.195312 201.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.136719 70.910156 L 229.773438 73.746094 L 226.5 73.746094 Z M 228.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.996094 291.667969 C 285.996094 293.289062 283.566406 293.289062 283.566406 291.667969 C 283.566406 290.046875 285.996094 290.046875 285.996094 291.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.738281 257.761719 C 263.738281 259.382812 261.308594 259.382812 261.308594 257.761719 C 261.308594 256.140625 263.738281 256.140625 263.738281 257.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.816406 225.140625 C 278.816406 226.761719 276.386719 226.761719 276.386719 225.140625 C 276.386719 223.519531 278.816406 223.519531 278.816406 225.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.894531 206.625 C 287.894531 208.246094 285.464844 208.246094 285.464844 206.625 C 285.464844 205.007812 287.894531 205.007812 287.894531 206.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.207031 173.941406 C 200.207031 175.5625 197.777344 175.5625 197.777344 173.941406 C 197.777344 172.324219 200.207031 172.324219 200.207031 173.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.496094 70.910156 L 168.132812 73.746094 L 164.859375 73.746094 Z M 166.496094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.878906 70.910156 L 236.515625 73.746094 L 233.242188 73.746094 Z M 234.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.042969 159.761719 C 256.042969 161.382812 253.613281 161.382812 253.613281 159.761719 C 253.613281 158.140625 256.042969 158.140625 256.042969 159.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.628906 217.582031 C 239.628906 219.203125 237.199219 219.203125 237.199219 217.582031 C 237.199219 215.960938 239.628906 215.960938 239.628906 217.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.425781 243.21875 C 247.425781 244.839844 244.996094 244.839844 244.996094 243.21875 C 244.996094 241.597656 247.425781 241.597656 247.425781 243.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.484375 139.355469 C 280.484375 140.976562 278.050781 140.976562 278.050781 139.355469 C 278.050781 137.738281 280.484375 137.738281 280.484375 139.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.734375 299.316406 C 237.734375 300.9375 235.304688 300.9375 235.304688 299.316406 C 235.304688 297.699219 237.734375 297.699219 237.734375 299.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.105469 70.910156 L 230.742188 73.746094 L 227.46875 73.746094 Z M 229.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.488281 293 C 294.488281 294.617188 292.058594 294.617188 292.058594 293 C 292.058594 291.378906 294.488281 291.378906 294.488281 293 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.628906 243.824219 C 305.628906 245.445312 303.199219 245.445312 303.199219 243.824219 C 303.199219 242.207031 305.628906 242.207031 305.628906 243.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.058594 255.046875 C 268.058594 256.667969 265.628906 256.667969 265.628906 255.046875 C 265.628906 253.425781 268.058594 253.425781 268.058594 255.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.527344 285.460938 C 283.527344 287.082031 281.09375 287.082031 281.09375 285.460938 C 281.09375 283.839844 283.527344 283.839844 283.527344 285.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.460938 235.878906 C 292.460938 237.5 290.03125 237.5 290.03125 235.878906 C 290.03125 234.257812 292.460938 234.257812 292.460938 235.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.03125 99.867188 C 245.03125 101.488281 242.601562 101.488281 242.601562 99.867188 C 242.601562 98.25 245.03125 98.25 245.03125 99.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.40625 296.074219 C 295.40625 297.695312 292.976562 297.695312 292.976562 296.074219 C 292.976562 294.457031 295.40625 294.457031 295.40625 296.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.566406 281.769531 C 215.566406 283.386719 213.136719 283.386719 213.136719 281.769531 C 213.136719 280.148438 215.566406 280.148438 215.566406 281.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.46875 395.019531 C 260.46875 396.640625 258.039062 396.640625 258.039062 395.019531 C 258.039062 393.398438 260.46875 393.398438 260.46875 395.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.539062 223.851562 C 270.539062 225.46875 268.109375 225.46875 268.109375 223.851562 C 268.109375 222.230469 270.539062 222.230469 270.539062 223.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.851562 275.011719 C 273.851562 276.628906 271.421875 276.628906 271.421875 275.011719 C 271.421875 273.390625 273.851562 273.390625 273.851562 275.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.714844 70.910156 L 165.351562 73.746094 L 162.078125 73.746094 Z M 163.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.6875 383.523438 C 284.6875 385.144531 282.257812 385.144531 282.257812 383.523438 C 282.257812 381.902344 284.6875 381.902344 284.6875 383.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.882812 418.691406 L 189.519531 415.855469 L 186.246094 415.855469 Z M 187.882812 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.460938 418.691406 L 121.097656 415.855469 L 117.824219 415.855469 Z M 119.460938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.882812 312.214844 C 241.882812 313.835938 239.453125 313.835938 239.453125 312.214844 C 239.453125 310.59375 241.882812 310.59375 241.882812 312.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.734375 294.578125 C 279.734375 296.199219 277.304688 296.199219 277.304688 294.578125 C 277.304688 292.957031 279.734375 292.957031 279.734375 294.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.804688 418.691406 L 270.441406 415.855469 L 267.167969 415.855469 Z M 268.804688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.390625 418.691406 L 144.027344 415.855469 L 140.753906 415.855469 Z M 142.390625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.476562 70.910156 L 159.113281 73.746094 L 155.839844 73.746094 Z M 157.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 389.144531 188.890625 C 389.144531 190.511719 386.710938 190.511719 386.710938 188.890625 C 386.710938 187.273438 389.144531 187.273438 389.144531 188.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 379.113281 289.648438 C 379.113281 291.269531 376.683594 291.269531 376.683594 289.648438 C 376.683594 288.027344 379.113281 288.027344 379.113281 289.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.546875 418.691406 L 226.183594 415.855469 L 222.910156 415.855469 Z M 224.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.835938 246.460938 C 288.835938 248.082031 286.40625 248.082031 286.40625 246.460938 C 286.40625 244.839844 288.835938 244.839844 288.835938 246.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.710938 263.753906 C 277.710938 265.375 275.28125 265.375 275.28125 263.753906 C 275.28125 262.132812 277.710938 262.132812 277.710938 263.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.023438 70.910156 L 129.660156 73.746094 L 126.386719 73.746094 Z M 128.023438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.765625 70.910156 L 182.402344 73.746094 L 179.128906 73.746094 Z M 180.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.375 242.558594 C 280.375 244.179688 277.945312 244.179688 277.945312 242.558594 C 277.945312 240.9375 280.375 240.9375 280.375 242.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.085938 70.910156 L 306.722656 73.746094 L 303.449219 73.746094 Z M 305.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.429688 252.988281 C 143.429688 254.609375 141 254.609375 141 252.988281 C 141 251.367188 143.429688 251.367188 143.429688 252.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.296875 74.847656 C 249.296875 76.464844 246.867188 76.464844 246.867188 74.847656 C 246.867188 73.226562 249.296875 73.226562 249.296875 74.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.179688 125.890625 C 237.179688 127.507812 234.746094 127.507812 234.746094 125.890625 C 234.746094 124.269531 237.179688 124.269531 237.179688 125.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.757812 70.910156 L 204.394531 73.746094 L 201.121094 73.746094 Z M 202.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.101562 95.875 C 264.101562 97.496094 261.671875 97.496094 261.671875 95.875 C 261.671875 94.257812 264.101562 94.257812 264.101562 95.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.015625 402.167969 C 280.015625 403.789062 277.585938 403.789062 277.585938 402.167969 C 277.585938 400.550781 280.015625 400.550781 280.015625 402.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.394531 386.40625 C 309.394531 388.023438 306.964844 388.023438 306.964844 386.40625 C 306.964844 384.785156 309.394531 384.785156 309.394531 386.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.167969 299.398438 C 302.167969 301.019531 299.738281 301.019531 299.738281 299.398438 C 299.738281 297.777344 302.167969 297.777344 302.167969 299.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.859375 298.453125 C 275.859375 300.070312 273.429688 300.070312 273.429688 298.453125 C 273.429688 296.832031 275.859375 296.832031 275.859375 298.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.511719 310.015625 C 218.511719 311.632812 216.082031 311.632812 216.082031 310.015625 C 216.082031 308.394531 218.511719 308.394531 218.511719 310.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.652344 277.75 C 273.652344 279.371094 271.222656 279.371094 271.222656 277.75 C 271.222656 276.128906 273.652344 276.128906 273.652344 277.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.230469 70.910156 L 145.867188 73.746094 L 142.59375 73.746094 Z M 144.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.441406 171.820312 C 313.441406 173.441406 311.011719 173.441406 311.011719 171.820312 C 311.011719 170.203125 313.441406 170.203125 313.441406 171.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.980469 280.585938 C 316.980469 282.207031 314.546875 282.207031 314.546875 280.585938 C 314.546875 278.96875 316.980469 278.96875 316.980469 280.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.910156 70.910156 L 172.546875 73.746094 L 169.273438 73.746094 Z M 170.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.882812 267.992188 C 278.882812 269.613281 276.453125 269.613281 276.453125 267.992188 C 276.453125 266.371094 278.882812 266.371094 278.882812 267.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.765625 99.433594 C 214.765625 101.050781 212.335938 101.050781 212.335938 99.433594 C 212.335938 97.8125 214.765625 97.8125 214.765625 99.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.980469 405.871094 C 249.980469 407.488281 247.550781 407.488281 247.550781 405.871094 C 247.550781 404.25 249.980469 404.25 249.980469 405.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.410156 400.363281 C 330.410156 401.980469 327.976562 401.980469 327.976562 400.363281 C 327.976562 398.742188 330.410156 398.742188 330.410156 400.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.378906 367.71875 C 301.378906 369.339844 298.949219 369.339844 298.949219 367.71875 C 298.949219 366.097656 301.378906 366.097656 301.378906 367.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.433594 278.9375 C 304.433594 280.558594 302.003906 280.558594 302.003906 278.9375 C 302.003906 277.316406 304.433594 277.316406 304.433594 278.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.777344 229.878906 C 146.777344 231.5 144.347656 231.5 144.347656 229.878906 C 144.347656 228.257812 146.777344 228.257812 146.777344 229.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.964844 148.832031 C 210.964844 150.453125 208.535156 150.453125 208.535156 148.832031 C 208.535156 147.210938 210.964844 147.210938 210.964844 148.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.980469 229.398438 C 233.980469 231.019531 231.550781 231.019531 231.550781 229.398438 C 231.550781 227.78125 233.980469 227.78125 233.980469 229.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.648438 203.933594 C 225.648438 205.554688 223.21875 205.554688 223.21875 203.933594 C 223.21875 202.3125 225.648438 202.3125 225.648438 203.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.46875 70.910156 L 168.105469 73.746094 L 164.832031 73.746094 Z M 166.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.296875 168.851562 C 239.296875 170.46875 236.867188 170.46875 236.867188 168.851562 C 236.867188 167.230469 239.296875 167.230469 239.296875 168.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.164062 194.070312 C 267.164062 195.691406 264.730469 195.691406 264.730469 194.070312 C 264.730469 192.449219 267.164062 192.449219 267.164062 194.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.925781 246.542969 C 201.925781 248.164062 199.496094 248.164062 199.496094 246.542969 C 199.496094 244.921875 201.925781 244.921875 201.925781 246.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.832031 70.910156 L 187.46875 73.746094 L 184.195312 73.746094 Z M 185.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.125 105.925781 C 120.125 107.542969 117.695312 107.542969 117.695312 105.925781 C 117.695312 104.304688 120.125 104.304688 120.125 105.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.210938 158.769531 C 251.210938 160.390625 248.78125 160.390625 248.78125 158.769531 C 248.78125 157.152344 251.210938 157.152344 251.210938 158.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.203125 272.714844 C 258.203125 274.332031 255.773438 274.332031 255.773438 272.714844 C 255.773438 271.09375 258.203125 271.09375 258.203125 272.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.703125 213.582031 C 156.703125 215.203125 154.273438 215.203125 154.273438 213.582031 C 154.273438 211.960938 156.703125 211.960938 156.703125 213.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.648438 260.210938 C 120.648438 261.828125 118.214844 261.828125 118.214844 260.210938 C 118.214844 258.589844 120.648438 258.589844 120.648438 260.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.933594 157.15625 C 142.933594 158.773438 140.5 158.773438 140.5 157.15625 C 140.5 155.535156 142.933594 155.535156 142.933594 157.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.503906 209.296875 C 258.503906 210.917969 256.074219 210.917969 256.074219 209.296875 C 256.074219 207.675781 258.503906 207.675781 258.503906 209.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.386719 270.75 C 301.386719 272.371094 298.957031 272.371094 298.957031 270.75 C 298.957031 269.128906 301.386719 269.128906 301.386719 270.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.875 373.566406 C 232.875 375.1875 230.445312 375.1875 230.445312 373.566406 C 230.445312 371.945312 232.875 371.945312 232.875 373.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.503906 166.574219 C 138.503906 168.195312 136.074219 168.195312 136.074219 166.574219 C 136.074219 164.953125 138.503906 164.953125 138.503906 166.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.019531 239.324219 C 291.019531 240.941406 288.589844 240.941406 288.589844 239.324219 C 288.589844 237.703125 291.019531 237.703125 291.019531 239.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.660156 70.910156 L 273.296875 73.746094 L 270.023438 73.746094 Z M 271.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.460938 275.597656 C 235.460938 277.21875 233.03125 277.21875 233.03125 275.597656 C 233.03125 273.976562 235.460938 273.976562 235.460938 275.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.441406 213.140625 C 267.441406 214.761719 265.011719 214.761719 265.011719 213.140625 C 265.011719 211.519531 267.441406 211.519531 267.441406 213.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.714844 154.917969 C 178.714844 156.539062 176.285156 156.539062 176.285156 154.917969 C 176.285156 153.300781 178.714844 153.300781 178.714844 154.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.703125 418.691406 L 326.339844 415.855469 L 323.066406 415.855469 Z M 324.703125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.285156 283.570312 C 292.285156 285.191406 289.855469 285.191406 289.855469 283.570312 C 289.855469 281.953125 292.285156 281.953125 292.285156 283.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.828125 175.261719 C 268.828125 176.878906 266.398438 176.878906 266.398438 175.261719 C 266.398438 173.640625 268.828125 173.640625 268.828125 175.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.09375 239.0625 C 297.09375 240.683594 294.664062 240.683594 294.664062 239.0625 C 294.664062 237.445312 297.09375 237.445312 297.09375 239.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.898438 218.773438 C 233.898438 220.394531 231.46875 220.394531 231.46875 218.773438 C 231.46875 217.152344 233.898438 217.152344 233.898438 218.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.828125 341.890625 C 324.828125 343.511719 322.398438 343.511719 322.398438 341.890625 C 322.398438 340.273438 324.828125 340.273438 324.828125 341.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.960938 190.46875 C 281.960938 192.089844 279.53125 192.089844 279.53125 190.46875 C 279.53125 188.851562 281.960938 188.851562 281.960938 190.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.582031 119.746094 C 318.582031 121.363281 316.152344 121.363281 316.152344 119.746094 C 316.152344 118.125 318.582031 118.125 318.582031 119.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.835938 238.59375 C 271.835938 240.214844 269.40625 240.214844 269.40625 238.59375 C 269.40625 236.976562 271.835938 236.976562 271.835938 238.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.8125 232.957031 C 201.8125 234.578125 199.382812 234.578125 199.382812 232.957031 C 199.382812 231.335938 201.8125 231.335938 201.8125 232.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.304688 235.714844 C 332.304688 237.335938 329.875 237.335938 329.875 235.714844 C 329.875 234.097656 332.304688 234.097656 332.304688 235.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.582031 259.722656 C 115.582031 261.34375 113.152344 261.34375 113.152344 259.722656 C 113.152344 258.105469 115.582031 258.105469 115.582031 259.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.277344 106.136719 C 216.277344 107.757812 213.847656 107.757812 213.847656 106.136719 C 213.847656 104.515625 216.277344 104.515625 216.277344 106.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.21875 208.355469 C 126.21875 209.972656 123.789062 209.972656 123.789062 208.355469 C 123.789062 206.734375 126.21875 206.734375 126.21875 208.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.105469 308.238281 C 328.105469 309.855469 325.675781 309.855469 325.675781 308.238281 C 325.675781 306.617188 328.105469 306.617188 328.105469 308.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.265625 145.421875 C 238.265625 147.039062 235.835938 147.039062 235.835938 145.421875 C 235.835938 143.800781 238.265625 143.800781 238.265625 145.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.167969 181.246094 C 172.167969 182.867188 169.738281 182.867188 169.738281 181.246094 C 169.738281 179.628906 172.167969 179.628906 172.167969 181.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.035156 255.066406 C 288.035156 256.6875 285.605469 256.6875 285.605469 255.066406 C 285.605469 253.445312 288.035156 253.445312 288.035156 255.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.386719 333.957031 C 131.386719 335.578125 128.957031 335.578125 128.957031 333.957031 C 128.957031 332.335938 131.386719 332.335938 131.386719 333.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.164062 154.945312 C 245.164062 156.5625 242.734375 156.5625 242.734375 154.945312 C 242.734375 153.324219 245.164062 153.324219 245.164062 154.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.53125 390.386719 C 280.53125 392.007812 278.101562 392.007812 278.101562 390.386719 C 278.101562 388.769531 280.53125 388.769531 280.53125 390.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.730469 302.488281 C 255.730469 304.105469 253.300781 304.105469 253.300781 302.488281 C 253.300781 300.867188 255.730469 300.867188 255.730469 302.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.136719 189.667969 C 163.136719 191.289062 160.703125 191.289062 160.703125 189.667969 C 160.703125 188.046875 163.136719 188.046875 163.136719 189.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.578125 283.472656 C 213.578125 285.09375 211.148438 285.09375 211.148438 283.472656 C 211.148438 281.851562 213.578125 281.851562 213.578125 283.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.851562 261.363281 C 205.851562 262.984375 203.421875 262.984375 203.421875 261.363281 C 203.421875 259.742188 205.851562 259.742188 205.851562 261.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.699219 225.875 C 259.699219 227.492188 257.269531 227.492188 257.269531 225.875 C 257.269531 224.253906 259.699219 224.253906 259.699219 225.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.128906 264.621094 C 260.128906 266.242188 257.699219 266.242188 257.699219 264.621094 C 257.699219 263 260.128906 263 260.128906 264.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.269531 266.351562 C 244.269531 267.972656 241.839844 267.972656 241.839844 266.351562 C 241.839844 264.730469 244.269531 264.730469 244.269531 266.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.375 281.003906 C 287.375 282.625 284.945312 282.625 284.945312 281.003906 C 284.945312 279.382812 287.375 279.382812 287.375 281.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.867188 284.34375 C 207.867188 285.960938 205.4375 285.960938 205.4375 284.34375 C 205.4375 282.722656 207.867188 282.722656 207.867188 284.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.539062 263.261719 C 222.539062 264.878906 220.109375 264.878906 220.109375 263.261719 C 220.109375 261.640625 222.539062 261.640625 222.539062 263.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.835938 291.863281 C 148.835938 293.480469 146.40625 293.480469 146.40625 291.863281 C 146.40625 290.242188 148.835938 290.242188 148.835938 291.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.277344 402.417969 C 319.277344 404.039062 316.847656 404.039062 316.847656 402.417969 C 316.847656 400.796875 319.277344 400.796875 319.277344 402.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.789062 226.5 C 201.789062 228.121094 199.359375 228.121094 199.359375 226.5 C 199.359375 224.882812 201.789062 224.882812 201.789062 226.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.203125 143.738281 C 278.203125 145.359375 275.773438 145.359375 275.773438 143.738281 C 275.773438 142.117188 278.203125 142.117188 278.203125 143.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.78125 418.691406 L 126.417969 415.855469 L 123.144531 415.855469 Z M 124.78125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.085938 70.910156 L 211.722656 73.746094 L 208.449219 73.746094 Z M 210.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.515625 215.984375 C 268.515625 217.605469 266.085938 217.605469 266.085938 215.984375 C 266.085938 214.367188 268.515625 214.367188 268.515625 215.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.746094 192 C 209.746094 193.617188 207.316406 193.617188 207.316406 192 C 207.316406 190.378906 209.746094 190.378906 209.746094 192 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.105469 158.425781 C 333.105469 160.046875 330.675781 160.046875 330.675781 158.425781 C 330.675781 156.804688 333.105469 156.804688 333.105469 158.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.988281 246.0625 C 266.988281 247.683594 264.558594 247.683594 264.558594 246.0625 C 264.558594 244.441406 266.988281 244.441406 266.988281 246.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.074219 317.9375 C 230.074219 319.558594 227.644531 319.558594 227.644531 317.9375 C 227.644531 316.316406 230.074219 316.316406 230.074219 317.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.964844 261.285156 C 246.964844 262.90625 244.535156 262.90625 244.535156 261.285156 C 244.535156 259.667969 246.964844 259.667969 246.964844 261.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.230469 272.324219 C 263.230469 273.945312 260.800781 273.945312 260.800781 272.324219 C 260.800781 270.707031 263.230469 270.707031 263.230469 272.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.039062 219.136719 C 151.039062 220.757812 148.609375 220.757812 148.609375 219.136719 C 148.609375 217.515625 151.039062 217.515625 151.039062 219.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.722656 316.523438 C 328.722656 318.144531 326.292969 318.144531 326.292969 316.523438 C 326.292969 314.902344 328.722656 314.902344 328.722656 316.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.902344 214.207031 C 302.902344 215.824219 300.472656 215.824219 300.472656 214.207031 C 300.472656 212.585938 302.902344 212.585938 302.902344 214.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.179688 188.863281 C 154.179688 190.480469 151.75 190.480469 151.75 188.863281 C 151.75 187.242188 154.179688 187.242188 154.179688 188.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.253906 173.089844 C 285.253906 174.707031 282.824219 174.707031 282.824219 173.089844 C 282.824219 171.46875 285.253906 171.46875 285.253906 173.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.269531 257.167969 C 272.269531 258.789062 269.839844 258.789062 269.839844 257.167969 C 269.839844 255.546875 272.269531 255.546875 272.269531 257.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.527344 284.628906 C 338.527344 286.246094 336.09375 286.246094 336.09375 284.628906 C 336.09375 283.007812 338.527344 283.007812 338.527344 284.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.414062 70.910156 L 245.050781 73.746094 L 241.777344 73.746094 Z M 243.414062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.046875 70.910156 L 190.683594 73.746094 L 187.410156 73.746094 Z M 189.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.25 284.648438 C 272.25 286.269531 269.820312 286.269531 269.820312 284.648438 C 269.820312 283.03125 272.25 283.03125 272.25 284.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.4375 293.449219 C 298.4375 295.070312 296.007812 295.070312 296.007812 293.449219 C 296.007812 291.828125 298.4375 291.828125 298.4375 293.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.824219 260.765625 C 315.824219 262.382812 313.394531 262.382812 313.394531 260.765625 C 313.394531 259.144531 315.824219 259.144531 315.824219 260.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.273438 199.980469 C 123.273438 201.601562 120.84375 201.601562 120.84375 199.980469 C 120.84375 198.363281 123.273438 198.363281 123.273438 199.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.453125 248.433594 C 169.453125 250.050781 167.019531 250.050781 167.019531 248.433594 C 167.019531 246.8125 169.453125 246.8125 169.453125 248.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.015625 288.21875 C 234.015625 289.839844 231.585938 289.839844 231.585938 288.21875 C 231.585938 286.597656 234.015625 286.597656 234.015625 288.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.148438 148.257812 C 307.148438 149.878906 304.71875 149.878906 304.71875 148.257812 C 304.71875 146.636719 307.148438 146.636719 307.148438 148.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.914062 70.910156 L 318.550781 73.746094 L 315.28125 73.746094 Z M 316.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.582031 258.042969 C 285.582031 259.664062 283.152344 259.664062 283.152344 258.042969 C 283.152344 256.421875 285.582031 256.421875 285.582031 258.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.921875 114.980469 C 285.921875 116.601562 283.492188 116.601562 283.492188 114.980469 C 283.492188 113.359375 285.921875 113.359375 285.921875 114.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.816406 233.074219 C 233.816406 234.695312 231.386719 234.695312 231.386719 233.074219 C 231.386719 231.453125 233.816406 231.453125 233.816406 233.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.742188 186.992188 C 318.742188 188.613281 316.3125 188.613281 316.3125 186.992188 C 316.3125 185.375 318.742188 185.375 318.742188 186.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.378906 70.910156 L 295.015625 73.746094 L 291.742188 73.746094 Z M 293.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.5625 216.316406 C 265.5625 217.933594 263.132812 217.933594 263.132812 216.316406 C 263.132812 214.695312 265.5625 214.695312 265.5625 216.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.160156 361.742188 C 242.160156 363.363281 239.730469 363.363281 239.730469 361.742188 C 239.730469 360.121094 242.160156 360.121094 242.160156 361.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.378906 167.023438 C 251.378906 168.644531 248.949219 168.644531 248.949219 167.023438 C 248.949219 165.402344 251.378906 165.402344 251.378906 167.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.574219 381.253906 C 301.574219 382.875 299.144531 382.875 299.144531 381.253906 C 299.144531 379.632812 301.574219 379.632812 301.574219 381.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.617188 190.226562 C 323.617188 191.847656 321.1875 191.847656 321.1875 190.226562 C 321.1875 188.609375 323.617188 188.609375 323.617188 190.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.171875 165.796875 C 253.171875 167.414062 250.742188 167.414062 250.742188 165.796875 C 250.742188 164.175781 253.171875 164.175781 253.171875 165.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.550781 316.207031 C 285.550781 317.824219 283.121094 317.824219 283.121094 316.207031 C 283.121094 314.585938 285.550781 314.585938 285.550781 316.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.875 297.085938 C 305.875 298.707031 303.445312 298.707031 303.445312 297.085938 C 303.445312 295.464844 305.875 295.464844 305.875 297.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.863281 249.289062 C 273.863281 250.910156 271.433594 250.910156 271.433594 249.289062 C 271.433594 247.667969 273.863281 247.667969 273.863281 249.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.535156 244.300781 C 276.535156 245.921875 274.105469 245.921875 274.105469 244.300781 C 274.105469 242.683594 276.535156 242.683594 276.535156 244.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.757812 137.332031 C 243.757812 138.953125 241.328125 138.953125 241.328125 137.332031 C 241.328125 135.710938 243.757812 135.710938 243.757812 137.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.503906 185.417969 C 264.503906 187.039062 262.070312 187.039062 262.070312 185.417969 C 262.070312 183.796875 264.503906 183.796875 264.503906 185.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.449219 197.460938 C 268.449219 199.078125 266.019531 199.078125 266.019531 197.460938 C 266.019531 195.839844 268.449219 195.839844 268.449219 197.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.632812 313.636719 C 289.632812 315.257812 287.199219 315.257812 287.199219 313.636719 C 287.199219 312.019531 289.632812 312.019531 289.632812 313.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.515625 315.621094 C 270.515625 317.242188 268.085938 317.242188 268.085938 315.621094 C 268.085938 314.003906 270.515625 314.003906 270.515625 315.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.027344 361.988281 C 308.027344 363.609375 305.59375 363.609375 305.59375 361.988281 C 305.59375 360.367188 308.027344 360.367188 308.027344 361.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281 218.46875 C 281 220.085938 278.570312 220.085938 278.570312 218.46875 C 278.570312 216.847656 281 216.847656 281 218.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.296875 299.148438 C 205.296875 300.769531 202.867188 300.769531 202.867188 299.148438 C 202.867188 297.53125 205.296875 297.53125 205.296875 299.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.660156 238.519531 C 227.660156 240.140625 225.230469 240.140625 225.230469 238.519531 C 225.230469 236.902344 227.660156 236.902344 227.660156 238.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.585938 237.523438 C 168.585938 239.144531 166.15625 239.144531 166.15625 237.523438 C 166.15625 235.902344 168.585938 235.902344 168.585938 237.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.25 324.816406 C 112.25 326.4375 109.820312 326.4375 109.820312 324.816406 C 109.820312 323.199219 112.25 323.199219 112.25 324.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.660156 238.519531 C 227.660156 240.140625 225.230469 240.140625 225.230469 238.519531 C 225.230469 236.902344 227.660156 236.902344 227.660156 238.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.71875 418.691406 L 263.355469 415.855469 L 260.085938 415.855469 Z M 261.71875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.730469 341.441406 C 269.730469 343.0625 267.300781 343.0625 267.300781 341.441406 C 267.300781 339.820312 269.730469 339.820312 269.730469 341.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.902344 357.386719 C 235.902344 359.007812 233.472656 359.007812 233.472656 357.386719 C 233.472656 355.765625 235.902344 355.765625 235.902344 357.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.402344 255.835938 C 315.402344 257.457031 312.972656 257.457031 312.972656 255.835938 C 312.972656 254.214844 315.402344 254.214844 315.402344 255.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.554688 278.042969 C 294.554688 279.664062 292.125 279.664062 292.125 278.042969 C 292.125 276.421875 294.554688 276.421875 294.554688 278.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.675781 70.910156 L 250.3125 73.746094 L 247.039062 73.746094 Z M 248.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.175781 242.953125 C 283.175781 244.574219 280.746094 244.574219 280.746094 242.953125 C 280.746094 241.335938 283.175781 241.335938 283.175781 242.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.417969 398.671875 C 232.417969 400.292969 229.988281 400.292969 229.988281 398.671875 C 229.988281 397.050781 232.417969 397.050781 232.417969 398.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.582031 70.910156 L 304.21875 73.746094 L 300.945312 73.746094 Z M 302.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.074219 70.910156 L 308.710938 73.746094 L 305.4375 73.746094 Z M 307.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.429688 127.730469 C 270.429688 129.351562 268 129.351562 268 127.730469 C 268 126.109375 270.429688 126.109375 270.429688 127.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.605469 279.519531 C 158.605469 281.140625 156.175781 281.140625 156.175781 279.519531 C 156.175781 277.902344 158.605469 277.902344 158.605469 279.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.792969 233.0625 C 240.792969 234.683594 238.363281 234.683594 238.363281 233.0625 C 238.363281 231.445312 240.792969 231.445312 240.792969 233.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.382812 203.992188 C 203.382812 205.613281 200.953125 205.613281 200.953125 203.992188 C 200.953125 202.371094 203.382812 202.371094 203.382812 203.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.539062 259.011719 C 237.539062 260.632812 235.109375 260.632812 235.109375 259.011719 C 235.109375 257.390625 237.539062 257.390625 237.539062 259.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.128906 265.386719 C 203.128906 267.007812 200.699219 267.007812 200.699219 265.386719 C 200.699219 263.765625 203.128906 263.765625 203.128906 265.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.097656 192.539062 C 136.097656 194.160156 133.667969 194.160156 133.667969 192.539062 C 133.667969 190.921875 136.097656 190.921875 136.097656 192.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.191406 211.800781 C 259.191406 213.421875 256.757812 213.421875 256.757812 211.800781 C 256.757812 210.179688 259.191406 210.179688 259.191406 211.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.5 200.550781 C 155.5 202.171875 153.070312 202.171875 153.070312 200.550781 C 153.070312 198.929688 155.5 198.929688 155.5 200.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.105469 343.070312 C 289.105469 344.691406 286.675781 344.691406 286.675781 343.070312 C 286.675781 341.453125 289.105469 341.453125 289.105469 343.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.292969 70.910156 L 221.929688 73.746094 L 218.65625 73.746094 Z M 220.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.183594 194.105469 C 266.183594 195.726562 263.75 195.726562 263.75 194.105469 C 263.75 192.484375 266.183594 192.484375 266.183594 194.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.441406 160.722656 C 151.441406 162.34375 149.011719 162.34375 149.011719 160.722656 C 149.011719 159.101562 151.441406 159.101562 151.441406 160.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.71875 268.910156 C 295.71875 270.527344 293.289062 270.527344 293.289062 268.910156 C 293.289062 267.289062 295.71875 267.289062 295.71875 268.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.144531 418.691406 L 263.78125 415.855469 L 260.507812 415.855469 Z M 262.144531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.789062 331.636719 C 293.789062 333.257812 291.359375 333.257812 291.359375 331.636719 C 291.359375 330.015625 293.789062 330.015625 293.789062 331.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.792969 70.910156 L 215.429688 73.746094 L 212.15625 73.746094 Z M 213.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.414062 326.59375 C 234.414062 328.214844 231.984375 328.214844 231.984375 326.59375 C 231.984375 324.976562 234.414062 324.976562 234.414062 326.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.097656 234.296875 C 207.097656 235.917969 204.667969 235.917969 204.667969 234.296875 C 204.667969 232.679688 207.097656 232.679688 207.097656 234.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.878906 197.0625 C 297.878906 198.683594 295.449219 198.683594 295.449219 197.0625 C 295.449219 195.441406 297.878906 195.441406 297.878906 197.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.050781 70.910156 L 264.683594 73.746094 L 261.414062 73.746094 Z M 263.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.285156 302.574219 C 272.285156 304.195312 269.851562 304.195312 269.851562 302.574219 C 269.851562 300.953125 272.285156 300.953125 272.285156 302.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.910156 254.609375 C 296.910156 256.226562 294.480469 256.226562 294.480469 254.609375 C 294.480469 252.988281 296.910156 252.988281 296.910156 254.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.210938 102.136719 C 267.210938 103.753906 264.78125 103.753906 264.78125 102.136719 C 264.78125 100.515625 267.210938 100.515625 267.210938 102.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.097656 312.515625 C 280.097656 314.136719 277.667969 314.136719 277.667969 312.515625 C 277.667969 310.894531 280.097656 310.894531 280.097656 312.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.429688 262.449219 C 275.429688 264.070312 273 264.070312 273 262.449219 C 273 260.832031 275.429688 260.832031 275.429688 262.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.523438 151.054688 C 280.523438 152.675781 278.089844 152.675781 278.089844 151.054688 C 278.089844 149.4375 280.523438 149.4375 280.523438 151.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.324219 117.429688 C 207.324219 119.050781 204.894531 119.050781 204.894531 117.429688 C 204.894531 115.8125 207.324219 115.8125 207.324219 117.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.324219 192.019531 C 245.324219 193.640625 242.894531 193.640625 242.894531 192.019531 C 242.894531 190.398438 245.324219 190.398438 245.324219 192.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.632812 278.558594 C 267.632812 280.175781 265.203125 280.175781 265.203125 278.558594 C 265.203125 276.9375 267.632812 276.9375 267.632812 278.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.839844 347.9375 C 206.839844 349.558594 204.410156 349.558594 204.410156 347.9375 C 204.410156 346.320312 206.839844 346.320312 206.839844 347.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.339844 263.105469 C 290.339844 264.726562 287.910156 264.726562 287.910156 263.105469 C 287.910156 261.484375 290.339844 261.484375 290.339844 263.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.496094 316.105469 C 323.496094 317.722656 321.066406 317.722656 321.066406 316.105469 C 321.066406 314.484375 323.496094 314.484375 323.496094 316.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.203125 270.507812 C 238.203125 272.128906 235.773438 272.128906 235.773438 270.507812 C 235.773438 268.890625 238.203125 268.890625 238.203125 270.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.304688 362.136719 C 292.304688 363.757812 289.875 363.757812 289.875 362.136719 C 289.875 360.515625 292.304688 360.515625 292.304688 362.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.882812 171.695312 C 287.882812 173.316406 285.453125 173.316406 285.453125 171.695312 C 285.453125 170.074219 287.882812 170.074219 287.882812 171.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.019531 332.519531 C 146.019531 334.136719 143.589844 334.136719 143.589844 332.519531 C 143.589844 330.898438 146.019531 330.898438 146.019531 332.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.617188 253.578125 C 119.617188 255.199219 117.1875 255.199219 117.1875 253.578125 C 117.1875 251.960938 119.617188 251.960938 119.617188 253.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.160156 418.691406 L 232.796875 415.855469 L 229.523438 415.855469 Z M 231.160156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.179688 178.855469 C 362.179688 180.476562 359.75 180.476562 359.75 178.855469 C 359.75 177.238281 362.179688 177.238281 362.179688 178.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.515625 223.113281 C 223.515625 224.734375 221.085938 224.734375 221.085938 223.113281 C 221.085938 221.492188 223.515625 221.492188 223.515625 223.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.507812 70.910156 L 131.144531 73.746094 L 127.871094 73.746094 Z M 129.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.570312 70.910156 L 293.207031 73.746094 L 289.933594 73.746094 Z M 291.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.25 324.816406 C 112.25 326.4375 109.820312 326.4375 109.820312 324.816406 C 109.820312 323.199219 112.25 323.199219 112.25 324.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.070312 210.351562 C 193.070312 211.972656 190.640625 211.972656 190.640625 210.351562 C 190.640625 208.730469 193.070312 208.730469 193.070312 210.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.660156 183.378906 C 270.660156 184.996094 268.230469 184.996094 268.230469 183.378906 C 268.230469 181.757812 270.660156 181.757812 270.660156 183.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.507812 70.910156 L 274.144531 73.746094 L 270.875 73.746094 Z M 272.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.679688 70.910156 L 192.316406 73.746094 L 189.042969 73.746094 Z M 190.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.144531 177.085938 C 202.144531 178.707031 199.714844 178.707031 199.714844 177.085938 C 199.714844 175.464844 202.144531 175.464844 202.144531 177.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.613281 116.132812 C 271.613281 117.753906 269.179688 117.753906 269.179688 116.132812 C 269.179688 114.511719 271.613281 114.511719 271.613281 116.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.273438 280.921875 C 248.273438 282.539062 245.84375 282.539062 245.84375 280.921875 C 245.84375 279.300781 248.273438 279.300781 248.273438 280.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.613281 128.429688 C 218.613281 130.050781 216.183594 130.050781 216.183594 128.429688 C 216.183594 126.808594 218.613281 126.808594 218.613281 128.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.714844 103.023438 C 183.714844 104.644531 181.285156 104.644531 181.285156 103.023438 C 181.285156 101.40625 183.714844 101.40625 183.714844 103.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.542969 418.691406 L 277.179688 415.855469 L 273.90625 415.855469 Z M 275.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.515625 291.285156 C 257.515625 292.902344 255.085938 292.902344 255.085938 291.285156 C 255.085938 289.664062 257.515625 289.664062 257.515625 291.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.914062 316.640625 C 269.914062 318.261719 267.480469 318.261719 267.480469 316.640625 C 267.480469 315.019531 269.914062 315.019531 269.914062 316.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.765625 254.441406 C 254.765625 256.0625 252.335938 256.0625 252.335938 254.441406 C 252.335938 252.820312 254.765625 252.820312 254.765625 254.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.15625 83.671875 C 295.15625 85.289062 292.726562 85.289062 292.726562 83.671875 C 292.726562 82.050781 295.15625 82.050781 295.15625 83.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.714844 194.953125 C 214.714844 196.570312 212.285156 196.570312 212.285156 194.953125 C 212.285156 193.332031 214.714844 193.332031 214.714844 194.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.007812 262.503906 C 188.007812 264.125 185.578125 264.125 185.578125 262.503906 C 185.578125 260.882812 188.007812 260.882812 188.007812 262.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.414062 261.324219 C 211.414062 262.945312 208.980469 262.945312 208.980469 261.324219 C 208.980469 259.703125 211.414062 259.703125 211.414062 261.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.15625 293.6875 C 256.15625 295.308594 253.722656 295.308594 253.722656 293.6875 C 253.722656 292.070312 256.15625 292.070312 256.15625 293.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.875 363.667969 C 286.875 365.289062 284.445312 365.289062 284.445312 363.667969 C 284.445312 362.046875 286.875 362.046875 286.875 363.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.421875 267.414062 C 229.421875 269.035156 226.992188 269.035156 226.992188 267.414062 C 226.992188 265.792969 229.421875 265.792969 229.421875 267.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.890625 190.765625 C 292.890625 192.382812 290.460938 192.382812 290.460938 190.765625 C 290.460938 189.144531 292.890625 189.144531 292.890625 190.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.273438 317.902344 C 201.273438 319.523438 198.84375 319.523438 198.84375 317.902344 C 198.84375 316.28125 201.273438 316.28125 201.273438 317.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.328125 291.242188 C 240.328125 292.859375 237.898438 292.859375 237.898438 291.242188 C 237.898438 289.621094 240.328125 289.621094 240.328125 291.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.859375 278.277344 C 294.859375 279.898438 292.429688 279.898438 292.429688 278.277344 C 292.429688 276.65625 294.859375 276.65625 294.859375 278.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.859375 289.058594 C 243.859375 290.675781 241.429688 290.675781 241.429688 289.058594 C 241.429688 287.4375 243.859375 287.4375 243.859375 289.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.515625 256.699219 C 288.515625 258.316406 286.085938 258.316406 286.085938 256.699219 C 286.085938 255.078125 288.515625 255.078125 288.515625 256.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.179688 70.910156 L 185.816406 73.746094 L 182.542969 73.746094 Z M 184.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.429688 172.1875 C 277.429688 173.804688 275 173.804688 275 172.1875 C 275 170.566406 277.429688 170.566406 277.429688 172.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.53125 269.597656 C 178.53125 271.214844 176.097656 271.214844 176.097656 269.597656 C 176.097656 267.976562 178.53125 267.976562 178.53125 269.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.773438 398.152344 C 269.773438 399.773438 267.34375 399.773438 267.34375 398.152344 C 267.34375 396.535156 269.773438 396.535156 269.773438 398.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.523438 283.402344 C 295.523438 285.023438 293.09375 285.023438 293.09375 283.402344 C 293.09375 281.785156 295.523438 281.785156 295.523438 283.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.039062 238.503906 C 287.039062 240.125 284.609375 240.125 284.609375 238.503906 C 284.609375 236.882812 287.039062 236.882812 287.039062 238.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.476562 207.519531 C 252.476562 209.140625 250.046875 209.140625 250.046875 207.519531 C 250.046875 205.898438 252.476562 205.898438 252.476562 207.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.351562 259.339844 C 280.351562 260.960938 277.921875 260.960938 277.921875 259.339844 C 277.921875 257.722656 280.351562 257.722656 280.351562 259.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.195312 391.210938 C 307.195312 392.828125 304.761719 392.828125 304.761719 391.210938 C 304.761719 389.589844 307.195312 389.589844 307.195312 391.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.203125 213.574219 C 173.203125 215.195312 170.773438 215.195312 170.773438 213.574219 C 170.773438 211.953125 173.203125 211.953125 173.203125 213.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 372.453125 234.378906 C 372.453125 236 370.023438 236 370.023438 234.378906 C 370.023438 232.757812 372.453125 232.757812 372.453125 234.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.738281 70.910156 L 311.375 73.746094 L 308.101562 73.746094 Z M 309.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.933594 418.691406 L 143.570312 415.855469 L 140.296875 415.855469 Z M 141.933594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.636719 215.097656 C 286.636719 216.71875 284.207031 216.71875 284.207031 215.097656 C 284.207031 213.480469 286.636719 213.480469 286.636719 215.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.230469 329.636719 C 370.230469 331.253906 367.800781 331.253906 367.800781 329.636719 C 367.800781 328.015625 370.230469 328.015625 370.230469 329.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.007812 320.589844 C 275.007812 322.210938 272.578125 322.210938 272.578125 320.589844 C 272.578125 318.972656 275.007812 318.972656 275.007812 320.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.878906 357.558594 C 265.878906 359.175781 263.449219 359.175781 263.449219 357.558594 C 263.449219 355.9375 265.878906 355.9375 265.878906 357.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.363281 230.988281 C 249.363281 232.609375 246.933594 232.609375 246.933594 230.988281 C 246.933594 229.371094 249.363281 229.371094 249.363281 230.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.277344 224.710938 C 271.277344 226.332031 268.847656 226.332031 268.847656 224.710938 C 268.847656 223.09375 271.277344 223.09375 271.277344 224.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.640625 70.910156 L 171.277344 73.746094 L 168.007812 73.746094 Z M 169.640625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.839844 70.910156 L 322.476562 73.746094 L 319.203125 73.746094 Z M 320.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.515625 313.527344 C 290.515625 315.148438 288.085938 315.148438 288.085938 313.527344 C 288.085938 311.910156 290.515625 311.910156 290.515625 313.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.464844 296.90625 C 313.464844 298.527344 311.035156 298.527344 311.035156 296.90625 C 311.035156 295.285156 313.464844 295.285156 313.464844 296.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.292969 166.476562 C 148.292969 168.097656 145.863281 168.097656 145.863281 166.476562 C 145.863281 164.855469 148.292969 164.855469 148.292969 166.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.710938 229.550781 C 208.710938 231.171875 206.28125 231.171875 206.28125 229.550781 C 206.28125 227.933594 208.710938 227.933594 208.710938 229.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.066406 261.339844 C 259.066406 262.960938 256.636719 262.960938 256.636719 261.339844 C 256.636719 259.722656 259.066406 259.722656 259.066406 261.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.859375 273.601562 C 278.859375 275.222656 276.429688 275.222656 276.429688 273.601562 C 276.429688 271.984375 278.859375 271.984375 278.859375 273.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.632812 119.386719 C 280.632812 121.007812 278.203125 121.007812 278.203125 119.386719 C 278.203125 117.769531 280.632812 117.769531 280.632812 119.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.402344 418.691406 L 174.035156 415.855469 L 170.765625 415.855469 Z M 172.402344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.140625 195.292969 C 231.140625 196.914062 228.710938 196.914062 228.710938 195.292969 C 228.710938 193.671875 231.140625 193.671875 231.140625 195.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.3125 286.210938 C 152.3125 287.832031 149.882812 287.832031 149.882812 286.210938 C 149.882812 284.59375 152.3125 284.59375 152.3125 286.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.929688 129.816406 C 283.929688 131.4375 281.5 131.4375 281.5 129.816406 C 281.5 128.195312 283.929688 128.195312 283.929688 129.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.019531 265.84375 C 278.019531 267.464844 275.589844 267.464844 275.589844 265.84375 C 275.589844 264.226562 278.019531 264.226562 278.019531 265.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.125 309.777344 C 182.125 311.398438 179.695312 311.398438 179.695312 309.777344 C 179.695312 308.15625 182.125 308.15625 182.125 309.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.089844 124.761719 C 155.089844 126.382812 152.660156 126.382812 152.660156 124.761719 C 152.660156 123.140625 155.089844 123.140625 155.089844 124.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.582031 160.648438 C 174.582031 162.269531 172.152344 162.269531 172.152344 160.648438 C 172.152344 159.027344 174.582031 159.027344 174.582031 160.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.101562 400.898438 C 169.101562 402.519531 166.671875 402.519531 166.671875 400.898438 C 166.671875 399.277344 169.101562 399.277344 169.101562 400.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.921875 230.480469 C 150.921875 232.101562 148.492188 232.101562 148.492188 230.480469 C 148.492188 228.863281 150.921875 228.863281 150.921875 230.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.507812 148.800781 C 224.507812 150.421875 222.078125 150.421875 222.078125 148.800781 C 222.078125 147.179688 224.507812 147.179688 224.507812 148.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.019531 98.199219 C 173.019531 99.820312 170.589844 99.820312 170.589844 98.199219 C 170.589844 96.578125 173.019531 96.578125 173.019531 98.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.503906 70.910156 L 187.140625 73.746094 L 183.867188 73.746094 Z M 185.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.839844 125.039062 C 217.839844 126.65625 215.410156 126.65625 215.410156 125.039062 C 215.410156 123.417969 217.839844 123.417969 217.839844 125.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.222656 102.921875 C 346.222656 104.542969 343.792969 104.542969 343.792969 102.921875 C 343.792969 101.300781 346.222656 101.300781 346.222656 102.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.425781 100.820312 C 302.425781 102.441406 299.996094 102.441406 299.996094 100.820312 C 299.996094 99.199219 302.425781 99.199219 302.425781 100.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.679688 250.777344 C 268.679688 252.398438 266.25 252.398438 266.25 250.777344 C 266.25 249.160156 268.679688 249.160156 268.679688 250.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.445312 70.910156 L 191.082031 73.746094 L 187.808594 73.746094 Z M 189.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.378906 163.886719 C 128.378906 165.507812 125.949219 165.507812 125.949219 163.886719 C 125.949219 162.265625 128.378906 162.265625 128.378906 163.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.859375 365.816406 C 239.859375 367.433594 237.429688 367.433594 237.429688 365.816406 C 237.429688 364.195312 239.859375 364.195312 239.859375 365.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.589844 339.128906 C 222.589844 340.746094 220.160156 340.746094 220.160156 339.128906 C 220.160156 337.507812 222.589844 337.507812 222.589844 339.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.832031 300.824219 C 234.832031 302.441406 232.402344 302.441406 232.402344 300.824219 C 232.402344 299.203125 234.832031 299.203125 234.832031 300.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.625 312.726562 C 196.625 314.347656 194.195312 314.347656 194.195312 312.726562 C 194.195312 311.109375 196.625 311.109375 196.625 312.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.0625 209.125 C 251.0625 210.746094 248.632812 210.746094 248.632812 209.125 C 248.632812 207.503906 251.0625 207.503906 251.0625 209.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.742188 70.910156 L 142.378906 73.746094 L 139.105469 73.746094 Z M 140.742188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.9375 289.042969 C 257.9375 290.664062 255.507812 290.664062 255.507812 289.042969 C 255.507812 287.421875 257.9375 287.421875 257.9375 289.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.230469 128.664062 C 245.230469 130.285156 242.800781 130.285156 242.800781 128.664062 C 242.800781 127.042969 245.230469 127.042969 245.230469 128.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.367188 141.488281 C 261.367188 143.109375 258.9375 143.109375 258.9375 141.488281 C 258.9375 139.867188 261.367188 139.867188 261.367188 141.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.757812 246.882812 C 290.757812 248.503906 288.328125 248.503906 288.328125 246.882812 C 288.328125 245.265625 290.757812 245.265625 290.757812 246.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.265625 213.214844 C 206.265625 214.835938 203.835938 214.835938 203.835938 213.214844 C 203.835938 211.59375 206.265625 211.59375 206.265625 213.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.949219 182.867188 C 263.949219 184.488281 261.519531 184.488281 261.519531 182.867188 C 261.519531 181.246094 263.949219 181.246094 263.949219 182.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.082031 148.636719 C 193.082031 150.257812 190.652344 150.257812 190.652344 148.636719 C 190.652344 147.015625 193.082031 147.015625 193.082031 148.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.664062 149.050781 C 302.664062 150.671875 300.234375 150.671875 300.234375 149.050781 C 300.234375 147.429688 302.664062 147.429688 302.664062 149.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.828125 152.503906 C 199.828125 154.121094 197.398438 154.121094 197.398438 152.503906 C 197.398438 150.882812 199.828125 150.882812 199.828125 152.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.515625 245.445312 C 282.515625 247.066406 280.085938 247.066406 280.085938 245.445312 C 280.085938 243.824219 282.515625 243.824219 282.515625 245.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.320312 344.40625 C 165.320312 346.023438 162.890625 346.023438 162.890625 344.40625 C 162.890625 342.785156 165.320312 342.785156 165.320312 344.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.574219 135.597656 C 189.574219 137.21875 187.144531 137.21875 187.144531 135.597656 C 187.144531 133.980469 189.574219 133.980469 189.574219 135.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.757812 155.9375 C 218.757812 157.558594 216.328125 157.558594 216.328125 155.9375 C 216.328125 154.316406 218.757812 154.316406 218.757812 155.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.761719 79.878906 C 222.761719 81.496094 220.332031 81.496094 220.332031 79.878906 C 220.332031 78.257812 222.761719 78.257812 222.761719 79.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.335938 288.019531 C 294.335938 289.640625 291.90625 289.640625 291.90625 288.019531 C 291.90625 286.398438 294.335938 286.398438 294.335938 288.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.074219 283.722656 C 240.074219 285.34375 237.644531 285.34375 237.644531 283.722656 C 237.644531 282.105469 240.074219 282.105469 240.074219 283.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.980469 260.65625 C 301.980469 262.273438 299.550781 262.273438 299.550781 260.65625 C 299.550781 259.035156 301.980469 259.035156 301.980469 260.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 363.871094 294.230469 C 363.871094 295.851562 361.441406 295.851562 361.441406 294.230469 C 361.441406 292.613281 363.871094 292.613281 363.871094 294.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.675781 244.496094 C 247.675781 246.113281 245.246094 246.113281 245.246094 244.496094 C 245.246094 242.875 247.675781 242.875 247.675781 244.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.339844 240.363281 C 284.339844 241.984375 281.910156 241.984375 281.910156 240.363281 C 281.910156 238.746094 284.339844 238.746094 284.339844 240.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.4375 117.101562 C 262.4375 118.722656 260.007812 118.722656 260.007812 117.101562 C 260.007812 115.480469 262.4375 115.480469 262.4375 117.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.320312 70.910156 L 219.957031 73.746094 L 216.683594 73.746094 Z M 218.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.621094 151.132812 C 234.621094 152.753906 232.191406 152.753906 232.191406 151.132812 C 232.191406 149.511719 234.621094 149.511719 234.621094 151.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.484375 193.726562 C 282.484375 195.347656 280.054688 195.347656 280.054688 193.726562 C 280.054688 192.105469 282.484375 192.105469 282.484375 193.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.042969 70.910156 L 235.679688 73.746094 L 232.40625 73.746094 Z M 234.042969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.160156 306.625 C 169.160156 308.246094 166.730469 308.246094 166.730469 306.625 C 166.730469 305.007812 169.160156 305.007812 169.160156 306.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.40625 316.332031 C 308.40625 317.949219 305.976562 317.949219 305.976562 316.332031 C 305.976562 314.710938 308.40625 314.710938 308.40625 316.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.550781 259.332031 C 271.550781 260.953125 269.121094 260.953125 269.121094 259.332031 C 269.121094 257.714844 271.550781 257.714844 271.550781 259.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.472656 114.386719 C 250.472656 116.003906 248.042969 116.003906 248.042969 114.386719 C 248.042969 112.765625 250.472656 112.765625 250.472656 114.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.597656 257.898438 C 308.597656 259.519531 306.164062 259.519531 306.164062 257.898438 C 306.164062 256.277344 308.597656 256.277344 308.597656 257.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.808594 70.910156 L 238.441406 73.746094 L 235.171875 73.746094 Z M 236.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.9375 73.957031 C 249.9375 75.578125 247.503906 75.578125 247.503906 73.957031 C 247.503906 72.339844 249.9375 72.339844 249.9375 73.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.105469 264.722656 C 319.105469 266.339844 316.675781 266.339844 316.675781 264.722656 C 316.675781 263.101562 319.105469 263.101562 319.105469 264.722656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.109375 70.910156 L 204.746094 73.746094 L 201.472656 73.746094 Z M 203.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.171875 70.910156 L 215.808594 73.746094 L 212.535156 73.746094 Z M 214.171875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.402344 70.910156 L 249.039062 73.746094 L 245.765625 73.746094 Z M 247.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.9375 268.253906 C 318.9375 269.875 316.503906 269.875 316.503906 268.253906 C 316.503906 266.636719 318.9375 266.636719 318.9375 268.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.039062 372.539062 C 267.039062 374.160156 264.609375 374.160156 264.609375 372.539062 C 264.609375 370.921875 267.039062 370.921875 267.039062 372.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.675781 330.996094 C 283.675781 332.617188 281.242188 332.617188 281.242188 330.996094 C 281.242188 329.378906 283.675781 329.378906 283.675781 330.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.597656 278.921875 C 190.597656 280.542969 188.167969 280.542969 188.167969 278.921875 C 188.167969 277.304688 190.597656 277.304688 190.597656 278.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.351562 296.695312 C 300.351562 298.316406 297.921875 298.316406 297.921875 296.695312 C 297.921875 295.074219 300.351562 295.074219 300.351562 296.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.660156 244.476562 C 297.660156 246.09375 295.230469 246.09375 295.230469 244.476562 C 295.230469 242.855469 297.660156 242.855469 297.660156 244.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.519531 272.5625 C 222.519531 274.179688 220.089844 274.179688 220.089844 272.5625 C 220.089844 270.941406 222.519531 270.941406 222.519531 272.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.628906 70.910156 L 230.261719 73.746094 L 226.992188 73.746094 Z M 228.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.976562 285.125 C 268.976562 286.746094 266.546875 286.746094 266.546875 285.125 C 266.546875 283.507812 268.976562 283.507812 268.976562 285.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.820312 296.339844 C 286.820312 297.960938 284.390625 297.960938 284.390625 296.339844 C 284.390625 294.71875 286.820312 294.71875 286.820312 296.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.824219 261.429688 C 270.824219 263.046875 268.394531 263.046875 268.394531 261.429688 C 268.394531 259.808594 270.824219 259.808594 270.824219 261.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 390.535156 114 C 390.535156 115.621094 388.105469 115.621094 388.105469 114 C 388.105469 112.378906 390.535156 112.378906 390.535156 114 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.246094 70.910156 L 132.882812 73.746094 L 129.609375 73.746094 Z M 131.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.804688 220.191406 C 306.804688 221.808594 304.375 221.808594 304.375 220.191406 C 304.375 218.570312 306.804688 218.570312 306.804688 220.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.808594 223.804688 C 271.808594 225.425781 269.378906 225.425781 269.378906 223.804688 C 269.378906 222.183594 271.808594 222.183594 271.808594 223.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.644531 70.910156 L 234.28125 73.746094 L 231.007812 73.746094 Z M 232.644531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.175781 70.910156 L 259.8125 73.746094 L 256.539062 73.746094 Z M 258.175781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.234375 270.523438 C 266.234375 272.144531 263.804688 272.144531 263.804688 270.523438 C 263.804688 268.90625 266.234375 268.90625 266.234375 270.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.417969 162.1875 C 129.417969 163.808594 126.984375 163.808594 126.984375 162.1875 C 126.984375 160.566406 129.417969 160.566406 129.417969 162.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.660156 135.53125 C 174.660156 137.152344 172.230469 137.152344 172.230469 135.53125 C 172.230469 133.914062 174.660156 133.914062 174.660156 135.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.945312 212.070312 C 311.945312 213.691406 309.515625 213.691406 309.515625 212.070312 C 309.515625 210.453125 311.945312 210.453125 311.945312 212.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.257812 70.910156 L 167.894531 73.746094 L 164.621094 73.746094 Z M 166.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.054688 275.691406 C 176.054688 277.3125 173.625 277.3125 173.625 275.691406 C 173.625 274.070312 176.054688 274.070312 176.054688 275.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.269531 373.15625 C 119.269531 374.773438 116.839844 374.773438 116.839844 373.15625 C 116.839844 371.535156 119.269531 371.535156 119.269531 373.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.164062 276.605469 C 308.164062 278.226562 305.734375 278.226562 305.734375 276.605469 C 305.734375 274.984375 308.164062 274.984375 308.164062 276.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.003906 247.273438 C 265.003906 248.894531 262.574219 248.894531 262.574219 247.273438 C 262.574219 245.652344 265.003906 245.652344 265.003906 247.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.148438 70.910156 L 261.785156 73.746094 L 258.515625 73.746094 Z M 260.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.074219 320.78125 C 280.074219 322.402344 277.644531 322.402344 277.644531 320.78125 C 277.644531 319.164062 280.074219 319.164062 280.074219 320.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.199219 418.691406 L 276.835938 415.855469 L 273.5625 415.855469 Z M 275.199219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.949219 305.402344 C 280.949219 307.023438 278.515625 307.023438 278.515625 305.402344 C 278.515625 303.78125 280.949219 303.78125 280.949219 305.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.367188 213.582031 C 318.367188 215.203125 315.9375 215.203125 315.9375 213.582031 C 315.9375 211.960938 318.367188 211.960938 318.367188 213.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.550781 70.910156 L 316.1875 73.746094 L 312.914062 73.746094 Z M 314.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.066406 70.910156 L 268.703125 73.746094 L 265.429688 73.746094 Z M 267.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.390625 333.914062 C 280.390625 335.535156 277.960938 335.535156 277.960938 333.914062 C 277.960938 332.296875 280.390625 332.296875 280.390625 333.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.425781 219.679688 C 235.425781 221.300781 232.996094 221.300781 232.996094 219.679688 C 232.996094 218.058594 235.425781 218.058594 235.425781 219.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.703125 242.042969 C 291.703125 243.664062 289.273438 243.664062 289.273438 242.042969 C 289.273438 240.421875 291.703125 240.421875 291.703125 242.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.398438 252.613281 C 250.398438 254.234375 247.96875 254.234375 247.96875 252.613281 C 247.96875 250.992188 250.398438 250.992188 250.398438 252.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.730469 267.070312 C 232.730469 268.6875 230.300781 268.6875 230.300781 267.070312 C 230.300781 265.449219 232.730469 265.449219 232.730469 267.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.742188 278.964844 C 263.742188 280.585938 261.3125 280.585938 261.3125 278.964844 C 261.3125 277.347656 263.742188 277.347656 263.742188 278.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.242188 256.46875 C 213.242188 258.089844 210.8125 258.089844 210.8125 256.46875 C 210.8125 254.851562 213.242188 254.851562 213.242188 256.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.53125 327.441406 C 275.53125 329.0625 273.101562 329.0625 273.101562 327.441406 C 273.101562 325.820312 275.53125 325.820312 275.53125 327.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.574219 110.15625 C 239.574219 111.777344 237.144531 111.777344 237.144531 110.15625 C 237.144531 108.535156 239.574219 108.535156 239.574219 110.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.871094 216.015625 C 240.871094 217.632812 238.441406 217.632812 238.441406 216.015625 C 238.441406 214.394531 240.871094 214.394531 240.871094 216.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.300781 242.628906 C 333.300781 244.25 330.871094 244.25 330.871094 242.628906 C 330.871094 241.007812 333.300781 241.007812 333.300781 242.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.171875 133.449219 C 314.171875 135.070312 311.742188 135.070312 311.742188 133.449219 C 311.742188 131.832031 314.171875 131.832031 314.171875 133.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.050781 186.367188 C 264.050781 187.988281 261.621094 187.988281 261.621094 186.367188 C 261.621094 184.746094 264.050781 184.746094 264.050781 186.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.039062 264.6875 C 308.039062 266.308594 305.605469 266.308594 305.605469 264.6875 C 305.605469 263.066406 308.039062 263.066406 308.039062 264.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.152344 136.1875 C 193.152344 137.808594 190.722656 137.808594 190.722656 136.1875 C 190.722656 134.570312 193.152344 134.570312 193.152344 136.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.832031 119.144531 C 193.832031 120.765625 191.402344 120.765625 191.402344 119.144531 C 191.402344 117.523438 193.832031 117.523438 193.832031 119.144531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.890625 70.910156 L 147.527344 73.746094 L 144.253906 73.746094 Z M 145.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.550781 96.746094 C 225.550781 98.363281 223.121094 98.363281 223.121094 96.746094 C 223.121094 95.125 225.550781 95.125 225.550781 96.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.207031 91.933594 C 208.207031 93.554688 205.773438 93.554688 205.773438 91.933594 C 205.773438 90.3125 208.207031 90.3125 208.207031 91.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300 339.023438 C 300 340.644531 297.570312 340.644531 297.570312 339.023438 C 297.570312 337.40625 300 337.40625 300 339.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.324219 70.910156 L 127.960938 73.746094 L 124.6875 73.746094 Z M 126.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.167969 70.910156 L 228.804688 73.746094 L 225.535156 73.746094 Z M 227.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.171875 264.734375 C 278.171875 266.355469 275.742188 266.355469 275.742188 264.734375 C 275.742188 263.113281 278.171875 263.113281 278.171875 264.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.652344 70.910156 L 135.289062 73.746094 L 132.015625 73.746094 Z M 133.652344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.390625 220.449219 C 249.390625 222.066406 246.960938 222.066406 246.960938 220.449219 C 246.960938 218.828125 249.390625 218.828125 249.390625 220.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.921875 150.542969 C 155.921875 152.160156 153.492188 152.160156 153.492188 150.542969 C 153.492188 148.921875 155.921875 148.921875 155.921875 150.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.78125 330.386719 C 186.78125 332.007812 184.351562 332.007812 184.351562 330.386719 C 184.351562 328.769531 186.78125 328.769531 186.78125 330.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.492188 258.515625 C 265.492188 260.136719 263.0625 260.136719 263.0625 258.515625 C 263.0625 256.894531 265.492188 256.894531 265.492188 258.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.226562 260.542969 C 299.226562 262.164062 296.796875 262.164062 296.796875 260.542969 C 296.796875 258.921875 299.226562 258.921875 299.226562 260.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.621094 174.335938 C 317.621094 175.953125 315.191406 175.953125 315.191406 174.335938 C 315.191406 172.714844 317.621094 172.714844 317.621094 174.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.523438 77.949219 C 189.523438 79.566406 187.089844 79.566406 187.089844 77.949219 C 187.089844 76.328125 189.523438 76.328125 189.523438 77.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.222656 70.910156 L 160.859375 73.746094 L 157.585938 73.746094 Z M 159.222656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.992188 70.910156 L 290.628906 73.746094 L 287.355469 73.746094 Z M 288.992188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.308594 418.691406 L 264.945312 415.855469 L 261.671875 415.855469 Z M 263.308594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.105469 258.175781 C 126.105469 259.796875 123.675781 259.796875 123.675781 258.175781 C 123.675781 256.554688 126.105469 256.554688 126.105469 258.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.375 215.785156 C 289.375 217.402344 286.945312 217.402344 286.945312 215.785156 C 286.945312 214.164062 289.375 214.164062 289.375 215.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.675781 132.03125 C 257.675781 133.652344 255.246094 133.652344 255.246094 132.03125 C 255.246094 130.410156 257.675781 130.410156 257.675781 132.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.03125 367.683594 C 152.03125 369.304688 149.601562 369.304688 149.601562 367.683594 C 149.601562 366.0625 152.03125 366.0625 152.03125 367.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.3125 70.910156 L 244.949219 73.746094 L 241.675781 73.746094 Z M 243.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.691406 119.703125 C 182.691406 121.320312 180.261719 121.320312 180.261719 119.703125 C 180.261719 118.082031 182.691406 118.082031 182.691406 119.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.0625 274.972656 C 144.0625 276.589844 141.632812 276.589844 141.632812 274.972656 C 141.632812 273.351562 144.0625 273.351562 144.0625 274.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.132812 164.910156 C 127.132812 166.53125 124.703125 166.53125 124.703125 164.910156 C 124.703125 163.289062 127.132812 163.289062 127.132812 164.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.121094 192.125 C 134.121094 193.746094 131.691406 193.746094 131.691406 192.125 C 131.691406 190.507812 134.121094 190.507812 134.121094 192.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.59375 418.691406 L 150.230469 415.855469 L 146.957031 415.855469 Z M 148.59375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.152344 326.949219 C 260.152344 328.566406 257.722656 328.566406 257.722656 326.949219 C 257.722656 325.328125 260.152344 325.328125 260.152344 326.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.808594 367.070312 C 233.808594 368.691406 231.375 368.691406 231.375 367.070312 C 231.375 365.449219 233.808594 365.449219 233.808594 367.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.738281 231.945312 C 234.738281 233.566406 232.308594 233.566406 232.308594 231.945312 C 232.308594 230.328125 234.738281 230.328125 234.738281 231.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.5625 147.246094 C 295.5625 148.863281 293.132812 148.863281 293.132812 147.246094 C 293.132812 145.625 295.5625 145.625 295.5625 147.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.84375 232.640625 C 318.84375 234.261719 316.410156 234.261719 316.410156 232.640625 C 316.410156 231.019531 318.84375 231.019531 318.84375 232.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.582031 70.910156 L 170.21875 73.746094 L 166.945312 73.746094 Z M 168.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.953125 257.148438 C 198.953125 258.765625 196.523438 258.765625 196.523438 257.148438 C 196.523438 255.527344 198.953125 255.527344 198.953125 257.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.988281 404.125 C 315.988281 405.746094 313.558594 405.746094 313.558594 404.125 C 313.558594 402.507812 315.988281 402.507812 315.988281 404.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.25 418.691406 L 304.886719 415.855469 L 301.613281 415.855469 Z M 303.25 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.398438 278.085938 C 293.398438 279.707031 290.96875 279.707031 290.96875 278.085938 C 290.96875 276.464844 293.398438 276.464844 293.398438 278.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.382812 321.269531 C 322.382812 322.890625 319.953125 322.890625 319.953125 321.269531 C 319.953125 319.648438 322.382812 319.648438 322.382812 321.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.878906 281.4375 C 244.878906 283.058594 242.449219 283.058594 242.449219 281.4375 C 242.449219 279.820312 244.878906 279.820312 244.878906 281.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.574219 184.933594 C 245.574219 186.550781 243.144531 186.550781 243.144531 184.933594 C 243.144531 183.3125 245.574219 183.3125 245.574219 184.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.835938 308.957031 C 251.835938 310.578125 249.40625 310.578125 249.40625 308.957031 C 249.40625 307.339844 251.835938 307.339844 251.835938 308.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.613281 266.082031 C 288.613281 267.703125 286.183594 267.703125 286.183594 266.082031 C 286.183594 264.460938 288.613281 264.460938 288.613281 266.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.847656 111.835938 C 216.847656 113.457031 214.417969 113.457031 214.417969 111.835938 C 214.417969 110.21875 216.847656 110.21875 216.847656 111.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.285156 70.910156 L 269.921875 73.746094 L 266.652344 73.746094 Z M 268.285156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.792969 70.910156 L 208.429688 73.746094 L 205.15625 73.746094 Z M 206.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.25 92.242188 C 319.25 93.863281 316.820312 93.863281 316.820312 92.242188 C 316.820312 90.625 319.25 90.625 319.25 92.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.554688 314.34375 C 151.554688 315.964844 149.125 315.964844 149.125 314.34375 C 149.125 312.726562 151.554688 312.726562 151.554688 314.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.964844 339.730469 C 247.964844 341.351562 245.535156 341.351562 245.535156 339.730469 C 245.535156 338.109375 247.964844 338.109375 247.964844 339.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.175781 338.078125 C 280.175781 339.699219 277.746094 339.699219 277.746094 338.078125 C 277.746094 336.457031 280.175781 336.457031 280.175781 338.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.347656 282.71875 C 269.347656 284.339844 266.917969 284.339844 266.917969 282.71875 C 266.917969 281.097656 269.347656 281.097656 269.347656 282.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.554688 275.46875 C 287.554688 277.085938 285.125 277.085938 285.125 275.46875 C 285.125 273.847656 287.554688 273.847656 287.554688 275.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.609375 250.355469 C 199.609375 251.976562 197.179688 251.976562 197.179688 250.355469 C 197.179688 248.734375 199.609375 248.734375 199.609375 250.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.613281 224.683594 C 250.613281 226.304688 248.183594 226.304688 248.183594 224.683594 C 248.183594 223.066406 250.613281 223.066406 250.613281 224.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.589844 221.671875 C 234.589844 223.292969 232.160156 223.292969 232.160156 221.671875 C 232.160156 220.050781 234.589844 220.050781 234.589844 221.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.578125 280.886719 C 280.578125 282.507812 278.148438 282.507812 278.148438 280.886719 C 278.148438 279.269531 280.578125 279.269531 280.578125 280.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.859375 310.847656 C 204.859375 312.464844 202.429688 312.464844 202.429688 310.847656 C 202.429688 309.226562 204.859375 309.226562 204.859375 310.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.726562 264.425781 C 254.726562 266.042969 252.296875 266.042969 252.296875 264.425781 C 252.296875 262.804688 254.726562 262.804688 254.726562 264.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.765625 245.570312 C 242.765625 247.191406 240.335938 247.191406 240.335938 245.570312 C 240.335938 243.949219 242.765625 243.949219 242.765625 245.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.039062 255.101562 C 304.039062 256.722656 301.609375 256.722656 301.609375 255.101562 C 301.609375 253.484375 304.039062 253.484375 304.039062 255.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.847656 308.792969 C 231.847656 310.414062 229.417969 310.414062 229.417969 308.792969 C 229.417969 307.171875 231.847656 307.171875 231.847656 308.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.121094 237.40625 C 310.121094 239.023438 307.691406 239.023438 307.691406 237.40625 C 307.691406 235.785156 310.121094 235.785156 310.121094 237.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.917969 253.410156 C 247.917969 255.03125 245.484375 255.03125 245.484375 253.410156 C 245.484375 251.792969 247.917969 251.792969 247.917969 253.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.21875 291.199219 C 215.21875 292.820312 212.785156 292.820312 212.785156 291.199219 C 212.785156 289.582031 215.21875 289.582031 215.21875 291.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.574219 308.4375 C 213.574219 310.058594 211.144531 310.058594 211.144531 308.4375 C 211.144531 306.816406 213.574219 306.816406 213.574219 308.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.207031 288.433594 C 211.207031 290.050781 208.777344 290.050781 208.777344 288.433594 C 208.777344 286.8125 211.207031 286.8125 211.207031 288.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.304688 281.996094 C 208.304688 283.617188 205.871094 283.617188 205.871094 281.996094 C 205.871094 280.375 208.304688 280.375 208.304688 281.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.761719 211.941406 C 180.761719 213.5625 178.332031 213.5625 178.332031 211.941406 C 178.332031 210.324219 180.761719 210.324219 180.761719 211.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.808594 213.261719 C 285.808594 214.882812 283.378906 214.882812 283.378906 213.261719 C 283.378906 211.644531 285.808594 211.644531 285.808594 213.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.15625 270.140625 C 267.15625 271.761719 264.726562 271.761719 264.726562 270.140625 C 264.726562 268.523438 267.15625 268.523438 267.15625 270.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.96875 308.414062 C 236.96875 310.035156 234.539062 310.035156 234.539062 308.414062 C 234.539062 306.792969 236.96875 306.792969 236.96875 308.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.503906 379.941406 C 229.503906 381.5625 227.074219 381.5625 227.074219 379.941406 C 227.074219 378.320312 229.503906 378.320312 229.503906 379.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.25 304.863281 C 295.25 306.484375 292.820312 306.484375 292.820312 304.863281 C 292.820312 303.242188 295.25 303.242188 295.25 304.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.152344 250.667969 C 305.152344 252.285156 302.722656 252.285156 302.722656 250.667969 C 302.722656 249.046875 305.152344 249.046875 305.152344 250.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.988281 256.34375 C 219.988281 257.964844 217.558594 257.964844 217.558594 256.34375 C 217.558594 254.722656 219.988281 254.722656 219.988281 256.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.539062 228.929688 C 284.539062 230.546875 282.109375 230.546875 282.109375 228.929688 C 282.109375 227.308594 284.539062 227.308594 284.539062 228.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.238281 370.535156 C 348.238281 372.152344 345.804688 372.152344 345.804688 370.535156 C 345.804688 368.914062 348.238281 368.914062 348.238281 370.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.859375 335.972656 C 129.859375 337.59375 127.429688 337.59375 127.429688 335.972656 C 127.429688 334.351562 129.859375 334.351562 129.859375 335.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.265625 179.789062 C 260.265625 181.410156 257.835938 181.410156 257.835938 179.789062 C 257.835938 178.167969 260.265625 178.167969 260.265625 179.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.617188 178.691406 C 274.617188 180.3125 272.1875 180.3125 272.1875 178.691406 C 272.1875 177.070312 274.617188 177.070312 274.617188 178.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.34375 70.910156 L 170.980469 73.746094 L 167.710938 73.746094 Z M 169.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.457031 227.808594 C 294.457031 229.425781 292.027344 229.425781 292.027344 227.808594 C 292.027344 226.1875 294.457031 226.1875 294.457031 227.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.628906 152.121094 C 238.628906 153.742188 236.199219 153.742188 236.199219 152.121094 C 236.199219 150.5 238.628906 150.5 238.628906 152.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.03125 357.28125 C 270.03125 358.898438 267.601562 358.898438 267.601562 357.28125 C 267.601562 355.660156 270.03125 355.660156 270.03125 357.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.691406 331.324219 C 287.691406 332.941406 285.261719 332.941406 285.261719 331.324219 C 285.261719 329.703125 287.691406 329.703125 287.691406 331.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.449219 75.96875 C 184.449219 77.589844 182.019531 77.589844 182.019531 75.96875 C 182.019531 74.351562 184.449219 74.351562 184.449219 75.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.933594 238.929688 C 301.933594 240.550781 299.503906 240.550781 299.503906 238.929688 C 299.503906 237.308594 301.933594 237.308594 301.933594 238.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.164062 174.519531 C 222.164062 176.140625 219.734375 176.140625 219.734375 174.519531 C 219.734375 172.898438 222.164062 172.898438 222.164062 174.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.785156 226.722656 C 200.785156 228.339844 198.355469 228.339844 198.355469 226.722656 C 198.355469 225.101562 200.785156 225.101562 200.785156 226.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.910156 297.085938 C 282.910156 298.707031 280.480469 298.707031 280.480469 297.085938 C 280.480469 295.464844 282.910156 295.464844 282.910156 297.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.773438 257.132812 C 220.773438 258.753906 218.34375 258.753906 218.34375 257.132812 C 218.34375 255.515625 220.773438 255.515625 220.773438 257.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.78125 251.34375 C 246.78125 252.964844 244.351562 252.964844 244.351562 251.34375 C 244.351562 249.726562 246.78125 249.726562 246.78125 251.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.4375 259.621094 C 270.4375 261.238281 268.007812 261.238281 268.007812 259.621094 C 268.007812 258 270.4375 258 270.4375 259.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.742188 70.910156 L 172.378906 73.746094 L 169.105469 73.746094 Z M 170.742188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.378906 377.355469 C 263.378906 378.972656 260.949219 378.972656 260.949219 377.355469 C 260.949219 375.734375 263.378906 375.734375 263.378906 377.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.664062 70.910156 L 210.296875 73.746094 L 207.027344 73.746094 Z M 208.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.746094 116.109375 C 156.746094 117.726562 154.316406 117.726562 154.316406 116.109375 C 154.316406 114.488281 156.746094 114.488281 156.746094 116.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.914062 70.910156 L 158.550781 73.746094 L 155.277344 73.746094 Z M 156.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.589844 70.910156 L 289.226562 73.746094 L 285.957031 73.746094 Z M 287.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.90625 267.800781 C 323.90625 269.417969 321.476562 269.417969 321.476562 267.800781 C 321.476562 266.179688 323.90625 266.179688 323.90625 267.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263 239.652344 C 263 241.269531 260.570312 241.269531 260.570312 239.652344 C 260.570312 238.03125 263 238.03125 263 239.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.25 244.792969 C 196.25 246.414062 193.820312 246.414062 193.820312 244.792969 C 193.820312 243.175781 196.25 243.175781 196.25 244.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.011719 265.957031 C 259.011719 267.578125 256.582031 267.578125 256.582031 265.957031 C 256.582031 264.335938 259.011719 264.335938 259.011719 265.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.738281 252.175781 C 116.738281 253.796875 114.308594 253.796875 114.308594 252.175781 C 114.308594 250.554688 116.738281 250.554688 116.738281 252.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.136719 223.136719 C 300.136719 224.757812 297.707031 224.757812 297.707031 223.136719 C 297.707031 221.515625 300.136719 221.515625 300.136719 223.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.789062 239.285156 C 121.789062 240.902344 119.355469 240.902344 119.355469 239.285156 C 119.355469 237.664062 121.789062 237.664062 121.789062 239.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.214844 238.3125 C 294.214844 239.933594 291.785156 239.933594 291.785156 238.3125 C 291.785156 236.691406 294.214844 236.691406 294.214844 238.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.832031 418.691406 L 411.46875 415.855469 L 408.195312 415.855469 Z M 409.832031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.132812 418.691406 L 199.765625 415.855469 L 196.496094 415.855469 Z M 198.132812 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.890625 70.910156 L 127.527344 73.746094 L 124.253906 73.746094 Z M 125.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.230469 271.835938 C 345.230469 273.457031 342.800781 273.457031 342.800781 271.835938 C 342.800781 270.21875 345.230469 270.21875 345.230469 271.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.324219 355.273438 C 249.324219 356.894531 246.894531 356.894531 246.894531 355.273438 C 246.894531 353.652344 249.324219 353.652344 249.324219 355.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.316406 316.695312 C 235.316406 318.3125 232.886719 318.3125 232.886719 316.695312 C 232.886719 315.074219 235.316406 315.074219 235.316406 316.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.917969 326.253906 C 213.917969 327.875 211.488281 327.875 211.488281 326.253906 C 211.488281 324.632812 213.917969 324.632812 213.917969 326.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.453125 171.3125 C 291.453125 172.929688 289.023438 172.929688 289.023438 171.3125 C 289.023438 169.691406 291.453125 169.691406 291.453125 171.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.007812 418.691406 L 197.644531 415.855469 L 194.371094 415.855469 Z M 196.007812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.796875 128.328125 C 175.796875 129.949219 173.367188 129.949219 173.367188 128.328125 C 173.367188 126.707031 175.796875 126.707031 175.796875 128.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.375 132.917969 C 289.375 134.535156 286.941406 134.535156 286.941406 132.917969 C 286.941406 131.296875 289.375 131.296875 289.375 132.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 356.023438 286.480469 C 356.023438 288.101562 353.59375 288.101562 353.59375 286.480469 C 353.59375 284.859375 356.023438 284.859375 356.023438 286.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.972656 418.691406 L 309.609375 415.855469 L 306.335938 415.855469 Z M 307.972656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.773438 342.332031 C 174.773438 343.953125 172.34375 343.953125 172.34375 342.332031 C 172.34375 340.710938 174.773438 340.710938 174.773438 342.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.859375 70.910156 L 277.496094 73.746094 L 274.222656 73.746094 Z M 275.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.589844 272.261719 C 304.589844 273.878906 302.160156 273.878906 302.160156 272.261719 C 302.160156 270.640625 304.589844 270.640625 304.589844 272.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.4375 406.746094 C 242.4375 408.363281 240.007812 408.363281 240.007812 406.746094 C 240.007812 405.125 242.4375 405.125 242.4375 406.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.890625 105.5625 C 171.890625 107.183594 169.460938 107.183594 169.460938 105.5625 C 169.460938 103.941406 171.890625 103.941406 171.890625 105.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.8125 265.894531 C 289.8125 267.511719 287.382812 267.511719 287.382812 265.894531 C 287.382812 264.273438 289.8125 264.273438 289.8125 265.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.550781 185.996094 C 279.550781 187.617188 277.121094 187.617188 277.121094 185.996094 C 277.121094 184.378906 279.550781 184.378906 279.550781 185.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.332031 211.125 C 255.332031 212.746094 252.902344 212.746094 252.902344 211.125 C 252.902344 209.507812 255.332031 209.507812 255.332031 211.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.683594 230.757812 C 320.683594 232.378906 318.253906 232.378906 318.253906 230.757812 C 318.253906 229.136719 320.683594 229.136719 320.683594 230.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.398438 70.910156 L 255.035156 73.746094 L 251.761719 73.746094 Z M 253.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.882812 196.363281 C 228.882812 197.984375 226.453125 197.984375 226.453125 196.363281 C 226.453125 194.746094 228.882812 194.746094 228.882812 196.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.039062 138.566406 C 132.039062 140.183594 129.609375 140.183594 129.609375 138.566406 C 129.609375 136.945312 132.039062 136.945312 132.039062 138.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.140625 139.949219 C 177.140625 141.570312 174.710938 141.570312 174.710938 139.949219 C 174.710938 138.328125 177.140625 138.328125 177.140625 139.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.523438 170.761719 C 281.523438 172.382812 279.09375 172.382812 279.09375 170.761719 C 279.09375 169.140625 281.523438 169.140625 281.523438 170.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.234375 86.210938 C 124.234375 87.828125 121.804688 87.828125 121.804688 86.210938 C 121.804688 84.589844 124.234375 84.589844 124.234375 86.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.496094 262.515625 C 292.496094 264.136719 290.066406 264.136719 290.066406 262.515625 C 290.066406 260.894531 292.496094 260.894531 292.496094 262.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.5 230.597656 C 259.5 232.21875 257.070312 232.21875 257.070312 230.597656 C 257.070312 228.980469 259.5 228.980469 259.5 230.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.164062 263.890625 C 224.164062 265.511719 221.734375 265.511719 221.734375 263.890625 C 221.734375 262.269531 224.164062 262.269531 224.164062 263.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.808594 97.40625 C 271.808594 99.023438 269.378906 99.023438 269.378906 97.40625 C 269.378906 95.785156 271.808594 95.785156 271.808594 97.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.800781 179.304688 C 199.800781 180.925781 197.371094 180.925781 197.371094 179.304688 C 197.371094 177.683594 199.800781 177.683594 199.800781 179.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.375 224.976562 C 307.375 226.597656 304.945312 226.597656 304.945312 224.976562 C 304.945312 223.359375 307.375 223.359375 307.375 224.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.558594 70.910156 L 186.195312 73.746094 L 182.925781 73.746094 Z M 184.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.769531 260.546875 C 237.769531 262.167969 235.339844 262.167969 235.339844 260.546875 C 235.339844 258.925781 237.769531 258.925781 237.769531 260.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.683594 384.097656 C 226.683594 385.71875 224.253906 385.71875 224.253906 384.097656 C 224.253906 382.476562 226.683594 382.476562 226.683594 384.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.410156 305.535156 C 141.410156 307.15625 138.980469 307.15625 138.980469 305.535156 C 138.980469 303.914062 141.410156 303.914062 141.410156 305.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.984375 119.800781 C 247.984375 121.421875 245.554688 121.421875 245.554688 119.800781 C 245.554688 118.179688 247.984375 118.179688 247.984375 119.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.164062 281.335938 C 320.164062 282.957031 317.734375 282.957031 317.734375 281.335938 C 317.734375 279.714844 320.164062 279.714844 320.164062 281.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.511719 258.464844 C 306.511719 260.085938 304.082031 260.085938 304.082031 258.464844 C 304.082031 256.847656 306.511719 256.847656 306.511719 258.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.441406 90.773438 C 153.441406 92.394531 151.011719 92.394531 151.011719 90.773438 C 151.011719 89.152344 153.441406 89.152344 153.441406 90.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.34375 250.050781 C 261.34375 251.667969 258.914062 251.667969 258.914062 250.050781 C 258.914062 248.429688 261.34375 248.429688 261.34375 250.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.371094 289.089844 C 241.371094 290.710938 238.941406 290.710938 238.941406 289.089844 C 238.941406 287.472656 241.371094 287.472656 241.371094 289.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.371094 206.527344 C 286.371094 208.144531 283.941406 208.144531 283.941406 206.527344 C 283.941406 204.90625 286.371094 204.90625 286.371094 206.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.84375 241.5 C 275.84375 243.121094 273.414062 243.121094 273.414062 241.5 C 273.414062 239.882812 275.84375 239.882812 275.84375 241.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.363281 223.226562 C 246.363281 224.84375 243.933594 224.84375 243.933594 223.226562 C 243.933594 221.605469 246.363281 221.605469 246.363281 223.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.277344 273.800781 C 259.277344 275.421875 256.847656 275.421875 256.847656 273.800781 C 256.847656 272.179688 259.277344 272.179688 259.277344 273.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.117188 183.351562 C 137.117188 184.972656 134.6875 184.972656 134.6875 183.351562 C 134.6875 181.730469 137.117188 181.730469 137.117188 183.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.007812 278.777344 C 295.007812 280.398438 292.578125 280.398438 292.578125 278.777344 C 292.578125 277.15625 295.007812 277.15625 295.007812 278.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.152344 373.707031 C 324.152344 375.324219 321.722656 375.324219 321.722656 373.707031 C 321.722656 372.085938 324.152344 372.085938 324.152344 373.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.972656 418.691406 L 164.605469 415.855469 L 161.335938 415.855469 Z M 162.972656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.21875 104.585938 C 273.21875 106.207031 270.789062 106.207031 270.789062 104.585938 C 270.789062 102.964844 273.21875 102.964844 273.21875 104.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.507812 70.910156 L 153.144531 73.746094 L 149.875 73.746094 Z M 151.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.300781 261.644531 C 271.300781 263.261719 268.871094 263.261719 268.871094 261.644531 C 268.871094 260.023438 271.300781 260.023438 271.300781 261.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.332031 195.105469 C 224.332031 196.726562 221.898438 196.726562 221.898438 195.105469 C 221.898438 193.488281 224.332031 193.488281 224.332031 195.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.894531 254.699219 C 249.894531 256.320312 247.460938 256.320312 247.460938 254.699219 C 247.460938 253.078125 249.894531 253.078125 249.894531 254.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.136719 214.105469 C 188.136719 215.726562 185.707031 215.726562 185.707031 214.105469 C 185.707031 212.488281 188.136719 212.488281 188.136719 214.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.863281 261.773438 C 214.863281 263.394531 212.433594 263.394531 212.433594 261.773438 C 212.433594 260.152344 214.863281 260.152344 214.863281 261.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.808594 222.910156 C 245.808594 224.527344 243.378906 224.527344 243.378906 222.910156 C 243.378906 221.289062 245.808594 221.289062 245.808594 222.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.433594 70.910156 L 197.070312 73.746094 L 193.796875 73.746094 Z M 195.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.921875 186.488281 C 242.921875 188.109375 240.492188 188.109375 240.492188 186.488281 C 240.492188 184.867188 242.921875 184.867188 242.921875 186.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.039062 70.910156 L 163.675781 73.746094 L 160.402344 73.746094 Z M 162.039062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.570312 185.210938 C 211.570312 186.832031 209.140625 186.832031 209.140625 185.210938 C 209.140625 183.59375 211.570312 183.59375 211.570312 185.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.085938 171.679688 C 210.085938 173.296875 207.65625 173.296875 207.65625 171.679688 C 207.65625 170.058594 210.085938 170.058594 210.085938 171.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.828125 253.542969 C 236.828125 255.160156 234.398438 255.160156 234.398438 253.542969 C 234.398438 251.921875 236.828125 251.921875 236.828125 253.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.519531 226.410156 C 265.519531 228.03125 263.089844 228.03125 263.089844 226.410156 C 263.089844 224.789062 265.519531 224.789062 265.519531 226.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.375 313.554688 C 196.375 315.175781 193.945312 315.175781 193.945312 313.554688 C 193.945312 311.933594 196.375 311.933594 196.375 313.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.398438 191.113281 C 297.398438 192.734375 294.96875 192.734375 294.96875 191.113281 C 294.96875 189.492188 297.398438 189.492188 297.398438 191.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.988281 183.292969 C 203.988281 184.914062 201.558594 184.914062 201.558594 183.292969 C 201.558594 181.671875 203.988281 181.671875 203.988281 183.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.074219 202.136719 C 236.074219 203.757812 233.644531 203.757812 233.644531 202.136719 C 233.644531 200.519531 236.074219 200.519531 236.074219 202.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.085938 219.5625 C 247.085938 221.179688 244.65625 221.179688 244.65625 219.5625 C 244.65625 217.941406 247.085938 217.941406 247.085938 219.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.664062 206.542969 C 225.664062 208.164062 223.230469 208.164062 223.230469 206.542969 C 223.230469 204.921875 225.664062 204.921875 225.664062 206.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.101562 262.195312 C 289.101562 263.816406 286.671875 263.816406 286.671875 262.195312 C 286.671875 260.574219 289.101562 260.574219 289.101562 262.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.859375 263.039062 C 244.859375 264.660156 242.429688 264.660156 242.429688 263.039062 C 242.429688 261.417969 244.859375 261.417969 244.859375 263.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.960938 316.164062 C 245.960938 317.78125 243.53125 317.78125 243.53125 316.164062 C 243.53125 314.542969 245.960938 314.542969 245.960938 316.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.765625 70.910156 L 216.402344 73.746094 L 213.128906 73.746094 Z M 214.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.234375 287.109375 C 249.234375 288.726562 246.804688 288.726562 246.804688 287.109375 C 246.804688 285.488281 249.234375 285.488281 249.234375 287.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.191406 70.910156 L 209.828125 73.746094 L 206.558594 73.746094 Z M 208.191406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.03125 220.667969 C 315.03125 222.289062 312.601562 222.289062 312.601562 220.667969 C 312.601562 219.046875 315.03125 219.046875 315.03125 220.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.546875 70.910156 L 266.183594 73.746094 L 262.910156 73.746094 Z M 264.546875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.808594 70.910156 L 250.445312 73.746094 L 247.171875 73.746094 Z M 248.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.574219 215.097656 C 163.574219 216.71875 161.144531 216.71875 161.144531 215.097656 C 161.144531 213.476562 163.574219 213.476562 163.574219 215.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.40625 299.128906 C 230.40625 300.75 227.976562 300.75 227.976562 299.128906 C 227.976562 297.507812 230.40625 297.507812 230.40625 299.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.078125 215.675781 C 307.078125 217.296875 304.648438 217.296875 304.648438 215.675781 C 304.648438 214.054688 307.078125 214.054688 307.078125 215.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.195312 130.433594 C 259.195312 132.054688 256.765625 132.054688 256.765625 130.433594 C 256.765625 128.8125 259.195312 128.8125 259.195312 130.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.410156 278.960938 C 255.410156 280.582031 252.980469 280.582031 252.980469 278.960938 C 252.980469 277.339844 255.410156 277.339844 255.410156 278.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.722656 336.722656 C 251.722656 338.34375 249.292969 338.34375 249.292969 336.722656 C 249.292969 335.101562 251.722656 335.101562 251.722656 336.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.269531 121.769531 C 273.269531 123.386719 270.839844 123.386719 270.839844 121.769531 C 270.839844 120.148438 273.269531 120.148438 273.269531 121.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.417969 318.976562 C 260.417969 320.59375 257.988281 320.59375 257.988281 318.976562 C 257.988281 317.355469 260.417969 317.355469 260.417969 318.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.183594 308.320312 C 218.183594 309.9375 215.753906 309.9375 215.753906 308.320312 C 215.753906 306.699219 218.183594 306.699219 218.183594 308.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.992188 201.164062 C 307.992188 202.785156 305.5625 202.785156 305.5625 201.164062 C 305.5625 199.542969 307.992188 199.542969 307.992188 201.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.644531 176.683594 C 307.644531 178.304688 305.214844 178.304688 305.214844 176.683594 C 305.214844 175.066406 307.644531 175.066406 307.644531 176.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.351562 303.171875 C 263.351562 304.792969 260.921875 304.792969 260.921875 303.171875 C 260.921875 301.554688 263.351562 301.554688 263.351562 303.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.261719 142.371094 C 263.261719 143.992188 260.832031 143.992188 260.832031 142.371094 C 260.832031 140.753906 263.261719 140.753906 263.261719 142.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.144531 234.40625 C 251.144531 236.023438 248.710938 236.023438 248.710938 234.40625 C 248.710938 232.785156 251.144531 232.785156 251.144531 234.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.511719 252.429688 C 226.511719 254.050781 224.078125 254.050781 224.078125 252.429688 C 224.078125 250.808594 226.511719 250.808594 226.511719 252.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 454.617188 293.742188 C 454.617188 295.363281 452.1875 295.363281 452.1875 293.742188 C 452.1875 292.125 454.617188 292.125 454.617188 293.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.8125 266.933594 C 264.8125 268.554688 262.378906 268.554688 262.378906 266.933594 C 262.378906 265.316406 264.8125 265.316406 264.8125 266.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.207031 267.210938 C 290.207031 268.832031 287.777344 268.832031 287.777344 267.210938 C 287.777344 265.589844 290.207031 265.589844 290.207031 267.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.328125 305.257812 C 198.328125 306.878906 195.898438 306.878906 195.898438 305.257812 C 195.898438 303.640625 198.328125 303.640625 198.328125 305.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.601562 70.910156 L 210.238281 73.746094 L 206.964844 73.746094 Z M 208.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.367188 282.316406 C 248.367188 283.933594 245.9375 283.933594 245.9375 282.316406 C 245.9375 280.695312 248.367188 280.695312 248.367188 282.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.035156 70.910156 L 130.671875 73.746094 L 127.398438 73.746094 Z M 129.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.851562 304.640625 C 275.851562 306.257812 273.421875 306.257812 273.421875 304.640625 C 273.421875 303.019531 275.851562 303.019531 275.851562 304.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.613281 70.910156 L 238.25 73.746094 L 234.976562 73.746094 Z M 236.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.941406 289.90625 C 334.941406 291.527344 332.511719 291.527344 332.511719 289.90625 C 332.511719 288.289062 334.941406 288.289062 334.941406 289.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.507812 247.039062 C 268.507812 248.660156 266.078125 248.660156 266.078125 247.039062 C 266.078125 245.417969 268.507812 245.417969 268.507812 247.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.683594 295.6875 C 243.683594 297.308594 241.253906 297.308594 241.253906 295.6875 C 241.253906 294.066406 243.683594 294.066406 243.683594 295.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.234375 285.636719 C 243.234375 287.253906 240.804688 287.253906 240.804688 285.636719 C 240.804688 284.015625 243.234375 284.015625 243.234375 285.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.046875 187.699219 C 249.046875 189.320312 246.617188 189.320312 246.617188 187.699219 C 246.617188 186.078125 249.046875 186.078125 249.046875 187.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.914062 320.988281 C 252.914062 322.609375 250.480469 322.609375 250.480469 320.988281 C 250.480469 319.367188 252.914062 319.367188 252.914062 320.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.449219 366.597656 C 294.449219 368.214844 292.019531 368.214844 292.019531 366.597656 C 292.019531 364.976562 294.449219 364.976562 294.449219 366.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.550781 70.910156 L 129.1875 73.746094 L 125.914062 73.746094 Z M 127.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.496094 295.003906 C 223.496094 296.625 221.066406 296.625 221.066406 295.003906 C 221.066406 293.382812 223.496094 293.382812 223.496094 295.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.101562 266.363281 C 239.101562 267.984375 236.671875 267.984375 236.671875 266.363281 C 236.671875 264.742188 239.101562 264.742188 239.101562 266.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.664062 166.265625 C 304.664062 167.886719 302.234375 167.886719 302.234375 166.265625 C 302.234375 164.648438 304.664062 164.648438 304.664062 166.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.320312 144.339844 C 174.320312 145.960938 171.890625 145.960938 171.890625 144.339844 C 171.890625 142.71875 174.320312 142.71875 174.320312 144.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.621094 279.472656 C 213.621094 281.089844 211.191406 281.089844 211.191406 279.472656 C 211.191406 277.851562 213.621094 277.851562 213.621094 279.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.554688 255.640625 C 188.554688 257.261719 186.125 257.261719 186.125 255.640625 C 186.125 254.019531 188.554688 254.019531 188.554688 255.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.902344 255.589844 C 308.902344 257.207031 306.472656 257.207031 306.472656 255.589844 C 306.472656 253.96875 308.902344 253.96875 308.902344 255.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.101562 178.28125 C 310.101562 179.902344 307.671875 179.902344 307.671875 178.28125 C 307.671875 176.664062 310.101562 176.664062 310.101562 178.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.9375 70.910156 L 187.574219 73.746094 L 184.300781 73.746094 Z M 185.9375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.503906 70.910156 L 307.140625 73.746094 L 303.867188 73.746094 Z M 305.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.671875 368.117188 C 266.671875 369.738281 264.242188 369.738281 264.242188 368.117188 C 264.242188 366.5 266.671875 366.5 266.671875 368.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.074219 199.941406 C 292.074219 201.558594 289.644531 201.558594 289.644531 199.941406 C 289.644531 198.320312 292.074219 198.320312 292.074219 199.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.90625 273.710938 C 283.90625 275.328125 281.476562 275.328125 281.476562 273.710938 C 281.476562 272.089844 283.90625 272.089844 283.90625 273.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.03125 187.707031 C 184.03125 189.328125 181.601562 189.328125 181.601562 187.707031 C 181.601562 186.085938 184.03125 186.085938 184.03125 187.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.738281 202.492188 C 276.738281 204.109375 274.308594 204.109375 274.308594 202.492188 C 274.308594 200.871094 276.738281 200.871094 276.738281 202.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.230469 70.910156 L 135.863281 73.746094 L 132.59375 73.746094 Z M 134.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.875 275.453125 C 277.875 277.074219 275.445312 277.074219 275.445312 275.453125 C 275.445312 273.835938 277.875 273.835938 277.875 275.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.460938 295.242188 C 241.460938 296.863281 239.03125 296.863281 239.03125 295.242188 C 239.03125 293.621094 241.460938 293.621094 241.460938 295.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.679688 296.054688 C 253.679688 297.671875 251.25 297.671875 251.25 296.054688 C 251.25 294.433594 253.679688 294.433594 253.679688 296.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.144531 229.265625 C 297.144531 230.886719 294.714844 230.886719 294.714844 229.265625 C 294.714844 227.644531 297.144531 227.644531 297.144531 229.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.136719 90.324219 C 285.136719 91.945312 282.707031 91.945312 282.707031 90.324219 C 282.707031 88.703125 285.136719 88.703125 285.136719 90.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.742188 70.910156 L 224.378906 73.746094 L 221.109375 73.746094 Z M 222.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.730469 91.296875 C 240.730469 92.917969 238.300781 92.917969 238.300781 91.296875 C 238.300781 89.675781 240.730469 89.675781 240.730469 91.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.480469 76.640625 C 230.480469 78.257812 228.046875 78.257812 228.046875 76.640625 C 228.046875 75.019531 230.480469 75.019531 230.480469 76.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.46875 241.707031 C 246.46875 243.328125 244.039062 243.328125 244.039062 241.707031 C 244.039062 240.089844 246.46875 240.089844 246.46875 241.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.5 262.710938 C 242.5 264.332031 240.070312 264.332031 240.070312 262.710938 C 240.070312 261.09375 242.5 261.09375 242.5 262.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.617188 247.355469 C 120.617188 248.976562 118.1875 248.976562 118.1875 247.355469 C 118.1875 245.738281 120.617188 245.738281 120.617188 247.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.28125 250.523438 C 297.28125 252.140625 294.851562 252.140625 294.851562 250.523438 C 294.851562 248.902344 297.28125 248.902344 297.28125 250.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.058594 288.550781 C 324.058594 290.171875 321.628906 290.171875 321.628906 288.550781 C 321.628906 286.933594 324.058594 286.933594 324.058594 288.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.84375 267.566406 C 235.84375 269.1875 233.414062 269.1875 233.414062 267.566406 C 233.414062 265.945312 235.84375 265.945312 235.84375 267.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.648438 304.605469 C 271.648438 306.222656 269.21875 306.222656 269.21875 304.605469 C 269.21875 302.984375 271.648438 302.984375 271.648438 304.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.289062 266.222656 C 288.289062 267.839844 285.859375 267.839844 285.859375 266.222656 C 285.859375 264.601562 288.289062 264.601562 288.289062 266.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.78125 185.980469 C 218.78125 187.601562 216.351562 187.601562 216.351562 185.980469 C 216.351562 184.359375 218.78125 184.359375 218.78125 185.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.929688 70.910156 L 144.566406 73.746094 L 141.296875 73.746094 Z M 142.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.238281 276.121094 C 298.238281 277.738281 295.808594 277.738281 295.808594 276.121094 C 295.808594 274.5 298.238281 274.5 298.238281 276.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.953125 309.65625 C 263.953125 311.277344 261.523438 311.277344 261.523438 309.65625 C 261.523438 308.039062 263.953125 308.039062 263.953125 309.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.703125 390.636719 C 182.703125 392.253906 180.273438 392.253906 180.273438 390.636719 C 180.273438 389.015625 182.703125 389.015625 182.703125 390.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.253906 220.425781 C 217.253906 222.046875 214.824219 222.046875 214.824219 220.425781 C 214.824219 218.804688 217.253906 218.804688 217.253906 220.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.175781 293.90625 C 216.175781 295.527344 213.746094 295.527344 213.746094 293.90625 C 213.746094 292.285156 216.175781 292.285156 216.175781 293.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.246094 297.042969 C 287.246094 298.664062 284.816406 298.664062 284.816406 297.042969 C 284.816406 295.421875 287.246094 295.421875 287.246094 297.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.75 360.996094 C 343.75 362.617188 341.320312 362.617188 341.320312 360.996094 C 341.320312 359.375 343.75 359.375 343.75 360.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.089844 232.582031 C 261.089844 234.203125 258.65625 234.203125 258.65625 232.582031 C 258.65625 230.964844 261.089844 230.964844 261.089844 232.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.078125 237.15625 C 275.078125 238.777344 272.648438 238.777344 272.648438 237.15625 C 272.648438 235.535156 275.078125 235.535156 275.078125 237.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.492188 178.472656 C 239.492188 180.09375 237.058594 180.09375 237.058594 178.472656 C 237.058594 176.855469 239.492188 176.855469 239.492188 178.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.964844 257.5 C 304.964844 259.117188 302.535156 259.117188 302.535156 257.5 C 302.535156 255.878906 304.964844 255.878906 304.964844 257.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.070312 241.15625 C 257.070312 242.777344 254.640625 242.777344 254.640625 241.15625 C 254.640625 239.535156 257.070312 239.535156 257.070312 241.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.425781 301.203125 C 288.425781 302.824219 285.996094 302.824219 285.996094 301.203125 C 285.996094 299.585938 288.425781 299.585938 288.425781 301.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.808594 305.148438 C 268.808594 306.765625 266.378906 306.765625 266.378906 305.148438 C 266.378906 303.527344 268.808594 303.527344 268.808594 305.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.320312 170.335938 C 194.320312 171.957031 191.890625 171.957031 191.890625 170.335938 C 191.890625 168.71875 194.320312 168.71875 194.320312 170.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.652344 245.785156 C 295.652344 247.40625 293.222656 247.40625 293.222656 245.785156 C 293.222656 244.164062 295.652344 244.164062 295.652344 245.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.050781 240 C 296.050781 241.621094 293.621094 241.621094 293.621094 240 C 293.621094 238.382812 296.050781 238.382812 296.050781 240 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.4375 418.691406 L 155.074219 415.855469 L 151.800781 415.855469 Z M 153.4375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.15625 70.910156 L 135.789062 73.746094 L 132.519531 73.746094 Z M 134.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.847656 70.910156 L 213.484375 73.746094 L 210.210938 73.746094 Z M 211.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.867188 70.910156 L 266.5 73.746094 L 263.230469 73.746094 Z M 264.867188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.753906 70.910156 L 164.390625 73.746094 L 161.117188 73.746094 Z M 162.753906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.984375 70.910156 L 156.621094 73.746094 L 153.347656 73.746094 Z M 154.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.734375 70.910156 L 211.371094 73.746094 L 208.097656 73.746094 Z M 209.734375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.285156 70.910156 L 238.921875 73.746094 L 235.648438 73.746094 Z M 237.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.101562 104.378906 C 225.101562 105.996094 222.671875 105.996094 222.671875 104.378906 C 222.671875 102.757812 225.101562 102.757812 225.101562 104.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.0625 218.636719 C 238.0625 220.253906 235.632812 220.253906 235.632812 218.636719 C 235.632812 217.015625 238.0625 217.015625 238.0625 218.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.722656 134.207031 C 284.722656 135.828125 282.292969 135.828125 282.292969 134.207031 C 282.292969 132.585938 284.722656 132.585938 284.722656 134.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.445312 243.28125 C 300.445312 244.902344 298.015625 244.902344 298.015625 243.28125 C 298.015625 241.660156 300.445312 241.660156 300.445312 243.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.882812 261.933594 C 321.882812 263.554688 319.453125 263.554688 319.453125 261.933594 C 319.453125 260.3125 321.882812 260.3125 321.882812 261.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.328125 306.480469 C 216.328125 308.101562 213.898438 308.101562 213.898438 306.480469 C 213.898438 304.863281 216.328125 304.863281 216.328125 306.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.316406 194.542969 C 336.316406 196.160156 333.886719 196.160156 333.886719 194.542969 C 333.886719 192.921875 336.316406 192.921875 336.316406 194.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.25 280.683594 C 154.25 282.300781 151.820312 282.300781 151.820312 280.683594 C 151.820312 279.0625 154.25 279.0625 154.25 280.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.628906 362.382812 C 327.628906 364 325.199219 364 325.199219 362.382812 C 325.199219 360.761719 327.628906 360.761719 327.628906 362.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.136719 295.0625 C 272.136719 296.683594 269.707031 296.683594 269.707031 295.0625 C 269.707031 293.441406 272.136719 293.441406 272.136719 295.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.9375 70.910156 L 225.574219 73.746094 L 222.300781 73.746094 Z M 223.9375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.492188 70.910156 L 271.128906 73.746094 L 267.855469 73.746094 Z M 269.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.421875 310.519531 C 259.421875 312.140625 256.992188 312.140625 256.992188 310.519531 C 256.992188 308.902344 259.421875 308.902344 259.421875 310.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.148438 328.46875 C 276.148438 330.089844 273.71875 330.089844 273.71875 328.46875 C 273.71875 326.847656 276.148438 326.847656 276.148438 328.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.839844 206.246094 C 216.839844 207.867188 214.410156 207.867188 214.410156 206.246094 C 214.410156 204.628906 216.839844 204.628906 216.839844 206.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.335938 177.757812 C 322.335938 179.378906 319.90625 179.378906 319.90625 177.757812 C 319.90625 176.140625 322.335938 176.140625 322.335938 177.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.910156 161.699219 C 277.910156 163.320312 275.480469 163.320312 275.480469 161.699219 C 275.480469 160.078125 277.910156 160.078125 277.910156 161.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.347656 418.691406 L 207.984375 415.855469 L 204.710938 415.855469 Z M 206.347656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.933594 237.1875 C 226.933594 238.804688 224.5 238.804688 224.5 237.1875 C 224.5 235.566406 226.933594 235.566406 226.933594 237.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.144531 279.632812 C 220.144531 281.253906 217.714844 281.253906 217.714844 279.632812 C 217.714844 278.011719 220.144531 278.011719 220.144531 279.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.753906 244.335938 C 249.753906 245.953125 247.324219 245.953125 247.324219 244.335938 C 247.324219 242.714844 249.753906 242.714844 249.753906 244.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.777344 282.441406 C 236.777344 284.0625 234.347656 284.0625 234.347656 282.441406 C 234.347656 280.820312 236.777344 280.820312 236.777344 282.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.351562 305.609375 C 248.351562 307.226562 245.921875 307.226562 245.921875 305.609375 C 245.921875 303.988281 248.351562 303.988281 248.351562 305.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.742188 298.0625 C 234.742188 299.683594 232.308594 299.683594 232.308594 298.0625 C 232.308594 296.441406 234.742188 296.441406 234.742188 298.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.859375 208.660156 C 166.859375 210.277344 164.429688 210.277344 164.429688 208.660156 C 164.429688 207.039062 166.859375 207.039062 166.859375 208.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.351562 70.910156 L 267.988281 73.746094 L 264.714844 73.746094 Z M 266.351562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.132812 70.910156 L 268.765625 73.746094 L 265.496094 73.746094 Z M 267.132812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.359375 70.910156 L 217.996094 73.746094 L 214.722656 73.746094 Z M 216.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.070312 157.605469 C 270.070312 159.222656 267.640625 159.222656 267.640625 157.605469 C 267.640625 155.984375 270.070312 155.984375 270.070312 157.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.054688 245.296875 C 326.054688 246.917969 323.625 246.917969 323.625 245.296875 C 323.625 243.675781 326.054688 243.675781 326.054688 245.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.878906 252.867188 C 306.878906 254.488281 304.449219 254.488281 304.449219 252.867188 C 304.449219 251.25 306.878906 251.25 306.878906 252.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.628906 260.128906 C 337.628906 261.746094 335.199219 261.746094 335.199219 260.128906 C 335.199219 258.507812 337.628906 258.507812 337.628906 260.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.289062 146.761719 C 305.289062 148.378906 302.859375 148.378906 302.859375 146.761719 C 302.859375 145.140625 305.289062 145.140625 305.289062 146.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.570312 281.867188 C 249.570312 283.488281 247.140625 283.488281 247.140625 281.867188 C 247.140625 280.246094 249.570312 280.246094 249.570312 281.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.851562 418.691406 L 315.484375 415.855469 L 312.214844 415.855469 Z M 313.851562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.792969 240.160156 C 307.792969 241.78125 305.363281 241.78125 305.363281 240.160156 C 305.363281 238.539062 307.792969 238.539062 307.792969 240.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.988281 272.222656 C 290.988281 273.84375 288.558594 273.84375 288.558594 272.222656 C 288.558594 270.601562 290.988281 270.601562 290.988281 272.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.699219 118.632812 C 218.699219 120.253906 216.269531 120.253906 216.269531 118.632812 C 216.269531 117.011719 218.699219 117.011719 218.699219 118.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.523438 302.257812 C 262.523438 303.878906 260.09375 303.878906 260.09375 302.257812 C 260.09375 300.636719 262.523438 300.636719 262.523438 302.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.152344 197.78125 C 243.152344 199.402344 240.722656 199.402344 240.722656 197.78125 C 240.722656 196.160156 243.152344 196.160156 243.152344 197.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.886719 418.691406 L 161.523438 415.855469 L 158.253906 415.855469 Z M 159.886719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.769531 234.105469 C 293.769531 235.726562 291.339844 235.726562 291.339844 234.105469 C 291.339844 232.484375 293.769531 232.484375 293.769531 234.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.613281 216.605469 C 304.613281 218.222656 302.183594 218.222656 302.183594 216.605469 C 302.183594 214.984375 304.613281 214.984375 304.613281 216.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.023438 70.910156 L 144.660156 73.746094 L 141.386719 73.746094 Z M 143.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.011719 164.296875 C 312.011719 165.914062 309.582031 165.914062 309.582031 164.296875 C 309.582031 162.675781 312.011719 162.675781 312.011719 164.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.148438 70.910156 L 264.78125 73.746094 L 261.511719 73.746094 Z M 263.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.101562 273.574219 C 295.101562 275.195312 292.671875 275.195312 292.671875 273.574219 C 292.671875 271.957031 295.101562 271.957031 295.101562 273.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.175781 247.492188 C 277.175781 249.109375 274.742188 249.109375 274.742188 247.492188 C 274.742188 245.871094 277.175781 245.871094 277.175781 247.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.339844 70.910156 L 144.976562 73.746094 L 141.707031 73.746094 Z M 143.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.722656 212.996094 C 242.722656 214.617188 240.292969 214.617188 240.292969 212.996094 C 240.292969 211.378906 242.722656 211.378906 242.722656 212.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.621094 250.230469 C 284.621094 251.851562 282.191406 251.851562 282.191406 250.230469 C 282.191406 248.613281 284.621094 248.613281 284.621094 250.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.898438 256.300781 C 280.898438 257.921875 278.46875 257.921875 278.46875 256.300781 C 278.46875 254.679688 280.898438 254.679688 280.898438 256.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.136719 272.019531 C 298.136719 273.640625 295.703125 273.640625 295.703125 272.019531 C 295.703125 270.402344 298.136719 270.402344 298.136719 272.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.847656 286.824219 C 207.847656 288.445312 205.417969 288.445312 205.417969 286.824219 C 205.417969 285.203125 207.847656 285.203125 207.847656 286.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.160156 204.292969 C 293.160156 205.914062 290.730469 205.914062 290.730469 204.292969 C 290.730469 202.671875 293.160156 202.671875 293.160156 204.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.296875 195.402344 C 266.296875 197.019531 263.863281 197.019531 263.863281 195.402344 C 263.863281 193.78125 266.296875 193.78125 266.296875 195.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.550781 190.90625 C 275.550781 192.523438 273.121094 192.523438 273.121094 190.90625 C 273.121094 189.285156 275.550781 189.285156 275.550781 190.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.867188 70.910156 L 152.503906 73.746094 L 149.230469 73.746094 Z M 150.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.214844 238.699219 C 193.214844 240.320312 190.785156 240.320312 190.785156 238.699219 C 190.785156 237.082031 193.214844 237.082031 193.214844 238.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.652344 175.039062 C 174.652344 176.660156 172.222656 176.660156 172.222656 175.039062 C 172.222656 173.417969 174.652344 173.417969 174.652344 175.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.078125 322.320312 C 209.078125 323.941406 206.648438 323.941406 206.648438 322.320312 C 206.648438 320.703125 209.078125 320.703125 209.078125 322.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223 70.910156 L 224.636719 73.746094 L 221.367188 73.746094 Z M 223 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.613281 168.039062 C 265.613281 169.660156 263.183594 169.660156 263.183594 168.039062 C 263.183594 166.421875 265.613281 166.421875 265.613281 168.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.589844 331.71875 C 113.589844 333.339844 111.160156 333.339844 111.160156 331.71875 C 111.160156 330.097656 113.589844 330.097656 113.589844 331.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.488281 374.757812 C 169.488281 376.378906 167.058594 376.378906 167.058594 374.757812 C 167.058594 373.140625 169.488281 373.140625 169.488281 374.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.585938 231.828125 C 298.585938 233.449219 296.15625 233.449219 296.15625 231.828125 C 296.15625 230.207031 298.585938 230.207031 298.585938 231.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.582031 275.636719 C 260.582031 277.257812 258.152344 277.257812 258.152344 275.636719 C 258.152344 274.019531 260.582031 274.019531 260.582031 275.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.003906 280.847656 C 266.003906 282.46875 263.574219 282.46875 263.574219 280.847656 C 263.574219 279.226562 266.003906 279.226562 266.003906 280.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.527344 70.910156 L 239.164062 73.746094 L 235.890625 73.746094 Z M 237.527344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.730469 335.175781 C 148.730469 336.796875 146.300781 336.796875 146.300781 335.175781 C 146.300781 333.554688 148.730469 333.554688 148.730469 335.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.066406 302.085938 C 273.066406 303.707031 270.636719 303.707031 270.636719 302.085938 C 270.636719 300.464844 273.066406 300.464844 273.066406 302.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.972656 169.320312 C 258.972656 170.9375 256.542969 170.9375 256.542969 169.320312 C 256.542969 167.699219 258.972656 167.699219 258.972656 169.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.523438 418.691406 L 151.160156 415.855469 L 147.886719 415.855469 Z M 149.523438 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.75 70.910156 L 187.386719 73.746094 L 184.113281 73.746094 Z M 185.75 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.859375 418.691406 L 328.496094 415.855469 L 325.222656 415.855469 Z M 326.859375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.652344 390.960938 C 309.652344 392.582031 307.21875 392.582031 307.21875 390.960938 C 307.21875 389.34375 309.652344 389.34375 309.652344 390.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.28125 225.550781 C 265.28125 227.171875 262.851562 227.171875 262.851562 225.550781 C 262.851562 223.933594 265.28125 223.933594 265.28125 225.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.148438 70.910156 L 179.785156 73.746094 L 176.511719 73.746094 Z M 178.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.386719 258.617188 C 195.386719 260.234375 192.957031 260.234375 192.957031 258.617188 C 192.957031 256.996094 195.386719 256.996094 195.386719 258.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.523438 273.914062 C 266.523438 275.535156 264.09375 275.535156 264.09375 273.914062 C 264.09375 272.292969 266.523438 272.292969 266.523438 273.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.488281 301.289062 C 289.488281 302.910156 287.054688 302.910156 287.054688 301.289062 C 287.054688 299.667969 289.488281 299.667969 289.488281 301.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.800781 252.0625 C 280.800781 253.679688 278.371094 253.679688 278.371094 252.0625 C 278.371094 250.441406 280.800781 250.441406 280.800781 252.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.507812 102.839844 C 179.507812 104.460938 177.078125 104.460938 177.078125 102.839844 C 177.078125 101.21875 179.507812 101.21875 179.507812 102.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.949219 296.554688 C 311.949219 298.171875 309.515625 298.171875 309.515625 296.554688 C 309.515625 294.933594 311.949219 294.933594 311.949219 296.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.347656 370.917969 C 288.347656 372.539062 285.917969 372.539062 285.917969 370.917969 C 285.917969 369.300781 288.347656 369.300781 288.347656 370.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.125 228.636719 C 269.125 230.257812 266.695312 230.257812 266.695312 228.636719 C 266.695312 227.015625 269.125 227.015625 269.125 228.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.765625 269.617188 C 251.765625 271.238281 249.335938 271.238281 249.335938 269.617188 C 249.335938 267.996094 251.765625 267.996094 251.765625 269.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.949219 296.070312 C 306.949219 297.691406 304.519531 297.691406 304.519531 296.070312 C 304.519531 294.453125 306.949219 294.453125 306.949219 296.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.617188 70.910156 L 233.253906 73.746094 L 229.980469 73.746094 Z M 231.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.457031 272.6875 C 294.457031 274.304688 292.023438 274.304688 292.023438 272.6875 C 292.023438 271.066406 294.457031 271.066406 294.457031 272.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.988281 274.445312 C 233.988281 276.066406 231.554688 276.066406 231.554688 274.445312 C 231.554688 272.824219 233.988281 272.824219 233.988281 274.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.574219 202.742188 C 250.574219 204.363281 248.144531 204.363281 248.144531 202.742188 C 248.144531 201.121094 250.574219 201.121094 250.574219 202.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.820312 258.777344 C 257.820312 260.394531 255.390625 260.394531 255.390625 258.777344 C 255.390625 257.15625 257.820312 257.15625 257.820312 258.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.613281 272.261719 C 216.613281 273.882812 214.183594 273.882812 214.183594 272.261719 C 214.183594 270.640625 216.613281 270.640625 216.613281 272.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.386719 341.054688 C 289.386719 342.675781 286.957031 342.675781 286.957031 341.054688 C 286.957031 339.433594 289.386719 339.433594 289.386719 341.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.464844 365.445312 C 293.464844 367.0625 291.035156 367.0625 291.035156 365.445312 C 291.035156 363.824219 293.464844 363.824219 293.464844 365.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.554688 389.605469 C 280.554688 391.226562 278.125 391.226562 278.125 389.605469 C 278.125 387.984375 280.554688 387.984375 280.554688 389.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.710938 366.324219 C 299.710938 367.945312 297.28125 367.945312 297.28125 366.324219 C 297.28125 364.703125 299.710938 364.703125 299.710938 366.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.585938 165.351562 C 174.585938 166.96875 172.15625 166.96875 172.15625 165.351562 C 172.15625 163.730469 174.585938 163.730469 174.585938 165.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.15625 70.910156 L 190.792969 73.746094 L 187.519531 73.746094 Z M 189.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.824219 325.453125 C 317.824219 327.074219 315.394531 327.074219 315.394531 325.453125 C 315.394531 323.832031 317.824219 323.832031 317.824219 325.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.109375 342.628906 C 238.109375 344.246094 235.679688 344.246094 235.679688 342.628906 C 235.679688 341.007812 238.109375 341.007812 238.109375 342.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.273438 332.570312 C 291.273438 334.1875 288.84375 334.1875 288.84375 332.570312 C 288.84375 330.949219 291.273438 330.949219 291.273438 332.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.433594 186.789062 C 240.433594 188.410156 238.003906 188.410156 238.003906 186.789062 C 238.003906 185.171875 240.433594 185.171875 240.433594 186.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.214844 70.910156 L 245.851562 73.746094 L 242.578125 73.746094 Z M 244.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.691406 206.5 C 251.691406 208.121094 249.261719 208.121094 249.261719 206.5 C 249.261719 204.878906 251.691406 204.878906 251.691406 206.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.558594 236.890625 C 223.558594 238.507812 221.128906 238.507812 221.128906 236.890625 C 221.128906 235.269531 223.558594 235.269531 223.558594 236.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.542969 70.910156 L 162.179688 73.746094 L 158.910156 73.746094 Z M 160.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.03125 265.0625 C 277.03125 266.683594 274.601562 266.683594 274.601562 265.0625 C 274.601562 263.445312 277.03125 263.445312 277.03125 265.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.40625 262.035156 C 260.40625 263.652344 257.976562 263.652344 257.976562 262.035156 C 257.976562 260.414062 260.40625 260.414062 260.40625 262.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.140625 237.8125 C 297.140625 239.433594 294.710938 239.433594 294.710938 237.8125 C 294.710938 236.195312 297.140625 236.195312 297.140625 237.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.402344 70.910156 L 205.039062 73.746094 L 201.765625 73.746094 Z M 203.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.453125 379.894531 C 265.453125 381.515625 263.019531 381.515625 263.019531 379.894531 C 263.019531 378.273438 265.453125 378.273438 265.453125 379.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.898438 418.691406 L 191.535156 415.855469 L 188.261719 415.855469 Z M 189.898438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.886719 396.320312 C 253.886719 397.941406 251.453125 397.941406 251.453125 396.320312 C 251.453125 394.699219 253.886719 394.699219 253.886719 396.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.242188 108.585938 C 194.242188 110.207031 191.8125 110.207031 191.8125 108.585938 C 191.8125 106.964844 194.242188 106.964844 194.242188 108.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.875 141.9375 C 227.875 143.554688 225.441406 143.554688 225.441406 141.9375 C 225.441406 140.316406 227.875 140.316406 227.875 141.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.164062 120.644531 C 174.164062 122.265625 171.734375 122.265625 171.734375 120.644531 C 171.734375 119.023438 174.164062 119.023438 174.164062 120.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.175781 350.691406 C 129.175781 352.308594 126.742188 352.308594 126.742188 350.691406 C 126.742188 349.070312 129.175781 349.070312 129.175781 350.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.714844 220.964844 C 260.714844 222.582031 258.285156 222.582031 258.285156 220.964844 C 258.285156 219.34375 260.714844 219.34375 260.714844 220.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.601562 166.339844 C 219.601562 167.960938 217.171875 167.960938 217.171875 166.339844 C 217.171875 164.722656 219.601562 164.722656 219.601562 166.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.96875 93.039062 C 166.96875 94.660156 164.539062 94.660156 164.539062 93.039062 C 164.539062 91.417969 166.96875 91.417969 166.96875 93.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.023438 317.347656 C 247.023438 318.96875 244.59375 318.96875 244.59375 317.347656 C 244.59375 315.730469 247.023438 315.730469 247.023438 317.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.808594 300.785156 C 240.808594 302.40625 238.378906 302.40625 238.378906 300.785156 C 238.378906 299.164062 240.808594 299.164062 240.808594 300.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.121094 418.691406 L 262.757812 415.855469 L 259.484375 415.855469 Z M 261.121094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.472656 267.921875 C 300.472656 269.542969 298.042969 269.542969 298.042969 267.921875 C 298.042969 266.300781 300.472656 266.300781 300.472656 267.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.609375 245.691406 C 317.609375 247.3125 315.179688 247.3125 315.179688 245.691406 C 315.179688 244.070312 317.609375 244.070312 317.609375 245.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.78125 70.910156 L 153.417969 73.746094 L 150.144531 73.746094 Z M 151.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.234375 317.5 C 246.234375 319.121094 243.804688 319.121094 243.804688 317.5 C 243.804688 315.878906 246.234375 315.878906 246.234375 317.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.710938 275.582031 C 322.710938 277.203125 320.28125 277.203125 320.28125 275.582031 C 320.28125 273.964844 322.710938 273.964844 322.710938 275.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.972656 387.367188 C 245.972656 388.984375 243.542969 388.984375 243.542969 387.367188 C 243.542969 385.746094 245.972656 385.746094 245.972656 387.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.617188 105.480469 C 268.617188 107.101562 266.1875 107.101562 266.1875 105.480469 C 266.1875 103.859375 268.617188 103.859375 268.617188 105.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.585938 335.289062 C 245.585938 336.910156 243.15625 336.910156 243.15625 335.289062 C 243.15625 333.671875 245.585938 333.671875 245.585938 335.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.824219 170.058594 C 309.824219 171.679688 307.394531 171.679688 307.394531 170.058594 C 307.394531 168.441406 309.824219 168.441406 309.824219 170.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.179688 132.765625 C 216.179688 134.386719 213.75 134.386719 213.75 132.765625 C 213.75 131.144531 216.179688 131.144531 216.179688 132.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 412.335938 325.710938 C 412.335938 327.332031 409.90625 327.332031 409.90625 325.710938 C 409.90625 324.089844 412.335938 324.089844 412.335938 325.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.125 418.691406 L 223.761719 415.855469 L 220.488281 415.855469 Z M 222.125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.824219 70.910156 L 149.460938 73.746094 L 146.1875 73.746094 Z M 147.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.230469 215.582031 C 291.230469 217.203125 288.800781 217.203125 288.800781 215.582031 C 288.800781 213.960938 291.230469 213.960938 291.230469 215.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.382812 251.84375 C 232.382812 253.464844 229.953125 253.464844 229.953125 251.84375 C 229.953125 250.226562 232.382812 250.226562 232.382812 251.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.390625 259.292969 C 198.390625 260.910156 195.960938 260.910156 195.960938 259.292969 C 195.960938 257.671875 198.390625 257.671875 198.390625 259.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.769531 247.921875 C 179.769531 249.539062 177.339844 249.539062 177.339844 247.921875 C 177.339844 246.300781 179.769531 246.300781 179.769531 247.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.125 167.246094 C 263.125 168.867188 260.695312 168.867188 260.695312 167.246094 C 260.695312 165.625 263.125 165.625 263.125 167.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.910156 195.855469 C 271.910156 197.476562 269.480469 197.476562 269.480469 195.855469 C 269.480469 194.234375 271.910156 194.234375 271.910156 195.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.152344 70.910156 L 195.785156 73.746094 L 192.515625 73.746094 Z M 194.152344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.796875 302.449219 C 268.796875 304.070312 266.367188 304.070312 266.367188 302.449219 C 266.367188 300.828125 268.796875 300.828125 268.796875 302.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 181.9375 77.679688 C 181.9375 79.300781 179.507812 79.300781 179.507812 77.679688 C 179.507812 76.058594 181.9375 76.058594 181.9375 77.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.546875 247.425781 C 118.546875 249.046875 116.117188 249.046875 116.117188 247.425781 C 116.117188 245.804688 118.546875 245.804688 118.546875 247.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.984375 70.910156 L 259.621094 73.746094 L 256.347656 73.746094 Z M 257.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.984375 70.910156 L 144.621094 73.746094 L 141.347656 73.746094 Z M 142.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.253906 270.644531 C 252.253906 272.265625 249.824219 272.265625 249.824219 270.644531 C 249.824219 269.027344 252.253906 269.027344 252.253906 270.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.847656 145.484375 C 268.847656 147.105469 266.417969 147.105469 266.417969 145.484375 C 266.417969 143.867188 268.847656 143.867188 268.847656 145.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.898438 86.53125 C 251.898438 88.152344 249.46875 88.152344 249.46875 86.53125 C 249.46875 84.910156 251.898438 84.910156 251.898438 86.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.535156 112.75 C 309.535156 114.371094 307.105469 114.371094 307.105469 112.75 C 307.105469 111.128906 309.535156 111.128906 309.535156 112.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.5625 229.679688 C 220.5625 231.300781 218.132812 231.300781 218.132812 229.679688 C 218.132812 228.058594 220.5625 228.058594 220.5625 229.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.144531 143.40625 C 219.144531 145.027344 216.714844 145.027344 216.714844 143.40625 C 216.714844 141.789062 219.144531 141.789062 219.144531 143.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.390625 338.410156 C 182.390625 340.027344 179.960938 340.027344 179.960938 338.410156 C 179.960938 336.789062 182.390625 336.789062 182.390625 338.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.296875 290.296875 C 211.296875 291.914062 208.867188 291.914062 208.867188 290.296875 C 208.867188 288.675781 211.296875 288.675781 211.296875 290.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.339844 264.832031 C 218.339844 266.453125 215.910156 266.453125 215.910156 264.832031 C 215.910156 263.214844 218.339844 263.214844 218.339844 264.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.59375 225.972656 C 328.59375 227.59375 326.160156 227.59375 326.160156 225.972656 C 326.160156 224.351562 328.59375 224.351562 328.59375 225.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.773438 200.535156 C 233.773438 202.15625 231.339844 202.15625 231.339844 200.535156 C 231.339844 198.914062 233.773438 198.914062 233.773438 200.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.421875 275.648438 C 275.421875 277.269531 272.992188 277.269531 272.992188 275.648438 C 272.992188 274.027344 275.421875 274.027344 275.421875 275.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.011719 222.722656 C 298.011719 224.339844 295.582031 224.339844 295.582031 222.722656 C 295.582031 221.101562 298.011719 221.101562 298.011719 222.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.339844 240.980469 C 270.339844 242.601562 267.910156 242.601562 267.910156 240.980469 C 267.910156 239.363281 270.339844 239.363281 270.339844 240.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.996094 307.625 C 285.996094 309.246094 283.566406 309.246094 283.566406 307.625 C 283.566406 306.003906 285.996094 306.003906 285.996094 307.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.792969 393.355469 C 274.792969 394.972656 272.363281 394.972656 272.363281 393.355469 C 272.363281 391.734375 274.792969 391.734375 274.792969 393.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.808594 226.644531 C 322.808594 228.265625 320.375 228.265625 320.375 226.644531 C 320.375 225.023438 322.808594 225.023438 322.808594 226.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.855469 182.394531 C 286.855469 184.015625 284.425781 184.015625 284.425781 182.394531 C 284.425781 180.777344 286.855469 180.777344 286.855469 182.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.972656 131.535156 C 289.972656 133.152344 287.542969 133.152344 287.542969 131.535156 C 287.542969 129.914062 289.972656 129.914062 289.972656 131.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.285156 256.804688 C 246.285156 258.425781 243.855469 258.425781 243.855469 256.804688 C 243.855469 255.1875 246.285156 255.1875 246.285156 256.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.242188 253.117188 C 255.242188 254.734375 252.8125 254.734375 252.8125 253.117188 C 252.8125 251.496094 255.242188 251.496094 255.242188 253.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.671875 309.03125 C 248.671875 310.652344 246.242188 310.652344 246.242188 309.03125 C 246.242188 307.410156 248.671875 307.410156 248.671875 309.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.261719 224.011719 C 270.261719 225.632812 267.832031 225.632812 267.832031 224.011719 C 267.832031 222.394531 270.261719 222.394531 270.261719 224.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.660156 70.910156 L 318.296875 73.746094 L 315.023438 73.746094 Z M 316.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.550781 187.515625 C 235.550781 189.136719 233.121094 189.136719 233.121094 187.515625 C 233.121094 185.898438 235.550781 185.898438 235.550781 187.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.441406 196.40625 C 282.441406 198.023438 280.011719 198.023438 280.011719 196.40625 C 280.011719 194.785156 282.441406 194.785156 282.441406 196.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.773438 377.03125 C 166.773438 378.652344 164.34375 378.652344 164.34375 377.03125 C 164.34375 375.410156 166.773438 375.410156 166.773438 377.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.898438 196.738281 C 242.898438 198.359375 240.46875 198.359375 240.46875 196.738281 C 240.46875 195.121094 242.898438 195.121094 242.898438 196.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.847656 214.648438 C 178.847656 216.265625 176.417969 216.265625 176.417969 214.648438 C 176.417969 213.027344 178.847656 213.027344 178.847656 214.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.617188 81.816406 C 184.617188 83.4375 182.1875 83.4375 182.1875 81.816406 C 182.1875 80.195312 184.617188 80.195312 184.617188 81.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.492188 255.027344 C 291.492188 256.648438 289.0625 256.648438 289.0625 255.027344 C 289.0625 253.40625 291.492188 253.40625 291.492188 255.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.578125 382.917969 C 247.578125 384.539062 245.148438 384.539062 245.148438 382.917969 C 245.148438 381.300781 247.578125 381.300781 247.578125 382.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.96875 70.910156 L 255.605469 73.746094 L 252.332031 73.746094 Z M 253.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.753906 411.605469 C 222.753906 413.226562 220.324219 413.226562 220.324219 411.605469 C 220.324219 409.984375 222.753906 409.984375 222.753906 411.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.546875 293.421875 C 285.546875 295.042969 283.117188 295.042969 283.117188 293.421875 C 283.117188 291.804688 285.546875 291.804688 285.546875 293.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.339844 418.691406 L 205.976562 415.855469 L 202.707031 415.855469 Z M 204.339844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.339844 164.234375 C 297.339844 165.855469 294.910156 165.855469 294.910156 164.234375 C 294.910156 162.613281 297.339844 162.613281 297.339844 164.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.21875 316.054688 C 266.21875 317.671875 263.789062 317.671875 263.789062 316.054688 C 263.789062 314.433594 266.21875 314.433594 266.21875 316.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.175781 205.097656 C 230.175781 206.71875 227.746094 206.71875 227.746094 205.097656 C 227.746094 203.480469 230.175781 203.480469 230.175781 205.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.519531 204.6875 C 256.519531 206.304688 254.089844 206.304688 254.089844 204.6875 C 254.089844 203.066406 256.519531 203.066406 256.519531 204.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.84375 212.59375 C 241.84375 214.210938 239.414062 214.210938 239.414062 212.59375 C 239.414062 210.972656 241.84375 210.972656 241.84375 212.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.800781 260.226562 C 254.800781 261.847656 252.367188 261.847656 252.367188 260.226562 C 252.367188 258.605469 254.800781 258.605469 254.800781 260.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.386719 263.207031 C 197.386719 264.828125 194.957031 264.828125 194.957031 263.207031 C 194.957031 261.585938 197.386719 261.585938 197.386719 263.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.703125 293.03125 C 264.703125 294.652344 262.273438 294.652344 262.273438 293.03125 C 262.273438 291.414062 264.703125 291.414062 264.703125 293.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 383.085938 100.292969 C 383.085938 101.910156 380.65625 101.910156 380.65625 100.292969 C 380.65625 98.671875 383.085938 98.671875 383.085938 100.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.164062 280.015625 C 222.164062 281.632812 219.734375 281.632812 219.734375 280.015625 C 219.734375 278.394531 222.164062 278.394531 222.164062 280.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.152344 205.328125 C 164.152344 206.945312 161.722656 206.945312 161.722656 205.328125 C 161.722656 203.707031 164.152344 203.707031 164.152344 205.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.789062 243.949219 C 271.789062 245.566406 269.359375 245.566406 269.359375 243.949219 C 269.359375 242.328125 271.789062 242.328125 271.789062 243.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.183594 70.910156 L 161.820312 73.746094 L 158.546875 73.746094 Z M 160.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.90625 146.019531 C 212.90625 147.640625 210.476562 147.640625 210.476562 146.019531 C 210.476562 144.402344 212.90625 144.402344 212.90625 146.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.023438 286.4375 C 305.023438 288.054688 302.59375 288.054688 302.59375 286.4375 C 302.59375 284.816406 305.023438 284.816406 305.023438 286.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.664062 70.910156 L 214.300781 73.746094 L 211.027344 73.746094 Z M 212.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.902344 208.210938 C 267.902344 209.828125 265.472656 209.828125 265.472656 208.210938 C 265.472656 206.589844 267.902344 206.589844 267.902344 208.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.539062 214.25 C 328.539062 215.871094 326.105469 215.871094 326.105469 214.25 C 326.105469 212.632812 328.539062 212.632812 328.539062 214.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.660156 79.574219 C 215.660156 81.195312 213.226562 81.195312 213.226562 79.574219 C 213.226562 77.953125 215.660156 77.953125 215.660156 79.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.839844 268.066406 C 265.839844 269.6875 263.410156 269.6875 263.410156 268.066406 C 263.410156 266.445312 265.839844 266.445312 265.839844 268.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.90625 295.234375 C 235.90625 296.851562 233.472656 296.851562 233.472656 295.234375 C 233.472656 293.613281 235.90625 293.613281 235.90625 295.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.867188 70.910156 L 230.503906 73.746094 L 227.234375 73.746094 Z M 228.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.871094 169.867188 C 223.871094 171.484375 221.441406 171.484375 221.441406 169.867188 C 221.441406 168.246094 223.871094 168.246094 223.871094 169.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.71875 70.910156 L 242.355469 73.746094 L 239.082031 73.746094 Z M 240.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.601562 323.023438 C 269.601562 324.644531 267.171875 324.644531 267.171875 323.023438 C 267.171875 321.40625 269.601562 321.40625 269.601562 323.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.703125 272.921875 C 254.703125 274.539062 252.273438 274.539062 252.273438 272.921875 C 252.273438 271.300781 254.703125 271.300781 254.703125 272.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.574219 320.445312 C 284.574219 322.066406 282.144531 322.066406 282.144531 320.445312 C 282.144531 318.824219 284.574219 318.824219 284.574219 320.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.585938 301.597656 C 269.585938 303.21875 267.15625 303.21875 267.15625 301.597656 C 267.15625 299.980469 269.585938 299.980469 269.585938 301.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.367188 116.292969 C 146.367188 117.910156 143.9375 117.910156 143.9375 116.292969 C 143.9375 114.671875 146.367188 114.671875 146.367188 116.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.15625 418.691406 L 279.792969 415.855469 L 276.519531 415.855469 Z M 278.15625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.800781 70.910156 L 132.4375 73.746094 L 129.164062 73.746094 Z M 130.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.078125 197.90625 C 255.078125 199.527344 252.648438 199.527344 252.648438 197.90625 C 252.648438 196.285156 255.078125 196.285156 255.078125 197.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.046875 279.355469 C 169.046875 280.976562 166.613281 280.976562 166.613281 279.355469 C 166.613281 277.734375 169.046875 277.734375 169.046875 279.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.847656 206.304688 C 220.847656 207.925781 218.417969 207.925781 218.417969 206.304688 C 218.417969 204.683594 220.847656 204.683594 220.847656 206.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.300781 70.910156 L 128.9375 73.746094 L 125.664062 73.746094 Z M 127.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.734375 155.464844 C 263.734375 157.085938 261.304688 157.085938 261.304688 155.464844 C 261.304688 153.84375 263.734375 153.84375 263.734375 155.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.628906 330.042969 C 321.628906 331.664062 319.199219 331.664062 319.199219 330.042969 C 319.199219 328.421875 321.628906 328.421875 321.628906 330.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.792969 196.027344 C 291.792969 197.648438 289.363281 197.648438 289.363281 196.027344 C 289.363281 194.40625 291.792969 194.40625 291.792969 196.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.957031 274.671875 C 269.957031 276.292969 267.523438 276.292969 267.523438 274.671875 C 267.523438 273.050781 269.957031 273.050781 269.957031 274.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.445312 229.933594 C 334.445312 231.554688 332.015625 231.554688 332.015625 229.933594 C 332.015625 228.316406 334.445312 228.316406 334.445312 229.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.160156 249.820312 C 265.160156 251.441406 262.730469 251.441406 262.730469 249.820312 C 262.730469 248.203125 265.160156 248.203125 265.160156 249.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.3125 224.214844 C 232.3125 225.835938 229.882812 225.835938 229.882812 224.214844 C 229.882812 222.59375 232.3125 222.59375 232.3125 224.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.332031 271.007812 C 235.332031 272.625 232.902344 272.625 232.902344 271.007812 C 232.902344 269.386719 235.332031 269.386719 235.332031 271.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.4375 114.320312 C 305.4375 115.941406 303.007812 115.941406 303.007812 114.320312 C 303.007812 112.699219 305.4375 112.699219 305.4375 114.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.445312 300.046875 C 288.445312 301.667969 286.015625 301.667969 286.015625 300.046875 C 286.015625 298.425781 288.445312 298.425781 288.445312 300.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.902344 262.605469 C 286.902344 264.226562 284.472656 264.226562 284.472656 262.605469 C 284.472656 260.984375 286.902344 260.984375 286.902344 262.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.710938 236.265625 C 227.710938 237.886719 225.28125 237.886719 225.28125 236.265625 C 225.28125 234.648438 227.710938 234.648438 227.710938 236.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 389.300781 114.78125 C 389.300781 116.398438 386.871094 116.398438 386.871094 114.78125 C 386.871094 113.160156 389.300781 113.160156 389.300781 114.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.640625 196.15625 C 278.640625 197.777344 276.210938 197.777344 276.210938 196.15625 C 276.210938 194.535156 278.640625 194.535156 278.640625 196.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.289062 70.910156 L 199.925781 73.746094 L 196.652344 73.746094 Z M 198.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.914062 192.585938 C 170.914062 194.207031 168.484375 194.207031 168.484375 192.585938 C 168.484375 190.964844 170.914062 190.964844 170.914062 192.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.34375 288.757812 C 269.34375 290.375 266.914062 290.375 266.914062 288.757812 C 266.914062 287.136719 269.34375 287.136719 269.34375 288.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.714844 70.910156 L 182.351562 73.746094 L 179.082031 73.746094 Z M 180.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.90625 81.472656 C 188.90625 83.09375 186.476562 83.09375 186.476562 81.472656 C 186.476562 79.855469 188.90625 79.855469 188.90625 81.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.851562 95.730469 C 212.851562 97.351562 210.421875 97.351562 210.421875 95.730469 C 210.421875 94.109375 212.851562 94.109375 212.851562 95.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.296875 265.757812 C 256.296875 267.378906 253.867188 267.378906 253.867188 265.757812 C 253.867188 264.136719 256.296875 264.136719 256.296875 265.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.203125 195.777344 C 245.203125 197.398438 242.773438 197.398438 242.773438 195.777344 C 242.773438 194.15625 245.203125 194.15625 245.203125 195.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.164062 244.609375 C 285.164062 246.230469 282.734375 246.230469 282.734375 244.609375 C 282.734375 242.988281 285.164062 242.988281 285.164062 244.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.632812 70.910156 L 332.269531 73.746094 L 328.996094 73.746094 Z M 330.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.878906 70.910156 L 322.515625 73.746094 L 319.242188 73.746094 Z M 320.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.132812 248.371094 C 281.132812 249.992188 278.703125 249.992188 278.703125 248.371094 C 278.703125 246.753906 281.132812 246.753906 281.132812 248.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.8125 339.871094 C 274.8125 341.492188 272.382812 341.492188 272.382812 339.871094 C 272.382812 338.253906 274.8125 338.253906 274.8125 339.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.441406 216.972656 C 294.441406 218.59375 292.011719 218.59375 292.011719 216.972656 C 292.011719 215.351562 294.441406 215.351562 294.441406 216.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.601562 123.9375 C 256.601562 125.554688 254.171875 125.554688 254.171875 123.9375 C 254.171875 122.316406 256.601562 122.316406 256.601562 123.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.828125 299.839844 C 144.828125 301.460938 142.398438 301.460938 142.398438 299.839844 C 142.398438 298.21875 144.828125 298.21875 144.828125 299.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.699219 91.742188 C 288.699219 93.363281 286.269531 93.363281 286.269531 91.742188 C 286.269531 90.125 288.699219 90.125 288.699219 91.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.808594 253.871094 C 262.808594 255.492188 260.375 255.492188 260.375 253.871094 C 260.375 252.25 262.808594 252.25 262.808594 253.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.617188 279.183594 C 216.617188 280.804688 214.1875 280.804688 214.1875 279.183594 C 214.1875 277.566406 216.617188 277.566406 216.617188 279.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.605469 157.542969 C 286.605469 159.164062 284.175781 159.164062 284.175781 157.542969 C 284.175781 155.921875 286.605469 155.921875 286.605469 157.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.542969 219.613281 C 284.542969 221.234375 282.113281 221.234375 282.113281 219.613281 C 282.113281 217.992188 284.542969 217.992188 284.542969 219.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.273438 271.9375 C 244.273438 273.554688 241.839844 273.554688 241.839844 271.9375 C 241.839844 270.316406 244.273438 270.316406 244.273438 271.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.21875 208.355469 C 126.21875 209.972656 123.789062 209.972656 123.789062 208.355469 C 123.789062 206.734375 126.21875 206.734375 126.21875 208.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.460938 218.214844 C 206.460938 219.835938 204.03125 219.835938 204.03125 218.214844 C 204.03125 216.59375 206.460938 216.59375 206.460938 218.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.851562 193.839844 C 281.851562 195.460938 279.421875 195.460938 279.421875 193.839844 C 279.421875 192.21875 281.851562 192.21875 281.851562 193.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.527344 324.785156 C 232.527344 326.402344 230.097656 326.402344 230.097656 324.785156 C 230.097656 323.164062 232.527344 323.164062 232.527344 324.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.144531 214.285156 C 240.144531 215.902344 237.714844 215.902344 237.714844 214.285156 C 237.714844 212.664062 240.144531 212.664062 240.144531 214.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.996094 189.148438 C 220.996094 190.769531 218.566406 190.769531 218.566406 189.148438 C 218.566406 187.527344 220.996094 187.527344 220.996094 189.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.679688 70.910156 L 257.316406 73.746094 L 254.042969 73.746094 Z M 255.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 373.765625 97.582031 C 373.765625 99.203125 371.335938 99.203125 371.335938 97.582031 C 371.335938 95.960938 373.765625 95.960938 373.765625 97.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.097656 235.933594 C 300.097656 237.550781 297.667969 237.550781 297.667969 235.933594 C 297.667969 234.3125 300.097656 234.3125 300.097656 235.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.527344 74.625 C 292.527344 76.242188 290.097656 76.242188 290.097656 74.625 C 290.097656 73.003906 292.527344 73.003906 292.527344 74.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.554688 98.730469 C 217.554688 100.347656 215.125 100.347656 215.125 98.730469 C 215.125 97.109375 217.554688 97.109375 217.554688 98.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.871094 272.183594 C 251.871094 273.804688 249.441406 273.804688 249.441406 272.183594 C 249.441406 270.566406 251.871094 270.566406 251.871094 272.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.882812 350.011719 C 130.882812 351.632812 128.453125 351.632812 128.453125 350.011719 C 128.453125 348.390625 130.882812 348.390625 130.882812 350.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.894531 70.910156 L 270.53125 73.746094 L 267.257812 73.746094 Z M 268.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.003906 280.96875 C 261.003906 282.585938 258.574219 282.585938 258.574219 280.96875 C 258.574219 279.347656 261.003906 279.347656 261.003906 280.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.089844 143.214844 C 262.089844 144.835938 259.660156 144.835938 259.660156 143.214844 C 259.660156 141.59375 262.089844 141.59375 262.089844 143.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.203125 112.496094 C 311.203125 114.117188 308.773438 114.117188 308.773438 112.496094 C 308.773438 110.875 311.203125 110.875 311.203125 112.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.496094 359.6875 C 187.496094 361.308594 185.066406 361.308594 185.066406 359.6875 C 185.066406 358.070312 187.496094 358.070312 187.496094 359.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.257812 70.910156 L 265.894531 73.746094 L 262.621094 73.746094 Z M 264.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.59375 261.351562 C 296.59375 262.972656 294.164062 262.972656 294.164062 261.351562 C 294.164062 259.730469 296.59375 259.730469 296.59375 261.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.863281 70.910156 L 199.496094 73.746094 L 196.226562 73.746094 Z M 197.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.691406 224.988281 C 280.691406 226.609375 278.261719 226.609375 278.261719 224.988281 C 278.261719 223.367188 280.691406 223.367188 280.691406 224.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.863281 70.910156 L 309.5 73.746094 L 306.226562 73.746094 Z M 307.863281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.289062 70.910156 L 190.925781 73.746094 L 187.652344 73.746094 Z M 189.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.117188 251.6875 C 278.117188 253.304688 275.6875 253.304688 275.6875 251.6875 C 275.6875 250.066406 278.117188 250.066406 278.117188 251.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.160156 70.910156 L 192.796875 73.746094 L 189.523438 73.746094 Z M 191.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.75 264.640625 C 286.75 266.261719 284.320312 266.261719 284.320312 264.640625 C 284.320312 263.023438 286.75 263.023438 286.75 264.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.710938 264.207031 C 276.710938 265.828125 274.28125 265.828125 274.28125 264.207031 C 274.28125 262.585938 276.710938 262.585938 276.710938 264.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.148438 169.136719 C 216.148438 170.757812 213.71875 170.757812 213.71875 169.136719 C 213.71875 167.519531 216.148438 167.519531 216.148438 169.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.328125 260.722656 C 249.328125 262.339844 246.898438 262.339844 246.898438 260.722656 C 246.898438 259.101562 249.328125 259.101562 249.328125 260.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.449219 383.699219 C 224.449219 385.320312 222.015625 385.320312 222.015625 383.699219 C 222.015625 382.082031 224.449219 382.082031 224.449219 383.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.074219 70.910156 L 282.710938 73.746094 L 279.4375 73.746094 Z M 281.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.628906 268.886719 C 273.628906 270.507812 271.195312 270.507812 271.195312 268.886719 C 271.195312 267.265625 273.628906 267.265625 273.628906 268.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.269531 229.40625 C 275.269531 231.027344 272.839844 231.027344 272.839844 229.40625 C 272.839844 227.785156 275.269531 227.785156 275.269531 229.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.636719 352.238281 C 271.636719 353.855469 269.207031 353.855469 269.207031 352.238281 C 269.207031 350.617188 271.636719 350.617188 271.636719 352.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.070312 70.910156 L 168.707031 73.746094 L 165.4375 73.746094 Z M 167.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.070312 191.230469 C 340.070312 192.847656 337.640625 192.847656 337.640625 191.230469 C 337.640625 189.609375 340.070312 189.609375 340.070312 191.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.300781 418.691406 L 268.933594 415.855469 L 265.664062 415.855469 Z M 267.300781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.042969 233.8125 C 302.042969 235.429688 299.613281 235.429688 299.613281 233.8125 C 299.613281 232.191406 302.042969 232.191406 302.042969 233.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.042969 249.023438 C 167.042969 250.644531 164.613281 250.644531 164.613281 249.023438 C 164.613281 247.402344 167.042969 247.402344 167.042969 249.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.464844 248.75 C 260.464844 250.371094 258.035156 250.371094 258.035156 248.75 C 258.035156 247.132812 260.464844 247.132812 260.464844 248.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.585938 70.910156 L 168.21875 73.746094 L 164.949219 73.746094 Z M 166.585938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.21875 70.910156 L 252.855469 73.746094 L 249.582031 73.746094 Z M 251.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.167969 115.332031 C 195.167969 116.953125 192.738281 116.953125 192.738281 115.332031 C 192.738281 113.710938 195.167969 113.710938 195.167969 115.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.757812 251.144531 C 350.757812 252.761719 348.328125 252.761719 348.328125 251.144531 C 348.328125 249.523438 350.757812 249.523438 350.757812 251.144531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.449219 70.910156 L 262.085938 73.746094 L 258.816406 73.746094 Z M 260.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.085938 70.910156 L 256.722656 73.746094 L 253.449219 73.746094 Z M 255.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.882812 239.726562 C 285.882812 241.347656 283.453125 241.347656 283.453125 239.726562 C 283.453125 238.105469 285.882812 238.105469 285.882812 239.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.800781 276.542969 C 209.800781 278.164062 207.371094 278.164062 207.371094 276.542969 C 207.371094 274.921875 209.800781 274.921875 209.800781 276.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.765625 70.910156 L 233.402344 73.746094 L 230.128906 73.746094 Z M 231.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.660156 285.96875 C 257.660156 287.589844 255.230469 287.589844 255.230469 285.96875 C 255.230469 284.347656 257.660156 284.347656 257.660156 285.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.90625 252.699219 C 254.90625 254.320312 252.472656 254.320312 252.472656 252.699219 C 252.472656 251.082031 254.90625 251.082031 254.90625 252.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.308594 264.289062 C 238.308594 265.910156 235.878906 265.910156 235.878906 264.289062 C 235.878906 262.671875 238.308594 262.671875 238.308594 264.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.148438 116.746094 C 232.148438 118.363281 229.71875 118.363281 229.71875 116.746094 C 229.71875 115.125 232.148438 115.125 232.148438 116.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.984375 74.007812 C 127.984375 75.625 125.554688 75.625 125.554688 74.007812 C 125.554688 72.386719 127.984375 72.386719 127.984375 74.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.558594 418.691406 L 168.195312 415.855469 L 164.921875 415.855469 Z M 166.558594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.90625 222.128906 C 305.90625 223.75 303.476562 223.75 303.476562 222.128906 C 303.476562 220.507812 305.90625 220.507812 305.90625 222.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.605469 70.910156 L 210.242188 73.746094 L 206.96875 73.746094 Z M 208.605469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.847656 70.910156 L 161.484375 73.746094 L 158.210938 73.746094 Z M 159.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.949219 169.414062 C 255.949219 171.03125 253.519531 171.03125 253.519531 169.414062 C 253.519531 167.792969 255.949219 167.792969 255.949219 169.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.945312 70.910156 L 302.582031 73.746094 L 299.308594 73.746094 Z M 300.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.753906 250.691406 C 328.753906 252.3125 326.324219 252.3125 326.324219 250.691406 C 326.324219 249.074219 328.753906 249.074219 328.753906 250.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.085938 267.261719 C 304.085938 268.882812 301.65625 268.882812 301.65625 267.261719 C 301.65625 265.640625 304.085938 265.640625 304.085938 267.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.582031 70.910156 L 171.21875 73.746094 L 167.949219 73.746094 Z M 169.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.671875 258.707031 C 313.671875 260.328125 311.242188 260.328125 311.242188 258.707031 C 311.242188 257.085938 313.671875 257.085938 313.671875 258.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.269531 254.722656 C 328.269531 256.34375 325.839844 256.34375 325.839844 254.722656 C 325.839844 253.101562 328.269531 253.101562 328.269531 254.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.386719 210.160156 C 245.386719 211.78125 242.957031 211.78125 242.957031 210.160156 C 242.957031 208.542969 245.386719 208.542969 245.386719 210.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.566406 112.011719 C 255.566406 113.632812 253.136719 113.632812 253.136719 112.011719 C 253.136719 110.390625 255.566406 110.390625 255.566406 112.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.824219 89.589844 C 159.824219 91.210938 157.394531 91.210938 157.394531 89.589844 C 157.394531 87.96875 159.824219 87.96875 159.824219 89.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.164062 228.734375 C 264.164062 230.355469 261.734375 230.355469 261.734375 228.734375 C 261.734375 227.113281 264.164062 227.113281 264.164062 228.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.226562 237.15625 C 241.226562 238.777344 238.796875 238.777344 238.796875 237.15625 C 238.796875 235.539062 241.226562 235.539062 241.226562 237.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.410156 329.484375 C 240.410156 331.105469 237.980469 331.105469 237.980469 329.484375 C 237.980469 327.867188 240.410156 327.867188 240.410156 329.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.191406 356.160156 C 153.191406 357.78125 150.761719 357.78125 150.761719 356.160156 C 150.761719 354.539062 153.191406 354.539062 153.191406 356.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.839844 253.578125 C 229.839844 255.195312 227.410156 255.195312 227.410156 253.578125 C 227.410156 251.957031 229.839844 251.957031 229.839844 253.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.617188 280.222656 C 266.617188 281.84375 264.183594 281.84375 264.183594 280.222656 C 264.183594 278.601562 266.617188 278.601562 266.617188 280.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.128906 267.867188 C 254.128906 269.488281 251.699219 269.488281 251.699219 267.867188 C 251.699219 266.25 254.128906 266.25 254.128906 267.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.089844 172.46875 C 110.089844 174.089844 107.660156 174.089844 107.660156 172.46875 C 107.660156 170.847656 110.089844 170.847656 110.089844 172.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.996094 289.757812 C 307.996094 291.378906 305.566406 291.378906 305.566406 289.757812 C 305.566406 288.140625 307.996094 288.140625 307.996094 289.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.835938 259.132812 C 342.835938 260.75 340.40625 260.75 340.40625 259.132812 C 340.40625 257.511719 342.835938 257.511719 342.835938 259.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.089844 70.910156 L 129.722656 73.746094 L 126.453125 73.746094 Z M 128.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.492188 160.859375 C 175.492188 162.480469 173.0625 162.480469 173.0625 160.859375 C 173.0625 159.238281 175.492188 159.238281 175.492188 160.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.769531 298.714844 C 301.769531 300.335938 299.339844 300.335938 299.339844 298.714844 C 299.339844 297.09375 301.769531 297.09375 301.769531 298.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.566406 195.390625 C 166.566406 197.007812 164.136719 197.007812 164.136719 195.390625 C 164.136719 193.769531 166.566406 193.769531 166.566406 195.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.859375 262.984375 C 222.859375 264.605469 220.429688 264.605469 220.429688 262.984375 C 220.429688 261.363281 222.859375 261.363281 222.859375 262.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.359375 342.675781 C 161.359375 344.296875 158.929688 344.296875 158.929688 342.675781 C 158.929688 341.054688 161.359375 341.054688 161.359375 342.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.34375 297.316406 C 202.34375 298.9375 199.910156 298.9375 199.910156 297.316406 C 199.910156 295.699219 202.34375 295.699219 202.34375 297.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.351562 307.289062 C 221.351562 308.910156 218.921875 308.910156 218.921875 307.289062 C 218.921875 305.667969 221.351562 305.667969 221.351562 307.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.054688 211.808594 C 274.054688 213.429688 271.621094 213.429688 271.621094 211.808594 C 271.621094 210.191406 274.054688 210.191406 274.054688 211.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.71875 295.453125 C 151.71875 297.074219 149.289062 297.074219 149.289062 295.453125 C 149.289062 293.832031 151.71875 293.832031 151.71875 295.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.011719 257.730469 C 128.011719 259.351562 125.582031 259.351562 125.582031 257.730469 C 125.582031 256.109375 128.011719 256.109375 128.011719 257.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.554688 189.675781 C 265.554688 191.292969 263.125 191.292969 263.125 189.675781 C 263.125 188.054688 265.554688 188.054688 265.554688 189.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.769531 183.355469 C 243.769531 184.976562 241.339844 184.976562 241.339844 183.355469 C 241.339844 181.738281 243.769531 181.738281 243.769531 183.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.765625 363.800781 C 201.765625 365.421875 199.335938 365.421875 199.335938 363.800781 C 199.335938 362.179688 201.765625 362.179688 201.765625 363.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.382812 250.753906 C 303.382812 252.371094 300.949219 252.371094 300.949219 250.753906 C 300.949219 249.132812 303.382812 249.132812 303.382812 250.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.539062 194.554688 C 287.539062 196.175781 285.109375 196.175781 285.109375 194.554688 C 285.109375 192.933594 287.539062 192.933594 287.539062 194.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.777344 370.136719 C 158.777344 371.757812 156.347656 371.757812 156.347656 370.136719 C 156.347656 368.515625 158.777344 368.515625 158.777344 370.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.765625 215.535156 C 159.765625 217.15625 157.335938 217.15625 157.335938 215.535156 C 157.335938 213.914062 159.765625 213.914062 159.765625 215.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.738281 167.59375 C 252.738281 169.214844 250.308594 169.214844 250.308594 167.59375 C 250.308594 165.972656 252.738281 165.972656 252.738281 167.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.328125 127.570312 C 117.328125 129.191406 114.898438 129.191406 114.898438 127.570312 C 114.898438 125.953125 117.328125 125.953125 117.328125 127.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.539062 337.953125 C 341.539062 339.570312 339.109375 339.570312 339.109375 337.953125 C 339.109375 336.332031 341.539062 336.332031 341.539062 337.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.824219 249.359375 C 155.824219 250.980469 153.394531 250.980469 153.394531 249.359375 C 153.394531 247.738281 155.824219 247.738281 155.824219 249.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.5 219.433594 C 272.5 221.054688 270.070312 221.054688 270.070312 219.433594 C 270.070312 217.816406 272.5 217.816406 272.5 219.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.808594 70.910156 L 335.445312 73.746094 L 332.171875 73.746094 Z M 333.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.613281 90.800781 C 253.613281 92.421875 251.183594 92.421875 251.183594 90.800781 C 251.183594 89.183594 253.613281 89.183594 253.613281 90.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.054688 259.222656 C 263.054688 260.84375 260.625 260.84375 260.625 259.222656 C 260.625 257.601562 263.054688 257.601562 263.054688 259.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.070312 248.675781 C 271.070312 250.292969 268.640625 250.292969 268.640625 248.675781 C 268.640625 247.054688 271.070312 247.054688 271.070312 248.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.835938 234.941406 C 258.835938 236.5625 256.40625 236.5625 256.40625 234.941406 C 256.40625 233.324219 258.835938 233.324219 258.835938 234.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.25 324.816406 C 112.25 326.4375 109.820312 326.4375 109.820312 324.816406 C 109.820312 323.199219 112.25 323.199219 112.25 324.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.949219 227.59375 C 214.949219 229.210938 212.519531 229.210938 212.519531 227.59375 C 212.519531 225.972656 214.949219 225.972656 214.949219 227.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.945312 136.6875 C 333.945312 138.304688 331.515625 138.304688 331.515625 136.6875 C 331.515625 135.066406 333.945312 135.066406 333.945312 136.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.808594 242.460938 C 250.808594 244.078125 248.378906 244.078125 248.378906 242.460938 C 248.378906 240.839844 250.808594 240.839844 250.808594 242.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.5625 279.410156 C 232.5625 281.03125 230.132812 281.03125 230.132812 279.410156 C 230.132812 277.792969 232.5625 277.792969 232.5625 279.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.984375 230.542969 C 247.984375 232.164062 245.554688 232.164062 245.554688 230.542969 C 245.554688 228.921875 247.984375 228.921875 247.984375 230.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.472656 229.09375 C 272.472656 230.710938 270.042969 230.710938 270.042969 229.09375 C 270.042969 227.472656 272.472656 227.472656 272.472656 229.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.722656 254.554688 C 290.722656 256.175781 288.289062 256.175781 288.289062 254.554688 C 288.289062 252.933594 290.722656 252.933594 290.722656 254.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.164062 418.691406 L 190.800781 415.855469 L 187.527344 415.855469 Z M 189.164062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.417969 248.632812 C 264.417969 250.253906 261.988281 250.253906 261.988281 248.632812 C 261.988281 247.011719 264.417969 247.011719 264.417969 248.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.027344 285.835938 C 261.027344 287.457031 258.597656 287.457031 258.597656 285.835938 C 258.597656 284.21875 261.027344 284.21875 261.027344 285.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.6875 319.222656 C 236.6875 320.839844 234.257812 320.839844 234.257812 319.222656 C 234.257812 317.601562 236.6875 317.601562 236.6875 319.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.167969 322.699219 C 224.167969 324.316406 221.738281 324.316406 221.738281 322.699219 C 221.738281 321.078125 224.167969 321.078125 224.167969 322.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.324219 70.910156 L 207.960938 73.746094 L 204.6875 73.746094 Z M 206.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.59375 208.234375 C 262.59375 209.851562 260.164062 209.851562 260.164062 208.234375 C 260.164062 206.613281 262.59375 206.613281 262.59375 208.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.042969 218.945312 C 292.042969 220.566406 289.609375 220.566406 289.609375 218.945312 C 289.609375 217.324219 292.042969 217.324219 292.042969 218.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.238281 291.269531 C 240.238281 292.886719 237.808594 292.886719 237.808594 291.269531 C 237.808594 289.648438 240.238281 289.648438 240.238281 291.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.671875 246.648438 C 260.671875 248.269531 258.242188 248.269531 258.242188 246.648438 C 258.242188 245.03125 260.671875 245.03125 260.671875 246.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.464844 239.808594 C 241.464844 241.429688 239.035156 241.429688 239.035156 239.808594 C 239.035156 238.191406 241.464844 238.191406 241.464844 239.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.066406 178.988281 C 202.066406 180.609375 199.636719 180.609375 199.636719 178.988281 C 199.636719 177.367188 202.066406 177.367188 202.066406 178.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.839844 290.722656 C 285.839844 292.34375 283.410156 292.34375 283.410156 290.722656 C 283.410156 289.101562 285.839844 289.101562 285.839844 290.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.121094 272.613281 C 262.121094 274.230469 259.691406 274.230469 259.691406 272.613281 C 259.691406 270.992188 262.121094 270.992188 262.121094 272.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.898438 268.90625 C 290.898438 270.527344 288.46875 270.527344 288.46875 268.90625 C 288.46875 267.285156 290.898438 267.285156 290.898438 268.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.617188 241.523438 C 117.617188 243.140625 115.1875 243.140625 115.1875 241.523438 C 115.1875 239.902344 117.617188 239.902344 117.617188 241.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.285156 384.125 C 302.285156 385.746094 299.855469 385.746094 299.855469 384.125 C 299.855469 382.507812 302.285156 382.507812 302.285156 384.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.128906 161.199219 C 307.128906 162.816406 304.699219 162.816406 304.699219 161.199219 C 304.699219 159.578125 307.128906 159.578125 307.128906 161.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.660156 258.574219 C 226.660156 260.195312 224.230469 260.195312 224.230469 258.574219 C 224.230469 256.953125 226.660156 256.953125 226.660156 258.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.332031 418.691406 L 340.96875 415.855469 L 337.695312 415.855469 Z M 339.332031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.351562 70.910156 L 188.988281 73.746094 L 185.714844 73.746094 Z M 187.351562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.734375 70.910156 L 294.371094 73.746094 L 291.097656 73.746094 Z M 292.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.765625 248.503906 C 268.765625 250.121094 266.335938 250.121094 266.335938 248.503906 C 266.335938 246.882812 268.765625 246.882812 268.765625 248.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.691406 262.839844 C 299.691406 264.460938 297.261719 264.460938 297.261719 262.839844 C 297.261719 261.21875 299.691406 261.21875 299.691406 262.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.691406 234.285156 C 299.691406 235.90625 297.261719 235.90625 297.261719 234.285156 C 297.261719 232.664062 299.691406 232.664062 299.691406 234.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.285156 70.910156 L 203.921875 73.746094 L 200.652344 73.746094 Z M 202.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.378906 361.367188 C 370.378906 362.984375 367.949219 362.984375 367.949219 361.367188 C 367.949219 359.746094 370.378906 359.746094 370.378906 361.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.707031 281.644531 C 302.707031 283.265625 300.277344 283.265625 300.277344 281.644531 C 300.277344 280.023438 302.707031 280.023438 302.707031 281.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.316406 319.023438 C 218.316406 320.644531 215.886719 320.644531 215.886719 319.023438 C 215.886719 317.40625 218.316406 317.40625 218.316406 319.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.746094 114.617188 C 146.746094 116.238281 144.316406 116.238281 144.316406 114.617188 C 144.316406 112.996094 146.746094 112.996094 146.746094 114.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.097656 306.027344 C 124.097656 307.644531 121.664062 307.644531 121.664062 306.027344 C 121.664062 304.40625 124.097656 304.40625 124.097656 306.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.644531 294.328125 C 190.644531 295.949219 188.214844 295.949219 188.214844 294.328125 C 188.214844 292.707031 190.644531 292.707031 190.644531 294.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.066406 284.03125 C 282.066406 285.652344 279.632812 285.652344 279.632812 284.03125 C 279.632812 282.410156 282.066406 282.410156 282.066406 284.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.753906 220.214844 C 204.753906 221.832031 202.324219 221.832031 202.324219 220.214844 C 202.324219 218.59375 204.753906 218.59375 204.753906 220.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.71875 418.691406 L 170.355469 415.855469 L 167.082031 415.855469 Z M 168.71875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.90625 151.777344 C 187.90625 153.398438 185.476562 153.398438 185.476562 151.777344 C 185.476562 150.160156 187.90625 150.160156 187.90625 151.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.308594 244.160156 C 178.308594 245.78125 175.878906 245.78125 175.878906 244.160156 C 175.878906 242.542969 178.308594 242.542969 178.308594 244.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.625 314.902344 C 295.625 316.523438 293.191406 316.523438 293.191406 314.902344 C 293.191406 313.28125 295.625 313.28125 295.625 314.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.929688 214.511719 C 237.929688 216.132812 235.5 216.132812 235.5 214.511719 C 235.5 212.894531 237.929688 212.894531 237.929688 214.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.378906 308.347656 C 247.378906 309.96875 244.945312 309.96875 244.945312 308.347656 C 244.945312 306.726562 247.378906 306.726562 247.378906 308.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 342.757812 418.691406 L 344.394531 415.855469 L 341.121094 415.855469 Z M 342.757812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.347656 324.75 C 279.347656 326.371094 276.917969 326.371094 276.917969 324.75 C 276.917969 323.132812 279.347656 323.132812 279.347656 324.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.625 337.578125 C 264.625 339.199219 262.195312 339.199219 262.195312 337.578125 C 262.195312 335.957031 264.625 335.957031 264.625 337.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.199219 287.136719 C 270.199219 288.753906 267.769531 288.753906 267.769531 287.136719 C 267.769531 285.515625 270.199219 285.515625 270.199219 287.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.214844 235.980469 C 183.214844 237.601562 180.785156 237.601562 180.785156 235.980469 C 180.785156 234.359375 183.214844 234.359375 183.214844 235.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.621094 198.59375 C 150.621094 200.214844 148.191406 200.214844 148.191406 198.59375 C 148.191406 196.972656 150.621094 196.972656 150.621094 198.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.160156 176.953125 C 194.160156 178.570312 191.730469 178.570312 191.730469 176.953125 C 191.730469 175.332031 194.160156 175.332031 194.160156 176.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.460938 285.269531 C 202.460938 286.890625 200.03125 286.890625 200.03125 285.269531 C 200.03125 283.648438 202.460938 283.648438 202.460938 285.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.175781 284.832031 C 223.175781 286.453125 220.746094 286.453125 220.746094 284.832031 C 220.746094 283.214844 223.175781 283.214844 223.175781 284.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.925781 267.289062 C 232.925781 268.910156 230.496094 268.910156 230.496094 267.289062 C 230.496094 265.671875 232.925781 265.671875 232.925781 267.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.789062 261.597656 C 126.789062 263.21875 124.359375 263.21875 124.359375 261.597656 C 124.359375 259.980469 126.789062 259.980469 126.789062 261.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.429688 70.910156 L 259.066406 73.746094 L 255.792969 73.746094 Z M 257.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.34375 294.414062 C 234.34375 296.035156 231.914062 296.035156 231.914062 294.414062 C 231.914062 292.796875 234.34375 292.796875 234.34375 294.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.226562 312.316406 C 266.226562 313.9375 263.792969 313.9375 263.792969 312.316406 C 263.792969 310.699219 266.226562 310.699219 266.226562 312.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.769531 173.273438 C 109.769531 174.894531 107.339844 174.894531 107.339844 173.273438 C 107.339844 171.652344 109.769531 171.652344 109.769531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.339844 242.574219 C 264.339844 244.195312 261.90625 244.195312 261.90625 242.574219 C 261.90625 240.953125 264.339844 240.953125 264.339844 242.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.085938 144.460938 C 142.085938 146.082031 139.65625 146.082031 139.65625 144.460938 C 139.65625 142.839844 142.085938 142.839844 142.085938 144.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.378906 251.757812 C 273.378906 253.375 270.949219 253.375 270.949219 251.757812 C 270.949219 250.136719 273.378906 250.136719 273.378906 251.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.5 282.625 C 262.5 284.246094 260.070312 284.246094 260.070312 282.625 C 260.070312 281.003906 262.5 281.003906 262.5 282.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.027344 205.46875 C 272.027344 207.089844 269.597656 207.089844 269.597656 205.46875 C 269.597656 203.847656 272.027344 203.847656 272.027344 205.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.425781 236.714844 C 272.425781 238.335938 269.992188 238.335938 269.992188 236.714844 C 269.992188 235.097656 272.425781 235.097656 272.425781 236.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.015625 340.25 C 218.015625 341.871094 215.585938 341.871094 215.585938 340.25 C 215.585938 338.628906 218.015625 338.628906 218.015625 340.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.558594 268.289062 C 317.558594 269.910156 315.128906 269.910156 315.128906 268.289062 C 315.128906 266.667969 317.558594 266.667969 317.558594 268.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.054688 163.851562 C 282.054688 165.472656 279.625 165.472656 279.625 163.851562 C 279.625 162.230469 282.054688 162.230469 282.054688 163.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.40625 245.296875 C 256.40625 246.917969 253.976562 246.917969 253.976562 245.296875 C 253.976562 243.679688 256.40625 243.679688 256.40625 245.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.898438 70.910156 L 142.535156 73.746094 L 139.261719 73.746094 Z M 140.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.320312 234.222656 C 255.320312 235.84375 252.890625 235.84375 252.890625 234.222656 C 252.890625 232.601562 255.320312 232.601562 255.320312 234.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.402344 246.9375 C 279.402344 248.558594 276.972656 248.558594 276.972656 246.9375 C 276.972656 245.320312 279.402344 245.320312 279.402344 246.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.816406 70.910156 L 205.453125 73.746094 L 202.179688 73.746094 Z M 203.816406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.796875 70.910156 L 169.433594 73.746094 L 166.160156 73.746094 Z M 167.796875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.984375 255.390625 C 288.984375 257.007812 286.554688 257.007812 286.554688 255.390625 C 286.554688 253.769531 288.984375 253.769531 288.984375 255.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.554688 189.253906 C 220.554688 190.871094 218.125 190.871094 218.125 189.253906 C 218.125 187.632812 220.554688 187.632812 220.554688 189.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.285156 343.761719 C 164.285156 345.378906 161.855469 345.378906 161.855469 343.761719 C 161.855469 342.140625 164.285156 342.140625 164.285156 343.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.066406 296.4375 C 215.066406 298.058594 212.632812 298.058594 212.632812 296.4375 C 212.632812 294.816406 215.066406 294.816406 215.066406 296.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.03125 285.707031 C 265.03125 287.328125 262.597656 287.328125 262.597656 285.707031 C 262.597656 284.085938 265.03125 284.085938 265.03125 285.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.472656 209.410156 C 134.472656 211.03125 132.042969 211.03125 132.042969 209.410156 C 132.042969 207.792969 134.472656 207.792969 134.472656 209.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.800781 339.105469 C 264.800781 340.726562 262.371094 340.726562 262.371094 339.105469 C 262.371094 337.484375 264.800781 337.484375 264.800781 339.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.75 271.535156 C 303.75 273.152344 301.316406 273.152344 301.316406 271.535156 C 301.316406 269.914062 303.75 269.914062 303.75 271.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.777344 178.253906 C 273.777344 179.875 271.347656 179.875 271.347656 178.253906 C 271.347656 176.636719 273.777344 176.636719 273.777344 178.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.0625 238.566406 C 289.0625 240.1875 286.632812 240.1875 286.632812 238.566406 C 286.632812 236.945312 289.0625 236.945312 289.0625 238.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.570312 288.191406 C 262.570312 289.8125 260.140625 289.8125 260.140625 288.191406 C 260.140625 286.570312 262.570312 286.570312 262.570312 288.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.914062 70.910156 L 166.546875 73.746094 L 163.277344 73.746094 Z M 164.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.210938 318.054688 C 248.210938 319.671875 245.78125 319.671875 245.78125 318.054688 C 245.78125 316.433594 248.210938 316.433594 248.210938 318.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.8125 264.726562 C 180.8125 266.34375 178.382812 266.34375 178.382812 264.726562 C 178.382812 263.105469 180.8125 263.105469 180.8125 264.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 375.515625 369.738281 C 375.515625 371.359375 373.085938 371.359375 373.085938 369.738281 C 373.085938 368.121094 375.515625 368.121094 375.515625 369.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.921875 361.5625 C 286.921875 363.183594 284.492188 363.183594 284.492188 361.5625 C 284.492188 359.945312 286.921875 359.945312 286.921875 361.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.503906 216.304688 C 212.503906 217.921875 210.074219 217.921875 210.074219 216.304688 C 210.074219 214.683594 212.503906 214.683594 212.503906 216.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.101562 322.675781 C 286.101562 324.296875 283.671875 324.296875 283.671875 322.675781 C 283.671875 321.058594 286.101562 321.058594 286.101562 322.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.277344 70.910156 L 164.914062 73.746094 L 161.640625 73.746094 Z M 163.277344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.644531 70.910156 L 156.28125 73.746094 L 153.011719 73.746094 Z M 154.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.855469 79.789062 C 248.855469 81.410156 246.425781 81.410156 246.425781 79.789062 C 246.425781 78.167969 248.855469 78.167969 248.855469 79.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.800781 281.722656 C 267.800781 283.34375 265.371094 283.34375 265.371094 281.722656 C 265.371094 280.101562 267.800781 280.101562 267.800781 281.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.027344 281.644531 C 237.027344 283.265625 234.597656 283.265625 234.597656 281.644531 C 234.597656 280.023438 237.027344 280.023438 237.027344 281.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.3125 70.910156 L 234.949219 73.746094 L 231.675781 73.746094 Z M 233.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.96875 91.359375 C 122.96875 92.980469 120.539062 92.980469 120.539062 91.359375 C 120.539062 89.742188 122.96875 89.742188 122.96875 91.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.910156 229.082031 C 303.910156 230.699219 301.480469 230.699219 301.480469 229.082031 C 301.480469 227.460938 303.910156 227.460938 303.910156 229.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.320312 175.136719 C 201.320312 176.757812 198.890625 176.757812 198.890625 175.136719 C 198.890625 173.515625 201.320312 173.515625 201.320312 175.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.789062 219.683594 C 296.789062 221.304688 294.359375 221.304688 294.359375 219.683594 C 294.359375 218.066406 296.789062 218.066406 296.789062 219.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.992188 348.070312 C 268.992188 349.691406 266.5625 349.691406 266.5625 348.070312 C 266.5625 346.449219 268.992188 346.449219 268.992188 348.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.171875 327.5625 C 307.171875 329.183594 304.742188 329.183594 304.742188 327.5625 C 304.742188 325.941406 307.171875 325.941406 307.171875 327.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.367188 314.851562 C 164.367188 316.472656 161.9375 316.472656 161.9375 314.851562 C 161.9375 313.230469 164.367188 313.230469 164.367188 314.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.347656 325.1875 C 265.347656 326.804688 262.917969 326.804688 262.917969 325.1875 C 262.917969 323.566406 265.347656 323.566406 265.347656 325.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.378906 289.714844 C 358.378906 291.332031 355.949219 291.332031 355.949219 289.714844 C 355.949219 288.09375 358.378906 288.09375 358.378906 289.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.550781 327.066406 C 245.550781 328.683594 243.121094 328.683594 243.121094 327.066406 C 243.121094 325.445312 245.550781 325.445312 245.550781 327.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.074219 416.285156 C 125.074219 417.90625 122.644531 417.90625 122.644531 416.285156 C 122.644531 414.664062 125.074219 414.664062 125.074219 416.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.957031 260.925781 C 191.957031 262.542969 189.527344 262.542969 189.527344 260.925781 C 189.527344 259.304688 191.957031 259.304688 191.957031 260.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.984375 70.910156 L 266.621094 73.746094 L 263.347656 73.746094 Z M 264.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.746094 70.910156 L 148.382812 73.746094 L 145.109375 73.746094 Z M 146.746094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.253906 70.910156 L 237.890625 73.746094 L 234.617188 73.746094 Z M 236.253906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.628906 70.910156 L 283.261719 73.746094 L 279.992188 73.746094 Z M 281.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.089844 70.910156 L 142.726562 73.746094 L 139.453125 73.746094 Z M 141.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.339844 288.503906 C 260.339844 290.125 257.910156 290.125 257.910156 288.503906 C 257.910156 286.886719 260.339844 286.886719 260.339844 288.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.761719 284.742188 C 231.761719 286.363281 229.332031 286.363281 229.332031 284.742188 C 229.332031 283.121094 231.761719 283.121094 231.761719 284.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.445312 131.976562 C 287.445312 133.59375 285.015625 133.59375 285.015625 131.976562 C 285.015625 130.355469 287.445312 130.355469 287.445312 131.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.984375 258.902344 C 325.984375 260.523438 323.550781 260.523438 323.550781 258.902344 C 323.550781 257.285156 325.984375 257.285156 325.984375 258.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.292969 294.488281 C 280.292969 296.105469 277.863281 296.105469 277.863281 294.488281 C 277.863281 292.867188 280.292969 292.867188 280.292969 294.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.484375 70.910156 L 233.121094 73.746094 L 229.847656 73.746094 Z M 231.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.464844 321.226562 C 195.464844 322.84375 193.035156 322.84375 193.035156 321.226562 C 193.035156 319.605469 195.464844 319.605469 195.464844 321.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.167969 179.992188 C 279.167969 181.613281 276.738281 181.613281 276.738281 179.992188 C 276.738281 178.375 279.167969 178.375 279.167969 179.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.027344 418.691406 L 126.664062 415.855469 L 123.390625 415.855469 Z M 125.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.875 297.058594 C 265.875 298.675781 263.445312 298.675781 263.445312 297.058594 C 263.445312 295.4375 265.875 295.4375 265.875 297.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.632812 211.492188 C 319.632812 213.113281 317.203125 213.113281 317.203125 211.492188 C 317.203125 209.871094 319.632812 209.871094 319.632812 211.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.527344 237.449219 C 331.527344 239.070312 329.097656 239.070312 329.097656 237.449219 C 329.097656 235.832031 331.527344 235.832031 331.527344 237.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.039062 227.328125 C 219.039062 228.949219 216.609375 228.949219 216.609375 227.328125 C 216.609375 225.710938 219.039062 225.710938 219.039062 227.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.582031 70.910156 L 173.21875 73.746094 L 169.945312 73.746094 Z M 171.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.785156 114.519531 C 135.785156 116.140625 133.355469 116.140625 133.355469 114.519531 C 133.355469 112.902344 135.785156 112.902344 135.785156 114.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.613281 178.113281 C 171.613281 179.734375 169.183594 179.734375 169.183594 178.113281 C 169.183594 176.492188 171.613281 176.492188 171.613281 178.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.707031 152.964844 C 289.707031 154.585938 287.277344 154.585938 287.277344 152.964844 C 287.277344 151.34375 289.707031 151.34375 289.707031 152.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.300781 197.902344 C 251.300781 199.523438 248.871094 199.523438 248.871094 197.902344 C 248.871094 196.285156 251.300781 196.285156 251.300781 197.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.882812 73.078125 C 209.882812 74.695312 207.453125 74.695312 207.453125 73.078125 C 207.453125 71.457031 209.882812 71.457031 209.882812 73.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.570312 234.578125 C 257.570312 236.199219 255.140625 236.199219 255.140625 234.578125 C 255.140625 232.957031 257.570312 232.957031 257.570312 234.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.152344 205.15625 C 193.152344 206.777344 190.722656 206.777344 190.722656 205.15625 C 190.722656 203.535156 193.152344 203.535156 193.152344 205.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.15625 173.957031 C 224.15625 175.578125 221.726562 175.578125 221.726562 173.957031 C 221.726562 172.339844 224.15625 172.339844 224.15625 173.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.671875 227.71875 C 167.671875 229.335938 165.242188 229.335938 165.242188 227.71875 C 165.242188 226.097656 167.671875 226.097656 167.671875 227.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.363281 239.847656 C 224.363281 241.46875 221.933594 241.46875 221.933594 239.847656 C 221.933594 238.226562 224.363281 238.226562 224.363281 239.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.765625 407.878906 C 292.765625 409.496094 290.335938 409.496094 290.335938 407.878906 C 290.335938 406.257812 292.765625 406.257812 292.765625 407.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.636719 284.269531 C 250.636719 285.886719 248.207031 285.886719 248.207031 284.269531 C 248.207031 282.648438 250.636719 282.648438 250.636719 284.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.960938 235.027344 C 313.960938 236.644531 311.53125 236.644531 311.53125 235.027344 C 311.53125 233.40625 313.960938 233.40625 313.960938 235.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 179.277344 402.453125 C 179.277344 404.074219 176.847656 404.074219 176.847656 402.453125 C 176.847656 400.832031 179.277344 400.832031 179.277344 402.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.121094 70.910156 L 122.757812 73.746094 L 119.484375 73.746094 Z M 121.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.78125 216.601562 C 246.78125 218.222656 244.351562 218.222656 244.351562 216.601562 C 244.351562 214.984375 246.78125 214.984375 246.78125 216.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.824219 70.910156 L 358.457031 73.746094 L 355.1875 73.746094 Z M 356.824219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 346.65625 70.910156 L 348.289062 73.746094 L 345.019531 73.746094 Z M 346.65625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.027344 70.910156 L 282.664062 73.746094 L 279.394531 73.746094 Z M 281.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.195312 249.511719 C 263.195312 251.132812 260.765625 251.132812 260.765625 249.511719 C 260.765625 247.890625 263.195312 247.890625 263.195312 249.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.0625 70.910156 L 189.699219 73.746094 L 186.425781 73.746094 Z M 188.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.605469 70.910156 L 238.242188 73.746094 L 234.96875 73.746094 Z M 236.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.84375 298.066406 C 281.84375 299.6875 279.414062 299.6875 279.414062 298.066406 C 279.414062 296.445312 281.84375 296.445312 281.84375 298.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.664062 100.453125 C 150.664062 102.074219 148.234375 102.074219 148.234375 100.453125 C 148.234375 98.835938 150.664062 98.835938 150.664062 100.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.007812 323.332031 C 207.007812 324.953125 204.578125 324.953125 204.578125 323.332031 C 204.578125 321.714844 207.007812 321.714844 207.007812 323.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 70.910156 L 131.261719 73.746094 L 127.992188 73.746094 Z M 129.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.394531 129.347656 C 160.394531 130.964844 157.964844 130.964844 157.964844 129.347656 C 157.964844 127.726562 160.394531 127.726562 160.394531 129.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.808594 70.910156 L 150.441406 73.746094 L 147.171875 73.746094 Z M 148.808594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.425781 70.910156 L 285.058594 73.746094 L 281.789062 73.746094 Z M 283.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.203125 191.933594 C 150.203125 193.550781 147.773438 193.550781 147.773438 191.933594 C 147.773438 190.3125 150.203125 190.3125 150.203125 191.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.300781 237.25 C 258.300781 238.871094 255.871094 238.871094 255.871094 237.25 C 255.871094 235.632812 258.300781 235.632812 258.300781 237.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.320312 214.074219 C 225.320312 215.695312 222.886719 215.695312 222.886719 214.074219 C 222.886719 212.453125 225.320312 212.453125 225.320312 214.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.804688 179.730469 C 216.804688 181.347656 214.375 181.347656 214.375 179.730469 C 214.375 178.109375 216.804688 178.109375 216.804688 179.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.710938 170.523438 C 200.710938 172.144531 198.28125 172.144531 198.28125 170.523438 C 198.28125 168.902344 200.710938 168.902344 200.710938 170.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.925781 147.160156 C 196.925781 148.777344 194.496094 148.777344 194.496094 147.160156 C 194.496094 145.539062 196.925781 145.539062 196.925781 147.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.40625 245.078125 C 224.40625 246.699219 221.976562 246.699219 221.976562 245.078125 C 221.976562 243.460938 224.40625 243.460938 224.40625 245.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.707031 286.488281 C 281.707031 288.109375 279.277344 288.109375 279.277344 286.488281 C 279.277344 284.871094 281.707031 284.871094 281.707031 286.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.859375 304.507812 C 260.859375 306.128906 258.429688 306.128906 258.429688 304.507812 C 258.429688 302.886719 260.859375 302.886719 260.859375 304.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.253906 261.527344 C 249.253906 263.144531 246.824219 263.144531 246.824219 261.527344 C 246.824219 259.90625 249.253906 259.90625 249.253906 261.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.984375 206.71875 C 133.984375 208.339844 131.554688 208.339844 131.554688 206.71875 C 131.554688 205.101562 133.984375 205.101562 133.984375 206.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.964844 315.402344 C 301.964844 317.023438 299.535156 317.023438 299.535156 315.402344 C 299.535156 313.78125 301.964844 313.78125 301.964844 315.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.25 98.265625 C 227.25 99.882812 224.820312 99.882812 224.820312 98.265625 C 224.820312 96.644531 227.25 96.644531 227.25 98.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.007812 219.425781 C 307.007812 221.046875 304.578125 221.046875 304.578125 219.425781 C 304.578125 217.804688 307.007812 217.804688 307.007812 219.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187 70.910156 L 188.636719 73.746094 L 185.363281 73.746094 Z M 187 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.222656 210.402344 C 178.222656 212.023438 175.792969 212.023438 175.792969 210.402344 C 175.792969 208.78125 178.222656 208.78125 178.222656 210.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.570312 290.941406 C 221.570312 292.5625 219.140625 292.5625 219.140625 290.941406 C 219.140625 289.320312 221.570312 289.320312 221.570312 290.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.859375 222.949219 C 220.859375 224.566406 218.429688 224.566406 218.429688 222.949219 C 218.429688 221.328125 220.859375 221.328125 220.859375 222.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.835938 124.394531 C 303.835938 126.015625 301.40625 126.015625 301.40625 124.394531 C 301.40625 122.773438 303.835938 122.773438 303.835938 124.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.394531 70.910156 L 280.03125 73.746094 L 276.757812 73.746094 Z M 278.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 388 175.976562 C 388 177.597656 385.570312 177.597656 385.570312 175.976562 C 385.570312 174.355469 388 174.355469 388 175.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 435.816406 236.714844 C 435.816406 238.332031 433.386719 238.332031 433.386719 236.714844 C 433.386719 235.09375 435.816406 235.09375 435.816406 236.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.238281 255.371094 C 224.238281 256.988281 221.808594 256.988281 221.808594 255.371094 C 221.808594 253.75 224.238281 253.75 224.238281 255.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.945312 266.769531 C 279.945312 268.390625 277.515625 268.390625 277.515625 266.769531 C 277.515625 265.152344 279.945312 265.152344 279.945312 266.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.390625 163.019531 C 221.390625 164.640625 218.960938 164.640625 218.960938 163.019531 C 218.960938 161.402344 221.390625 161.402344 221.390625 163.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.507812 340.945312 C 269.507812 342.566406 267.078125 342.566406 267.078125 340.945312 C 267.078125 339.328125 269.507812 339.328125 269.507812 340.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.792969 241.117188 C 266.792969 242.738281 264.363281 242.738281 264.363281 241.117188 C 264.363281 239.5 266.792969 239.5 266.792969 241.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.773438 125.5 C 232.773438 127.121094 230.34375 127.121094 230.34375 125.5 C 230.34375 123.878906 232.773438 123.878906 232.773438 125.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.070312 219.945312 C 241.070312 221.566406 238.640625 221.566406 238.640625 219.945312 C 238.640625 218.324219 241.070312 218.324219 241.070312 219.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.773438 194.382812 C 172.773438 196.003906 170.339844 196.003906 170.339844 194.382812 C 170.339844 192.765625 172.773438 192.765625 172.773438 194.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.078125 70.910156 L 203.714844 73.746094 L 200.441406 73.746094 Z M 202.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.683594 137.429688 C 190.683594 139.050781 188.253906 139.050781 188.253906 137.429688 C 188.253906 135.808594 190.683594 135.808594 190.683594 137.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.546875 143.945312 C 302.546875 145.5625 300.117188 145.5625 300.117188 143.945312 C 300.117188 142.324219 302.546875 142.324219 302.546875 143.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.183594 70.910156 L 165.820312 73.746094 L 162.546875 73.746094 Z M 164.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.058594 227.410156 C 275.058594 229.027344 272.628906 229.027344 272.628906 227.410156 C 272.628906 225.789062 275.058594 225.789062 275.058594 227.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.253906 237.933594 C 287.253906 239.554688 284.824219 239.554688 284.824219 237.933594 C 284.824219 236.3125 287.253906 236.3125 287.253906 237.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.457031 220.171875 C 268.457031 221.792969 266.027344 221.792969 266.027344 220.171875 C 266.027344 218.550781 268.457031 218.550781 268.457031 220.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.035156 70.910156 L 255.671875 73.746094 L 252.398438 73.746094 Z M 254.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.273438 324.382812 C 220.273438 326.003906 217.84375 326.003906 217.84375 324.382812 C 217.84375 322.765625 220.273438 322.765625 220.273438 324.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.011719 307.800781 C 345.011719 309.421875 342.582031 309.421875 342.582031 307.800781 C 342.582031 306.183594 345.011719 306.183594 345.011719 307.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.144531 70.910156 L 253.78125 73.746094 L 250.507812 73.746094 Z M 252.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.703125 238.953125 C 251.703125 240.574219 249.273438 240.574219 249.273438 238.953125 C 249.273438 237.335938 251.703125 237.335938 251.703125 238.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.871094 306.675781 C 271.871094 308.296875 269.4375 308.296875 269.4375 306.675781 C 269.4375 305.054688 271.871094 305.054688 271.871094 306.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.800781 321.445312 C 170.800781 323.066406 168.371094 323.066406 168.371094 321.445312 C 168.371094 319.828125 170.800781 319.828125 170.800781 321.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.214844 230.910156 C 296.214844 232.53125 293.785156 232.53125 293.785156 230.910156 C 293.785156 229.289062 296.214844 229.289062 296.214844 230.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.832031 208.785156 C 256.832031 210.40625 254.402344 210.40625 254.402344 208.785156 C 254.402344 207.164062 256.832031 207.164062 256.832031 208.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.640625 418.691406 L 171.277344 415.855469 L 168.003906 415.855469 Z M 169.640625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.335938 231.1875 C 281.335938 232.808594 278.90625 232.808594 278.90625 231.1875 C 278.90625 229.566406 281.335938 229.566406 281.335938 231.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.671875 233.613281 C 326.671875 235.234375 324.242188 235.234375 324.242188 233.613281 C 324.242188 231.996094 326.671875 231.996094 326.671875 233.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.277344 70.910156 L 281.914062 73.746094 L 278.640625 73.746094 Z M 280.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.480469 264.945312 C 229.480469 266.566406 227.050781 266.566406 227.050781 264.945312 C 227.050781 263.328125 229.480469 263.328125 229.480469 264.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.980469 205.097656 C 132.980469 206.714844 130.550781 206.714844 130.550781 205.097656 C 130.550781 203.476562 132.980469 203.476562 132.980469 205.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.550781 288.167969 C 218.550781 289.785156 216.121094 289.785156 216.121094 288.167969 C 216.121094 286.546875 218.550781 286.546875 218.550781 288.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.046875 90.808594 C 220.046875 92.429688 217.617188 92.429688 217.617188 90.808594 C 217.617188 89.1875 220.046875 89.1875 220.046875 90.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.472656 418.691406 L 263.109375 415.855469 L 259.835938 415.855469 Z M 261.472656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.441406 112.851562 C 246.441406 114.472656 244.011719 114.472656 244.011719 112.851562 C 244.011719 111.234375 246.441406 111.234375 246.441406 112.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.660156 79.980469 C 197.660156 81.601562 195.230469 81.601562 195.230469 79.980469 C 195.230469 78.363281 197.660156 78.363281 197.660156 79.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.1875 259.078125 C 177.1875 260.695312 174.753906 260.695312 174.753906 259.078125 C 174.753906 257.457031 177.1875 257.457031 177.1875 259.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.546875 261.929688 C 329.546875 263.550781 327.117188 263.550781 327.117188 261.929688 C 327.117188 260.3125 329.546875 260.3125 329.546875 261.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 404.503906 418.691406 L 406.140625 415.855469 L 402.867188 415.855469 Z M 404.503906 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.050781 70.910156 L 165.6875 73.746094 L 162.414062 73.746094 Z M 164.050781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.511719 70.910156 L 249.148438 73.746094 L 245.875 73.746094 Z M 247.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.484375 309.132812 C 251.484375 310.753906 249.054688 310.753906 249.054688 309.132812 C 249.054688 307.511719 251.484375 307.511719 251.484375 309.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.003906 70.910156 L 229.640625 73.746094 L 226.367188 73.746094 Z M 228.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.03125 272.128906 C 265.03125 273.75 262.601562 273.75 262.601562 272.128906 C 262.601562 270.511719 265.03125 270.511719 265.03125 272.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.632812 70.910156 L 270.269531 73.746094 L 266.996094 73.746094 Z M 268.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.75 245.113281 C 143.75 246.734375 141.320312 246.734375 141.320312 245.113281 C 141.320312 243.492188 143.75 243.492188 143.75 245.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.398438 74.222656 C 247.398438 75.84375 244.96875 75.84375 244.96875 74.222656 C 244.96875 72.601562 247.398438 72.601562 247.398438 74.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.910156 70.910156 L 152.546875 73.746094 L 149.277344 73.746094 Z M 150.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.527344 205.699219 C 191.527344 207.320312 189.097656 207.320312 189.097656 205.699219 C 189.097656 204.078125 191.527344 204.078125 191.527344 205.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 364.464844 301.707031 C 364.464844 303.324219 362.035156 303.324219 362.035156 301.707031 C 362.035156 300.085938 364.464844 300.085938 364.464844 301.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.78125 70.910156 L 264.414062 73.746094 L 261.144531 73.746094 Z M 262.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.363281 295.691406 C 292.363281 297.3125 289.929688 297.3125 289.929688 295.691406 C 289.929688 294.070312 292.363281 294.070312 292.363281 295.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.222656 345.199219 C 283.222656 346.820312 280.792969 346.820312 280.792969 345.199219 C 280.792969 343.582031 283.222656 343.582031 283.222656 345.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.617188 274.390625 C 210.617188 276.011719 208.1875 276.011719 208.1875 274.390625 C 208.1875 272.773438 210.617188 272.773438 210.617188 274.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.6875 248.578125 C 298.6875 250.199219 296.257812 250.199219 296.257812 248.578125 C 296.257812 246.957031 298.6875 246.957031 298.6875 248.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.199219 145.558594 C 253.199219 147.179688 250.769531 147.179688 250.769531 145.558594 C 250.769531 143.9375 253.199219 143.9375 253.199219 145.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.179688 163.011719 C 319.179688 164.632812 316.75 164.632812 316.75 163.011719 C 316.75 161.394531 319.179688 161.394531 319.179688 163.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.375 269.800781 C 247.375 271.417969 244.945312 271.417969 244.945312 269.800781 C 244.945312 268.179688 247.375 268.179688 247.375 269.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.613281 193.765625 C 174.613281 195.382812 172.183594 195.382812 172.183594 193.765625 C 172.183594 192.144531 174.613281 192.144531 174.613281 193.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.421875 253.660156 C 270.421875 255.28125 267.992188 255.28125 267.992188 253.660156 C 267.992188 252.039062 270.421875 252.039062 270.421875 253.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.882812 149.808594 C 178.882812 151.425781 176.453125 151.425781 176.453125 149.808594 C 176.453125 148.1875 178.882812 148.1875 178.882812 149.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.738281 155.707031 C 171.738281 157.324219 169.308594 157.324219 169.308594 155.707031 C 169.308594 154.085938 171.738281 154.085938 171.738281 155.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.191406 270.292969 C 320.191406 271.910156 317.761719 271.910156 317.761719 270.292969 C 317.761719 268.671875 320.191406 268.671875 320.191406 270.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.363281 339.054688 C 320.363281 340.675781 317.933594 340.675781 317.933594 339.054688 C 317.933594 337.4375 320.363281 337.4375 320.363281 339.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.96875 277.527344 C 247.96875 279.148438 245.539062 279.148438 245.539062 277.527344 C 245.539062 275.90625 247.96875 275.90625 247.96875 277.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.988281 270.589844 C 313.988281 272.207031 311.558594 272.207031 311.558594 270.589844 C 311.558594 268.96875 313.988281 268.96875 313.988281 270.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.980469 70.910156 L 190.617188 73.746094 L 187.34375 73.746094 Z M 188.980469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.035156 418.691406 L 120.671875 415.855469 L 117.398438 415.855469 Z M 119.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.234375 180.738281 C 245.234375 182.355469 242.804688 182.355469 242.804688 180.738281 C 242.804688 179.117188 245.234375 179.117188 245.234375 180.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.277344 210.398438 C 237.277344 212.019531 234.847656 212.019531 234.847656 210.398438 C 234.847656 208.777344 237.277344 208.777344 237.277344 210.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.855469 280.152344 C 263.855469 281.773438 261.425781 281.773438 261.425781 280.152344 C 261.425781 278.535156 263.855469 278.535156 263.855469 280.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.558594 315.585938 C 219.558594 317.207031 217.128906 317.207031 217.128906 315.585938 C 217.128906 313.964844 219.558594 313.964844 219.558594 315.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.222656 285.398438 C 209.222656 287.019531 206.789062 287.019531 206.789062 285.398438 C 206.789062 283.777344 209.222656 283.777344 209.222656 285.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.148438 314.820312 C 242.148438 316.441406 239.71875 316.441406 239.71875 314.820312 C 239.71875 313.203125 242.148438 313.203125 242.148438 314.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.21875 70.910156 L 241.855469 73.746094 L 238.582031 73.746094 Z M 240.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.859375 233.140625 C 329.859375 234.761719 327.429688 234.761719 327.429688 233.140625 C 327.429688 231.519531 329.859375 231.519531 329.859375 233.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.207031 409.195312 C 125.207031 410.816406 122.777344 410.816406 122.777344 409.195312 C 122.777344 407.578125 125.207031 407.578125 125.207031 409.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.90625 70.910156 L 225.542969 73.746094 L 222.269531 73.746094 Z M 223.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 370.832031 251.40625 C 370.832031 253.027344 368.402344 253.027344 368.402344 251.40625 C 368.402344 249.789062 370.832031 249.789062 370.832031 251.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.261719 102.714844 C 176.261719 104.335938 173.832031 104.335938 173.832031 102.714844 C 173.832031 101.09375 176.261719 101.09375 176.261719 102.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.203125 188.238281 C 210.203125 189.859375 207.773438 189.859375 207.773438 188.238281 C 207.773438 186.617188 210.203125 186.617188 210.203125 188.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.800781 70.910156 L 247.4375 73.746094 L 244.164062 73.746094 Z M 245.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.234375 229.660156 C 154.234375 231.28125 151.804688 231.28125 151.804688 229.660156 C 151.804688 228.039062 154.234375 228.039062 154.234375 229.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.296875 244.328125 C 178.296875 245.945312 175.867188 245.945312 175.867188 244.328125 C 175.867188 242.707031 178.296875 242.707031 178.296875 244.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.53125 96.753906 C 195.53125 98.375 193.101562 98.375 193.101562 96.753906 C 193.101562 95.132812 195.53125 95.132812 195.53125 96.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.582031 264.535156 C 127.582031 266.15625 125.152344 266.15625 125.152344 264.535156 C 125.152344 262.914062 127.582031 262.914062 127.582031 264.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.796875 219.136719 C 229.796875 220.757812 227.367188 220.757812 227.367188 219.136719 C 227.367188 217.515625 229.796875 217.515625 229.796875 219.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.640625 169.488281 C 199.640625 171.109375 197.210938 171.109375 197.210938 169.488281 C 197.210938 167.867188 199.640625 167.867188 199.640625 169.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.492188 418.691406 L 241.128906 415.855469 L 237.855469 415.855469 Z M 239.492188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.464844 206.941406 C 226.464844 208.558594 224.035156 208.558594 224.035156 206.941406 C 224.035156 205.320312 226.464844 205.320312 226.464844 206.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.128906 211.742188 C 223.128906 213.363281 220.699219 213.363281 220.699219 211.742188 C 220.699219 210.125 223.128906 210.125 223.128906 211.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.585938 280.914062 C 292.585938 282.535156 290.15625 282.535156 290.15625 280.914062 C 290.15625 279.296875 292.585938 279.296875 292.585938 280.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.015625 295.226562 C 233.015625 296.847656 230.585938 296.847656 230.585938 295.226562 C 230.585938 293.609375 233.015625 293.609375 233.015625 295.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.015625 275.050781 C 257.015625 276.671875 254.585938 276.671875 254.585938 275.050781 C 254.585938 273.433594 257.015625 273.433594 257.015625 275.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.140625 70.910156 L 267.777344 73.746094 L 264.503906 73.746094 Z M 266.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.027344 263.683594 C 206.027344 265.304688 203.597656 265.304688 203.597656 263.683594 C 203.597656 262.0625 206.027344 262.0625 206.027344 263.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.835938 269.871094 C 168.835938 271.492188 166.40625 271.492188 166.40625 269.871094 C 166.40625 268.25 168.835938 268.25 168.835938 269.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.042969 418.691406 L 165.679688 415.855469 L 162.40625 415.855469 Z M 164.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.203125 286.574219 C 199.203125 288.195312 196.773438 288.195312 196.773438 286.574219 C 196.773438 284.953125 199.203125 284.953125 199.203125 286.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.925781 272.875 C 250.925781 274.492188 248.492188 274.492188 248.492188 272.875 C 248.492188 271.253906 250.925781 271.253906 250.925781 272.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.082031 336.902344 C 128.082031 338.523438 125.652344 338.523438 125.652344 336.902344 C 125.652344 335.28125 128.082031 335.28125 128.082031 336.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.925781 349.0625 C 235.925781 350.683594 233.496094 350.683594 233.496094 349.0625 C 233.496094 347.441406 235.925781 347.441406 235.925781 349.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.070312 326.894531 C 252.070312 328.515625 249.640625 328.515625 249.640625 326.894531 C 249.640625 325.273438 252.070312 325.273438 252.070312 326.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.917969 254.242188 C 295.917969 255.863281 293.488281 255.863281 293.488281 254.242188 C 293.488281 252.621094 295.917969 252.621094 295.917969 254.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.066406 212.691406 C 259.066406 214.3125 256.636719 214.3125 256.636719 212.691406 C 256.636719 211.070312 259.066406 211.070312 259.066406 212.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.941406 94.691406 C 206.941406 96.3125 204.511719 96.3125 204.511719 94.691406 C 204.511719 93.074219 206.941406 93.074219 206.941406 94.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.628906 202.375 C 275.628906 203.992188 273.195312 203.992188 273.195312 202.375 C 273.195312 200.753906 275.628906 200.753906 275.628906 202.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.777344 317.074219 C 265.777344 318.695312 263.347656 318.695312 263.347656 317.074219 C 263.347656 315.453125 265.777344 315.453125 265.777344 317.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.550781 222.125 C 274.550781 223.746094 272.121094 223.746094 272.121094 222.125 C 272.121094 220.503906 274.550781 220.503906 274.550781 222.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.785156 93.929688 C 197.785156 95.546875 195.355469 95.546875 195.355469 93.929688 C 195.355469 92.308594 197.785156 92.308594 197.785156 93.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.617188 239.695312 C 261.617188 241.316406 259.1875 241.316406 259.1875 239.695312 C 259.1875 238.074219 261.617188 238.074219 261.617188 239.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.199219 70.910156 L 187.835938 73.746094 L 184.5625 73.746094 Z M 186.199219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.921875 70.910156 L 227.558594 73.746094 L 224.285156 73.746094 Z M 225.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.085938 379.484375 C 294.085938 381.105469 291.652344 381.105469 291.652344 379.484375 C 291.652344 377.863281 294.085938 377.863281 294.085938 379.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.652344 246.960938 C 247.652344 248.582031 245.21875 248.582031 245.21875 246.960938 C 245.21875 245.339844 247.652344 245.339844 247.652344 246.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.550781 304.699219 C 261.550781 306.320312 259.117188 306.320312 259.117188 304.699219 C 259.117188 303.082031 261.550781 303.082031 261.550781 304.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.300781 242.675781 C 261.300781 244.296875 258.871094 244.296875 258.871094 242.675781 C 258.871094 241.058594 261.300781 241.058594 261.300781 242.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.496094 165.207031 C 111.496094 166.828125 109.066406 166.828125 109.066406 165.207031 C 109.066406 163.589844 111.496094 163.589844 111.496094 165.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.171875 284.179688 C 229.171875 285.800781 226.742188 285.800781 226.742188 284.179688 C 226.742188 282.558594 229.171875 282.558594 229.171875 284.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.449219 70.910156 L 235.085938 73.746094 L 231.8125 73.746094 Z M 233.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.074219 168.800781 C 148.074219 170.421875 145.644531 170.421875 145.644531 168.800781 C 145.644531 167.179688 148.074219 167.179688 148.074219 168.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.414062 150.515625 C 209.414062 152.136719 206.984375 152.136719 206.984375 150.515625 C 206.984375 148.894531 209.414062 148.894531 209.414062 150.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.757812 258.660156 C 221.757812 260.277344 219.328125 260.277344 219.328125 258.660156 C 219.328125 257.039062 221.757812 257.039062 221.757812 258.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.503906 195.984375 C 145.503906 197.605469 143.074219 197.605469 143.074219 195.984375 C 143.074219 194.367188 145.503906 194.367188 145.503906 195.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.035156 119.449219 C 265.035156 121.070312 262.605469 121.070312 262.605469 119.449219 C 262.605469 117.832031 265.035156 117.832031 265.035156 119.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 381.625 371.957031 C 381.625 373.578125 379.195312 373.578125 379.195312 371.957031 C 379.195312 370.335938 381.625 370.335938 381.625 371.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.0625 213.65625 C 274.0625 215.277344 271.632812 215.277344 271.632812 213.65625 C 271.632812 212.035156 274.0625 212.035156 274.0625 213.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.425781 273.257812 C 293.425781 274.878906 290.996094 274.878906 290.996094 273.257812 C 290.996094 271.636719 293.425781 271.636719 293.425781 273.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.652344 305.320312 C 289.652344 306.941406 287.222656 306.941406 287.222656 305.320312 C 287.222656 303.703125 289.652344 303.703125 289.652344 305.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.792969 313.726562 C 307.792969 315.347656 305.363281 315.347656 305.363281 313.726562 C 305.363281 312.109375 307.792969 312.109375 307.792969 313.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.5625 70.910156 L 180.199219 73.746094 L 176.925781 73.746094 Z M 178.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.335938 290.933594 C 257.335938 292.550781 254.902344 292.550781 254.902344 290.933594 C 254.902344 289.3125 257.335938 289.3125 257.335938 290.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.308594 270.304688 C 288.308594 271.925781 285.878906 271.925781 285.878906 270.304688 C 285.878906 268.6875 288.308594 268.6875 288.308594 270.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.019531 254.898438 C 256.019531 256.515625 253.585938 256.515625 253.585938 254.898438 C 253.585938 253.277344 256.019531 253.277344 256.019531 254.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.84375 280.15625 C 252.84375 281.777344 250.414062 281.777344 250.414062 280.15625 C 250.414062 278.539062 252.84375 278.539062 252.84375 280.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.519531 251.066406 C 216.519531 252.683594 214.089844 252.683594 214.089844 251.066406 C 214.089844 249.445312 216.519531 249.445312 216.519531 251.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.488281 284.109375 C 243.488281 285.730469 241.058594 285.730469 241.058594 284.109375 C 241.058594 282.492188 243.488281 282.492188 243.488281 284.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.402344 169.472656 C 217.402344 171.089844 214.972656 171.089844 214.972656 169.472656 C 214.972656 167.851562 217.402344 167.851562 217.402344 169.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.1875 120.046875 C 293.1875 121.667969 290.757812 121.667969 290.757812 120.046875 C 290.757812 118.425781 293.1875 118.425781 293.1875 120.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.769531 301.546875 C 199.769531 303.167969 197.339844 303.167969 197.339844 301.546875 C 197.339844 299.925781 199.769531 299.925781 199.769531 301.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.058594 247.257812 C 205.058594 248.878906 202.628906 248.878906 202.628906 247.257812 C 202.628906 245.636719 205.058594 245.636719 205.058594 247.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.421875 139.796875 C 166.421875 141.417969 163.992188 141.417969 163.992188 139.796875 C 163.992188 138.179688 166.421875 138.179688 166.421875 139.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.800781 294.183594 C 276.800781 295.804688 274.371094 295.804688 274.371094 294.183594 C 274.371094 292.5625 276.800781 292.5625 276.800781 294.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.695312 165.835938 C 128.695312 167.457031 126.265625 167.457031 126.265625 165.835938 C 126.265625 164.21875 128.695312 164.21875 128.695312 165.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.03125 182.523438 C 269.03125 184.140625 266.601562 184.140625 266.601562 182.523438 C 266.601562 180.902344 269.03125 180.902344 269.03125 182.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.28125 230.332031 C 268.28125 231.953125 265.851562 231.953125 265.851562 230.332031 C 265.851562 228.714844 268.28125 228.714844 268.28125 230.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.039062 231.769531 C 215.039062 233.390625 212.609375 233.390625 212.609375 231.769531 C 212.609375 230.152344 215.039062 230.152344 215.039062 231.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.617188 70.910156 L 210.253906 73.746094 L 206.980469 73.746094 Z M 208.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.042969 343.441406 C 287.042969 345.0625 284.613281 345.0625 284.613281 343.441406 C 284.613281 341.820312 287.042969 341.820312 287.042969 343.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.15625 288.132812 C 256.15625 289.75 253.726562 289.75 253.726562 288.132812 C 253.726562 286.511719 256.15625 286.511719 256.15625 288.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.996094 206.804688 C 259.996094 208.425781 257.566406 208.425781 257.566406 206.804688 C 257.566406 205.183594 259.996094 205.183594 259.996094 206.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.320312 198.085938 C 245.320312 199.707031 242.890625 199.707031 242.890625 198.085938 C 242.890625 196.46875 245.320312 196.46875 245.320312 198.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.445312 369.640625 C 159.445312 371.261719 157.015625 371.261719 157.015625 369.640625 C 157.015625 368.023438 159.445312 368.023438 159.445312 369.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.832031 218.59375 C 278.832031 220.214844 276.402344 220.214844 276.402344 218.59375 C 276.402344 216.976562 278.832031 216.976562 278.832031 218.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.644531 418.691406 L 109.277344 415.855469 L 106.007812 415.855469 Z M 107.644531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.5 246.742188 C 278.5 248.363281 276.070312 248.363281 276.070312 246.742188 C 276.070312 245.121094 278.5 245.121094 278.5 246.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.375 70.910156 L 181.011719 73.746094 L 177.738281 73.746094 Z M 179.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.40625 223.671875 C 252.40625 225.289062 249.976562 225.289062 249.976562 223.671875 C 249.976562 222.050781 252.40625 222.050781 252.40625 223.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.972656 206.582031 C 302.972656 208.203125 300.542969 208.203125 300.542969 206.582031 C 300.542969 204.964844 302.972656 204.964844 302.972656 206.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.824219 418.691406 L 220.460938 415.855469 L 217.1875 415.855469 Z M 218.824219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.109375 219.921875 C 264.109375 221.539062 261.679688 221.539062 261.679688 219.921875 C 261.679688 218.300781 264.109375 218.300781 264.109375 219.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.433594 360.707031 C 197.433594 362.328125 195 362.328125 195 360.707031 C 195 359.085938 197.433594 359.085938 197.433594 360.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.394531 187.136719 C 267.394531 188.753906 264.964844 188.753906 264.964844 187.136719 C 264.964844 185.515625 267.394531 185.515625 267.394531 187.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.472656 84.269531 C 261.472656 85.886719 259.042969 85.886719 259.042969 84.269531 C 259.042969 82.648438 261.472656 82.648438 261.472656 84.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.652344 70.910156 L 278.289062 73.746094 L 275.015625 73.746094 Z M 276.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.28125 257.632812 C 135.28125 259.253906 132.851562 259.253906 132.851562 257.632812 C 132.851562 256.011719 135.28125 256.011719 135.28125 257.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.007812 266.25 C 243.007812 267.871094 240.578125 267.871094 240.578125 266.25 C 240.578125 264.628906 243.007812 264.628906 243.007812 266.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.660156 196.710938 C 308.660156 198.332031 306.230469 198.332031 306.230469 196.710938 C 306.230469 195.089844 308.660156 195.089844 308.660156 196.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.613281 418.691406 L 151.25 415.855469 L 147.976562 415.855469 Z M 149.613281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.46875 260.929688 C 284.46875 262.550781 282.039062 262.550781 282.039062 260.929688 C 282.039062 259.308594 284.46875 259.308594 284.46875 260.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.3125 264.832031 C 266.3125 266.449219 263.882812 266.449219 263.882812 264.832031 C 263.882812 263.210938 266.3125 263.210938 266.3125 264.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.375 278.558594 C 284.375 280.175781 281.945312 280.175781 281.945312 278.558594 C 281.945312 276.9375 284.375 276.9375 284.375 278.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.0625 122.125 C 249.0625 123.746094 246.632812 123.746094 246.632812 122.125 C 246.632812 120.503906 249.0625 120.503906 249.0625 122.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.566406 268.382812 C 276.566406 270 274.136719 270 274.136719 268.382812 C 274.136719 266.761719 276.566406 266.761719 276.566406 268.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.035156 418.691406 L 278.671875 415.855469 L 275.398438 415.855469 Z M 277.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.40625 208.410156 C 245.40625 210.03125 242.976562 210.03125 242.976562 208.410156 C 242.976562 206.789062 245.40625 206.789062 245.40625 208.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.613281 266.972656 C 301.613281 268.59375 299.183594 268.59375 299.183594 266.972656 C 299.183594 265.355469 301.613281 265.355469 301.613281 266.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.789062 359.296875 C 271.789062 360.914062 269.359375 360.914062 269.359375 359.296875 C 269.359375 357.675781 271.789062 357.675781 271.789062 359.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.667969 355.339844 C 277.667969 356.957031 275.238281 356.957031 275.238281 355.339844 C 275.238281 353.71875 277.667969 353.71875 277.667969 355.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.976562 274.597656 C 189.976562 276.214844 187.546875 276.214844 187.546875 274.597656 C 187.546875 272.976562 189.976562 272.976562 189.976562 274.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.902344 313.523438 C 230.902344 315.140625 228.472656 315.140625 228.472656 313.523438 C 228.472656 311.902344 230.902344 311.902344 230.902344 313.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.179688 257.246094 C 308.179688 258.867188 305.75 258.867188 305.75 257.246094 C 305.75 255.628906 308.179688 255.628906 308.179688 257.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.621094 306.648438 C 271.621094 308.269531 269.191406 308.269531 269.191406 306.648438 C 269.191406 305.027344 271.621094 305.027344 271.621094 306.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.285156 266.445312 C 222.285156 268.066406 219.855469 268.066406 219.855469 266.445312 C 219.855469 264.824219 222.285156 264.824219 222.285156 266.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.25 281.960938 C 241.25 283.582031 238.816406 283.582031 238.816406 281.960938 C 238.816406 280.339844 241.25 280.339844 241.25 281.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.628906 138.308594 C 286.628906 139.929688 284.199219 139.929688 284.199219 138.308594 C 284.199219 136.691406 286.628906 136.691406 286.628906 138.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.128906 155.515625 C 208.128906 157.132812 205.699219 157.132812 205.699219 155.515625 C 205.699219 153.894531 208.128906 153.894531 208.128906 155.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.621094 287.644531 C 247.621094 289.261719 245.191406 289.261719 245.191406 287.644531 C 245.191406 286.023438 247.621094 286.023438 247.621094 287.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.289062 70.910156 L 207.921875 73.746094 L 204.652344 73.746094 Z M 206.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.808594 285.550781 C 240.808594 287.171875 238.378906 287.171875 238.378906 285.550781 C 238.378906 283.929688 240.808594 283.929688 240.808594 285.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.742188 237.800781 C 243.742188 239.421875 241.308594 239.421875 241.308594 237.800781 C 241.308594 236.183594 243.742188 236.183594 243.742188 237.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.996094 239.160156 C 268.996094 240.78125 266.566406 240.78125 266.566406 239.160156 C 266.566406 237.542969 268.996094 237.542969 268.996094 239.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.617188 215.65625 C 283.617188 217.273438 281.1875 217.273438 281.1875 215.65625 C 281.1875 214.035156 283.617188 214.035156 283.617188 215.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.808594 250.839844 C 248.808594 252.460938 246.378906 252.460938 246.378906 250.839844 C 246.378906 249.21875 248.808594 249.21875 248.808594 250.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.335938 385.082031 C 207.335938 386.699219 204.90625 386.699219 204.90625 385.082031 C 204.90625 383.460938 207.335938 383.460938 207.335938 385.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.304688 252.1875 C 235.304688 253.808594 232.875 253.808594 232.875 252.1875 C 232.875 250.570312 235.304688 250.570312 235.304688 252.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.816406 284.46875 C 133.816406 286.089844 131.386719 286.089844 131.386719 284.46875 C 131.386719 282.847656 133.816406 282.847656 133.816406 284.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.902344 135.03125 C 157.902344 136.652344 155.472656 136.652344 155.472656 135.03125 C 155.472656 133.410156 157.902344 133.410156 157.902344 135.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.0625 323.480469 C 209.0625 325.097656 206.632812 325.097656 206.632812 323.480469 C 206.632812 321.859375 209.0625 321.859375 209.0625 323.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.625 375.832031 C 118.625 377.449219 116.195312 377.449219 116.195312 375.832031 C 116.195312 374.210938 118.625 374.210938 118.625 375.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.316406 418.691406 L 174.953125 415.855469 L 171.679688 415.855469 Z M 173.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.46875 331.441406 C 192.46875 333.058594 190.035156 333.058594 190.035156 331.441406 C 190.035156 329.820312 192.46875 329.820312 192.46875 331.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.230469 375.316406 C 169.230469 376.9375 166.800781 376.9375 166.800781 375.316406 C 166.800781 373.699219 169.230469 373.699219 169.230469 375.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.066406 251.867188 C 238.066406 253.488281 235.636719 253.488281 235.636719 251.867188 C 235.636719 250.25 238.066406 250.25 238.066406 251.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.019531 333.484375 C 273.019531 335.105469 270.589844 335.105469 270.589844 333.484375 C 270.589844 331.863281 273.019531 331.863281 273.019531 333.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.367188 339.90625 C 259.367188 341.527344 256.9375 341.527344 256.9375 339.90625 C 256.9375 338.289062 259.367188 338.289062 259.367188 339.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.957031 190.644531 C 143.957031 192.265625 141.527344 192.265625 141.527344 190.644531 C 141.527344 189.023438 143.957031 189.023438 143.957031 190.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.574219 301.457031 C 317.574219 303.078125 315.144531 303.078125 315.144531 301.457031 C 315.144531 299.839844 317.574219 299.839844 317.574219 301.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.574219 368.5 C 266.574219 370.117188 264.144531 370.117188 264.144531 368.5 C 264.144531 366.878906 266.574219 366.878906 266.574219 368.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.566406 70.910156 L 291.203125 73.746094 L 287.929688 73.746094 Z M 289.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.410156 220.101562 C 280.410156 221.722656 277.980469 221.722656 277.980469 220.101562 C 277.980469 218.484375 280.410156 218.484375 280.410156 220.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.199219 200.554688 C 286.199219 202.171875 283.769531 202.171875 283.769531 200.554688 C 283.769531 198.933594 286.199219 198.933594 286.199219 200.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.199219 418.691406 L 340.832031 415.855469 L 337.5625 415.855469 Z M 339.199219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.746094 277.347656 C 341.746094 278.96875 339.3125 278.96875 339.3125 277.347656 C 339.3125 275.726562 341.746094 275.726562 341.746094 277.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.753906 224.515625 C 195.753906 226.136719 193.324219 226.136719 193.324219 224.515625 C 193.324219 222.894531 195.753906 222.894531 195.753906 224.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.265625 363.613281 C 217.265625 365.230469 214.832031 365.230469 214.832031 363.613281 C 214.832031 361.992188 217.265625 361.992188 217.265625 363.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.875 195.773438 C 223.875 197.390625 221.445312 197.390625 221.445312 195.773438 C 221.445312 194.152344 223.875 194.152344 223.875 195.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.058594 70.910156 L 192.695312 73.746094 L 189.425781 73.746094 Z M 191.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.527344 70.910156 L 160.164062 73.746094 L 156.894531 73.746094 Z M 158.527344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.910156 293.199219 C 289.910156 294.816406 287.480469 294.816406 287.480469 293.199219 C 287.480469 291.578125 289.910156 291.578125 289.910156 293.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.710938 418.691406 L 184.347656 415.855469 L 181.074219 415.855469 Z M 182.710938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.433594 418.691406 L 158.070312 415.855469 L 154.796875 415.855469 Z M 156.433594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.515625 418.691406 L 187.152344 415.855469 L 183.878906 415.855469 Z M 185.515625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.113281 306.023438 C 242.113281 307.644531 239.683594 307.644531 239.683594 306.023438 C 239.683594 304.40625 242.113281 304.40625 242.113281 306.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.933594 206.125 C 269.933594 207.746094 267.5 207.746094 267.5 206.125 C 267.5 204.507812 269.933594 204.507812 269.933594 206.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.457031 70.910156 L 219.09375 73.746094 L 215.820312 73.746094 Z M 217.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.804688 176.691406 C 275.804688 178.3125 273.375 178.3125 273.375 176.691406 C 273.375 175.070312 275.804688 175.070312 275.804688 176.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.84375 282.644531 C 251.84375 284.261719 249.414062 284.261719 249.414062 282.644531 C 249.414062 281.023438 251.84375 281.023438 251.84375 282.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.492188 266.121094 C 295.492188 267.742188 293.058594 267.742188 293.058594 266.121094 C 293.058594 264.503906 295.492188 264.503906 295.492188 266.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.144531 108.878906 C 262.144531 110.5 259.714844 110.5 259.714844 108.878906 C 259.714844 107.257812 262.144531 107.257812 262.144531 108.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.921875 70.910156 L 240.558594 73.746094 L 237.289062 73.746094 Z M 238.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.082031 178.316406 C 248.082031 179.933594 245.652344 179.933594 245.652344 178.316406 C 245.652344 176.695312 248.082031 176.695312 248.082031 178.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.296875 322.9375 C 316.296875 324.558594 313.867188 324.558594 313.867188 322.9375 C 313.867188 321.316406 316.296875 321.316406 316.296875 322.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.046875 229.359375 C 252.046875 230.980469 249.617188 230.980469 249.617188 229.359375 C 249.617188 227.742188 252.046875 227.742188 252.046875 229.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.203125 212.992188 C 257.203125 214.613281 254.773438 214.613281 254.773438 212.992188 C 254.773438 211.375 257.203125 211.375 257.203125 212.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.273438 219.1875 C 260.273438 220.808594 257.84375 220.808594 257.84375 219.1875 C 257.84375 217.566406 260.273438 217.566406 260.273438 219.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.390625 220.917969 C 206.390625 222.539062 203.960938 222.539062 203.960938 220.917969 C 203.960938 219.296875 206.390625 219.296875 206.390625 220.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.746094 147.824219 C 157.746094 149.445312 155.316406 149.445312 155.316406 147.824219 C 155.316406 146.207031 157.746094 146.207031 157.746094 147.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.804688 151.632812 C 130.804688 153.25 128.375 153.25 128.375 151.632812 C 128.375 150.011719 130.804688 150.011719 130.804688 151.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.167969 418.691406 L 233.804688 415.855469 L 230.53125 415.855469 Z M 232.167969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.882812 245.140625 C 161.882812 246.761719 159.453125 246.761719 159.453125 245.140625 C 159.453125 243.523438 161.882812 243.523438 161.882812 245.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.492188 287.828125 C 346.492188 289.449219 344.0625 289.449219 344.0625 287.828125 C 344.0625 286.207031 346.492188 286.207031 346.492188 287.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.921875 256.8125 C 198.921875 258.433594 196.492188 258.433594 196.492188 256.8125 C 196.492188 255.191406 198.921875 255.191406 198.921875 256.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.042969 205.070312 C 255.042969 206.691406 252.613281 206.691406 252.613281 205.070312 C 252.613281 203.449219 255.042969 203.449219 255.042969 205.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.863281 287.105469 C 233.863281 288.726562 231.433594 288.726562 231.433594 287.105469 C 231.433594 285.484375 233.863281 285.484375 233.863281 287.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.894531 418.691406 L 199.53125 415.855469 L 196.257812 415.855469 Z M 197.894531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.167969 260.484375 C 296.167969 262.105469 293.738281 262.105469 293.738281 260.484375 C 293.738281 258.863281 296.167969 258.863281 296.167969 260.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.550781 292.957031 C 251.550781 294.578125 249.121094 294.578125 249.121094 292.957031 C 249.121094 291.335938 251.550781 291.335938 251.550781 292.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.488281 311.203125 C 228.488281 312.824219 226.058594 312.824219 226.058594 311.203125 C 226.058594 309.585938 228.488281 309.585938 228.488281 311.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.402344 172.394531 C 128.402344 174.015625 125.972656 174.015625 125.972656 172.394531 C 125.972656 170.777344 128.402344 170.777344 128.402344 172.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.578125 418.691406 L 157.214844 415.855469 L 153.941406 415.855469 Z M 155.578125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.8125 111.789062 C 207.8125 113.410156 205.382812 113.410156 205.382812 111.789062 C 205.382812 110.167969 207.8125 110.167969 207.8125 111.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.773438 323.5625 C 274.773438 325.179688 272.34375 325.179688 272.34375 323.5625 C 272.34375 321.941406 274.773438 321.941406 274.773438 323.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.390625 343.539062 C 305.390625 345.160156 302.960938 345.160156 302.960938 343.539062 C 302.960938 341.921875 305.390625 341.921875 305.390625 343.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.335938 338.277344 C 238.335938 339.898438 235.90625 339.898438 235.90625 338.277344 C 235.90625 336.65625 238.335938 336.65625 238.335938 338.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.890625 222.4375 C 133.890625 224.058594 131.460938 224.058594 131.460938 222.4375 C 131.460938 220.816406 133.890625 220.816406 133.890625 222.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.0625 251.570312 C 198.0625 253.191406 195.632812 253.191406 195.632812 251.570312 C 195.632812 249.949219 198.0625 249.949219 198.0625 251.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.273438 219.980469 C 248.273438 221.601562 245.84375 221.601562 245.84375 219.980469 C 245.84375 218.363281 248.273438 218.363281 248.273438 219.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.621094 141.757812 C 253.621094 143.378906 251.191406 143.378906 251.191406 141.757812 C 251.191406 140.136719 253.621094 140.136719 253.621094 141.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.980469 418.691406 L 134.617188 415.855469 L 131.34375 415.855469 Z M 132.980469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.605469 252.09375 C 207.605469 253.714844 205.175781 253.714844 205.175781 252.09375 C 205.175781 250.472656 207.605469 250.472656 207.605469 252.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.375 76.949219 C 226.375 78.566406 223.945312 78.566406 223.945312 76.949219 C 223.945312 75.328125 226.375 75.328125 226.375 76.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.015625 199.886719 C 242.015625 201.503906 239.582031 201.503906 239.582031 199.886719 C 239.582031 198.265625 242.015625 198.265625 242.015625 199.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.515625 305.570312 C 258.515625 307.191406 256.085938 307.191406 256.085938 305.570312 C 256.085938 303.949219 258.515625 303.949219 258.515625 305.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.933594 182.917969 C 268.933594 184.535156 266.503906 184.535156 266.503906 182.917969 C 266.503906 181.296875 268.933594 181.296875 268.933594 182.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.003906 143.410156 C 230.003906 145.03125 227.574219 145.03125 227.574219 143.410156 C 227.574219 141.789062 230.003906 141.789062 230.003906 143.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.519531 266.097656 C 285.519531 267.71875 283.089844 267.71875 283.089844 266.097656 C 283.089844 264.476562 285.519531 264.476562 285.519531 266.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.207031 264.023438 C 305.207031 265.640625 302.777344 265.640625 302.777344 264.023438 C 302.777344 262.402344 305.207031 262.402344 305.207031 264.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.484375 302.394531 C 125.484375 304.011719 123.054688 304.011719 123.054688 302.394531 C 123.054688 300.773438 125.484375 300.773438 125.484375 302.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.796875 322.691406 C 275.796875 324.3125 273.367188 324.3125 273.367188 322.691406 C 273.367188 321.074219 275.796875 321.074219 275.796875 322.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.925781 272.476562 C 271.925781 274.097656 269.496094 274.097656 269.496094 272.476562 C 269.496094 270.855469 271.925781 270.855469 271.925781 272.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.355469 225.042969 C 288.355469 226.664062 285.925781 226.664062 285.925781 225.042969 C 285.925781 223.425781 288.355469 223.425781 288.355469 225.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.6875 269.875 C 271.6875 271.496094 269.257812 271.496094 269.257812 269.875 C 269.257812 268.253906 271.6875 268.253906 271.6875 269.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.039062 339.78125 C 112.039062 341.402344 109.609375 341.402344 109.609375 339.78125 C 109.609375 338.164062 112.039062 338.164062 112.039062 339.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.828125 262.25 C 290.828125 263.867188 288.398438 263.867188 288.398438 262.25 C 288.398438 260.628906 290.828125 260.628906 290.828125 262.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.703125 266.6875 C 218.703125 268.308594 216.273438 268.308594 216.273438 266.6875 C 216.273438 265.070312 218.703125 265.070312 218.703125 266.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.558594 263.628906 C 285.558594 265.25 283.128906 265.25 283.128906 263.628906 C 283.128906 262.011719 285.558594 262.011719 285.558594 263.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.824219 257.8125 C 305.824219 259.429688 303.394531 259.429688 303.394531 257.8125 C 303.394531 256.191406 305.824219 256.191406 305.824219 257.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.300781 298.734375 C 169.300781 300.355469 166.871094 300.355469 166.871094 298.734375 C 166.871094 297.113281 169.300781 297.113281 169.300781 298.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.46875 138.695312 C 222.46875 140.316406 220.039062 140.316406 220.039062 138.695312 C 220.039062 137.074219 222.46875 137.074219 222.46875 138.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.726562 177.539062 C 282.726562 179.15625 280.296875 179.15625 280.296875 177.539062 C 280.296875 175.917969 282.726562 175.917969 282.726562 177.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.296875 418.691406 L 138.933594 415.855469 L 135.660156 415.855469 Z M 137.296875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.484375 353.335938 C 298.484375 354.957031 296.054688 354.957031 296.054688 353.335938 C 296.054688 351.71875 298.484375 351.71875 298.484375 353.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.734375 341.363281 C 295.734375 342.984375 293.304688 342.984375 293.304688 341.363281 C 293.304688 339.742188 295.734375 339.742188 295.734375 341.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.257812 91.125 C 206.257812 92.746094 203.828125 92.746094 203.828125 91.125 C 203.828125 89.503906 206.257812 89.503906 206.257812 91.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.183594 218.972656 C 250.183594 220.589844 247.753906 220.589844 247.753906 218.972656 C 247.753906 217.351562 250.183594 217.351562 250.183594 218.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.976562 222.078125 C 206.976562 223.695312 204.546875 223.695312 204.546875 222.078125 C 204.546875 220.457031 206.976562 220.457031 206.976562 222.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.910156 154.480469 C 247.910156 156.101562 245.480469 156.101562 245.480469 154.480469 C 245.480469 152.859375 247.910156 152.859375 247.910156 154.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.871094 246.5625 C 270.871094 248.183594 268.441406 248.183594 268.441406 246.5625 C 268.441406 244.941406 270.871094 244.941406 270.871094 246.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.519531 210.171875 C 244.519531 211.789062 242.089844 211.789062 242.089844 210.171875 C 242.089844 208.550781 244.519531 208.550781 244.519531 210.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.757812 70.910156 L 242.390625 73.746094 L 239.121094 73.746094 Z M 240.757812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.140625 70.910156 L 201.777344 73.746094 L 198.503906 73.746094 Z M 200.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.324219 316.011719 C 243.324219 317.632812 240.894531 317.632812 240.894531 316.011719 C 240.894531 314.390625 243.324219 314.390625 243.324219 316.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.734375 138.171875 C 240.734375 139.792969 238.304688 139.792969 238.304688 138.171875 C 238.304688 136.550781 240.734375 136.550781 240.734375 138.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.207031 70.910156 L 200.84375 73.746094 L 197.570312 73.746094 Z M 199.207031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.605469 70.910156 L 241.242188 73.746094 L 237.96875 73.746094 Z M 239.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.574219 264.390625 C 295.574219 266.011719 293.144531 266.011719 293.144531 264.390625 C 293.144531 262.769531 295.574219 262.769531 295.574219 264.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.757812 156.226562 C 227.757812 157.847656 225.328125 157.847656 225.328125 156.226562 C 225.328125 154.605469 227.757812 154.605469 227.757812 156.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.058594 70.910156 L 214.695312 73.746094 L 211.421875 73.746094 Z M 213.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.1875 240 C 304.1875 241.621094 301.757812 241.621094 301.757812 240 C 301.757812 238.382812 304.1875 238.382812 304.1875 240 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.679688 209.167969 C 224.679688 210.789062 222.25 210.789062 222.25 209.167969 C 222.25 207.546875 224.679688 207.546875 224.679688 209.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.828125 227.226562 C 164.828125 228.847656 162.398438 228.847656 162.398438 227.226562 C 162.398438 225.609375 164.828125 225.609375 164.828125 227.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.886719 318.378906 C 203.886719 320 201.457031 320 201.457031 318.378906 C 201.457031 316.757812 203.886719 316.757812 203.886719 318.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.175781 323.449219 C 215.175781 325.070312 212.746094 325.070312 212.746094 323.449219 C 212.746094 321.828125 215.175781 321.828125 215.175781 323.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.152344 275.273438 C 278.152344 276.894531 275.722656 276.894531 275.722656 275.273438 C 275.722656 273.65625 278.152344 273.65625 278.152344 275.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.828125 323.652344 C 287.828125 325.273438 285.398438 325.273438 285.398438 323.652344 C 285.398438 322.035156 287.828125 322.035156 287.828125 323.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.058594 327.433594 C 239.058594 329.054688 236.628906 329.054688 236.628906 327.433594 C 236.628906 325.816406 239.058594 325.816406 239.058594 327.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.828125 152.652344 C 241.828125 154.269531 239.394531 154.269531 239.394531 152.652344 C 239.394531 151.03125 241.828125 151.03125 241.828125 152.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.179688 70.910156 L 135.816406 73.746094 L 132.542969 73.746094 Z M 134.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.886719 269.808594 C 270.886719 271.429688 268.457031 271.429688 268.457031 269.808594 C 268.457031 268.191406 270.886719 268.191406 270.886719 269.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.460938 194.886719 C 232.460938 196.507812 230.03125 196.507812 230.03125 194.886719 C 230.03125 193.265625 232.460938 193.265625 232.460938 194.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.691406 149.820312 C 174.691406 151.4375 172.261719 151.4375 172.261719 149.820312 C 172.261719 148.199219 174.691406 148.199219 174.691406 149.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.535156 212.210938 C 273.535156 213.828125 271.105469 213.828125 271.105469 212.210938 C 271.105469 210.589844 273.535156 210.589844 273.535156 212.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.988281 72.8125 C 189.988281 74.433594 187.558594 74.433594 187.558594 72.8125 C 187.558594 71.195312 189.988281 71.195312 189.988281 72.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.097656 91.988281 C 244.097656 93.605469 241.667969 93.605469 241.667969 91.988281 C 241.667969 90.367188 244.097656 90.367188 244.097656 91.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.972656 70.910156 L 153.609375 73.746094 L 150.335938 73.746094 Z M 151.972656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.367188 70.910156 L 172.003906 73.746094 L 168.730469 73.746094 Z M 170.367188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.804688 70.910156 L 144.441406 73.746094 L 141.167969 73.746094 Z M 142.804688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.089844 70.910156 L 245.726562 73.746094 L 242.453125 73.746094 Z M 244.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.734375 273.824219 C 245.734375 275.441406 243.304688 275.441406 243.304688 273.824219 C 243.304688 272.203125 245.734375 272.203125 245.734375 273.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.183594 70.910156 L 121.820312 73.746094 L 118.546875 73.746094 Z M 120.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.808594 112.144531 C 252.808594 113.765625 250.378906 113.765625 250.378906 112.144531 C 250.378906 110.527344 252.808594 110.527344 252.808594 112.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.296875 194.445312 C 250.296875 196.066406 247.867188 196.066406 247.867188 194.445312 C 247.867188 192.828125 250.296875 192.828125 250.296875 194.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.425781 304.621094 C 267.425781 306.242188 264.996094 306.242188 264.996094 304.621094 C 264.996094 303.003906 267.425781 303.003906 267.425781 304.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.671875 351.070312 C 228.671875 352.6875 226.242188 352.6875 226.242188 351.070312 C 226.242188 349.449219 228.671875 349.449219 228.671875 351.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.941406 216.472656 C 308.941406 218.09375 306.511719 218.09375 306.511719 216.472656 C 306.511719 214.851562 308.941406 214.851562 308.941406 216.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.148438 308.359375 C 269.148438 309.976562 266.71875 309.976562 266.71875 308.359375 C 266.71875 306.738281 269.148438 306.738281 269.148438 308.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.339844 291.40625 C 287.339844 293.027344 284.910156 293.027344 284.910156 291.40625 C 284.910156 289.785156 287.339844 289.785156 287.339844 291.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 399.503906 255.910156 C 399.503906 257.53125 397.074219 257.53125 397.074219 255.910156 C 397.074219 254.292969 399.503906 254.292969 399.503906 255.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 385.050781 268.835938 C 385.050781 270.457031 382.621094 270.457031 382.621094 268.835938 C 382.621094 267.214844 385.050781 267.214844 385.050781 268.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.464844 184.679688 C 275.464844 186.300781 273.035156 186.300781 273.035156 184.679688 C 273.035156 183.058594 275.464844 183.058594 275.464844 184.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.03125 258.117188 C 242.03125 259.738281 239.601562 259.738281 239.601562 258.117188 C 239.601562 256.496094 242.03125 256.496094 242.03125 258.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.949219 250.980469 C 266.949219 252.601562 264.519531 252.601562 264.519531 250.980469 C 264.519531 249.359375 266.949219 249.359375 266.949219 250.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.0625 254.457031 C 129.0625 256.074219 126.632812 256.074219 126.632812 254.457031 C 126.632812 252.835938 129.0625 252.835938 129.0625 254.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.855469 209.378906 C 185.855469 210.996094 183.425781 210.996094 183.425781 209.378906 C 183.425781 207.757812 185.855469 207.757812 185.855469 209.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.378906 95.378906 C 123.378906 96.996094 120.949219 96.996094 120.949219 95.378906 C 120.949219 93.757812 123.378906 93.757812 123.378906 95.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.691406 275.828125 C 331.691406 277.445312 329.261719 277.445312 329.261719 275.828125 C 329.261719 274.207031 331.691406 274.207031 331.691406 275.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.105469 256.707031 C 266.105469 258.328125 263.675781 258.328125 263.675781 256.707031 C 263.675781 255.089844 266.105469 255.089844 266.105469 256.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.234375 259.492188 C 205.234375 261.113281 202.804688 261.113281 202.804688 259.492188 C 202.804688 257.871094 205.234375 257.871094 205.234375 259.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.269531 253.585938 C 298.269531 255.203125 295.839844 255.203125 295.839844 253.585938 C 295.839844 251.964844 298.269531 251.964844 298.269531 253.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.324219 70.910156 L 127.960938 73.746094 L 124.6875 73.746094 Z M 126.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.992188 133.527344 C 151.992188 135.148438 149.5625 135.148438 149.5625 133.527344 C 149.5625 131.910156 151.992188 131.910156 151.992188 133.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.199219 70.910156 L 193.835938 73.746094 L 190.5625 73.746094 Z M 192.199219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.789062 222.679688 C 224.789062 224.300781 222.359375 224.300781 222.359375 222.679688 C 222.359375 221.0625 224.789062 221.0625 224.789062 222.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.722656 301.929688 C 168.722656 303.546875 166.292969 303.546875 166.292969 301.929688 C 166.292969 300.308594 168.722656 300.308594 168.722656 301.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.628906 70.910156 L 208.265625 73.746094 L 204.992188 73.746094 Z M 206.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.457031 258.292969 C 274.457031 259.914062 272.027344 259.914062 272.027344 258.292969 C 272.027344 256.675781 274.457031 256.675781 274.457031 258.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.523438 304.847656 C 191.523438 306.464844 189.09375 306.464844 189.09375 304.847656 C 189.09375 303.226562 191.523438 303.226562 191.523438 304.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.839844 305.015625 C 216.839844 306.636719 214.410156 306.636719 214.410156 305.015625 C 214.410156 303.394531 216.839844 303.394531 216.839844 305.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.011719 70.910156 L 325.648438 73.746094 L 322.375 73.746094 Z M 324.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.410156 152.992188 C 213.410156 154.613281 210.980469 154.613281 210.980469 152.992188 C 210.980469 151.371094 213.410156 151.371094 213.410156 152.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.894531 269.324219 C 276.894531 270.941406 274.464844 270.941406 274.464844 269.324219 C 274.464844 267.703125 276.894531 267.703125 276.894531 269.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.90625 222.800781 C 260.90625 224.421875 258.476562 224.421875 258.476562 222.800781 C 258.476562 221.179688 260.90625 221.179688 260.90625 222.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.382812 70.910156 L 170.019531 73.746094 L 166.746094 73.746094 Z M 168.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.398438 207.222656 C 254.398438 208.84375 251.96875 208.84375 251.96875 207.222656 C 251.96875 205.601562 254.398438 205.601562 254.398438 207.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.925781 331.933594 C 216.925781 333.554688 214.496094 333.554688 214.496094 331.933594 C 214.496094 330.3125 216.925781 330.3125 216.925781 331.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.152344 239.0625 C 262.152344 240.683594 259.722656 240.683594 259.722656 239.0625 C 259.722656 237.445312 262.152344 237.445312 262.152344 239.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.300781 70.910156 L 199.9375 73.746094 L 196.664062 73.746094 Z M 198.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.578125 291.40625 C 289.578125 293.027344 287.148438 293.027344 287.148438 291.40625 C 287.148438 289.785156 289.578125 289.785156 289.578125 291.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.640625 151.902344 C 178.640625 153.523438 176.207031 153.523438 176.207031 151.902344 C 176.207031 150.285156 178.640625 150.285156 178.640625 151.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.328125 242.039062 C 268.328125 243.660156 265.898438 243.660156 265.898438 242.039062 C 265.898438 240.421875 268.328125 240.421875 268.328125 242.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.429688 418.691406 L 182.066406 415.855469 L 178.792969 415.855469 Z M 180.429688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.289062 70.910156 L 140.925781 73.746094 L 137.652344 73.746094 Z M 139.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.34375 260.222656 C 118.34375 261.839844 115.914062 261.839844 115.914062 260.222656 C 115.914062 258.601562 118.34375 258.601562 118.34375 260.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.253906 192.882812 C 236.253906 194.5 233.824219 194.5 233.824219 192.882812 C 233.824219 191.261719 236.253906 191.261719 236.253906 192.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.644531 369.558594 C 230.644531 371.179688 228.214844 371.179688 228.214844 369.558594 C 228.214844 367.941406 230.644531 367.941406 230.644531 369.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.394531 311.339844 C 217.394531 312.960938 214.964844 312.960938 214.964844 311.339844 C 214.964844 309.71875 217.394531 309.71875 217.394531 311.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.007812 264.191406 C 249.007812 265.8125 246.578125 265.8125 246.578125 264.191406 C 246.578125 262.574219 249.007812 262.574219 249.007812 264.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.324219 234.089844 C 228.324219 235.710938 225.894531 235.710938 225.894531 234.089844 C 225.894531 232.472656 228.324219 232.472656 228.324219 234.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.761719 183.175781 C 248.761719 184.796875 246.332031 184.796875 246.332031 183.175781 C 246.332031 181.558594 248.761719 181.558594 248.761719 183.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.816406 233.949219 C 300.816406 235.570312 298.382812 235.570312 298.382812 233.949219 C 298.382812 232.332031 300.816406 232.332031 300.816406 233.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.484375 284.855469 C 307.484375 286.472656 305.054688 286.472656 305.054688 284.855469 C 305.054688 283.234375 307.484375 283.234375 307.484375 284.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.914062 145.804688 C 274.914062 147.421875 272.484375 147.421875 272.484375 145.804688 C 272.484375 144.183594 274.914062 144.183594 274.914062 145.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.5 214.71875 C 227.5 216.335938 225.066406 216.335938 225.066406 214.71875 C 225.066406 213.097656 227.5 213.097656 227.5 214.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241 70.910156 L 242.636719 73.746094 L 239.363281 73.746094 Z M 241 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.804688 112.429688 C 147.804688 114.050781 145.375 114.050781 145.375 112.429688 C 145.375 110.808594 147.804688 110.808594 147.804688 112.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.347656 283.886719 C 160.347656 285.503906 157.917969 285.503906 157.917969 283.886719 C 157.917969 282.265625 160.347656 282.265625 160.347656 283.886719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.597656 418.691406 L 152.234375 415.855469 L 148.960938 415.855469 Z M 150.597656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.746094 235.273438 C 225.746094 236.890625 223.316406 236.890625 223.316406 235.273438 C 223.316406 233.652344 225.746094 233.652344 225.746094 235.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.851562 366.511719 C 258.851562 368.132812 256.421875 368.132812 256.421875 366.511719 C 256.421875 364.890625 258.851562 364.890625 258.851562 366.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.328125 70.910156 L 172.964844 73.746094 L 169.691406 73.746094 Z M 171.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.660156 229.871094 C 153.660156 231.492188 151.230469 231.492188 151.230469 229.871094 C 151.230469 228.25 153.660156 228.25 153.660156 229.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.15625 214.113281 C 303.15625 215.734375 300.726562 215.734375 300.726562 214.113281 C 300.726562 212.496094 303.15625 212.496094 303.15625 214.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.882812 331.035156 C 287.882812 332.65625 285.453125 332.65625 285.453125 331.035156 C 285.453125 329.414062 287.882812 329.414062 287.882812 331.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.769531 252.992188 C 277.769531 254.613281 275.339844 254.613281 275.339844 252.992188 C 275.339844 251.375 277.769531 251.375 277.769531 252.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.660156 418.691406 L 262.296875 415.855469 L 259.023438 415.855469 Z M 260.660156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.855469 270.796875 C 162.855469 272.414062 160.421875 272.414062 160.421875 270.796875 C 160.421875 269.175781 162.855469 269.175781 162.855469 270.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.835938 285.945312 C 195.835938 287.566406 193.40625 287.566406 193.40625 285.945312 C 193.40625 284.324219 195.835938 284.324219 195.835938 285.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.445312 352.09375 C 286.445312 353.714844 284.011719 353.714844 284.011719 352.09375 C 284.011719 350.472656 286.445312 350.472656 286.445312 352.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.25 189.726562 C 215.25 191.347656 212.820312 191.347656 212.820312 189.726562 C 212.820312 188.105469 215.25 188.105469 215.25 189.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.136719 70.910156 L 194.773438 73.746094 L 191.503906 73.746094 Z M 193.136719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.710938 70.910156 L 214.347656 73.746094 L 211.074219 73.746094 Z M 212.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.65625 298.570312 C 259.65625 300.1875 257.226562 300.1875 257.226562 298.570312 C 257.226562 296.949219 259.65625 296.949219 259.65625 298.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.308594 269.257812 C 167.308594 270.878906 164.878906 270.878906 164.878906 269.257812 C 164.878906 267.636719 167.308594 267.636719 167.308594 269.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.226562 335.886719 C 333.226562 337.503906 330.792969 337.503906 330.792969 335.886719 C 330.792969 334.265625 333.226562 334.265625 333.226562 335.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.550781 170.824219 C 256.550781 172.445312 254.121094 172.445312 254.121094 170.824219 C 254.121094 169.207031 256.550781 169.207031 256.550781 170.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.476562 226.902344 C 257.476562 228.523438 255.046875 228.523438 255.046875 226.902344 C 255.046875 225.28125 257.476562 225.28125 257.476562 226.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.757812 305.726562 C 232.757812 307.347656 230.328125 307.347656 230.328125 305.726562 C 230.328125 304.105469 232.757812 304.105469 232.757812 305.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.839844 353.46875 C 278.839844 355.089844 276.410156 355.089844 276.410156 353.46875 C 276.410156 351.847656 278.839844 351.847656 278.839844 353.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.203125 289.507812 C 261.203125 291.128906 258.773438 291.128906 258.773438 289.507812 C 258.773438 287.890625 261.203125 287.890625 261.203125 289.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.722656 418.691406 L 374.359375 415.855469 L 371.085938 415.855469 Z M 372.722656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.261719 141.597656 C 297.261719 143.214844 294.832031 143.214844 294.832031 141.597656 C 294.832031 139.976562 297.261719 139.976562 297.261719 141.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.109375 210.425781 C 241.109375 212.042969 238.679688 212.042969 238.679688 210.425781 C 238.679688 208.804688 241.109375 208.804688 241.109375 210.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.828125 223.058594 C 276.828125 224.675781 274.398438 224.675781 274.398438 223.058594 C 274.398438 221.4375 276.828125 221.4375 276.828125 223.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.882812 245.039062 C 264.882812 246.660156 262.453125 246.660156 262.453125 245.039062 C 262.453125 243.421875 264.882812 243.421875 264.882812 245.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.929688 337.898438 C 321.929688 339.519531 319.5 339.519531 319.5 337.898438 C 319.5 336.28125 321.929688 336.28125 321.929688 337.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.078125 313.035156 C 288.078125 314.65625 285.648438 314.65625 285.648438 313.035156 C 285.648438 311.417969 288.078125 311.417969 288.078125 313.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.925781 188.726562 C 197.925781 190.34375 195.496094 190.34375 195.496094 188.726562 C 195.496094 187.105469 197.925781 187.105469 197.925781 188.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 186.660156 377.660156 C 186.660156 379.277344 184.230469 379.277344 184.230469 377.660156 C 184.230469 376.039062 186.660156 376.039062 186.660156 377.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 428.5 97.15625 C 428.5 98.777344 426.070312 98.777344 426.070312 97.15625 C 426.070312 95.535156 428.5 95.535156 428.5 97.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.066406 272.878906 C 141.066406 274.496094 138.632812 274.496094 138.632812 272.878906 C 138.632812 271.257812 141.066406 271.257812 141.066406 272.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.109375 301.664062 C 308.109375 303.28125 305.679688 303.28125 305.679688 301.664062 C 305.679688 300.042969 308.109375 300.042969 308.109375 301.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.507812 70.910156 L 131.144531 73.746094 L 127.871094 73.746094 Z M 129.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.242188 263.351562 C 255.242188 264.96875 252.8125 264.96875 252.8125 263.351562 C 252.8125 261.730469 255.242188 261.730469 255.242188 263.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.191406 265.257812 C 227.191406 266.878906 224.757812 266.878906 224.757812 265.257812 C 224.757812 263.636719 227.191406 263.636719 227.191406 265.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.5 110.730469 C 181.5 112.347656 179.070312 112.347656 179.070312 110.730469 C 179.070312 109.109375 181.5 109.109375 181.5 110.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.945312 212.140625 C 255.945312 213.761719 253.515625 213.761719 253.515625 212.140625 C 253.515625 210.519531 255.945312 210.519531 255.945312 212.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.378906 364.488281 C 301.378906 366.109375 298.949219 366.109375 298.949219 364.488281 C 298.949219 362.867188 301.378906 362.867188 301.378906 364.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.292969 229.753906 C 191.292969 231.375 188.863281 231.375 188.863281 229.753906 C 188.863281 228.136719 191.292969 228.136719 191.292969 229.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.851562 242.601562 C 267.851562 244.222656 265.421875 244.222656 265.421875 242.601562 C 265.421875 240.984375 267.851562 240.984375 267.851562 242.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.222656 368.316406 C 246.222656 369.9375 243.792969 369.9375 243.792969 368.316406 C 243.792969 366.695312 246.222656 366.695312 246.222656 368.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.960938 280.269531 C 218.960938 281.890625 216.53125 281.890625 216.53125 280.269531 C 216.53125 278.648438 218.960938 278.648438 218.960938 280.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.679688 291.605469 C 251.679688 293.226562 249.25 293.226562 249.25 291.605469 C 249.25 289.984375 251.679688 289.984375 251.679688 291.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.375 139.003906 C 271.375 140.625 268.945312 140.625 268.945312 139.003906 C 268.945312 137.382812 271.375 137.382812 271.375 139.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.976562 70.910156 L 200.613281 73.746094 L 197.339844 73.746094 Z M 198.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.726562 193.175781 C 201.726562 194.796875 199.296875 194.796875 199.296875 193.175781 C 199.296875 191.558594 201.726562 191.558594 201.726562 193.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.109375 285.152344 C 281.109375 286.769531 278.679688 286.769531 278.679688 285.152344 C 278.679688 283.53125 281.109375 283.53125 281.109375 285.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.644531 242.382812 C 278.644531 244.003906 276.214844 244.003906 276.214844 242.382812 C 276.214844 240.765625 278.644531 240.765625 278.644531 242.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.519531 285.65625 C 266.519531 287.277344 264.089844 287.277344 264.089844 285.65625 C 264.089844 284.035156 266.519531 284.035156 266.519531 285.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.527344 320.4375 C 267.527344 322.058594 265.097656 322.058594 265.097656 320.4375 C 265.097656 318.816406 267.527344 318.816406 267.527344 320.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.589844 267.773438 C 225.589844 269.394531 223.160156 269.394531 223.160156 267.773438 C 223.160156 266.152344 225.589844 266.152344 225.589844 267.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.320312 418.691406 L 182.957031 415.855469 L 179.683594 415.855469 Z M 181.320312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.738281 418.691406 L 150.375 415.855469 L 147.101562 415.855469 Z M 148.738281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.410156 288.4375 C 264.410156 290.058594 261.980469 290.058594 261.980469 288.4375 C 261.980469 286.816406 264.410156 286.816406 264.410156 288.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.457031 70.910156 L 164.089844 73.746094 L 160.820312 73.746094 Z M 162.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.222656 191.496094 C 285.222656 193.117188 282.792969 193.117188 282.792969 191.496094 C 282.792969 189.878906 285.222656 189.878906 285.222656 191.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.386719 141.554688 C 131.386719 143.175781 128.957031 143.175781 128.957031 141.554688 C 128.957031 139.9375 131.386719 139.9375 131.386719 141.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.027344 319.898438 C 179.027344 321.519531 176.597656 321.519531 176.597656 319.898438 C 176.597656 318.277344 179.027344 318.277344 179.027344 319.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.367188 269.617188 C 232.367188 271.234375 229.9375 271.234375 229.9375 269.617188 C 229.9375 267.996094 232.367188 267.996094 232.367188 269.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.40625 247.351562 C 259.40625 248.972656 256.976562 248.972656 256.976562 247.351562 C 256.976562 245.734375 259.40625 245.734375 259.40625 247.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.710938 232.117188 C 253.710938 233.738281 251.28125 233.738281 251.28125 232.117188 C 251.28125 230.496094 253.710938 230.496094 253.710938 232.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.636719 255.667969 C 293.636719 257.285156 291.207031 257.285156 291.207031 255.667969 C 291.207031 254.046875 293.636719 254.046875 293.636719 255.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.933594 272.234375 C 263.933594 273.855469 261.503906 273.855469 261.503906 272.234375 C 261.503906 270.613281 263.933594 270.613281 263.933594 272.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.105469 274.039062 C 303.105469 275.65625 300.675781 275.65625 300.675781 274.039062 C 300.675781 272.417969 303.105469 272.417969 303.105469 274.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.765625 100.371094 C 138.765625 101.992188 136.335938 101.992188 136.335938 100.371094 C 136.335938 98.75 138.765625 98.75 138.765625 100.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.289062 304.164062 C 156.289062 305.785156 153.859375 305.785156 153.859375 304.164062 C 153.859375 302.546875 156.289062 302.546875 156.289062 304.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.28125 333.960938 C 237.28125 335.582031 234.851562 335.582031 234.851562 333.960938 C 234.851562 332.339844 237.28125 332.339844 237.28125 333.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.046875 332.296875 C 184.046875 333.917969 181.617188 333.917969 181.617188 332.296875 C 181.617188 330.675781 184.046875 330.675781 184.046875 332.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.277344 270.675781 C 151.277344 272.296875 148.847656 272.296875 148.847656 270.675781 C 148.847656 269.054688 151.277344 269.054688 151.277344 270.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.183594 83.675781 C 141.183594 85.296875 138.753906 85.296875 138.753906 83.675781 C 138.753906 82.054688 141.183594 82.054688 141.183594 83.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.136719 224.921875 C 276.136719 226.542969 273.707031 226.542969 273.707031 224.921875 C 273.707031 223.300781 276.136719 223.300781 276.136719 224.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.453125 79.730469 C 196.453125 81.351562 194.023438 81.351562 194.023438 79.730469 C 194.023438 78.109375 196.453125 78.109375 196.453125 79.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.484375 191.472656 C 257.484375 193.09375 255.050781 193.09375 255.050781 191.472656 C 255.050781 189.855469 257.484375 189.855469 257.484375 191.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.847656 254.058594 C 264.847656 255.679688 262.417969 255.679688 262.417969 254.058594 C 262.417969 252.441406 264.847656 252.441406 264.847656 254.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.46875 294.039062 C 220.46875 295.660156 218.039062 295.660156 218.039062 294.039062 C 218.039062 292.417969 220.46875 292.417969 220.46875 294.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.398438 288.9375 C 194.398438 290.558594 191.96875 290.558594 191.96875 288.9375 C 191.96875 287.320312 194.398438 287.320312 194.398438 288.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.582031 314.398438 C 246.582031 316.019531 244.148438 316.019531 244.148438 314.398438 C 244.148438 312.777344 246.582031 312.777344 246.582031 314.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.890625 271.273438 C 323.890625 272.894531 321.460938 272.894531 321.460938 271.273438 C 321.460938 269.652344 323.890625 269.652344 323.890625 271.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.511719 165.363281 C 235.511719 166.984375 233.082031 166.984375 233.082031 165.363281 C 233.082031 163.746094 235.511719 163.746094 235.511719 165.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.089844 284.609375 C 274.089844 286.230469 271.660156 286.230469 271.660156 284.609375 C 271.660156 282.988281 274.089844 282.988281 274.089844 284.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.742188 301.109375 C 244.742188 302.730469 242.3125 302.730469 242.3125 301.109375 C 242.3125 299.488281 244.742188 299.488281 244.742188 301.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.203125 70.910156 L 220.839844 73.746094 L 217.566406 73.746094 Z M 219.203125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.800781 70.910156 L 232.433594 73.746094 L 229.164062 73.746094 Z M 230.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.027344 252.550781 C 288.027344 254.171875 285.597656 254.171875 285.597656 252.550781 C 285.597656 250.933594 288.027344 250.933594 288.027344 252.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.101562 150.082031 C 233.101562 151.699219 230.671875 151.699219 230.671875 150.082031 C 230.671875 148.460938 233.101562 148.460938 233.101562 150.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.9375 244.019531 C 275.9375 245.636719 273.507812 245.636719 273.507812 244.019531 C 273.507812 242.398438 275.9375 242.398438 275.9375 244.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.195312 144.648438 C 192.195312 146.269531 189.765625 146.269531 189.765625 144.648438 C 189.765625 143.03125 192.195312 143.03125 192.195312 144.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.144531 311.6875 C 288.144531 313.308594 285.714844 313.308594 285.714844 311.6875 C 285.714844 310.070312 288.144531 310.070312 288.144531 311.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.363281 148.070312 C 130.363281 149.691406 127.933594 149.691406 127.933594 148.070312 C 127.933594 146.453125 130.363281 146.453125 130.363281 148.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.039062 238.457031 C 245.039062 240.078125 242.605469 240.078125 242.605469 238.457031 C 242.605469 236.839844 245.039062 236.839844 245.039062 238.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.707031 233.492188 C 326.707031 235.113281 324.277344 235.113281 324.277344 233.492188 C 324.277344 231.871094 326.707031 231.871094 326.707031 233.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.949219 159.988281 C 148.949219 161.605469 146.519531 161.605469 146.519531 159.988281 C 146.519531 158.367188 148.949219 158.367188 148.949219 159.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.523438 70.910156 L 236.160156 73.746094 L 232.886719 73.746094 Z M 234.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.171875 70.910156 L 241.808594 73.746094 L 238.535156 73.746094 Z M 240.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.902344 196.230469 C 293.902344 197.847656 291.472656 197.847656 291.472656 196.230469 C 291.472656 194.609375 293.902344 194.609375 293.902344 196.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.105469 280.6875 C 318.105469 282.308594 315.675781 282.308594 315.675781 280.6875 C 315.675781 279.066406 318.105469 279.066406 318.105469 280.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.039062 263.730469 C 198.039062 265.351562 195.609375 265.351562 195.609375 263.730469 C 195.609375 262.109375 198.039062 262.109375 198.039062 263.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.726562 240.980469 C 308.726562 242.601562 306.296875 242.601562 306.296875 240.980469 C 306.296875 239.359375 308.726562 239.359375 308.726562 240.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.378906 185.308594 C 240.378906 186.929688 237.949219 186.929688 237.949219 185.308594 C 237.949219 183.6875 240.378906 183.6875 240.378906 185.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.847656 70.910156 L 302.484375 73.746094 L 299.210938 73.746094 Z M 300.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.269531 246.078125 C 288.269531 247.699219 285.839844 247.699219 285.839844 246.078125 C 285.839844 244.457031 288.269531 244.457031 288.269531 246.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.476562 418.691406 L 174.109375 415.855469 L 170.839844 415.855469 Z M 172.476562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 382.21875 401.632812 C 382.21875 403.253906 379.789062 403.253906 379.789062 401.632812 C 379.789062 400.011719 382.21875 400.011719 382.21875 401.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.933594 70.910156 L 196.570312 73.746094 L 193.296875 73.746094 Z M 194.933594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.789062 70.910156 L 220.425781 73.746094 L 217.152344 73.746094 Z M 218.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 366.566406 171.199219 C 366.566406 172.820312 364.136719 172.820312 364.136719 171.199219 C 364.136719 169.578125 366.566406 169.578125 366.566406 171.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.398438 70.910156 L 226.035156 73.746094 L 222.761719 73.746094 Z M 224.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.480469 197.363281 C 195.480469 198.984375 193.050781 198.984375 193.050781 197.363281 C 193.050781 195.742188 195.480469 195.742188 195.480469 197.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.582031 108.03125 C 137.582031 109.652344 135.152344 109.652344 135.152344 108.03125 C 135.152344 106.410156 137.582031 106.410156 137.582031 108.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.140625 240.855469 C 290.140625 242.472656 287.710938 242.472656 287.710938 240.855469 C 287.710938 239.234375 290.140625 239.234375 290.140625 240.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.460938 86.230469 C 125.460938 87.851562 123.03125 87.851562 123.03125 86.230469 C 123.03125 84.613281 125.460938 84.613281 125.460938 86.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 430.65625 70.910156 L 432.292969 73.746094 L 429.019531 73.746094 Z M 430.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.882812 258.953125 C 268.882812 260.574219 266.449219 260.574219 266.449219 258.953125 C 266.449219 257.332031 268.882812 257.332031 268.882812 258.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.757812 142.117188 C 244.757812 143.738281 242.328125 143.738281 242.328125 142.117188 C 242.328125 140.496094 244.757812 140.496094 244.757812 142.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.300781 129.929688 C 283.300781 131.546875 280.867188 131.546875 280.867188 129.929688 C 280.867188 128.308594 283.300781 128.308594 283.300781 129.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.347656 184.539062 C 243.347656 186.160156 240.917969 186.160156 240.917969 184.539062 C 240.917969 182.917969 243.347656 182.917969 243.347656 184.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.875 165.558594 C 204.875 167.175781 202.445312 167.175781 202.445312 165.558594 C 202.445312 163.9375 204.875 163.9375 204.875 165.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.707031 418.691406 L 217.34375 415.855469 L 214.070312 415.855469 Z M 215.707031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.835938 235.488281 C 243.835938 237.109375 241.40625 237.109375 241.40625 235.488281 C 241.40625 233.871094 243.835938 233.871094 243.835938 235.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.324219 70.910156 L 148.960938 73.746094 L 145.6875 73.746094 Z M 147.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.757812 379.523438 C 279.757812 381.144531 277.328125 381.144531 277.328125 379.523438 C 277.328125 377.90625 279.757812 377.90625 279.757812 379.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.074219 246.382812 C 293.074219 248 290.644531 248 290.644531 246.382812 C 290.644531 244.761719 293.074219 244.761719 293.074219 246.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.925781 315.695312 C 258.925781 317.316406 256.496094 317.316406 256.496094 315.695312 C 256.496094 314.074219 258.925781 314.074219 258.925781 315.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.71875 318.933594 C 286.71875 320.554688 284.285156 320.554688 284.285156 318.933594 C 284.285156 317.3125 286.71875 317.3125 286.71875 318.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.226562 187.785156 C 275.226562 189.40625 272.796875 189.40625 272.796875 187.785156 C 272.796875 186.164062 275.226562 186.164062 275.226562 187.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.820312 70.910156 L 205.457031 73.746094 L 202.183594 73.746094 Z M 203.820312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.847656 70.910156 L 240.484375 73.746094 L 237.210938 73.746094 Z M 238.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.523438 70.910156 L 202.160156 73.746094 L 198.886719 73.746094 Z M 200.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.742188 70.910156 L 188.378906 73.746094 L 185.109375 73.746094 Z M 186.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.1875 328.066406 C 226.1875 329.6875 223.757812 329.6875 223.757812 328.066406 C 223.757812 326.445312 226.1875 326.445312 226.1875 328.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.488281 195.222656 C 179.488281 196.839844 177.058594 196.839844 177.058594 195.222656 C 177.058594 193.601562 179.488281 193.601562 179.488281 195.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.96875 164.921875 C 154.96875 166.542969 152.539062 166.542969 152.539062 164.921875 C 152.539062 163.304688 154.96875 163.304688 154.96875 164.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.15625 236.71875 C 166.15625 238.335938 163.726562 238.335938 163.726562 236.71875 C 163.726562 235.097656 166.15625 235.097656 166.15625 236.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.28125 261.316406 C 280.28125 262.9375 277.851562 262.9375 277.851562 261.316406 C 277.851562 259.695312 280.28125 259.695312 280.28125 261.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.011719 82.621094 C 219.011719 84.238281 216.582031 84.238281 216.582031 82.621094 C 216.582031 81 219.011719 81 219.011719 82.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.722656 88.953125 C 219.722656 90.574219 217.292969 90.574219 217.292969 88.953125 C 217.292969 87.335938 219.722656 87.335938 219.722656 88.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.839844 314.585938 C 309.839844 316.207031 307.40625 316.207031 307.40625 314.585938 C 307.40625 312.96875 309.839844 312.96875 309.839844 314.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.378906 217.726562 C 293.378906 219.34375 290.949219 219.34375 290.949219 217.726562 C 290.949219 216.105469 293.378906 216.105469 293.378906 217.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.433594 241.648438 C 277.433594 243.269531 275.003906 243.269531 275.003906 241.648438 C 275.003906 240.027344 277.433594 240.027344 277.433594 241.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.023438 70.910156 L 129.660156 73.746094 L 126.386719 73.746094 Z M 128.023438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.085938 70.910156 L 275.722656 73.746094 L 272.449219 73.746094 Z M 274.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.703125 130.421875 C 297.703125 132.042969 295.273438 132.042969 295.273438 130.421875 C 295.273438 128.800781 297.703125 128.800781 297.703125 130.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.179688 253.355469 C 187.179688 254.976562 184.75 254.976562 184.75 253.355469 C 184.75 251.734375 187.179688 251.734375 187.179688 253.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.726562 274.953125 C 231.726562 276.570312 229.296875 276.570312 229.296875 274.953125 C 229.296875 273.332031 231.726562 273.332031 231.726562 274.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.546875 375.824219 C 117.546875 377.441406 115.117188 377.441406 115.117188 375.824219 C 115.117188 374.203125 117.546875 374.203125 117.546875 375.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.582031 304.8125 C 166.582031 306.433594 164.152344 306.433594 164.152344 304.8125 C 164.152344 303.191406 166.582031 303.191406 166.582031 304.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.65625 80.382812 C 166.65625 82 164.226562 82 164.226562 80.382812 C 164.226562 78.761719 166.65625 78.761719 166.65625 80.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.578125 293.277344 C 181.578125 294.898438 179.148438 294.898438 179.148438 293.277344 C 179.148438 291.65625 181.578125 291.65625 181.578125 293.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.773438 194.65625 C 288.773438 196.277344 286.34375 196.277344 286.34375 194.65625 C 286.34375 193.035156 288.773438 193.035156 288.773438 194.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.433594 360.910156 C 267.433594 362.53125 265.003906 362.53125 265.003906 360.910156 C 265.003906 359.289062 267.433594 359.289062 267.433594 360.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.011719 204.597656 C 282.011719 206.21875 279.582031 206.21875 279.582031 204.597656 C 279.582031 202.976562 282.011719 202.976562 282.011719 204.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.242188 306.855469 C 251.242188 308.472656 248.8125 308.472656 248.8125 306.855469 C 248.8125 305.234375 251.242188 305.234375 251.242188 306.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.160156 326.0625 C 257.160156 327.683594 254.730469 327.683594 254.730469 326.0625 C 254.730469 324.441406 257.160156 324.441406 257.160156 326.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.367188 224.933594 C 139.367188 226.554688 136.9375 226.554688 136.9375 224.933594 C 136.9375 223.3125 139.367188 223.3125 139.367188 224.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.742188 300.503906 C 266.742188 302.125 264.3125 302.125 264.3125 300.503906 C 264.3125 298.882812 266.742188 298.882812 266.742188 300.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.003906 243.429688 C 304.003906 245.050781 301.574219 245.050781 301.574219 243.429688 C 301.574219 241.808594 304.003906 241.808594 304.003906 243.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.570312 274.234375 C 288.570312 275.851562 286.140625 275.851562 286.140625 274.234375 C 286.140625 272.613281 288.570312 272.613281 288.570312 274.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.078125 341.734375 C 163.078125 343.355469 160.648438 343.355469 160.648438 341.734375 C 160.648438 340.113281 163.078125 340.113281 163.078125 341.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.03125 387.207031 C 226.03125 388.824219 223.601562 388.824219 223.601562 387.207031 C 223.601562 385.585938 226.03125 385.585938 226.03125 387.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.492188 275.828125 C 269.492188 277.449219 267.0625 277.449219 267.0625 275.828125 C 267.0625 274.207031 269.492188 274.207031 269.492188 275.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.925781 392.890625 C 242.925781 394.507812 240.496094 394.507812 240.496094 392.890625 C 240.496094 391.269531 242.925781 391.269531 242.925781 392.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.695312 177.464844 C 269.695312 179.085938 267.265625 179.085938 267.265625 177.464844 C 267.265625 175.847656 269.695312 175.847656 269.695312 177.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.261719 276.285156 C 240.261719 277.902344 237.832031 277.902344 237.832031 276.285156 C 237.832031 274.664062 240.261719 274.664062 240.261719 276.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.855469 235.640625 C 256.855469 237.261719 254.425781 237.261719 254.425781 235.640625 C 254.425781 234.019531 256.855469 234.019531 256.855469 235.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.941406 280.859375 C 227.941406 282.476562 225.511719 282.476562 225.511719 280.859375 C 225.511719 279.238281 227.941406 279.238281 227.941406 280.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.363281 277.976562 C 209.363281 279.597656 206.933594 279.597656 206.933594 277.976562 C 206.933594 276.359375 209.363281 276.359375 209.363281 277.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.789062 279.589844 C 302.789062 281.210938 300.359375 281.210938 300.359375 279.589844 C 300.359375 277.96875 302.789062 277.96875 302.789062 279.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.085938 331.980469 C 169.085938 333.601562 166.65625 333.601562 166.65625 331.980469 C 166.65625 330.363281 169.085938 330.363281 169.085938 331.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.21875 364.433594 C 241.21875 366.054688 238.789062 366.054688 238.789062 364.433594 C 238.789062 362.8125 241.21875 362.8125 241.21875 364.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.378906 326.085938 C 282.378906 327.703125 279.949219 327.703125 279.949219 326.085938 C 279.949219 324.464844 282.378906 324.464844 282.378906 326.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.789062 147.75 C 228.789062 149.371094 226.359375 149.371094 226.359375 147.75 C 226.359375 146.128906 228.789062 146.128906 228.789062 147.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.34375 260.714844 C 294.34375 262.335938 291.914062 262.335938 291.914062 260.714844 C 291.914062 259.09375 294.34375 259.09375 294.34375 260.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.507812 70.910156 L 227.144531 73.746094 L 223.871094 73.746094 Z M 225.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.894531 258.445312 C 282.894531 260.0625 280.460938 260.0625 280.460938 258.445312 C 280.460938 256.824219 282.894531 256.824219 282.894531 258.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.164062 282.90625 C 223.164062 284.523438 220.734375 284.523438 220.734375 282.90625 C 220.734375 281.285156 223.164062 281.285156 223.164062 282.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.964844 70.910156 L 212.601562 73.746094 L 209.328125 73.746094 Z M 210.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.246094 127.394531 C 291.246094 129.015625 288.816406 129.015625 288.816406 127.394531 C 288.816406 125.777344 291.246094 125.777344 291.246094 127.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.726562 143.816406 C 301.726562 145.433594 299.296875 145.433594 299.296875 143.816406 C 299.296875 142.195312 301.726562 142.195312 301.726562 143.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.210938 235.3125 C 308.210938 236.929688 305.78125 236.929688 305.78125 235.3125 C 305.78125 233.691406 308.210938 233.691406 308.210938 235.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.53125 239.484375 C 261.53125 241.101562 259.101562 241.101562 259.101562 239.484375 C 259.101562 237.863281 261.53125 237.863281 261.53125 239.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.917969 254.113281 C 282.917969 255.734375 280.488281 255.734375 280.488281 254.113281 C 280.488281 252.492188 282.917969 252.492188 282.917969 254.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.839844 181.378906 C 233.839844 183 231.410156 183 231.410156 181.378906 C 231.410156 179.761719 233.839844 179.761719 233.839844 181.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.402344 91.625 C 227.402344 93.246094 224.972656 93.246094 224.972656 91.625 C 224.972656 90.003906 227.402344 90.003906 227.402344 91.625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.351562 70.910156 L 189.988281 73.746094 L 186.714844 73.746094 Z M 188.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.570312 172.863281 C 242.570312 174.484375 240.136719 174.484375 240.136719 172.863281 C 240.136719 171.246094 242.570312 171.246094 242.570312 172.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.113281 258.441406 C 208.113281 260.0625 205.683594 260.0625 205.683594 258.441406 C 205.683594 256.820312 208.113281 256.820312 208.113281 258.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.714844 70.910156 L 133.351562 73.746094 L 130.078125 73.746094 Z M 131.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.882812 257.707031 C 117.882812 259.324219 115.453125 259.324219 115.453125 257.707031 C 115.453125 256.085938 117.882812 256.085938 117.882812 257.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.425781 70.910156 L 183.058594 73.746094 L 179.789062 73.746094 Z M 181.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.617188 239.019531 C 299.617188 240.640625 297.1875 240.640625 297.1875 239.019531 C 297.1875 237.402344 299.617188 237.402344 299.617188 239.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.617188 158.769531 C 238.617188 160.390625 236.1875 160.390625 236.1875 158.769531 C 236.1875 157.152344 238.617188 157.152344 238.617188 158.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.625 252.441406 C 250.625 254.058594 248.195312 254.058594 248.195312 252.441406 C 248.195312 250.820312 250.625 250.820312 250.625 252.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.3125 229.019531 C 326.3125 230.640625 323.878906 230.640625 323.878906 229.019531 C 323.878906 227.398438 326.3125 227.398438 326.3125 229.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.003906 253.40625 C 316.003906 255.027344 313.574219 255.027344 313.574219 253.40625 C 313.574219 251.785156 316.003906 251.785156 316.003906 253.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.019531 282.46875 C 246.019531 284.089844 243.589844 284.089844 243.589844 282.46875 C 243.589844 280.851562 246.019531 280.851562 246.019531 282.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.296875 70.910156 L 266.933594 73.746094 L 263.660156 73.746094 Z M 265.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.175781 70.910156 L 219.8125 73.746094 L 216.542969 73.746094 Z M 218.175781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.101562 382.976562 C 255.101562 384.597656 252.671875 384.597656 252.671875 382.976562 C 252.671875 381.355469 255.101562 381.355469 255.101562 382.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.4375 266.152344 C 275.4375 267.773438 273.007812 267.773438 273.007812 266.152344 C 273.007812 264.535156 275.4375 264.535156 275.4375 266.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.386719 292.066406 C 269.386719 293.683594 266.953125 293.683594 266.953125 292.066406 C 266.953125 290.445312 269.386719 290.445312 269.386719 292.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.59375 320.664062 C 307.59375 322.285156 305.164062 322.285156 305.164062 320.664062 C 305.164062 319.042969 307.59375 319.042969 307.59375 320.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.324219 261.421875 C 284.324219 263.039062 281.894531 263.039062 281.894531 261.421875 C 281.894531 259.800781 284.324219 259.800781 284.324219 261.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.230469 418.691406 L 144.867188 415.855469 L 141.59375 415.855469 Z M 143.230469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.53125 298.777344 C 282.53125 300.398438 280.101562 300.398438 280.101562 298.777344 C 280.101562 297.160156 282.53125 297.160156 282.53125 298.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.136719 234.867188 C 249.136719 236.488281 246.707031 236.488281 246.707031 234.867188 C 246.707031 233.246094 249.136719 233.246094 249.136719 234.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.503906 284.335938 C 276.503906 285.953125 274.074219 285.953125 274.074219 284.335938 C 274.074219 282.714844 276.503906 282.714844 276.503906 284.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.527344 338.347656 C 183.527344 339.96875 181.09375 339.96875 181.09375 338.347656 C 181.09375 336.726562 183.527344 336.726562 183.527344 338.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.648438 302.492188 C 240.648438 304.109375 238.21875 304.109375 238.21875 302.492188 C 238.21875 300.871094 240.648438 300.871094 240.648438 302.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.019531 320.136719 C 286.019531 321.753906 283.589844 321.753906 283.589844 320.136719 C 283.589844 318.515625 286.019531 318.515625 286.019531 320.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.066406 116.492188 C 137.066406 118.113281 134.636719 118.113281 134.636719 116.492188 C 134.636719 114.875 137.066406 114.875 137.066406 116.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.324219 290.617188 C 285.324219 292.238281 282.894531 292.238281 282.894531 290.617188 C 282.894531 288.996094 285.324219 288.996094 285.324219 290.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.1875 161.5 C 182.1875 163.121094 179.757812 163.121094 179.757812 161.5 C 179.757812 159.878906 182.1875 159.878906 182.1875 161.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.03125 70.910156 L 209.667969 73.746094 L 206.394531 73.746094 Z M 208.03125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.300781 70.910156 L 222.9375 73.746094 L 219.664062 73.746094 Z M 221.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.234375 70.910156 L 192.867188 73.746094 L 189.597656 73.746094 Z M 191.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.535156 320.433594 C 227.535156 322.054688 225.105469 322.054688 225.105469 320.433594 C 225.105469 318.816406 227.535156 318.816406 227.535156 320.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.214844 294.84375 C 250.214844 296.464844 247.78125 296.464844 247.78125 294.84375 C 247.78125 293.222656 250.214844 293.222656 250.214844 294.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.226562 76.542969 C 310.226562 78.164062 307.796875 78.164062 307.796875 76.542969 C 307.796875 74.921875 310.226562 74.921875 310.226562 76.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.300781 112.710938 C 247.300781 114.332031 244.871094 114.332031 244.871094 112.710938 C 244.871094 111.09375 247.300781 111.09375 247.300781 112.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.28125 309.867188 C 297.28125 311.488281 294.851562 311.488281 294.851562 309.867188 C 294.851562 308.246094 297.28125 308.246094 297.28125 309.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.324219 70.910156 L 281.960938 73.746094 L 278.6875 73.746094 Z M 280.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.101562 125.867188 C 185.101562 127.488281 182.667969 127.488281 182.667969 125.867188 C 182.667969 124.246094 185.101562 124.246094 185.101562 125.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.460938 217.796875 C 215.460938 219.417969 213.027344 219.417969 213.027344 217.796875 C 213.027344 216.179688 215.460938 216.179688 215.460938 217.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.609375 70.910156 L 150.246094 73.746094 L 146.976562 73.746094 Z M 148.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.34375 247.035156 C 240.34375 248.652344 237.914062 248.652344 237.914062 247.035156 C 237.914062 245.414062 240.34375 245.414062 240.34375 247.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.542969 70.910156 L 203.179688 73.746094 L 199.910156 73.746094 Z M 201.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.992188 251.347656 C 270.992188 252.964844 268.558594 252.964844 268.558594 251.347656 C 268.558594 249.726562 270.992188 249.726562 270.992188 251.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.339844 70.910156 L 256.976562 73.746094 L 253.703125 73.746094 Z M 255.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.601562 310.957031 C 221.601562 312.578125 219.171875 312.578125 219.171875 310.957031 C 219.171875 309.335938 221.601562 309.335938 221.601562 310.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.386719 281.191406 C 342.386719 282.8125 339.957031 282.8125 339.957031 281.191406 C 339.957031 279.570312 342.386719 279.570312 342.386719 281.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.90625 231.75 C 233.90625 233.371094 231.476562 233.371094 231.476562 231.75 C 231.476562 230.128906 233.90625 230.128906 233.90625 231.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.3125 130.3125 C 185.3125 131.929688 182.882812 131.929688 182.882812 130.3125 C 182.882812 128.691406 185.3125 128.691406 185.3125 130.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.367188 70.910156 L 269 73.746094 L 265.730469 73.746094 Z M 267.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.246094 293.210938 C 180.246094 294.832031 177.816406 294.832031 177.816406 293.210938 C 177.816406 291.59375 180.246094 291.59375 180.246094 293.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.488281 278.40625 C 242.488281 280.027344 240.058594 280.027344 240.058594 278.40625 C 240.058594 276.789062 242.488281 276.789062 242.488281 278.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.601562 301.90625 C 206.601562 303.527344 204.171875 303.527344 204.171875 301.90625 C 204.171875 300.285156 206.601562 300.285156 206.601562 301.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.515625 363.472656 C 330.515625 365.09375 328.085938 365.09375 328.085938 363.472656 C 328.085938 361.855469 330.515625 361.855469 330.515625 363.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.972656 234.707031 C 234.972656 236.328125 232.542969 236.328125 232.542969 234.707031 C 232.542969 233.085938 234.972656 233.085938 234.972656 234.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.617188 401.140625 C 338.617188 402.757812 336.1875 402.757812 336.1875 401.140625 C 336.1875 399.519531 338.617188 399.519531 338.617188 401.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.503906 70.910156 L 165.136719 73.746094 L 161.867188 73.746094 Z M 163.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.453125 230.820312 C 157.453125 232.441406 155.023438 232.441406 155.023438 230.820312 C 155.023438 229.203125 157.453125 229.203125 157.453125 230.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.378906 272.339844 C 231.378906 273.957031 228.949219 273.957031 228.949219 272.339844 C 228.949219 270.71875 231.378906 270.71875 231.378906 272.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.339844 241.109375 C 329.339844 242.730469 326.910156 242.730469 326.910156 241.109375 C 326.910156 239.488281 329.339844 239.488281 329.339844 241.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 372.296875 198.632812 C 372.296875 200.253906 369.867188 200.253906 369.867188 198.632812 C 369.867188 197.011719 372.296875 197.011719 372.296875 198.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.457031 70.910156 L 169.09375 73.746094 L 165.824219 73.746094 Z M 167.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.578125 190.0625 C 247.578125 191.683594 245.148438 191.683594 245.148438 190.0625 C 245.148438 188.445312 247.578125 188.445312 247.578125 190.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.433594 418.691406 L 290.070312 415.855469 L 286.796875 415.855469 Z M 288.433594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.339844 418.691406 L 241.976562 415.855469 L 238.703125 415.855469 Z M 240.339844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.277344 190.296875 C 304.277344 191.917969 301.847656 191.917969 301.847656 190.296875 C 301.847656 188.675781 304.277344 188.675781 304.277344 190.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.628906 198.949219 C 232.628906 200.570312 230.199219 200.570312 230.199219 198.949219 C 230.199219 197.328125 232.628906 197.328125 232.628906 198.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.109375 224.21875 C 223.109375 225.835938 220.679688 225.835938 220.679688 224.21875 C 220.679688 222.597656 223.109375 222.597656 223.109375 224.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.632812 202.734375 C 207.632812 204.355469 205.203125 204.355469 205.203125 202.734375 C 205.203125 201.113281 207.632812 201.113281 207.632812 202.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.042969 132.363281 C 248.042969 133.984375 245.613281 133.984375 245.613281 132.363281 C 245.613281 130.742188 248.042969 130.742188 248.042969 132.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.324219 371.445312 C 263.324219 373.066406 260.894531 373.066406 260.894531 371.445312 C 260.894531 369.824219 263.324219 369.824219 263.324219 371.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.121094 170.050781 C 265.121094 171.671875 262.691406 171.671875 262.691406 170.050781 C 262.691406 168.429688 265.121094 168.429688 265.121094 170.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.960938 190.046875 C 241.960938 191.664062 239.53125 191.664062 239.53125 190.046875 C 239.53125 188.425781 241.960938 188.425781 241.960938 190.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.914062 265.113281 C 335.914062 266.734375 333.484375 266.734375 333.484375 265.113281 C 333.484375 263.492188 335.914062 263.492188 335.914062 265.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.382812 70.910156 L 238.019531 73.746094 L 234.746094 73.746094 Z M 236.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.828125 70.910156 L 243.464844 73.746094 L 240.195312 73.746094 Z M 241.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.699219 255.683594 C 197.699219 257.304688 195.269531 257.304688 195.269531 255.683594 C 195.269531 254.066406 197.699219 254.066406 197.699219 255.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.683594 256.484375 C 307.683594 258.105469 305.253906 258.105469 305.253906 256.484375 C 305.253906 254.867188 307.683594 254.867188 307.683594 256.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.574219 239.53125 C 305.574219 241.148438 303.144531 241.148438 303.144531 239.53125 C 303.144531 237.910156 305.574219 237.910156 305.574219 239.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.894531 70.910156 L 173.53125 73.746094 L 170.257812 73.746094 Z M 171.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.121094 135.675781 C 252.121094 137.296875 249.6875 137.296875 249.6875 135.675781 C 249.6875 134.058594 252.121094 134.058594 252.121094 135.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.21875 245.921875 C 333.21875 247.542969 330.789062 247.542969 330.789062 245.921875 C 330.789062 244.300781 333.21875 244.300781 333.21875 245.921875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.121094 418.691406 L 272.757812 415.855469 L 269.484375 415.855469 Z M 271.121094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.496094 206.703125 C 292.496094 208.324219 290.066406 208.324219 290.066406 206.703125 C 290.066406 205.085938 292.496094 205.085938 292.496094 206.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.488281 269.289062 C 258.488281 270.910156 256.058594 270.910156 256.058594 269.289062 C 256.058594 267.671875 258.488281 267.671875 258.488281 269.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.011719 198.265625 C 247.011719 199.882812 244.582031 199.882812 244.582031 198.265625 C 244.582031 196.644531 247.011719 196.644531 247.011719 198.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.277344 195.824219 C 237.277344 197.445312 234.847656 197.445312 234.847656 195.824219 C 234.847656 194.207031 237.277344 194.207031 237.277344 195.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.765625 287.972656 C 291.765625 289.59375 289.335938 289.59375 289.335938 287.972656 C 289.335938 286.355469 291.765625 286.355469 291.765625 287.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.664062 274.445312 C 261.664062 276.066406 259.234375 276.066406 259.234375 274.445312 C 259.234375 272.824219 261.664062 272.824219 261.664062 274.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.621094 244.957031 C 237.621094 246.578125 235.191406 246.578125 235.191406 244.957031 C 235.191406 243.339844 237.621094 243.339844 237.621094 244.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.609375 282.761719 C 297.609375 284.382812 295.175781 284.382812 295.175781 282.761719 C 295.175781 281.144531 297.609375 281.144531 297.609375 282.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.832031 70.910156 L 253.46875 73.746094 L 250.195312 73.746094 Z M 251.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.976562 191.527344 C 257.976562 193.148438 255.546875 193.148438 255.546875 191.527344 C 255.546875 189.90625 257.976562 189.90625 257.976562 191.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.59375 197.175781 C 253.59375 198.796875 251.164062 198.796875 251.164062 197.175781 C 251.164062 195.554688 253.59375 195.554688 253.59375 197.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.5625 241.527344 C 221.5625 243.148438 219.132812 243.148438 219.132812 241.527344 C 219.132812 239.90625 221.5625 239.90625 221.5625 241.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.839844 178.761719 C 157.839844 180.382812 155.410156 180.382812 155.410156 178.761719 C 155.410156 177.140625 157.839844 177.140625 157.839844 178.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.050781 252.652344 C 267.050781 254.273438 264.621094 254.273438 264.621094 252.652344 C 264.621094 251.03125 267.050781 251.03125 267.050781 252.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.226562 284.429688 C 305.226562 286.050781 302.796875 286.050781 302.796875 284.429688 C 302.796875 282.8125 305.226562 282.8125 305.226562 284.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.148438 269.4375 C 319.148438 271.054688 316.71875 271.054688 316.71875 269.4375 C 316.71875 267.816406 319.148438 267.816406 319.148438 269.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.703125 217.234375 C 224.703125 218.855469 222.273438 218.855469 222.273438 217.234375 C 222.273438 215.617188 224.703125 215.617188 224.703125 217.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.628906 249.175781 C 164.628906 250.796875 162.199219 250.796875 162.199219 249.175781 C 162.199219 247.558594 164.628906 247.558594 164.628906 249.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.800781 148.003906 C 297.800781 149.621094 295.371094 149.621094 295.371094 148.003906 C 295.371094 146.382812 297.800781 146.382812 297.800781 148.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.304688 319.953125 C 276.304688 321.574219 273.875 321.574219 273.875 319.953125 C 273.875 318.332031 276.304688 318.332031 276.304688 319.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.074219 142.125 C 277.074219 143.746094 274.644531 143.746094 274.644531 142.125 C 274.644531 140.503906 277.074219 140.503906 277.074219 142.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.179688 70.910156 L 248.816406 73.746094 L 245.542969 73.746094 Z M 247.179688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.332031 260.1875 C 290.332031 261.808594 287.902344 261.808594 287.902344 260.1875 C 287.902344 258.570312 290.332031 258.570312 290.332031 260.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.894531 229.769531 C 260.894531 231.390625 258.464844 231.390625 258.464844 229.769531 C 258.464844 228.148438 260.894531 228.148438 260.894531 229.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.5625 266.902344 C 253.5625 268.523438 251.132812 268.523438 251.132812 266.902344 C 251.132812 265.28125 253.5625 265.28125 253.5625 266.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.527344 275.601562 C 258.527344 277.222656 256.097656 277.222656 256.097656 275.601562 C 256.097656 273.984375 258.527344 273.984375 258.527344 275.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.828125 276.027344 C 233.828125 277.648438 231.398438 277.648438 231.398438 276.027344 C 231.398438 274.410156 233.828125 274.410156 233.828125 276.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.277344 70.910156 L 183.914062 73.746094 L 180.640625 73.746094 Z M 182.277344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.109375 70.910156 L 161.746094 73.746094 L 158.472656 73.746094 Z M 160.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.417969 249.894531 C 261.417969 251.515625 258.988281 251.515625 258.988281 249.894531 C 258.988281 248.273438 261.417969 248.273438 261.417969 249.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.914062 250.765625 C 256.914062 252.386719 254.484375 252.386719 254.484375 250.765625 C 254.484375 249.148438 256.914062 249.148438 256.914062 250.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.0625 187.179688 C 269.0625 188.800781 266.632812 188.800781 266.632812 187.179688 C 266.632812 185.558594 269.0625 185.558594 269.0625 187.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.453125 86.113281 C 254.453125 87.730469 252.023438 87.730469 252.023438 86.113281 C 252.023438 84.492188 254.453125 84.492188 254.453125 86.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.8125 332.742188 C 295.8125 334.363281 293.382812 334.363281 293.382812 332.742188 C 293.382812 331.121094 295.8125 331.121094 295.8125 332.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.289062 334.804688 C 310.289062 336.421875 307.855469 336.421875 307.855469 334.804688 C 307.855469 333.183594 310.289062 333.183594 310.289062 334.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.367188 211.589844 C 199.367188 213.210938 196.9375 213.210938 196.9375 211.589844 C 196.9375 209.96875 199.367188 209.96875 199.367188 211.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.433594 114.828125 C 260.433594 116.449219 258.003906 116.449219 258.003906 114.828125 C 258.003906 113.210938 260.433594 113.210938 260.433594 114.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.378906 257.9375 C 282.378906 259.558594 279.949219 259.558594 279.949219 257.9375 C 279.949219 256.316406 282.378906 256.316406 282.378906 257.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.144531 355.890625 C 276.144531 357.511719 273.714844 357.511719 273.714844 355.890625 C 273.714844 354.269531 276.144531 354.269531 276.144531 355.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.023438 109.230469 C 218.023438 110.851562 215.59375 110.851562 215.59375 109.230469 C 215.59375 107.609375 218.023438 107.609375 218.023438 109.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.5625 195.933594 C 232.5625 197.550781 230.132812 197.550781 230.132812 195.933594 C 230.132812 194.3125 232.5625 194.3125 232.5625 195.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.730469 260.8125 C 284.730469 262.429688 282.300781 262.429688 282.300781 260.8125 C 282.300781 259.191406 284.730469 259.191406 284.730469 260.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.605469 108.191406 C 197.605469 109.808594 195.175781 109.808594 195.175781 108.191406 C 195.175781 106.570312 197.605469 106.570312 197.605469 108.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.144531 316.351562 C 262.144531 317.972656 259.714844 317.972656 259.714844 316.351562 C 259.714844 314.730469 262.144531 314.730469 262.144531 316.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.578125 70.910156 L 138.214844 73.746094 L 134.941406 73.746094 Z M 136.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.84375 212.65625 C 285.84375 214.277344 283.414062 214.277344 283.414062 212.65625 C 283.414062 211.039062 285.84375 211.039062 285.84375 212.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.113281 70.910156 L 175.746094 73.746094 L 172.476562 73.746094 Z M 174.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.398438 114.550781 C 237.398438 116.171875 234.96875 116.171875 234.96875 114.550781 C 234.96875 112.929688 237.398438 112.929688 237.398438 114.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.144531 311.234375 C 156.144531 312.855469 153.714844 312.855469 153.714844 311.234375 C 153.714844 309.617188 156.144531 309.617188 156.144531 311.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.75 70.910156 L 155.386719 73.746094 L 152.113281 73.746094 Z M 153.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.507812 324.722656 C 257.507812 326.34375 255.078125 326.34375 255.078125 324.722656 C 255.078125 323.101562 257.507812 323.101562 257.507812 324.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.570312 102.582031 C 243.570312 104.203125 241.140625 104.203125 241.140625 102.582031 C 241.140625 100.960938 243.570312 100.960938 243.570312 102.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.046875 361.464844 C 192.046875 363.085938 189.617188 363.085938 189.617188 361.464844 C 189.617188 359.84375 192.046875 359.84375 192.046875 361.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.351562 418.691406 L 334.988281 415.855469 L 331.714844 415.855469 Z M 333.351562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.230469 210.332031 C 241.230469 211.953125 238.800781 211.953125 238.800781 210.332031 C 238.800781 208.710938 241.230469 208.710938 241.230469 210.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.117188 268.351562 C 292.117188 269.96875 289.6875 269.96875 289.6875 268.351562 C 289.6875 266.730469 292.117188 266.730469 292.117188 268.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.652344 231.488281 C 158.652344 233.109375 156.21875 233.109375 156.21875 231.488281 C 156.21875 229.871094 158.652344 229.871094 158.652344 231.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.898438 295.90625 C 284.898438 297.527344 282.46875 297.527344 282.46875 295.90625 C 282.46875 294.289062 284.898438 294.289062 284.898438 295.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.167969 239.359375 C 303.167969 240.976562 300.738281 240.976562 300.738281 239.359375 C 300.738281 237.738281 303.167969 237.738281 303.167969 239.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.074219 70.910156 L 144.710938 73.746094 L 141.4375 73.746094 Z M 143.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.417969 418.691406 L 212.054688 415.855469 L 208.78125 415.855469 Z M 210.417969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.222656 418.691406 L 278.859375 415.855469 L 275.589844 415.855469 Z M 277.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.757812 386.996094 C 271.757812 388.617188 269.324219 388.617188 269.324219 386.996094 C 269.324219 385.375 271.757812 385.375 271.757812 386.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.824219 176.261719 C 265.824219 177.882812 263.394531 177.882812 263.394531 176.261719 C 263.394531 174.644531 265.824219 174.644531 265.824219 176.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.289062 207.007812 C 210.289062 208.628906 207.859375 208.628906 207.859375 207.007812 C 207.859375 205.386719 210.289062 205.386719 210.289062 207.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.730469 193.074219 C 275.730469 194.695312 273.300781 194.695312 273.300781 193.074219 C 273.300781 191.457031 275.730469 191.457031 275.730469 193.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.65625 338.257812 C 275.65625 339.878906 273.226562 339.878906 273.226562 338.257812 C 273.226562 336.640625 275.65625 336.640625 275.65625 338.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.742188 109.242188 C 138.742188 110.859375 136.3125 110.859375 136.3125 109.242188 C 136.3125 107.621094 138.742188 107.621094 138.742188 109.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.042969 418.691406 L 211.679688 415.855469 L 208.40625 415.855469 Z M 210.042969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.046875 418.691406 L 311.683594 415.855469 L 308.410156 415.855469 Z M 310.046875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.96875 255.316406 C 278.96875 256.933594 276.539062 256.933594 276.539062 255.316406 C 276.539062 253.695312 278.96875 253.695312 278.96875 255.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.53125 70.910156 L 200.167969 73.746094 L 196.894531 73.746094 Z M 198.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.589844 149.082031 C 234.589844 150.703125 232.160156 150.703125 232.160156 149.082031 C 232.160156 147.464844 234.589844 147.464844 234.589844 149.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.242188 70.910156 L 219.878906 73.746094 L 216.605469 73.746094 Z M 218.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.339844 211.777344 C 242.339844 213.398438 239.90625 213.398438 239.90625 211.777344 C 239.90625 210.15625 242.339844 210.15625 242.339844 211.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.097656 375.988281 C 211.097656 377.609375 208.667969 377.609375 208.667969 375.988281 C 208.667969 374.367188 211.097656 374.367188 211.097656 375.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.851562 210.375 C 304.851562 211.996094 302.421875 211.996094 302.421875 210.375 C 302.421875 208.753906 304.851562 208.753906 304.851562 210.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.800781 265.425781 C 290.800781 267.046875 288.371094 267.046875 288.371094 265.425781 C 288.371094 263.804688 290.800781 263.804688 290.800781 265.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.765625 346.183594 C 209.765625 347.804688 207.335938 347.804688 207.335938 346.183594 C 207.335938 344.5625 209.765625 344.5625 209.765625 346.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.097656 210.722656 C 275.097656 212.339844 272.667969 212.339844 272.667969 210.722656 C 272.667969 209.101562 275.097656 209.101562 275.097656 210.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.472656 191.851562 C 136.472656 193.46875 134.042969 193.46875 134.042969 191.851562 C 134.042969 190.230469 136.472656 190.230469 136.472656 191.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.207031 251.964844 C 263.207031 253.585938 260.777344 253.585938 260.777344 251.964844 C 260.777344 250.34375 263.207031 250.34375 263.207031 251.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.230469 336.871094 C 276.230469 338.492188 273.800781 338.492188 273.800781 336.871094 C 273.800781 335.253906 276.230469 335.253906 276.230469 336.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.339844 70.910156 L 271.976562 73.746094 L 268.703125 73.746094 Z M 270.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.136719 199.144531 C 253.136719 200.761719 250.707031 200.761719 250.707031 199.144531 C 250.707031 197.523438 253.136719 197.523438 253.136719 199.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.074219 191.550781 C 322.074219 193.171875 319.644531 193.171875 319.644531 191.550781 C 319.644531 189.929688 322.074219 189.929688 322.074219 191.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.839844 70.910156 L 116.476562 73.746094 L 113.203125 73.746094 Z M 114.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.164062 264.875 C 274.164062 266.496094 271.734375 266.496094 271.734375 264.875 C 271.734375 263.253906 274.164062 263.253906 274.164062 264.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.613281 268.515625 C 240.613281 270.136719 238.183594 270.136719 238.183594 268.515625 C 238.183594 266.894531 240.613281 266.894531 240.613281 268.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.160156 302.316406 C 317.160156 303.9375 314.730469 303.9375 314.730469 302.316406 C 314.730469 300.699219 317.160156 300.699219 317.160156 302.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.414062 264.402344 C 289.414062 266.019531 286.984375 266.019531 286.984375 264.402344 C 286.984375 262.78125 289.414062 262.78125 289.414062 264.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.4375 200.089844 C 182.4375 201.710938 180.007812 201.710938 180.007812 200.089844 C 180.007812 198.46875 182.4375 198.46875 182.4375 200.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.984375 321.730469 C 216.984375 323.351562 214.554688 323.351562 214.554688 321.730469 C 214.554688 320.109375 216.984375 320.109375 216.984375 321.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.332031 70.910156 L 162.964844 73.746094 L 159.695312 73.746094 Z M 161.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.324219 221.863281 C 214.324219 223.484375 211.894531 223.484375 211.894531 221.863281 C 211.894531 220.242188 214.324219 220.242188 214.324219 221.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.546875 176.4375 C 213.546875 178.058594 211.117188 178.058594 211.117188 176.4375 C 211.117188 174.816406 213.546875 174.816406 213.546875 176.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.25 301.21875 C 306.25 302.835938 303.820312 302.835938 303.820312 301.21875 C 303.820312 299.597656 306.25 299.597656 306.25 301.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.425781 418.691406 L 163.0625 415.855469 L 159.789062 415.855469 Z M 161.425781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.871094 329.835938 C 254.871094 331.457031 252.441406 331.457031 252.441406 329.835938 C 252.441406 328.21875 254.871094 328.21875 254.871094 329.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.441406 418.691406 L 338.078125 415.855469 L 334.804688 415.855469 Z M 336.441406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.644531 322.253906 C 318.644531 323.871094 316.214844 323.871094 316.214844 322.253906 C 316.214844 320.632812 318.644531 320.632812 318.644531 322.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.738281 278.65625 C 260.738281 280.273438 258.308594 280.273438 258.308594 278.65625 C 258.308594 277.035156 260.738281 277.035156 260.738281 278.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.332031 204.882812 C 287.332031 206.503906 284.902344 206.503906 284.902344 204.882812 C 284.902344 203.265625 287.332031 203.265625 287.332031 204.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.296875 175.644531 C 274.296875 177.261719 271.867188 177.261719 271.867188 175.644531 C 271.867188 174.023438 274.296875 174.023438 274.296875 175.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.515625 224.652344 C 309.515625 226.273438 307.085938 226.273438 307.085938 224.652344 C 307.085938 223.03125 309.515625 223.03125 309.515625 224.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.671875 343.851562 C 251.671875 345.472656 249.242188 345.472656 249.242188 343.851562 C 249.242188 342.230469 251.671875 342.230469 251.671875 343.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.082031 356.714844 C 163.082031 358.335938 160.648438 358.335938 160.648438 356.714844 C 160.648438 355.09375 163.082031 355.09375 163.082031 356.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.203125 70.910156 L 214.839844 73.746094 L 211.566406 73.746094 Z M 213.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.648438 223.992188 C 297.648438 225.613281 295.21875 225.613281 295.21875 223.992188 C 295.21875 222.375 297.648438 222.375 297.648438 223.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.644531 270.175781 C 178.644531 271.796875 176.214844 271.796875 176.214844 270.175781 C 176.214844 268.554688 178.644531 268.554688 178.644531 270.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.535156 277.953125 C 209.535156 279.570312 207.105469 279.570312 207.105469 277.953125 C 207.105469 276.332031 209.535156 276.332031 209.535156 277.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.695312 70.910156 L 236.332031 73.746094 L 233.058594 73.746094 Z M 234.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.699219 291.824219 C 304.699219 293.445312 302.269531 293.445312 302.269531 291.824219 C 302.269531 290.207031 304.699219 290.207031 304.699219 291.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.175781 418.691406 L 241.8125 415.855469 L 238.539062 415.855469 Z M 240.175781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.390625 253.871094 C 271.390625 255.488281 268.960938 255.488281 268.960938 253.871094 C 268.960938 252.25 271.390625 252.25 271.390625 253.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.519531 118.824219 C 284.519531 120.445312 282.089844 120.445312 282.089844 118.824219 C 282.089844 117.207031 284.519531 117.207031 284.519531 118.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.550781 268.339844 C 203.550781 269.960938 201.121094 269.960938 201.121094 268.339844 C 201.121094 266.722656 203.550781 266.722656 203.550781 268.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.273438 274.453125 C 243.273438 276.070312 240.84375 276.070312 240.84375 274.453125 C 240.84375 272.832031 243.273438 272.832031 243.273438 274.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.355469 261.308594 C 310.355469 262.929688 307.925781 262.929688 307.925781 261.308594 C 307.925781 259.6875 310.355469 259.6875 310.355469 261.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.273438 240.988281 C 279.273438 242.605469 276.84375 242.605469 276.84375 240.988281 C 276.84375 239.367188 279.273438 239.367188 279.273438 240.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.796875 292.679688 C 243.796875 294.300781 241.367188 294.300781 241.367188 292.679688 C 241.367188 291.0625 243.796875 291.0625 243.796875 292.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.757812 283.761719 C 233.757812 285.382812 231.328125 285.382812 231.328125 283.761719 C 231.328125 282.144531 233.757812 282.144531 233.757812 283.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.40625 313.617188 C 251.40625 315.234375 248.976562 315.234375 248.976562 313.617188 C 248.976562 311.996094 251.40625 311.996094 251.40625 313.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.335938 227.53125 C 279.335938 229.152344 276.90625 229.152344 276.90625 227.53125 C 276.90625 225.910156 279.335938 225.910156 279.335938 227.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.542969 239.492188 C 255.542969 241.113281 253.113281 241.113281 253.113281 239.492188 C 253.113281 237.875 255.542969 237.875 255.542969 239.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.875 251.535156 C 253.875 253.15625 251.445312 253.15625 251.445312 251.535156 C 251.445312 249.914062 253.875 249.914062 253.875 251.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.128906 70.910156 L 245.761719 73.746094 L 242.492188 73.746094 Z M 244.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.410156 358.898438 C 251.410156 360.519531 248.980469 360.519531 248.980469 358.898438 C 248.980469 357.277344 251.410156 357.277344 251.410156 358.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.308594 305.035156 C 202.308594 306.652344 199.878906 306.652344 199.878906 305.035156 C 199.878906 303.414062 202.308594 303.414062 202.308594 305.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.484375 249.816406 C 265.484375 251.4375 263.054688 251.4375 263.054688 249.816406 C 263.054688 248.195312 265.484375 248.195312 265.484375 249.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.375 355.082031 C 272.375 356.703125 269.945312 356.703125 269.945312 355.082031 C 269.945312 353.460938 272.375 353.460938 272.375 355.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.261719 94.652344 C 239.261719 96.273438 236.832031 96.273438 236.832031 94.652344 C 236.832031 93.03125 239.261719 93.03125 239.261719 94.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.316406 263.535156 C 287.316406 265.15625 284.886719 265.15625 284.886719 263.535156 C 284.886719 261.914062 287.316406 261.914062 287.316406 263.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.039062 144.878906 C 264.039062 146.496094 261.609375 146.496094 261.609375 144.878906 C 261.609375 143.257812 264.039062 143.257812 264.039062 144.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.914062 70.910156 L 261.550781 73.746094 L 258.277344 73.746094 Z M 259.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.035156 232.964844 C 304.035156 234.585938 301.601562 234.585938 301.601562 232.964844 C 301.601562 231.347656 304.035156 231.347656 304.035156 232.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.417969 70.910156 L 131.054688 73.746094 L 127.78125 73.746094 Z M 129.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.078125 327.6875 C 249.078125 329.308594 246.644531 329.308594 246.644531 327.6875 C 246.644531 326.066406 249.078125 326.066406 249.078125 327.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.226562 285.964844 C 276.226562 287.585938 273.796875 287.585938 273.796875 285.964844 C 273.796875 284.34375 276.226562 284.34375 276.226562 285.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.894531 360.558594 C 289.894531 362.179688 287.464844 362.179688 287.464844 360.558594 C 287.464844 358.9375 289.894531 358.9375 289.894531 360.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.050781 256.144531 C 277.050781 257.765625 274.621094 257.765625 274.621094 256.144531 C 274.621094 254.527344 277.050781 254.527344 277.050781 256.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.378906 80.566406 C 174.378906 82.1875 171.949219 82.1875 171.949219 80.566406 C 171.949219 78.945312 174.378906 78.945312 174.378906 80.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.078125 217.472656 C 256.078125 219.09375 253.648438 219.09375 253.648438 217.472656 C 253.648438 215.855469 256.078125 215.855469 256.078125 217.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.875 300.027344 C 275.875 301.648438 273.445312 301.648438 273.445312 300.027344 C 273.445312 298.40625 275.875 298.40625 275.875 300.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.203125 70.910156 L 202.835938 73.746094 L 199.566406 73.746094 Z M 201.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.640625 124.964844 C 307.640625 126.585938 305.210938 126.585938 305.210938 124.964844 C 305.210938 123.34375 307.640625 123.34375 307.640625 124.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.335938 238.160156 C 277.335938 239.777344 274.90625 239.777344 274.90625 238.160156 C 274.90625 236.539062 277.335938 236.539062 277.335938 238.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.523438 221.367188 C 253.523438 222.988281 251.09375 222.988281 251.09375 221.367188 C 251.09375 219.746094 253.523438 219.746094 253.523438 221.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.875 212.148438 C 206.875 213.769531 204.445312 213.769531 204.445312 212.148438 C 204.445312 210.527344 206.875 210.527344 206.875 212.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.921875 219.953125 C 232.921875 221.574219 230.488281 221.574219 230.488281 219.953125 C 230.488281 218.335938 232.921875 218.335938 232.921875 219.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.058594 70.910156 L 221.695312 73.746094 L 218.421875 73.746094 Z M 220.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.050781 415.066406 C 153.050781 416.683594 150.621094 416.683594 150.621094 415.066406 C 150.621094 413.445312 153.050781 413.445312 153.050781 415.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.074219 324.675781 C 156.074219 326.296875 153.644531 326.296875 153.644531 324.675781 C 153.644531 323.054688 156.074219 323.054688 156.074219 324.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.371094 241.945312 C 240.371094 243.566406 237.941406 243.566406 237.941406 241.945312 C 237.941406 240.328125 240.371094 240.328125 240.371094 241.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.867188 70.910156 L 185.503906 73.746094 L 182.230469 73.746094 Z M 183.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.878906 204.59375 C 244.878906 206.210938 242.449219 206.210938 242.449219 204.59375 C 242.449219 202.972656 244.878906 202.972656 244.878906 204.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.554688 186.035156 C 257.554688 187.65625 255.125 187.65625 255.125 186.035156 C 255.125 184.417969 257.554688 184.417969 257.554688 186.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.800781 224.714844 C 180.800781 226.332031 178.367188 226.332031 178.367188 224.714844 C 178.367188 223.09375 180.800781 223.09375 180.800781 224.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.441406 104.328125 C 121.441406 105.949219 119.011719 105.949219 119.011719 104.328125 C 119.011719 102.707031 121.441406 102.707031 121.441406 104.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.195312 418.691406 L 156.832031 415.855469 L 153.558594 415.855469 Z M 155.195312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.945312 245.726562 C 321.945312 247.34375 319.515625 247.34375 319.515625 245.726562 C 319.515625 244.105469 321.945312 244.105469 321.945312 245.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.921875 202.828125 C 297.921875 204.449219 295.492188 204.449219 295.492188 202.828125 C 295.492188 201.207031 297.921875 201.207031 297.921875 202.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.386719 333.957031 C 131.386719 335.578125 128.957031 335.578125 128.957031 333.957031 C 128.957031 332.335938 131.386719 332.335938 131.386719 333.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.433594 305.996094 C 242.433594 307.617188 240.003906 307.617188 240.003906 305.996094 C 240.003906 304.375 242.433594 304.375 242.433594 305.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.367188 201.199219 C 301.367188 202.820312 298.9375 202.820312 298.9375 201.199219 C 298.9375 199.582031 301.367188 199.582031 301.367188 201.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.625 285.558594 C 203.625 287.175781 201.195312 287.175781 201.195312 285.558594 C 201.195312 283.9375 203.625 283.9375 203.625 285.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.066406 356.058594 C 233.066406 357.679688 230.636719 357.679688 230.636719 356.058594 C 230.636719 354.4375 233.066406 354.4375 233.066406 356.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.050781 303.558594 C 178.050781 305.179688 175.621094 305.179688 175.621094 303.558594 C 175.621094 301.9375 178.050781 301.9375 178.050781 303.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.914062 245.238281 C 145.914062 246.859375 143.484375 246.859375 143.484375 245.238281 C 143.484375 243.621094 145.914062 243.621094 145.914062 245.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.761719 354.339844 C 250.761719 355.960938 248.332031 355.960938 248.332031 354.339844 C 248.332031 352.722656 250.761719 352.722656 250.761719 354.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.230469 331.960938 C 247.230469 333.578125 244.800781 333.578125 244.800781 331.960938 C 244.800781 330.339844 247.230469 330.339844 247.230469 331.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.867188 257.707031 C 320.867188 259.328125 318.4375 259.328125 318.4375 257.707031 C 318.4375 256.085938 320.867188 256.085938 320.867188 257.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.925781 243.777344 C 261.925781 245.398438 259.496094 245.398438 259.496094 243.777344 C 259.496094 242.15625 261.925781 242.15625 261.925781 243.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.761719 142.242188 C 217.761719 143.859375 215.332031 143.859375 215.332031 142.242188 C 215.332031 140.621094 217.761719 140.621094 217.761719 142.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.042969 271.480469 C 214.042969 273.101562 211.613281 273.101562 211.613281 271.480469 C 211.613281 269.859375 214.042969 269.859375 214.042969 271.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.011719 213.847656 C 337.011719 215.464844 334.582031 215.464844 334.582031 213.847656 C 334.582031 212.226562 337.011719 212.226562 337.011719 213.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.996094 272.554688 C 258.996094 274.171875 256.566406 274.171875 256.566406 272.554688 C 256.566406 270.933594 258.996094 270.933594 258.996094 272.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.023438 244.621094 C 287.023438 246.242188 284.59375 246.242188 284.59375 244.621094 C 284.59375 243.003906 287.023438 243.003906 287.023438 244.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.640625 210.78125 C 279.640625 212.398438 277.210938 212.398438 277.210938 210.78125 C 277.210938 209.160156 279.640625 209.160156 279.640625 210.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.984375 192.835938 C 228.984375 194.453125 226.554688 194.453125 226.554688 192.835938 C 226.554688 191.214844 228.984375 191.214844 228.984375 192.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.828125 221.558594 C 207.828125 223.179688 205.398438 223.179688 205.398438 221.558594 C 205.398438 219.9375 207.828125 219.9375 207.828125 221.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.15625 312.53125 C 184.15625 314.152344 181.726562 314.152344 181.726562 312.53125 C 181.726562 310.910156 184.15625 310.910156 184.15625 312.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.027344 277.28125 C 142.027344 278.902344 139.597656 278.902344 139.597656 277.28125 C 139.597656 275.660156 142.027344 275.660156 142.027344 277.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.316406 262.363281 C 289.316406 263.980469 286.886719 263.980469 286.886719 262.363281 C 286.886719 260.742188 289.316406 260.742188 289.316406 262.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.425781 379.691406 C 259.425781 381.308594 256.996094 381.308594 256.996094 379.691406 C 256.996094 378.070312 259.425781 378.070312 259.425781 379.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.371094 240.261719 C 321.371094 241.882812 318.9375 241.882812 318.9375 240.261719 C 318.9375 238.640625 321.371094 238.640625 321.371094 240.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.378906 176.082031 C 183.378906 177.703125 180.949219 177.703125 180.949219 176.082031 C 180.949219 174.460938 183.378906 174.460938 183.378906 176.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.480469 153.648438 C 287.480469 155.265625 285.050781 155.265625 285.050781 153.648438 C 285.050781 152.027344 287.480469 152.027344 287.480469 153.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.792969 293.445312 C 209.792969 295.066406 207.363281 295.066406 207.363281 293.445312 C 207.363281 291.828125 209.792969 291.828125 209.792969 293.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.695312 243.925781 C 259.695312 245.542969 257.265625 245.542969 257.265625 243.925781 C 257.265625 242.304688 259.695312 242.304688 259.695312 243.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.507812 319.292969 C 250.507812 320.910156 248.074219 320.910156 248.074219 319.292969 C 248.074219 317.671875 250.507812 317.671875 250.507812 319.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.25 215.273438 C 201.25 216.894531 198.820312 216.894531 198.820312 215.273438 C 198.820312 213.652344 201.25 213.652344 201.25 215.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.511719 70.910156 L 264.148438 73.746094 L 260.875 73.746094 Z M 262.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.179688 208.210938 C 311.179688 209.832031 308.75 209.832031 308.75 208.210938 C 308.75 206.589844 311.179688 206.589844 311.179688 208.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.25 97.011719 C 159.25 98.628906 156.816406 98.628906 156.816406 97.011719 C 156.816406 95.390625 159.25 95.390625 159.25 97.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.042969 100.988281 C 240.042969 102.609375 237.613281 102.609375 237.613281 100.988281 C 237.613281 99.367188 240.042969 99.367188 240.042969 100.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.207031 315.355469 C 171.207031 316.976562 168.777344 316.976562 168.777344 315.355469 C 168.777344 313.734375 171.207031 313.734375 171.207031 315.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.417969 339.347656 C 204.417969 340.964844 201.988281 340.964844 201.988281 339.347656 C 201.988281 337.726562 204.417969 337.726562 204.417969 339.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.683594 291.4375 C 193.683594 293.058594 191.253906 293.058594 191.253906 291.4375 C 191.253906 289.820312 193.683594 289.820312 193.683594 291.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.191406 284.855469 C 310.191406 286.476562 307.761719 286.476562 307.761719 284.855469 C 307.761719 283.234375 310.191406 283.234375 310.191406 284.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.234375 274.746094 C 288.234375 276.367188 285.804688 276.367188 285.804688 274.746094 C 285.804688 273.125 288.234375 273.125 288.234375 274.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.660156 164.375 C 258.660156 165.992188 256.230469 165.992188 256.230469 164.375 C 256.230469 162.753906 258.660156 162.753906 258.660156 164.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.59375 358.25 C 203.59375 359.871094 201.164062 359.871094 201.164062 358.25 C 201.164062 356.628906 203.59375 356.628906 203.59375 358.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.851562 369.96875 C 276.851562 371.589844 274.421875 371.589844 274.421875 369.96875 C 274.421875 368.347656 276.851562 368.347656 276.851562 369.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.980469 70.910156 L 170.617188 73.746094 L 167.347656 73.746094 Z M 168.980469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.445312 70.910156 L 177.082031 73.746094 L 173.808594 73.746094 Z M 175.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.703125 112.257812 C 249.703125 113.875 247.273438 113.875 247.273438 112.257812 C 247.273438 110.636719 249.703125 110.636719 249.703125 112.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.09375 152.019531 C 243.09375 153.640625 240.664062 153.640625 240.664062 152.019531 C 240.664062 150.402344 243.09375 150.402344 243.09375 152.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.917969 129.261719 C 240.917969 130.882812 238.488281 130.882812 238.488281 129.261719 C 238.488281 127.640625 240.917969 127.640625 240.917969 129.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.027344 131.398438 C 254.027344 133.019531 251.597656 133.019531 251.597656 131.398438 C 251.597656 129.777344 254.027344 129.777344 254.027344 131.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.792969 169.964844 C 275.792969 171.585938 273.363281 171.585938 273.363281 169.964844 C 273.363281 168.34375 275.792969 168.34375 275.792969 169.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.84375 117.980469 C 245.84375 119.601562 243.414062 119.601562 243.414062 117.980469 C 243.414062 116.359375 245.84375 116.359375 245.84375 117.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.175781 94.257812 C 241.175781 95.875 238.746094 95.875 238.746094 94.257812 C 238.746094 92.636719 241.175781 92.636719 241.175781 94.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.804688 333.269531 C 295.804688 334.890625 293.375 334.890625 293.375 333.269531 C 293.375 331.648438 295.804688 331.648438 295.804688 333.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.574219 242.214844 C 269.574219 243.835938 267.144531 243.835938 267.144531 242.214844 C 267.144531 240.59375 269.574219 240.59375 269.574219 242.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.804688 245.933594 C 285.804688 247.554688 283.375 247.554688 283.375 245.933594 C 283.375 244.3125 285.804688 244.3125 285.804688 245.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.363281 262.226562 C 248.363281 263.847656 245.933594 263.847656 245.933594 262.226562 C 245.933594 260.605469 248.363281 260.605469 248.363281 262.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.632812 160.425781 C 231.632812 162.046875 229.203125 162.046875 229.203125 160.425781 C 229.203125 158.804688 231.632812 158.804688 231.632812 160.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.863281 70.910156 L 245.496094 73.746094 L 242.226562 73.746094 Z M 243.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.644531 216.734375 C 208.644531 218.355469 206.214844 218.355469 206.214844 216.734375 C 206.214844 215.117188 208.644531 215.117188 208.644531 216.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.921875 203.675781 C 318.921875 205.296875 316.492188 205.296875 316.492188 203.675781 C 316.492188 202.058594 318.921875 202.058594 318.921875 203.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.722656 70.910156 L 202.359375 73.746094 L 199.085938 73.746094 Z M 200.722656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.390625 70.910156 L 225.027344 73.746094 L 221.753906 73.746094 Z M 223.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.027344 198.792969 C 274.027344 200.414062 271.597656 200.414062 271.597656 198.792969 C 271.597656 197.171875 274.027344 197.171875 274.027344 198.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.332031 70.910156 L 215.96875 73.746094 L 212.695312 73.746094 Z M 214.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.714844 70.910156 L 245.351562 73.746094 L 242.078125 73.746094 Z M 243.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.53125 179.847656 C 173.53125 181.46875 171.101562 181.46875 171.101562 179.847656 C 171.101562 178.226562 173.53125 178.226562 173.53125 179.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.394531 391.210938 C 293.394531 392.828125 290.964844 392.828125 290.964844 391.210938 C 290.964844 389.589844 293.394531 389.589844 293.394531 391.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.144531 70.910156 L 195.78125 73.746094 L 192.507812 73.746094 Z M 194.144531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.269531 70.910156 L 200.90625 73.746094 L 197.632812 73.746094 Z M 199.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.644531 132.71875 C 237.644531 134.339844 235.214844 134.339844 235.214844 132.71875 C 235.214844 131.101562 237.644531 131.101562 237.644531 132.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.996094 294.152344 C 228.996094 295.773438 226.566406 295.773438 226.566406 294.152344 C 226.566406 292.53125 228.996094 292.53125 228.996094 294.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.152344 277.046875 C 245.152344 278.667969 242.722656 278.667969 242.722656 277.046875 C 242.722656 275.425781 245.152344 275.425781 245.152344 277.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.414062 265.710938 C 297.414062 267.332031 294.984375 267.332031 294.984375 265.710938 C 294.984375 264.09375 297.414062 264.09375 297.414062 265.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.097656 70.910156 L 282.734375 73.746094 L 279.460938 73.746094 Z M 281.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.558594 73.84375 C 238.558594 75.464844 236.128906 75.464844 236.128906 73.84375 C 236.128906 72.226562 238.558594 72.226562 238.558594 73.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.960938 140.695312 C 300.960938 142.316406 298.53125 142.316406 298.53125 140.695312 C 298.53125 139.074219 300.960938 139.074219 300.960938 140.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.425781 289.511719 C 280.425781 291.132812 277.996094 291.132812 277.996094 289.511719 C 277.996094 287.890625 280.425781 287.890625 280.425781 289.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.265625 148.8125 C 258.265625 150.429688 255.835938 150.429688 255.835938 148.8125 C 255.835938 147.191406 258.265625 147.191406 258.265625 148.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.953125 147.097656 C 217.953125 148.71875 215.523438 148.71875 215.523438 147.097656 C 215.523438 145.480469 217.953125 145.480469 217.953125 147.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.742188 418.691406 L 133.378906 415.855469 L 130.105469 415.855469 Z M 131.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.816406 338.660156 C 232.816406 340.28125 230.386719 340.28125 230.386719 338.660156 C 230.386719 337.042969 232.816406 337.042969 232.816406 338.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.894531 260.71875 C 278.894531 262.339844 276.464844 262.339844 276.464844 260.71875 C 276.464844 259.097656 278.894531 259.097656 278.894531 260.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.417969 221.851562 C 281.417969 223.472656 278.988281 223.472656 278.988281 221.851562 C 278.988281 220.234375 281.417969 220.234375 281.417969 221.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.070312 157.167969 C 185.070312 158.789062 182.640625 158.789062 182.640625 157.167969 C 182.640625 155.546875 185.070312 155.546875 185.070312 157.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.921875 151.613281 C 165.921875 153.234375 163.488281 153.234375 163.488281 151.613281 C 163.488281 149.996094 165.921875 149.996094 165.921875 151.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.097656 299.9375 C 190.097656 301.558594 187.667969 301.558594 187.667969 299.9375 C 187.667969 298.316406 190.097656 298.316406 190.097656 299.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.402344 210.742188 C 245.402344 212.363281 242.972656 212.363281 242.972656 210.742188 C 242.972656 209.121094 245.402344 209.121094 245.402344 210.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.917969 70.910156 L 164.554688 73.746094 L 161.28125 73.746094 Z M 162.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.597656 70.910156 L 136.234375 73.746094 L 132.960938 73.746094 Z M 134.597656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.273438 70.910156 L 174.910156 73.746094 L 171.636719 73.746094 Z M 173.273438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.632812 70.910156 L 189.269531 73.746094 L 185.996094 73.746094 Z M 187.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.207031 264.191406 C 303.207031 265.8125 300.777344 265.8125 300.777344 264.191406 C 300.777344 262.574219 303.207031 262.574219 303.207031 264.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.71875 70.910156 L 158.355469 73.746094 L 155.082031 73.746094 Z M 156.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.289062 286.671875 C 325.289062 288.292969 322.859375 288.292969 322.859375 286.671875 C 322.859375 285.050781 325.289062 285.050781 325.289062 286.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.292969 194.777344 C 258.292969 196.394531 255.863281 196.394531 255.863281 194.777344 C 255.863281 193.15625 258.292969 193.15625 258.292969 194.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.003906 188.203125 C 195.003906 189.824219 192.574219 189.824219 192.574219 188.203125 C 192.574219 186.582031 195.003906 186.582031 195.003906 188.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.910156 139.957031 C 166.910156 141.578125 164.480469 141.578125 164.480469 139.957031 C 164.480469 138.335938 166.910156 138.335938 166.910156 139.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.71875 319.695312 C 222.71875 321.316406 220.289062 321.316406 220.289062 319.695312 C 220.289062 318.074219 222.71875 318.074219 222.71875 319.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.007812 279.542969 C 287.007812 281.164062 284.578125 281.164062 284.578125 279.542969 C 284.578125 277.921875 287.007812 277.921875 287.007812 279.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.789062 285.882812 C 244.789062 287.503906 242.359375 287.503906 242.359375 285.882812 C 242.359375 284.265625 244.789062 284.265625 244.789062 285.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.535156 227.65625 C 146.535156 229.277344 144.105469 229.277344 144.105469 227.65625 C 144.105469 226.039062 146.535156 226.039062 146.535156 227.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.285156 278.585938 C 285.285156 280.207031 282.855469 280.207031 282.855469 278.585938 C 282.855469 276.96875 285.285156 276.96875 285.285156 278.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.285156 251.3125 C 286.285156 252.933594 283.855469 252.933594 283.855469 251.3125 C 283.855469 249.691406 286.285156 249.691406 286.285156 251.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.253906 179.96875 C 286.253906 181.589844 283.824219 181.589844 283.824219 179.96875 C 283.824219 178.347656 286.253906 178.347656 286.253906 179.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.777344 285.621094 C 334.777344 287.242188 332.347656 287.242188 332.347656 285.621094 C 332.347656 284.003906 334.777344 284.003906 334.777344 285.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.390625 195.941406 C 235.390625 197.5625 232.960938 197.5625 232.960938 195.941406 C 232.960938 194.320312 235.390625 194.320312 235.390625 195.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.332031 163.800781 C 160.332031 165.421875 157.902344 165.421875 157.902344 163.800781 C 157.902344 162.183594 160.332031 162.183594 160.332031 163.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.566406 84.277344 C 323.566406 85.898438 321.136719 85.898438 321.136719 84.277344 C 321.136719 82.65625 323.566406 82.65625 323.566406 84.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.007812 256.210938 C 327.007812 257.828125 324.578125 257.828125 324.578125 256.210938 C 324.578125 254.589844 327.007812 254.589844 327.007812 256.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.867188 159.871094 C 267.867188 161.492188 265.4375 161.492188 265.4375 159.871094 C 265.4375 158.253906 267.867188 158.253906 267.867188 159.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.097656 70.910156 L 287.734375 73.746094 L 284.460938 73.746094 Z M 286.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.527344 267.234375 C 206.527344 268.855469 204.097656 268.855469 204.097656 267.234375 C 204.097656 265.617188 206.527344 265.617188 206.527344 267.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.683594 70.910156 L 184.320312 73.746094 L 181.046875 73.746094 Z M 182.683594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.667969 70.910156 L 141.304688 73.746094 L 138.03125 73.746094 Z M 139.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.054688 70.910156 L 315.691406 73.746094 L 312.417969 73.746094 Z M 314.054688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.667969 70.910156 L 239.304688 73.746094 L 236.035156 73.746094 Z M 237.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.957031 70.910156 L 146.59375 73.746094 L 143.320312 73.746094 Z M 144.957031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.773438 91.773438 C 248.773438 93.394531 246.34375 93.394531 246.34375 91.773438 C 246.34375 90.152344 248.773438 90.152344 248.773438 91.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.246094 249.429688 C 116.246094 251.046875 113.816406 251.046875 113.816406 249.429688 C 113.816406 247.808594 116.246094 247.808594 116.246094 249.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.746094 262.96875 C 265.746094 264.585938 263.316406 264.585938 263.316406 262.96875 C 263.316406 261.347656 265.746094 261.347656 265.746094 262.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.046875 245.308594 C 276.046875 246.929688 273.617188 246.929688 273.617188 245.308594 C 273.617188 243.691406 276.046875 243.691406 276.046875 245.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.589844 70.910156 L 179.226562 73.746094 L 175.953125 73.746094 Z M 177.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.925781 75.410156 C 236.925781 77.03125 234.496094 77.03125 234.496094 75.410156 C 234.496094 73.789062 236.925781 73.789062 236.925781 75.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.570312 181.242188 C 255.570312 182.863281 253.140625 182.863281 253.140625 181.242188 C 253.140625 179.625 255.570312 179.625 255.570312 181.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.867188 308.1875 C 255.867188 309.804688 253.4375 309.804688 253.4375 308.1875 C 253.4375 306.566406 255.867188 306.566406 255.867188 308.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.90625 278.734375 C 266.90625 280.355469 264.476562 280.355469 264.476562 278.734375 C 264.476562 277.113281 266.90625 277.113281 266.90625 278.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.292969 333.257812 C 268.292969 334.878906 265.859375 334.878906 265.859375 333.257812 C 265.859375 331.636719 268.292969 331.636719 268.292969 333.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.441406 284.117188 C 190.441406 285.738281 188.011719 285.738281 188.011719 284.117188 C 188.011719 282.496094 190.441406 282.496094 190.441406 284.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.992188 292.152344 C 242.992188 293.773438 240.558594 293.773438 240.558594 292.152344 C 240.558594 290.535156 242.992188 290.535156 242.992188 292.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.449219 289.714844 C 245.449219 291.335938 243.019531 291.335938 243.019531 289.714844 C 243.019531 288.097656 245.449219 288.097656 245.449219 289.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.371094 298.472656 C 209.371094 300.09375 206.941406 300.09375 206.941406 298.472656 C 206.941406 296.851562 209.371094 296.851562 209.371094 298.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.828125 70.910156 L 126.464844 73.746094 L 123.191406 73.746094 Z M 124.828125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.191406 70.910156 L 246.828125 73.746094 L 243.554688 73.746094 Z M 245.191406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.699219 256.355469 C 290.699219 257.976562 288.269531 257.976562 288.269531 256.355469 C 288.269531 254.738281 290.699219 254.738281 290.699219 256.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.152344 402.195312 C 164.152344 403.816406 161.722656 403.816406 161.722656 402.195312 C 161.722656 400.574219 164.152344 400.574219 164.152344 402.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.453125 211.910156 C 228.453125 213.527344 226.023438 213.527344 226.023438 211.910156 C 226.023438 210.289062 228.453125 210.289062 228.453125 211.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125 190.742188 C 125 192.359375 122.570312 192.359375 122.570312 190.742188 C 122.570312 189.121094 125 189.121094 125 190.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.035156 274.003906 C 238.035156 275.625 235.605469 275.625 235.605469 274.003906 C 235.605469 272.382812 238.035156 272.382812 238.035156 274.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.082031 174.84375 C 158.082031 176.460938 155.652344 176.460938 155.652344 174.84375 C 155.652344 173.222656 158.082031 173.222656 158.082031 174.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.597656 271.449219 C 245.597656 273.070312 243.167969 273.070312 243.167969 271.449219 C 243.167969 269.832031 245.597656 269.832031 245.597656 271.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.585938 245.652344 C 270.585938 247.273438 268.15625 247.273438 268.15625 245.652344 C 268.15625 244.03125 270.585938 244.03125 270.585938 245.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.523438 216.050781 C 335.523438 217.667969 333.09375 217.667969 333.09375 216.050781 C 333.09375 214.429688 335.523438 214.429688 335.523438 216.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.152344 269.03125 C 326.152344 270.652344 323.71875 270.652344 323.71875 269.03125 C 323.71875 267.410156 326.152344 267.410156 326.152344 269.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.09375 129.941406 C 274.09375 131.5625 271.664062 131.5625 271.664062 129.941406 C 271.664062 128.320312 274.09375 128.320312 274.09375 129.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.316406 237.597656 C 299.316406 239.21875 296.886719 239.21875 296.886719 237.597656 C 296.886719 235.980469 299.316406 235.980469 299.316406 237.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.09375 70.910156 L 168.730469 73.746094 L 165.460938 73.746094 Z M 167.09375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.617188 70.910156 L 311.253906 73.746094 L 307.980469 73.746094 Z M 309.617188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.828125 70.910156 L 143.464844 73.746094 L 140.191406 73.746094 Z M 141.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.875 243.253906 C 215.875 244.871094 213.445312 244.871094 213.445312 243.253906 C 213.445312 241.632812 215.875 241.632812 215.875 243.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.085938 313.457031 C 216.085938 315.074219 213.65625 315.074219 213.65625 313.457031 C 213.65625 311.835938 216.085938 311.835938 216.085938 313.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.507812 294.824219 C 258.507812 296.445312 256.074219 296.445312 256.074219 294.824219 C 256.074219 293.203125 258.507812 293.203125 258.507812 294.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.015625 418.691406 L 223.648438 415.855469 L 220.378906 415.855469 Z M 222.015625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.441406 232.53125 C 299.441406 234.152344 297.011719 234.152344 297.011719 232.53125 C 297.011719 230.910156 299.441406 230.910156 299.441406 232.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.898438 251.679688 C 273.898438 253.296875 271.46875 253.296875 271.46875 251.679688 C 271.46875 250.058594 273.898438 250.058594 273.898438 251.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.601562 326.835938 C 181.601562 328.457031 179.171875 328.457031 179.171875 326.835938 C 179.171875 325.214844 181.601562 325.214844 181.601562 326.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.554688 208.515625 C 242.554688 210.136719 240.121094 210.136719 240.121094 208.515625 C 240.121094 206.894531 242.554688 206.894531 242.554688 208.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.683594 195.90625 C 179.683594 197.527344 177.253906 197.527344 177.253906 195.90625 C 177.253906 194.285156 179.683594 194.285156 179.683594 195.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.027344 279.75 C 274.027344 281.371094 271.597656 281.371094 271.597656 279.75 C 271.597656 278.128906 274.027344 278.128906 274.027344 279.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.066406 298.445312 C 260.066406 300.066406 257.636719 300.066406 257.636719 298.445312 C 257.636719 296.828125 260.066406 296.828125 260.066406 298.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.121094 256.378906 C 292.121094 258 289.691406 258 289.691406 256.378906 C 289.691406 254.757812 292.121094 254.757812 292.121094 256.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.480469 99.75 C 122.480469 101.371094 120.050781 101.371094 120.050781 99.75 C 120.050781 98.128906 122.480469 98.128906 122.480469 99.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.71875 269.597656 C 278.71875 271.21875 276.289062 271.21875 276.289062 269.597656 C 276.289062 267.980469 278.71875 267.980469 278.71875 269.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.152344 279.777344 C 284.152344 281.394531 281.722656 281.394531 281.722656 279.777344 C 281.722656 278.15625 284.152344 278.15625 284.152344 279.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.660156 290.242188 C 269.660156 291.863281 267.230469 291.863281 267.230469 290.242188 C 267.230469 288.621094 269.660156 288.621094 269.660156 290.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.113281 324.929688 C 221.113281 326.546875 218.683594 326.546875 218.683594 324.929688 C 218.683594 323.308594 221.113281 323.308594 221.113281 324.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.296875 248.675781 C 212.296875 250.296875 209.867188 250.296875 209.867188 248.675781 C 209.867188 247.058594 212.296875 247.058594 212.296875 248.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.5625 306.960938 C 252.5625 308.582031 250.132812 308.582031 250.132812 306.960938 C 250.132812 305.34375 252.5625 305.34375 252.5625 306.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.820312 264.726562 C 258.820312 266.347656 256.390625 266.347656 256.390625 264.726562 C 256.390625 263.109375 258.820312 263.109375 258.820312 264.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.929688 70.910156 L 152.566406 73.746094 L 149.292969 73.746094 Z M 150.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.820312 267.3125 C 271.820312 268.933594 269.390625 268.933594 269.390625 267.3125 C 269.390625 265.691406 271.820312 265.691406 271.820312 267.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.320312 265.023438 C 295.320312 266.644531 292.890625 266.644531 292.890625 265.023438 C 292.890625 263.40625 295.320312 263.40625 295.320312 265.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.746094 117.566406 C 258.746094 119.1875 256.316406 119.1875 256.316406 117.566406 C 256.316406 115.945312 258.746094 115.945312 258.746094 117.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.054688 223.042969 C 189.054688 224.664062 186.625 224.664062 186.625 223.042969 C 186.625 221.421875 189.054688 221.421875 189.054688 223.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.546875 303.921875 C 191.546875 305.542969 189.117188 305.542969 189.117188 303.921875 C 189.117188 302.304688 191.546875 302.304688 191.546875 303.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.902344 246.984375 C 180.902344 248.601562 178.472656 248.601562 178.472656 246.984375 C 178.472656 245.363281 180.902344 245.363281 180.902344 246.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.828125 122.785156 C 277.828125 124.40625 275.398438 124.40625 275.398438 122.785156 C 275.398438 121.167969 277.828125 121.167969 277.828125 122.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.648438 243.664062 C 295.648438 245.28125 293.21875 245.28125 293.21875 243.664062 C 293.21875 242.042969 295.648438 242.042969 295.648438 243.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.542969 287.9375 C 298.542969 289.554688 296.113281 289.554688 296.113281 287.9375 C 296.113281 286.316406 298.542969 286.316406 298.542969 287.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.75 70.910156 L 289.386719 73.746094 L 286.113281 73.746094 Z M 287.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.964844 228.886719 C 229.964844 230.507812 227.535156 230.507812 227.535156 228.886719 C 227.535156 227.265625 229.964844 227.265625 229.964844 228.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.605469 330.347656 C 331.605469 331.96875 329.175781 331.96875 329.175781 330.347656 C 329.175781 328.726562 331.605469 328.726562 331.605469 330.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.144531 253.808594 C 298.144531 255.429688 295.714844 255.429688 295.714844 253.808594 C 295.714844 252.1875 298.144531 252.1875 298.144531 253.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.160156 214.3125 C 284.160156 215.933594 281.726562 215.933594 281.726562 214.3125 C 281.726562 212.691406 284.160156 212.691406 284.160156 214.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.621094 174.101562 C 244.621094 175.71875 242.191406 175.71875 242.191406 174.101562 C 242.191406 172.480469 244.621094 172.480469 244.621094 174.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.601562 268.699219 C 298.601562 270.316406 296.171875 270.316406 296.171875 268.699219 C 296.171875 267.078125 298.601562 267.078125 298.601562 268.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.390625 294.089844 C 294.390625 295.707031 291.960938 295.707031 291.960938 294.089844 C 291.960938 292.46875 294.390625 292.46875 294.390625 294.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.347656 240.894531 C 340.347656 242.515625 337.917969 242.515625 337.917969 240.894531 C 337.917969 239.273438 340.347656 239.273438 340.347656 240.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 364.140625 358.484375 C 364.140625 360.105469 361.710938 360.105469 361.710938 358.484375 C 361.710938 356.863281 364.140625 356.863281 364.140625 358.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.25 386.589844 C 337.25 388.210938 334.820312 388.210938 334.820312 386.589844 C 334.820312 384.972656 337.25 384.972656 337.25 386.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.417969 418.691406 L 276.054688 415.855469 L 272.78125 415.855469 Z M 274.417969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.273438 418.691406 L 197.910156 415.855469 L 194.640625 415.855469 Z M 196.273438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.984375 231.398438 C 197.984375 233.019531 195.554688 233.019531 195.554688 231.398438 C 195.554688 229.777344 197.984375 229.777344 197.984375 231.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263 418.691406 L 264.632812 415.855469 L 261.363281 415.855469 Z M 263 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.53125 298.945312 C 262.53125 300.566406 260.101562 300.566406 260.101562 298.945312 C 260.101562 297.328125 262.53125 297.328125 262.53125 298.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 357.316406 374.949219 C 357.316406 376.566406 354.886719 376.566406 354.886719 374.949219 C 354.886719 373.328125 357.316406 373.328125 357.316406 374.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.375 251.070312 C 248.375 252.691406 245.945312 252.691406 245.945312 251.070312 C 245.945312 249.453125 248.375 249.453125 248.375 251.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.828125 117.875 C 188.828125 119.496094 186.398438 119.496094 186.398438 117.875 C 186.398438 116.253906 188.828125 116.253906 188.828125 117.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.285156 259.8125 C 184.285156 261.433594 181.855469 261.433594 181.855469 259.8125 C 181.855469 258.195312 184.285156 258.195312 184.285156 259.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.238281 207.160156 C 260.238281 208.78125 257.808594 208.78125 257.808594 207.160156 C 257.808594 205.539062 260.238281 205.539062 260.238281 207.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.753906 335.289062 C 306.753906 336.910156 304.324219 336.910156 304.324219 335.289062 C 304.324219 333.671875 306.753906 333.671875 306.753906 335.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.953125 310.621094 C 288.953125 312.238281 286.519531 312.238281 286.519531 310.621094 C 286.519531 309 288.953125 309 288.953125 310.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.625 136.476562 C 167.625 138.09375 165.195312 138.09375 165.195312 136.476562 C 165.195312 134.855469 167.625 134.855469 167.625 136.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.113281 252.664062 C 270.113281 254.285156 267.683594 254.285156 267.683594 252.664062 C 267.683594 251.042969 270.113281 251.042969 270.113281 252.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.925781 252.40625 C 243.925781 254.027344 241.496094 254.027344 241.496094 252.40625 C 241.496094 250.785156 243.925781 250.785156 243.925781 252.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.386719 283.257812 C 295.386719 284.878906 292.957031 284.878906 292.957031 283.257812 C 292.957031 281.640625 295.386719 281.640625 295.386719 283.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.261719 207.453125 C 318.261719 209.074219 315.832031 209.074219 315.832031 207.453125 C 315.832031 205.832031 318.261719 205.832031 318.261719 207.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.089844 288.082031 C 299.089844 289.703125 296.660156 289.703125 296.660156 288.082031 C 296.660156 286.464844 299.089844 286.464844 299.089844 288.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.613281 70.910156 L 147.25 73.746094 L 143.976562 73.746094 Z M 145.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.167969 289.082031 C 161.167969 290.703125 158.738281 290.703125 158.738281 289.082031 C 158.738281 287.464844 161.167969 287.464844 161.167969 289.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.507812 214.796875 C 248.507812 216.417969 246.078125 216.417969 246.078125 214.796875 C 246.078125 213.179688 248.507812 213.179688 248.507812 214.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.46875 321.15625 C 202.46875 322.777344 200.039062 322.777344 200.039062 321.15625 C 200.039062 319.535156 202.46875 319.535156 202.46875 321.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.011719 70.910156 L 196.648438 73.746094 L 193.375 73.746094 Z M 195.011719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.964844 70.910156 L 287.601562 73.746094 L 284.328125 73.746094 Z M 285.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.53125 70.910156 L 215.167969 73.746094 L 211.894531 73.746094 Z M 213.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.679688 70.910156 L 181.316406 73.746094 L 178.042969 73.746094 Z M 179.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.957031 326.984375 C 197.957031 328.605469 195.523438 328.605469 195.523438 326.984375 C 195.523438 325.363281 197.957031 325.363281 197.957031 326.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.519531 297.757812 C 320.519531 299.375 318.089844 299.375 318.089844 297.757812 C 318.089844 296.136719 320.519531 296.136719 320.519531 297.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.21875 253.753906 C 241.21875 255.375 238.785156 255.375 238.785156 253.753906 C 238.785156 252.136719 241.21875 252.136719 241.21875 253.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.992188 267.414062 C 268.992188 269.035156 266.5625 269.035156 266.5625 267.414062 C 266.5625 265.792969 268.992188 265.792969 268.992188 267.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.21875 418.691406 L 146.855469 415.855469 L 143.582031 415.855469 Z M 145.21875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.277344 418.691406 L 226.914062 415.855469 L 223.640625 415.855469 Z M 225.277344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.886719 383.796875 C 331.886719 385.414062 329.457031 385.414062 329.457031 383.796875 C 329.457031 382.175781 331.886719 382.175781 331.886719 383.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.859375 70.910156 L 265.496094 73.746094 L 262.222656 73.746094 Z M 263.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.8125 340.894531 C 324.8125 342.515625 322.382812 342.515625 322.382812 340.894531 C 322.382812 339.273438 324.8125 339.273438 324.8125 340.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.789062 290.625 C 233.789062 292.246094 231.359375 292.246094 231.359375 290.625 C 231.359375 289.007812 233.789062 289.007812 233.789062 290.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.191406 293.414062 C 149.191406 295.03125 146.761719 295.03125 146.761719 293.414062 C 146.761719 291.792969 149.191406 291.792969 149.191406 293.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.902344 70.910156 L 285.539062 73.746094 L 282.265625 73.746094 Z M 283.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.148438 209.777344 C 261.148438 211.394531 258.71875 211.394531 258.71875 209.777344 C 258.71875 208.15625 261.148438 208.15625 261.148438 209.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.96875 282.496094 C 245.96875 284.113281 243.539062 284.113281 243.539062 282.496094 C 243.539062 280.875 245.96875 280.875 245.96875 282.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.867188 130.6875 C 179.867188 132.308594 177.4375 132.308594 177.4375 130.6875 C 177.4375 129.066406 179.867188 129.066406 179.867188 130.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.050781 183.019531 C 175.050781 184.640625 172.617188 184.640625 172.617188 183.019531 C 172.617188 181.402344 175.050781 181.402344 175.050781 183.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.265625 217.863281 C 256.265625 219.484375 253.835938 219.484375 253.835938 217.863281 C 253.835938 216.246094 256.265625 216.246094 256.265625 217.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.109375 301.535156 C 267.109375 303.15625 264.679688 303.15625 264.679688 301.535156 C 264.679688 299.914062 267.109375 299.914062 267.109375 301.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.625 254.503906 C 295.625 256.125 293.195312 256.125 293.195312 254.503906 C 293.195312 252.882812 295.625 252.882812 295.625 254.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.617188 284.1875 C 283.617188 285.804688 281.1875 285.804688 281.1875 284.1875 C 281.1875 282.566406 283.617188 282.566406 283.617188 284.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.398438 342.933594 C 256.398438 344.550781 253.96875 344.550781 253.96875 342.933594 C 253.96875 341.3125 256.398438 341.3125 256.398438 342.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.792969 335.175781 C 228.792969 336.792969 226.363281 336.792969 226.363281 335.175781 C 226.363281 333.554688 228.792969 333.554688 228.792969 335.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.613281 321.308594 C 144.613281 322.929688 142.183594 322.929688 142.183594 321.308594 C 142.183594 319.691406 144.613281 319.691406 144.613281 321.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.601562 70.910156 L 139.238281 73.746094 L 135.964844 73.746094 Z M 137.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.765625 277.90625 C 279.765625 279.527344 277.335938 279.527344 277.335938 277.90625 C 277.335938 276.285156 279.765625 276.285156 279.765625 277.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.949219 289.800781 C 321.949219 291.421875 319.519531 291.421875 319.519531 289.800781 C 319.519531 288.183594 321.949219 288.183594 321.949219 289.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.992188 246.210938 C 269.992188 247.828125 267.5625 247.828125 267.5625 246.210938 C 267.5625 244.589844 269.992188 244.589844 269.992188 246.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 180.753906 408.890625 C 180.753906 410.507812 178.324219 410.507812 178.324219 408.890625 C 178.324219 407.269531 180.753906 407.269531 180.753906 408.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.027344 228.414062 C 257.027344 230.035156 254.597656 230.035156 254.597656 228.414062 C 254.597656 226.792969 257.027344 226.792969 257.027344 228.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.265625 213.394531 C 283.265625 215.011719 280.835938 215.011719 280.835938 213.394531 C 280.835938 211.773438 283.265625 211.773438 283.265625 213.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.710938 257.066406 C 240.710938 258.6875 238.28125 258.6875 238.28125 257.066406 C 238.28125 255.445312 240.710938 255.445312 240.710938 257.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.777344 335.378906 C 264.777344 336.996094 262.34375 336.996094 262.34375 335.378906 C 262.34375 333.757812 264.777344 333.757812 264.777344 335.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.148438 240.390625 C 220.148438 242.011719 217.71875 242.011719 217.71875 240.390625 C 217.71875 238.769531 220.148438 238.769531 220.148438 240.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.453125 261.902344 C 281.453125 263.523438 279.023438 263.523438 279.023438 261.902344 C 279.023438 260.28125 281.453125 260.28125 281.453125 261.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.945312 83.945312 C 276.945312 85.566406 274.515625 85.566406 274.515625 83.945312 C 274.515625 82.324219 276.945312 82.324219 276.945312 83.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.195312 405.964844 C 141.195312 407.582031 138.765625 407.582031 138.765625 405.964844 C 138.765625 404.34375 141.195312 404.34375 141.195312 405.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.214844 354.261719 C 268.214844 355.882812 265.785156 355.882812 265.785156 354.261719 C 265.785156 352.644531 268.214844 352.644531 268.214844 354.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.378906 350.027344 C 192.378906 351.644531 189.949219 351.644531 189.949219 350.027344 C 189.949219 348.40625 192.378906 348.40625 192.378906 350.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.007812 259.316406 C 281.007812 260.933594 278.578125 260.933594 278.578125 259.316406 C 278.578125 257.695312 281.007812 257.695312 281.007812 259.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.566406 223.65625 C 264.566406 225.277344 262.136719 225.277344 262.136719 223.65625 C 262.136719 222.035156 264.566406 222.035156 264.566406 223.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.878906 214.265625 C 240.878906 215.886719 238.449219 215.886719 238.449219 214.265625 C 238.449219 212.648438 240.878906 212.648438 240.878906 214.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.648438 196.71875 C 218.648438 198.335938 216.21875 198.335938 216.21875 196.71875 C 216.21875 195.097656 218.648438 195.097656 218.648438 196.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.449219 128.664062 C 153.449219 130.285156 151.015625 130.285156 151.015625 128.664062 C 151.015625 127.046875 153.449219 127.046875 153.449219 128.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.484375 360.492188 C 275.484375 362.113281 273.054688 362.113281 273.054688 360.492188 C 273.054688 358.871094 275.484375 358.871094 275.484375 360.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.898438 145.167969 C 346.898438 146.789062 344.46875 146.789062 344.46875 145.167969 C 344.46875 143.550781 346.898438 143.550781 346.898438 145.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.917969 70.910156 L 167.554688 73.746094 L 164.28125 73.746094 Z M 165.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.042969 353.199219 C 257.042969 354.820312 254.613281 354.820312 254.613281 353.199219 C 254.613281 351.578125 257.042969 351.578125 257.042969 353.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.273438 99.160156 C 159.273438 100.78125 156.84375 100.78125 156.84375 99.160156 C 156.84375 97.542969 159.273438 97.542969 159.273438 99.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.347656 281.070312 C 334.347656 282.6875 331.914062 282.6875 331.914062 281.070312 C 331.914062 279.449219 334.347656 279.449219 334.347656 281.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.414062 70.910156 L 129.050781 73.746094 L 125.777344 73.746094 Z M 127.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.832031 175.277344 C 222.832031 176.898438 220.402344 176.898438 220.402344 175.277344 C 220.402344 173.660156 222.832031 173.660156 222.832031 175.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.539062 194.667969 C 246.539062 196.289062 244.109375 196.289062 244.109375 194.667969 C 244.109375 193.046875 246.539062 193.046875 246.539062 194.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.347656 70.910156 L 185.984375 73.746094 L 182.710938 73.746094 Z M 184.347656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.71875 241.523438 C 256.71875 243.144531 254.289062 243.144531 254.289062 241.523438 C 254.289062 239.90625 256.71875 239.90625 256.71875 241.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.761719 324.21875 C 172.761719 325.835938 170.328125 325.835938 170.328125 324.21875 C 170.328125 322.597656 172.761719 322.597656 172.761719 324.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.132812 343.027344 C 215.132812 344.648438 212.703125 344.648438 212.703125 343.027344 C 212.703125 341.40625 215.132812 341.40625 215.132812 343.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.929688 311.296875 C 242.929688 312.917969 240.5 312.917969 240.5 311.296875 C 240.5 309.675781 242.929688 309.675781 242.929688 311.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.496094 303.902344 C 261.496094 305.523438 259.066406 305.523438 259.066406 303.902344 C 259.066406 302.28125 261.496094 302.28125 261.496094 303.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.761719 299.726562 C 250.761719 301.347656 248.332031 301.347656 248.332031 299.726562 C 248.332031 298.105469 250.761719 298.105469 250.761719 299.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.9375 278.484375 C 272.9375 280.105469 270.507812 280.105469 270.507812 278.484375 C 270.507812 276.863281 272.9375 276.863281 272.9375 278.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.289062 268.632812 C 312.289062 270.253906 309.859375 270.253906 309.859375 268.632812 C 309.859375 267.011719 312.289062 267.011719 312.289062 268.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.78125 384.636719 C 265.78125 386.257812 263.351562 386.257812 263.351562 384.636719 C 263.351562 383.015625 265.78125 383.015625 265.78125 384.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.523438 263.75 C 235.523438 265.371094 233.09375 265.371094 233.09375 263.75 C 233.09375 262.132812 235.523438 262.132812 235.523438 263.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.285156 258.765625 C 305.285156 260.386719 302.855469 260.386719 302.855469 258.765625 C 302.855469 257.144531 305.285156 257.144531 305.285156 258.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.074219 177.878906 C 260.074219 179.5 257.644531 179.5 257.644531 177.878906 C 257.644531 176.261719 260.074219 176.261719 260.074219 177.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.515625 249.371094 C 217.515625 250.992188 215.085938 250.992188 215.085938 249.371094 C 215.085938 247.753906 217.515625 247.753906 217.515625 249.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.886719 302.402344 C 237.886719 304.023438 235.457031 304.023438 235.457031 302.402344 C 235.457031 300.78125 237.886719 300.78125 237.886719 302.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.4375 254.453125 C 260.4375 256.074219 258.007812 256.074219 258.007812 254.453125 C 258.007812 252.832031 260.4375 252.832031 260.4375 254.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.882812 70.910156 L 170.519531 73.746094 L 167.246094 73.746094 Z M 168.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.191406 256.355469 C 303.191406 257.976562 300.761719 257.976562 300.761719 256.355469 C 300.761719 254.734375 303.191406 254.734375 303.191406 256.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.589844 70.910156 L 183.226562 73.746094 L 179.953125 73.746094 Z M 181.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.191406 257.984375 C 300.191406 259.605469 297.761719 259.605469 297.761719 257.984375 C 297.761719 256.363281 300.191406 256.363281 300.191406 257.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.097656 289.578125 C 255.097656 291.195312 252.667969 291.195312 252.667969 289.578125 C 252.667969 287.957031 255.097656 287.957031 255.097656 289.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.050781 243.253906 C 279.050781 244.875 276.621094 244.875 276.621094 243.253906 C 276.621094 241.636719 279.050781 241.636719 279.050781 243.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.90625 127.097656 C 163.90625 128.714844 161.476562 128.714844 161.476562 127.097656 C 161.476562 125.476562 163.90625 125.476562 163.90625 127.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.429688 70.910156 L 154.066406 73.746094 L 150.792969 73.746094 Z M 152.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.933594 272.261719 C 227.933594 273.882812 225.503906 273.882812 225.503906 272.261719 C 225.503906 270.644531 227.933594 270.644531 227.933594 272.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.0625 273.21875 C 270.0625 274.839844 267.632812 274.839844 267.632812 273.21875 C 267.632812 271.601562 270.0625 271.601562 270.0625 273.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 403.21875 202.71875 C 403.21875 204.339844 400.789062 204.339844 400.789062 202.71875 C 400.789062 201.097656 403.21875 201.097656 403.21875 202.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.332031 128.929688 C 240.332031 130.546875 237.902344 130.546875 237.902344 128.929688 C 237.902344 127.308594 240.332031 127.308594 240.332031 128.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.074219 317.945312 C 111.074219 319.5625 108.640625 319.5625 108.640625 317.945312 C 108.640625 316.324219 111.074219 316.324219 111.074219 317.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.15625 302.761719 C 239.15625 304.382812 236.726562 304.382812 236.726562 302.761719 C 236.726562 301.140625 239.15625 301.140625 239.15625 302.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.332031 70.910156 L 133.96875 73.746094 L 130.695312 73.746094 Z M 132.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.929688 187.910156 C 214.929688 189.53125 212.5 189.53125 212.5 187.910156 C 212.5 186.292969 214.929688 186.292969 214.929688 187.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.957031 233.765625 C 241.957031 235.386719 239.527344 235.386719 239.527344 233.765625 C 239.527344 232.148438 241.957031 232.148438 241.957031 233.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.234375 143 C 282.234375 144.617188 279.800781 144.617188 279.800781 143 C 279.800781 141.378906 282.234375 141.378906 282.234375 143 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.207031 156.484375 C 172.207031 158.105469 169.777344 158.105469 169.777344 156.484375 C 169.777344 154.867188 172.207031 154.867188 172.207031 156.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.332031 333.941406 C 296.332031 335.5625 293.902344 335.5625 293.902344 333.941406 C 293.902344 332.320312 296.332031 332.320312 296.332031 333.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.992188 226.171875 C 183.992188 227.792969 181.5625 227.792969 181.5625 226.171875 C 181.5625 224.554688 183.992188 224.554688 183.992188 226.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.175781 166.984375 C 329.175781 168.605469 326.746094 168.605469 326.746094 166.984375 C 326.746094 165.367188 329.175781 165.367188 329.175781 166.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.230469 253.664062 C 127.230469 255.28125 124.800781 255.28125 124.800781 253.664062 C 124.800781 252.042969 127.230469 252.042969 127.230469 253.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.054688 242.296875 C 203.054688 243.917969 200.625 243.917969 200.625 242.296875 C 200.625 240.675781 203.054688 240.675781 203.054688 242.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.230469 245.417969 C 228.230469 247.039062 225.800781 247.039062 225.800781 245.417969 C 225.800781 243.800781 228.230469 243.800781 228.230469 245.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.960938 143.429688 C 278.960938 145.050781 276.53125 145.050781 276.53125 143.429688 C 276.53125 141.808594 278.960938 141.808594 278.960938 143.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.636719 298.75 C 189.636719 300.371094 187.203125 300.371094 187.203125 298.75 C 187.203125 297.132812 189.636719 297.132812 189.636719 298.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.96875 236.210938 C 260.96875 237.832031 258.539062 237.832031 258.539062 236.210938 C 258.539062 234.589844 260.96875 234.589844 260.96875 236.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.496094 274.746094 C 140.496094 276.367188 138.066406 276.367188 138.066406 274.746094 C 138.066406 273.125 140.496094 273.125 140.496094 274.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.25 249.539062 C 314.25 251.160156 311.820312 251.160156 311.820312 249.539062 C 311.820312 247.921875 314.25 247.921875 314.25 249.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.78125 330.101562 C 235.78125 331.71875 233.351562 331.71875 233.351562 330.101562 C 233.351562 328.480469 235.78125 328.480469 235.78125 330.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.894531 70.910156 L 207.53125 73.746094 L 204.261719 73.746094 Z M 205.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.117188 133.550781 C 117.117188 135.171875 114.6875 135.171875 114.6875 133.550781 C 114.6875 131.933594 117.117188 131.933594 117.117188 133.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.628906 219.292969 C 230.628906 220.910156 228.199219 220.910156 228.199219 219.292969 C 228.199219 217.671875 230.628906 217.671875 230.628906 219.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.183594 70.910156 L 174.816406 73.746094 L 171.546875 73.746094 Z M 173.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.226562 322.296875 C 347.226562 323.917969 344.796875 323.917969 344.796875 322.296875 C 344.796875 320.679688 347.226562 320.679688 347.226562 322.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.132812 89.433594 C 141.132812 91.054688 138.703125 91.054688 138.703125 89.433594 C 138.703125 87.8125 141.132812 87.8125 141.132812 89.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.648438 260.210938 C 120.648438 261.828125 118.214844 261.828125 118.214844 260.210938 C 118.214844 258.589844 120.648438 258.589844 120.648438 260.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.882812 257.707031 C 117.882812 259.324219 115.453125 259.324219 115.453125 257.707031 C 115.453125 256.085938 117.882812 256.085938 117.882812 257.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.617188 221.242188 C 184.617188 222.863281 182.1875 222.863281 182.1875 221.242188 C 182.1875 219.625 184.617188 219.625 184.617188 221.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.289062 182.804688 C 199.289062 184.425781 196.859375 184.425781 196.859375 182.804688 C 196.859375 181.183594 199.289062 181.183594 199.289062 182.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.28125 70.910156 L 248.917969 73.746094 L 245.648438 73.746094 Z M 247.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.355469 235.230469 C 206.355469 236.851562 203.925781 236.851562 203.925781 235.230469 C 203.925781 233.613281 206.355469 233.613281 206.355469 235.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.058594 70.910156 L 252.695312 73.746094 L 249.421875 73.746094 Z M 251.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.769531 70.910156 L 155.40625 73.746094 L 152.132812 73.746094 Z M 153.769531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.820312 418.691406 L 140.457031 415.855469 L 137.183594 415.855469 Z M 138.820312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.785156 418.691406 L 266.421875 415.855469 L 263.152344 415.855469 Z M 264.785156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.441406 355.859375 C 297.441406 357.480469 295.011719 357.480469 295.011719 355.859375 C 295.011719 354.238281 297.441406 354.238281 297.441406 355.859375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.847656 70.910156 L 180.480469 73.746094 L 177.210938 73.746094 Z M 178.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.289062 139.257812 C 307.289062 140.875 304.859375 140.875 304.859375 139.257812 C 304.859375 137.636719 307.289062 137.636719 307.289062 139.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.640625 371 C 241.640625 372.621094 239.210938 372.621094 239.210938 371 C 239.210938 369.378906 241.640625 369.378906 241.640625 371 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.78125 418.691406 L 224.417969 415.855469 L 221.144531 415.855469 Z M 222.78125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.027344 230.265625 C 266.027344 231.886719 263.597656 231.886719 263.597656 230.265625 C 263.597656 228.648438 266.027344 228.648438 266.027344 230.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.113281 240.46875 C 265.113281 242.089844 262.683594 242.089844 262.683594 240.46875 C 262.683594 238.847656 265.113281 238.847656 265.113281 240.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.09375 221.3125 C 211.09375 222.929688 208.664062 222.929688 208.664062 221.3125 C 208.664062 219.691406 211.09375 219.691406 211.09375 221.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.539062 237.824219 C 261.539062 239.445312 259.109375 239.445312 259.109375 237.824219 C 259.109375 236.207031 261.539062 236.207031 261.539062 237.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.839844 211.855469 C 238.839844 213.476562 236.410156 213.476562 236.410156 211.855469 C 236.410156 210.238281 238.839844 210.238281 238.839844 211.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.796875 239.007812 C 264.796875 240.625 262.367188 240.625 262.367188 239.007812 C 262.367188 237.386719 264.796875 237.386719 264.796875 239.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.546875 285.167969 C 211.546875 286.785156 209.117188 286.785156 209.117188 285.167969 C 209.117188 283.546875 211.546875 283.546875 211.546875 285.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.449219 165.914062 C 235.449219 167.53125 233.019531 167.53125 233.019531 165.914062 C 233.019531 164.292969 235.449219 164.292969 235.449219 165.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.160156 257.027344 C 211.160156 258.648438 208.726562 258.648438 208.726562 257.027344 C 208.726562 255.40625 211.160156 255.40625 211.160156 257.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.121094 300.636719 C 267.121094 302.253906 264.691406 302.253906 264.691406 300.636719 C 264.691406 299.015625 267.121094 299.015625 267.121094 300.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.476562 70.910156 L 144.113281 73.746094 L 140.839844 73.746094 Z M 142.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.410156 116.503906 C 273.410156 118.121094 270.980469 118.121094 270.980469 116.503906 C 270.980469 114.882812 273.410156 114.882812 273.410156 116.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.671875 280.832031 C 264.671875 282.453125 262.238281 282.453125 262.238281 280.832031 C 262.238281 279.210938 264.671875 279.210938 264.671875 280.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.246094 313.40625 C 266.246094 315.027344 263.816406 315.027344 263.816406 313.40625 C 263.816406 311.785156 266.246094 311.785156 266.246094 313.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.066406 151.164062 C 272.066406 152.785156 269.636719 152.785156 269.636719 151.164062 C 269.636719 149.542969 272.066406 149.542969 272.066406 151.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.75 187.21875 C 274.75 188.839844 272.320312 188.839844 272.320312 187.21875 C 272.320312 185.597656 274.75 185.597656 274.75 187.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.4375 213.335938 C 301.4375 214.957031 299.007812 214.957031 299.007812 213.335938 C 299.007812 211.71875 301.4375 211.71875 301.4375 213.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.941406 418.691406 L 262.578125 415.855469 L 259.304688 415.855469 Z M 260.941406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.792969 418.691406 L 311.429688 415.855469 L 308.15625 415.855469 Z M 309.792969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.15625 211.53125 C 257.15625 213.152344 254.726562 213.152344 254.726562 211.53125 C 254.726562 209.914062 257.15625 209.914062 257.15625 211.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.992188 212.097656 C 225.992188 213.714844 223.5625 213.714844 223.5625 212.097656 C 223.5625 210.476562 225.992188 210.476562 225.992188 212.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.945312 310.042969 C 276.945312 311.664062 274.515625 311.664062 274.515625 310.042969 C 274.515625 308.421875 276.945312 308.421875 276.945312 310.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.964844 334.847656 C 291.964844 336.464844 289.535156 336.464844 289.535156 334.847656 C 289.535156 333.226562 291.964844 333.226562 291.964844 334.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.601562 344.96875 C 231.601562 346.589844 229.171875 346.589844 229.171875 344.96875 C 229.171875 343.347656 231.601562 343.347656 231.601562 344.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.59375 70.910156 L 266.230469 73.746094 L 262.957031 73.746094 Z M 264.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.375 256.730469 C 212.375 258.351562 209.941406 258.351562 209.941406 256.730469 C 209.941406 255.109375 212.375 255.109375 212.375 256.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.792969 88.605469 C 184.792969 90.226562 182.363281 90.226562 182.363281 88.605469 C 182.363281 86.984375 184.792969 86.984375 184.792969 88.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.699219 194.242188 C 301.699219 195.859375 299.269531 195.859375 299.269531 194.242188 C 299.269531 192.621094 301.699219 192.621094 301.699219 194.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.273438 207.8125 C 298.273438 209.433594 295.84375 209.433594 295.84375 207.8125 C 295.84375 206.191406 298.273438 206.191406 298.273438 207.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.546875 70.910156 L 194.183594 73.746094 L 190.910156 73.746094 Z M 192.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 388.507812 263.15625 C 388.507812 264.777344 386.078125 264.777344 386.078125 263.15625 C 386.078125 261.535156 388.507812 261.535156 388.507812 263.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.621094 294.105469 C 266.621094 295.726562 264.191406 295.726562 264.191406 294.105469 C 264.191406 292.488281 266.621094 292.488281 266.621094 294.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.828125 305.222656 C 255.828125 306.84375 253.398438 306.84375 253.398438 305.222656 C 253.398438 303.605469 255.828125 303.605469 255.828125 305.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.984375 283.351562 C 237.984375 284.96875 235.554688 284.96875 235.554688 283.351562 C 235.554688 281.730469 237.984375 281.730469 237.984375 283.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.734375 242.199219 C 262.734375 243.820312 260.304688 243.820312 260.304688 242.199219 C 260.304688 240.578125 262.734375 240.578125 262.734375 242.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.390625 262.242188 C 275.390625 263.859375 272.960938 263.859375 272.960938 262.242188 C 272.960938 260.621094 275.390625 260.621094 275.390625 262.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.1875 204.050781 C 236.1875 205.671875 233.757812 205.671875 233.757812 204.050781 C 233.757812 202.429688 236.1875 202.429688 236.1875 204.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.632812 265.65625 C 227.632812 267.273438 225.203125 267.273438 225.203125 265.65625 C 225.203125 264.035156 227.632812 264.035156 227.632812 265.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.050781 95.628906 C 139.050781 97.25 136.621094 97.25 136.621094 95.628906 C 136.621094 94.011719 139.050781 94.011719 139.050781 95.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.441406 242.828125 C 310.441406 244.445312 308.011719 244.445312 308.011719 242.828125 C 308.011719 241.207031 310.441406 241.207031 310.441406 242.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.464844 418.691406 L 289.101562 415.855469 L 285.828125 415.855469 Z M 287.464844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.566406 285.023438 C 223.566406 286.644531 221.136719 286.644531 221.136719 285.023438 C 221.136719 283.40625 223.566406 283.40625 223.566406 285.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.144531 70.910156 L 145.78125 73.746094 L 142.507812 73.746094 Z M 144.144531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.25 70.910156 L 160.882812 73.746094 L 157.613281 73.746094 Z M 159.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.796875 175.476562 C 253.796875 177.097656 251.367188 177.097656 251.367188 175.476562 C 251.367188 173.855469 253.796875 173.855469 253.796875 175.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.191406 317.90625 C 248.191406 319.527344 245.757812 319.527344 245.757812 317.90625 C 245.757812 316.289062 248.191406 316.289062 248.191406 317.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.449219 282.480469 C 317.449219 284.097656 315.019531 284.097656 315.019531 282.480469 C 315.019531 280.859375 317.449219 280.859375 317.449219 282.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.355469 418.691406 L 249.988281 415.855469 L 246.71875 415.855469 Z M 248.355469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.183594 70.910156 L 215.820312 73.746094 L 212.546875 73.746094 Z M 214.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.582031 149.730469 C 270.582031 151.351562 268.152344 151.351562 268.152344 149.730469 C 268.152344 148.109375 270.582031 148.109375 270.582031 149.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.425781 291.816406 C 260.425781 293.433594 257.996094 293.433594 257.996094 291.816406 C 257.996094 290.195312 260.425781 290.195312 260.425781 291.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.113281 311.644531 C 275.113281 313.265625 272.683594 313.265625 272.683594 311.644531 C 272.683594 310.027344 275.113281 310.027344 275.113281 311.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.25 271.699219 C 272.25 273.320312 269.820312 273.320312 269.820312 271.699219 C 269.820312 270.078125 272.25 270.078125 272.25 271.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.15625 70.910156 L 268.789062 73.746094 L 265.519531 73.746094 Z M 267.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.628906 114.074219 C 174.628906 115.691406 172.199219 115.691406 172.199219 114.074219 C 172.199219 112.453125 174.628906 112.453125 174.628906 114.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.625 227.191406 C 231.625 228.8125 229.195312 228.8125 229.195312 227.191406 C 229.195312 225.574219 231.625 225.574219 231.625 227.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.992188 342.066406 C 184.992188 343.6875 182.5625 343.6875 182.5625 342.066406 C 182.5625 340.445312 184.992188 340.445312 184.992188 342.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.246094 392.414062 C 211.246094 394.035156 208.8125 394.035156 208.8125 392.414062 C 208.8125 390.792969 211.246094 390.792969 211.246094 392.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.898438 369.914062 C 237.898438 371.535156 235.46875 371.535156 235.46875 369.914062 C 235.46875 368.296875 237.898438 368.296875 237.898438 369.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.167969 316.070312 C 311.167969 317.6875 308.738281 317.6875 308.738281 316.070312 C 308.738281 314.449219 311.167969 314.449219 311.167969 316.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.703125 414.453125 C 232.703125 416.074219 230.273438 416.074219 230.273438 414.453125 C 230.273438 412.835938 232.703125 412.835938 232.703125 414.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.980469 418.691406 L 209.617188 415.855469 L 206.34375 415.855469 Z M 207.980469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.085938 235.875 C 249.085938 237.492188 246.65625 237.492188 246.65625 235.875 C 246.65625 234.253906 249.085938 234.253906 249.085938 235.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.988281 273.351562 C 255.988281 274.972656 253.558594 274.972656 253.558594 273.351562 C 253.558594 271.730469 255.988281 271.730469 255.988281 273.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.523438 204.078125 C 266.523438 205.695312 264.09375 205.695312 264.09375 204.078125 C 264.09375 202.457031 266.523438 202.457031 266.523438 204.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.355469 296.550781 C 298.355469 298.171875 295.925781 298.171875 295.925781 296.550781 C 295.925781 294.929688 298.355469 294.929688 298.355469 296.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.007812 163.1875 C 267.007812 164.808594 264.578125 164.808594 264.578125 163.1875 C 264.578125 161.570312 267.007812 161.570312 267.007812 163.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.007812 234.023438 C 273.007812 235.640625 270.578125 235.640625 270.578125 234.023438 C 270.578125 232.402344 273.007812 232.402344 273.007812 234.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.640625 93.421875 C 237.640625 95.042969 235.210938 95.042969 235.210938 93.421875 C 235.210938 91.800781 237.640625 91.800781 237.640625 93.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.65625 290.304688 C 276.65625 291.925781 274.226562 291.925781 274.226562 290.304688 C 274.226562 288.6875 276.65625 288.6875 276.65625 290.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.234375 298.066406 C 283.234375 299.6875 280.804688 299.6875 280.804688 298.066406 C 280.804688 296.449219 283.234375 296.449219 283.234375 298.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.988281 238.089844 C 287.988281 239.707031 285.558594 239.707031 285.558594 238.089844 C 285.558594 236.46875 287.988281 236.46875 287.988281 238.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.429688 284.304688 C 284.429688 285.925781 282 285.925781 282 284.304688 C 282 282.6875 284.429688 282.6875 284.429688 284.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.371094 158.527344 C 336.371094 160.148438 333.941406 160.148438 333.941406 158.527344 C 333.941406 156.910156 336.371094 156.910156 336.371094 158.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.949219 337.378906 C 180.949219 339 178.519531 339 178.519531 337.378906 C 178.519531 335.761719 180.949219 335.761719 180.949219 337.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.910156 292.480469 C 244.910156 294.097656 242.480469 294.097656 242.480469 292.480469 C 242.480469 290.859375 244.910156 290.859375 244.910156 292.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.371094 285.824219 C 212.371094 287.445312 209.941406 287.445312 209.941406 285.824219 C 209.941406 284.203125 212.371094 284.203125 212.371094 285.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.382812 418.691406 L 147.019531 415.855469 L 143.746094 415.855469 Z M 145.382812 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.847656 418.691406 L 202.484375 415.855469 L 199.210938 415.855469 Z M 200.847656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.675781 300.765625 C 274.675781 302.382812 272.246094 302.382812 272.246094 300.765625 C 272.246094 299.144531 274.675781 299.144531 274.675781 300.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.25 269.820312 C 277.25 271.441406 274.820312 271.441406 274.820312 269.820312 C 274.820312 268.199219 277.25 268.199219 277.25 269.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.933594 326.65625 C 198.933594 328.277344 196.503906 328.277344 196.503906 326.65625 C 196.503906 325.035156 198.933594 325.035156 198.933594 326.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.746094 297.324219 C 286.746094 298.945312 284.316406 298.945312 284.316406 297.324219 C 284.316406 295.703125 286.746094 295.703125 286.746094 297.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.960938 277.191406 C 346.960938 278.8125 344.53125 278.8125 344.53125 277.191406 C 344.53125 275.574219 346.960938 275.574219 346.960938 277.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.585938 179.417969 C 311.585938 181.039062 309.15625 181.039062 309.15625 179.417969 C 309.15625 177.796875 311.585938 177.796875 311.585938 179.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.792969 222.796875 C 188.792969 224.414062 186.363281 224.414062 186.363281 222.796875 C 186.363281 221.175781 188.792969 221.175781 188.792969 222.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.128906 212.699219 C 227.128906 214.320312 224.695312 214.320312 224.695312 212.699219 C 224.695312 211.078125 227.128906 211.078125 227.128906 212.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.390625 214.980469 C 200.390625 216.601562 197.960938 216.601562 197.960938 214.980469 C 197.960938 213.359375 200.390625 213.359375 200.390625 214.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.042969 191.042969 C 176.042969 192.660156 173.613281 192.660156 173.613281 191.042969 C 173.613281 189.421875 176.042969 189.421875 176.042969 191.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.234375 70.910156 L 183.871094 73.746094 L 180.597656 73.746094 Z M 182.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.875 321.390625 C 332.875 323.011719 330.441406 323.011719 330.441406 321.390625 C 330.441406 319.769531 332.875 319.769531 332.875 321.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.375 232.625 C 196.375 234.246094 193.945312 234.246094 193.945312 232.625 C 193.945312 231.007812 196.375 231.007812 196.375 232.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.851562 199.761719 C 217.851562 201.382812 215.421875 201.382812 215.421875 199.761719 C 215.421875 198.140625 217.851562 198.140625 217.851562 199.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.773438 98.214844 C 228.773438 99.835938 226.34375 99.835938 226.34375 98.214844 C 226.34375 96.59375 228.773438 96.59375 228.773438 98.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.925781 70.910156 L 294.5625 73.746094 L 291.289062 73.746094 Z M 292.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.285156 173.453125 C 295.285156 175.074219 292.855469 175.074219 292.855469 173.453125 C 292.855469 171.835938 295.285156 171.835938 295.285156 173.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.824219 237.636719 C 296.824219 239.253906 294.394531 239.253906 294.394531 237.636719 C 294.394531 236.015625 296.824219 236.015625 296.824219 237.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.710938 243.878906 C 213.710938 245.496094 211.28125 245.496094 211.28125 243.878906 C 211.28125 242.257812 213.710938 242.257812 213.710938 243.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.839844 268.347656 C 205.839844 269.96875 203.410156 269.96875 203.410156 268.347656 C 203.410156 266.726562 205.839844 266.726562 205.839844 268.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.015625 293.417969 C 222.015625 295.035156 219.585938 295.035156 219.585938 293.417969 C 219.585938 291.796875 222.015625 291.796875 222.015625 293.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.699219 218.988281 C 329.699219 220.609375 327.269531 220.609375 327.269531 218.988281 C 327.269531 217.371094 329.699219 217.371094 329.699219 218.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.269531 218.523438 C 255.269531 220.144531 252.839844 220.144531 252.839844 218.523438 C 252.839844 216.902344 255.269531 216.902344 255.269531 218.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.597656 252.855469 C 240.597656 254.472656 238.167969 254.472656 238.167969 252.855469 C 238.167969 251.234375 240.597656 251.234375 240.597656 252.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.429688 318.496094 C 214.429688 320.117188 212 320.117188 212 318.496094 C 212 316.875 214.429688 316.875 214.429688 318.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.429688 227.542969 C 238.429688 229.160156 236 229.160156 236 227.542969 C 236 225.921875 238.429688 225.921875 238.429688 227.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.359375 295.035156 C 215.359375 296.65625 212.929688 296.65625 212.929688 295.035156 C 212.929688 293.417969 215.359375 293.417969 215.359375 295.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.679688 319.898438 C 289.679688 321.519531 287.25 321.519531 287.25 319.898438 C 287.25 318.277344 289.679688 318.277344 289.679688 319.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.5 313.632812 C 283.5 315.253906 281.066406 315.253906 281.066406 313.632812 C 281.066406 312.015625 283.5 312.015625 283.5 313.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.152344 70.910156 L 249.789062 73.746094 L 246.515625 73.746094 Z M 248.152344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.625 70.910156 L 214.261719 73.746094 L 210.988281 73.746094 Z M 212.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.761719 257.203125 C 271.761719 258.820312 269.332031 258.820312 269.332031 257.203125 C 269.332031 255.582031 271.761719 255.582031 271.761719 257.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.09375 265.324219 C 299.09375 266.941406 296.664062 266.941406 296.664062 265.324219 C 296.664062 263.703125 299.09375 263.703125 299.09375 265.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.089844 240.148438 C 259.089844 241.765625 256.660156 241.765625 256.660156 240.148438 C 256.660156 238.527344 259.089844 238.527344 259.089844 240.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.824219 236.019531 C 268.824219 237.640625 266.394531 237.640625 266.394531 236.019531 C 266.394531 234.402344 268.824219 234.402344 268.824219 236.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.234375 236.109375 C 292.234375 237.730469 289.800781 237.730469 289.800781 236.109375 C 289.800781 234.488281 292.234375 234.488281 292.234375 236.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.773438 210.238281 C 246.773438 211.859375 244.34375 211.859375 244.34375 210.238281 C 244.34375 208.617188 246.773438 208.617188 246.773438 210.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.40625 112.113281 C 280.40625 113.730469 277.976562 113.730469 277.976562 112.113281 C 277.976562 110.492188 280.40625 110.492188 280.40625 112.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.75 82.988281 C 307.75 84.609375 305.320312 84.609375 305.320312 82.988281 C 305.320312 81.367188 307.75 81.367188 307.75 82.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.179688 246.332031 C 192.179688 247.953125 189.75 247.953125 189.75 246.332031 C 189.75 244.710938 192.179688 244.710938 192.179688 246.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.246094 283.695312 C 207.246094 285.316406 204.816406 285.316406 204.816406 283.695312 C 204.816406 282.078125 207.246094 282.078125 207.246094 283.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256 261.042969 C 256 262.664062 253.570312 262.664062 253.570312 261.042969 C 253.570312 259.421875 256 259.421875 256 261.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.042969 70.910156 L 173.679688 73.746094 L 170.40625 73.746094 Z M 172.042969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.578125 70.910156 L 147.210938 73.746094 L 143.941406 73.746094 Z M 145.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.457031 418.691406 L 291.09375 415.855469 L 287.824219 415.855469 Z M 289.457031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.046875 70.910156 L 197.683594 73.746094 L 194.410156 73.746094 Z M 196.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.433594 350.414062 C 168.433594 352.03125 166.003906 352.03125 166.003906 350.414062 C 166.003906 348.792969 168.433594 348.792969 168.433594 350.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.304688 306.839844 C 284.304688 308.457031 281.871094 308.457031 281.871094 306.839844 C 281.871094 305.21875 284.304688 305.21875 284.304688 306.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.332031 172.945312 C 244.332031 174.566406 241.902344 174.566406 241.902344 172.945312 C 241.902344 171.324219 244.332031 171.324219 244.332031 172.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 396.433594 250.421875 C 396.433594 252.042969 394.003906 252.042969 394.003906 250.421875 C 394.003906 248.800781 396.433594 248.800781 396.433594 250.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.738281 290.246094 C 212.738281 291.867188 210.308594 291.867188 210.308594 290.246094 C 210.308594 288.625 212.738281 288.625 212.738281 290.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.792969 295.03125 C 210.792969 296.648438 208.363281 296.648438 208.363281 295.03125 C 208.363281 293.410156 210.792969 293.410156 210.792969 295.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.179688 257.140625 C 211.179688 258.757812 208.75 258.757812 208.75 257.140625 C 208.75 255.519531 211.179688 255.519531 211.179688 257.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.925781 198.855469 C 187.925781 200.472656 185.496094 200.472656 185.496094 198.855469 C 185.496094 197.234375 187.925781 197.234375 187.925781 198.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.730469 201.539062 C 277.730469 203.160156 275.300781 203.160156 275.300781 201.539062 C 275.300781 199.917969 277.730469 199.917969 277.730469 201.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.855469 192.679688 C 271.855469 194.296875 269.425781 194.296875 269.425781 192.679688 C 269.425781 191.058594 271.855469 191.058594 271.855469 192.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.101562 211.640625 C 226.101562 213.261719 223.671875 213.261719 223.671875 211.640625 C 223.671875 210.023438 226.101562 210.023438 226.101562 211.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.25 213.460938 C 289.25 215.082031 286.820312 215.082031 286.820312 213.460938 C 286.820312 211.839844 289.25 211.839844 289.25 213.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.023438 359.601562 C 290.023438 361.222656 287.59375 361.222656 287.59375 359.601562 C 287.59375 357.980469 290.023438 357.980469 290.023438 359.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.867188 253.945312 C 312.867188 255.5625 310.4375 255.5625 310.4375 253.945312 C 310.4375 252.324219 312.867188 252.324219 312.867188 253.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.027344 234.0625 C 260.027344 235.683594 257.597656 235.683594 257.597656 234.0625 C 257.597656 232.441406 260.027344 232.441406 260.027344 234.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.589844 192.078125 C 221.589844 193.695312 219.15625 193.695312 219.15625 192.078125 C 219.15625 190.457031 221.589844 190.457031 221.589844 192.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.292969 248.492188 C 301.292969 250.113281 298.863281 250.113281 298.863281 248.492188 C 298.863281 246.871094 301.292969 246.871094 301.292969 248.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 409.15625 245.183594 C 409.15625 246.804688 406.726562 246.804688 406.726562 245.183594 C 406.726562 243.566406 409.15625 243.566406 409.15625 245.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.679688 223.933594 C 231.679688 225.554688 229.25 225.554688 229.25 223.933594 C 229.25 222.3125 231.679688 222.3125 231.679688 223.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.28125 381.785156 C 228.28125 383.40625 225.851562 383.40625 225.851562 381.785156 C 225.851562 380.164062 228.28125 380.164062 228.28125 381.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.570312 355.421875 C 241.570312 357.042969 239.140625 357.042969 239.140625 355.421875 C 239.140625 353.804688 241.570312 353.804688 241.570312 355.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.226562 318.890625 C 230.226562 320.507812 227.796875 320.507812 227.796875 318.890625 C 227.796875 317.269531 230.226562 317.269531 230.226562 318.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.664062 281.214844 C 218.664062 282.835938 216.234375 282.835938 216.234375 281.214844 C 216.234375 279.59375 218.664062 279.59375 218.664062 281.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.054688 78.460938 C 127.054688 80.082031 124.625 80.082031 124.625 78.460938 C 124.625 76.84375 127.054688 76.84375 127.054688 78.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.417969 297.136719 C 255.417969 298.753906 252.988281 298.753906 252.988281 297.136719 C 252.988281 295.515625 255.417969 295.515625 255.417969 297.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.960938 270.398438 C 197.960938 272.019531 195.53125 272.019531 195.53125 270.398438 C 195.53125 268.777344 197.960938 268.777344 197.960938 270.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.59375 199.8125 C 249.59375 201.433594 247.164062 201.433594 247.164062 199.8125 C 247.164062 198.191406 249.59375 198.191406 249.59375 199.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.160156 258.3125 C 253.160156 259.933594 250.730469 259.933594 250.730469 258.3125 C 250.730469 256.691406 253.160156 256.691406 253.160156 258.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.847656 267.667969 C 206.847656 269.289062 204.417969 269.289062 204.417969 267.667969 C 204.417969 266.046875 206.847656 266.046875 206.847656 267.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.300781 336.710938 C 302.300781 338.332031 299.871094 338.332031 299.871094 336.710938 C 299.871094 335.089844 302.300781 335.089844 302.300781 336.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.613281 70.910156 L 175.25 73.746094 L 171.976562 73.746094 Z M 173.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.003906 244.707031 C 293.003906 246.324219 290.574219 246.324219 290.574219 244.707031 C 290.574219 243.085938 293.003906 243.085938 293.003906 244.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.878906 265.359375 C 236.878906 266.980469 234.449219 266.980469 234.449219 265.359375 C 234.449219 263.738281 236.878906 263.738281 236.878906 265.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.085938 258.460938 C 226.085938 260.082031 223.65625 260.082031 223.65625 258.460938 C 223.65625 256.839844 226.085938 256.839844 226.085938 258.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.121094 155.429688 C 113.121094 157.046875 110.691406 157.046875 110.691406 155.429688 C 110.691406 153.808594 113.121094 153.808594 113.121094 155.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.707031 70.910156 L 163.34375 73.746094 L 160.070312 73.746094 Z M 161.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.371094 299.25 C 282.371094 300.871094 279.941406 300.871094 279.941406 299.25 C 279.941406 297.632812 282.371094 297.632812 282.371094 299.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.441406 90.542969 C 124.441406 92.164062 122.011719 92.164062 122.011719 90.542969 C 122.011719 88.921875 124.441406 88.921875 124.441406 90.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.808594 70.910156 L 115.445312 73.746094 L 112.175781 73.746094 Z M 113.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.582031 244.804688 C 314.582031 246.425781 312.152344 246.425781 312.152344 244.804688 C 312.152344 243.1875 314.582031 243.1875 314.582031 244.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.710938 301.273438 C 253.710938 302.894531 251.28125 302.894531 251.28125 301.273438 C 251.28125 299.652344 253.710938 299.652344 253.710938 301.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.988281 331.257812 C 130.988281 332.875 128.558594 332.875 128.558594 331.257812 C 128.558594 329.636719 130.988281 329.636719 130.988281 331.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.308594 236.683594 C 292.308594 238.304688 289.875 238.304688 289.875 236.683594 C 289.875 235.0625 292.308594 235.0625 292.308594 236.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.472656 221.351562 C 167.472656 222.972656 165.042969 222.972656 165.042969 221.351562 C 165.042969 219.730469 167.472656 219.730469 167.472656 221.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.855469 229.679688 C 262.855469 231.296875 260.425781 231.296875 260.425781 229.679688 C 260.425781 228.058594 262.855469 228.058594 262.855469 229.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.691406 227.398438 C 194.691406 229.015625 192.261719 229.015625 192.261719 227.398438 C 192.261719 225.777344 194.691406 225.777344 194.691406 227.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.84375 252.808594 C 219.84375 254.429688 217.414062 254.429688 217.414062 252.808594 C 217.414062 251.1875 219.84375 251.1875 219.84375 252.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.125 263.144531 C 232.125 264.765625 229.691406 264.765625 229.691406 263.144531 C 229.691406 261.523438 232.125 261.523438 232.125 263.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.449219 234.976562 C 272.449219 236.59375 270.019531 236.59375 270.019531 234.976562 C 270.019531 233.355469 272.449219 233.355469 272.449219 234.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.972656 283.683594 C 309.972656 285.304688 307.542969 285.304688 307.542969 283.683594 C 307.542969 282.0625 309.972656 282.0625 309.972656 283.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.011719 195.707031 C 260.011719 197.328125 257.582031 197.328125 257.582031 195.707031 C 257.582031 194.085938 260.011719 194.085938 260.011719 195.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.003906 105.226562 C 268.003906 106.847656 265.574219 106.847656 265.574219 105.226562 C 265.574219 103.609375 268.003906 103.609375 268.003906 105.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.308594 310.09375 C 200.308594 311.714844 197.878906 311.714844 197.878906 310.09375 C 197.878906 308.472656 200.308594 308.472656 200.308594 310.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.648438 70.910156 L 156.285156 73.746094 L 153.011719 73.746094 Z M 154.648438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.753906 418.691406 L 154.390625 415.855469 L 151.117188 415.855469 Z M 152.753906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.511719 298.738281 C 251.511719 300.359375 249.082031 300.359375 249.082031 298.738281 C 249.082031 297.121094 251.511719 297.121094 251.511719 298.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.398438 134.402344 C 206.398438 136.023438 203.96875 136.023438 203.96875 134.402344 C 203.96875 132.785156 206.398438 132.785156 206.398438 134.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.160156 151.769531 C 291.160156 153.390625 288.730469 153.390625 288.730469 151.769531 C 288.730469 150.148438 291.160156 150.148438 291.160156 151.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.074219 289.777344 C 263.074219 291.398438 260.644531 291.398438 260.644531 289.777344 C 260.644531 288.160156 263.074219 288.160156 263.074219 289.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.398438 297.613281 C 292.398438 299.230469 289.96875 299.230469 289.96875 297.613281 C 289.96875 295.992188 292.398438 295.992188 292.398438 297.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.414062 230.902344 C 213.414062 232.523438 210.984375 232.523438 210.984375 230.902344 C 210.984375 229.28125 213.414062 229.28125 213.414062 230.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.378906 227.3125 C 196.378906 228.933594 193.949219 228.933594 193.949219 227.3125 C 193.949219 225.695312 196.378906 225.695312 196.378906 227.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.449219 230.523438 C 198.449219 232.144531 196.019531 232.144531 196.019531 230.523438 C 196.019531 228.902344 198.449219 228.902344 198.449219 230.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.894531 226.851562 C 252.894531 228.472656 250.464844 228.472656 250.464844 226.851562 C 250.464844 225.230469 252.894531 225.230469 252.894531 226.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.472656 70.910156 L 193.109375 73.746094 L 189.835938 73.746094 Z M 191.472656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.15625 70.910156 L 188.792969 73.746094 L 185.519531 73.746094 Z M 187.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.6875 70.910156 L 158.324219 73.746094 L 155.050781 73.746094 Z M 156.6875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.851562 70.910156 L 146.488281 73.746094 L 143.21875 73.746094 Z M 144.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 349.019531 204.570312 C 349.019531 206.191406 346.589844 206.191406 346.589844 204.570312 C 346.589844 202.949219 349.019531 202.949219 349.019531 204.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 365.410156 235.679688 C 365.410156 237.296875 362.980469 237.296875 362.980469 235.679688 C 362.980469 234.058594 365.410156 234.058594 365.410156 235.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.632812 70.910156 L 140.269531 73.746094 L 136.996094 73.746094 Z M 138.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.996094 70.910156 L 196.632812 73.746094 L 193.359375 73.746094 Z M 194.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.871094 292.058594 C 274.871094 293.679688 272.441406 293.679688 272.441406 292.058594 C 272.441406 290.4375 274.871094 290.4375 274.871094 292.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.632812 258.960938 C 291.632812 260.578125 289.203125 260.578125 289.203125 258.960938 C 289.203125 257.339844 291.632812 257.339844 291.632812 258.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.917969 295.601562 C 183.917969 297.222656 181.488281 297.222656 181.488281 295.601562 C 181.488281 293.980469 183.917969 293.980469 183.917969 295.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.878906 151.789062 C 165.878906 153.410156 163.449219 153.410156 163.449219 151.789062 C 163.449219 150.171875 165.878906 150.171875 165.878906 151.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.457031 92.332031 C 143.457031 93.953125 141.027344 93.953125 141.027344 92.332031 C 141.027344 90.710938 143.457031 90.710938 143.457031 92.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.101562 70.910156 L 261.738281 73.746094 L 258.464844 73.746094 Z M 260.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.609375 242.183594 C 269.609375 243.804688 267.179688 243.804688 267.179688 242.183594 C 267.179688 240.5625 269.609375 240.5625 269.609375 242.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.472656 228.773438 C 181.472656 230.394531 179.042969 230.394531 179.042969 228.773438 C 179.042969 227.152344 181.472656 227.152344 181.472656 228.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.28125 256.144531 C 262.28125 257.765625 259.851562 257.765625 259.851562 256.144531 C 259.851562 254.527344 262.28125 254.527344 262.28125 256.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.332031 213.21875 C 242.332031 214.839844 239.902344 214.839844 239.902344 213.21875 C 239.902344 211.601562 242.332031 211.601562 242.332031 213.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.375 275.148438 C 273.375 276.765625 270.945312 276.765625 270.945312 275.148438 C 270.945312 273.527344 273.375 273.527344 273.375 275.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.921875 211.558594 C 255.921875 213.179688 253.492188 213.179688 253.492188 211.558594 C 253.492188 209.9375 255.921875 209.9375 255.921875 211.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.148438 233 C 272.148438 234.621094 269.71875 234.621094 269.71875 233 C 269.71875 231.378906 272.148438 231.378906 272.148438 233 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.726562 418.691406 L 268.363281 415.855469 L 265.089844 415.855469 Z M 266.726562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.164062 208.519531 C 310.164062 210.140625 307.734375 210.140625 307.734375 208.519531 C 307.734375 206.902344 310.164062 206.902344 310.164062 208.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.457031 224.40625 C 215.457031 226.023438 213.027344 226.023438 213.027344 224.40625 C 213.027344 222.785156 215.457031 222.785156 215.457031 224.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.492188 250.675781 C 247.492188 252.296875 245.0625 252.296875 245.0625 250.675781 C 245.0625 249.054688 247.492188 249.054688 247.492188 250.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.242188 243.933594 C 254.242188 245.550781 251.8125 245.550781 251.8125 243.933594 C 251.8125 242.3125 254.242188 242.3125 254.242188 243.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.5625 168.324219 C 154.5625 169.945312 152.132812 169.945312 152.132812 168.324219 C 152.132812 166.707031 154.5625 166.707031 154.5625 168.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.445312 70.910156 L 149.082031 73.746094 L 145.808594 73.746094 Z M 147.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.496094 222.21875 C 267.496094 223.839844 265.066406 223.839844 265.066406 222.21875 C 265.066406 220.597656 267.496094 220.597656 267.496094 222.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.394531 227.808594 C 270.394531 229.429688 267.964844 229.429688 267.964844 227.808594 C 267.964844 226.1875 270.394531 226.1875 270.394531 227.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.683594 327.039062 C 290.683594 328.660156 288.253906 328.660156 288.253906 327.039062 C 288.253906 325.417969 290.683594 325.417969 290.683594 327.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.058594 404.96875 C 224.058594 406.589844 221.628906 406.589844 221.628906 404.96875 C 221.628906 403.351562 224.058594 403.351562 224.058594 404.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.453125 313.707031 C 319.453125 315.328125 317.023438 315.328125 317.023438 313.707031 C 317.023438 312.089844 319.453125 312.089844 319.453125 313.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.414062 229.871094 C 191.414062 231.492188 188.984375 231.492188 188.984375 229.871094 C 188.984375 228.25 191.414062 228.25 191.414062 229.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.773438 172.59375 C 157.773438 174.214844 155.34375 174.214844 155.34375 172.59375 C 155.34375 170.972656 157.773438 170.972656 157.773438 172.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.675781 148.1875 C 335.675781 149.808594 333.246094 149.808594 333.246094 148.1875 C 333.246094 146.566406 335.675781 146.566406 335.675781 148.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.328125 355.195312 C 240.328125 356.816406 237.898438 356.816406 237.898438 355.195312 C 237.898438 353.574219 240.328125 353.574219 240.328125 355.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.039062 288.773438 C 184.039062 290.390625 181.609375 290.390625 181.609375 288.773438 C 181.609375 287.152344 184.039062 287.152344 184.039062 288.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.488281 349.546875 C 264.488281 351.167969 262.058594 351.167969 262.058594 349.546875 C 262.058594 347.925781 264.488281 347.925781 264.488281 349.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.234375 306.4375 C 270.234375 308.054688 267.804688 308.054688 267.804688 306.4375 C 267.804688 304.816406 270.234375 304.816406 270.234375 306.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.792969 267.726562 C 274.792969 269.347656 272.363281 269.347656 272.363281 267.726562 C 272.363281 266.105469 274.792969 266.105469 274.792969 267.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.960938 418.691406 L 302.597656 415.855469 L 299.324219 415.855469 Z M 300.960938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 356.507812 282.109375 C 356.507812 283.730469 354.078125 283.730469 354.078125 282.109375 C 354.078125 280.492188 356.507812 280.492188 356.507812 282.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.316406 70.910156 L 150.953125 73.746094 L 147.679688 73.746094 Z M 149.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.089844 316.777344 C 343.089844 318.398438 340.660156 318.398438 340.660156 316.777344 C 340.660156 315.15625 343.089844 315.15625 343.089844 316.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.578125 189.871094 C 189.578125 191.492188 187.148438 191.492188 187.148438 189.871094 C 187.148438 188.25 189.578125 188.25 189.578125 189.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.554688 239.449219 C 208.554688 241.070312 206.125 241.070312 206.125 239.449219 C 206.125 237.828125 208.554688 237.828125 208.554688 239.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.226562 192.65625 C 317.226562 194.277344 314.796875 194.277344 314.796875 192.65625 C 314.796875 191.035156 317.226562 191.035156 317.226562 192.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.089844 266.167969 C 319.089844 267.789062 316.660156 267.789062 316.660156 266.167969 C 316.660156 264.546875 319.089844 264.546875 319.089844 266.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.570312 247.109375 C 291.570312 248.730469 289.140625 248.730469 289.140625 247.109375 C 289.140625 245.488281 291.570312 245.488281 291.570312 247.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.425781 259.503906 C 319.425781 261.121094 316.996094 261.121094 316.996094 259.503906 C 316.996094 257.882812 319.425781 257.882812 319.425781 259.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.835938 221.03125 C 264.835938 222.648438 262.40625 222.648438 262.40625 221.03125 C 262.40625 219.410156 264.835938 219.410156 264.835938 221.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.878906 375.585938 C 192.878906 377.203125 190.449219 377.203125 190.449219 375.585938 C 190.449219 373.964844 192.878906 373.964844 192.878906 375.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.648438 185.183594 C 232.648438 186.800781 230.21875 186.800781 230.21875 185.183594 C 230.21875 183.5625 232.648438 183.5625 232.648438 185.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.546875 252.871094 C 284.546875 254.492188 282.117188 254.492188 282.117188 252.871094 C 282.117188 251.25 284.546875 251.25 284.546875 252.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.671875 83.757812 C 238.671875 85.375 236.242188 85.375 236.242188 83.757812 C 236.242188 82.136719 238.671875 82.136719 238.671875 83.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.773438 252.398438 C 274.773438 254.019531 272.34375 254.019531 272.34375 252.398438 C 272.34375 250.777344 274.773438 250.777344 274.773438 252.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.222656 258.144531 C 296.222656 259.761719 293.792969 259.761719 293.792969 258.144531 C 293.792969 256.523438 296.222656 256.523438 296.222656 258.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.9375 257.371094 C 269.9375 258.992188 267.507812 258.992188 267.507812 257.371094 C 267.507812 255.75 269.9375 255.75 269.9375 257.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.394531 241.984375 C 258.394531 243.605469 255.964844 243.605469 255.964844 241.984375 C 255.964844 240.363281 258.394531 240.363281 258.394531 241.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.992188 123.980469 C 370.992188 125.601562 368.5625 125.601562 368.5625 123.980469 C 368.5625 122.363281 370.992188 122.363281 370.992188 123.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.789062 70.910156 L 139.425781 73.746094 L 136.152344 73.746094 Z M 137.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.167969 291.628906 C 132.167969 293.25 129.738281 293.25 129.738281 291.628906 C 129.738281 290.007812 132.167969 290.007812 132.167969 291.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.46875 220.648438 C 277.46875 222.265625 275.039062 222.265625 275.039062 220.648438 C 275.039062 219.027344 277.46875 219.027344 277.46875 220.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.992188 418.691406 L 275.628906 415.855469 L 272.355469 415.855469 Z M 273.992188 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.878906 279.824219 C 264.878906 281.445312 262.449219 281.445312 262.449219 279.824219 C 262.449219 278.203125 264.878906 278.203125 264.878906 279.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.972656 81.34375 C 261.972656 82.964844 259.542969 82.964844 259.542969 81.34375 C 259.542969 79.726562 261.972656 79.726562 261.972656 81.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.980469 264.972656 C 290.980469 266.59375 288.550781 266.59375 288.550781 264.972656 C 288.550781 263.351562 290.980469 263.351562 290.980469 264.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.085938 308.144531 C 327.085938 309.765625 324.65625 309.765625 324.65625 308.144531 C 324.65625 306.527344 327.085938 306.527344 327.085938 308.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.71875 311.398438 C 199.71875 313.019531 197.289062 313.019531 197.289062 311.398438 C 197.289062 309.777344 199.71875 309.777344 199.71875 311.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.496094 269.953125 C 272.496094 271.570312 270.066406 271.570312 270.066406 269.953125 C 270.066406 268.332031 272.496094 268.332031 272.496094 269.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.691406 70.910156 L 152.328125 73.746094 L 149.054688 73.746094 Z M 150.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.488281 272.117188 C 196.488281 273.738281 194.058594 273.738281 194.058594 272.117188 C 194.058594 270.496094 196.488281 270.496094 196.488281 272.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.292969 250.457031 C 282.292969 252.078125 279.863281 252.078125 279.863281 250.457031 C 279.863281 248.835938 282.292969 248.835938 282.292969 250.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.679688 236.03125 C 211.679688 237.652344 209.25 237.652344 209.25 236.03125 C 209.25 234.410156 211.679688 234.410156 211.679688 236.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.789062 236.195312 C 218.789062 237.816406 216.355469 237.816406 216.355469 236.195312 C 216.355469 234.578125 218.789062 234.578125 218.789062 236.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.914062 70.910156 L 209.550781 73.746094 L 206.277344 73.746094 Z M 207.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.863281 250.828125 C 260.863281 252.445312 258.433594 252.445312 258.433594 250.828125 C 258.433594 249.207031 260.863281 249.207031 260.863281 250.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.945312 322.9375 C 298.945312 324.558594 296.515625 324.558594 296.515625 322.9375 C 296.515625 321.316406 298.945312 321.316406 298.945312 322.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.957031 190.191406 C 153.957031 191.8125 151.527344 191.8125 151.527344 190.191406 C 151.527344 188.574219 153.957031 188.574219 153.957031 190.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.699219 344.554688 C 303.699219 346.175781 301.269531 346.175781 301.269531 344.554688 C 301.269531 342.933594 303.699219 342.933594 303.699219 344.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.871094 172.753906 C 261.871094 174.375 259.441406 174.375 259.441406 172.753906 C 259.441406 171.136719 261.871094 171.136719 261.871094 172.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.753906 293.445312 C 207.753906 295.0625 205.324219 295.0625 205.324219 293.445312 C 205.324219 291.824219 207.753906 291.824219 207.753906 293.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.320312 70.910156 L 140.957031 73.746094 L 137.683594 73.746094 Z M 139.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.265625 157.6875 C 160.265625 159.308594 157.835938 159.308594 157.835938 157.6875 C 157.835938 156.070312 160.265625 156.070312 160.265625 157.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.355469 70.910156 L 288.992188 73.746094 L 285.71875 73.746094 Z M 287.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.734375 217.640625 C 190.734375 219.261719 188.304688 219.261719 188.304688 217.640625 C 188.304688 216.019531 190.734375 216.019531 190.734375 217.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.703125 261.757812 C 289.703125 263.375 287.273438 263.375 287.273438 261.757812 C 287.273438 260.136719 289.703125 260.136719 289.703125 261.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.359375 301.988281 C 289.359375 303.609375 286.929688 303.609375 286.929688 301.988281 C 286.929688 300.367188 289.359375 300.367188 289.359375 301.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.554688 418.691406 L 271.191406 415.855469 L 267.917969 415.855469 Z M 269.554688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.660156 246.488281 C 283.660156 248.105469 281.226562 248.105469 281.226562 246.488281 C 281.226562 244.867188 283.660156 244.867188 283.660156 246.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.898438 368.019531 C 334.898438 369.636719 332.46875 369.636719 332.46875 368.019531 C 332.46875 366.398438 334.898438 366.398438 334.898438 368.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.265625 70.910156 L 167.902344 73.746094 L 164.632812 73.746094 Z M 166.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.277344 268.371094 C 228.277344 269.992188 225.847656 269.992188 225.847656 268.371094 C 225.847656 266.75 228.277344 266.75 228.277344 268.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.296875 290.472656 C 270.296875 292.09375 267.867188 292.09375 267.867188 290.472656 C 267.867188 288.855469 270.296875 288.855469 270.296875 290.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.042969 140.628906 C 230.042969 142.246094 227.613281 142.246094 227.613281 140.628906 C 227.613281 139.007812 230.042969 139.007812 230.042969 140.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.859375 260.25 C 252.859375 261.867188 250.429688 261.867188 250.429688 260.25 C 250.429688 258.628906 252.859375 258.628906 252.859375 260.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.957031 238.855469 C 252.957031 240.476562 250.527344 240.476562 250.527344 238.855469 C 250.527344 237.234375 252.957031 237.234375 252.957031 238.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.730469 70.910156 L 265.367188 73.746094 L 262.09375 73.746094 Z M 263.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.042969 254.078125 C 300.042969 255.699219 297.613281 255.699219 297.613281 254.078125 C 297.613281 252.457031 300.042969 252.457031 300.042969 254.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.667969 195.644531 C 284.667969 197.265625 282.238281 197.265625 282.238281 195.644531 C 282.238281 194.023438 284.667969 194.023438 284.667969 195.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.78125 70.910156 L 245.417969 73.746094 L 242.148438 73.746094 Z M 243.78125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.78125 70.910156 L 204.417969 73.746094 L 201.148438 73.746094 Z M 202.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.503906 232.84375 C 285.503906 234.460938 283.074219 234.460938 283.074219 232.84375 C 283.074219 231.222656 285.503906 231.222656 285.503906 232.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.773438 221.964844 C 139.773438 223.582031 137.34375 223.582031 137.34375 221.964844 C 137.34375 220.34375 139.773438 220.34375 139.773438 221.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.847656 88.148438 C 228.847656 89.765625 226.417969 89.765625 226.417969 88.148438 C 226.417969 86.527344 228.847656 86.527344 228.847656 88.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.871094 198.601562 C 267.871094 200.222656 265.4375 200.222656 265.4375 198.601562 C 265.4375 196.980469 267.871094 196.980469 267.871094 198.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.835938 198.113281 C 197.835938 199.734375 195.40625 199.734375 195.40625 198.113281 C 195.40625 196.492188 197.835938 196.492188 197.835938 198.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.867188 218.109375 C 259.867188 219.730469 257.4375 219.730469 257.4375 218.109375 C 257.4375 216.488281 259.867188 216.488281 259.867188 218.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.324219 241.140625 C 261.324219 242.757812 258.894531 242.757812 258.894531 241.140625 C 258.894531 239.519531 261.324219 239.519531 261.324219 241.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.726562 181.761719 C 275.726562 183.382812 273.296875 183.382812 273.296875 181.761719 C 273.296875 180.140625 275.726562 180.140625 275.726562 181.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.71875 70.910156 L 176.355469 73.746094 L 173.082031 73.746094 Z M 174.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.128906 265.488281 C 176.128906 267.109375 173.699219 267.109375 173.699219 265.488281 C 173.699219 263.871094 176.128906 263.871094 176.128906 265.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.851562 256.617188 C 288.851562 258.234375 286.421875 258.234375 286.421875 256.617188 C 286.421875 254.996094 288.851562 254.996094 288.851562 256.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.164062 248.316406 C 266.164062 249.933594 263.734375 249.933594 263.734375 248.316406 C 263.734375 246.695312 266.164062 246.695312 266.164062 248.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.535156 204.808594 C 247.535156 206.425781 245.105469 206.425781 245.105469 204.808594 C 245.105469 203.1875 247.535156 203.1875 247.535156 204.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.207031 189.597656 C 190.207031 191.214844 187.777344 191.214844 187.777344 189.597656 C 187.777344 187.976562 190.207031 187.976562 190.207031 189.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.757812 239.398438 C 207.757812 241.019531 205.328125 241.019531 205.328125 239.398438 C 205.328125 237.777344 207.757812 237.777344 207.757812 239.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.945312 70.910156 L 158.582031 73.746094 L 155.308594 73.746094 Z M 156.945312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.042969 418.691406 L 229.679688 415.855469 L 226.40625 415.855469 Z M 228.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.570312 346.863281 C 201.570312 348.484375 199.136719 348.484375 199.136719 346.863281 C 199.136719 345.246094 201.570312 345.246094 201.570312 346.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.03125 315.421875 C 186.03125 317.039062 183.601562 317.039062 183.601562 315.421875 C 183.601562 313.800781 186.03125 313.800781 186.03125 315.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.828125 70.910156 L 204.464844 73.746094 L 201.195312 73.746094 Z M 202.828125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.675781 70.910156 L 140.3125 73.746094 L 137.039062 73.746094 Z M 138.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.597656 107.71875 C 206.597656 109.339844 204.167969 109.339844 204.167969 107.71875 C 204.167969 106.101562 206.597656 106.101562 206.597656 107.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.835938 297.371094 C 250.835938 298.992188 248.40625 298.992188 248.40625 297.371094 C 248.40625 295.75 250.835938 295.75 250.835938 297.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.066406 247.085938 C 204.066406 248.707031 201.636719 248.707031 201.636719 247.085938 C 201.636719 245.464844 204.066406 245.464844 204.066406 247.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.4375 138.011719 C 320.4375 139.628906 318.007812 139.628906 318.007812 138.011719 C 318.007812 136.390625 320.4375 136.390625 320.4375 138.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.917969 70.910156 L 223.554688 73.746094 L 220.28125 73.746094 Z M 221.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.894531 70.910156 L 236.53125 73.746094 L 233.257812 73.746094 Z M 234.894531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.394531 70.910156 L 163.03125 73.746094 L 159.757812 73.746094 Z M 161.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.882812 198.613281 C 222.882812 200.234375 220.449219 200.234375 220.449219 198.613281 C 220.449219 196.996094 222.882812 196.996094 222.882812 198.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.605469 170.304688 C 262.605469 171.925781 260.175781 171.925781 260.175781 170.304688 C 260.175781 168.683594 262.605469 168.683594 262.605469 170.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.855469 70.910156 L 237.492188 73.746094 L 234.21875 73.746094 Z M 235.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.625 244.234375 C 259.625 245.855469 257.195312 245.855469 257.195312 244.234375 C 257.195312 242.617188 259.625 242.617188 259.625 244.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.410156 199.996094 C 285.410156 201.613281 282.980469 201.613281 282.980469 199.996094 C 282.980469 198.375 285.410156 198.375 285.410156 199.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.035156 204.378906 C 262.035156 206 259.605469 206 259.605469 204.378906 C 259.605469 202.761719 262.035156 202.761719 262.035156 204.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.507812 212.292969 C 281.507812 213.914062 279.078125 213.914062 279.078125 212.292969 C 279.078125 210.675781 281.507812 210.675781 281.507812 212.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.082031 178.683594 C 233.082031 180.304688 230.652344 180.304688 230.652344 178.683594 C 230.652344 177.0625 233.082031 177.0625 233.082031 178.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.683594 170.589844 C 290.683594 172.207031 288.253906 172.207031 288.253906 170.589844 C 288.253906 168.96875 290.683594 168.96875 290.683594 170.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.691406 163.289062 C 184.691406 164.90625 182.261719 164.90625 182.261719 163.289062 C 182.261719 161.667969 184.691406 161.667969 184.691406 163.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.960938 325.878906 C 249.960938 327.5 247.53125 327.5 247.53125 325.878906 C 247.53125 324.257812 249.960938 324.257812 249.960938 325.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.207031 210.375 C 132.207031 211.996094 129.777344 211.996094 129.777344 210.375 C 129.777344 208.757812 132.207031 208.757812 132.207031 210.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.792969 275.324219 C 175.792969 276.945312 173.363281 276.945312 173.363281 275.324219 C 173.363281 273.703125 175.792969 273.703125 175.792969 275.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.410156 134.703125 C 237.410156 136.324219 234.980469 136.324219 234.980469 134.703125 C 234.980469 133.082031 237.410156 133.082031 237.410156 134.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.871094 292.492188 C 263.871094 294.109375 261.441406 294.109375 261.441406 292.492188 C 261.441406 290.871094 263.871094 290.871094 263.871094 292.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.890625 306.410156 C 250.890625 308.03125 248.460938 308.03125 248.460938 306.410156 C 248.460938 304.789062 250.890625 304.789062 250.890625 306.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.710938 311.769531 C 245.710938 313.390625 243.28125 313.390625 243.28125 311.769531 C 243.28125 310.148438 245.710938 310.148438 245.710938 311.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.925781 265.960938 C 174.925781 267.582031 172.496094 267.582031 172.496094 265.960938 C 172.496094 264.339844 174.925781 264.339844 174.925781 265.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.835938 245.171875 C 239.835938 246.792969 237.40625 246.792969 237.40625 245.171875 C 237.40625 243.550781 239.835938 243.550781 239.835938 245.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.984375 194.886719 C 274.984375 196.507812 272.554688 196.507812 272.554688 194.886719 C 272.554688 193.265625 274.984375 193.265625 274.984375 194.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.167969 237.941406 C 328.167969 239.558594 325.738281 239.558594 325.738281 237.941406 C 325.738281 236.320312 328.167969 236.320312 328.167969 237.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 376.800781 418.691406 L 378.4375 415.855469 L 375.167969 415.855469 Z M 376.800781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.601562 418.691406 L 171.238281 415.855469 L 167.964844 415.855469 Z M 169.601562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 355.246094 132.714844 C 355.246094 134.332031 352.816406 134.332031 352.816406 132.714844 C 352.816406 131.09375 355.246094 131.09375 355.246094 132.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.058594 70.910156 L 273.695312 73.746094 L 270.421875 73.746094 Z M 272.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.265625 70.910156 L 320.902344 73.746094 L 317.628906 73.746094 Z M 319.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.097656 230.722656 C 345.097656 232.34375 342.664062 232.34375 342.664062 230.722656 C 342.664062 229.105469 345.097656 229.105469 345.097656 230.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.203125 207.648438 C 288.203125 209.269531 285.773438 209.269531 285.773438 207.648438 C 285.773438 206.027344 288.203125 206.027344 288.203125 207.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.996094 343.890625 C 233.996094 345.507812 231.5625 345.507812 231.5625 343.890625 C 231.5625 342.269531 233.996094 342.269531 233.996094 343.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.609375 271 C 273.609375 272.621094 271.179688 272.621094 271.179688 271 C 271.179688 269.378906 273.609375 269.378906 273.609375 271 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.542969 147.492188 C 142.542969 149.113281 140.113281 149.113281 140.113281 147.492188 C 140.113281 145.871094 142.542969 145.871094 142.542969 147.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 349.492188 271.980469 C 349.492188 273.597656 347.0625 273.597656 347.0625 271.980469 C 347.0625 270.359375 349.492188 270.359375 349.492188 271.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.34375 233.476562 C 220.34375 235.097656 217.914062 235.097656 217.914062 233.476562 C 217.914062 231.855469 220.34375 231.855469 220.34375 233.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.785156 251.597656 C 267.785156 253.214844 265.355469 253.214844 265.355469 251.597656 C 265.355469 249.976562 267.785156 249.976562 267.785156 251.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.574219 355.636719 C 253.574219 357.253906 251.144531 357.253906 251.144531 355.636719 C 251.144531 354.015625 253.574219 354.015625 253.574219 355.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.082031 70.910156 L 187.71875 73.746094 L 184.445312 73.746094 Z M 186.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.84375 273.925781 C 326.84375 275.542969 324.414062 275.542969 324.414062 273.925781 C 324.414062 272.304688 326.84375 272.304688 326.84375 273.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.601562 70.910156 L 168.238281 73.746094 L 164.964844 73.746094 Z M 166.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.746094 218.019531 C 283.746094 219.640625 281.316406 219.640625 281.316406 218.019531 C 281.316406 216.398438 283.746094 216.398438 283.746094 218.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.289062 212.335938 C 267.289062 213.957031 264.855469 213.957031 264.855469 212.335938 C 264.855469 210.71875 267.289062 210.71875 267.289062 212.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.828125 279.390625 C 339.828125 281.007812 337.398438 281.007812 337.398438 279.390625 C 337.398438 277.769531 339.828125 277.769531 339.828125 279.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.617188 170 C 179.617188 171.621094 177.1875 171.621094 177.1875 170 C 177.1875 168.378906 179.617188 168.378906 179.617188 170 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.527344 231.710938 C 250.527344 233.332031 248.097656 233.332031 248.097656 231.710938 C 248.097656 230.09375 250.527344 230.09375 250.527344 231.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.828125 255.738281 C 260.828125 257.355469 258.398438 257.355469 258.398438 255.738281 C 258.398438 254.117188 260.828125 254.117188 260.828125 255.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277 316.230469 C 277 317.851562 274.570312 317.851562 274.570312 316.230469 C 274.570312 314.609375 277 314.609375 277 316.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.132812 203.070312 C 238.132812 204.691406 235.703125 204.691406 235.703125 203.070312 C 235.703125 201.449219 238.132812 201.449219 238.132812 203.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.054688 247.4375 C 283.054688 249.058594 280.625 249.058594 280.625 247.4375 C 280.625 245.820312 283.054688 245.820312 283.054688 247.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.460938 70.910156 L 129.097656 73.746094 L 125.824219 73.746094 Z M 127.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.484375 138.429688 C 143.484375 140.050781 141.054688 140.050781 141.054688 138.429688 C 141.054688 136.808594 143.484375 136.808594 143.484375 138.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.378906 245.613281 C 139.378906 247.230469 136.949219 247.230469 136.949219 245.613281 C 136.949219 243.992188 139.378906 243.992188 139.378906 245.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.59375 193.050781 C 241.59375 194.671875 239.164062 194.671875 239.164062 193.050781 C 239.164062 191.429688 241.59375 191.429688 241.59375 193.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.894531 299.066406 C 219.894531 300.683594 217.464844 300.683594 217.464844 299.066406 C 217.464844 297.445312 219.894531 297.445312 219.894531 299.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.425781 268.15625 C 154.425781 269.777344 151.996094 269.777344 151.996094 268.15625 C 151.996094 266.535156 154.425781 266.535156 154.425781 268.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.199219 256.265625 C 254.199219 257.886719 251.769531 257.886719 251.769531 256.265625 C 251.769531 254.644531 254.199219 254.644531 254.199219 256.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.101562 281.304688 C 126.101562 282.921875 123.667969 282.921875 123.667969 281.304688 C 123.667969 279.683594 126.101562 279.683594 126.101562 281.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.820312 290.578125 C 254.820312 292.195312 252.390625 292.195312 252.390625 290.578125 C 252.390625 288.957031 254.820312 288.957031 254.820312 290.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.800781 70.910156 L 213.4375 73.746094 L 210.167969 73.746094 Z M 211.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.980469 264.800781 C 262.980469 266.417969 260.550781 266.417969 260.550781 264.800781 C 260.550781 263.179688 262.980469 263.179688 262.980469 264.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.160156 95.746094 C 139.160156 97.367188 136.730469 97.367188 136.730469 95.746094 C 136.730469 94.128906 139.160156 94.128906 139.160156 95.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.253906 254.0625 C 261.253906 255.679688 258.824219 255.679688 258.824219 254.0625 C 258.824219 252.441406 261.253906 252.441406 261.253906 254.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.722656 384.976562 C 242.722656 386.597656 240.292969 386.597656 240.292969 384.976562 C 240.292969 383.355469 242.722656 383.355469 242.722656 384.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.867188 391.261719 C 244.867188 392.882812 242.4375 392.882812 242.4375 391.261719 C 242.4375 389.640625 244.867188 389.640625 244.867188 391.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.765625 260.976562 C 268.765625 262.59375 266.335938 262.59375 266.335938 260.976562 C 266.335938 259.355469 268.765625 259.355469 268.765625 260.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.980469 240.957031 C 252.980469 242.578125 250.550781 242.578125 250.550781 240.957031 C 250.550781 239.339844 252.980469 239.339844 252.980469 240.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.324219 256.925781 C 260.324219 258.546875 257.894531 258.546875 257.894531 256.925781 C 257.894531 255.304688 260.324219 255.304688 260.324219 256.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.019531 249.511719 C 289.019531 251.132812 286.589844 251.132812 286.589844 249.511719 C 286.589844 247.890625 289.019531 247.890625 289.019531 249.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.738281 259.578125 C 243.738281 261.199219 241.308594 261.199219 241.308594 259.578125 C 241.308594 257.957031 243.738281 257.957031 243.738281 259.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.375 270.710938 C 245.375 272.328125 242.945312 272.328125 242.945312 270.710938 C 242.945312 269.089844 245.375 269.089844 245.375 270.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.210938 291.710938 C 270.210938 293.332031 267.777344 293.332031 267.777344 291.710938 C 267.777344 290.09375 270.210938 290.09375 270.210938 291.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.191406 299.109375 C 289.191406 300.726562 286.761719 300.726562 286.761719 299.109375 C 286.761719 297.488281 289.191406 297.488281 289.191406 299.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.0625 222.210938 C 250.0625 223.828125 247.632812 223.828125 247.632812 222.210938 C 247.632812 220.589844 250.0625 220.589844 250.0625 222.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.773438 179.496094 C 256.773438 181.113281 254.34375 181.113281 254.34375 179.496094 C 254.34375 177.875 256.773438 177.875 256.773438 179.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.90625 153.738281 C 249.90625 155.359375 247.476562 155.359375 247.476562 153.738281 C 247.476562 152.117188 249.90625 152.117188 249.90625 153.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.914062 294.21875 C 181.914062 295.839844 179.484375 295.839844 179.484375 294.21875 C 179.484375 292.601562 181.914062 292.601562 181.914062 294.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.917969 324.878906 C 166.917969 326.496094 164.488281 326.496094 164.488281 324.878906 C 164.488281 323.257812 166.917969 323.257812 166.917969 324.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.574219 70.910156 L 173.210938 73.746094 L 169.9375 73.746094 Z M 171.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.636719 224.332031 C 262.636719 225.953125 260.207031 225.953125 260.207031 224.332031 C 260.207031 222.714844 262.636719 222.714844 262.636719 224.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.550781 333.441406 C 285.550781 335.058594 283.121094 335.058594 283.121094 333.441406 C 283.121094 331.820312 285.550781 331.820312 285.550781 333.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.714844 274.636719 C 294.714844 276.257812 292.285156 276.257812 292.285156 274.636719 C 292.285156 273.015625 294.714844 273.015625 294.714844 274.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.640625 348.308594 C 288.640625 349.929688 286.210938 349.929688 286.210938 348.308594 C 286.210938 346.6875 288.640625 346.6875 288.640625 348.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.023438 272.179688 C 291.023438 273.800781 288.59375 273.800781 288.59375 272.179688 C 288.59375 270.5625 291.023438 270.5625 291.023438 272.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.089844 205.597656 C 272.089844 207.21875 269.660156 207.21875 269.660156 205.597656 C 269.660156 203.976562 272.089844 203.976562 272.089844 205.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.011719 212.210938 C 173.011719 213.832031 170.582031 213.832031 170.582031 212.210938 C 170.582031 210.589844 173.011719 210.589844 173.011719 212.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.605469 341.148438 C 294.605469 342.765625 292.171875 342.765625 292.171875 341.148438 C 292.171875 339.527344 294.605469 339.527344 294.605469 341.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.296875 253.3125 C 259.296875 254.933594 256.867188 254.933594 256.867188 253.3125 C 256.867188 251.691406 259.296875 251.691406 259.296875 253.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.183594 261.378906 C 232.183594 262.996094 229.753906 262.996094 229.753906 261.378906 C 229.753906 259.757812 232.183594 259.757812 232.183594 261.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.285156 220.621094 C 187.285156 222.242188 184.855469 222.242188 184.855469 220.621094 C 184.855469 219 187.285156 219 187.285156 220.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.128906 243.53125 C 246.128906 245.152344 243.699219 245.152344 243.699219 243.53125 C 243.699219 241.914062 246.128906 241.914062 246.128906 243.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.183594 261.378906 C 232.183594 262.996094 229.753906 262.996094 229.753906 261.378906 C 229.753906 259.757812 232.183594 259.757812 232.183594 261.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.261719 225.726562 C 225.261719 227.34375 222.828125 227.34375 222.828125 225.726562 C 222.828125 224.105469 225.261719 224.105469 225.261719 225.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.171875 308.429688 C 309.171875 310.050781 306.742188 310.050781 306.742188 308.429688 C 306.742188 306.8125 309.171875 306.8125 309.171875 308.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.429688 225.625 C 316.429688 227.246094 314 227.246094 314 225.625 C 314 224.007812 316.429688 224.007812 316.429688 225.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.972656 196.265625 C 217.972656 197.882812 215.542969 197.882812 215.542969 196.265625 C 215.542969 194.644531 217.972656 194.644531 217.972656 196.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.710938 265.863281 C 266.710938 267.484375 264.277344 267.484375 264.277344 265.863281 C 264.277344 264.242188 266.710938 264.242188 266.710938 265.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.722656 250.886719 C 214.722656 252.507812 212.292969 252.507812 212.292969 250.886719 C 212.292969 249.265625 214.722656 249.265625 214.722656 250.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.53125 258.371094 C 233.53125 259.992188 231.101562 259.992188 231.101562 258.371094 C 231.101562 256.753906 233.53125 256.753906 233.53125 258.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.125 237.304688 C 285.125 238.921875 282.695312 238.921875 282.695312 237.304688 C 282.695312 235.683594 285.125 235.683594 285.125 237.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280 253.945312 C 280 255.566406 277.570312 255.566406 277.570312 253.945312 C 277.570312 252.324219 280 252.324219 280 253.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.074219 227.320312 C 347.074219 228.941406 344.644531 228.941406 344.644531 227.320312 C 344.644531 225.703125 347.074219 225.703125 347.074219 227.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.152344 129.332031 C 265.152344 130.953125 262.722656 130.953125 262.722656 129.332031 C 262.722656 127.714844 265.152344 127.714844 265.152344 129.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.800781 98.589844 C 270.800781 100.210938 268.367188 100.210938 268.367188 98.589844 C 268.367188 96.96875 270.800781 96.96875 270.800781 98.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.117188 277.140625 C 265.117188 278.761719 262.6875 278.761719 262.6875 277.140625 C 262.6875 275.519531 265.117188 275.519531 265.117188 277.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.207031 70.910156 L 138.84375 73.746094 L 135.570312 73.746094 Z M 137.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.488281 227.628906 C 292.488281 229.25 290.058594 229.25 290.058594 227.628906 C 290.058594 226.007812 292.488281 226.007812 292.488281 227.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.539062 353.195312 C 172.539062 354.816406 170.109375 354.816406 170.109375 353.195312 C 170.109375 351.574219 172.539062 351.574219 172.539062 353.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.890625 220.351562 C 248.890625 221.972656 246.460938 221.972656 246.460938 220.351562 C 246.460938 218.730469 248.890625 218.730469 248.890625 220.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.832031 245.6875 C 136.832031 247.308594 134.402344 247.308594 134.402344 245.6875 C 134.402344 244.066406 136.832031 244.066406 136.832031 245.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.429688 265.214844 C 340.429688 266.835938 338 266.835938 338 265.214844 C 338 263.59375 340.429688 263.59375 340.429688 265.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.722656 311.742188 C 208.722656 313.363281 206.292969 313.363281 206.292969 311.742188 C 206.292969 310.125 208.722656 310.125 208.722656 311.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.210938 128.179688 C 118.210938 129.796875 115.78125 129.796875 115.78125 128.179688 C 115.78125 126.558594 118.210938 126.558594 118.210938 128.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.054688 135.164062 C 204.054688 136.785156 201.625 136.785156 201.625 135.164062 C 201.625 133.542969 204.054688 133.542969 204.054688 135.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.15625 290.804688 C 290.15625 292.421875 287.726562 292.421875 287.726562 290.804688 C 287.726562 289.183594 290.15625 289.183594 290.15625 290.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.757812 70.910156 L 167.394531 73.746094 L 164.121094 73.746094 Z M 165.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.246094 278.464844 C 312.246094 280.085938 309.816406 280.085938 309.816406 278.464844 C 309.816406 276.847656 312.246094 276.847656 312.246094 278.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.777344 194.414062 C 320.777344 196.035156 318.347656 196.035156 318.347656 194.414062 C 318.347656 192.792969 320.777344 192.792969 320.777344 194.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.351562 272.539062 C 285.351562 274.15625 282.921875 274.15625 282.921875 272.539062 C 282.921875 270.917969 285.351562 270.917969 285.351562 272.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.347656 70.910156 L 255.984375 73.746094 L 252.710938 73.746094 Z M 254.347656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.898438 70.910156 L 213.535156 73.746094 L 210.261719 73.746094 Z M 211.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.070312 167.574219 C 158.070312 169.195312 155.636719 169.195312 155.636719 167.574219 C 155.636719 165.957031 158.070312 165.957031 158.070312 167.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.910156 266.796875 C 185.910156 268.417969 183.480469 268.417969 183.480469 266.796875 C 183.480469 265.179688 185.910156 265.179688 185.910156 266.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.761719 254.9375 C 251.761719 256.554688 249.332031 256.554688 249.332031 254.9375 C 249.332031 253.316406 251.761719 253.316406 251.761719 254.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.355469 309.753906 C 288.355469 311.375 285.921875 311.375 285.921875 309.753906 C 285.921875 308.132812 288.355469 308.132812 288.355469 309.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.796875 219.707031 C 269.796875 221.328125 267.367188 221.328125 267.367188 219.707031 C 267.367188 218.085938 269.796875 218.085938 269.796875 219.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.867188 333.929688 C 212.867188 335.546875 210.433594 335.546875 210.433594 333.929688 C 210.433594 332.308594 212.867188 332.308594 212.867188 333.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.996094 70.910156 L 191.632812 73.746094 L 188.359375 73.746094 Z M 189.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.773438 260.246094 C 302.773438 261.863281 300.34375 261.863281 300.34375 260.246094 C 300.34375 258.625 302.773438 258.625 302.773438 260.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.035156 70.910156 L 168.671875 73.746094 L 165.398438 73.746094 Z M 167.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.699219 249.941406 C 253.699219 251.5625 251.269531 251.5625 251.269531 249.941406 C 251.269531 248.320312 253.699219 248.320312 253.699219 249.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.839844 227.039062 C 215.839844 228.660156 213.410156 228.660156 213.410156 227.039062 C 213.410156 225.417969 215.839844 225.417969 215.839844 227.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.425781 297.761719 C 322.425781 299.382812 319.996094 299.382812 319.996094 297.761719 C 319.996094 296.144531 322.425781 296.144531 322.425781 297.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.648438 277.550781 C 325.648438 279.171875 323.21875 279.171875 323.21875 277.550781 C 323.21875 275.933594 325.648438 275.933594 325.648438 277.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.855469 171.210938 C 247.855469 172.832031 245.425781 172.832031 245.425781 171.210938 C 245.425781 169.59375 247.855469 169.59375 247.855469 171.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.078125 302.695312 C 308.078125 304.316406 305.648438 304.316406 305.648438 302.695312 C 305.648438 301.074219 308.078125 301.074219 308.078125 302.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.722656 70.910156 L 161.359375 73.746094 L 158.085938 73.746094 Z M 159.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.699219 248.457031 C 289.699219 250.078125 287.269531 250.078125 287.269531 248.457031 C 287.269531 246.835938 289.699219 246.835938 289.699219 248.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.1875 243.25 C 167.1875 244.871094 164.757812 244.871094 164.757812 243.25 C 164.757812 241.628906 167.1875 241.628906 167.1875 243.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.457031 418.691406 L 287.09375 415.855469 L 283.820312 415.855469 Z M 285.457031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.664062 306.597656 C 277.664062 308.21875 275.234375 308.21875 275.234375 306.597656 C 275.234375 304.976562 277.664062 304.976562 277.664062 306.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.363281 326.296875 C 229.363281 327.917969 226.933594 327.917969 226.933594 326.296875 C 226.933594 324.675781 229.363281 324.675781 229.363281 326.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.503906 298.785156 C 238.503906 300.40625 236.074219 300.40625 236.074219 298.785156 C 236.074219 297.164062 238.503906 297.164062 238.503906 298.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.792969 306.167969 C 209.792969 307.789062 207.363281 307.789062 207.363281 306.167969 C 207.363281 304.550781 209.792969 304.550781 209.792969 306.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.464844 238.597656 C 287.464844 240.21875 285.035156 240.21875 285.035156 238.597656 C 285.035156 236.976562 287.464844 236.976562 287.464844 238.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.6875 278.015625 C 239.6875 279.636719 237.257812 279.636719 237.257812 278.015625 C 237.257812 276.398438 239.6875 276.398438 239.6875 278.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.851562 257.78125 C 292.851562 259.402344 290.421875 259.402344 290.421875 257.78125 C 290.421875 256.160156 292.851562 256.160156 292.851562 257.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271 248.746094 C 271 250.363281 268.570312 250.363281 268.570312 248.746094 C 268.570312 247.125 271 247.125 271 248.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.402344 261.894531 C 246.402344 263.515625 243.972656 263.515625 243.972656 261.894531 C 243.972656 260.277344 246.402344 260.277344 246.402344 261.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.992188 211.488281 C 233.992188 213.105469 231.5625 213.105469 231.5625 211.488281 C 231.5625 209.867188 233.992188 209.867188 233.992188 211.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282 232.125 C 282 233.746094 279.570312 233.746094 279.570312 232.125 C 279.570312 230.503906 282 230.503906 282 232.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.59375 187.101562 C 276.59375 188.722656 274.164062 188.722656 274.164062 187.101562 C 274.164062 185.480469 276.59375 185.480469 276.59375 187.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.675781 299.644531 C 234.675781 301.265625 232.246094 301.265625 232.246094 299.644531 C 232.246094 298.027344 234.675781 298.027344 234.675781 299.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.640625 310.546875 C 184.640625 312.167969 182.210938 312.167969 182.210938 310.546875 C 182.210938 308.925781 184.640625 308.925781 184.640625 310.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.246094 251.132812 C 308.246094 252.753906 305.8125 252.753906 305.8125 251.132812 C 305.8125 249.511719 308.246094 249.511719 308.246094 251.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.039062 394.125 C 273.039062 395.742188 270.609375 395.742188 270.609375 394.125 C 270.609375 392.503906 273.039062 392.503906 273.039062 394.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.710938 161.761719 C 219.710938 163.382812 217.28125 163.382812 217.28125 161.761719 C 217.28125 160.144531 219.710938 160.144531 219.710938 161.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.003906 262.488281 C 255.003906 264.109375 252.570312 264.109375 252.570312 262.488281 C 252.570312 260.871094 255.003906 260.871094 255.003906 262.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.105469 244.542969 C 264.105469 246.164062 261.671875 246.164062 261.671875 244.542969 C 261.671875 242.921875 264.105469 242.921875 264.105469 244.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.894531 233.855469 C 238.894531 235.476562 236.464844 235.476562 236.464844 233.855469 C 236.464844 232.238281 238.894531 232.238281 238.894531 233.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.75 261.878906 C 219.75 263.5 217.316406 263.5 217.316406 261.878906 C 217.316406 260.261719 219.75 260.261719 219.75 261.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.769531 266.054688 C 286.769531 267.675781 284.339844 267.675781 284.339844 266.054688 C 284.339844 264.4375 286.769531 264.4375 286.769531 266.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.515625 263.039062 C 203.515625 264.660156 201.085938 264.660156 201.085938 263.039062 C 201.085938 261.417969 203.515625 261.417969 203.515625 263.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.882812 218.65625 C 276.882812 220.277344 274.453125 220.277344 274.453125 218.65625 C 274.453125 217.035156 276.882812 217.035156 276.882812 218.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.898438 239.105469 C 307.898438 240.726562 305.464844 240.726562 305.464844 239.105469 C 305.464844 237.484375 307.898438 237.484375 307.898438 239.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.789062 70.910156 L 322.425781 73.746094 L 319.152344 73.746094 Z M 320.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.511719 94.347656 C 278.511719 95.964844 276.082031 95.964844 276.082031 94.347656 C 276.082031 92.726562 278.511719 92.726562 278.511719 94.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.867188 298.226562 C 229.867188 299.847656 227.4375 299.847656 227.4375 298.226562 C 227.4375 296.609375 229.867188 296.609375 229.867188 298.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.457031 330.121094 C 316.457031 331.738281 314.027344 331.738281 314.027344 330.121094 C 314.027344 328.5 316.457031 328.5 316.457031 330.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.011719 250.503906 C 285.011719 252.125 282.582031 252.125 282.582031 250.503906 C 282.582031 248.882812 285.011719 248.882812 285.011719 250.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.261719 269.113281 C 259.261719 270.730469 256.832031 270.730469 256.832031 269.113281 C 256.832031 267.492188 259.261719 267.492188 259.261719 269.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.203125 242.476562 C 194.203125 244.097656 191.773438 244.097656 191.773438 242.476562 C 191.773438 240.859375 194.203125 240.859375 194.203125 242.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.019531 261.511719 C 259.019531 263.128906 256.589844 263.128906 256.589844 261.511719 C 256.589844 259.890625 259.019531 259.890625 259.019531 261.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.847656 276.921875 C 205.847656 278.542969 203.417969 278.542969 203.417969 276.921875 C 203.417969 275.300781 205.847656 275.300781 205.847656 276.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.199219 243.410156 C 208.199219 245.03125 205.769531 245.03125 205.769531 243.410156 C 205.769531 241.789062 208.199219 241.789062 208.199219 243.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.785156 346.761719 C 140.785156 348.382812 138.355469 348.382812 138.355469 346.761719 C 138.355469 345.144531 140.785156 345.144531 140.785156 346.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.476562 229.089844 C 244.476562 230.707031 242.046875 230.707031 242.046875 229.089844 C 242.046875 227.46875 244.476562 227.46875 244.476562 229.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.058594 269.6875 C 316.058594 271.308594 313.628906 271.308594 313.628906 269.6875 C 313.628906 268.070312 316.058594 268.070312 316.058594 269.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.691406 403.796875 C 289.691406 405.417969 287.261719 405.417969 287.261719 403.796875 C 287.261719 402.175781 289.691406 402.175781 289.691406 403.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.371094 207.777344 C 251.371094 209.398438 248.941406 209.398438 248.941406 207.777344 C 248.941406 206.15625 251.371094 206.15625 251.371094 207.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.945312 251.683594 C 118.945312 253.304688 116.515625 253.304688 116.515625 251.683594 C 116.515625 250.066406 118.945312 250.066406 118.945312 251.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.234375 349.007812 C 301.234375 350.628906 298.804688 350.628906 298.804688 349.007812 C 298.804688 347.386719 301.234375 347.386719 301.234375 349.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.617188 241.523438 C 117.617188 243.140625 115.1875 243.140625 115.1875 241.523438 C 115.1875 239.902344 117.617188 239.902344 117.617188 241.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.011719 243.796875 C 282.011719 245.417969 279.582031 245.417969 279.582031 243.796875 C 279.582031 242.179688 282.011719 242.179688 282.011719 243.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.699219 111.871094 C 322.699219 113.488281 320.269531 113.488281 320.269531 111.871094 C 320.269531 110.25 322.699219 110.25 322.699219 111.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.027344 70.910156 L 160.664062 73.746094 L 157.390625 73.746094 Z M 159.027344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.242188 70.910156 L 179.878906 73.746094 L 176.605469 73.746094 Z M 178.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.570312 100.382812 C 291.570312 102.003906 289.140625 102.003906 289.140625 100.382812 C 289.140625 98.761719 291.570312 98.761719 291.570312 100.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.257812 289.074219 C 149.257812 290.695312 146.828125 290.695312 146.828125 289.074219 C 146.828125 287.457031 149.257812 287.457031 149.257812 289.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.105469 70.910156 L 126.742188 73.746094 L 123.46875 73.746094 Z M 125.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.660156 313.695312 C 186.660156 315.316406 184.230469 315.316406 184.230469 313.695312 C 184.230469 312.074219 186.660156 312.074219 186.660156 313.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.683594 284.113281 C 133.683594 285.730469 131.253906 285.730469 131.253906 284.113281 C 131.253906 282.492188 133.683594 282.492188 133.683594 284.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.390625 112.164062 C 209.390625 113.785156 206.957031 113.785156 206.957031 112.164062 C 206.957031 110.542969 209.390625 110.542969 209.390625 112.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.828125 285.882812 C 328.828125 287.503906 326.398438 287.503906 326.398438 285.882812 C 326.398438 284.261719 328.828125 284.261719 328.828125 285.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.460938 252.183594 C 238.460938 253.804688 236.027344 253.804688 236.027344 252.183594 C 236.027344 250.5625 238.460938 250.5625 238.460938 252.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.902344 276.925781 C 140.902344 278.546875 138.472656 278.546875 138.472656 276.925781 C 138.472656 275.304688 140.902344 275.304688 140.902344 276.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.730469 191.609375 C 175.730469 193.230469 173.300781 193.230469 173.300781 191.609375 C 173.300781 189.992188 175.730469 189.992188 175.730469 191.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.171875 224.226562 C 292.171875 225.847656 289.742188 225.847656 289.742188 224.226562 C 289.742188 222.609375 292.171875 222.609375 292.171875 224.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.644531 315.5625 C 237.644531 317.179688 235.214844 317.179688 235.214844 315.5625 C 235.214844 313.941406 237.644531 313.941406 237.644531 315.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.050781 217.183594 C 244.050781 218.800781 241.621094 218.800781 241.621094 217.183594 C 241.621094 215.5625 244.050781 215.5625 244.050781 217.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.417969 294.328125 C 265.417969 295.945312 262.988281 295.945312 262.988281 294.328125 C 262.988281 292.707031 265.417969 292.707031 265.417969 294.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.640625 228.40625 C 234.640625 230.027344 232.207031 230.027344 232.207031 228.40625 C 232.207031 226.789062 234.640625 226.789062 234.640625 228.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.847656 242.71875 C 202.847656 244.335938 200.417969 244.335938 200.417969 242.71875 C 200.417969 241.097656 202.847656 241.097656 202.847656 242.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.054688 298.976562 C 288.054688 300.59375 285.625 300.59375 285.625 298.976562 C 285.625 297.355469 288.054688 297.355469 288.054688 298.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.339844 324.234375 C 184.339844 325.851562 181.910156 325.851562 181.910156 324.234375 C 181.910156 322.613281 184.339844 322.613281 184.339844 324.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.617188 211.769531 C 278.617188 213.390625 276.1875 213.390625 276.1875 211.769531 C 276.1875 210.152344 278.617188 210.152344 278.617188 211.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.964844 248.917969 C 257.964844 250.535156 255.535156 250.535156 255.535156 248.917969 C 255.535156 247.296875 257.964844 247.296875 257.964844 248.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.808594 216.136719 C 190.808594 217.753906 188.378906 217.753906 188.378906 216.136719 C 188.378906 214.515625 190.808594 214.515625 190.808594 216.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.441406 254.191406 C 292.441406 255.8125 290.011719 255.8125 290.011719 254.191406 C 290.011719 252.570312 292.441406 252.570312 292.441406 254.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.609375 238.097656 C 278.609375 239.71875 276.179688 239.71875 276.179688 238.097656 C 276.179688 236.480469 278.609375 236.480469 278.609375 238.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.359375 310.472656 C 170.359375 312.09375 167.929688 312.09375 167.929688 310.472656 C 167.929688 308.851562 170.359375 308.851562 170.359375 310.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.984375 287.941406 C 249.984375 289.558594 247.554688 289.558594 247.554688 287.941406 C 247.554688 286.320312 249.984375 286.320312 249.984375 287.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.941406 391.167969 C 268.941406 392.785156 266.511719 392.785156 266.511719 391.167969 C 266.511719 389.546875 268.941406 389.546875 268.941406 391.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.679688 161.246094 C 130.679688 162.867188 128.25 162.867188 128.25 161.246094 C 128.25 159.625 130.679688 159.625 130.679688 161.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.03125 253.789062 C 198.03125 255.40625 195.601562 255.40625 195.601562 253.789062 C 195.601562 252.167969 198.03125 252.167969 198.03125 253.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.640625 418.691406 L 343.277344 415.855469 L 340.007812 415.855469 Z M 341.640625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.199219 214.636719 C 221.199219 216.257812 218.769531 216.257812 218.769531 214.636719 C 218.769531 213.015625 221.199219 213.015625 221.199219 214.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.910156 215.515625 C 222.910156 217.136719 220.480469 217.136719 220.480469 215.515625 C 220.480469 213.894531 222.910156 213.894531 222.910156 215.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.933594 300.742188 C 268.933594 302.363281 266.503906 302.363281 266.503906 300.742188 C 266.503906 299.125 268.933594 299.125 268.933594 300.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.558594 271.675781 C 263.558594 273.296875 261.128906 273.296875 261.128906 271.675781 C 261.128906 270.054688 263.558594 270.054688 263.558594 271.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.917969 83.953125 C 253.917969 85.574219 251.488281 85.574219 251.488281 83.953125 C 251.488281 82.332031 253.917969 82.332031 253.917969 83.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.074219 174.175781 C 221.074219 175.796875 218.644531 175.796875 218.644531 174.175781 C 218.644531 172.554688 221.074219 172.554688 221.074219 174.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.464844 280.644531 C 178.464844 282.265625 176.035156 282.265625 176.035156 280.644531 C 176.035156 279.023438 178.464844 279.023438 178.464844 280.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.363281 104.074219 C 256.363281 105.691406 253.933594 105.691406 253.933594 104.074219 C 253.933594 102.453125 256.363281 102.453125 256.363281 104.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.535156 272.246094 C 252.535156 273.867188 250.105469 273.867188 250.105469 272.246094 C 250.105469 270.625 252.535156 270.625 252.535156 272.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.152344 196.105469 C 124.152344 197.722656 121.722656 197.722656 121.722656 196.105469 C 121.722656 194.484375 124.152344 194.484375 124.152344 196.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.515625 289.796875 C 198.515625 291.417969 196.085938 291.417969 196.085938 289.796875 C 196.085938 288.179688 198.515625 288.179688 198.515625 289.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.328125 70.910156 L 235.964844 73.746094 L 232.691406 73.746094 Z M 234.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.917969 198.589844 C 275.917969 200.210938 273.484375 200.210938 273.484375 198.589844 C 273.484375 196.972656 275.917969 196.972656 275.917969 198.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.367188 312.558594 C 186.367188 314.179688 183.9375 314.179688 183.9375 312.558594 C 183.9375 310.9375 186.367188 310.9375 186.367188 312.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.109375 264.847656 C 249.109375 266.46875 246.679688 266.46875 246.679688 264.847656 C 246.679688 263.226562 249.109375 263.226562 249.109375 264.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.457031 238.304688 C 231.457031 239.925781 229.027344 239.925781 229.027344 238.304688 C 229.027344 236.6875 231.457031 236.6875 231.457031 238.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.003906 196.28125 C 240.003906 197.902344 237.574219 197.902344 237.574219 196.28125 C 237.574219 194.660156 240.003906 194.660156 240.003906 196.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.671875 222.363281 C 280.671875 223.980469 278.242188 223.980469 278.242188 222.363281 C 278.242188 220.742188 280.671875 220.742188 280.671875 222.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.792969 70.910156 L 195.429688 73.746094 L 192.15625 73.746094 Z M 193.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.300781 175.644531 C 264.300781 177.261719 261.871094 177.261719 261.871094 175.644531 C 261.871094 174.023438 264.300781 174.023438 264.300781 175.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.808594 256.046875 C 250.808594 257.664062 248.378906 257.664062 248.378906 256.046875 C 248.378906 254.425781 250.808594 254.425781 250.808594 256.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296 268.597656 C 296 270.21875 293.570312 270.21875 293.570312 268.597656 C 293.570312 266.980469 296 266.980469 296 268.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.132812 348.183594 C 147.132812 349.804688 144.703125 349.804688 144.703125 348.183594 C 144.703125 346.5625 147.132812 346.5625 147.132812 348.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.976562 264.867188 C 267.976562 266.488281 265.546875 266.488281 265.546875 264.867188 C 265.546875 263.246094 267.976562 263.246094 267.976562 264.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.210938 70.910156 L 259.847656 73.746094 L 256.574219 73.746094 Z M 258.210938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.574219 289.507812 C 256.574219 291.128906 254.140625 291.128906 254.140625 289.507812 C 254.140625 287.886719 256.574219 287.886719 256.574219 289.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.753906 274.976562 C 282.753906 276.597656 280.324219 276.597656 280.324219 274.976562 C 280.324219 273.355469 282.753906 273.355469 282.753906 274.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.5625 201.878906 C 295.5625 203.5 293.128906 203.5 293.128906 201.878906 C 293.128906 200.261719 295.5625 200.261719 295.5625 201.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.347656 167.492188 C 233.347656 169.113281 230.917969 169.113281 230.917969 167.492188 C 230.917969 165.875 233.347656 165.875 233.347656 167.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.3125 222.195312 C 305.3125 223.816406 302.882812 223.816406 302.882812 222.195312 C 302.882812 220.574219 305.3125 220.574219 305.3125 222.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.28125 304.113281 C 246.28125 305.734375 243.851562 305.734375 243.851562 304.113281 C 243.851562 302.496094 246.28125 302.496094 246.28125 304.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.339844 318.25 C 185.339844 319.871094 182.910156 319.871094 182.910156 318.25 C 182.910156 316.628906 185.339844 316.628906 185.339844 318.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.152344 272.386719 C 234.152344 274.007812 231.722656 274.007812 231.722656 272.386719 C 231.722656 270.769531 234.152344 270.769531 234.152344 272.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.460938 182.042969 C 129.460938 183.664062 127.03125 183.664062 127.03125 182.042969 C 127.03125 180.421875 129.460938 180.421875 129.460938 182.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.449219 168.78125 C 177.449219 170.402344 175.019531 170.402344 175.019531 168.78125 C 175.019531 167.160156 177.449219 167.160156 177.449219 168.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.152344 244.054688 C 252.152344 245.675781 249.722656 245.675781 249.722656 244.054688 C 249.722656 242.4375 252.152344 242.4375 252.152344 244.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.402344 207.1875 C 274.402344 208.808594 271.972656 208.808594 271.972656 207.1875 C 271.972656 205.570312 274.402344 205.570312 274.402344 207.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.8125 235.480469 C 273.8125 237.097656 271.382812 237.097656 271.382812 235.480469 C 271.382812 233.859375 273.8125 233.859375 273.8125 235.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.914062 151.851562 C 159.914062 153.472656 157.484375 153.472656 157.484375 151.851562 C 157.484375 150.230469 159.914062 150.230469 159.914062 151.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.582031 261.492188 C 167.582031 263.109375 165.152344 263.109375 165.152344 261.492188 C 165.152344 259.871094 167.582031 259.871094 167.582031 261.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.402344 276.007812 C 264.402344 277.628906 261.972656 277.628906 261.972656 276.007812 C 261.972656 274.390625 264.402344 274.390625 264.402344 276.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.582031 220.664062 C 141.582031 222.28125 139.152344 222.28125 139.152344 220.664062 C 139.152344 219.042969 141.582031 219.042969 141.582031 220.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.0625 260.125 C 274.0625 261.742188 271.632812 261.742188 271.632812 260.125 C 271.632812 258.503906 274.0625 258.503906 274.0625 260.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.710938 204.855469 C 259.710938 206.472656 257.28125 206.472656 257.28125 204.855469 C 257.28125 203.234375 259.710938 203.234375 259.710938 204.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.910156 255.023438 C 347.910156 256.644531 345.480469 256.644531 345.480469 255.023438 C 345.480469 253.40625 347.910156 253.40625 347.910156 255.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.585938 212.902344 C 247.585938 214.523438 245.15625 214.523438 245.15625 212.902344 C 245.15625 211.285156 247.585938 211.285156 247.585938 212.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.441406 214.140625 C 282.441406 215.761719 280.011719 215.761719 280.011719 214.140625 C 280.011719 212.519531 282.441406 212.519531 282.441406 214.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.519531 192.101562 C 299.519531 193.722656 297.089844 193.722656 297.089844 192.101562 C 297.089844 190.480469 299.519531 190.480469 299.519531 192.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.214844 296.0625 C 261.214844 297.679688 258.785156 297.679688 258.785156 296.0625 C 258.785156 294.441406 261.214844 294.441406 261.214844 296.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.289062 256.132812 C 243.289062 257.753906 240.859375 257.753906 240.859375 256.132812 C 240.859375 254.511719 243.289062 254.511719 243.289062 256.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.972656 321.300781 C 244.972656 322.921875 242.542969 322.921875 242.542969 321.300781 C 242.542969 319.679688 244.972656 319.679688 244.972656 321.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.25 298.101562 C 253.25 299.71875 250.820312 299.71875 250.820312 298.101562 C 250.820312 296.480469 253.25 296.480469 253.25 298.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.777344 332.167969 C 278.777344 333.785156 276.347656 333.785156 276.347656 332.167969 C 276.347656 330.546875 278.777344 330.546875 278.777344 332.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.621094 323.011719 C 235.621094 324.632812 233.191406 324.632812 233.191406 323.011719 C 233.191406 321.394531 235.621094 321.394531 235.621094 323.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.902344 363.730469 C 254.902344 365.351562 252.472656 365.351562 252.472656 363.730469 C 252.472656 362.109375 254.902344 362.109375 254.902344 363.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.65625 283.445312 C 222.65625 285.066406 220.226562 285.066406 220.226562 283.445312 C 220.226562 281.824219 222.65625 281.824219 222.65625 283.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.492188 288.882812 C 265.492188 290.503906 263.0625 290.503906 263.0625 288.882812 C 263.0625 287.265625 265.492188 287.265625 265.492188 288.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.574219 263.949219 C 212.574219 265.566406 210.144531 265.566406 210.144531 263.949219 C 210.144531 262.328125 212.574219 262.328125 212.574219 263.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.730469 333.640625 C 229.730469 335.261719 227.300781 335.261719 227.300781 333.640625 C 227.300781 332.019531 229.730469 332.019531 229.730469 333.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.515625 225.550781 C 198.515625 227.171875 196.085938 227.171875 196.085938 225.550781 C 196.085938 223.929688 198.515625 223.929688 198.515625 225.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.109375 122.398438 C 250.109375 124.019531 247.679688 124.019531 247.679688 122.398438 C 247.679688 120.78125 250.109375 120.78125 250.109375 122.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.824219 298.25 C 307.824219 299.867188 305.394531 299.867188 305.394531 298.25 C 305.394531 296.628906 307.824219 296.628906 307.824219 298.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281 70.910156 L 282.636719 73.746094 L 279.367188 73.746094 Z M 281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.144531 198.367188 C 193.144531 199.988281 190.714844 199.988281 190.714844 198.367188 C 190.714844 196.746094 193.144531 196.746094 193.144531 198.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.878906 337.460938 C 186.878906 339.078125 184.449219 339.078125 184.449219 337.460938 C 184.449219 335.839844 186.878906 335.839844 186.878906 337.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.9375 327.347656 C 327.9375 328.96875 325.507812 328.96875 325.507812 327.347656 C 325.507812 325.730469 327.9375 325.730469 327.9375 327.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.203125 412.976562 C 124.203125 414.59375 121.773438 414.59375 121.773438 412.976562 C 121.773438 411.355469 124.203125 411.355469 124.203125 412.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.265625 70.910156 L 300.902344 73.746094 L 297.628906 73.746094 Z M 299.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.667969 276.15625 C 266.667969 277.777344 264.238281 277.777344 264.238281 276.15625 C 264.238281 274.535156 266.667969 274.535156 266.667969 276.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.332031 180.792969 C 351.332031 182.414062 348.902344 182.414062 348.902344 180.792969 C 348.902344 179.171875 351.332031 179.171875 351.332031 180.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 351.253906 70.910156 L 352.890625 73.746094 L 349.617188 73.746094 Z M 351.253906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.453125 286.71875 C 273.453125 288.339844 271.023438 288.339844 271.023438 286.71875 C 271.023438 285.101562 273.453125 285.101562 273.453125 286.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.46875 70.910156 L 216.105469 73.746094 L 212.832031 73.746094 Z M 214.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.238281 253.601562 C 237.238281 255.222656 234.808594 255.222656 234.808594 253.601562 C 234.808594 251.980469 237.238281 251.980469 237.238281 253.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.207031 243.023438 C 311.207031 244.640625 308.777344 244.640625 308.777344 243.023438 C 308.777344 241.402344 311.207031 241.402344 311.207031 243.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.371094 226.34375 C 146.371094 227.960938 143.941406 227.960938 143.941406 226.34375 C 143.941406 224.722656 146.371094 224.722656 146.371094 226.34375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.152344 70.910156 L 238.789062 73.746094 L 235.515625 73.746094 Z M 237.152344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.25 70.910156 L 334.882812 73.746094 L 331.613281 73.746094 Z M 333.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.050781 142.921875 C 179.050781 144.539062 176.621094 144.539062 176.621094 142.921875 C 176.621094 141.300781 179.050781 141.300781 179.050781 142.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.359375 261.675781 C 258.359375 263.296875 255.929688 263.296875 255.929688 261.675781 C 255.929688 260.058594 258.359375 260.058594 258.359375 261.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.988281 169.523438 C 273.988281 171.140625 271.554688 171.140625 271.554688 169.523438 C 271.554688 167.902344 273.988281 167.902344 273.988281 169.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.335938 267.617188 C 318.335938 269.238281 315.90625 269.238281 315.90625 267.617188 C 315.90625 265.996094 318.335938 265.996094 318.335938 267.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.519531 305.246094 C 218.519531 306.863281 216.089844 306.863281 216.089844 305.246094 C 216.089844 303.625 218.519531 303.625 218.519531 305.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.210938 114.363281 C 296.210938 115.984375 293.78125 115.984375 293.78125 114.363281 C 293.78125 112.746094 296.210938 112.746094 296.210938 114.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.324219 70.910156 L 240.960938 73.746094 L 237.6875 73.746094 Z M 239.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.710938 116.621094 C 120.710938 118.242188 118.28125 118.242188 118.28125 116.621094 C 118.28125 115 120.710938 115 120.710938 116.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.800781 180.347656 C 193.800781 181.96875 191.371094 181.96875 191.371094 180.347656 C 191.371094 178.726562 193.800781 178.726562 193.800781 180.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.726562 299.1875 C 213.726562 300.808594 211.296875 300.808594 211.296875 299.1875 C 211.296875 297.566406 213.726562 297.566406 213.726562 299.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.359375 287.722656 C 280.359375 289.339844 277.929688 289.339844 277.929688 287.722656 C 277.929688 286.101562 280.359375 286.101562 280.359375 287.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.167969 219.941406 C 199.167969 221.5625 196.738281 221.5625 196.738281 219.941406 C 196.738281 218.324219 199.167969 218.324219 199.167969 219.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.960938 70.910156 L 247.597656 73.746094 L 244.324219 73.746094 Z M 245.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.671875 169.957031 C 248.671875 171.578125 246.242188 171.578125 246.242188 169.957031 C 246.242188 168.335938 248.671875 168.335938 248.671875 169.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.875 283.703125 C 247.875 285.324219 245.445312 285.324219 245.445312 283.703125 C 245.445312 282.082031 247.875 282.082031 247.875 283.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.304688 340.792969 C 286.304688 342.410156 283.875 342.410156 283.875 340.792969 C 283.875 339.171875 286.304688 339.171875 286.304688 340.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.125 70.910156 L 132.761719 73.746094 L 129.488281 73.746094 Z M 131.125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.464844 70.910156 L 189.101562 73.746094 L 185.828125 73.746094 Z M 187.464844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.679688 418.691406 L 163.316406 415.855469 L 160.046875 415.855469 Z M 161.679688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.671875 208.863281 C 148.671875 210.484375 146.242188 210.484375 146.242188 208.863281 C 146.242188 207.242188 148.671875 207.242188 148.671875 208.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.4375 256.40625 C 303.4375 258.027344 301.007812 258.027344 301.007812 256.40625 C 301.007812 254.785156 303.4375 254.785156 303.4375 256.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.113281 70.910156 L 160.75 73.746094 L 157.476562 73.746094 Z M 159.113281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.726562 70.910156 L 285.363281 73.746094 L 282.089844 73.746094 Z M 283.726562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.339844 70.910156 L 142.976562 73.746094 L 139.703125 73.746094 Z M 141.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.351562 70.910156 L 221.988281 73.746094 L 218.714844 73.746094 Z M 220.351562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.734375 70.910156 L 229.371094 73.746094 L 226.097656 73.746094 Z M 227.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.140625 168.585938 C 299.140625 170.207031 296.710938 170.207031 296.710938 168.585938 C 296.710938 166.964844 299.140625 166.964844 299.140625 168.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.128906 70.910156 L 299.761719 73.746094 L 296.492188 73.746094 Z M 298.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.476562 258.09375 C 296.476562 259.714844 294.046875 259.714844 294.046875 258.09375 C 294.046875 256.476562 296.476562 256.476562 296.476562 258.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.316406 418.691406 L 170.953125 415.855469 L 167.679688 415.855469 Z M 169.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.261719 297.703125 C 285.261719 299.324219 282.832031 299.324219 282.832031 297.703125 C 282.832031 296.085938 285.261719 296.085938 285.261719 297.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.191406 70.910156 L 190.828125 73.746094 L 187.554688 73.746094 Z M 189.191406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.316406 418.691406 L 162.953125 415.855469 L 159.679688 415.855469 Z M 161.316406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.402344 418.691406 L 129.039062 415.855469 L 125.765625 415.855469 Z M 127.402344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.234375 208.398438 C 301.234375 210.015625 298.804688 210.015625 298.804688 208.398438 C 298.804688 206.777344 301.234375 206.777344 301.234375 208.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.492188 292.269531 C 279.492188 293.890625 277.0625 293.890625 277.0625 292.269531 C 277.0625 290.652344 279.492188 290.652344 279.492188 292.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.144531 241.917969 C 254.144531 243.539062 251.714844 243.539062 251.714844 241.917969 C 251.714844 240.300781 254.144531 240.300781 254.144531 241.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.792969 142.582031 C 141.792969 144.203125 139.363281 144.203125 139.363281 142.582031 C 139.363281 140.960938 141.792969 140.960938 141.792969 142.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.851562 309.375 C 321.851562 310.996094 319.421875 310.996094 319.421875 309.375 C 319.421875 307.753906 321.851562 307.753906 321.851562 309.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.574219 336.785156 C 278.574219 338.40625 276.140625 338.40625 276.140625 336.785156 C 276.140625 335.164062 278.574219 335.164062 278.574219 336.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.824219 238.441406 C 247.824219 240.0625 245.390625 240.0625 245.390625 238.441406 C 245.390625 236.820312 247.824219 236.820312 247.824219 238.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.792969 355.035156 C 243.792969 356.65625 241.363281 356.65625 241.363281 355.035156 C 241.363281 353.414062 243.792969 353.414062 243.792969 355.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.996094 70.910156 L 221.632812 73.746094 L 218.359375 73.746094 Z M 219.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.796875 189.113281 C 280.796875 190.730469 278.367188 190.730469 278.367188 189.113281 C 278.367188 187.492188 280.796875 187.492188 280.796875 189.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.582031 70.910156 L 152.21875 73.746094 L 148.945312 73.746094 Z M 150.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.722656 146.371094 C 309.722656 147.992188 307.292969 147.992188 307.292969 146.371094 C 307.292969 144.75 309.722656 144.75 309.722656 146.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.648438 211.996094 C 299.648438 213.613281 297.21875 213.613281 297.21875 211.996094 C 297.21875 210.375 299.648438 210.375 299.648438 211.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.640625 214.644531 C 219.640625 216.261719 217.210938 216.261719 217.210938 214.644531 C 217.210938 213.023438 219.640625 213.023438 219.640625 214.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.628906 269.976562 C 285.628906 271.597656 283.199219 271.597656 283.199219 269.976562 C 283.199219 268.355469 285.628906 268.355469 285.628906 269.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.335938 70.910156 L 164.972656 73.746094 L 161.699219 73.746094 Z M 163.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.164062 240.730469 C 247.164062 242.351562 244.734375 242.351562 244.734375 240.730469 C 244.734375 239.109375 247.164062 239.109375 247.164062 240.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.710938 297.007812 C 284.710938 298.625 282.28125 298.625 282.28125 297.007812 C 282.28125 295.386719 284.710938 295.386719 284.710938 297.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.378906 367.597656 C 216.378906 369.21875 213.949219 369.21875 213.949219 367.597656 C 213.949219 365.976562 216.378906 365.976562 216.378906 367.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.601562 307.285156 C 208.601562 308.90625 206.171875 308.90625 206.171875 307.285156 C 206.171875 305.667969 208.601562 305.667969 208.601562 307.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.332031 258.488281 C 128.332031 260.109375 125.902344 260.109375 125.902344 258.488281 C 125.902344 256.867188 128.332031 256.867188 128.332031 258.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.964844 245.199219 C 249.964844 246.820312 247.535156 246.820312 247.535156 245.199219 C 247.535156 243.582031 249.964844 243.582031 249.964844 245.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.792969 185.957031 C 241.792969 187.574219 239.363281 187.574219 239.363281 185.957031 C 239.363281 184.335938 241.792969 184.335938 241.792969 185.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 399.90625 143.960938 C 399.90625 145.582031 397.476562 145.582031 397.476562 143.960938 C 397.476562 142.339844 399.90625 142.339844 399.90625 143.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.257812 203.839844 C 240.257812 205.460938 237.828125 205.460938 237.828125 203.839844 C 237.828125 202.222656 240.257812 202.222656 240.257812 203.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.824219 299.703125 C 182.824219 301.324219 180.390625 301.324219 180.390625 299.703125 C 180.390625 298.082031 182.824219 298.082031 182.824219 299.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.984375 299.761719 C 334.984375 301.382812 332.550781 301.382812 332.550781 299.761719 C 332.550781 298.140625 334.984375 298.140625 334.984375 299.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.457031 256.753906 C 232.457031 258.375 230.027344 258.375 230.027344 256.753906 C 230.027344 255.136719 232.457031 255.136719 232.457031 256.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.699219 282.492188 C 165.699219 284.113281 163.269531 284.113281 163.269531 282.492188 C 163.269531 280.871094 165.699219 280.871094 165.699219 282.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.5 199.222656 C 195.5 200.84375 193.070312 200.84375 193.070312 199.222656 C 193.070312 197.601562 195.5 197.601562 195.5 199.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.316406 230.871094 C 217.316406 232.492188 214.882812 232.492188 214.882812 230.871094 C 214.882812 229.25 217.316406 229.25 217.316406 230.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.71875 304.746094 C 261.71875 306.367188 259.289062 306.367188 259.289062 304.746094 C 259.289062 303.125 261.71875 303.125 261.71875 304.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.347656 368.4375 C 232.347656 370.054688 229.917969 370.054688 229.917969 368.4375 C 229.917969 366.816406 232.347656 366.816406 232.347656 368.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.480469 181.957031 C 167.480469 183.574219 165.050781 183.574219 165.050781 181.957031 C 165.050781 180.335938 167.480469 180.335938 167.480469 181.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.1875 220.746094 C 178.1875 222.367188 175.757812 222.367188 175.757812 220.746094 C 175.757812 219.128906 178.1875 219.128906 178.1875 220.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.324219 70.910156 L 183.960938 73.746094 L 180.6875 73.746094 Z M 182.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.414062 89.589844 C 214.414062 91.207031 211.984375 91.207031 211.984375 89.589844 C 211.984375 87.96875 214.414062 87.96875 214.414062 89.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.734375 105.484375 C 267.734375 107.105469 265.304688 107.105469 265.304688 105.484375 C 265.304688 103.863281 267.734375 103.863281 267.734375 105.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.777344 176.019531 C 299.777344 177.640625 297.347656 177.640625 297.347656 176.019531 C 297.347656 174.402344 299.777344 174.402344 299.777344 176.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.679688 288.042969 C 338.679688 289.664062 336.246094 289.664062 336.246094 288.042969 C 336.246094 286.421875 338.679688 286.421875 338.679688 288.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.863281 317.859375 C 242.863281 319.480469 240.433594 319.480469 240.433594 317.859375 C 240.433594 316.238281 242.863281 316.238281 242.863281 317.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.269531 218.984375 C 166.269531 220.605469 163.839844 220.605469 163.839844 218.984375 C 163.839844 217.363281 166.269531 217.363281 166.269531 218.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.269531 113.113281 C 233.269531 114.734375 230.839844 114.734375 230.839844 113.113281 C 230.839844 111.492188 233.269531 111.492188 233.269531 113.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.828125 299.855469 C 288.828125 301.476562 286.398438 301.476562 286.398438 299.855469 C 286.398438 298.234375 288.828125 298.234375 288.828125 299.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.183594 255.421875 C 188.183594 257.039062 185.753906 257.039062 185.753906 255.421875 C 185.753906 253.800781 188.183594 253.800781 188.183594 255.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.574219 134.484375 C 242.574219 136.105469 240.144531 136.105469 240.144531 134.484375 C 240.144531 132.867188 242.574219 132.867188 242.574219 134.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.226562 333.320312 C 210.226562 334.941406 207.796875 334.941406 207.796875 333.320312 C 207.796875 331.699219 210.226562 331.699219 210.226562 333.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.394531 202.78125 C 176.394531 204.402344 173.964844 204.402344 173.964844 202.78125 C 173.964844 201.164062 176.394531 201.164062 176.394531 202.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.636719 194.015625 C 275.636719 195.636719 273.207031 195.636719 273.207031 194.015625 C 273.207031 192.394531 275.636719 192.394531 275.636719 194.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.078125 418.691406 L 164.714844 415.855469 L 161.441406 415.855469 Z M 163.078125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.648438 70.910156 L 229.285156 73.746094 L 226.011719 73.746094 Z M 227.648438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.886719 70.910156 L 198.523438 73.746094 L 195.25 73.746094 Z M 196.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.109375 269.6875 C 284.109375 271.308594 281.675781 271.308594 281.675781 269.6875 C 281.675781 268.070312 284.109375 268.070312 284.109375 269.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.335938 253.625 C 143.335938 255.242188 140.90625 255.242188 140.90625 253.625 C 140.90625 252.003906 143.335938 252.003906 143.335938 253.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.941406 288.867188 C 269.941406 290.484375 267.511719 290.484375 267.511719 288.867188 C 267.511719 287.246094 269.941406 287.246094 269.941406 288.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.910156 78.460938 C 350.910156 80.082031 348.480469 80.082031 348.480469 78.460938 C 348.480469 76.84375 350.910156 76.84375 350.910156 78.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.578125 219.398438 C 254.578125 221.019531 252.148438 221.019531 252.148438 219.398438 C 252.148438 217.777344 254.578125 217.777344 254.578125 219.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.484375 321.976562 C 297.484375 323.597656 295.050781 323.597656 295.050781 321.976562 C 295.050781 320.359375 297.484375 320.359375 297.484375 321.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.574219 298.972656 C 286.574219 300.589844 284.144531 300.589844 284.144531 298.972656 C 284.144531 297.351562 286.574219 297.351562 286.574219 298.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.136719 299.3125 C 255.136719 300.933594 252.707031 300.933594 252.707031 299.3125 C 252.707031 297.695312 255.136719 297.695312 255.136719 299.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.664062 260.472656 C 291.664062 262.09375 289.234375 262.09375 289.234375 260.472656 C 289.234375 258.851562 291.664062 258.851562 291.664062 260.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.730469 70.910156 L 243.367188 73.746094 L 240.097656 73.746094 Z M 241.730469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.148438 70.910156 L 251.785156 73.746094 L 248.511719 73.746094 Z M 250.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.003906 162.46875 C 147.003906 164.089844 144.574219 164.089844 144.574219 162.46875 C 144.574219 160.847656 147.003906 160.847656 147.003906 162.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.167969 225.625 C 227.167969 227.246094 224.738281 227.246094 224.738281 225.625 C 224.738281 224.003906 227.167969 224.003906 227.167969 225.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.949219 199.253906 C 298.949219 200.875 296.519531 200.875 296.519531 199.253906 C 296.519531 197.636719 298.949219 197.636719 298.949219 199.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.585938 266.976562 C 226.585938 268.59375 224.15625 268.59375 224.15625 266.976562 C 224.15625 265.355469 226.585938 265.355469 226.585938 266.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.90625 260.851562 C 197.90625 262.46875 195.476562 262.46875 195.476562 260.851562 C 195.476562 259.230469 197.90625 259.230469 197.90625 260.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 365.65625 70.910156 L 367.292969 73.746094 L 364.019531 73.746094 Z M 365.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.773438 291.179688 C 300.773438 292.800781 298.34375 292.800781 298.34375 291.179688 C 298.34375 289.5625 300.773438 289.5625 300.773438 291.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.984375 184.878906 C 172.984375 186.5 170.550781 186.5 170.550781 184.878906 C 170.550781 183.257812 172.984375 183.257812 172.984375 184.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.246094 250.710938 C 234.246094 252.332031 231.816406 252.332031 231.816406 250.710938 C 231.816406 249.089844 234.246094 249.089844 234.246094 250.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.972656 395.3125 C 158.972656 396.933594 156.542969 396.933594 156.542969 395.3125 C 156.542969 393.691406 158.972656 393.691406 158.972656 395.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.550781 286.5625 C 288.550781 288.179688 286.121094 288.179688 286.121094 286.5625 C 286.121094 284.941406 288.550781 284.941406 288.550781 286.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.53125 154.441406 C 182.53125 156.0625 180.097656 156.0625 180.097656 154.441406 C 180.097656 152.824219 182.53125 152.824219 182.53125 154.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.234375 354.351562 C 176.234375 355.96875 173.804688 355.96875 173.804688 354.351562 C 173.804688 352.730469 176.234375 352.730469 176.234375 354.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.714844 390.378906 C 269.714844 391.996094 267.285156 391.996094 267.285156 390.378906 C 267.285156 388.757812 269.714844 388.757812 269.714844 390.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.25 232.6875 C 205.25 234.308594 202.820312 234.308594 202.820312 232.6875 C 202.820312 231.066406 205.25 231.066406 205.25 232.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.640625 152.875 C 233.640625 154.492188 231.210938 154.492188 231.210938 152.875 C 231.210938 151.253906 233.640625 151.253906 233.640625 152.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.136719 275.125 C 198.136719 276.746094 195.707031 276.746094 195.707031 275.125 C 195.707031 273.507812 198.136719 273.507812 198.136719 275.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.308594 242.421875 C 206.308594 244.042969 203.878906 244.042969 203.878906 242.421875 C 203.878906 240.800781 206.308594 240.800781 206.308594 242.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.707031 251.441406 C 251.707031 253.058594 249.277344 253.058594 249.277344 251.441406 C 249.277344 249.820312 251.707031 249.820312 251.707031 251.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.359375 213.03125 C 299.359375 214.652344 296.925781 214.652344 296.925781 213.03125 C 296.925781 211.414062 299.359375 211.414062 299.359375 213.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.542969 234.660156 C 209.542969 236.28125 207.113281 236.28125 207.113281 234.660156 C 207.113281 233.042969 209.542969 233.042969 209.542969 234.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.417969 218.175781 C 243.417969 219.792969 240.988281 219.792969 240.988281 218.175781 C 240.988281 216.554688 243.417969 216.554688 243.417969 218.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.875 219.53125 C 242.875 221.148438 240.445312 221.148438 240.445312 219.53125 C 240.445312 217.910156 242.875 217.910156 242.875 219.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.679688 306.425781 C 291.679688 308.042969 289.25 308.042969 289.25 306.425781 C 289.25 304.804688 291.679688 304.804688 291.679688 306.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.117188 178.597656 C 231.117188 180.214844 228.683594 180.214844 228.683594 178.597656 C 228.683594 176.976562 231.117188 176.976562 231.117188 178.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.785156 70.910156 L 220.421875 73.746094 L 217.148438 73.746094 Z M 218.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.617188 218.117188 C 228.617188 219.738281 226.1875 219.738281 226.1875 218.117188 C 226.1875 216.5 228.617188 216.5 228.617188 218.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.71875 174.792969 C 128.71875 176.410156 126.289062 176.410156 126.289062 174.792969 C 126.289062 173.171875 128.71875 173.171875 128.71875 174.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.882812 225.058594 C 197.882812 226.675781 195.453125 226.675781 195.453125 225.058594 C 195.453125 223.4375 197.882812 223.4375 197.882812 225.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.582031 303.1875 C 251.582031 304.808594 249.152344 304.808594 249.152344 303.1875 C 249.152344 301.566406 251.582031 301.566406 251.582031 303.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.804688 260.285156 C 257.804688 261.90625 255.375 261.90625 255.375 260.285156 C 255.375 258.664062 257.804688 258.664062 257.804688 260.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.03125 288.632812 C 298.03125 290.253906 295.601562 290.253906 295.601562 288.632812 C 295.601562 287.015625 298.03125 287.015625 298.03125 288.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.011719 297.242188 C 281.011719 298.863281 278.582031 298.863281 278.582031 297.242188 C 278.582031 295.625 281.011719 295.625 281.011719 297.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.0625 70.910156 L 214.699219 73.746094 L 211.425781 73.746094 Z M 213.0625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.007812 256.25 C 274.007812 257.871094 271.574219 257.871094 271.574219 256.25 C 271.574219 254.628906 274.007812 254.628906 274.007812 256.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.574219 247.390625 C 269.574219 249.007812 267.144531 249.007812 267.144531 247.390625 C 267.144531 245.769531 269.574219 245.769531 269.574219 247.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.890625 262.035156 C 165.890625 263.65625 163.460938 263.65625 163.460938 262.035156 C 163.460938 260.417969 165.890625 260.417969 165.890625 262.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.773438 260.660156 C 266.773438 262.28125 264.34375 262.28125 264.34375 260.660156 C 264.34375 259.042969 266.773438 259.042969 266.773438 260.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.675781 296.601562 C 294.675781 298.222656 292.246094 298.222656 292.246094 296.601562 C 292.246094 294.980469 294.675781 294.980469 294.675781 296.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.636719 405.007812 C 329.636719 406.628906 327.207031 406.628906 327.207031 405.007812 C 327.207031 403.386719 329.636719 403.386719 329.636719 405.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.597656 418.691406 L 175.234375 415.855469 L 171.960938 415.855469 Z M 173.597656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.757812 418.691406 L 197.394531 415.855469 L 194.121094 415.855469 Z M 195.757812 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.867188 70.910156 L 159.503906 73.746094 L 156.230469 73.746094 Z M 157.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.585938 287.550781 C 278.585938 289.171875 276.15625 289.171875 276.15625 287.550781 C 276.15625 285.933594 278.585938 285.933594 278.585938 287.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.097656 254.101562 C 228.097656 255.722656 225.667969 255.722656 225.667969 254.101562 C 225.667969 252.480469 228.097656 252.480469 228.097656 254.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.714844 92.585938 C 333.714844 94.207031 331.285156 94.207031 331.285156 92.585938 C 331.285156 90.96875 333.714844 90.96875 333.714844 92.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.9375 252.636719 C 227.9375 254.253906 225.507812 254.253906 225.507812 252.636719 C 225.507812 251.015625 227.9375 251.015625 227.9375 252.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.78125 309.175781 C 293.78125 310.796875 291.351562 310.796875 291.351562 309.175781 C 291.351562 307.554688 293.78125 307.554688 293.78125 309.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.289062 125.601562 C 245.289062 127.222656 242.859375 127.222656 242.859375 125.601562 C 242.859375 123.984375 245.289062 123.984375 245.289062 125.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.5 265.933594 C 277.5 267.550781 275.070312 267.550781 275.070312 265.933594 C 275.070312 264.3125 277.5 264.3125 277.5 265.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.960938 232.324219 C 293.960938 233.941406 291.53125 233.941406 291.53125 232.324219 C 291.53125 230.703125 293.960938 230.703125 293.960938 232.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.902344 70.910156 L 178.539062 73.746094 L 175.265625 73.746094 Z M 176.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.988281 230.0625 C 227.988281 231.683594 225.554688 231.683594 225.554688 230.0625 C 225.554688 228.441406 227.988281 228.441406 227.988281 230.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.566406 132.097656 C 264.566406 133.71875 262.136719 133.71875 262.136719 132.097656 C 262.136719 130.476562 264.566406 130.476562 264.566406 132.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.765625 210.046875 C 265.765625 211.667969 263.335938 211.667969 263.335938 210.046875 C 263.335938 208.429688 265.765625 208.429688 265.765625 210.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.820312 247.707031 C 186.820312 249.328125 184.390625 249.328125 184.390625 247.707031 C 184.390625 246.085938 186.820312 246.085938 186.820312 247.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.140625 265.304688 C 278.140625 266.925781 275.710938 266.925781 275.710938 265.304688 C 275.710938 263.6875 278.140625 263.6875 278.140625 265.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.28125 361.042969 C 209.28125 362.664062 206.851562 362.664062 206.851562 361.042969 C 206.851562 359.425781 209.28125 359.425781 209.28125 361.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.589844 224.851562 C 203.589844 226.472656 201.160156 226.472656 201.160156 224.851562 C 201.160156 223.230469 203.589844 223.230469 203.589844 224.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.703125 202.839844 C 182.703125 204.457031 180.273438 204.457031 180.273438 202.839844 C 180.273438 201.21875 182.703125 201.21875 182.703125 202.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.96875 297.691406 C 256.96875 299.3125 254.539062 299.3125 254.539062 297.691406 C 254.539062 296.070312 256.96875 296.070312 256.96875 297.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.035156 273.03125 C 269.035156 274.652344 266.605469 274.652344 266.605469 273.03125 C 266.605469 271.410156 269.035156 271.410156 269.035156 273.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314 174.9375 C 314 176.558594 311.570312 176.558594 311.570312 174.9375 C 311.570312 173.316406 314 173.316406 314 174.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.75 70.910156 L 134.386719 73.746094 L 131.113281 73.746094 Z M 132.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.550781 198.691406 C 257.550781 200.3125 255.121094 200.3125 255.121094 198.691406 C 255.121094 197.070312 257.550781 197.070312 257.550781 198.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.800781 201.542969 C 266.800781 203.164062 264.371094 203.164062 264.371094 201.542969 C 264.371094 199.925781 266.800781 199.925781 266.800781 201.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.984375 70.910156 L 216.621094 73.746094 L 213.351562 73.746094 Z M 214.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.238281 116.546875 C 119.238281 118.167969 116.808594 118.167969 116.808594 116.546875 C 116.808594 114.925781 119.238281 114.925781 119.238281 116.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.578125 284.976562 C 240.578125 286.597656 238.148438 286.597656 238.148438 284.976562 C 238.148438 283.359375 240.578125 283.359375 240.578125 284.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.023438 70.910156 L 166.660156 73.746094 L 163.386719 73.746094 Z M 165.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.367188 271.886719 C 287.367188 273.507812 284.9375 273.507812 284.9375 271.886719 C 284.9375 270.265625 287.367188 270.265625 287.367188 271.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.777344 97.933594 C 249.777344 99.550781 247.34375 99.550781 247.34375 97.933594 C 247.34375 96.3125 249.777344 96.3125 249.777344 97.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.714844 338.851562 C 249.714844 340.46875 247.285156 340.46875 247.285156 338.851562 C 247.285156 337.230469 249.714844 337.230469 249.714844 338.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.992188 209.59375 C 233.992188 211.210938 231.5625 211.210938 231.5625 209.59375 C 231.5625 207.972656 233.992188 207.972656 233.992188 209.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.015625 418.691406 L 183.652344 415.855469 L 180.378906 415.855469 Z M 182.015625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.355469 298.578125 C 301.355469 300.199219 298.925781 300.199219 298.925781 298.578125 C 298.925781 296.960938 301.355469 296.960938 301.355469 298.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.386719 70.910156 L 184.023438 73.746094 L 180.75 73.746094 Z M 182.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.882812 388.421875 C 254.882812 390.042969 252.449219 390.042969 252.449219 388.421875 C 252.449219 386.804688 254.882812 386.804688 254.882812 388.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.910156 262.300781 C 282.910156 263.921875 280.480469 263.921875 280.480469 262.300781 C 280.480469 260.683594 282.910156 260.683594 282.910156 262.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.457031 241.734375 C 322.457031 243.355469 320.027344 243.355469 320.027344 241.734375 C 320.027344 240.113281 322.457031 240.113281 322.457031 241.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.289062 179.015625 C 178.289062 180.636719 175.859375 180.636719 175.859375 179.015625 C 175.859375 177.394531 178.289062 177.394531 178.289062 179.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.328125 319.488281 C 311.328125 321.109375 308.898438 321.109375 308.898438 319.488281 C 308.898438 317.867188 311.328125 317.867188 311.328125 319.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.789062 330.363281 C 276.789062 331.980469 274.359375 331.980469 274.359375 330.363281 C 274.359375 328.742188 276.789062 328.742188 276.789062 330.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.117188 157.726562 C 130.117188 159.34375 127.6875 159.34375 127.6875 157.726562 C 127.6875 156.105469 130.117188 156.105469 130.117188 157.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.445312 287.03125 C 166.445312 288.652344 164.015625 288.652344 164.015625 287.03125 C 164.015625 285.414062 166.445312 285.414062 166.445312 287.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.980469 242.390625 C 269.980469 244.011719 267.550781 244.011719 267.550781 242.390625 C 267.550781 240.773438 269.980469 240.773438 269.980469 242.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.550781 244.660156 C 251.550781 246.28125 249.121094 246.28125 249.121094 244.660156 C 249.121094 243.039062 251.550781 243.039062 251.550781 244.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.488281 288.246094 C 229.488281 289.867188 227.058594 289.867188 227.058594 288.246094 C 227.058594 286.625 229.488281 286.625 229.488281 288.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 354.269531 279.363281 C 354.269531 280.984375 351.839844 280.984375 351.839844 279.363281 C 351.839844 277.746094 354.269531 277.746094 354.269531 279.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.695312 229.253906 C 290.695312 230.871094 288.265625 230.871094 288.265625 229.253906 C 288.265625 227.632812 290.695312 227.632812 290.695312 229.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.039062 184.867188 C 296.039062 186.484375 293.609375 186.484375 293.609375 184.867188 C 293.609375 183.246094 296.039062 183.246094 296.039062 184.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.378906 288.980469 C 304.378906 290.601562 301.949219 290.601562 301.949219 288.980469 C 301.949219 287.359375 304.378906 287.359375 304.378906 288.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.621094 334.9375 C 274.621094 336.558594 272.191406 336.558594 272.191406 334.9375 C 272.191406 333.320312 274.621094 333.320312 274.621094 334.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 384.566406 201.925781 C 384.566406 203.546875 382.136719 203.546875 382.136719 201.925781 C 382.136719 200.304688 384.566406 200.304688 384.566406 201.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.128906 70.910156 L 220.765625 73.746094 L 217.492188 73.746094 Z M 219.128906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.191406 70.910156 L 175.828125 73.746094 L 172.554688 73.746094 Z M 174.191406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.214844 263.78125 C 343.214844 265.398438 340.785156 265.398438 340.785156 263.78125 C 340.785156 262.160156 343.214844 262.160156 343.214844 263.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.132812 350.53125 C 293.132812 352.148438 290.699219 352.148438 290.699219 350.53125 C 290.699219 348.910156 293.132812 348.910156 293.132812 350.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.1875 70.910156 L 140.824219 73.746094 L 137.550781 73.746094 Z M 139.1875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.84375 70.910156 L 136.476562 73.746094 L 133.207031 73.746094 Z M 134.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.492188 204.449219 C 300.492188 206.070312 298.0625 206.070312 298.0625 204.449219 C 298.0625 202.828125 300.492188 202.828125 300.492188 204.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.5 325.367188 C 208.5 326.984375 206.066406 326.984375 206.066406 325.367188 C 206.066406 323.746094 208.5 323.746094 208.5 325.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.042969 362.738281 C 304.042969 364.359375 301.613281 364.359375 301.613281 362.738281 C 301.613281 361.117188 304.042969 361.117188 304.042969 362.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 384.453125 418.691406 L 386.089844 415.855469 L 382.816406 415.855469 Z M 384.453125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.910156 304.460938 C 208.910156 306.082031 206.480469 306.082031 206.480469 304.460938 C 206.480469 302.839844 208.910156 302.839844 208.910156 304.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.152344 97.097656 C 151.152344 98.71875 148.722656 98.71875 148.722656 97.097656 C 148.722656 95.476562 151.152344 95.476562 151.152344 97.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.628906 287.691406 C 186.628906 289.308594 184.199219 289.308594 184.199219 287.691406 C 184.199219 286.070312 186.628906 286.070312 186.628906 287.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.859375 249.71875 C 269.859375 251.339844 267.429688 251.339844 267.429688 249.71875 C 267.429688 248.101562 269.859375 248.101562 269.859375 249.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.945312 317.574219 C 292.945312 319.191406 290.515625 319.191406 290.515625 317.574219 C 290.515625 315.953125 292.945312 315.953125 292.945312 317.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.414062 70.910156 L 252.050781 73.746094 L 248.777344 73.746094 Z M 250.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.796875 220.890625 C 289.796875 222.511719 287.367188 222.511719 287.367188 220.890625 C 287.367188 219.269531 289.796875 219.269531 289.796875 220.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.832031 70.910156 L 171.46875 73.746094 L 168.195312 73.746094 Z M 169.832031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.738281 418.691406 L 148.375 415.855469 L 145.101562 415.855469 Z M 146.738281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 427.53125 320.0625 C 427.53125 321.683594 425.101562 321.683594 425.101562 320.0625 C 425.101562 318.445312 427.53125 318.445312 427.53125 320.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.027344 283.351562 C 322.027344 284.972656 319.597656 284.972656 319.597656 283.351562 C 319.597656 281.730469 322.027344 281.730469 322.027344 283.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.902344 241.53125 C 129.902344 243.152344 127.472656 243.152344 127.472656 241.53125 C 127.472656 239.910156 129.902344 239.910156 129.902344 241.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.457031 359.664062 C 282.457031 361.28125 280.027344 361.28125 280.027344 359.664062 C 280.027344 358.042969 282.457031 358.042969 282.457031 359.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.558594 239.59375 C 258.558594 241.214844 256.125 241.214844 256.125 239.59375 C 256.125 237.972656 258.558594 237.972656 258.558594 239.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.722656 248.742188 C 240.722656 250.359375 238.292969 250.359375 238.292969 248.742188 C 238.292969 247.121094 240.722656 247.121094 240.722656 248.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.679688 116.570312 C 119.679688 118.1875 117.25 118.1875 117.25 116.570312 C 117.25 114.949219 119.679688 114.949219 119.679688 116.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.992188 110.761719 C 237.992188 112.382812 235.5625 112.382812 235.5625 110.761719 C 235.5625 109.140625 237.992188 109.140625 237.992188 110.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.984375 333.960938 C 273.984375 335.582031 271.554688 335.582031 271.554688 333.960938 C 271.554688 332.34375 273.984375 332.34375 273.984375 333.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.242188 323.09375 C 206.242188 324.714844 203.8125 324.714844 203.8125 323.09375 C 203.8125 321.472656 206.242188 321.472656 206.242188 323.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.035156 70.910156 L 136.671875 73.746094 L 133.398438 73.746094 Z M 135.035156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.925781 70.910156 L 155.5625 73.746094 L 152.289062 73.746094 Z M 153.925781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.65625 70.910156 L 264.289062 73.746094 L 261.019531 73.746094 Z M 262.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 382.519531 244.054688 C 382.519531 245.675781 380.085938 245.675781 380.085938 244.054688 C 380.085938 242.4375 382.519531 242.4375 382.519531 244.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.785156 70.910156 L 174.421875 73.746094 L 171.148438 73.746094 Z M 172.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.277344 208.140625 C 246.277344 209.757812 243.847656 209.757812 243.847656 208.140625 C 243.847656 206.519531 246.277344 206.519531 246.277344 208.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.421875 107.492188 C 341.421875 109.113281 338.992188 109.113281 338.992188 107.492188 C 338.992188 105.875 341.421875 105.875 341.421875 107.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.382812 207.796875 C 236.382812 209.417969 233.953125 209.417969 233.953125 207.796875 C 233.953125 206.179688 236.382812 206.179688 236.382812 207.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.695312 70.910156 L 214.332031 73.746094 L 211.058594 73.746094 Z M 212.695312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.707031 418.691406 L 159.34375 415.855469 L 156.070312 415.855469 Z M 157.707031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.496094 70.910156 L 210.132812 73.746094 L 206.859375 73.746094 Z M 208.496094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.949219 254.03125 C 324.949219 255.652344 322.519531 255.652344 322.519531 254.03125 C 322.519531 252.410156 324.949219 252.410156 324.949219 254.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.578125 281.414062 C 287.578125 283.035156 285.148438 283.035156 285.148438 281.414062 C 285.148438 279.792969 287.578125 279.792969 287.578125 281.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.179688 311.039062 C 270.179688 312.660156 267.75 312.660156 267.75 311.039062 C 267.75 309.421875 270.179688 309.421875 270.179688 311.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.339844 244.648438 C 291.339844 246.269531 288.910156 246.269531 288.910156 244.648438 C 288.910156 243.03125 291.339844 243.03125 291.339844 244.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.53125 261.125 C 253.53125 262.746094 251.101562 262.746094 251.101562 261.125 C 251.101562 259.507812 253.53125 259.507812 253.53125 261.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.222656 256.550781 C 305.222656 258.171875 302.792969 258.171875 302.792969 256.550781 C 302.792969 254.933594 305.222656 254.933594 305.222656 256.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.339844 269.476562 C 293.339844 271.097656 290.90625 271.097656 290.90625 269.476562 C 290.90625 267.859375 293.339844 267.859375 293.339844 269.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.847656 127.578125 C 116.847656 129.199219 114.417969 129.199219 114.417969 127.578125 C 114.417969 125.960938 116.847656 125.960938 116.847656 127.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.203125 204.589844 C 250.203125 206.207031 247.773438 206.207031 247.773438 204.589844 C 247.773438 202.96875 250.203125 202.96875 250.203125 204.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.65625 372.949219 C 294.65625 374.570312 292.226562 374.570312 292.226562 372.949219 C 292.226562 371.328125 294.65625 371.328125 294.65625 372.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.109375 251.992188 C 173.109375 253.609375 170.679688 253.609375 170.679688 251.992188 C 170.679688 250.371094 173.109375 250.371094 173.109375 251.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.085938 159.0625 C 249.085938 160.683594 246.65625 160.683594 246.65625 159.0625 C 246.65625 157.441406 249.085938 157.441406 249.085938 159.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.121094 193.804688 C 285.121094 195.425781 282.691406 195.425781 282.691406 193.804688 C 282.691406 192.1875 285.121094 192.1875 285.121094 193.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.09375 237.710938 C 153.09375 239.332031 150.664062 239.332031 150.664062 237.710938 C 150.664062 236.089844 153.09375 236.089844 153.09375 237.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.855469 351.351562 C 243.855469 352.972656 241.425781 352.972656 241.425781 351.351562 C 241.425781 349.730469 243.855469 349.730469 243.855469 351.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.746094 347.703125 C 287.746094 349.324219 285.316406 349.324219 285.316406 347.703125 C 285.316406 346.082031 287.746094 346.082031 287.746094 347.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.570312 223.789062 C 208.570312 225.410156 206.140625 225.410156 206.140625 223.789062 C 206.140625 222.171875 208.570312 222.171875 208.570312 223.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.675781 70.910156 L 133.3125 73.746094 L 130.039062 73.746094 Z M 131.675781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.265625 70.910156 L 151.902344 73.746094 L 148.632812 73.746094 Z M 150.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.890625 110.191406 C 204.890625 111.8125 202.460938 111.8125 202.460938 110.191406 C 202.460938 108.570312 204.890625 108.570312 204.890625 110.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.636719 187.289062 C 217.636719 188.90625 215.207031 188.90625 215.207031 187.289062 C 215.207031 185.667969 217.636719 185.667969 217.636719 187.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.703125 329.992188 C 192.703125 331.613281 190.273438 331.613281 190.273438 329.992188 C 190.273438 328.371094 192.703125 328.371094 192.703125 329.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.835938 229.625 C 272.835938 231.242188 270.402344 231.242188 270.402344 229.625 C 270.402344 228.003906 272.835938 228.003906 272.835938 229.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.738281 278.191406 C 296.738281 279.8125 294.308594 279.8125 294.308594 278.191406 C 294.308594 276.570312 296.738281 276.570312 296.738281 278.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.828125 128.828125 C 225.828125 130.449219 223.398438 130.449219 223.398438 128.828125 C 223.398438 127.207031 225.828125 127.207031 225.828125 128.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.792969 70.910156 L 222.429688 73.746094 L 219.15625 73.746094 Z M 220.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.527344 290.109375 C 278.527344 291.726562 276.09375 291.726562 276.09375 290.109375 C 276.09375 288.488281 278.527344 288.488281 278.527344 290.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.546875 72.980469 C 233.546875 74.597656 231.117188 74.597656 231.117188 72.980469 C 231.117188 71.359375 233.546875 71.359375 233.546875 72.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.277344 163.519531 C 212.277344 165.140625 209.847656 165.140625 209.847656 163.519531 C 209.847656 161.902344 212.277344 161.902344 212.277344 163.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.429688 231.828125 C 154.429688 233.445312 152 233.445312 152 231.828125 C 152 230.207031 154.429688 230.207031 154.429688 231.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.621094 70.910156 L 214.257812 73.746094 L 210.984375 73.746094 Z M 212.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.90625 70.910156 L 212.542969 73.746094 L 209.269531 73.746094 Z M 210.90625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.457031 70.910156 L 257.09375 73.746094 L 253.820312 73.746094 Z M 255.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.773438 258.484375 C 293.773438 260.101562 291.34375 260.101562 291.34375 258.484375 C 291.34375 256.863281 293.773438 256.863281 293.773438 258.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.183594 212.644531 C 332.183594 214.265625 329.75 214.265625 329.75 212.644531 C 329.75 211.027344 332.183594 211.027344 332.183594 212.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.25 95.269531 C 222.25 96.890625 219.820312 96.890625 219.820312 95.269531 C 219.820312 93.652344 222.25 93.652344 222.25 95.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.417969 312.554688 C 291.417969 314.175781 288.988281 314.175781 288.988281 312.554688 C 288.988281 310.933594 291.417969 310.933594 291.417969 312.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.167969 70.910156 L 252.804688 73.746094 L 249.53125 73.746094 Z M 251.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.484375 254.046875 C 247.484375 255.667969 245.054688 255.667969 245.054688 254.046875 C 245.054688 252.429688 247.484375 252.429688 247.484375 254.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.632812 330.753906 C 287.632812 332.375 285.203125 332.375 285.203125 330.753906 C 285.203125 329.132812 287.632812 329.132812 287.632812 330.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.84375 333.105469 C 232.84375 334.722656 230.414062 334.722656 230.414062 333.105469 C 230.414062 331.484375 232.84375 331.484375 232.84375 333.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.597656 70.910156 L 221.234375 73.746094 L 217.960938 73.746094 Z M 219.597656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.089844 70.910156 L 252.726562 73.746094 L 249.453125 73.746094 Z M 251.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.769531 289.550781 C 260.769531 291.171875 258.339844 291.171875 258.339844 289.550781 C 258.339844 287.933594 260.769531 287.933594 260.769531 289.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.539062 194.164062 C 276.539062 195.785156 274.109375 195.785156 274.109375 194.164062 C 274.109375 192.542969 276.539062 192.542969 276.539062 194.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.085938 181.730469 C 261.085938 183.351562 258.65625 183.351562 258.65625 181.730469 C 258.65625 180.109375 261.085938 180.109375 261.085938 181.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.117188 233.898438 C 282.117188 235.515625 279.6875 235.515625 279.6875 233.898438 C 279.6875 232.277344 282.117188 232.277344 282.117188 233.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.234375 70.910156 L 286.871094 73.746094 L 283.597656 73.746094 Z M 285.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.046875 418.691406 L 320.683594 415.855469 L 317.410156 415.855469 Z M 319.046875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.71875 158.449219 C 294.71875 160.070312 292.285156 160.070312 292.285156 158.449219 C 292.285156 156.832031 294.71875 156.832031 294.71875 158.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.253906 238.21875 C 339.253906 239.835938 336.824219 239.835938 336.824219 238.21875 C 336.824219 236.597656 339.253906 236.597656 339.253906 238.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.273438 221.125 C 265.273438 222.742188 262.84375 222.742188 262.84375 221.125 C 262.84375 219.503906 265.273438 219.503906 265.273438 221.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.300781 266.039062 C 201.300781 267.660156 198.867188 267.660156 198.867188 266.039062 C 198.867188 264.417969 201.300781 264.417969 201.300781 266.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.277344 70.910156 L 300.914062 73.746094 L 297.640625 73.746094 Z M 299.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.09375 318.644531 C 303.09375 320.265625 300.664062 320.265625 300.664062 318.644531 C 300.664062 317.023438 303.09375 317.023438 303.09375 318.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.277344 139.542969 C 157.277344 141.160156 154.847656 141.160156 154.847656 139.542969 C 154.847656 137.921875 157.277344 137.921875 157.277344 139.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.515625 70.910156 L 153.152344 73.746094 L 149.878906 73.746094 Z M 151.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.882812 214.90625 C 264.882812 216.527344 262.453125 216.527344 262.453125 214.90625 C 262.453125 213.289062 264.882812 213.289062 264.882812 214.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.894531 70.910156 L 144.53125 73.746094 L 141.257812 73.746094 Z M 142.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.894531 70.910156 L 144.53125 73.746094 L 141.257812 73.746094 Z M 142.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.941406 195.746094 C 191.941406 197.363281 189.511719 197.363281 189.511719 195.746094 C 189.511719 194.125 191.941406 194.125 191.941406 195.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.191406 70.910156 L 243.828125 73.746094 L 240.554688 73.746094 Z M 242.191406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.386719 70.910156 L 242.023438 73.746094 L 238.75 73.746094 Z M 240.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.339844 148.960938 C 270.339844 150.582031 267.910156 150.582031 267.910156 148.960938 C 267.910156 147.339844 270.339844 147.339844 270.339844 148.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.449219 418.691406 L 215.085938 415.855469 L 211.8125 415.855469 Z M 213.449219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 368.34375 394.714844 C 368.34375 396.332031 365.914062 396.332031 365.914062 394.714844 C 365.914062 393.09375 368.34375 393.09375 368.34375 394.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.753906 407.953125 C 346.753906 409.570312 344.324219 409.570312 344.324219 407.953125 C 344.324219 406.332031 346.753906 406.332031 346.753906 407.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.109375 382.710938 C 119.109375 384.332031 116.675781 384.332031 116.675781 382.710938 C 116.675781 381.089844 119.109375 381.089844 119.109375 382.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.878906 363.484375 C 215.878906 365.101562 213.449219 365.101562 213.449219 363.484375 C 213.449219 361.863281 215.878906 361.863281 215.878906 363.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.605469 259.570312 C 318.605469 261.191406 316.175781 261.191406 316.175781 259.570312 C 316.175781 257.949219 318.605469 257.949219 318.605469 259.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.792969 70.910156 L 198.425781 73.746094 L 195.15625 73.746094 Z M 196.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.6875 254.902344 C 284.6875 256.519531 282.257812 256.519531 282.257812 254.902344 C 282.257812 253.28125 284.6875 253.28125 284.6875 254.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.105469 303.109375 C 204.105469 304.730469 201.675781 304.730469 201.675781 303.109375 C 201.675781 301.492188 204.105469 301.492188 204.105469 303.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.789062 70.910156 L 141.425781 73.746094 L 138.152344 73.746094 Z M 139.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.824219 254.3125 C 244.824219 255.929688 242.390625 255.929688 242.390625 254.3125 C 242.390625 252.691406 244.824219 252.691406 244.824219 254.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.5 70.910156 L 142.136719 73.746094 L 138.863281 73.746094 Z M 140.5 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.609375 70.910156 L 190.246094 73.746094 L 186.972656 73.746094 Z M 188.609375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.054688 70.910156 L 245.691406 73.746094 L 242.417969 73.746094 Z M 244.054688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.003906 70.910156 L 151.640625 73.746094 L 148.367188 73.746094 Z M 150.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.476562 391.40625 C 226.476562 393.027344 224.046875 393.027344 224.046875 391.40625 C 224.046875 389.789062 226.476562 389.789062 226.476562 391.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.660156 81.945312 C 208.660156 83.566406 206.230469 83.566406 206.230469 81.945312 C 206.230469 80.324219 208.660156 80.324219 208.660156 81.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.761719 218.710938 C 188.761719 220.332031 186.332031 220.332031 186.332031 218.710938 C 186.332031 217.089844 188.761719 217.089844 188.761719 218.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.914062 228.058594 C 184.914062 229.679688 182.484375 229.679688 182.484375 228.058594 C 182.484375 226.4375 184.914062 226.4375 184.914062 228.058594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.375 70.910156 L 276.007812 73.746094 L 272.738281 73.746094 Z M 274.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.699219 203.777344 C 279.699219 205.398438 277.269531 205.398438 277.269531 203.777344 C 277.269531 202.15625 279.699219 202.15625 279.699219 203.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.511719 70.910156 L 238.148438 73.746094 L 234.875 73.746094 Z M 236.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.09375 249.980469 C 273.09375 251.601562 270.664062 251.601562 270.664062 249.980469 C 270.664062 248.363281 273.09375 248.363281 273.09375 249.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.382812 239.929688 C 270.382812 241.550781 267.953125 241.550781 267.953125 239.929688 C 267.953125 238.3125 270.382812 238.3125 270.382812 239.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.832031 320.34375 C 244.832031 321.964844 242.402344 321.964844 242.402344 320.34375 C 242.402344 318.722656 244.832031 318.722656 244.832031 320.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.347656 124.027344 C 182.347656 125.644531 179.917969 125.644531 179.917969 124.027344 C 179.917969 122.40625 182.347656 122.40625 182.347656 124.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.507812 273.96875 C 298.507812 275.589844 296.078125 275.589844 296.078125 273.96875 C 296.078125 272.351562 298.507812 272.351562 298.507812 273.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.015625 70.910156 L 163.652344 73.746094 L 160.382812 73.746094 Z M 162.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.589844 297.242188 C 250.589844 298.859375 248.160156 298.859375 248.160156 297.242188 C 248.160156 295.621094 250.589844 295.621094 250.589844 297.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.203125 147.03125 C 134.203125 148.652344 131.773438 148.652344 131.773438 147.03125 C 131.773438 145.414062 134.203125 145.414062 134.203125 147.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.601562 191.09375 C 150.601562 192.714844 148.171875 192.714844 148.171875 191.09375 C 148.171875 189.476562 150.601562 189.476562 150.601562 191.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.675781 294.015625 C 313.675781 295.636719 311.246094 295.636719 311.246094 294.015625 C 311.246094 292.394531 313.675781 292.394531 313.675781 294.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.710938 215.363281 C 279.710938 216.984375 277.28125 216.984375 277.28125 215.363281 C 277.28125 213.742188 279.710938 213.742188 279.710938 215.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.976562 296.515625 C 275.976562 298.136719 273.546875 298.136719 273.546875 296.515625 C 273.546875 294.894531 275.976562 294.894531 275.976562 296.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.804688 265.265625 C 216.804688 266.886719 214.371094 266.886719 214.371094 265.265625 C 214.371094 263.648438 216.804688 263.648438 216.804688 265.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.632812 272.648438 C 294.632812 274.265625 292.203125 274.265625 292.203125 272.648438 C 292.203125 271.027344 294.632812 271.027344 294.632812 272.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.078125 226.515625 C 290.078125 228.132812 287.648438 228.132812 287.648438 226.515625 C 287.648438 224.894531 290.078125 224.894531 290.078125 226.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.871094 105.183594 C 226.871094 106.804688 224.441406 106.804688 224.441406 105.183594 C 224.441406 103.5625 226.871094 103.5625 226.871094 105.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.972656 210.046875 C 244.972656 211.664062 242.542969 211.664062 242.542969 210.046875 C 242.542969 208.425781 244.972656 208.425781 244.972656 210.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.089844 210.585938 C 289.089844 212.203125 286.660156 212.203125 286.660156 210.585938 C 286.660156 208.964844 289.089844 208.964844 289.089844 210.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.886719 175.96875 C 170.886719 177.589844 168.457031 177.589844 168.457031 175.96875 C 168.457031 174.351562 170.886719 174.351562 170.886719 175.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.578125 70.910156 L 290.214844 73.746094 L 286.945312 73.746094 Z M 288.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.5625 70.910156 L 159.195312 73.746094 L 155.925781 73.746094 Z M 157.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.015625 242.796875 C 256.015625 244.414062 253.585938 244.414062 253.585938 242.796875 C 253.585938 241.175781 256.015625 241.175781 256.015625 242.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.988281 227.792969 C 300.988281 229.410156 298.558594 229.410156 298.558594 227.792969 C 298.558594 226.171875 300.988281 226.171875 300.988281 227.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.921875 283.15625 C 272.921875 284.773438 270.492188 284.773438 270.492188 283.15625 C 270.492188 281.535156 272.921875 281.535156 272.921875 283.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.738281 240.042969 C 297.738281 241.664062 295.308594 241.664062 295.308594 240.042969 C 295.308594 238.421875 297.738281 238.421875 297.738281 240.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.476562 273.070312 C 209.476562 274.691406 207.046875 274.691406 207.046875 273.070312 C 207.046875 271.449219 209.476562 271.449219 209.476562 273.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.554688 273.730469 C 283.554688 275.351562 281.125 275.351562 281.125 273.730469 C 281.125 272.109375 283.554688 272.109375 283.554688 273.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.050781 253.328125 C 254.050781 254.945312 251.621094 254.945312 251.621094 253.328125 C 251.621094 251.707031 254.050781 251.707031 254.050781 253.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.585938 257.710938 C 278.585938 259.332031 276.15625 259.332031 276.15625 257.710938 C 276.15625 256.089844 278.585938 256.089844 278.585938 257.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.046875 108.78125 C 210.046875 110.402344 207.617188 110.402344 207.617188 108.78125 C 207.617188 107.164062 210.046875 107.164062 210.046875 108.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.132812 228.578125 C 270.132812 230.195312 267.703125 230.195312 267.703125 228.578125 C 267.703125 226.957031 270.132812 226.957031 270.132812 228.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.644531 70.910156 L 254.28125 73.746094 L 251.007812 73.746094 Z M 252.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.828125 303.320312 C 256.828125 304.941406 254.398438 304.941406 254.398438 303.320312 C 254.398438 301.699219 256.828125 301.699219 256.828125 303.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 380.039062 235.023438 C 380.039062 236.644531 377.609375 236.644531 377.609375 235.023438 C 377.609375 233.40625 380.039062 233.40625 380.039062 235.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.964844 205.484375 C 274.964844 207.105469 272.535156 207.105469 272.535156 205.484375 C 272.535156 203.863281 274.964844 203.863281 274.964844 205.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.648438 278.199219 C 287.648438 279.816406 285.21875 279.816406 285.21875 278.199219 C 285.21875 276.578125 287.648438 276.578125 287.648438 278.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.726562 232.414062 C 265.726562 234.035156 263.296875 234.035156 263.296875 232.414062 C 263.296875 230.792969 265.726562 230.792969 265.726562 232.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.347656 218.777344 C 251.347656 220.398438 248.917969 220.398438 248.917969 218.777344 C 248.917969 217.15625 251.347656 217.15625 251.347656 218.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.03125 70.910156 L 151.667969 73.746094 L 148.394531 73.746094 Z M 150.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.777344 170.304688 C 258.777344 171.925781 256.34375 171.925781 256.34375 170.304688 C 256.34375 168.683594 258.777344 168.683594 258.777344 170.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.164062 207.085938 C 238.164062 208.707031 235.734375 208.707031 235.734375 207.085938 C 235.734375 205.46875 238.164062 205.46875 238.164062 207.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.863281 353.128906 C 279.863281 354.75 277.433594 354.75 277.433594 353.128906 C 277.433594 351.507812 279.863281 351.507812 279.863281 353.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.445312 236.769531 C 280.445312 238.386719 278.015625 238.386719 278.015625 236.769531 C 278.015625 235.148438 280.445312 235.148438 280.445312 236.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.820312 331.242188 C 242.820312 332.863281 240.390625 332.863281 240.390625 331.242188 C 240.390625 329.625 242.820312 329.625 242.820312 331.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.070312 137.976562 C 277.070312 139.597656 274.640625 139.597656 274.640625 137.976562 C 274.640625 136.355469 277.070312 136.355469 277.070312 137.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.117188 245.019531 C 249.117188 246.640625 246.6875 246.640625 246.6875 245.019531 C 246.6875 243.398438 249.117188 243.398438 249.117188 245.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.941406 364.144531 C 290.941406 365.765625 288.511719 365.765625 288.511719 364.144531 C 288.511719 362.523438 290.941406 362.523438 290.941406 364.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.105469 215.179688 C 286.105469 216.796875 283.675781 216.796875 283.675781 215.179688 C 283.675781 213.558594 286.105469 213.558594 286.105469 215.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.105469 70.910156 L 174.742188 73.746094 L 171.46875 73.746094 Z M 173.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.882812 201.273438 C 237.882812 202.894531 235.453125 202.894531 235.453125 201.273438 C 235.453125 199.65625 237.882812 199.65625 237.882812 201.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.328125 228.441406 C 318.328125 230.058594 315.898438 230.058594 315.898438 228.441406 C 315.898438 226.820312 318.328125 226.820312 318.328125 228.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.953125 70.910156 L 359.589844 73.746094 L 356.316406 73.746094 Z M 357.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.714844 245.375 C 258.714844 246.996094 256.285156 246.996094 256.285156 245.375 C 256.285156 243.757812 258.714844 243.757812 258.714844 245.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.550781 70.910156 L 150.183594 73.746094 L 146.914062 73.746094 Z M 148.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.699219 264.398438 C 267.699219 266.015625 265.269531 266.015625 265.269531 264.398438 C 265.269531 262.777344 267.699219 262.777344 267.699219 264.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.441406 265.824219 C 199.441406 267.445312 197.011719 267.445312 197.011719 265.824219 C 197.011719 264.207031 199.441406 264.207031 199.441406 265.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.570312 229.4375 C 270.570312 231.058594 268.140625 231.058594 268.140625 229.4375 C 268.140625 227.820312 270.570312 227.820312 270.570312 229.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.769531 180.628906 C 295.769531 182.246094 293.339844 182.246094 293.339844 180.628906 C 293.339844 179.007812 295.769531 179.007812 295.769531 180.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.875 197.28125 C 293.875 198.898438 291.445312 198.898438 291.445312 197.28125 C 291.445312 195.660156 293.875 195.660156 293.875 197.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.574219 70.910156 L 236.210938 73.746094 L 232.9375 73.746094 Z M 234.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.414062 86.882812 C 124.414062 88.5 121.984375 88.5 121.984375 86.882812 C 121.984375 85.261719 124.414062 85.261719 124.414062 86.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.519531 112.5625 C 307.519531 114.179688 305.089844 114.179688 305.089844 112.5625 C 305.089844 110.941406 307.519531 110.941406 307.519531 112.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.863281 70.910156 L 202.5 73.746094 L 199.226562 73.746094 Z M 200.863281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.035156 70.910156 L 234.671875 73.746094 L 231.398438 73.746094 Z M 233.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.109375 181.765625 C 190.109375 183.382812 187.679688 183.382812 187.679688 181.765625 C 187.679688 180.144531 190.109375 180.144531 190.109375 181.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.042969 288.765625 C 272.042969 290.386719 269.613281 290.386719 269.613281 288.765625 C 269.613281 287.148438 272.042969 287.148438 272.042969 288.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.984375 213.015625 C 229.984375 214.636719 227.554688 214.636719 227.554688 213.015625 C 227.554688 211.394531 229.984375 211.394531 229.984375 213.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.519531 308.796875 C 187.519531 310.417969 185.089844 310.417969 185.089844 308.796875 C 185.089844 307.175781 187.519531 307.175781 187.519531 308.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.722656 304.980469 C 123.722656 306.601562 121.289062 306.601562 121.289062 304.980469 C 121.289062 303.363281 123.722656 303.363281 123.722656 304.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.804688 98.78125 C 214.804688 100.398438 212.371094 100.398438 212.371094 98.78125 C 212.371094 97.160156 214.804688 97.160156 214.804688 98.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.613281 73.222656 C 143.613281 74.839844 141.183594 74.839844 141.183594 73.222656 C 141.183594 71.601562 143.613281 71.601562 143.613281 73.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.984375 203.746094 C 206.984375 205.363281 204.554688 205.363281 204.554688 203.746094 C 204.554688 202.125 206.984375 202.125 206.984375 203.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.191406 70.910156 L 260.824219 73.746094 L 257.554688 73.746094 Z M 259.191406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.222656 269.863281 C 230.222656 271.484375 227.792969 271.484375 227.792969 269.863281 C 227.792969 268.242188 230.222656 268.242188 230.222656 269.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.777344 245.023438 C 294.777344 246.644531 292.347656 246.644531 292.347656 245.023438 C 292.347656 243.402344 294.777344 243.402344 294.777344 245.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.152344 167.433594 C 253.152344 169.054688 250.722656 169.054688 250.722656 167.433594 C 250.722656 165.8125 253.152344 165.8125 253.152344 167.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.09375 280.796875 C 274.09375 282.417969 271.664062 282.417969 271.664062 280.796875 C 271.664062 279.179688 274.09375 279.179688 274.09375 280.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.550781 301.683594 C 234.550781 303.300781 232.117188 303.300781 232.117188 301.683594 C 232.117188 300.0625 234.550781 300.0625 234.550781 301.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.839844 418.691406 L 248.476562 415.855469 L 245.203125 415.855469 Z M 246.839844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.03125 323.386719 C 223.03125 325.007812 220.601562 325.007812 220.601562 323.386719 C 220.601562 321.769531 223.03125 321.769531 223.03125 323.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.652344 253.246094 C 200.652344 254.867188 198.222656 254.867188 198.222656 253.246094 C 198.222656 251.625 200.652344 251.625 200.652344 253.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.300781 206.59375 C 227.300781 208.214844 224.867188 208.214844 224.867188 206.59375 C 224.867188 204.972656 227.300781 204.972656 227.300781 206.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.539062 125.679688 C 215.539062 127.300781 213.109375 127.300781 213.109375 125.679688 C 213.109375 124.058594 215.539062 124.058594 215.539062 125.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.320312 306.097656 C 299.320312 307.714844 296.886719 307.714844 296.886719 306.097656 C 296.886719 304.476562 299.320312 304.476562 299.320312 306.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.578125 361.414062 C 235.578125 363.03125 233.148438 363.03125 233.148438 361.414062 C 233.148438 359.792969 235.578125 359.792969 235.578125 361.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.9375 157.621094 C 288.9375 159.242188 286.507812 159.242188 286.507812 157.621094 C 286.507812 156 288.9375 156 288.9375 157.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.289062 313.046875 C 303.289062 314.667969 300.859375 314.667969 300.859375 313.046875 C 300.859375 311.425781 303.289062 311.425781 303.289062 313.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.210938 128.179688 C 118.210938 129.796875 115.78125 129.796875 115.78125 128.179688 C 115.78125 126.558594 118.210938 126.558594 118.210938 128.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.703125 254.769531 C 261.703125 256.390625 259.273438 256.390625 259.273438 254.769531 C 259.273438 253.148438 261.703125 253.148438 261.703125 254.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.472656 260.585938 C 299.472656 262.207031 297.042969 262.207031 297.042969 260.585938 C 297.042969 258.96875 299.472656 258.96875 299.472656 260.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.210938 225.109375 C 291.210938 226.730469 288.78125 226.730469 288.78125 225.109375 C 288.78125 223.492188 291.210938 223.492188 291.210938 225.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.449219 105.875 C 295.449219 107.492188 293.019531 107.492188 293.019531 105.875 C 293.019531 104.253906 295.449219 104.253906 295.449219 105.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.136719 206.789062 C 222.136719 208.410156 219.707031 208.410156 219.707031 206.789062 C 219.707031 205.167969 222.136719 205.167969 222.136719 206.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.621094 182.046875 C 264.621094 183.667969 262.191406 183.667969 262.191406 182.046875 C 262.191406 180.425781 264.621094 180.425781 264.621094 182.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.796875 183.25 C 326.796875 184.871094 324.367188 184.871094 324.367188 183.25 C 324.367188 181.632812 326.796875 181.632812 326.796875 183.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.886719 70.910156 L 239.523438 73.746094 L 236.25 73.746094 Z M 237.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.542969 121.582031 C 278.542969 123.199219 276.113281 123.199219 276.113281 121.582031 C 276.113281 119.960938 278.542969 119.960938 278.542969 121.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.066406 200.121094 C 278.066406 201.742188 275.636719 201.742188 275.636719 200.121094 C 275.636719 198.5 278.066406 198.5 278.066406 200.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.703125 191.472656 C 259.703125 193.09375 257.273438 193.09375 257.273438 191.472656 C 257.273438 189.851562 259.703125 189.851562 259.703125 191.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.523438 244.289062 C 246.523438 245.90625 244.09375 245.90625 244.09375 244.289062 C 244.09375 242.667969 246.523438 242.667969 246.523438 244.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.164062 320.195312 C 263.164062 321.816406 260.734375 321.816406 260.734375 320.195312 C 260.734375 318.578125 263.164062 318.578125 263.164062 320.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.289062 418.691406 L 153.925781 415.855469 L 150.652344 415.855469 Z M 152.289062 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.816406 70.910156 L 128.453125 73.746094 L 125.183594 73.746094 Z M 126.816406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.253906 70.910156 L 234.890625 73.746094 L 231.617188 73.746094 Z M 233.253906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.726562 112.582031 C 147.726562 114.203125 145.292969 114.203125 145.292969 112.582031 C 145.292969 110.960938 147.726562 110.960938 147.726562 112.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.273438 274.464844 C 290.273438 276.085938 287.84375 276.085938 287.84375 274.464844 C 287.84375 272.84375 290.273438 272.84375 290.273438 274.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.429688 207.582031 C 244.429688 209.199219 242 209.199219 242 207.582031 C 242 205.960938 244.429688 205.960938 244.429688 207.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.546875 303.074219 C 282.546875 304.695312 280.117188 304.695312 280.117188 303.074219 C 280.117188 301.453125 282.546875 301.453125 282.546875 303.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.0625 264.820312 C 268.0625 266.441406 265.632812 266.441406 265.632812 264.820312 C 265.632812 263.199219 268.0625 263.199219 268.0625 264.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.253906 244.613281 C 315.253906 246.230469 312.824219 246.230469 312.824219 244.613281 C 312.824219 242.992188 315.253906 242.992188 315.253906 244.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.179688 70.910156 L 214.816406 73.746094 L 211.542969 73.746094 Z M 213.179688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.582031 70.910156 L 227.21875 73.746094 L 223.945312 73.746094 Z M 225.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.902344 418.691406 L 154.535156 415.855469 L 151.265625 415.855469 Z M 152.902344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.179688 160.539062 C 261.179688 162.160156 258.75 162.160156 258.75 160.539062 C 258.75 158.917969 261.179688 158.917969 261.179688 160.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.820312 418.691406 L 229.457031 415.855469 L 226.183594 415.855469 Z M 227.820312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.917969 289.675781 C 167.917969 291.296875 165.484375 291.296875 165.484375 289.675781 C 165.484375 288.054688 167.917969 288.054688 167.917969 289.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.578125 259.8125 C 232.578125 261.433594 230.148438 261.433594 230.148438 259.8125 C 230.148438 258.191406 232.578125 258.191406 232.578125 259.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.902344 70.910156 L 261.539062 73.746094 L 258.269531 73.746094 Z M 259.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.917969 147.859375 C 132.917969 149.476562 130.488281 149.476562 130.488281 147.859375 C 130.488281 146.238281 132.917969 146.238281 132.917969 147.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.3125 386.292969 C 199.3125 387.914062 196.878906 387.914062 196.878906 386.292969 C 196.878906 384.671875 199.3125 384.671875 199.3125 386.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.449219 142.316406 C 195.449219 143.9375 193.019531 143.9375 193.019531 142.316406 C 193.019531 140.695312 195.449219 140.695312 195.449219 142.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.917969 196.125 C 232.917969 197.742188 230.488281 197.742188 230.488281 196.125 C 230.488281 194.503906 232.917969 194.503906 232.917969 196.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.738281 276.882812 C 176.738281 278.503906 174.308594 278.503906 174.308594 276.882812 C 174.308594 275.265625 176.738281 275.265625 176.738281 276.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.449219 181.753906 C 238.449219 183.375 236.019531 183.375 236.019531 181.753906 C 236.019531 180.132812 238.449219 180.132812 238.449219 181.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.65625 270.460938 C 273.65625 272.082031 271.222656 272.082031 271.222656 270.460938 C 271.222656 268.84375 273.65625 268.84375 273.65625 270.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.578125 150.5 C 291.578125 152.117188 289.148438 152.117188 289.148438 150.5 C 289.148438 148.878906 291.578125 148.878906 291.578125 150.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.289062 283.425781 C 132.289062 285.046875 129.859375 285.046875 129.859375 283.425781 C 129.859375 281.804688 132.289062 281.804688 132.289062 283.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.996094 418.691406 L 286.628906 415.855469 L 283.359375 415.855469 Z M 284.996094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.445312 418.691406 L 181.078125 415.855469 L 177.808594 415.855469 Z M 179.445312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.027344 70.910156 L 138.664062 73.746094 L 135.390625 73.746094 Z M 137.027344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.585938 70.910156 L 170.222656 73.746094 L 166.949219 73.746094 Z M 168.585938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.203125 70.910156 L 158.839844 73.746094 L 155.566406 73.746094 Z M 157.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.589844 289.261719 C 207.589844 290.882812 205.160156 290.882812 205.160156 289.261719 C 205.160156 287.644531 207.589844 287.644531 207.589844 289.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.789062 285.476562 C 273.789062 287.09375 271.359375 287.09375 271.359375 285.476562 C 271.359375 283.855469 273.789062 283.855469 273.789062 285.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.636719 263.863281 C 245.636719 265.484375 243.207031 265.484375 243.207031 263.863281 C 243.207031 262.242188 245.636719 262.242188 245.636719 263.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.105469 242.945312 C 260.105469 244.566406 257.675781 244.566406 257.675781 242.945312 C 257.675781 241.324219 260.105469 241.324219 260.105469 242.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.726562 275.710938 C 251.726562 277.332031 249.296875 277.332031 249.296875 275.710938 C 249.296875 274.089844 251.726562 274.089844 251.726562 275.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.972656 70.910156 L 198.609375 73.746094 L 195.335938 73.746094 Z M 196.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.117188 105.214844 C 203.117188 106.832031 200.6875 106.832031 200.6875 105.214844 C 200.6875 103.59375 203.117188 103.59375 203.117188 105.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.433594 108.199219 C 243.433594 109.820312 241.003906 109.820312 241.003906 108.199219 C 241.003906 106.578125 243.433594 106.578125 243.433594 108.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.625 70.910156 L 141.261719 73.746094 L 137.988281 73.746094 Z M 139.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.316406 233.765625 C 283.316406 235.386719 280.886719 235.386719 280.886719 233.765625 C 280.886719 232.144531 283.316406 232.144531 283.316406 233.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.3125 70.910156 L 292.949219 73.746094 L 289.679688 73.746094 Z M 291.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.917969 70.910156 L 260.554688 73.746094 L 257.28125 73.746094 Z M 258.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.609375 189.464844 C 249.609375 191.085938 247.179688 191.085938 247.179688 189.464844 C 247.179688 187.84375 249.609375 187.84375 249.609375 189.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.960938 70.910156 L 288.59375 73.746094 L 285.324219 73.746094 Z M 286.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.902344 70.910156 L 186.539062 73.746094 L 183.265625 73.746094 Z M 184.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.386719 203.742188 C 255.386719 205.363281 252.957031 205.363281 252.957031 203.742188 C 252.957031 202.121094 255.386719 202.121094 255.386719 203.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.351562 355.410156 C 195.351562 357.03125 192.921875 357.03125 192.921875 355.410156 C 192.921875 353.789062 195.351562 353.789062 195.351562 355.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.683594 237.40625 C 294.683594 239.027344 292.253906 239.027344 292.253906 237.40625 C 292.253906 235.785156 294.683594 235.785156 294.683594 237.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.042969 129.683594 C 249.042969 131.304688 246.613281 131.304688 246.613281 129.683594 C 246.613281 128.066406 249.042969 128.066406 249.042969 129.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.703125 253.289062 C 323.703125 254.90625 321.273438 254.90625 321.273438 253.289062 C 321.273438 251.667969 323.703125 251.667969 323.703125 253.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.296875 305.113281 C 224.296875 306.734375 221.867188 306.734375 221.867188 305.113281 C 221.867188 303.492188 224.296875 303.492188 224.296875 305.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.265625 177.835938 C 285.265625 179.453125 282.835938 179.453125 282.835938 177.835938 C 282.835938 176.214844 285.265625 176.214844 285.265625 177.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.191406 131.539062 C 280.191406 133.160156 277.761719 133.160156 277.761719 131.539062 C 277.761719 129.917969 280.191406 129.917969 280.191406 131.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.394531 279.710938 C 333.394531 281.332031 330.964844 281.332031 330.964844 279.710938 C 330.964844 278.089844 333.394531 278.089844 333.394531 279.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.609375 280.082031 C 313.609375 281.703125 311.175781 281.703125 311.175781 280.082031 C 311.175781 278.460938 313.609375 278.460938 313.609375 280.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.449219 213.132812 C 271.449219 214.753906 269.019531 214.753906 269.019531 213.132812 C 269.019531 211.515625 271.449219 211.515625 271.449219 213.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.414062 272.285156 C 204.414062 273.90625 201.984375 273.90625 201.984375 272.285156 C 201.984375 270.664062 204.414062 270.664062 204.414062 272.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.28125 160.546875 C 310.28125 162.164062 307.851562 162.164062 307.851562 160.546875 C 307.851562 158.925781 310.28125 158.925781 310.28125 160.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.355469 70.910156 L 202.992188 73.746094 L 199.71875 73.746094 Z M 201.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.894531 272.453125 C 268.894531 274.074219 266.464844 274.074219 266.464844 272.453125 C 266.464844 270.832031 268.894531 270.832031 268.894531 272.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.085938 261.441406 C 320.085938 263.0625 317.65625 263.0625 317.65625 261.441406 C 317.65625 259.820312 320.085938 259.820312 320.085938 261.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.25 265.5 C 266.25 267.117188 263.820312 267.117188 263.820312 265.5 C 263.820312 263.878906 266.25 263.878906 266.25 265.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.210938 418.691406 L 246.847656 415.855469 L 243.574219 415.855469 Z M 245.210938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.824219 70.910156 L 236.460938 73.746094 L 233.1875 73.746094 Z M 234.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.996094 266.375 C 237.996094 267.996094 235.566406 267.996094 235.566406 266.375 C 235.566406 264.753906 237.996094 264.753906 237.996094 266.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.402344 259.679688 C 301.402344 261.300781 298.972656 261.300781 298.972656 259.679688 C 298.972656 258.058594 301.402344 258.058594 301.402344 259.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.460938 233.257812 C 255.460938 234.878906 253.03125 234.878906 253.03125 233.257812 C 253.03125 231.636719 255.460938 231.636719 255.460938 233.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.773438 227.292969 C 285.773438 228.914062 283.34375 228.914062 283.34375 227.292969 C 283.34375 225.671875 285.773438 225.671875 285.773438 227.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.96875 221.667969 C 252.96875 223.289062 250.539062 223.289062 250.539062 221.667969 C 250.539062 220.046875 252.96875 220.046875 252.96875 221.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.109375 70.910156 L 339.746094 73.746094 L 336.472656 73.746094 Z M 338.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.710938 374.984375 C 119.710938 376.605469 117.28125 376.605469 117.28125 374.984375 C 117.28125 373.363281 119.710938 373.363281 119.710938 374.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.835938 230.296875 C 285.835938 231.917969 283.402344 231.917969 283.402344 230.296875 C 283.402344 228.679688 285.835938 228.679688 285.835938 230.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.886719 201.195312 C 242.886719 202.8125 240.457031 202.8125 240.457031 201.195312 C 240.457031 199.574219 242.886719 199.574219 242.886719 201.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.925781 242.289062 C 277.925781 243.910156 275.496094 243.910156 275.496094 242.289062 C 275.496094 240.667969 277.925781 240.667969 277.925781 242.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.539062 193.730469 C 239.539062 195.351562 237.109375 195.351562 237.109375 193.730469 C 237.109375 192.113281 239.539062 192.113281 239.539062 193.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.21875 198.335938 C 301.21875 199.953125 298.789062 199.953125 298.789062 198.335938 C 298.789062 196.714844 301.21875 196.714844 301.21875 198.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.960938 240.746094 C 323.960938 242.367188 321.53125 242.367188 321.53125 240.746094 C 321.53125 239.128906 323.960938 239.128906 323.960938 240.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.875 144.910156 C 246.875 146.53125 244.445312 146.53125 244.445312 144.910156 C 244.445312 143.292969 246.875 143.292969 246.875 144.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.105469 85.253906 C 224.105469 86.875 221.675781 86.875 221.675781 85.253906 C 221.675781 83.636719 224.105469 83.636719 224.105469 85.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.789062 249.523438 C 292.789062 251.140625 290.359375 251.140625 290.359375 249.523438 C 290.359375 247.902344 292.789062 247.902344 292.789062 249.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.789062 70.910156 L 206.425781 73.746094 L 203.152344 73.746094 Z M 204.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.675781 285.007812 C 183.675781 286.628906 181.246094 286.628906 181.246094 285.007812 C 181.246094 283.390625 183.675781 283.390625 183.675781 285.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.351562 204.910156 C 248.351562 206.53125 245.921875 206.53125 245.921875 204.910156 C 245.921875 203.289062 248.351562 203.289062 248.351562 204.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.71875 207.0625 C 248.71875 208.683594 246.289062 208.683594 246.289062 207.0625 C 246.289062 205.445312 248.71875 205.445312 248.71875 207.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.640625 70.910156 L 203.277344 73.746094 L 200.003906 73.746094 Z M 201.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.4375 268.375 C 265.4375 269.996094 263.007812 269.996094 263.007812 268.375 C 263.007812 266.753906 265.4375 266.753906 265.4375 268.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.988281 219.902344 C 250.988281 221.523438 248.558594 221.523438 248.558594 219.902344 C 248.558594 218.28125 250.988281 218.28125 250.988281 219.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.226562 150.464844 C 297.226562 152.085938 294.796875 152.085938 294.796875 150.464844 C 294.796875 148.847656 297.226562 148.847656 297.226562 150.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.089844 70.910156 L 226.726562 73.746094 L 223.457031 73.746094 Z M 225.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.054688 192.84375 C 242.054688 194.460938 239.625 194.460938 239.625 192.84375 C 239.625 191.222656 242.054688 191.222656 242.054688 192.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.941406 201.082031 C 270.941406 202.703125 268.511719 202.703125 268.511719 201.082031 C 268.511719 199.464844 270.941406 199.464844 270.941406 201.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.679688 83.882812 C 280.679688 85.5 278.25 85.5 278.25 83.882812 C 278.25 82.261719 280.679688 82.261719 280.679688 83.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.996094 198.199219 C 259.996094 199.816406 257.566406 199.816406 257.566406 198.199219 C 257.566406 196.578125 259.996094 196.578125 259.996094 198.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.402344 129.625 C 219.402344 131.242188 216.972656 131.242188 216.972656 129.625 C 216.972656 128.003906 219.402344 128.003906 219.402344 129.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.261719 123.394531 C 197.261719 125.015625 194.832031 125.015625 194.832031 123.394531 C 194.832031 121.773438 197.261719 121.773438 197.261719 123.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.714844 169.960938 C 281.714844 171.578125 279.285156 171.578125 279.285156 169.960938 C 279.285156 168.339844 281.714844 168.339844 281.714844 169.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.074219 243.433594 C 261.074219 245.054688 258.644531 245.054688 258.644531 243.433594 C 258.644531 241.8125 261.074219 241.8125 261.074219 243.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.171875 185.335938 C 241.171875 186.957031 238.742188 186.957031 238.742188 185.335938 C 238.742188 183.71875 241.171875 183.71875 241.171875 185.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.183594 198.535156 C 320.183594 200.15625 317.75 200.15625 317.75 198.535156 C 317.75 196.914062 320.183594 196.914062 320.183594 198.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.265625 199.957031 C 248.265625 201.578125 245.835938 201.578125 245.835938 199.957031 C 245.835938 198.335938 248.265625 198.335938 248.265625 199.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.539062 70.910156 L 183.171875 73.746094 L 179.902344 73.746094 Z M 181.539062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.289062 183.257812 C 160.289062 184.878906 157.859375 184.878906 157.859375 183.257812 C 157.859375 181.640625 160.289062 181.640625 160.289062 183.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.824219 70.910156 L 159.460938 73.746094 L 156.1875 73.746094 Z M 157.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.117188 144.929688 C 255.117188 146.550781 252.6875 146.550781 252.6875 144.929688 C 252.6875 143.3125 255.117188 143.3125 255.117188 144.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.839844 191.128906 C 242.839844 192.75 240.410156 192.75 240.410156 191.128906 C 240.410156 189.511719 242.839844 189.511719 242.839844 191.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.777344 369.363281 C 133.777344 370.984375 131.347656 370.984375 131.347656 369.363281 C 131.347656 367.742188 133.777344 367.742188 133.777344 369.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.183594 224.824219 C 225.183594 226.445312 222.753906 226.445312 222.753906 224.824219 C 222.753906 223.203125 225.183594 223.203125 225.183594 224.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.402344 239.414062 C 235.402344 241.035156 232.972656 241.035156 232.972656 239.414062 C 232.972656 237.796875 235.402344 237.796875 235.402344 239.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.171875 70.910156 L 198.808594 73.746094 L 195.535156 73.746094 Z M 197.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.148438 266.761719 C 329.148438 268.382812 326.71875 268.382812 326.71875 266.761719 C 326.71875 265.144531 329.148438 265.144531 329.148438 266.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.640625 70.910156 L 218.277344 73.746094 L 215.003906 73.746094 Z M 216.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.128906 300.964844 C 327.128906 302.585938 324.699219 302.585938 324.699219 300.964844 C 324.699219 299.347656 327.128906 299.347656 327.128906 300.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.117188 291.207031 C 222.117188 292.824219 219.6875 292.824219 219.6875 291.207031 C 219.6875 289.585938 222.117188 289.585938 222.117188 291.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.144531 70.910156 L 139.78125 73.746094 L 136.507812 73.746094 Z M 138.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.789062 253.839844 C 232.789062 255.460938 230.359375 255.460938 230.359375 253.839844 C 230.359375 252.21875 232.789062 252.21875 232.789062 253.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.675781 365.878906 C 273.675781 367.5 271.242188 367.5 271.242188 365.878906 C 271.242188 364.261719 273.675781 364.261719 273.675781 365.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.007812 307.53125 C 339.007812 309.152344 336.578125 309.152344 336.578125 307.53125 C 336.578125 305.910156 339.007812 305.910156 339.007812 307.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.203125 257.496094 C 293.203125 259.117188 290.773438 259.117188 290.773438 257.496094 C 290.773438 255.875 293.203125 255.875 293.203125 257.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.273438 110.507812 C 178.273438 112.128906 175.84375 112.128906 175.84375 110.507812 C 175.84375 108.886719 178.273438 108.886719 178.273438 110.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.300781 243.195312 C 238.300781 244.8125 235.871094 244.8125 235.871094 243.195312 C 235.871094 241.574219 238.300781 241.574219 238.300781 243.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.398438 78.46875 C 267.398438 80.089844 264.96875 80.089844 264.96875 78.46875 C 264.96875 76.851562 267.398438 76.851562 267.398438 78.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.488281 286.964844 C 267.488281 288.582031 265.058594 288.582031 265.058594 286.964844 C 265.058594 285.34375 267.488281 285.34375 267.488281 286.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.484375 208.324219 C 283.484375 209.945312 281.054688 209.945312 281.054688 208.324219 C 281.054688 206.703125 283.484375 206.703125 283.484375 208.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.226562 137.050781 C 151.226562 138.671875 148.796875 138.671875 148.796875 137.050781 C 148.796875 135.433594 151.226562 135.433594 151.226562 137.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.621094 235.480469 C 255.621094 237.101562 253.191406 237.101562 253.191406 235.480469 C 253.191406 233.859375 255.621094 233.859375 255.621094 235.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.4375 256.675781 C 266.4375 258.292969 264.003906 258.292969 264.003906 256.675781 C 264.003906 255.054688 266.4375 255.054688 266.4375 256.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.902344 256.253906 C 252.902344 257.875 250.472656 257.875 250.472656 256.253906 C 250.472656 254.632812 252.902344 254.632812 252.902344 256.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.242188 222.367188 C 234.242188 223.988281 231.8125 223.988281 231.8125 222.367188 C 231.8125 220.746094 234.242188 220.746094 234.242188 222.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.695312 70.910156 L 236.332031 73.746094 L 233.058594 73.746094 Z M 234.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.683594 177.3125 C 283.683594 178.933594 281.253906 178.933594 281.253906 177.3125 C 281.253906 175.695312 283.683594 175.695312 283.683594 177.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.171875 241.265625 C 268.171875 242.882812 265.742188 242.882812 265.742188 241.265625 C 265.742188 239.644531 268.171875 239.644531 268.171875 241.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.046875 379.296875 C 273.046875 380.914062 270.617188 380.914062 270.617188 379.296875 C 270.617188 377.675781 273.046875 377.675781 273.046875 379.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.363281 106.832031 C 275.363281 108.453125 272.933594 108.453125 272.933594 106.832031 C 272.933594 105.210938 275.363281 105.210938 275.363281 106.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.398438 226.617188 C 264.398438 228.234375 261.96875 228.234375 261.96875 226.617188 C 261.96875 224.996094 264.398438 224.996094 264.398438 226.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.621094 261.839844 C 262.621094 263.457031 260.191406 263.457031 260.191406 261.839844 C 260.191406 260.21875 262.621094 260.21875 262.621094 261.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.335938 256.136719 C 282.335938 257.757812 279.90625 257.757812 279.90625 256.136719 C 279.90625 254.515625 282.335938 254.515625 282.335938 256.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.695312 224.398438 C 208.695312 226.019531 206.265625 226.019531 206.265625 224.398438 C 206.265625 222.777344 208.695312 222.777344 208.695312 224.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.695312 251.800781 C 216.695312 253.421875 214.265625 253.421875 214.265625 251.800781 C 214.265625 250.179688 216.695312 250.179688 216.695312 251.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.332031 204.472656 C 227.332031 206.09375 224.902344 206.09375 224.902344 204.472656 C 224.902344 202.851562 227.332031 202.851562 227.332031 204.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.863281 237.105469 C 283.863281 238.722656 281.433594 238.722656 281.433594 237.105469 C 281.433594 235.484375 283.863281 235.484375 283.863281 237.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.730469 103.976562 C 248.730469 105.597656 246.300781 105.597656 246.300781 103.976562 C 246.300781 102.359375 248.730469 102.359375 248.730469 103.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.46875 263.175781 C 254.46875 264.796875 252.039062 264.796875 252.039062 263.175781 C 252.039062 261.554688 254.46875 261.554688 254.46875 263.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.164062 301.976562 C 350.164062 303.597656 347.734375 303.597656 347.734375 301.976562 C 347.734375 300.355469 350.164062 300.355469 350.164062 301.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.054688 373.027344 C 214.054688 374.644531 211.625 374.644531 211.625 373.027344 C 211.625 371.40625 214.054688 371.40625 214.054688 373.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.554688 418.691406 L 285.191406 415.855469 L 281.921875 415.855469 Z M 283.554688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.828125 410.003906 C 302.828125 411.625 300.398438 411.625 300.398438 410.003906 C 300.398438 408.382812 302.828125 408.382812 302.828125 410.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.023438 329.714844 C 141.023438 331.332031 138.59375 331.332031 138.59375 329.714844 C 138.59375 328.09375 141.023438 328.09375 141.023438 329.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.210938 255.441406 C 136.210938 257.058594 133.78125 257.058594 133.78125 255.441406 C 133.78125 253.820312 136.210938 253.820312 136.210938 255.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.4375 70.910156 L 320.074219 73.746094 L 316.800781 73.746094 Z M 318.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.671875 155.480469 C 113.671875 157.097656 111.242188 157.097656 111.242188 155.480469 C 111.242188 153.859375 113.671875 153.859375 113.671875 155.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.121094 245.25 C 276.121094 246.867188 273.691406 246.867188 273.691406 245.25 C 273.691406 243.628906 276.121094 243.628906 276.121094 245.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.070312 70.910156 L 246.707031 73.746094 L 243.433594 73.746094 Z M 245.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.761719 91.628906 C 250.761719 93.246094 248.332031 93.246094 248.332031 91.628906 C 248.332031 90.007812 250.761719 90.007812 250.761719 91.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.046875 281.367188 C 295.046875 282.988281 292.617188 282.988281 292.617188 281.367188 C 292.617188 279.75 295.046875 279.75 295.046875 281.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.910156 245.386719 C 300.910156 247.003906 298.480469 247.003906 298.480469 245.386719 C 298.480469 243.765625 300.910156 243.765625 300.910156 245.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.441406 174.476562 C 251.441406 176.097656 249.011719 176.097656 249.011719 174.476562 C 249.011719 172.859375 251.441406 172.859375 251.441406 174.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.734375 165.074219 C 291.734375 166.695312 289.300781 166.695312 289.300781 165.074219 C 289.300781 163.453125 291.734375 163.453125 291.734375 165.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.0625 70.910156 L 266.699219 73.746094 L 263.425781 73.746094 Z M 265.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.957031 70.910156 L 146.59375 73.746094 L 143.320312 73.746094 Z M 144.957031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.785156 342.953125 C 251.785156 344.574219 249.355469 344.574219 249.355469 342.953125 C 249.355469 341.332031 251.785156 341.332031 251.785156 342.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.976562 224.261719 C 295.976562 225.882812 293.546875 225.882812 293.546875 224.261719 C 293.546875 222.644531 295.976562 222.644531 295.976562 224.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.488281 70.910156 L 230.121094 73.746094 L 226.851562 73.746094 Z M 228.488281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.359375 254.164062 C 326.359375 255.78125 323.925781 255.78125 323.925781 254.164062 C 323.925781 252.542969 326.359375 252.542969 326.359375 254.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.875 70.910156 L 263.511719 73.746094 L 260.238281 73.746094 Z M 261.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.867188 128.390625 C 267.867188 130.011719 265.4375 130.011719 265.4375 128.390625 C 265.4375 126.773438 267.867188 126.773438 267.867188 128.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.191406 195.015625 C 229.191406 196.636719 226.761719 196.636719 226.761719 195.015625 C 226.761719 193.394531 229.191406 193.394531 229.191406 195.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.695312 111.3125 C 222.695312 112.929688 220.261719 112.929688 220.261719 111.3125 C 220.261719 109.691406 222.695312 109.691406 222.695312 111.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.808594 113.007812 C 211.808594 114.628906 209.378906 114.628906 209.378906 113.007812 C 209.378906 111.390625 211.808594 111.390625 211.808594 113.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.089844 250.457031 C 175.089844 252.078125 172.660156 252.078125 172.660156 250.457031 C 172.660156 248.835938 175.089844 248.835938 175.089844 250.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.480469 271.058594 C 267.480469 272.679688 265.050781 272.679688 265.050781 271.058594 C 265.050781 269.4375 267.480469 269.4375 267.480469 271.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.167969 199.597656 C 277.167969 201.214844 274.738281 201.214844 274.738281 199.597656 C 274.738281 197.976562 277.167969 197.976562 277.167969 199.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.160156 238.03125 C 255.160156 239.652344 252.730469 239.652344 252.730469 238.03125 C 252.730469 236.410156 255.160156 236.410156 255.160156 238.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.007812 251.535156 C 221.007812 253.15625 218.578125 253.15625 218.578125 251.535156 C 218.578125 249.917969 221.007812 249.917969 221.007812 251.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.238281 70.910156 L 146.875 73.746094 L 143.601562 73.746094 Z M 145.238281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.40625 273.320312 C 288.40625 274.9375 285.976562 274.9375 285.976562 273.320312 C 285.976562 271.699219 288.40625 271.699219 288.40625 273.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.492188 167.925781 C 251.492188 169.546875 249.0625 169.546875 249.0625 167.925781 C 249.0625 166.308594 251.492188 166.308594 251.492188 167.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.414062 319.382812 C 283.414062 321.003906 280.984375 321.003906 280.984375 319.382812 C 280.984375 317.765625 283.414062 317.765625 283.414062 319.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.625 141.152344 C 266.625 142.773438 264.195312 142.773438 264.195312 141.152344 C 264.195312 139.535156 266.625 139.535156 266.625 141.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.054688 335.011719 C 181.054688 336.632812 178.625 336.632812 178.625 335.011719 C 178.625 333.394531 181.054688 333.394531 181.054688 335.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.070312 275.007812 C 286.070312 276.625 283.640625 276.625 283.640625 275.007812 C 283.640625 273.386719 286.070312 273.386719 286.070312 275.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.929688 256.398438 C 268.929688 258.019531 266.5 258.019531 266.5 256.398438 C 266.5 254.777344 268.929688 254.777344 268.929688 256.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.347656 257.761719 C 249.347656 259.382812 246.917969 259.382812 246.917969 257.761719 C 246.917969 256.140625 249.347656 256.140625 249.347656 257.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.625 418.691406 L 310.257812 415.855469 L 306.988281 415.855469 Z M 308.625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.785156 178.402344 C 308.785156 180.023438 306.355469 180.023438 306.355469 178.402344 C 306.355469 176.78125 308.785156 176.78125 308.785156 178.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.757812 335.25 C 218.757812 336.867188 216.328125 336.867188 216.328125 335.25 C 216.328125 333.628906 218.757812 333.628906 218.757812 335.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.515625 299.992188 C 260.515625 301.609375 258.082031 301.609375 258.082031 299.992188 C 258.082031 298.371094 260.515625 298.371094 260.515625 299.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.914062 248.394531 C 271.914062 250.015625 269.484375 250.015625 269.484375 248.394531 C 269.484375 246.777344 271.914062 246.777344 271.914062 248.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.664062 95.726562 C 277.664062 97.347656 275.234375 97.347656 275.234375 95.726562 C 275.234375 94.105469 277.664062 94.105469 277.664062 95.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.066406 277.15625 C 265.066406 278.777344 262.636719 278.777344 262.636719 277.15625 C 262.636719 275.535156 265.066406 275.535156 265.066406 277.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.316406 418.691406 L 294.953125 415.855469 L 291.679688 415.855469 Z M 293.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.855469 226.976562 C 198.855469 228.597656 196.425781 228.597656 196.425781 226.976562 C 196.425781 225.355469 198.855469 225.355469 198.855469 226.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.191406 255.441406 C 319.191406 257.058594 316.761719 257.058594 316.761719 255.441406 C 316.761719 253.820312 319.191406 253.820312 319.191406 255.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 405.792969 193.699219 C 405.792969 195.320312 403.363281 195.320312 403.363281 193.699219 C 403.363281 192.082031 405.792969 192.082031 405.792969 193.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.9375 276.753906 C 248.9375 278.375 246.503906 278.375 246.503906 276.753906 C 246.503906 275.132812 248.9375 275.132812 248.9375 276.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.230469 317.445312 C 189.230469 319.066406 186.800781 319.066406 186.800781 317.445312 C 186.800781 315.828125 189.230469 315.828125 189.230469 317.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.738281 340.398438 C 148.738281 342.019531 146.308594 342.019531 146.308594 340.398438 C 146.308594 338.777344 148.738281 338.777344 148.738281 340.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.144531 182.550781 C 205.144531 184.171875 202.714844 184.171875 202.714844 182.550781 C 202.714844 180.929688 205.144531 180.929688 205.144531 182.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.800781 274.898438 C 300.800781 276.519531 298.371094 276.519531 298.371094 274.898438 C 298.371094 273.277344 300.800781 273.277344 300.800781 274.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.339844 228.1875 C 268.339844 229.804688 265.910156 229.804688 265.910156 228.1875 C 265.910156 226.566406 268.339844 226.566406 268.339844 228.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.042969 230.675781 C 247.042969 232.296875 244.613281 232.296875 244.613281 230.675781 C 244.613281 229.054688 247.042969 229.054688 247.042969 230.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.105469 229.074219 C 223.105469 230.695312 220.675781 230.695312 220.675781 229.074219 C 220.675781 227.453125 223.105469 227.453125 223.105469 229.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.378906 267.820312 C 285.378906 269.441406 282.949219 269.441406 282.949219 267.820312 C 282.949219 266.199219 285.378906 266.199219 285.378906 267.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.554688 242.5 C 194.554688 244.121094 192.125 244.121094 192.125 242.5 C 192.125 240.878906 194.554688 240.878906 194.554688 242.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.183594 70.910156 L 229.820312 73.746094 L 226.546875 73.746094 Z M 228.183594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.734375 70.910156 L 214.371094 73.746094 L 211.097656 73.746094 Z M 212.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.957031 149.566406 C 168.957031 151.1875 166.527344 151.1875 166.527344 149.566406 C 166.527344 147.945312 168.957031 147.945312 168.957031 149.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.933594 353.335938 C 306.933594 354.957031 304.5 354.957031 304.5 353.335938 C 304.5 351.714844 306.933594 351.714844 306.933594 353.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.945312 418.691406 L 311.582031 415.855469 L 308.308594 415.855469 Z M 309.945312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.675781 157.660156 C 197.675781 159.28125 195.246094 159.28125 195.246094 157.660156 C 195.246094 156.042969 197.675781 156.042969 197.675781 157.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.507812 364.800781 C 134.507812 366.421875 132.078125 366.421875 132.078125 364.800781 C 132.078125 363.183594 134.507812 363.183594 134.507812 364.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.566406 203.980469 C 191.566406 205.597656 189.136719 205.597656 189.136719 203.980469 C 189.136719 202.359375 191.566406 202.359375 191.566406 203.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.414062 301.640625 C 282.414062 303.261719 279.984375 303.261719 279.984375 301.640625 C 279.984375 300.023438 282.414062 300.023438 282.414062 301.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.523438 70.910156 L 160.160156 73.746094 L 156.886719 73.746094 Z M 158.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.027344 216.195312 C 182.027344 217.816406 179.597656 217.816406 179.597656 216.195312 C 179.597656 214.574219 182.027344 214.574219 182.027344 216.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.40625 250.539062 C 261.40625 252.160156 258.972656 252.160156 258.972656 250.539062 C 258.972656 248.917969 261.40625 248.917969 261.40625 250.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.996094 231.09375 C 276.996094 232.714844 274.566406 232.714844 274.566406 231.09375 C 274.566406 229.472656 276.996094 229.472656 276.996094 231.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.992188 241.738281 C 242.992188 243.355469 240.5625 243.355469 240.5625 241.738281 C 240.5625 240.117188 242.992188 240.117188 242.992188 241.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.425781 319.761719 C 304.425781 321.382812 301.996094 321.382812 301.996094 319.761719 C 301.996094 318.144531 304.425781 318.144531 304.425781 319.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 364.304688 246.625 C 364.304688 248.246094 361.875 248.246094 361.875 246.625 C 361.875 245.007812 364.304688 245.007812 364.304688 246.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.78125 222.101562 C 260.78125 223.71875 258.347656 223.71875 258.347656 222.101562 C 258.347656 220.480469 260.78125 220.480469 260.78125 222.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.589844 245.222656 C 213.589844 246.839844 211.160156 246.839844 211.160156 245.222656 C 211.160156 243.601562 213.589844 243.601562 213.589844 245.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.25 131.125 C 169.25 132.746094 166.820312 132.746094 166.820312 131.125 C 166.820312 129.507812 169.25 129.507812 169.25 131.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 361.453125 308.46875 C 361.453125 310.085938 359.023438 310.085938 359.023438 308.46875 C 359.023438 306.847656 361.453125 306.847656 361.453125 308.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.515625 246.433594 C 267.515625 248.054688 265.085938 248.054688 265.085938 246.433594 C 265.085938 244.816406 267.515625 244.816406 267.515625 246.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.429688 387.601562 C 191.429688 389.21875 188.996094 389.21875 188.996094 387.601562 C 188.996094 385.980469 191.429688 385.980469 191.429688 387.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.742188 173.636719 C 249.742188 175.257812 247.3125 175.257812 247.3125 173.636719 C 247.3125 172.019531 249.742188 172.019531 249.742188 173.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.585938 70.910156 L 236.222656 73.746094 L 232.953125 73.746094 Z M 234.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.886719 233.5 C 257.886719 235.117188 255.453125 235.117188 255.453125 233.5 C 255.453125 231.878906 257.886719 231.878906 257.886719 233.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 185.777344 86.296875 C 185.777344 87.917969 183.347656 87.917969 183.347656 86.296875 C 183.347656 84.675781 185.777344 84.675781 185.777344 86.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.976562 168.046875 C 283.976562 169.667969 281.542969 169.667969 281.542969 168.046875 C 281.542969 166.429688 283.976562 166.429688 283.976562 168.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.371094 418.691406 L 204.003906 415.855469 L 200.734375 415.855469 Z M 202.371094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.246094 332.71875 C 140.246094 334.339844 137.816406 334.339844 137.816406 332.71875 C 137.816406 331.101562 140.246094 331.101562 140.246094 332.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.792969 170.355469 C 127.792969 171.976562 125.363281 171.976562 125.363281 170.355469 C 125.363281 168.734375 127.792969 168.734375 127.792969 170.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.214844 107.332031 C 287.214844 108.953125 284.785156 108.953125 284.785156 107.332031 C 284.785156 105.714844 287.214844 105.714844 287.214844 107.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.152344 119.1875 C 273.152344 120.808594 270.722656 120.808594 270.722656 119.1875 C 270.722656 117.566406 273.152344 117.566406 273.152344 119.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.210938 109.433594 C 303.210938 111.054688 300.78125 111.054688 300.78125 109.433594 C 300.78125 107.8125 303.210938 107.8125 303.210938 109.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.09375 268.832031 C 254.09375 270.453125 251.664062 270.453125 251.664062 268.832031 C 251.664062 267.214844 254.09375 267.214844 254.09375 268.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.460938 243.339844 C 295.460938 244.960938 293.03125 244.960938 293.03125 243.339844 C 293.03125 241.71875 295.460938 241.71875 295.460938 243.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.960938 219.910156 C 248.960938 221.527344 246.53125 221.527344 246.53125 219.910156 C 246.53125 218.289062 248.960938 218.289062 248.960938 219.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.132812 231.238281 C 246.132812 232.859375 243.703125 232.859375 243.703125 231.238281 C 243.703125 229.621094 246.132812 229.621094 246.132812 231.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.425781 228.796875 C 282.425781 230.414062 279.996094 230.414062 279.996094 228.796875 C 279.996094 227.175781 282.425781 227.175781 282.425781 228.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.558594 235.6875 C 235.558594 237.308594 233.128906 237.308594 233.128906 235.6875 C 233.128906 234.066406 235.558594 234.066406 235.558594 235.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.855469 199.609375 C 250.855469 201.230469 248.425781 201.230469 248.425781 199.609375 C 248.425781 197.988281 250.855469 197.988281 250.855469 199.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.269531 217.015625 C 228.269531 218.632812 225.839844 218.632812 225.839844 217.015625 C 225.839844 215.394531 228.269531 215.394531 228.269531 217.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.480469 311.203125 C 306.480469 312.820312 304.050781 312.820312 304.050781 311.203125 C 304.050781 309.582031 306.480469 309.582031 306.480469 311.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.789062 225.578125 C 307.789062 227.195312 305.359375 227.195312 305.359375 225.578125 C 305.359375 223.957031 307.789062 223.957031 307.789062 225.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.800781 232.589844 C 250.800781 234.210938 248.367188 234.210938 248.367188 232.589844 C 248.367188 230.96875 250.800781 230.96875 250.800781 232.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.078125 170.984375 C 247.078125 172.605469 244.648438 172.605469 244.648438 170.984375 C 244.648438 169.367188 247.078125 169.367188 247.078125 170.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.339844 70.910156 L 199.976562 73.746094 L 196.703125 73.746094 Z M 198.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.628906 168.625 C 319.628906 170.242188 317.199219 170.242188 317.199219 168.625 C 317.199219 167.003906 319.628906 167.003906 319.628906 168.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.070312 201.589844 C 297.070312 203.210938 294.640625 203.210938 294.640625 201.589844 C 294.640625 199.96875 297.070312 199.96875 297.070312 201.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.644531 117.796875 C 235.644531 119.417969 233.214844 119.417969 233.214844 117.796875 C 233.214844 116.179688 235.644531 116.179688 235.644531 117.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.621094 70.910156 L 148.257812 73.746094 L 144.984375 73.746094 Z M 146.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.550781 203 C 286.550781 204.617188 284.121094 204.617188 284.121094 203 C 284.121094 201.378906 286.550781 201.378906 286.550781 203 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.695312 240.113281 C 294.695312 241.734375 292.265625 241.734375 292.265625 240.113281 C 292.265625 238.492188 294.695312 238.492188 294.695312 240.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.308594 111.6875 C 204.308594 113.308594 201.878906 113.308594 201.878906 111.6875 C 201.878906 110.066406 204.308594 110.066406 204.308594 111.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.289062 70.910156 L 233.925781 73.746094 L 230.652344 73.746094 Z M 232.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.625 258.277344 C 310.625 259.898438 308.195312 259.898438 308.195312 258.277344 C 308.195312 256.65625 310.625 256.65625 310.625 258.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.351562 232.867188 C 290.351562 234.484375 287.921875 234.484375 287.921875 232.867188 C 287.921875 231.246094 290.351562 231.246094 290.351562 232.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.132812 73.097656 C 283.132812 74.71875 280.703125 74.71875 280.703125 73.097656 C 280.703125 71.476562 283.132812 71.476562 283.132812 73.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.871094 153.25 C 224.871094 154.867188 222.441406 154.867188 222.441406 153.25 C 222.441406 151.628906 224.871094 151.628906 224.871094 153.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.507812 244.386719 C 332.507812 246.007812 330.078125 246.007812 330.078125 244.386719 C 330.078125 242.765625 332.507812 242.765625 332.507812 244.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.625 244.738281 C 326.625 246.355469 324.191406 246.355469 324.191406 244.738281 C 324.191406 243.117188 326.625 243.117188 326.625 244.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.128906 269.015625 C 250.128906 270.636719 247.695312 270.636719 247.695312 269.015625 C 247.695312 267.394531 250.128906 267.394531 250.128906 269.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.542969 225.292969 C 219.542969 226.910156 217.113281 226.910156 217.113281 225.292969 C 217.113281 223.671875 219.542969 223.671875 219.542969 225.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.242188 275.535156 C 161.242188 277.152344 158.8125 277.152344 158.8125 275.535156 C 158.8125 273.914062 161.242188 273.914062 161.242188 275.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.910156 257.210938 C 267.910156 258.832031 265.480469 258.832031 265.480469 257.210938 C 265.480469 255.589844 267.910156 255.589844 267.910156 257.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.773438 316.152344 C 303.773438 317.773438 301.34375 317.773438 301.34375 316.152344 C 301.34375 314.535156 303.773438 314.535156 303.773438 316.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.644531 264.957031 C 319.644531 266.578125 317.214844 266.578125 317.214844 264.957031 C 317.214844 263.335938 319.644531 263.335938 319.644531 264.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.015625 225.132812 C 215.015625 226.75 212.585938 226.75 212.585938 225.132812 C 212.585938 223.511719 215.015625 223.511719 215.015625 225.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.179688 418.691406 L 320.816406 415.855469 L 317.542969 415.855469 Z M 319.179688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.753906 165.945312 C 142.753906 167.566406 140.324219 167.566406 140.324219 165.945312 C 140.324219 164.324219 142.753906 164.324219 142.753906 165.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.78125 263.089844 C 277.78125 264.710938 275.351562 264.710938 275.351562 263.089844 C 275.351562 261.472656 277.78125 261.472656 277.78125 263.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.160156 418.691406 L 130.796875 415.855469 L 127.523438 415.855469 Z M 129.160156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.699219 213.75 C 231.699219 215.371094 229.269531 215.371094 229.269531 213.75 C 229.269531 212.128906 231.699219 212.128906 231.699219 213.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 459.613281 244.175781 C 459.613281 245.796875 457.183594 245.796875 457.183594 244.175781 C 457.183594 242.558594 459.613281 242.558594 459.613281 244.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.269531 236.65625 C 311.269531 238.273438 308.839844 238.273438 308.839844 236.65625 C 308.839844 235.035156 311.269531 235.035156 311.269531 236.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 380.164062 70.910156 L 381.800781 73.746094 L 378.527344 73.746094 Z M 380.164062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 389.621094 70.910156 L 391.257812 73.746094 L 387.984375 73.746094 Z M 389.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 422.433594 170.171875 C 422.433594 171.792969 420.003906 171.792969 420.003906 170.171875 C 420.003906 168.554688 422.433594 168.554688 422.433594 170.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.960938 272.539062 C 315.960938 274.160156 313.53125 274.160156 313.53125 272.539062 C 313.53125 270.917969 315.960938 270.917969 315.960938 272.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.542969 274.753906 C 280.542969 276.375 278.113281 276.375 278.113281 274.753906 C 278.113281 273.132812 280.542969 273.132812 280.542969 274.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.03125 285.804688 C 292.03125 287.425781 289.601562 287.425781 289.601562 285.804688 C 289.601562 284.183594 292.03125 284.183594 292.03125 285.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.703125 207.570312 C 226.703125 209.191406 224.273438 209.191406 224.273438 207.570312 C 224.273438 205.953125 226.703125 205.953125 226.703125 207.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.453125 235.417969 C 215.453125 237.039062 213.023438 237.039062 213.023438 235.417969 C 213.023438 233.800781 215.453125 233.800781 215.453125 235.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.933594 248.351562 C 334.933594 249.972656 332.503906 249.972656 332.503906 248.351562 C 332.503906 246.730469 334.933594 246.730469 334.933594 248.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.027344 70.910156 L 246.664062 73.746094 L 243.390625 73.746094 Z M 245.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.792969 283.074219 C 247.792969 284.695312 245.363281 284.695312 245.363281 283.074219 C 245.363281 281.453125 247.792969 281.453125 247.792969 283.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.121094 159.84375 C 217.121094 161.464844 214.6875 161.464844 214.6875 159.84375 C 214.6875 158.226562 217.121094 158.226562 217.121094 159.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.882812 113.476562 C 261.882812 115.097656 259.453125 115.097656 259.453125 113.476562 C 259.453125 111.859375 261.882812 111.859375 261.882812 113.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.449219 230.109375 C 259.449219 231.730469 257.019531 231.730469 257.019531 230.109375 C 257.019531 228.488281 259.449219 228.488281 259.449219 230.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.773438 88.765625 C 235.773438 90.382812 233.34375 90.382812 233.34375 88.765625 C 233.34375 87.144531 235.773438 87.144531 235.773438 88.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.679688 116.570312 C 119.679688 118.1875 117.25 118.1875 117.25 116.570312 C 117.25 114.949219 119.679688 114.949219 119.679688 116.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.40625 305.203125 C 263.40625 306.820312 260.976562 306.820312 260.976562 305.203125 C 260.976562 303.582031 263.40625 303.582031 263.40625 305.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.238281 236.164062 C 329.238281 237.785156 326.808594 237.785156 326.808594 236.164062 C 326.808594 234.542969 329.238281 234.542969 329.238281 236.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.28125 70.910156 L 208.917969 73.746094 L 205.644531 73.746094 Z M 207.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.976562 345.761719 C 309.976562 347.382812 307.546875 347.382812 307.546875 345.761719 C 307.546875 344.144531 309.976562 344.144531 309.976562 345.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.019531 232.191406 C 264.019531 233.8125 261.589844 233.8125 261.589844 232.191406 C 261.589844 230.574219 264.019531 230.574219 264.019531 232.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.21875 70.910156 L 187.851562 73.746094 L 184.582031 73.746094 Z M 186.21875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.480469 70.910156 L 207.117188 73.746094 L 203.84375 73.746094 Z M 205.480469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.96875 70.910156 L 191.605469 73.746094 L 188.332031 73.746094 Z M 189.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.351562 281.535156 C 168.351562 283.152344 165.921875 283.152344 165.921875 281.535156 C 165.921875 279.914062 168.351562 279.914062 168.351562 281.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.855469 212.117188 C 235.855469 213.738281 233.425781 213.738281 233.425781 212.117188 C 233.425781 210.496094 235.855469 210.496094 235.855469 212.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.96875 273.359375 C 287.96875 274.976562 285.539062 274.976562 285.539062 273.359375 C 285.539062 271.738281 287.96875 271.738281 287.96875 273.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.523438 70.910156 L 155.160156 73.746094 L 151.886719 73.746094 Z M 153.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.292969 201.902344 C 302.292969 203.523438 299.863281 203.523438 299.863281 201.902344 C 299.863281 200.28125 302.292969 200.28125 302.292969 201.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.6875 267.664062 C 216.6875 269.28125 214.257812 269.28125 214.257812 267.664062 C 214.257812 266.042969 216.6875 266.042969 216.6875 267.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.773438 70.910156 L 154.410156 73.746094 L 151.136719 73.746094 Z M 152.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.964844 227.140625 C 331.964844 228.761719 329.53125 228.761719 329.53125 227.140625 C 329.53125 225.519531 331.964844 225.519531 331.964844 227.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.617188 295.8125 C 275.617188 297.433594 273.1875 297.433594 273.1875 295.8125 C 273.1875 294.191406 275.617188 294.191406 275.617188 295.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.265625 307.632812 C 265.265625 309.25 262.835938 309.25 262.835938 307.632812 C 262.835938 306.011719 265.265625 306.011719 265.265625 307.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.476562 380.0625 C 118.476562 381.683594 116.046875 381.683594 116.046875 380.0625 C 116.046875 378.441406 118.476562 378.441406 118.476562 380.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.757812 217.105469 C 280.757812 218.722656 278.328125 218.722656 278.328125 217.105469 C 278.328125 215.484375 280.757812 215.484375 280.757812 217.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.015625 173.515625 C 231.015625 175.132812 228.582031 175.132812 228.582031 173.515625 C 228.582031 171.894531 231.015625 171.894531 231.015625 173.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.128906 205.550781 C 234.128906 207.171875 231.699219 207.171875 231.699219 205.550781 C 231.699219 203.933594 234.128906 203.933594 234.128906 205.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.195312 319.015625 C 319.195312 320.636719 316.765625 320.636719 316.765625 319.015625 C 316.765625 317.398438 319.195312 317.398438 319.195312 319.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.269531 264.667969 C 188.269531 266.289062 185.839844 266.289062 185.839844 264.667969 C 185.839844 263.050781 188.269531 263.050781 188.269531 264.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.691406 70.910156 L 155.328125 73.746094 L 152.054688 73.746094 Z M 153.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.207031 299.941406 C 285.207031 301.558594 282.777344 301.558594 282.777344 299.941406 C 282.777344 298.320312 285.207031 298.320312 285.207031 299.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.773438 263.882812 C 209.773438 265.503906 207.34375 265.503906 207.34375 263.882812 C 207.34375 262.261719 209.773438 262.261719 209.773438 263.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.9375 418.691406 L 208.574219 415.855469 L 205.300781 415.855469 Z M 206.9375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.59375 70.910156 L 185.230469 73.746094 L 181.957031 73.746094 Z M 183.59375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.371094 70.910156 L 263.007812 73.746094 L 259.738281 73.746094 Z M 261.371094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.273438 70.910156 L 136.910156 73.746094 L 133.636719 73.746094 Z M 135.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.757812 286.503906 C 276.757812 288.125 274.328125 288.125 274.328125 286.503906 C 274.328125 284.882812 276.757812 284.882812 276.757812 286.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.546875 158.882812 C 234.546875 160.5 232.117188 160.5 232.117188 158.882812 C 232.117188 157.261719 234.546875 157.261719 234.546875 158.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.660156 179.222656 C 236.660156 180.84375 234.230469 180.84375 234.230469 179.222656 C 234.230469 177.605469 236.660156 177.605469 236.660156 179.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.375 70.910156 L 196.011719 73.746094 L 192.738281 73.746094 Z M 194.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.0625 189.242188 C 261.0625 190.859375 258.632812 190.859375 258.632812 189.242188 C 258.632812 187.621094 261.0625 187.621094 261.0625 189.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.734375 70.910156 L 140.371094 73.746094 L 137.101562 73.746094 Z M 138.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.925781 70.910156 L 292.558594 73.746094 L 289.289062 73.746094 Z M 290.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.382812 288.167969 C 288.382812 289.789062 285.953125 289.789062 285.953125 288.167969 C 285.953125 286.550781 288.382812 286.550781 288.382812 288.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.609375 418.691406 L 140.246094 415.855469 L 136.972656 415.855469 Z M 138.609375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.410156 418.691406 L 276.046875 415.855469 L 272.773438 415.855469 Z M 274.410156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.378906 313.988281 C 255.378906 315.609375 252.949219 315.609375 252.949219 313.988281 C 252.949219 312.371094 255.378906 312.371094 255.378906 313.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.457031 270.417969 C 254.457031 272.035156 252.027344 272.035156 252.027344 270.417969 C 252.027344 268.796875 254.457031 268.796875 254.457031 270.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.886719 204.128906 C 251.886719 205.746094 249.457031 205.746094 249.457031 204.128906 C 249.457031 202.507812 251.886719 202.507812 251.886719 204.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.761719 374.5 C 341.761719 376.121094 339.332031 376.121094 339.332031 374.5 C 339.332031 372.882812 341.761719 372.882812 341.761719 374.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.425781 323.617188 C 206.425781 325.238281 203.996094 325.238281 203.996094 323.617188 C 203.996094 322 206.425781 322 206.425781 323.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.761719 204.675781 C 323.761719 206.296875 321.332031 206.296875 321.332031 204.675781 C 321.332031 203.058594 323.761719 203.058594 323.761719 204.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.351562 70.910156 L 256.988281 73.746094 L 253.714844 73.746094 Z M 255.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.871094 246.914062 C 266.871094 248.53125 264.441406 248.53125 264.441406 246.914062 C 264.441406 245.292969 266.871094 245.292969 266.871094 246.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.722656 263.082031 C 233.722656 264.703125 231.292969 264.703125 231.292969 263.082031 C 231.292969 261.460938 233.722656 261.460938 233.722656 263.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.023438 195.636719 C 126.023438 197.257812 123.59375 197.257812 123.59375 195.636719 C 123.59375 194.015625 126.023438 194.015625 126.023438 195.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.3125 155.050781 C 242.3125 156.667969 239.882812 156.667969 239.882812 155.050781 C 239.882812 153.429688 242.3125 153.429688 242.3125 155.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.429688 100.453125 C 267.429688 102.074219 265 102.074219 265 100.453125 C 265 98.832031 267.429688 98.832031 267.429688 100.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.941406 339.421875 C 271.941406 341.039062 269.511719 341.039062 269.511719 339.421875 C 269.511719 337.800781 271.941406 337.800781 271.941406 339.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.785156 225.539062 C 312.785156 227.160156 310.355469 227.160156 310.355469 225.539062 C 310.355469 223.917969 312.785156 223.917969 312.785156 225.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.777344 283.59375 C 232.777344 285.214844 230.347656 285.214844 230.347656 283.59375 C 230.347656 281.972656 232.777344 281.972656 232.777344 283.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.25 284.378906 C 236.25 285.996094 233.820312 285.996094 233.820312 284.378906 C 233.820312 282.757812 236.25 282.757812 236.25 284.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.675781 300.359375 C 177.675781 301.980469 175.246094 301.980469 175.246094 300.359375 C 175.246094 298.738281 177.675781 298.738281 177.675781 300.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.207031 228.289062 C 254.207031 229.90625 251.777344 229.90625 251.777344 228.289062 C 251.777344 226.667969 254.207031 226.667969 254.207031 228.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.765625 336.089844 C 139.765625 337.710938 137.335938 337.710938 137.335938 336.089844 C 137.335938 334.46875 139.765625 334.46875 139.765625 336.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.105469 101.421875 C 292.105469 103.042969 289.675781 103.042969 289.675781 101.421875 C 289.675781 99.800781 292.105469 99.800781 292.105469 101.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.882812 70.910156 L 130.519531 73.746094 L 127.246094 73.746094 Z M 128.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.363281 278.992188 C 304.363281 280.613281 301.933594 280.613281 301.933594 278.992188 C 301.933594 277.371094 304.363281 277.371094 304.363281 278.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.652344 272.0625 C 184.652344 273.683594 182.222656 273.683594 182.222656 272.0625 C 182.222656 270.445312 184.652344 270.445312 184.652344 272.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.753906 372.738281 C 251.753906 374.355469 249.324219 374.355469 249.324219 372.738281 C 249.324219 371.117188 251.753906 371.117188 251.753906 372.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.984375 278.503906 C 284.984375 280.125 282.554688 280.125 282.554688 278.503906 C 282.554688 276.882812 284.984375 276.882812 284.984375 278.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.160156 176.875 C 242.160156 178.496094 239.730469 178.496094 239.730469 176.875 C 239.730469 175.253906 242.160156 175.253906 242.160156 176.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.351562 228.402344 C 216.351562 230.023438 213.921875 230.023438 213.921875 228.402344 C 213.921875 226.78125 216.351562 226.78125 216.351562 228.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.714844 262.203125 C 271.714844 263.824219 269.285156 263.824219 269.285156 262.203125 C 269.285156 260.585938 271.714844 260.585938 271.714844 262.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.648438 273.683594 C 311.648438 275.304688 309.21875 275.304688 309.21875 273.683594 C 309.21875 272.066406 311.648438 272.066406 311.648438 273.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.328125 193.957031 C 296.328125 195.578125 293.898438 195.578125 293.898438 193.957031 C 293.898438 192.335938 296.328125 192.335938 296.328125 193.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.550781 256.035156 C 265.550781 257.65625 263.121094 257.65625 263.121094 256.035156 C 263.121094 254.414062 265.550781 254.414062 265.550781 256.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.472656 70.910156 L 147.105469 73.746094 L 143.835938 73.746094 Z M 145.472656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.800781 349.75 C 310.800781 351.371094 308.371094 351.371094 308.371094 349.75 C 308.371094 348.128906 310.800781 348.128906 310.800781 349.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.390625 197.707031 C 245.390625 199.328125 242.960938 199.328125 242.960938 197.707031 C 242.960938 196.085938 245.390625 196.085938 245.390625 197.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.160156 319.234375 C 289.160156 320.855469 286.730469 320.855469 286.730469 319.234375 C 286.730469 317.617188 289.160156 317.617188 289.160156 319.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.207031 109.238281 C 197.207031 110.855469 194.777344 110.855469 194.777344 109.238281 C 194.777344 107.617188 197.207031 107.617188 197.207031 109.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.710938 381.867188 C 199.710938 383.484375 197.28125 383.484375 197.28125 381.867188 C 197.28125 380.246094 199.710938 380.246094 199.710938 381.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.015625 70.910156 L 160.652344 73.746094 L 157.378906 73.746094 Z M 159.015625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.230469 70.910156 L 128.867188 73.746094 L 125.59375 73.746094 Z M 127.230469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.617188 70.910156 L 217.25 73.746094 L 213.980469 73.746094 Z M 215.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.957031 255.113281 C 296.957031 256.730469 294.527344 256.730469 294.527344 255.113281 C 294.527344 253.492188 296.957031 253.492188 296.957031 255.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.1875 290.285156 C 258.1875 291.902344 255.757812 291.902344 255.757812 290.285156 C 255.757812 288.664062 258.1875 288.664062 258.1875 290.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.867188 70.910156 L 146.5 73.746094 L 143.230469 73.746094 Z M 144.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.609375 70.910156 L 254.246094 73.746094 L 250.972656 73.746094 Z M 252.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.421875 123.628906 C 265.421875 125.246094 262.992188 125.246094 262.992188 123.628906 C 262.992188 122.007812 265.421875 122.007812 265.421875 123.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.070312 247.082031 C 286.070312 248.699219 283.640625 248.699219 283.640625 247.082031 C 283.640625 245.460938 286.070312 245.460938 286.070312 247.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.828125 100.054688 C 249.828125 101.675781 247.398438 101.675781 247.398438 100.054688 C 247.398438 98.433594 249.828125 98.433594 249.828125 100.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.078125 259.820312 C 239.078125 261.441406 236.648438 261.441406 236.648438 259.820312 C 236.648438 258.203125 239.078125 258.203125 239.078125 259.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.664062 190.679688 C 254.664062 192.300781 252.234375 192.300781 252.234375 190.679688 C 252.234375 189.058594 254.664062 189.058594 254.664062 190.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.351562 173.464844 C 176.351562 175.085938 173.921875 175.085938 173.921875 173.464844 C 173.921875 171.84375 176.351562 171.84375 176.351562 173.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.679688 70.910156 L 249.316406 73.746094 L 246.042969 73.746094 Z M 247.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.15625 212.28125 C 350.15625 213.902344 347.726562 213.902344 347.726562 212.28125 C 347.726562 210.660156 350.15625 210.660156 350.15625 212.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.96875 255.660156 C 245.96875 257.277344 243.539062 257.277344 243.539062 255.660156 C 243.539062 254.039062 245.96875 254.039062 245.96875 255.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.921875 280.765625 C 327.921875 282.382812 325.492188 282.382812 325.492188 280.765625 C 325.492188 279.144531 327.921875 279.144531 327.921875 280.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.886719 277.914062 C 248.886719 279.535156 246.457031 279.535156 246.457031 277.914062 C 246.457031 276.296875 248.886719 276.296875 248.886719 277.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.691406 384.109375 C 300.691406 385.730469 298.261719 385.730469 298.261719 384.109375 C 298.261719 382.488281 300.691406 382.488281 300.691406 384.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.8125 359.074219 C 295.8125 360.695312 293.382812 360.695312 293.382812 359.074219 C 293.382812 357.453125 295.8125 357.453125 295.8125 359.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.765625 191.6875 C 286.765625 193.308594 284.335938 193.308594 284.335938 191.6875 C 284.335938 190.070312 286.765625 190.070312 286.765625 191.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.34375 70.910156 L 214.980469 73.746094 L 211.707031 73.746094 Z M 213.34375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.925781 70.910156 L 176.5625 73.746094 L 173.289062 73.746094 Z M 174.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.324219 224.046875 C 283.324219 225.667969 280.894531 225.667969 280.894531 224.046875 C 280.894531 222.425781 283.324219 222.425781 283.324219 224.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.5 299.058594 C 249.5 300.679688 247.070312 300.679688 247.070312 299.058594 C 247.070312 297.4375 249.5 297.4375 249.5 299.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.59375 285.53125 C 284.59375 287.152344 282.164062 287.152344 282.164062 285.53125 C 282.164062 283.914062 284.59375 283.914062 284.59375 285.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.304688 255.382812 C 290.304688 257.003906 287.875 257.003906 287.875 255.382812 C 287.875 253.765625 290.304688 253.765625 290.304688 255.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.933594 223.789062 C 190.933594 225.410156 188.503906 225.410156 188.503906 223.789062 C 188.503906 222.171875 190.933594 222.171875 190.933594 223.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.878906 149.332031 C 129.878906 150.949219 127.449219 150.949219 127.449219 149.332031 C 127.449219 147.710938 129.878906 147.710938 129.878906 149.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.476562 380.0625 C 118.476562 381.683594 116.046875 381.683594 116.046875 380.0625 C 116.046875 378.441406 118.476562 378.441406 118.476562 380.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.359375 120.949219 C 211.359375 122.566406 208.929688 122.566406 208.929688 120.949219 C 208.929688 119.328125 211.359375 119.328125 211.359375 120.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.265625 267.476562 C 175.265625 269.097656 172.835938 269.097656 172.835938 267.476562 C 172.835938 265.859375 175.265625 265.859375 175.265625 267.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.519531 185.1875 C 269.519531 186.808594 267.089844 186.808594 267.089844 185.1875 C 267.089844 183.570312 269.519531 183.570312 269.519531 185.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.347656 295.46875 C 218.347656 297.089844 215.917969 297.089844 215.917969 295.46875 C 215.917969 293.847656 218.347656 293.847656 218.347656 295.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.84375 70.910156 L 136.476562 73.746094 L 133.207031 73.746094 Z M 134.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.0625 70.910156 L 254.699219 73.746094 L 251.425781 73.746094 Z M 253.0625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.917969 258.195312 C 273.917969 259.816406 271.488281 259.816406 271.488281 258.195312 C 271.488281 256.578125 273.917969 256.578125 273.917969 258.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.519531 197.765625 C 124.519531 199.386719 122.089844 199.386719 122.089844 197.765625 C 122.089844 196.148438 124.519531 196.148438 124.519531 197.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.1875 181.203125 C 229.1875 182.820312 226.757812 182.820312 226.757812 181.203125 C 226.757812 179.582031 229.1875 179.582031 229.1875 181.203125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.734375 70.910156 L 249.371094 73.746094 L 246.101562 73.746094 Z M 247.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.433594 265.6875 C 228.433594 267.308594 226 267.308594 226 265.6875 C 226 264.066406 228.433594 264.066406 228.433594 265.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.433594 263.453125 C 242.433594 265.070312 240.003906 265.070312 240.003906 263.453125 C 240.003906 261.832031 242.433594 261.832031 242.433594 263.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.230469 336.546875 C 185.230469 338.167969 182.800781 338.167969 182.800781 336.546875 C 182.800781 334.925781 185.230469 334.925781 185.230469 336.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.601562 233.679688 C 319.601562 235.296875 317.171875 235.296875 317.171875 233.679688 C 317.171875 232.058594 319.601562 232.058594 319.601562 233.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.085938 257.933594 C 262.085938 259.554688 259.65625 259.554688 259.65625 257.933594 C 259.65625 256.316406 262.085938 256.316406 262.085938 257.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.691406 368.542969 C 277.691406 370.164062 275.261719 370.164062 275.261719 368.542969 C 275.261719 366.925781 277.691406 366.925781 277.691406 368.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160 223.875 C 160 225.496094 157.570312 225.496094 157.570312 223.875 C 157.570312 222.253906 160 222.253906 160 223.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.558594 252.785156 C 270.558594 254.402344 268.128906 254.402344 268.128906 252.785156 C 268.128906 251.164062 270.558594 251.164062 270.558594 252.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.773438 228.230469 C 272.773438 229.851562 270.34375 229.851562 270.34375 228.230469 C 270.34375 226.609375 272.773438 226.609375 272.773438 228.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.867188 70.910156 L 129.503906 73.746094 L 126.230469 73.746094 Z M 127.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.296875 210.324219 C 244.296875 211.945312 241.867188 211.945312 241.867188 210.324219 C 241.867188 208.703125 244.296875 208.703125 244.296875 210.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.742188 70.910156 L 238.378906 73.746094 L 235.109375 73.746094 Z M 236.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.261719 121.191406 C 258.261719 122.8125 255.832031 122.8125 255.832031 121.191406 C 255.832031 119.574219 258.261719 119.574219 258.261719 121.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.460938 233.550781 C 185.460938 235.167969 183.03125 235.167969 183.03125 233.550781 C 183.03125 231.929688 185.460938 231.929688 185.460938 233.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.386719 352.117188 C 242.386719 353.738281 239.957031 353.738281 239.957031 352.117188 C 239.957031 350.5 242.386719 350.5 242.386719 352.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.183594 205.261719 C 233.183594 206.882812 230.753906 206.882812 230.753906 205.261719 C 230.753906 203.640625 233.183594 203.640625 233.183594 205.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.855469 212.726562 C 295.855469 214.34375 293.421875 214.34375 293.421875 212.726562 C 293.421875 211.105469 295.855469 211.105469 295.855469 212.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.355469 70.910156 L 253.988281 73.746094 L 250.71875 73.746094 Z M 252.355469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.773438 274.910156 C 275.773438 276.527344 273.34375 276.527344 273.34375 274.910156 C 273.34375 273.289062 275.773438 273.289062 275.773438 274.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.308594 223.191406 C 184.308594 224.8125 181.878906 224.8125 181.878906 223.191406 C 181.878906 221.574219 184.308594 221.574219 184.308594 223.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.398438 242.09375 C 249.398438 243.714844 246.96875 243.714844 246.96875 242.09375 C 246.96875 240.472656 249.398438 240.472656 249.398438 242.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.148438 256.515625 C 226.148438 258.136719 223.71875 258.136719 223.71875 256.515625 C 223.71875 254.894531 226.148438 254.894531 226.148438 256.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.609375 297.992188 C 219.609375 299.613281 217.175781 299.613281 217.175781 297.992188 C 217.175781 296.371094 219.609375 296.371094 219.609375 297.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.195312 270.3125 C 293.195312 271.933594 290.765625 271.933594 290.765625 270.3125 C 290.765625 268.695312 293.195312 268.695312 293.195312 270.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.8125 188.113281 C 235.8125 189.734375 233.382812 189.734375 233.382812 188.113281 C 233.382812 186.492188 235.8125 186.492188 235.8125 188.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.605469 70.910156 L 170.242188 73.746094 L 166.96875 73.746094 Z M 168.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.0625 249.367188 C 320.0625 250.988281 317.632812 250.988281 317.632812 249.367188 C 317.632812 247.746094 320.0625 247.746094 320.0625 249.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.335938 282.039062 C 204.335938 283.660156 201.90625 283.660156 201.90625 282.039062 C 201.90625 280.417969 204.335938 280.417969 204.335938 282.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.175781 70.910156 L 183.8125 73.746094 L 180.539062 73.746094 Z M 182.175781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.148438 70.910156 L 173.785156 73.746094 L 170.511719 73.746094 Z M 172.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.789062 204.34375 C 284.789062 205.964844 282.359375 205.964844 282.359375 204.34375 C 282.359375 202.726562 284.789062 202.726562 284.789062 204.34375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.5 70.910156 L 349.136719 73.746094 L 345.863281 73.746094 Z M 347.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.8125 131.710938 C 170.8125 133.332031 168.378906 133.332031 168.378906 131.710938 C 168.378906 130.089844 170.8125 130.089844 170.8125 131.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.777344 144.375 C 248.777344 145.996094 246.347656 145.996094 246.347656 144.375 C 246.347656 142.757812 248.777344 142.757812 248.777344 144.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.339844 170.886719 C 343.339844 172.507812 340.910156 172.507812 340.910156 170.886719 C 340.910156 169.269531 343.339844 169.269531 343.339844 170.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.015625 262.324219 C 304.015625 263.945312 301.585938 263.945312 301.585938 262.324219 C 301.585938 260.703125 304.015625 260.703125 304.015625 262.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.988281 136.460938 C 131.988281 138.082031 129.558594 138.082031 129.558594 136.460938 C 129.558594 134.84375 131.988281 134.84375 131.988281 136.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.027344 70.910156 L 135.664062 73.746094 L 132.394531 73.746094 Z M 134.027344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.632812 70.910156 L 221.269531 73.746094 L 217.996094 73.746094 Z M 219.632812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.714844 70.910156 L 133.351562 73.746094 L 130.078125 73.746094 Z M 131.714844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.804688 70.910156 L 129.441406 73.746094 L 126.167969 73.746094 Z M 127.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.257812 220.878906 C 289.257812 222.5 286.828125 222.5 286.828125 220.878906 C 286.828125 219.261719 289.257812 219.261719 289.257812 220.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.78125 70.910156 L 199.417969 73.746094 L 196.148438 73.746094 Z M 197.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.929688 199.183594 C 229.929688 200.804688 227.5 200.804688 227.5 199.183594 C 227.5 197.566406 229.929688 197.566406 229.929688 199.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.9375 284.789062 C 144.9375 286.40625 142.507812 286.40625 142.507812 284.789062 C 142.507812 283.167969 144.9375 283.167969 144.9375 284.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.253906 70.910156 L 282.890625 73.746094 L 279.617188 73.746094 Z M 281.253906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.066406 75.707031 C 239.066406 77.328125 236.636719 77.328125 236.636719 75.707031 C 236.636719 74.085938 239.066406 74.085938 239.066406 75.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.003906 418.691406 L 374.640625 415.855469 L 371.367188 415.855469 Z M 373.003906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.675781 331.207031 C 265.675781 332.824219 263.242188 332.824219 263.242188 331.207031 C 263.242188 329.585938 265.675781 329.585938 265.675781 331.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.710938 385.730469 C 238.710938 387.351562 236.28125 387.351562 236.28125 385.730469 C 236.28125 384.113281 238.710938 384.113281 238.710938 385.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.992188 262.109375 C 268.992188 263.730469 266.5625 263.730469 266.5625 262.109375 C 266.5625 260.488281 268.992188 260.488281 268.992188 262.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.617188 107.6875 C 299.617188 109.308594 297.1875 109.308594 297.1875 107.6875 C 297.1875 106.066406 299.617188 106.066406 299.617188 107.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.117188 70.910156 L 235.753906 73.746094 L 232.484375 73.746094 Z M 234.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.535156 320.324219 C 302.535156 321.945312 300.105469 321.945312 300.105469 320.324219 C 300.105469 318.703125 302.535156 318.703125 302.535156 320.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.085938 270.828125 C 301.085938 272.449219 298.65625 272.449219 298.65625 270.828125 C 298.65625 269.210938 301.085938 269.210938 301.085938 270.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.699219 70.910156 L 166.335938 73.746094 L 163.0625 73.746094 Z M 164.699219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.984375 70.910156 L 146.621094 73.746094 L 143.347656 73.746094 Z M 144.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.921875 70.910156 L 276.558594 73.746094 L 273.285156 73.746094 Z M 274.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.96875 271.078125 C 277.96875 272.699219 275.539062 272.699219 275.539062 271.078125 C 275.539062 269.460938 277.96875 269.460938 277.96875 271.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.050781 337.46875 C 325.050781 339.089844 322.621094 339.089844 322.621094 337.46875 C 322.621094 335.851562 325.050781 335.851562 325.050781 337.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.652344 364.175781 C 235.652344 365.792969 233.222656 365.792969 233.222656 364.175781 C 233.222656 362.554688 235.652344 362.554688 235.652344 364.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.816406 70.910156 L 245.453125 73.746094 L 242.179688 73.746094 Z M 243.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.195312 283.046875 C 326.195312 284.667969 323.765625 284.667969 323.765625 283.046875 C 323.765625 281.429688 326.195312 281.429688 326.195312 283.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.347656 279.875 C 256.347656 281.496094 253.917969 281.496094 253.917969 279.875 C 253.917969 278.257812 256.347656 278.257812 256.347656 279.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.066406 217.855469 C 305.066406 219.472656 302.632812 219.472656 302.632812 217.855469 C 302.632812 216.234375 305.066406 216.234375 305.066406 217.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.109375 257.707031 C 277.109375 259.328125 274.679688 259.328125 274.679688 257.707031 C 274.679688 256.085938 277.109375 256.085938 277.109375 257.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.734375 216.46875 C 292.734375 218.089844 290.304688 218.089844 290.304688 216.46875 C 290.304688 214.847656 292.734375 214.847656 292.734375 216.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.367188 218.765625 C 301.367188 220.386719 298.933594 220.386719 298.933594 218.765625 C 298.933594 217.144531 301.367188 217.144531 301.367188 218.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.632812 231.96875 C 222.632812 233.589844 220.203125 233.589844 220.203125 231.96875 C 220.203125 230.351562 222.632812 230.351562 222.632812 231.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.359375 304.925781 C 274.359375 306.546875 271.929688 306.546875 271.929688 304.925781 C 271.929688 303.304688 274.359375 303.304688 274.359375 304.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.140625 272.136719 C 278.140625 273.757812 275.710938 273.757812 275.710938 272.136719 C 275.710938 270.519531 278.140625 270.519531 278.140625 272.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.78125 70.910156 L 250.417969 73.746094 L 247.144531 73.746094 Z M 248.78125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.386719 70.910156 L 276.023438 73.746094 L 272.75 73.746094 Z M 274.386719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 339.5 70.910156 L 341.136719 73.746094 L 337.863281 73.746094 Z M 339.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.445312 124.949219 C 185.445312 126.566406 183.015625 126.566406 183.015625 124.949219 C 183.015625 123.328125 185.445312 123.328125 185.445312 124.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.691406 116.230469 C 234.691406 117.851562 232.261719 117.851562 232.261719 116.230469 C 232.261719 114.609375 234.691406 114.609375 234.691406 116.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.921875 70.910156 L 219.558594 73.746094 L 216.285156 73.746094 Z M 217.921875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.875 70.910156 L 208.511719 73.746094 L 205.238281 73.746094 Z M 206.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.433594 418.691406 L 118.070312 415.855469 L 114.796875 415.855469 Z M 116.433594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.21875 217.328125 C 182.21875 218.949219 179.789062 218.949219 179.789062 217.328125 C 179.789062 215.707031 182.21875 215.707031 182.21875 217.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.753906 70.910156 L 237.390625 73.746094 L 234.117188 73.746094 Z M 235.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.542969 70.910156 L 207.179688 73.746094 L 203.90625 73.746094 Z M 205.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.664062 216.023438 C 307.664062 217.644531 305.234375 217.644531 305.234375 216.023438 C 305.234375 214.40625 307.664062 214.40625 307.664062 216.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.230469 240.9375 C 300.230469 242.554688 297.800781 242.554688 297.800781 240.9375 C 297.800781 239.316406 300.230469 239.316406 300.230469 240.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.910156 70.910156 L 362.546875 73.746094 L 359.273438 73.746094 Z M 360.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.492188 321.613281 C 124.492188 323.234375 122.0625 323.234375 122.0625 321.613281 C 122.0625 319.996094 124.492188 319.996094 124.492188 321.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.058594 70.910156 L 287.695312 73.746094 L 284.421875 73.746094 Z M 286.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.957031 136.433594 C 166.957031 138.054688 164.527344 138.054688 164.527344 136.433594 C 164.527344 134.8125 166.957031 134.8125 166.957031 136.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.535156 160.660156 C 208.535156 162.28125 206.105469 162.28125 206.105469 160.660156 C 206.105469 159.042969 208.535156 159.042969 208.535156 160.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.832031 329.25 C 274.832031 330.867188 272.402344 330.867188 272.402344 329.25 C 272.402344 327.628906 274.832031 327.628906 274.832031 329.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 400.449219 104.496094 C 400.449219 106.117188 398.015625 106.117188 398.015625 104.496094 C 398.015625 102.875 400.449219 102.875 400.449219 104.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.917969 82.140625 C 370.917969 83.761719 368.488281 83.761719 368.488281 82.140625 C 368.488281 80.519531 370.917969 80.519531 370.917969 82.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.351562 70.910156 L 234.988281 73.746094 L 231.714844 73.746094 Z M 233.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.726562 239.957031 C 313.726562 241.578125 311.296875 241.578125 311.296875 239.957031 C 311.296875 238.335938 313.726562 238.335938 313.726562 239.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.675781 314.6875 C 325.675781 316.308594 323.246094 316.308594 323.246094 314.6875 C 323.246094 313.070312 325.675781 313.070312 325.675781 314.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.757812 100.453125 C 267.757812 102.074219 265.328125 102.074219 265.328125 100.453125 C 265.328125 98.835938 267.757812 98.835938 267.757812 100.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228 250.023438 C 228 251.644531 225.570312 251.644531 225.570312 250.023438 C 225.570312 248.40625 228 248.40625 228 250.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.847656 345.246094 C 258.847656 346.867188 256.417969 346.867188 256.417969 345.246094 C 256.417969 343.625 258.847656 343.625 258.847656 345.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.296875 338.324219 C 289.296875 339.945312 286.867188 339.945312 286.867188 338.324219 C 286.867188 336.707031 289.296875 336.707031 289.296875 338.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.894531 321.355469 C 277.894531 322.976562 275.464844 322.976562 275.464844 321.355469 C 275.464844 319.734375 277.894531 319.734375 277.894531 321.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.226562 222.027344 C 165.226562 223.648438 162.796875 223.648438 162.796875 222.027344 C 162.796875 220.40625 165.226562 220.40625 165.226562 222.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.671875 233.765625 C 296.671875 235.382812 294.238281 235.382812 294.238281 233.765625 C 294.238281 232.144531 296.671875 232.144531 296.671875 233.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.902344 273.992188 C 321.902344 275.609375 319.472656 275.609375 319.472656 273.992188 C 319.472656 272.371094 321.902344 272.371094 321.902344 273.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.996094 184.546875 C 269.996094 186.167969 267.566406 186.167969 267.566406 184.546875 C 267.566406 182.929688 269.996094 182.929688 269.996094 184.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.25 257.582031 C 278.25 259.199219 275.820312 259.199219 275.820312 257.582031 C 275.820312 255.960938 278.25 255.960938 278.25 257.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.097656 70.910156 L 282.734375 73.746094 L 279.464844 73.746094 Z M 281.097656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.574219 70.910156 L 267.210938 73.746094 L 263.9375 73.746094 Z M 265.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.414062 227.207031 C 196.414062 228.828125 193.984375 228.828125 193.984375 227.207031 C 193.984375 225.589844 196.414062 225.589844 196.414062 227.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.824219 70.910156 L 187.460938 73.746094 L 184.1875 73.746094 Z M 185.824219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.375 70.910156 L 148.011719 73.746094 L 144.738281 73.746094 Z M 146.375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.910156 70.910156 L 236.546875 73.746094 L 233.273438 73.746094 Z M 234.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.953125 248.605469 C 290.953125 250.226562 288.523438 250.226562 288.523438 248.605469 C 288.523438 246.984375 290.953125 246.984375 290.953125 248.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.527344 286.1875 C 258.527344 287.808594 256.097656 287.808594 256.097656 286.1875 C 256.097656 284.570312 258.527344 284.570312 258.527344 286.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.9375 269.238281 C 235.9375 270.855469 233.507812 270.855469 233.507812 269.238281 C 233.507812 267.617188 235.9375 267.617188 235.9375 269.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.394531 308.445312 C 230.394531 310.0625 227.964844 310.0625 227.964844 308.445312 C 227.964844 306.824219 230.394531 306.824219 230.394531 308.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.894531 252.3125 C 276.894531 253.933594 274.464844 253.933594 274.464844 252.3125 C 274.464844 250.691406 276.894531 250.691406 276.894531 252.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.980469 249.890625 C 258.980469 251.511719 256.550781 251.511719 256.550781 249.890625 C 256.550781 248.269531 258.980469 248.269531 258.980469 249.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.816406 219.101562 C 199.816406 220.722656 197.386719 220.722656 197.386719 219.101562 C 197.386719 217.480469 199.816406 217.480469 199.816406 219.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.246094 259.589844 C 272.246094 261.207031 269.816406 261.207031 269.816406 259.589844 C 269.816406 257.96875 272.246094 257.96875 272.246094 259.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.84375 274.03125 C 264.84375 275.652344 262.414062 275.652344 262.414062 274.03125 C 262.414062 272.410156 264.84375 272.410156 264.84375 274.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.097656 306.164062 C 144.097656 307.785156 141.667969 307.785156 141.667969 306.164062 C 141.667969 304.542969 144.097656 304.542969 144.097656 306.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.914062 292.042969 C 287.914062 293.664062 285.484375 293.664062 285.484375 292.042969 C 285.484375 290.421875 287.914062 290.421875 287.914062 292.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.863281 259.8125 C 311.863281 261.433594 309.429688 261.433594 309.429688 259.8125 C 309.429688 258.191406 311.863281 258.191406 311.863281 259.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 354.214844 305.609375 C 354.214844 307.226562 351.785156 307.226562 351.785156 305.609375 C 351.785156 303.988281 354.214844 303.988281 354.214844 305.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.113281 199.023438 C 296.113281 200.640625 293.683594 200.640625 293.683594 199.023438 C 293.683594 197.402344 296.113281 197.402344 296.113281 199.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.429688 127.21875 C 216.429688 128.835938 214 128.835938 214 127.21875 C 214 125.597656 216.429688 125.597656 216.429688 127.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.542969 70.910156 L 275.179688 73.746094 L 271.90625 73.746094 Z M 273.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.988281 235.023438 C 270.988281 236.640625 268.558594 236.640625 268.558594 235.023438 C 268.558594 233.402344 270.988281 233.402344 270.988281 235.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.332031 245.304688 C 305.332031 246.921875 302.902344 246.921875 302.902344 245.304688 C 302.902344 243.683594 305.332031 243.683594 305.332031 245.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.800781 185.972656 C 264.800781 187.59375 262.371094 187.59375 262.371094 185.972656 C 262.371094 184.351562 264.800781 184.351562 264.800781 185.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.453125 214.5625 C 272.453125 216.183594 270.023438 216.183594 270.023438 214.5625 C 270.023438 212.941406 272.453125 212.941406 272.453125 214.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.242188 250.882812 C 240.242188 252.5 237.8125 252.5 237.8125 250.882812 C 237.8125 249.261719 240.242188 249.261719 240.242188 250.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.625 70.910156 L 222.261719 73.746094 L 218.988281 73.746094 Z M 220.625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.027344 70.910156 L 177.664062 73.746094 L 174.390625 73.746094 Z M 176.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.417969 226.859375 C 277.417969 228.480469 274.988281 228.480469 274.988281 226.859375 C 274.988281 225.238281 277.417969 225.238281 277.417969 226.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.5625 127.945312 C 297.5625 129.5625 295.132812 129.5625 295.132812 127.945312 C 295.132812 126.324219 297.5625 126.324219 297.5625 127.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.15625 279.527344 C 264.15625 281.148438 261.722656 281.148438 261.722656 279.527344 C 261.722656 277.90625 264.15625 277.90625 264.15625 279.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.953125 274.683594 C 228.953125 276.304688 226.523438 276.304688 226.523438 274.683594 C 226.523438 273.0625 228.953125 273.0625 228.953125 274.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.488281 239.082031 C 229.488281 240.703125 227.058594 240.703125 227.058594 239.082031 C 227.058594 237.464844 229.488281 237.464844 229.488281 239.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.414062 244.402344 C 220.414062 246.019531 217.984375 246.019531 217.984375 244.402344 C 217.984375 242.78125 220.414062 242.78125 220.414062 244.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.773438 306.164062 C 219.773438 307.785156 217.34375 307.785156 217.34375 306.164062 C 217.34375 304.546875 219.773438 304.546875 219.773438 306.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.726562 265.886719 C 226.726562 267.507812 224.296875 267.507812 224.296875 265.886719 C 224.296875 264.265625 226.726562 264.265625 226.726562 265.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.710938 211.242188 C 276.710938 212.863281 274.28125 212.863281 274.28125 211.242188 C 274.28125 209.621094 276.710938 209.621094 276.710938 211.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.847656 228.207031 C 237.847656 229.824219 235.417969 229.824219 235.417969 228.207031 C 235.417969 226.585938 237.847656 226.585938 237.847656 228.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.511719 173.921875 C 201.511719 175.542969 199.082031 175.542969 199.082031 173.921875 C 199.082031 172.304688 201.511719 172.304688 201.511719 173.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.820312 141.941406 C 229.820312 143.5625 227.386719 143.5625 227.386719 141.941406 C 227.386719 140.320312 229.820312 140.320312 229.820312 141.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.207031 239.53125 C 264.207031 241.152344 261.777344 241.152344 261.777344 239.53125 C 261.777344 237.914062 264.207031 237.914062 264.207031 239.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.121094 179.085938 C 336.121094 180.707031 333.691406 180.707031 333.691406 179.085938 C 333.691406 177.46875 336.121094 177.46875 336.121094 179.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.773438 324.527344 C 182.773438 326.144531 180.34375 326.144531 180.34375 324.527344 C 180.34375 322.90625 182.773438 322.90625 182.773438 324.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.824219 70.910156 L 163.460938 73.746094 L 160.1875 73.746094 Z M 161.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.546875 250.601562 C 258.546875 252.222656 256.117188 252.222656 256.117188 250.601562 C 256.117188 248.984375 258.546875 248.984375 258.546875 250.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.109375 225.878906 C 196.109375 227.496094 193.679688 227.496094 193.679688 225.878906 C 193.679688 224.257812 196.109375 224.257812 196.109375 225.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.957031 237.855469 C 240.957031 239.476562 238.527344 239.476562 238.527344 237.855469 C 238.527344 236.238281 240.957031 236.238281 240.957031 237.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.0625 262.476562 C 208.0625 264.097656 205.632812 264.097656 205.632812 262.476562 C 205.632812 260.855469 208.0625 260.855469 208.0625 262.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.507812 168.234375 C 258.507812 169.855469 256.078125 169.855469 256.078125 168.234375 C 256.078125 166.617188 258.507812 166.617188 258.507812 168.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.167969 225.574219 C 207.167969 227.191406 204.738281 227.191406 204.738281 225.574219 C 204.738281 223.953125 207.167969 223.953125 207.167969 225.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.683594 292.761719 C 268.683594 294.378906 266.25 294.378906 266.25 292.761719 C 266.25 291.140625 268.683594 291.140625 268.683594 292.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.53125 285.515625 C 273.53125 287.136719 271.101562 287.136719 271.101562 285.515625 C 271.101562 283.894531 273.53125 283.894531 273.53125 285.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.828125 296.027344 C 264.828125 297.648438 262.398438 297.648438 262.398438 296.027344 C 262.398438 294.410156 264.828125 294.410156 264.828125 296.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.675781 284.363281 C 156.675781 285.984375 154.246094 285.984375 154.246094 284.363281 C 154.246094 282.746094 156.675781 282.746094 156.675781 284.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.261719 70.910156 L 182.894531 73.746094 L 179.625 73.746094 Z M 181.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.097656 190.738281 C 182.097656 192.359375 179.667969 192.359375 179.667969 190.738281 C 179.667969 189.117188 182.097656 189.117188 182.097656 190.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.472656 256.96875 C 181.472656 258.585938 179.042969 258.585938 179.042969 256.96875 C 179.042969 255.347656 181.472656 255.347656 181.472656 256.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.136719 103.230469 C 168.136719 104.851562 165.707031 104.851562 165.707031 103.230469 C 165.707031 101.613281 168.136719 101.613281 168.136719 103.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.007812 250.511719 C 229.007812 252.128906 226.578125 252.128906 226.578125 250.511719 C 226.578125 248.890625 229.007812 248.890625 229.007812 250.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.105469 410.15625 C 331.105469 411.777344 328.675781 411.777344 328.675781 410.15625 C 328.675781 408.535156 331.105469 408.535156 331.105469 410.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.472656 250.574219 C 251.472656 252.195312 249.039062 252.195312 249.039062 250.574219 C 249.039062 248.953125 251.472656 248.953125 251.472656 250.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.753906 337.832031 C 210.753906 339.453125 208.324219 339.453125 208.324219 337.832031 C 208.324219 336.210938 210.753906 336.210938 210.753906 337.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.644531 213.6875 C 238.644531 215.308594 236.214844 215.308594 236.214844 213.6875 C 236.214844 212.066406 238.644531 212.066406 238.644531 213.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.488281 70.910156 L 153.125 73.746094 L 149.851562 73.746094 Z M 151.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.402344 70.910156 L 205.039062 73.746094 L 201.765625 73.746094 Z M 203.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.453125 161 C 276.453125 162.621094 274.023438 162.621094 274.023438 161 C 274.023438 159.382812 276.453125 159.382812 276.453125 161 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.300781 213.390625 C 198.300781 215.011719 195.871094 215.011719 195.871094 213.390625 C 195.871094 211.769531 198.300781 211.769531 198.300781 213.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.949219 189.683594 C 255.949219 191.300781 253.519531 191.300781 253.519531 189.683594 C 253.519531 188.0625 255.949219 188.0625 255.949219 189.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.875 308.691406 C 136.875 310.3125 134.441406 310.3125 134.441406 308.691406 C 134.441406 307.070312 136.875 307.070312 136.875 308.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.1875 70.910156 L 142.820312 73.746094 L 139.550781 73.746094 Z M 141.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.035156 214.964844 C 226.035156 216.585938 223.605469 216.585938 223.605469 214.964844 C 223.605469 213.34375 226.035156 213.34375 226.035156 214.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.007812 221.714844 C 229.007812 223.332031 226.578125 223.332031 226.578125 221.714844 C 226.578125 220.09375 229.007812 220.09375 229.007812 221.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.75 263.625 C 232.75 265.242188 230.320312 265.242188 230.320312 263.625 C 230.320312 262.003906 232.75 262.003906 232.75 263.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.226562 250.074219 C 301.226562 251.691406 298.796875 251.691406 298.796875 250.074219 C 298.796875 248.453125 301.226562 248.453125 301.226562 250.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.4375 180.675781 C 110.4375 182.296875 108.007812 182.296875 108.007812 180.675781 C 108.007812 179.054688 110.4375 179.054688 110.4375 180.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.765625 266.101562 C 280.765625 267.722656 278.335938 267.722656 278.335938 266.101562 C 278.335938 264.480469 280.765625 264.480469 280.765625 266.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.773438 161.378906 C 287.773438 163 285.34375 163 285.34375 161.378906 C 285.34375 159.757812 287.773438 159.757812 287.773438 161.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.386719 286.644531 C 267.386719 288.265625 264.957031 288.265625 264.957031 286.644531 C 264.957031 285.023438 267.386719 285.023438 267.386719 286.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.304688 260.757812 C 292.304688 262.375 289.875 262.375 289.875 260.757812 C 289.875 259.136719 292.304688 259.136719 292.304688 260.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.332031 273.175781 C 285.332031 274.792969 282.902344 274.792969 282.902344 273.175781 C 282.902344 271.554688 285.332031 271.554688 285.332031 273.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.992188 315.972656 C 292.992188 317.59375 290.5625 317.59375 290.5625 315.972656 C 290.5625 314.351562 292.992188 314.351562 292.992188 315.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.066406 242.375 C 316.066406 243.992188 313.632812 243.992188 313.632812 242.375 C 313.632812 240.753906 316.066406 240.753906 316.066406 242.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.394531 293.199219 C 272.394531 294.820312 269.964844 294.820312 269.964844 293.199219 C 269.964844 291.578125 272.394531 291.578125 272.394531 293.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.46875 254.960938 C 306.46875 256.578125 304.039062 256.578125 304.039062 254.960938 C 304.039062 253.339844 306.46875 253.339844 306.46875 254.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.078125 280.9375 C 292.078125 282.558594 289.648438 282.558594 289.648438 280.9375 C 289.648438 279.320312 292.078125 279.320312 292.078125 280.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.238281 216.414062 C 273.238281 218.035156 270.808594 218.035156 270.808594 216.414062 C 270.808594 214.792969 273.238281 214.792969 273.238281 216.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.96875 314.71875 C 270.96875 316.339844 268.539062 316.339844 268.539062 314.71875 C 268.539062 313.097656 270.96875 313.097656 270.96875 314.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 351.65625 213.5 C 351.65625 215.121094 349.226562 215.121094 349.226562 213.5 C 349.226562 211.882812 351.65625 211.882812 351.65625 213.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.269531 307.730469 C 273.269531 309.351562 270.839844 309.351562 270.839844 307.730469 C 270.839844 306.113281 273.269531 306.113281 273.269531 307.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.34375 207.601562 C 216.34375 209.222656 213.914062 209.222656 213.914062 207.601562 C 213.914062 205.980469 216.34375 205.980469 216.34375 207.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.507812 215.8125 C 213.507812 217.433594 211.078125 217.433594 211.078125 215.8125 C 211.078125 214.195312 213.507812 214.195312 213.507812 215.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.414062 279.550781 C 266.414062 281.171875 263.984375 281.171875 263.984375 279.550781 C 263.984375 277.929688 266.414062 277.929688 266.414062 279.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.703125 271.046875 C 297.703125 272.667969 295.273438 272.667969 295.273438 271.046875 C 295.273438 269.429688 297.703125 269.429688 297.703125 271.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.359375 277.996094 C 235.359375 279.617188 232.929688 279.617188 232.929688 277.996094 C 232.929688 276.378906 235.359375 276.378906 235.359375 277.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.808594 268.597656 C 175.808594 270.214844 173.378906 270.214844 173.378906 268.597656 C 173.378906 266.976562 175.808594 266.976562 175.808594 268.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.171875 233.632812 C 180.171875 235.253906 177.742188 235.253906 177.742188 233.632812 C 177.742188 232.015625 180.171875 232.015625 180.171875 233.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.472656 173.46875 C 272.472656 175.089844 270.042969 175.089844 270.042969 173.46875 C 270.042969 171.851562 272.472656 171.851562 272.472656 173.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.503906 271.714844 C 272.503906 273.335938 270.074219 273.335938 270.074219 271.714844 C 270.074219 270.09375 272.503906 270.09375 272.503906 271.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.773438 418.691406 L 244.410156 415.855469 L 241.136719 415.855469 Z M 242.773438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.96875 185.90625 C 181.96875 187.527344 179.539062 187.527344 179.539062 185.90625 C 179.539062 184.289062 181.96875 184.289062 181.96875 185.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.636719 231.140625 C 259.636719 232.761719 257.207031 232.761719 257.207031 231.140625 C 257.207031 229.519531 259.636719 229.519531 259.636719 231.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.945312 369.917969 C 251.945312 371.535156 249.515625 371.535156 249.515625 369.917969 C 249.515625 368.296875 251.945312 368.296875 251.945312 369.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.644531 247.4375 C 271.644531 249.054688 269.214844 249.054688 269.214844 247.4375 C 269.214844 245.816406 271.644531 245.816406 271.644531 247.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.710938 235.488281 C 266.710938 237.109375 264.277344 237.109375 264.277344 235.488281 C 264.277344 233.867188 266.710938 233.867188 266.710938 235.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.167969 227.769531 C 255.167969 229.390625 252.738281 229.390625 252.738281 227.769531 C 252.738281 226.148438 255.167969 226.148438 255.167969 227.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.324219 70.910156 L 259.960938 73.746094 L 256.6875 73.746094 Z M 258.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.109375 221.789062 C 346.109375 223.410156 343.679688 223.410156 343.679688 221.789062 C 343.679688 220.171875 346.109375 220.171875 346.109375 221.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.023438 147.46875 C 176.023438 149.089844 173.59375 149.089844 173.59375 147.46875 C 173.59375 145.847656 176.023438 145.847656 176.023438 147.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.414062 289.914062 C 288.414062 291.535156 285.984375 291.535156 285.984375 289.914062 C 285.984375 288.292969 288.414062 288.292969 288.414062 289.914062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.09375 248.847656 C 264.09375 250.464844 261.664062 250.464844 261.664062 248.847656 C 261.664062 247.226562 264.09375 247.226562 264.09375 248.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.453125 241.46875 C 339.453125 243.089844 337.023438 243.089844 337.023438 241.46875 C 337.023438 239.847656 339.453125 239.847656 339.453125 241.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.636719 217.988281 C 317.636719 219.609375 315.207031 219.609375 315.207031 217.988281 C 315.207031 216.367188 317.636719 216.367188 317.636719 217.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 352.425781 258.550781 C 352.425781 260.171875 349.996094 260.171875 349.996094 258.550781 C 349.996094 256.929688 352.425781 256.929688 352.425781 258.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.792969 171.726562 C 186.792969 173.347656 184.363281 173.347656 184.363281 171.726562 C 184.363281 170.105469 186.792969 170.105469 186.792969 171.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.476562 260.339844 C 276.476562 261.960938 274.042969 261.960938 274.042969 260.339844 C 274.042969 258.71875 276.476562 258.71875 276.476562 260.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.136719 235.785156 C 305.136719 237.40625 302.707031 237.40625 302.707031 235.785156 C 302.707031 234.167969 305.136719 234.167969 305.136719 235.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.015625 354.78125 C 307.015625 356.402344 304.582031 356.402344 304.582031 354.78125 C 304.582031 353.160156 307.015625 353.160156 307.015625 354.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.640625 293.011719 C 292.640625 294.632812 290.210938 294.632812 290.210938 293.011719 C 290.210938 291.390625 292.640625 291.390625 292.640625 293.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.546875 250.296875 C 260.546875 251.917969 258.113281 251.917969 258.113281 250.296875 C 258.113281 248.675781 260.546875 248.675781 260.546875 250.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.058594 235.4375 C 253.058594 237.058594 250.628906 237.058594 250.628906 235.4375 C 250.628906 233.816406 253.058594 233.816406 253.058594 235.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.386719 256.761719 C 253.386719 258.382812 250.957031 258.382812 250.957031 256.761719 C 250.957031 255.144531 253.386719 255.144531 253.386719 256.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.597656 301.078125 C 293.597656 302.695312 291.167969 302.695312 291.167969 301.078125 C 291.167969 299.457031 293.597656 299.457031 293.597656 301.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.914062 286.109375 C 252.914062 287.730469 250.484375 287.730469 250.484375 286.109375 C 250.484375 284.488281 252.914062 284.488281 252.914062 286.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.460938 273.878906 C 300.460938 275.5 298.03125 275.5 298.03125 273.878906 C 298.03125 272.261719 300.460938 272.261719 300.460938 273.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.921875 272.078125 C 240.921875 273.695312 238.492188 273.695312 238.492188 272.078125 C 238.492188 270.457031 240.921875 270.457031 240.921875 272.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.707031 296.363281 C 134.707031 297.984375 132.277344 297.984375 132.277344 296.363281 C 132.277344 294.742188 134.707031 294.742188 134.707031 296.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.105469 83.578125 C 188.105469 85.199219 185.675781 85.199219 185.675781 83.578125 C 185.675781 81.957031 188.105469 81.957031 188.105469 83.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.382812 202.277344 C 266.382812 203.898438 263.953125 203.898438 263.953125 202.277344 C 263.953125 200.65625 266.382812 200.65625 266.382812 202.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.128906 247.1875 C 236.128906 248.804688 233.699219 248.804688 233.699219 247.1875 C 233.699219 245.566406 236.128906 245.566406 236.128906 247.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.613281 192.035156 C 197.613281 193.65625 195.183594 193.65625 195.183594 192.035156 C 195.183594 190.414062 197.613281 190.414062 197.613281 192.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.824219 254.59375 C 274.824219 256.214844 272.394531 256.214844 272.394531 254.59375 C 272.394531 252.972656 274.824219 252.972656 274.824219 254.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.351562 232.875 C 273.351562 234.496094 270.921875 234.496094 270.921875 232.875 C 270.921875 231.253906 273.351562 231.253906 273.351562 232.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.667969 270.523438 C 235.667969 272.140625 233.238281 272.140625 233.238281 270.523438 C 233.238281 268.902344 235.667969 268.902344 235.667969 270.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.441406 246.074219 C 174.441406 247.691406 172.011719 247.691406 172.011719 246.074219 C 172.011719 244.453125 174.441406 244.453125 174.441406 246.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.777344 153.925781 C 295.777344 155.546875 293.347656 155.546875 293.347656 153.925781 C 293.347656 152.304688 295.777344 152.304688 295.777344 153.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.292969 70.910156 L 178.929688 73.746094 L 175.65625 73.746094 Z M 177.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.550781 311.601562 C 267.550781 313.21875 265.121094 313.21875 265.121094 311.601562 C 265.121094 309.980469 267.550781 309.980469 267.550781 311.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.929688 233.984375 C 188.929688 235.605469 186.5 235.605469 186.5 233.984375 C 186.5 232.363281 188.929688 232.363281 188.929688 233.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265 195.292969 C 265 196.914062 262.566406 196.914062 262.566406 195.292969 C 262.566406 193.671875 265 193.671875 265 195.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265 195.292969 C 265 196.914062 262.566406 196.914062 262.566406 195.292969 C 262.566406 193.671875 265 193.671875 265 195.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.050781 341.992188 C 214.050781 343.613281 211.621094 343.613281 211.621094 341.992188 C 211.621094 340.371094 214.050781 340.371094 214.050781 341.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.320312 228.015625 C 304.320312 229.632812 301.890625 229.632812 301.890625 228.015625 C 301.890625 226.394531 304.320312 226.394531 304.320312 228.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.046875 119.617188 C 154.046875 121.234375 151.617188 121.234375 151.617188 119.617188 C 151.617188 117.996094 154.046875 117.996094 154.046875 119.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.699219 154.726562 C 281.699219 156.347656 279.269531 156.347656 279.269531 154.726562 C 279.269531 153.105469 281.699219 153.105469 281.699219 154.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.539062 289.089844 C 226.539062 290.710938 224.109375 290.710938 224.109375 289.089844 C 224.109375 287.472656 226.539062 287.472656 226.539062 289.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.855469 182.777344 C 262.855469 184.394531 260.425781 184.394531 260.425781 182.777344 C 260.425781 181.15625 262.855469 181.15625 262.855469 182.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.851562 259.183594 C 324.851562 260.804688 322.421875 260.804688 322.421875 259.183594 C 322.421875 257.5625 324.851562 257.5625 324.851562 259.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.273438 70.910156 L 169.910156 73.746094 L 166.636719 73.746094 Z M 168.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.472656 325.519531 C 322.472656 327.140625 320.039062 327.140625 320.039062 325.519531 C 320.039062 323.898438 322.472656 323.898438 322.472656 325.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.085938 338.902344 C 243.085938 340.523438 240.65625 340.523438 240.65625 338.902344 C 240.65625 337.28125 243.085938 337.28125 243.085938 338.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.898438 70.910156 L 260.53125 73.746094 L 257.261719 73.746094 Z M 258.898438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.976562 70.910156 L 247.613281 73.746094 L 244.339844 73.746094 Z M 245.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.300781 300.378906 C 264.300781 302 261.871094 302 261.871094 300.378906 C 261.871094 298.761719 264.300781 298.761719 264.300781 300.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.234375 383.144531 C 194.234375 384.765625 191.804688 384.765625 191.804688 383.144531 C 191.804688 381.523438 194.234375 381.523438 194.234375 383.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.171875 193.648438 C 242.171875 195.265625 239.742188 195.265625 239.742188 193.648438 C 239.742188 192.027344 242.171875 192.027344 242.171875 193.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.886719 70.910156 L 233.523438 73.746094 L 230.25 73.746094 Z M 231.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.773438 245.46875 C 298.773438 247.089844 296.34375 247.089844 296.34375 245.46875 C 296.34375 243.847656 298.773438 243.847656 298.773438 245.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.984375 128.261719 C 268.984375 129.878906 266.554688 129.878906 266.554688 128.261719 C 266.554688 126.640625 268.984375 126.640625 268.984375 128.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.964844 115.480469 C 291.964844 117.097656 289.535156 117.097656 289.535156 115.480469 C 289.535156 113.859375 291.964844 113.859375 291.964844 115.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.027344 167.128906 C 276.027344 168.75 273.597656 168.75 273.597656 167.128906 C 273.597656 165.511719 276.027344 165.511719 276.027344 167.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.136719 70.910156 L 191.773438 73.746094 L 188.5 73.746094 Z M 190.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.601562 101.230469 C 346.601562 102.851562 344.171875 102.851562 344.171875 101.230469 C 344.171875 99.613281 346.601562 99.613281 346.601562 101.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.433594 70.910156 L 157.070312 73.746094 L 153.796875 73.746094 Z M 155.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.339844 144.605469 C 322.339844 146.226562 319.910156 146.226562 319.910156 144.605469 C 319.910156 142.984375 322.339844 142.984375 322.339844 144.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.980469 278.664062 C 273.980469 280.285156 271.550781 280.285156 271.550781 278.664062 C 271.550781 277.046875 273.980469 277.046875 273.980469 278.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.921875 239.289062 C 242.921875 240.90625 240.492188 240.90625 240.492188 239.289062 C 240.492188 237.667969 242.921875 237.667969 242.921875 239.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.894531 212.992188 C 238.894531 214.613281 236.464844 214.613281 236.464844 212.992188 C 236.464844 211.371094 238.894531 211.371094 238.894531 212.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.230469 275.128906 C 282.230469 276.75 279.800781 276.75 279.800781 275.128906 C 279.800781 273.507812 282.230469 273.507812 282.230469 275.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.1875 277.179688 C 270.1875 278.800781 267.757812 278.800781 267.757812 277.179688 C 267.757812 275.5625 270.1875 275.5625 270.1875 277.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.515625 201.476562 C 242.515625 203.097656 240.085938 203.097656 240.085938 201.476562 C 240.085938 199.859375 242.515625 199.859375 242.515625 201.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.128906 361.535156 C 206.128906 363.152344 203.699219 363.152344 203.699219 361.535156 C 203.699219 359.914062 206.128906 359.914062 206.128906 361.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.015625 274.410156 C 234.015625 276.027344 231.585938 276.027344 231.585938 274.410156 C 231.585938 272.789062 234.015625 272.789062 234.015625 274.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.421875 262.042969 C 298.421875 263.664062 295.992188 263.664062 295.992188 262.042969 C 295.992188 260.421875 298.421875 260.421875 298.421875 262.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.320312 271.691406 C 277.320312 273.308594 274.890625 273.308594 274.890625 271.691406 C 274.890625 270.070312 277.320312 270.070312 277.320312 271.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.847656 239.148438 C 272.847656 240.769531 270.417969 240.769531 270.417969 239.148438 C 270.417969 237.527344 272.847656 237.527344 272.847656 239.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.359375 234.238281 C 232.359375 235.859375 229.929688 235.859375 229.929688 234.238281 C 229.929688 232.617188 232.359375 232.617188 232.359375 234.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.203125 230.527344 C 283.203125 232.148438 280.773438 232.148438 280.773438 230.527344 C 280.773438 228.910156 283.203125 228.910156 283.203125 230.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.359375 235.929688 C 189.359375 237.550781 186.929688 237.550781 186.929688 235.929688 C 186.929688 234.3125 189.359375 234.3125 189.359375 235.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.097656 233.625 C 190.097656 235.246094 187.667969 235.246094 187.667969 233.625 C 187.667969 232.003906 190.097656 232.003906 190.097656 233.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.246094 230.640625 C 238.246094 232.261719 235.816406 232.261719 235.816406 230.640625 C 235.816406 229.019531 238.246094 229.019531 238.246094 230.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.339844 240.207031 C 272.339844 241.828125 269.910156 241.828125 269.910156 240.207031 C 269.910156 238.589844 272.339844 238.589844 272.339844 240.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.273438 324.9375 C 309.273438 326.554688 306.84375 326.554688 306.84375 324.9375 C 306.84375 323.316406 309.273438 323.316406 309.273438 324.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.238281 243.128906 C 262.238281 244.75 259.808594 244.75 259.808594 243.128906 C 259.808594 241.511719 262.238281 241.511719 262.238281 243.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.246094 274.402344 C 202.246094 276.023438 199.816406 276.023438 199.816406 274.402344 C 199.816406 272.785156 202.246094 272.785156 202.246094 274.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.050781 298.039062 C 268.050781 299.660156 265.621094 299.660156 265.621094 298.039062 C 265.621094 296.417969 268.050781 296.417969 268.050781 298.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.179688 346.425781 C 130.179688 348.046875 127.75 348.046875 127.75 346.425781 C 127.75 344.804688 130.179688 344.804688 130.179688 346.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.125 105.925781 C 120.125 107.542969 117.695312 107.542969 117.695312 105.925781 C 117.695312 104.304688 120.125 104.304688 120.125 105.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.546875 225.09375 C 244.546875 226.714844 242.117188 226.714844 242.117188 225.09375 C 242.117188 223.472656 244.546875 223.472656 244.546875 225.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.6875 222.820312 C 271.6875 224.441406 269.257812 224.441406 269.257812 222.820312 C 269.257812 221.199219 271.6875 221.199219 271.6875 222.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.523438 296.613281 C 260.523438 298.234375 258.09375 298.234375 258.09375 296.613281 C 258.09375 294.992188 260.523438 294.992188 260.523438 296.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.023438 295.300781 C 209.023438 296.921875 206.59375 296.921875 206.59375 295.300781 C 206.59375 293.683594 209.023438 293.683594 209.023438 295.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.417969 309.628906 C 256.417969 311.25 253.988281 311.25 253.988281 309.628906 C 253.988281 308.011719 256.417969 308.011719 256.417969 309.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.195312 295.113281 C 234.195312 296.734375 231.761719 296.734375 231.761719 295.113281 C 231.761719 293.492188 234.195312 293.492188 234.195312 295.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.976562 284.523438 C 313.976562 286.140625 311.546875 286.140625 311.546875 284.523438 C 311.546875 282.902344 313.976562 282.902344 313.976562 284.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.949219 172.855469 C 147.949219 174.476562 145.519531 174.476562 145.519531 172.855469 C 145.519531 171.238281 147.949219 171.238281 147.949219 172.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.269531 308.535156 C 200.269531 310.152344 197.839844 310.152344 197.839844 308.535156 C 197.839844 306.914062 200.269531 306.914062 200.269531 308.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.035156 271.925781 C 243.035156 273.546875 240.605469 273.546875 240.605469 271.925781 C 240.605469 270.304688 243.035156 270.304688 243.035156 271.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.160156 219.535156 C 319.160156 221.15625 316.730469 221.15625 316.730469 219.535156 C 316.730469 217.917969 319.160156 217.917969 319.160156 219.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.964844 338.382812 C 190.964844 340.003906 188.535156 340.003906 188.535156 338.382812 C 188.535156 336.761719 190.964844 336.761719 190.964844 338.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.25 341.214844 C 212.25 342.835938 209.820312 342.835938 209.820312 341.214844 C 209.820312 339.59375 212.25 339.59375 212.25 341.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.632812 139.644531 C 282.632812 141.265625 280.203125 141.265625 280.203125 139.644531 C 280.203125 138.023438 282.632812 138.023438 282.632812 139.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.980469 191.621094 C 231.980469 193.238281 229.550781 193.238281 229.550781 191.621094 C 229.550781 190 231.980469 190 231.980469 191.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.179688 233.71875 C 219.179688 235.339844 216.75 235.339844 216.75 233.71875 C 216.75 232.101562 219.179688 232.101562 219.179688 233.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.125 70.910156 L 256.761719 73.746094 L 253.488281 73.746094 Z M 255.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.921875 117.726562 C 291.921875 119.347656 289.492188 119.347656 289.492188 117.726562 C 289.492188 116.105469 291.921875 116.105469 291.921875 117.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.523438 184.714844 C 255.523438 186.332031 253.09375 186.332031 253.09375 184.714844 C 253.09375 183.09375 255.523438 183.09375 255.523438 184.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.609375 258.84375 C 201.609375 260.464844 199.179688 260.464844 199.179688 258.84375 C 199.179688 257.222656 201.609375 257.222656 201.609375 258.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.386719 188.824219 C 289.386719 190.441406 286.957031 190.441406 286.957031 188.824219 C 286.957031 187.203125 289.386719 187.203125 289.386719 188.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.621094 70.910156 L 255.257812 73.746094 L 251.984375 73.746094 Z M 253.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.738281 236.710938 C 290.738281 238.332031 288.308594 238.332031 288.308594 236.710938 C 288.308594 235.089844 290.738281 235.089844 290.738281 236.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.769531 284.554688 C 295.769531 286.175781 293.339844 286.175781 293.339844 284.554688 C 293.339844 282.9375 295.769531 282.9375 295.769531 284.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.800781 224.027344 C 167.800781 225.644531 165.371094 225.644531 165.371094 224.027344 C 165.371094 222.40625 167.800781 222.40625 167.800781 224.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.003906 261.089844 C 290.003906 262.710938 287.574219 262.710938 287.574219 261.089844 C 287.574219 259.472656 290.003906 259.472656 290.003906 261.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.144531 227.46875 C 208.144531 229.085938 205.714844 229.085938 205.714844 227.46875 C 205.714844 225.847656 208.144531 225.847656 208.144531 227.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.230469 272.457031 C 198.230469 274.078125 195.800781 274.078125 195.800781 272.457031 C 195.800781 270.835938 198.230469 270.835938 198.230469 272.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.554688 323.472656 C 287.554688 325.09375 285.125 325.09375 285.125 323.472656 C 285.125 321.851562 287.554688 321.851562 287.554688 323.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.089844 265.136719 C 267.089844 266.753906 264.660156 266.753906 264.660156 265.136719 C 264.660156 263.515625 267.089844 263.515625 267.089844 265.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.515625 255.917969 C 254.515625 257.535156 252.085938 257.535156 252.085938 255.917969 C 252.085938 254.296875 254.515625 254.296875 254.515625 255.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.398438 210.492188 C 148.398438 212.109375 145.96875 212.109375 145.96875 210.492188 C 145.96875 208.871094 148.398438 208.871094 148.398438 210.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.933594 292.179688 C 189.933594 293.800781 187.503906 293.800781 187.503906 292.179688 C 187.503906 290.558594 189.933594 290.558594 189.933594 292.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.363281 248.882812 C 149.363281 250.503906 146.933594 250.503906 146.933594 248.882812 C 146.933594 247.265625 149.363281 247.265625 149.363281 248.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.640625 272.945312 C 328.640625 274.566406 326.210938 274.566406 326.210938 272.945312 C 326.210938 271.328125 328.640625 271.328125 328.640625 272.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.722656 226.027344 C 287.722656 227.648438 285.292969 227.648438 285.292969 226.027344 C 285.292969 224.40625 287.722656 224.40625 287.722656 226.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.273438 261.496094 C 275.273438 263.117188 272.84375 263.117188 272.84375 261.496094 C 272.84375 259.875 275.273438 259.875 275.273438 261.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.542969 250.332031 C 298.542969 251.953125 296.113281 251.953125 296.113281 250.332031 C 296.113281 248.710938 298.542969 248.710938 298.542969 250.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.632812 216.378906 C 243.632812 218 241.203125 218 241.203125 216.378906 C 241.203125 214.757812 243.632812 214.757812 243.632812 216.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.808594 223.203125 C 285.808594 224.820312 283.378906 224.820312 283.378906 223.203125 C 283.378906 221.582031 285.808594 221.582031 285.808594 223.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.527344 144.679688 C 131.527344 146.296875 129.097656 146.296875 129.097656 144.679688 C 129.097656 143.058594 131.527344 143.058594 131.527344 144.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.851562 299.648438 C 267.851562 301.269531 265.421875 301.269531 265.421875 299.648438 C 265.421875 298.03125 267.851562 298.03125 267.851562 299.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.976562 193.5 C 335.976562 195.117188 333.546875 195.117188 333.546875 193.5 C 333.546875 191.878906 335.976562 191.878906 335.976562 193.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.972656 251.136719 C 289.972656 252.757812 287.542969 252.757812 287.542969 251.136719 C 287.542969 249.519531 289.972656 249.519531 289.972656 251.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.71875 253.78125 C 312.71875 255.402344 310.285156 255.402344 310.285156 253.78125 C 310.285156 252.160156 312.71875 252.160156 312.71875 253.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.835938 219.746094 C 246.835938 221.367188 244.40625 221.367188 244.40625 219.746094 C 244.40625 218.128906 246.835938 218.128906 246.835938 219.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.128906 70.910156 L 150.765625 73.746094 L 147.492188 73.746094 Z M 149.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.125 218.859375 C 255.125 220.476562 252.695312 220.476562 252.695312 218.859375 C 252.695312 217.238281 255.125 217.238281 255.125 218.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.050781 265.625 C 284.050781 267.246094 281.621094 267.246094 281.621094 265.625 C 281.621094 264.003906 284.050781 264.003906 284.050781 265.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.585938 247.636719 C 285.585938 249.257812 283.15625 249.257812 283.15625 247.636719 C 283.15625 246.015625 285.585938 246.015625 285.585938 247.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.011719 189.171875 C 272.011719 190.789062 269.582031 190.789062 269.582031 189.171875 C 269.582031 187.550781 272.011719 187.550781 272.011719 189.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.140625 223.359375 C 259.140625 224.980469 256.710938 224.980469 256.710938 223.359375 C 256.710938 221.738281 259.140625 221.738281 259.140625 223.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.59375 181.386719 C 137.59375 183.003906 135.164062 183.003906 135.164062 181.386719 C 135.164062 179.765625 137.59375 179.765625 137.59375 181.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.664062 70.910156 L 261.300781 73.746094 L 258.027344 73.746094 Z M 259.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.589844 218.105469 C 280.589844 219.722656 278.160156 219.722656 278.160156 218.105469 C 278.160156 216.484375 280.589844 216.484375 280.589844 218.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.929688 307.082031 C 237.929688 308.703125 235.5 308.703125 235.5 307.082031 C 235.5 305.460938 237.929688 305.460938 237.929688 307.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.996094 70.910156 L 154.632812 73.746094 L 151.359375 73.746094 Z M 152.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.652344 265.097656 C 284.652344 266.71875 282.222656 266.71875 282.222656 265.097656 C 282.222656 263.480469 284.652344 263.480469 284.652344 265.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.753906 273.203125 C 183.753906 274.824219 181.324219 274.824219 181.324219 273.203125 C 181.324219 271.585938 183.753906 271.585938 183.753906 273.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.371094 238.546875 C 263.371094 240.167969 260.941406 240.167969 260.941406 238.546875 C 260.941406 236.925781 263.371094 236.925781 263.371094 238.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.746094 70.910156 L 279.382812 73.746094 L 276.109375 73.746094 Z M 277.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.007812 207.039062 C 173.007812 208.660156 170.578125 208.660156 170.578125 207.039062 C 170.578125 205.417969 173.007812 205.417969 173.007812 207.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.546875 375.824219 C 117.546875 377.441406 115.117188 377.441406 115.117188 375.824219 C 115.117188 374.203125 117.546875 374.203125 117.546875 375.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.59375 109.015625 C 148.59375 110.636719 146.164062 110.636719 146.164062 109.015625 C 146.164062 107.398438 148.59375 107.398438 148.59375 109.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.148438 338.03125 C 237.148438 339.652344 234.71875 339.652344 234.71875 338.03125 C 234.71875 336.410156 237.148438 336.410156 237.148438 338.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.113281 302.0625 C 293.113281 303.683594 290.683594 303.683594 290.683594 302.0625 C 290.683594 300.441406 293.113281 300.441406 293.113281 302.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.457031 164.847656 C 331.457031 166.46875 329.027344 166.46875 329.027344 164.847656 C 329.027344 163.226562 331.457031 163.226562 331.457031 164.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.953125 199.578125 C 288.953125 201.195312 286.523438 201.195312 286.523438 199.578125 C 286.523438 197.957031 288.953125 197.957031 288.953125 199.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.691406 251.183594 C 288.691406 252.804688 286.261719 252.804688 286.261719 251.183594 C 286.261719 249.566406 288.691406 249.566406 288.691406 251.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.128906 225.375 C 285.128906 226.996094 282.699219 226.996094 282.699219 225.375 C 282.699219 223.757812 285.128906 223.757812 285.128906 225.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.867188 70.910156 L 223.503906 73.746094 L 220.230469 73.746094 Z M 221.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 370.007812 226.179688 C 370.007812 227.800781 367.578125 227.800781 367.578125 226.179688 C 367.578125 224.5625 370.007812 224.5625 370.007812 226.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 363.621094 264.621094 C 363.621094 266.238281 361.191406 266.238281 361.191406 264.621094 C 361.191406 263 363.621094 263 363.621094 264.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.863281 151.835938 C 317.863281 153.457031 315.433594 153.457031 315.433594 151.835938 C 315.433594 150.21875 317.863281 150.21875 317.863281 151.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.242188 266.8125 C 227.242188 268.433594 224.8125 268.433594 224.8125 266.8125 C 224.8125 265.195312 227.242188 265.195312 227.242188 266.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.546875 316.128906 C 193.546875 317.75 191.117188 317.75 191.117188 316.128906 C 191.117188 314.507812 193.546875 314.507812 193.546875 316.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.042969 250.980469 C 274.042969 252.597656 271.613281 252.597656 271.613281 250.980469 C 271.613281 249.359375 274.042969 249.359375 274.042969 250.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.164062 293.375 C 338.164062 294.996094 335.734375 294.996094 335.734375 293.375 C 335.734375 291.757812 338.164062 291.757812 338.164062 293.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.769531 195.777344 C 268.769531 197.398438 266.339844 197.398438 266.339844 195.777344 C 266.339844 194.15625 268.769531 194.15625 268.769531 195.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.410156 318.765625 C 263.410156 320.382812 260.980469 320.382812 260.980469 318.765625 C 260.980469 317.144531 263.410156 317.144531 263.410156 318.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.328125 263.339844 C 265.328125 264.957031 262.898438 264.957031 262.898438 263.339844 C 262.898438 261.71875 265.328125 261.71875 265.328125 263.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.328125 255.820312 C 214.328125 257.441406 211.898438 257.441406 211.898438 255.820312 C 211.898438 254.199219 214.328125 254.199219 214.328125 255.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.546875 418.691406 L 211.183594 415.855469 L 207.910156 415.855469 Z M 209.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.863281 226.128906 C 279.863281 227.75 277.433594 227.75 277.433594 226.128906 C 277.433594 224.507812 279.863281 224.507812 279.863281 226.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.65625 215.039062 C 306.65625 216.65625 304.226562 216.65625 304.226562 215.039062 C 304.226562 213.417969 306.65625 213.417969 306.65625 215.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.40625 322.632812 C 217.40625 324.253906 214.976562 324.253906 214.976562 322.632812 C 214.976562 321.011719 217.40625 321.011719 217.40625 322.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.414062 312.714844 C 226.414062 314.335938 223.980469 314.335938 223.980469 312.714844 C 223.980469 311.09375 226.414062 311.09375 226.414062 312.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.0625 70.910156 L 178.699219 73.746094 L 175.425781 73.746094 Z M 177.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.367188 70.910156 L 265.003906 73.746094 L 261.730469 73.746094 Z M 263.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.941406 258.402344 C 211.941406 260.023438 209.511719 260.023438 209.511719 258.402344 C 209.511719 256.78125 211.941406 256.78125 211.941406 258.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.609375 305.867188 C 226.609375 307.488281 224.179688 307.488281 224.179688 305.867188 C 224.179688 304.25 226.609375 304.25 226.609375 305.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.039062 299.84375 C 277.039062 301.460938 274.609375 301.460938 274.609375 299.84375 C 274.609375 298.222656 277.039062 298.222656 277.039062 299.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.828125 254.902344 C 346.828125 256.523438 344.398438 256.523438 344.398438 254.902344 C 344.398438 253.285156 346.828125 253.285156 346.828125 254.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.757812 418.691406 L 244.394531 415.855469 L 241.121094 415.855469 Z M 242.757812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.835938 269.996094 C 207.835938 271.613281 205.40625 271.613281 205.40625 269.996094 C 205.40625 268.375 207.835938 268.375 207.835938 269.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.015625 70.910156 L 256.652344 73.746094 L 253.378906 73.746094 Z M 255.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.035156 192.140625 C 264.035156 193.757812 261.605469 193.757812 261.605469 192.140625 C 261.605469 190.519531 264.035156 190.519531 264.035156 192.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.621094 216.339844 C 222.621094 217.960938 220.191406 217.960938 220.191406 216.339844 C 220.191406 214.71875 222.621094 214.71875 222.621094 216.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.023438 270.171875 C 279.023438 271.789062 276.59375 271.789062 276.59375 270.171875 C 276.59375 268.550781 279.023438 268.550781 279.023438 270.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.6875 70.910156 L 286.324219 73.746094 L 283.050781 73.746094 Z M 284.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.699219 354.925781 C 268.699219 356.546875 266.269531 356.546875 266.269531 354.925781 C 266.269531 353.304688 268.699219 353.304688 268.699219 354.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.972656 196.960938 C 240.972656 198.582031 238.542969 198.582031 238.542969 196.960938 C 238.542969 195.34375 240.972656 195.34375 240.972656 196.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.816406 350.289062 C 304.816406 351.910156 302.386719 351.910156 302.386719 350.289062 C 302.386719 348.671875 304.816406 348.671875 304.816406 350.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.414062 147.238281 C 300.414062 148.859375 297.984375 148.859375 297.984375 147.238281 C 297.984375 145.617188 300.414062 145.617188 300.414062 147.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.535156 313.71875 C 185.535156 315.335938 183.105469 315.335938 183.105469 313.71875 C 183.105469 312.097656 185.535156 312.097656 185.535156 313.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.667969 152.878906 C 264.667969 154.496094 262.238281 154.496094 262.238281 152.878906 C 262.238281 151.257812 264.667969 151.257812 264.667969 152.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.027344 291.011719 C 289.027344 292.628906 286.597656 292.628906 286.597656 291.011719 C 286.597656 289.390625 289.027344 289.390625 289.027344 291.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.871094 227.503906 C 232.871094 229.121094 230.441406 229.121094 230.441406 227.503906 C 230.441406 225.882812 232.871094 225.882812 232.871094 227.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.183594 212.003906 C 238.183594 213.625 235.753906 213.625 235.753906 212.003906 C 235.753906 210.382812 238.183594 210.382812 238.183594 212.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.367188 243.097656 C 253.367188 244.71875 250.9375 244.71875 250.9375 243.097656 C 250.9375 241.480469 253.367188 241.480469 253.367188 243.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.546875 284.460938 C 224.546875 286.078125 222.117188 286.078125 222.117188 284.460938 C 222.117188 282.839844 224.546875 282.839844 224.546875 284.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.976562 418.691406 L 314.613281 415.855469 L 311.339844 415.855469 Z M 312.976562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.785156 290.792969 C 310.785156 292.414062 308.355469 292.414062 308.355469 290.792969 C 308.355469 289.171875 310.785156 289.171875 310.785156 290.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.90625 149.601562 C 215.90625 151.222656 213.476562 151.222656 213.476562 149.601562 C 213.476562 147.984375 215.90625 147.984375 215.90625 149.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.597656 70.910156 L 141.234375 73.746094 L 137.960938 73.746094 Z M 139.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.921875 267.648438 C 279.921875 269.265625 277.492188 269.265625 277.492188 267.648438 C 277.492188 266.027344 279.921875 266.027344 279.921875 267.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.097656 272.164062 C 278.097656 273.785156 275.667969 273.785156 275.667969 272.164062 C 275.667969 270.546875 278.097656 270.546875 278.097656 272.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.746094 358.472656 C 221.746094 360.09375 219.316406 360.09375 219.316406 358.472656 C 219.316406 356.855469 221.746094 356.855469 221.746094 358.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.171875 197.140625 C 264.171875 198.761719 261.742188 198.761719 261.742188 197.140625 C 261.742188 195.523438 264.171875 195.523438 264.171875 197.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.964844 290.921875 C 264.964844 292.539062 262.535156 292.539062 262.535156 290.921875 C 262.535156 289.300781 264.964844 289.300781 264.964844 290.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.664062 283.945312 C 312.664062 285.566406 310.234375 285.566406 310.234375 283.945312 C 310.234375 282.324219 312.664062 282.324219 312.664062 283.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.65625 253.667969 C 306.65625 255.289062 304.226562 255.289062 304.226562 253.667969 C 304.226562 252.046875 306.65625 252.046875 306.65625 253.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.851562 270.167969 C 282.851562 271.789062 280.421875 271.789062 280.421875 270.167969 C 280.421875 268.550781 282.851562 268.550781 282.851562 270.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.03125 335.941406 C 262.03125 337.5625 259.601562 337.5625 259.601562 335.941406 C 259.601562 334.324219 262.03125 334.324219 262.03125 335.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.933594 70.910156 L 137.570312 73.746094 L 134.296875 73.746094 Z M 135.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.242188 316.433594 C 174.242188 318.054688 171.8125 318.054688 171.8125 316.433594 C 171.8125 314.816406 174.242188 314.816406 174.242188 316.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.660156 261.386719 C 299.660156 263.007812 297.230469 263.007812 297.230469 261.386719 C 297.230469 259.765625 299.660156 259.765625 299.660156 261.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.609375 272.488281 C 274.609375 274.109375 272.179688 274.109375 272.179688 272.488281 C 272.179688 270.871094 274.609375 270.871094 274.609375 272.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.140625 343.835938 C 138.140625 345.453125 135.710938 345.453125 135.710938 343.835938 C 135.710938 342.214844 138.140625 342.214844 138.140625 343.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.882812 257.707031 C 117.882812 259.324219 115.453125 259.324219 115.453125 257.707031 C 115.453125 256.085938 117.882812 256.085938 117.882812 257.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.246094 220.394531 C 244.246094 222.015625 241.816406 222.015625 241.816406 220.394531 C 241.816406 218.777344 244.246094 218.777344 244.246094 220.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.398438 231.453125 C 282.398438 233.070312 279.96875 233.070312 279.96875 231.453125 C 279.96875 229.832031 282.398438 229.832031 282.398438 231.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.988281 153.230469 C 155.988281 154.847656 153.558594 154.847656 153.558594 153.230469 C 153.558594 151.609375 155.988281 151.609375 155.988281 153.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.554688 175.539062 C 235.554688 177.15625 233.125 177.15625 233.125 175.539062 C 233.125 173.917969 235.554688 173.917969 235.554688 175.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.992188 380.519531 C 225.992188 382.140625 223.5625 382.140625 223.5625 380.519531 C 223.5625 378.902344 225.992188 378.902344 225.992188 380.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.433594 332.050781 C 293.433594 333.671875 291.003906 333.671875 291.003906 332.050781 C 291.003906 330.429688 293.433594 330.429688 293.433594 332.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.902344 82.660156 C 190.902344 84.28125 188.472656 84.28125 188.472656 82.660156 C 188.472656 81.039062 190.902344 81.039062 190.902344 82.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.429688 361.964844 C 319.429688 363.582031 317 363.582031 317 361.964844 C 317 360.34375 319.429688 360.34375 319.429688 361.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.128906 233.167969 C 290.128906 234.789062 287.699219 234.789062 287.699219 233.167969 C 287.699219 231.550781 290.128906 231.550781 290.128906 233.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.847656 235.859375 C 226.847656 237.480469 224.417969 237.480469 224.417969 235.859375 C 224.417969 234.242188 226.847656 234.242188 226.847656 235.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.667969 315.167969 C 234.667969 316.785156 232.238281 316.785156 232.238281 315.167969 C 232.238281 313.546875 234.667969 313.546875 234.667969 315.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.179688 310.617188 C 266.179688 312.238281 263.75 312.238281 263.75 310.617188 C 263.75 308.996094 266.179688 308.996094 266.179688 310.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.894531 314.855469 C 165.894531 316.476562 163.464844 316.476562 163.464844 314.855469 C 163.464844 313.234375 165.894531 313.234375 165.894531 314.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.160156 183.324219 C 306.160156 184.945312 303.730469 184.945312 303.730469 183.324219 C 303.730469 181.703125 306.160156 181.703125 306.160156 183.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.65625 342.285156 C 206.65625 343.90625 204.226562 343.90625 204.226562 342.285156 C 204.226562 340.667969 206.65625 340.667969 206.65625 342.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.25 274.496094 C 241.25 276.117188 238.820312 276.117188 238.820312 274.496094 C 238.820312 272.875 241.25 272.875 241.25 274.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.421875 70.910156 L 291.054688 73.746094 L 287.785156 73.746094 Z M 289.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.550781 288.9375 C 315.550781 290.558594 313.117188 290.558594 313.117188 288.9375 C 313.117188 287.320312 315.550781 287.320312 315.550781 288.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.570312 214.292969 C 346.570312 215.914062 344.140625 215.914062 344.140625 214.292969 C 344.140625 212.675781 346.570312 212.675781 346.570312 214.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.042969 259.367188 C 244.042969 260.988281 241.609375 260.988281 241.609375 259.367188 C 241.609375 257.746094 244.042969 257.746094 244.042969 259.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.945312 265.136719 C 269.945312 266.757812 267.515625 266.757812 267.515625 265.136719 C 267.515625 263.519531 269.945312 263.519531 269.945312 265.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.710938 210.675781 C 174.710938 212.296875 172.28125 212.296875 172.28125 210.675781 C 172.28125 209.058594 174.710938 209.058594 174.710938 210.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.269531 264.273438 C 238.269531 265.890625 235.839844 265.890625 235.839844 264.273438 C 235.839844 262.652344 238.269531 262.652344 238.269531 264.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.59375 227.914062 C 232.59375 229.535156 230.164062 229.535156 230.164062 227.914062 C 230.164062 226.296875 232.59375 226.296875 232.59375 227.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.816406 218.769531 C 272.816406 220.390625 270.386719 220.390625 270.386719 218.769531 C 270.386719 217.148438 272.816406 217.148438 272.816406 218.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.011719 117.179688 C 119.011719 118.800781 116.582031 118.800781 116.582031 117.179688 C 116.582031 115.558594 119.011719 115.558594 119.011719 117.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.300781 227.824219 C 161.300781 229.445312 158.871094 229.445312 158.871094 227.824219 C 158.871094 226.207031 161.300781 226.207031 161.300781 227.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.902344 324.667969 C 279.902344 326.285156 277.472656 326.285156 277.472656 324.667969 C 277.472656 323.046875 279.902344 323.046875 279.902344 324.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.164062 327.765625 C 248.164062 329.382812 245.734375 329.382812 245.734375 327.765625 C 245.734375 326.144531 248.164062 326.144531 248.164062 327.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.855469 310.335938 C 268.855469 311.957031 266.425781 311.957031 266.425781 310.335938 C 266.425781 308.714844 268.855469 308.714844 268.855469 310.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.125 290.894531 C 235.125 292.515625 232.695312 292.515625 232.695312 290.894531 C 232.695312 289.273438 235.125 289.273438 235.125 290.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.742188 282.285156 C 178.742188 283.90625 176.308594 283.90625 176.308594 282.285156 C 176.308594 280.664062 178.742188 280.664062 178.742188 282.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.414062 263.222656 C 249.414062 264.84375 246.984375 264.84375 246.984375 263.222656 C 246.984375 261.601562 249.414062 261.601562 249.414062 263.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.488281 243.433594 C 223.488281 245.054688 221.058594 245.054688 221.058594 243.433594 C 221.058594 241.8125 223.488281 241.8125 223.488281 243.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.296875 70.910156 L 142.933594 73.746094 L 139.660156 73.746094 Z M 141.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.214844 241.835938 C 295.214844 243.457031 292.785156 243.457031 292.785156 241.835938 C 292.785156 240.21875 295.214844 240.21875 295.214844 241.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.605469 188.359375 C 319.605469 189.976562 317.175781 189.976562 317.175781 188.359375 C 317.175781 186.738281 319.605469 186.738281 319.605469 188.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.164062 336.296875 C 213.164062 337.917969 210.734375 337.917969 210.734375 336.296875 C 210.734375 334.675781 213.164062 334.675781 213.164062 336.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.636719 342.4375 C 194.636719 344.058594 192.207031 344.058594 192.207031 342.4375 C 192.207031 340.816406 194.636719 340.816406 194.636719 342.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.675781 366.367188 C 252.675781 367.988281 250.246094 367.988281 250.246094 366.367188 C 250.246094 364.746094 252.675781 364.746094 252.675781 366.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.925781 70.910156 L 211.5625 73.746094 L 208.289062 73.746094 Z M 209.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.886719 292.074219 C 237.886719 293.691406 235.457031 293.691406 235.457031 292.074219 C 235.457031 290.453125 237.886719 290.453125 237.886719 292.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.671875 418.691406 L 150.308594 415.855469 L 147.035156 415.855469 Z M 148.671875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.605469 418.691406 L 180.242188 415.855469 L 176.96875 415.855469 Z M 178.605469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.910156 248.480469 C 280.910156 250.097656 278.480469 250.097656 278.480469 248.480469 C 278.480469 246.859375 280.910156 246.859375 280.910156 248.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.628906 282.523438 C 269.628906 284.144531 267.199219 284.144531 267.199219 282.523438 C 267.199219 280.902344 269.628906 280.902344 269.628906 282.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.773438 311.558594 C 221.773438 313.179688 219.34375 313.179688 219.34375 311.558594 C 219.34375 309.9375 221.773438 309.9375 221.773438 311.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.964844 278.625 C 280.964844 280.246094 278.535156 280.246094 278.535156 278.625 C 278.535156 277.003906 280.964844 277.003906 280.964844 278.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.796875 239.449219 C 254.796875 241.066406 252.367188 241.066406 252.367188 239.449219 C 252.367188 237.828125 254.796875 237.828125 254.796875 239.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.078125 226.570312 C 265.078125 228.191406 262.648438 228.191406 262.648438 226.570312 C 262.648438 224.953125 265.078125 224.953125 265.078125 226.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.957031 418.691406 L 169.59375 415.855469 L 166.324219 415.855469 Z M 167.957031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.707031 338.988281 C 199.707031 340.609375 197.277344 340.609375 197.277344 338.988281 C 197.277344 337.367188 199.707031 337.367188 199.707031 338.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.566406 169.125 C 261.566406 170.746094 259.136719 170.746094 259.136719 169.125 C 259.136719 167.507812 261.566406 167.507812 261.566406 169.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.511719 323.949219 C 131.511719 325.570312 129.082031 325.570312 129.082031 323.949219 C 129.082031 322.328125 131.511719 322.328125 131.511719 323.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.433594 369.382812 C 165.433594 371.003906 163.003906 371.003906 163.003906 369.382812 C 163.003906 367.761719 165.433594 367.761719 165.433594 369.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.707031 325.878906 C 254.707031 327.5 252.277344 327.5 252.277344 325.878906 C 252.277344 324.257812 254.707031 324.257812 254.707031 325.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.734375 188.757812 C 329.734375 190.378906 327.304688 190.378906 327.304688 188.757812 C 327.304688 187.136719 329.734375 187.136719 329.734375 188.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.378906 312.035156 C 254.378906 313.65625 251.949219 313.65625 251.949219 312.035156 C 251.949219 310.414062 254.378906 310.414062 254.378906 312.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.035156 320.652344 C 269.035156 322.273438 266.605469 322.273438 266.605469 320.652344 C 266.605469 319.035156 269.035156 319.035156 269.035156 320.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.664062 250.585938 C 291.664062 252.207031 289.234375 252.207031 289.234375 250.585938 C 289.234375 248.96875 291.664062 248.96875 291.664062 250.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.304688 70.910156 L 306.941406 73.746094 L 303.667969 73.746094 Z M 305.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.300781 105.734375 C 322.300781 107.351562 319.871094 107.351562 319.871094 105.734375 C 319.871094 104.113281 322.300781 104.113281 322.300781 105.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.753906 244.390625 C 147.753906 246.011719 145.324219 246.011719 145.324219 244.390625 C 145.324219 242.769531 147.753906 242.769531 147.753906 244.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.414062 280.277344 C 134.414062 281.898438 131.984375 281.898438 131.984375 280.277344 C 131.984375 278.65625 134.414062 278.65625 134.414062 280.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.789062 227.222656 C 248.789062 228.84375 246.359375 228.84375 246.359375 227.222656 C 246.359375 225.605469 248.789062 225.605469 248.789062 227.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.113281 92.066406 C 234.113281 93.683594 231.683594 93.683594 231.683594 92.066406 C 231.683594 90.445312 234.113281 90.445312 234.113281 92.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.355469 288.511719 C 264.355469 290.132812 261.925781 290.132812 261.925781 288.511719 C 261.925781 286.890625 264.355469 286.890625 264.355469 288.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.292969 315.832031 C 244.292969 317.453125 241.859375 317.453125 241.859375 315.832031 C 241.859375 314.214844 244.292969 314.214844 244.292969 315.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.453125 299.777344 C 214.453125 301.398438 212.023438 301.398438 212.023438 299.777344 C 212.023438 298.15625 214.453125 298.15625 214.453125 299.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.011719 129.484375 C 248.011719 131.105469 245.582031 131.105469 245.582031 129.484375 C 245.582031 127.863281 248.011719 127.863281 248.011719 129.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.992188 70.910156 L 299.628906 73.746094 L 296.355469 73.746094 Z M 297.992188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.730469 318.8125 C 254.730469 320.429688 252.300781 320.429688 252.300781 318.8125 C 252.300781 317.191406 254.730469 317.191406 254.730469 318.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.792969 333.945312 C 230.792969 335.566406 228.359375 335.566406 228.359375 333.945312 C 228.359375 332.324219 230.792969 332.324219 230.792969 333.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.292969 418.691406 L 161.925781 415.855469 L 158.65625 415.855469 Z M 160.292969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.207031 390.214844 C 252.207031 391.835938 249.777344 391.835938 249.777344 390.214844 C 249.777344 388.597656 252.207031 388.597656 252.207031 390.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.847656 223.589844 C 289.847656 225.210938 287.417969 225.210938 287.417969 223.589844 C 287.417969 221.96875 289.847656 221.96875 289.847656 223.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.921875 244.738281 C 316.921875 246.359375 314.492188 246.359375 314.492188 244.738281 C 314.492188 243.117188 316.921875 243.117188 316.921875 244.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.015625 223.605469 C 289.015625 225.226562 286.585938 225.226562 286.585938 223.605469 C 286.585938 221.984375 289.015625 221.984375 289.015625 223.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.582031 280.113281 C 269.582031 281.730469 267.152344 281.730469 267.152344 280.113281 C 267.152344 278.492188 269.582031 278.492188 269.582031 280.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.070312 317.859375 C 275.070312 319.480469 272.640625 319.480469 272.640625 317.859375 C 272.640625 316.238281 275.070312 316.238281 275.070312 317.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.191406 304.582031 C 271.191406 306.203125 268.761719 306.203125 268.761719 304.582031 C 268.761719 302.960938 271.191406 302.960938 271.191406 304.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.949219 251.480469 C 281.949219 253.101562 279.519531 253.101562 279.519531 251.480469 C 279.519531 249.863281 281.949219 249.863281 281.949219 251.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.734375 263.28125 C 244.734375 264.902344 242.304688 264.902344 242.304688 263.28125 C 242.304688 261.660156 244.734375 261.660156 244.734375 263.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.816406 268.316406 C 261.816406 269.933594 259.386719 269.933594 259.386719 268.316406 C 259.386719 266.695312 261.816406 266.695312 261.816406 268.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.625 290.226562 C 240.625 291.847656 238.195312 291.847656 238.195312 290.226562 C 238.195312 288.609375 240.625 288.609375 240.625 290.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.824219 275.367188 C 242.824219 276.984375 240.394531 276.984375 240.394531 275.367188 C 240.394531 273.746094 242.824219 273.746094 242.824219 275.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.71875 237.566406 C 250.71875 239.1875 248.285156 239.1875 248.285156 237.566406 C 248.285156 235.945312 250.71875 235.945312 250.71875 237.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.023438 418.691406 L 189.660156 415.855469 L 186.386719 415.855469 Z M 188.023438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.230469 248.378906 C 292.230469 249.996094 289.800781 249.996094 289.800781 248.378906 C 289.800781 246.757812 292.230469 246.757812 292.230469 248.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.390625 418.691406 L 265.027344 415.855469 L 261.753906 415.855469 Z M 263.390625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.996094 162.972656 C 278.996094 164.59375 276.566406 164.59375 276.566406 162.972656 C 276.566406 161.355469 278.996094 161.355469 278.996094 162.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.304688 173.414062 C 272.304688 175.035156 269.875 175.035156 269.875 173.414062 C 269.875 171.792969 272.304688 171.792969 272.304688 173.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.640625 246.867188 C 294.640625 248.488281 292.210938 248.488281 292.210938 246.867188 C 292.210938 245.25 294.640625 245.25 294.640625 246.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.84375 176.679688 C 138.84375 178.300781 136.414062 178.300781 136.414062 176.679688 C 136.414062 175.058594 138.84375 175.058594 138.84375 176.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.835938 236.300781 C 305.835938 237.921875 303.40625 237.921875 303.40625 236.300781 C 303.40625 234.683594 305.835938 234.683594 305.835938 236.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.074219 278.5 C 318.074219 280.121094 315.644531 280.121094 315.644531 278.5 C 315.644531 276.878906 318.074219 276.878906 318.074219 278.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.246094 303.359375 C 242.246094 304.980469 239.816406 304.980469 239.816406 303.359375 C 239.816406 301.738281 242.246094 301.738281 242.246094 303.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.097656 284.835938 C 176.097656 286.457031 173.667969 286.457031 173.667969 284.835938 C 173.667969 283.214844 176.097656 283.214844 176.097656 284.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.617188 213.429688 C 258.617188 215.050781 256.1875 215.050781 256.1875 213.429688 C 256.1875 211.8125 258.617188 211.8125 258.617188 213.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 370.511719 247.101562 C 370.511719 248.71875 368.082031 248.71875 368.082031 247.101562 C 368.082031 245.480469 370.511719 245.480469 370.511719 247.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.488281 283.214844 C 308.488281 284.835938 306.058594 284.835938 306.058594 283.214844 C 306.058594 281.59375 308.488281 281.59375 308.488281 283.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.097656 306.027344 C 124.097656 307.644531 121.664062 307.644531 121.664062 306.027344 C 121.664062 304.40625 124.097656 304.40625 124.097656 306.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.515625 292.539062 C 155.515625 294.15625 153.085938 294.15625 153.085938 292.539062 C 153.085938 290.917969 155.515625 290.917969 155.515625 292.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.328125 264.410156 C 233.328125 266.027344 230.894531 266.027344 230.894531 264.410156 C 230.894531 262.789062 233.328125 262.789062 233.328125 264.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.984375 272.703125 C 204.984375 274.324219 202.554688 274.324219 202.554688 272.703125 C 202.554688 271.085938 204.984375 271.085938 204.984375 272.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.132812 244.335938 C 264.132812 245.953125 261.703125 245.953125 261.703125 244.335938 C 261.703125 242.714844 264.132812 242.714844 264.132812 244.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.714844 210.972656 C 338.714844 212.59375 336.285156 212.59375 336.285156 210.972656 C 336.285156 209.355469 338.714844 209.355469 338.714844 210.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.820312 327.488281 C 271.820312 329.109375 269.390625 329.109375 269.390625 327.488281 C 269.390625 325.871094 271.820312 325.871094 271.820312 327.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238 310.914062 C 238 312.53125 235.570312 312.53125 235.570312 310.914062 C 235.570312 309.292969 238 309.292969 238 310.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.53125 340.890625 C 255.53125 342.511719 253.101562 342.511719 253.101562 340.890625 C 253.101562 339.269531 255.53125 339.269531 255.53125 340.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.636719 227.011719 C 253.636719 228.628906 251.207031 228.628906 251.207031 227.011719 C 251.207031 225.390625 253.636719 225.390625 253.636719 227.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.734375 214.265625 C 246.734375 215.882812 244.304688 215.882812 244.304688 214.265625 C 244.304688 212.644531 246.734375 212.644531 246.734375 214.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.898438 108.179688 C 287.898438 109.796875 285.46875 109.796875 285.46875 108.179688 C 285.46875 106.558594 287.898438 106.558594 287.898438 108.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.582031 271.546875 C 207.582031 273.164062 205.152344 273.164062 205.152344 271.546875 C 205.152344 269.925781 207.582031 269.925781 207.582031 271.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.480469 239.8125 C 279.480469 241.433594 277.050781 241.433594 277.050781 239.8125 C 277.050781 238.191406 279.480469 238.191406 279.480469 239.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.972656 286.835938 C 206.972656 288.457031 204.542969 288.457031 204.542969 286.835938 C 204.542969 285.214844 206.972656 285.214844 206.972656 286.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.15625 70.910156 L 140.792969 73.746094 L 137.519531 73.746094 Z M 139.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.007812 70.910156 L 147.644531 73.746094 L 144.371094 73.746094 Z M 146.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.824219 289.871094 C 244.824219 291.488281 242.394531 291.488281 242.394531 289.871094 C 242.394531 288.25 244.824219 288.25 244.824219 289.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.035156 288.605469 C 261.035156 290.222656 258.605469 290.222656 258.605469 288.605469 C 258.605469 286.984375 261.035156 286.984375 261.035156 288.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.628906 269.742188 C 294.628906 271.359375 292.199219 271.359375 292.199219 269.742188 C 292.199219 268.121094 294.628906 268.121094 294.628906 269.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.648438 282.949219 C 182.648438 284.566406 180.21875 284.566406 180.21875 282.949219 C 180.21875 281.328125 182.648438 281.328125 182.648438 282.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.648438 285.800781 C 208.648438 287.421875 206.21875 287.421875 206.21875 285.800781 C 206.21875 284.183594 208.648438 284.183594 208.648438 285.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.429688 264.445312 C 262.429688 266.0625 260 266.0625 260 264.445312 C 260 262.824219 262.429688 262.824219 262.429688 264.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.011719 207.59375 C 235.011719 209.214844 232.582031 209.214844 232.582031 207.59375 C 232.582031 205.976562 235.011719 205.976562 235.011719 207.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.382812 255.359375 C 293.382812 256.976562 290.953125 256.976562 290.953125 255.359375 C 290.953125 253.738281 293.382812 253.738281 293.382812 255.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.589844 254.648438 C 300.589844 256.269531 298.160156 256.269531 298.160156 254.648438 C 298.160156 253.03125 300.589844 253.03125 300.589844 254.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.574219 258.226562 C 229.574219 259.847656 227.144531 259.847656 227.144531 258.226562 C 227.144531 256.609375 229.574219 256.609375 229.574219 258.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.671875 259.132812 C 230.671875 260.753906 228.242188 260.753906 228.242188 259.132812 C 228.242188 257.511719 230.671875 257.511719 230.671875 259.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.15625 296.941406 C 281.15625 298.5625 278.726562 298.5625 278.726562 296.941406 C 278.726562 295.320312 281.15625 295.320312 281.15625 296.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.28125 194.289062 C 302.28125 195.910156 299.851562 195.910156 299.851562 194.289062 C 299.851562 192.671875 302.28125 192.671875 302.28125 194.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.671875 280.613281 C 166.671875 282.234375 164.242188 282.234375 164.242188 280.613281 C 164.242188 278.992188 166.671875 278.992188 166.671875 280.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.382812 310.550781 C 232.382812 312.171875 229.953125 312.171875 229.953125 310.550781 C 229.953125 308.933594 232.382812 308.933594 232.382812 310.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.859375 286.164062 C 321.859375 287.785156 319.429688 287.785156 319.429688 286.164062 C 319.429688 284.546875 321.859375 284.546875 321.859375 286.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.621094 261.886719 C 246.621094 263.507812 244.191406 263.507812 244.191406 261.886719 C 244.191406 260.265625 246.621094 260.265625 246.621094 261.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.226562 303.671875 C 308.226562 305.289062 305.796875 305.289062 305.796875 303.671875 C 305.796875 302.050781 308.226562 302.050781 308.226562 303.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.53125 321.773438 C 320.53125 323.390625 318.101562 323.390625 318.101562 321.773438 C 318.101562 320.152344 320.53125 320.152344 320.53125 321.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.1875 191.714844 C 269.1875 193.332031 266.757812 193.332031 266.757812 191.714844 C 266.757812 190.09375 269.1875 190.09375 269.1875 191.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.003906 251.683594 C 289.003906 253.304688 286.574219 253.304688 286.574219 251.683594 C 286.574219 250.0625 289.003906 250.0625 289.003906 251.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.023438 247.921875 C 274.023438 249.539062 271.59375 249.539062 271.59375 247.921875 C 271.59375 246.300781 274.023438 246.300781 274.023438 247.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.375 211.144531 C 245.375 212.765625 242.945312 212.765625 242.945312 211.144531 C 242.945312 209.523438 245.375 209.523438 245.375 211.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.730469 268.328125 C 189.730469 269.945312 187.300781 269.945312 187.300781 268.328125 C 187.300781 266.707031 189.730469 266.707031 189.730469 268.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.859375 70.910156 L 145.496094 73.746094 L 142.222656 73.746094 Z M 143.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.195312 198.472656 C 126.195312 200.09375 123.765625 200.09375 123.765625 198.472656 C 123.765625 196.851562 126.195312 196.851562 126.195312 198.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.492188 70.910156 L 203.128906 73.746094 L 199.855469 73.746094 Z M 201.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.675781 70.910156 L 238.3125 73.746094 L 235.039062 73.746094 Z M 236.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.648438 147.640625 C 274.648438 149.261719 272.21875 149.261719 272.21875 147.640625 C 272.21875 146.019531 274.648438 146.019531 274.648438 147.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.394531 283.625 C 224.394531 285.246094 221.964844 285.246094 221.964844 283.625 C 221.964844 282.003906 224.394531 282.003906 224.394531 283.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.660156 253.226562 C 233.660156 254.847656 231.230469 254.847656 231.230469 253.226562 C 231.230469 251.605469 233.660156 251.605469 233.660156 253.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 395.6875 231.492188 C 395.6875 233.113281 393.257812 233.113281 393.257812 231.492188 C 393.257812 229.871094 395.6875 229.871094 395.6875 231.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.070312 263.1875 C 205.070312 264.808594 202.640625 264.808594 202.640625 263.1875 C 202.640625 261.570312 205.070312 261.570312 205.070312 263.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.285156 280.078125 C 223.285156 281.699219 220.855469 281.699219 220.855469 280.078125 C 220.855469 278.460938 223.285156 278.460938 223.285156 280.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.652344 312.539062 C 248.652344 314.160156 246.222656 314.160156 246.222656 312.539062 C 246.222656 310.921875 248.652344 310.921875 248.652344 312.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.539062 246.785156 C 294.539062 248.40625 292.109375 248.40625 292.109375 246.785156 C 292.109375 245.167969 294.539062 245.167969 294.539062 246.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.3125 248.71875 C 260.3125 250.335938 257.882812 250.335938 257.882812 248.71875 C 257.882812 247.097656 260.3125 247.097656 260.3125 248.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.894531 242.457031 C 286.894531 244.078125 284.464844 244.078125 284.464844 242.457031 C 284.464844 240.835938 286.894531 240.835938 286.894531 242.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.824219 255.933594 C 196.824219 257.550781 194.394531 257.550781 194.394531 255.933594 C 194.394531 254.3125 196.824219 254.3125 196.824219 255.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.863281 219.886719 C 307.863281 221.507812 305.433594 221.507812 305.433594 219.886719 C 305.433594 218.265625 307.863281 218.265625 307.863281 219.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.089844 70.910156 L 141.726562 73.746094 L 138.453125 73.746094 Z M 140.089844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.453125 418.691406 L 130.085938 415.855469 L 126.816406 415.855469 Z M 128.453125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.199219 418.691406 L 148.835938 415.855469 L 145.5625 415.855469 Z M 147.199219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.789062 195.554688 C 142.789062 197.175781 140.359375 197.175781 140.359375 195.554688 C 140.359375 193.933594 142.789062 193.933594 142.789062 195.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.589844 318.414062 C 259.589844 320.035156 257.160156 320.035156 257.160156 318.414062 C 257.160156 316.796875 259.589844 316.796875 259.589844 318.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.273438 299.609375 C 284.273438 301.230469 281.84375 301.230469 281.84375 299.609375 C 281.84375 297.992188 284.273438 297.992188 284.273438 299.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.035156 303.523438 C 260.035156 305.144531 257.605469 305.144531 257.605469 303.523438 C 257.605469 301.902344 260.035156 301.902344 260.035156 303.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.261719 404.246094 C 190.261719 405.863281 187.832031 405.863281 187.832031 404.246094 C 187.832031 402.625 190.261719 402.625 190.261719 404.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.699219 236.101562 C 262.699219 237.71875 260.269531 237.71875 260.269531 236.101562 C 260.269531 234.480469 262.699219 234.480469 262.699219 236.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.640625 260.40625 C 246.640625 262.023438 244.210938 262.023438 244.210938 260.40625 C 244.210938 258.785156 246.640625 258.785156 246.640625 260.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.058594 252.472656 C 189.058594 254.09375 186.628906 254.09375 186.628906 252.472656 C 186.628906 250.855469 189.058594 250.855469 189.058594 252.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.804688 200.746094 C 203.804688 202.363281 201.375 202.363281 201.375 200.746094 C 201.375 199.125 203.804688 199.125 203.804688 200.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.925781 229.554688 C 231.925781 231.175781 229.496094 231.175781 229.496094 229.554688 C 229.496094 227.9375 231.925781 227.9375 231.925781 229.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.828125 284.777344 C 196.828125 286.398438 194.398438 286.398438 194.398438 284.777344 C 194.398438 283.15625 196.828125 283.15625 196.828125 284.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.3125 270.019531 C 310.3125 271.640625 307.882812 271.640625 307.882812 270.019531 C 307.882812 268.398438 310.3125 268.398438 310.3125 270.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.75 249.472656 C 267.75 251.089844 265.320312 251.089844 265.320312 249.472656 C 265.320312 247.851562 267.75 247.851562 267.75 249.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.632812 225.738281 C 269.632812 227.359375 267.203125 227.359375 267.203125 225.738281 C 267.203125 224.121094 269.632812 224.121094 269.632812 225.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.886719 234.472656 C 295.886719 236.09375 293.453125 236.09375 293.453125 234.472656 C 293.453125 232.851562 295.886719 232.851562 295.886719 234.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.273438 199.710938 C 255.273438 201.332031 252.84375 201.332031 252.84375 199.710938 C 252.84375 198.089844 255.273438 198.089844 255.273438 199.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.660156 186.445312 C 283.660156 188.066406 281.230469 188.066406 281.230469 186.445312 C 281.230469 184.824219 283.660156 184.824219 283.660156 186.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.117188 163.148438 C 221.117188 164.769531 218.6875 164.769531 218.6875 163.148438 C 218.6875 161.527344 221.117188 161.527344 221.117188 163.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.507812 143.5 C 247.507812 145.117188 245.078125 145.117188 245.078125 143.5 C 245.078125 141.878906 247.507812 141.878906 247.507812 143.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.113281 244.625 C 244.113281 246.246094 241.679688 246.246094 241.679688 244.625 C 241.679688 243.003906 244.113281 243.003906 244.113281 244.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.234375 290.960938 C 261.234375 292.578125 258.804688 292.578125 258.804688 290.960938 C 258.804688 289.339844 261.234375 289.339844 261.234375 290.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.011719 256.183594 C 249.011719 257.804688 246.582031 257.804688 246.582031 256.183594 C 246.582031 254.5625 249.011719 254.5625 249.011719 256.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.570312 246.78125 C 269.570312 248.402344 267.140625 248.402344 267.140625 246.78125 C 267.140625 245.160156 269.570312 245.160156 269.570312 246.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.574219 70.910156 L 259.210938 73.746094 L 255.9375 73.746094 Z M 257.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.179688 273.558594 C 254.179688 275.179688 251.75 275.179688 251.75 273.558594 C 251.75 271.941406 254.179688 271.941406 254.179688 273.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.195312 200.945312 C 203.195312 202.5625 200.761719 202.5625 200.761719 200.945312 C 200.761719 199.324219 203.195312 199.324219 203.195312 200.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.273438 216.332031 C 275.273438 217.953125 272.84375 217.953125 272.84375 216.332031 C 272.84375 214.710938 275.273438 214.710938 275.273438 216.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.082031 345.253906 C 166.082031 346.875 163.652344 346.875 163.652344 345.253906 C 163.652344 343.632812 166.082031 343.632812 166.082031 345.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.105469 285.980469 C 238.105469 287.601562 235.675781 287.601562 235.675781 285.980469 C 235.675781 284.359375 238.105469 284.359375 238.105469 285.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.652344 249.769531 C 210.652344 251.390625 208.222656 251.390625 208.222656 249.769531 C 208.222656 248.148438 210.652344 248.148438 210.652344 249.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.097656 241.976562 C 283.097656 243.597656 280.667969 243.597656 280.667969 241.976562 C 280.667969 240.355469 283.097656 240.355469 283.097656 241.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.980469 247.6875 C 275.980469 249.308594 273.550781 249.308594 273.550781 247.6875 C 273.550781 246.066406 275.980469 246.066406 275.980469 247.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 374.058594 255.8125 C 374.058594 257.433594 371.628906 257.433594 371.628906 255.8125 C 371.628906 254.191406 374.058594 254.191406 374.058594 255.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.746094 163.972656 C 255.746094 165.589844 253.316406 165.589844 253.316406 163.972656 C 253.316406 162.351562 255.746094 162.351562 255.746094 163.972656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.753906 237.460938 C 153.753906 239.082031 151.324219 239.082031 151.324219 237.460938 C 151.324219 235.839844 153.753906 235.839844 153.753906 237.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.9375 247.601562 C 257.9375 249.222656 255.503906 249.222656 255.503906 247.601562 C 255.503906 245.984375 257.9375 245.984375 257.9375 247.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.449219 266.53125 C 257.449219 268.152344 255.019531 268.152344 255.019531 266.53125 C 255.019531 264.914062 257.449219 264.914062 257.449219 266.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.957031 304.605469 C 269.957031 306.222656 267.527344 306.222656 267.527344 304.605469 C 267.527344 302.984375 269.957031 302.984375 269.957031 304.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.027344 329.585938 C 238.027344 331.207031 235.597656 331.207031 235.597656 329.585938 C 235.597656 327.964844 238.027344 327.964844 238.027344 329.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.65625 302.503906 C 300.65625 304.121094 298.226562 304.121094 298.226562 302.503906 C 298.226562 300.882812 300.65625 300.882812 300.65625 302.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.277344 239.054688 C 300.277344 240.671875 297.847656 240.671875 297.847656 239.054688 C 297.847656 237.433594 300.277344 237.433594 300.277344 239.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.585938 270.800781 C 246.585938 272.421875 244.152344 272.421875 244.152344 270.800781 C 244.152344 269.179688 246.585938 269.179688 246.585938 270.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.132812 290.019531 C 239.132812 291.640625 236.703125 291.640625 236.703125 290.019531 C 236.703125 288.398438 239.132812 288.398438 239.132812 290.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.863281 157.308594 C 273.863281 158.929688 271.433594 158.929688 271.433594 157.308594 C 271.433594 155.6875 273.863281 155.6875 273.863281 157.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.027344 283.191406 C 229.027344 284.8125 226.59375 284.8125 226.59375 283.191406 C 226.59375 281.570312 229.027344 281.570312 229.027344 283.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.554688 269.035156 C 244.554688 270.65625 242.125 270.65625 242.125 269.035156 C 242.125 267.414062 244.554688 267.414062 244.554688 269.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.109375 224.792969 C 239.109375 226.410156 236.679688 226.410156 236.679688 224.792969 C 236.679688 223.171875 239.109375 223.171875 239.109375 224.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.582031 282.109375 C 276.582031 283.730469 274.152344 283.730469 274.152344 282.109375 C 274.152344 280.488281 276.582031 280.488281 276.582031 282.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.085938 242.882812 C 318.085938 244.503906 315.65625 244.503906 315.65625 242.882812 C 315.65625 241.261719 318.085938 241.261719 318.085938 242.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.949219 155.597656 C 114.949219 157.21875 112.519531 157.21875 112.519531 155.597656 C 112.519531 153.980469 114.949219 153.980469 114.949219 155.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.390625 70.910156 L 129.027344 73.746094 L 125.753906 73.746094 Z M 127.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.75 208.3125 C 251.75 209.933594 249.320312 209.933594 249.320312 208.3125 C 249.320312 206.695312 251.75 206.695312 251.75 208.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.050781 418.691406 L 153.683594 415.855469 L 150.414062 415.855469 Z M 152.050781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.34375 280.074219 C 255.34375 281.691406 252.914062 281.691406 252.914062 280.074219 C 252.914062 278.453125 255.34375 278.453125 255.34375 280.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.136719 273.171875 C 283.136719 274.792969 280.707031 274.792969 280.707031 273.171875 C 280.707031 271.554688 283.136719 271.554688 283.136719 273.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.246094 101.882812 C 195.246094 103.503906 192.816406 103.503906 192.816406 101.882812 C 192.816406 100.261719 195.246094 100.261719 195.246094 101.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.265625 132.445312 C 132.265625 134.0625 129.835938 134.0625 129.835938 132.445312 C 129.835938 130.824219 132.265625 130.824219 132.265625 132.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.160156 163.582031 C 271.160156 165.199219 268.730469 165.199219 268.730469 163.582031 C 268.730469 161.960938 271.160156 161.960938 271.160156 163.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.136719 274.898438 C 284.136719 276.515625 281.707031 276.515625 281.707031 274.898438 C 281.707031 273.277344 284.136719 273.277344 284.136719 274.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.832031 70.910156 L 319.46875 73.746094 L 316.195312 73.746094 Z M 317.832031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.984375 70.910156 L 273.621094 73.746094 L 270.347656 73.746094 Z M 271.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.722656 312.496094 C 285.722656 314.117188 283.292969 314.117188 283.292969 312.496094 C 283.292969 310.875 285.722656 310.875 285.722656 312.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.234375 418.691406 L 202.871094 415.855469 L 199.597656 415.855469 Z M 201.234375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.851562 418.691406 L 327.488281 415.855469 L 324.214844 415.855469 Z M 325.851562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 400.148438 418.691406 L 401.785156 415.855469 L 398.511719 415.855469 Z M 400.148438 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.351562 418.691406 L 400.988281 415.855469 L 397.714844 415.855469 Z M 399.351562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.195312 418.691406 L 370.832031 415.855469 L 367.558594 415.855469 Z M 369.195312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.914062 293.984375 C 252.914062 295.605469 250.484375 295.605469 250.484375 293.984375 C 250.484375 292.367188 252.914062 292.367188 252.914062 293.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.667969 279.585938 C 230.667969 281.207031 228.238281 281.207031 228.238281 279.585938 C 228.238281 277.96875 230.667969 277.96875 230.667969 279.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.542969 70.910156 L 160.179688 73.746094 L 156.90625 73.746094 Z M 158.542969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.757812 70.910156 L 183.394531 73.746094 L 180.121094 73.746094 Z M 181.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.273438 281.632812 C 265.273438 283.253906 262.84375 283.253906 262.84375 281.632812 C 262.84375 280.015625 265.273438 280.015625 265.273438 281.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.867188 173.265625 C 251.867188 174.882812 249.4375 174.882812 249.4375 173.265625 C 249.4375 171.644531 251.867188 171.644531 251.867188 173.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.617188 242.210938 C 266.617188 243.832031 264.1875 243.832031 264.1875 242.210938 C 264.1875 240.589844 266.617188 240.589844 266.617188 242.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.894531 418.691406 L 143.53125 415.855469 L 140.257812 415.855469 Z M 141.894531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.738281 179.980469 C 188.738281 181.597656 186.308594 181.597656 186.308594 179.980469 C 186.308594 178.359375 188.738281 178.359375 188.738281 179.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.203125 215.957031 C 230.203125 217.578125 227.773438 217.578125 227.773438 215.957031 C 227.773438 214.339844 230.203125 214.339844 230.203125 215.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.117188 133.550781 C 117.117188 135.171875 114.6875 135.171875 114.6875 133.550781 C 114.6875 131.933594 117.117188 131.933594 117.117188 133.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.605469 261.90625 C 211.605469 263.523438 209.175781 263.523438 209.175781 261.90625 C 209.175781 260.285156 211.605469 260.285156 211.605469 261.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.429688 220.507812 C 212.429688 222.125 210 222.125 210 220.507812 C 210 218.886719 212.429688 218.886719 212.429688 220.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.546875 244.808594 C 233.546875 246.429688 231.113281 246.429688 231.113281 244.808594 C 231.113281 243.1875 233.546875 243.1875 233.546875 244.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.070312 257.257812 C 115.070312 258.878906 112.640625 258.878906 112.640625 257.257812 C 112.640625 255.640625 115.070312 255.640625 115.070312 257.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.707031 382.058594 C 261.707031 383.679688 259.277344 383.679688 259.277344 382.058594 C 259.277344 380.441406 261.707031 380.441406 261.707031 382.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.804688 268.980469 C 312.804688 270.601562 310.375 270.601562 310.375 268.980469 C 310.375 267.363281 312.804688 267.363281 312.804688 268.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.511719 418.691406 L 171.148438 415.855469 L 167.875 415.855469 Z M 169.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.769531 313.765625 C 156.769531 315.386719 154.339844 315.386719 154.339844 313.765625 C 154.339844 312.144531 156.769531 312.144531 156.769531 313.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.566406 212.367188 C 276.566406 213.984375 274.136719 213.984375 274.136719 212.367188 C 274.136719 210.746094 276.566406 210.746094 276.566406 212.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.769531 149.515625 C 219.769531 151.136719 217.339844 151.136719 217.339844 149.515625 C 217.339844 147.894531 219.769531 147.894531 219.769531 149.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.929688 182.730469 C 203.929688 184.347656 201.5 184.347656 201.5 182.730469 C 201.5 181.109375 203.929688 181.109375 203.929688 182.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.207031 256.105469 C 251.207031 257.726562 248.777344 257.726562 248.777344 256.105469 C 248.777344 254.484375 251.207031 254.484375 251.207031 256.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.050781 213.976562 C 258.050781 215.597656 255.621094 215.597656 255.621094 213.976562 C 255.621094 212.359375 258.050781 212.359375 258.050781 213.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.039062 254.183594 C 315.039062 255.804688 312.609375 255.804688 312.609375 254.183594 C 312.609375 252.5625 315.039062 252.5625 315.039062 254.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.871094 168.285156 C 248.871094 169.90625 246.441406 169.90625 246.441406 168.285156 C 246.441406 166.664062 248.871094 166.664062 248.871094 168.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.136719 169.773438 C 228.136719 171.394531 225.707031 171.394531 225.707031 169.773438 C 225.707031 168.15625 228.136719 168.15625 228.136719 169.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.441406 270.125 C 302.441406 271.746094 300.011719 271.746094 300.011719 270.125 C 300.011719 268.503906 302.441406 268.503906 302.441406 270.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.863281 243.332031 C 304.863281 244.949219 302.433594 244.949219 302.433594 243.332031 C 302.433594 241.710938 304.863281 241.710938 304.863281 243.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.265625 237.007812 C 265.265625 238.628906 262.835938 238.628906 262.835938 237.007812 C 262.835938 235.390625 265.265625 235.390625 265.265625 237.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.460938 177.824219 C 222.460938 179.441406 220.03125 179.441406 220.03125 177.824219 C 220.03125 176.203125 222.460938 176.203125 222.460938 177.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.167969 176.960938 C 204.167969 178.582031 201.738281 178.582031 201.738281 176.960938 C 201.738281 175.339844 204.167969 175.339844 204.167969 176.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.277344 124.410156 C 207.277344 126.027344 204.847656 126.027344 204.847656 124.410156 C 204.847656 122.789062 207.277344 122.789062 207.277344 124.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.871094 263.535156 C 178.871094 265.15625 176.441406 265.15625 176.441406 263.535156 C 176.441406 261.914062 178.871094 261.914062 178.871094 263.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.851562 299.6875 C 271.851562 301.308594 269.421875 301.308594 269.421875 299.6875 C 269.421875 298.066406 271.851562 298.066406 271.851562 299.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.816406 191.9375 C 291.816406 193.554688 289.386719 193.554688 289.386719 191.9375 C 289.386719 190.316406 291.816406 190.316406 291.816406 191.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.644531 261.726562 C 312.644531 263.34375 310.214844 263.34375 310.214844 261.726562 C 310.214844 260.105469 312.644531 260.105469 312.644531 261.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.804688 256.964844 C 215.804688 258.585938 213.375 258.585938 213.375 256.964844 C 213.375 255.347656 215.804688 255.347656 215.804688 256.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.695312 359 C 248.695312 360.617188 246.265625 360.617188 246.265625 359 C 246.265625 357.378906 248.695312 357.378906 248.695312 359 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.695312 216.054688 C 264.695312 217.675781 262.265625 217.675781 262.265625 216.054688 C 262.265625 214.433594 264.695312 214.433594 264.695312 216.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.675781 378.125 C 260.675781 379.746094 258.246094 379.746094 258.246094 378.125 C 258.246094 376.507812 260.675781 376.507812 260.675781 378.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.417969 160.730469 C 266.417969 162.351562 263.988281 162.351562 263.988281 160.730469 C 263.988281 159.109375 266.417969 159.109375 266.417969 160.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.925781 226.210938 C 239.925781 227.832031 237.496094 227.832031 237.496094 226.210938 C 237.496094 224.589844 239.925781 224.589844 239.925781 226.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.039062 250.3125 C 301.039062 251.933594 298.609375 251.933594 298.609375 250.3125 C 298.609375 248.695312 301.039062 248.695312 301.039062 250.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.488281 203.726562 C 350.488281 205.347656 348.058594 205.347656 348.058594 203.726562 C 348.058594 202.105469 350.488281 202.105469 350.488281 203.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.519531 418.691406 L 253.15625 415.855469 L 249.882812 415.855469 Z M 251.519531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.378906 208.898438 C 194.378906 210.519531 191.949219 210.519531 191.949219 208.898438 C 191.949219 207.277344 194.378906 207.277344 194.378906 208.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.636719 244.277344 C 238.636719 245.894531 236.207031 245.894531 236.207031 244.277344 C 236.207031 242.65625 238.636719 242.65625 238.636719 244.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.761719 218.726562 C 220.761719 220.34375 218.332031 220.34375 218.332031 218.726562 C 218.332031 217.105469 220.761719 217.105469 220.761719 218.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.785156 249.648438 C 302.785156 251.269531 300.355469 251.269531 300.355469 249.648438 C 300.355469 248.027344 302.785156 248.027344 302.785156 249.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.53125 235.5625 C 345.53125 237.179688 343.101562 237.179688 343.101562 235.5625 C 343.101562 233.941406 345.53125 233.941406 345.53125 235.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.265625 180.792969 C 108.265625 182.410156 105.835938 182.410156 105.835938 180.792969 C 105.835938 179.171875 108.265625 179.171875 108.265625 180.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.515625 294.183594 C 338.515625 295.800781 336.085938 295.800781 336.085938 294.183594 C 336.085938 292.5625 338.515625 292.5625 338.515625 294.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.757812 418.691406 L 225.394531 415.855469 L 222.121094 415.855469 Z M 223.757812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.359375 131 C 135.359375 132.621094 132.925781 132.621094 132.925781 131 C 132.925781 129.378906 135.359375 129.378906 135.359375 131 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.378906 255.652344 C 207.378906 257.273438 204.949219 257.273438 204.949219 255.652344 C 204.949219 254.03125 207.378906 254.03125 207.378906 255.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.785156 258.003906 C 278.785156 259.625 276.355469 259.625 276.355469 258.003906 C 276.355469 256.382812 278.785156 256.382812 278.785156 258.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.550781 269.816406 C 263.550781 271.4375 261.121094 271.4375 261.121094 269.816406 C 261.121094 268.195312 263.550781 268.195312 263.550781 269.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.09375 262.46875 C 240.09375 264.089844 237.664062 264.089844 237.664062 262.46875 C 237.664062 260.847656 240.09375 260.847656 240.09375 262.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.539062 290.523438 C 161.539062 292.144531 159.109375 292.144531 159.109375 290.523438 C 159.109375 288.90625 161.539062 288.90625 161.539062 290.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.453125 291.957031 C 299.453125 293.574219 297.023438 293.574219 297.023438 291.957031 C 297.023438 290.335938 299.453125 290.335938 299.453125 291.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.308594 215.582031 C 250.308594 217.203125 247.878906 217.203125 247.878906 215.582031 C 247.878906 213.964844 250.308594 213.964844 250.308594 215.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.027344 256.085938 C 249.027344 257.703125 246.597656 257.703125 246.597656 256.085938 C 246.597656 254.464844 249.027344 254.464844 249.027344 256.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.148438 70.910156 L 189.785156 73.746094 L 186.511719 73.746094 Z M 188.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.148438 329.351562 C 162.148438 330.972656 159.71875 330.972656 159.71875 329.351562 C 159.71875 327.730469 162.148438 327.730469 162.148438 329.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.945312 251.683594 C 118.945312 253.304688 116.515625 253.304688 116.515625 251.683594 C 116.515625 250.066406 118.945312 250.066406 118.945312 251.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.789062 128.152344 C 205.789062 129.773438 203.359375 129.773438 203.359375 128.152344 C 203.359375 126.535156 205.789062 126.535156 205.789062 128.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.464844 207.269531 C 203.464844 208.890625 201.035156 208.890625 201.035156 207.269531 C 201.035156 205.648438 203.464844 205.648438 203.464844 207.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.796875 238.753906 C 289.796875 240.375 287.363281 240.375 287.363281 238.753906 C 287.363281 237.132812 289.796875 237.132812 289.796875 238.753906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.195312 70.910156 L 291.832031 73.746094 L 288.558594 73.746094 Z M 290.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.367188 263.007812 C 253.367188 264.628906 250.9375 264.628906 250.9375 263.007812 C 250.9375 261.386719 253.367188 261.386719 253.367188 263.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.496094 246.550781 C 183.496094 248.171875 181.066406 248.171875 181.066406 246.550781 C 181.066406 244.929688 183.496094 244.929688 183.496094 246.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.808594 244.421875 C 229.808594 246.042969 227.378906 246.042969 227.378906 244.421875 C 227.378906 242.800781 229.808594 242.800781 229.808594 244.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.585938 256.644531 C 220.585938 258.261719 218.15625 258.261719 218.15625 256.644531 C 218.15625 255.023438 220.585938 255.023438 220.585938 256.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.109375 247.027344 C 144.109375 248.648438 141.679688 248.648438 141.679688 247.027344 C 141.679688 245.40625 144.109375 245.40625 144.109375 247.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.8125 230.40625 C 312.8125 232.027344 310.382812 232.027344 310.382812 230.40625 C 310.382812 228.789062 312.8125 228.789062 312.8125 230.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.875 277.355469 C 142.875 278.976562 140.445312 278.976562 140.445312 277.355469 C 140.445312 275.738281 142.875 275.738281 142.875 277.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.21875 247.632812 C 205.21875 249.253906 202.789062 249.253906 202.789062 247.632812 C 202.789062 246.015625 205.21875 246.015625 205.21875 247.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.90625 242.992188 C 280.90625 244.613281 278.476562 244.613281 278.476562 242.992188 C 278.476562 241.371094 280.90625 241.371094 280.90625 242.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.601562 256.378906 C 342.601562 258 340.171875 258 340.171875 256.378906 C 340.171875 254.757812 342.601562 254.757812 342.601562 256.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.082031 75.820312 C 144.082031 77.4375 141.648438 77.4375 141.648438 75.820312 C 141.648438 74.199219 144.082031 74.199219 144.082031 75.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.6875 266.125 C 290.6875 267.742188 288.257812 267.742188 288.257812 266.125 C 288.257812 264.503906 290.6875 264.503906 290.6875 266.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.101562 205.050781 C 252.101562 206.667969 249.671875 206.667969 249.671875 205.050781 C 249.671875 203.429688 252.101562 203.429688 252.101562 205.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.542969 303.265625 C 160.542969 304.886719 158.113281 304.886719 158.113281 303.265625 C 158.113281 301.648438 160.542969 301.648438 160.542969 303.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.800781 287.691406 C 227.800781 289.308594 225.371094 289.308594 225.371094 287.691406 C 225.371094 286.070312 227.800781 286.070312 227.800781 287.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.894531 194.179688 C 193.894531 195.800781 191.464844 195.800781 191.464844 194.179688 C 191.464844 192.558594 193.894531 192.558594 193.894531 194.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.679688 284.441406 C 218.679688 286.0625 216.246094 286.0625 216.246094 284.441406 C 216.246094 282.824219 218.679688 282.824219 218.679688 284.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.082031 151.265625 C 262.082031 152.886719 259.652344 152.886719 259.652344 151.265625 C 259.652344 149.648438 262.082031 149.648438 262.082031 151.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.316406 418.691406 L 231.953125 415.855469 L 228.679688 415.855469 Z M 230.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.757812 336.019531 C 344.757812 337.636719 342.328125 337.636719 342.328125 336.019531 C 342.328125 334.398438 344.757812 334.398438 344.757812 336.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.238281 222.195312 C 310.238281 223.816406 307.808594 223.816406 307.808594 222.195312 C 307.808594 220.574219 310.238281 220.574219 310.238281 222.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.332031 185.820312 C 339.332031 187.4375 336.902344 187.4375 336.902344 185.820312 C 336.902344 184.199219 339.332031 184.199219 339.332031 185.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.789062 252.484375 C 128.789062 254.105469 126.355469 254.105469 126.355469 252.484375 C 126.355469 250.867188 128.789062 250.867188 128.789062 252.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.558594 312.90625 C 273.558594 314.523438 271.128906 314.523438 271.128906 312.90625 C 271.128906 311.285156 273.558594 311.285156 273.558594 312.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.105469 317.890625 C 145.105469 319.511719 142.671875 319.511719 142.671875 317.890625 C 142.671875 316.269531 145.105469 316.269531 145.105469 317.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.933594 172.0625 C 298.933594 173.683594 296.503906 173.683594 296.503906 172.0625 C 296.503906 170.445312 298.933594 170.445312 298.933594 172.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.757812 178.828125 C 253.757812 180.449219 251.328125 180.449219 251.328125 178.828125 C 251.328125 177.207031 253.757812 177.207031 253.757812 178.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.648438 228.632812 C 309.648438 230.25 307.21875 230.25 307.21875 228.632812 C 307.21875 227.011719 309.648438 227.011719 309.648438 228.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 365.328125 292.882812 C 365.328125 294.5 362.898438 294.5 362.898438 292.882812 C 362.898438 291.261719 365.328125 291.261719 365.328125 292.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.730469 184.773438 C 269.730469 186.390625 267.300781 186.390625 267.300781 184.773438 C 267.300781 183.152344 269.730469 183.152344 269.730469 184.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.714844 278.851562 C 224.714844 280.472656 222.285156 280.472656 222.285156 278.851562 C 222.285156 277.234375 224.714844 277.234375 224.714844 278.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.28125 256.507812 C 339.28125 258.128906 336.851562 258.128906 336.851562 256.507812 C 336.851562 254.886719 339.28125 254.886719 339.28125 256.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.90625 242.386719 C 287.90625 244.007812 285.476562 244.007812 285.476562 242.386719 C 285.476562 240.765625 287.90625 240.765625 287.90625 242.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.226562 249.140625 C 293.226562 250.761719 290.796875 250.761719 290.796875 249.140625 C 290.796875 247.519531 293.226562 247.519531 293.226562 249.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.449219 80.234375 C 153.449219 81.851562 151.019531 81.851562 151.019531 80.234375 C 151.019531 78.613281 153.449219 78.613281 153.449219 80.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.039062 286.847656 C 257.039062 288.46875 254.609375 288.46875 254.609375 286.847656 C 254.609375 285.226562 257.039062 285.226562 257.039062 286.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.3125 281.386719 C 296.3125 283.007812 293.882812 283.007812 293.882812 281.386719 C 293.882812 279.769531 296.3125 279.769531 296.3125 281.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.449219 216.933594 C 283.449219 218.550781 281.015625 218.550781 281.015625 216.933594 C 281.015625 215.3125 283.449219 215.3125 283.449219 216.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.769531 246.542969 C 296.769531 248.164062 294.339844 248.164062 294.339844 246.542969 C 294.339844 244.925781 296.769531 244.925781 296.769531 246.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.53125 70.910156 L 160.167969 73.746094 L 156.894531 73.746094 Z M 158.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.195312 202.671875 C 154.195312 204.292969 151.765625 204.292969 151.765625 202.671875 C 151.765625 201.050781 154.195312 201.050781 154.195312 202.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.589844 317.792969 C 293.589844 319.414062 291.160156 319.414062 291.160156 317.792969 C 291.160156 316.171875 293.589844 316.171875 293.589844 317.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.339844 268.621094 C 189.339844 270.238281 186.910156 270.238281 186.910156 268.621094 C 186.910156 267 189.339844 267 189.339844 268.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.703125 257.894531 C 211.703125 259.511719 209.273438 259.511719 209.273438 257.894531 C 209.273438 256.273438 211.703125 256.273438 211.703125 257.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.578125 252.570312 C 251.578125 254.191406 249.148438 254.191406 249.148438 252.570312 C 249.148438 250.953125 251.578125 250.953125 251.578125 252.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.039062 402.910156 C 226.039062 404.53125 223.609375 404.53125 223.609375 402.910156 C 223.609375 401.289062 226.039062 401.289062 226.039062 402.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.644531 271.707031 C 267.644531 273.324219 265.210938 273.324219 265.210938 271.707031 C 265.210938 270.085938 267.644531 270.085938 267.644531 271.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.480469 254.988281 C 244.480469 256.605469 242.050781 256.605469 242.050781 254.988281 C 242.050781 253.367188 244.480469 253.367188 244.480469 254.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.113281 274.296875 C 300.113281 275.917969 297.683594 275.917969 297.683594 274.296875 C 297.683594 272.675781 300.113281 272.675781 300.113281 274.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.808594 301.960938 C 157.808594 303.582031 155.378906 303.582031 155.378906 301.960938 C 155.378906 300.339844 157.808594 300.339844 157.808594 301.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.476562 323.78125 C 146.476562 325.402344 144.046875 325.402344 144.046875 323.78125 C 144.046875 322.164062 146.476562 322.164062 146.476562 323.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.585938 265.964844 C 258.585938 267.582031 256.15625 267.582031 256.15625 265.964844 C 256.15625 264.34375 258.585938 264.34375 258.585938 265.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.261719 256.132812 C 279.261719 257.75 276.832031 257.75 276.832031 256.132812 C 276.832031 254.511719 279.261719 254.511719 279.261719 256.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.871094 300.285156 C 211.871094 301.902344 209.441406 301.902344 209.441406 300.285156 C 209.441406 298.664062 211.871094 298.664062 211.871094 300.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.714844 350.542969 C 263.714844 352.164062 261.285156 352.164062 261.285156 350.542969 C 261.285156 348.921875 263.714844 348.921875 263.714844 350.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.183594 298.40625 C 282.183594 300.027344 279.753906 300.027344 279.753906 298.40625 C 279.753906 296.785156 282.183594 296.785156 282.183594 298.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.292969 291.328125 C 281.292969 292.945312 278.863281 292.945312 278.863281 291.328125 C 278.863281 289.707031 281.292969 289.707031 281.292969 291.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.792969 254.546875 C 220.792969 256.167969 218.363281 256.167969 218.363281 254.546875 C 218.363281 252.929688 220.792969 252.929688 220.792969 254.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.296875 232.777344 C 265.296875 234.394531 262.867188 234.394531 262.867188 232.777344 C 262.867188 231.15625 265.296875 231.15625 265.296875 232.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.0625 205.898438 C 265.0625 207.519531 262.628906 207.519531 262.628906 205.898438 C 262.628906 204.28125 265.0625 204.28125 265.0625 205.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.410156 194.3125 C 270.410156 195.929688 267.980469 195.929688 267.980469 194.3125 C 267.980469 192.691406 270.410156 192.691406 270.410156 194.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.058594 194.460938 C 304.058594 196.082031 301.628906 196.082031 301.628906 194.460938 C 301.628906 192.839844 304.058594 192.839844 304.058594 194.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.945312 281.3125 C 280.945312 282.933594 278.515625 282.933594 278.515625 281.3125 C 278.515625 279.695312 280.945312 279.695312 280.945312 281.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.21875 243.820312 C 258.21875 245.4375 255.789062 245.4375 255.789062 243.820312 C 255.789062 242.199219 258.21875 242.199219 258.21875 243.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.667969 303.871094 C 191.667969 305.492188 189.238281 305.492188 189.238281 303.871094 C 189.238281 302.253906 191.667969 302.253906 191.667969 303.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.820312 185.941406 C 124.820312 187.558594 122.390625 187.558594 122.390625 185.941406 C 122.390625 184.320312 124.820312 184.320312 124.820312 185.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.652344 385.699219 C 155.652344 387.320312 153.222656 387.320312 153.222656 385.699219 C 153.222656 384.078125 155.652344 384.078125 155.652344 385.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.082031 297.421875 C 259.082031 299.042969 256.652344 299.042969 256.652344 297.421875 C 256.652344 295.804688 259.082031 295.804688 259.082031 297.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.566406 287.425781 C 198.566406 289.046875 196.136719 289.046875 196.136719 287.425781 C 196.136719 285.808594 198.566406 285.808594 198.566406 287.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.933594 249.085938 C 268.933594 250.703125 266.503906 250.703125 266.503906 249.085938 C 266.503906 247.464844 268.933594 247.464844 268.933594 249.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.613281 70.910156 L 200.25 73.746094 L 196.976562 73.746094 Z M 198.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.996094 275.613281 C 270.996094 277.234375 268.566406 277.234375 268.566406 275.613281 C 268.566406 273.992188 270.996094 273.992188 270.996094 275.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.347656 161.875 C 215.347656 163.496094 212.917969 163.496094 212.917969 161.875 C 212.917969 160.253906 215.347656 160.253906 215.347656 161.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.710938 240.78125 C 296.710938 242.402344 294.28125 242.402344 294.28125 240.78125 C 294.28125 239.164062 296.710938 239.164062 296.710938 240.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.199219 285.078125 C 258.199219 286.695312 255.769531 286.695312 255.769531 285.078125 C 255.769531 283.457031 258.199219 283.457031 258.199219 285.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.734375 296.738281 C 298.734375 298.359375 296.304688 298.359375 296.304688 296.738281 C 296.304688 295.117188 298.734375 295.117188 298.734375 296.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.90625 229.542969 C 201.90625 231.164062 199.476562 231.164062 199.476562 229.542969 C 199.476562 227.925781 201.90625 227.925781 201.90625 229.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.367188 282.207031 C 230.367188 283.828125 227.9375 283.828125 227.9375 282.207031 C 227.9375 280.589844 230.367188 280.589844 230.367188 282.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.804688 237.589844 C 221.804688 239.207031 219.375 239.207031 219.375 237.589844 C 219.375 235.96875 221.804688 235.96875 221.804688 237.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.828125 240.753906 C 227.828125 242.375 225.398438 242.375 225.398438 240.753906 C 225.398438 239.136719 227.828125 239.136719 227.828125 240.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.191406 76.878906 C 280.191406 78.5 277.761719 78.5 277.761719 76.878906 C 277.761719 75.261719 280.191406 75.261719 280.191406 76.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.980469 236.078125 C 252.980469 237.699219 250.550781 237.699219 250.550781 236.078125 C 250.550781 234.457031 252.980469 234.457031 252.980469 236.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.289062 231.648438 C 284.289062 233.265625 281.859375 233.265625 281.859375 231.648438 C 281.859375 230.027344 284.289062 230.027344 284.289062 231.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.550781 318.359375 C 278.550781 319.980469 276.117188 319.980469 276.117188 318.359375 C 276.117188 316.742188 278.550781 316.742188 278.550781 318.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.621094 354.058594 C 232.621094 355.679688 230.191406 355.679688 230.191406 354.058594 C 230.191406 352.441406 232.621094 352.441406 232.621094 354.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.085938 325.878906 C 207.085938 327.5 204.65625 327.5 204.65625 325.878906 C 204.65625 324.261719 207.085938 324.261719 207.085938 325.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.703125 330.710938 C 270.703125 332.332031 268.273438 332.332031 268.273438 330.710938 C 268.273438 329.089844 270.703125 329.089844 270.703125 330.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.28125 250.976562 C 269.28125 252.597656 266.851562 252.597656 266.851562 250.976562 C 266.851562 249.359375 269.28125 249.359375 269.28125 250.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.324219 306.011719 C 199.324219 307.632812 196.894531 307.632812 196.894531 306.011719 C 196.894531 304.394531 199.324219 304.394531 199.324219 306.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.953125 271.726562 C 222.953125 273.347656 220.523438 273.347656 220.523438 271.726562 C 220.523438 270.105469 222.953125 270.105469 222.953125 271.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.867188 321.800781 C 249.867188 323.421875 247.4375 323.421875 247.4375 321.800781 C 247.4375 320.183594 249.867188 320.183594 249.867188 321.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.425781 275.964844 C 314.425781 277.585938 311.992188 277.585938 311.992188 275.964844 C 311.992188 274.347656 314.425781 274.347656 314.425781 275.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.800781 263.011719 C 257.800781 264.628906 255.371094 264.628906 255.371094 263.011719 C 255.371094 261.390625 257.800781 261.390625 257.800781 263.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.96875 242.769531 C 296.96875 244.390625 294.539062 244.390625 294.539062 242.769531 C 294.539062 241.152344 296.96875 241.152344 296.96875 242.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.335938 183.511719 C 279.335938 185.132812 276.90625 185.132812 276.90625 183.511719 C 276.90625 181.890625 279.335938 181.890625 279.335938 183.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.300781 242.390625 C 207.300781 244.011719 204.871094 244.011719 204.871094 242.390625 C 204.871094 240.773438 207.300781 240.773438 207.300781 242.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.996094 202.828125 C 259.996094 204.445312 257.566406 204.445312 257.566406 202.828125 C 257.566406 201.207031 259.996094 201.207031 259.996094 202.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.082031 203.914062 C 283.082031 205.535156 280.652344 205.535156 280.652344 203.914062 C 280.652344 202.292969 283.082031 202.292969 283.082031 203.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.816406 258.234375 C 310.816406 259.851562 308.386719 259.851562 308.386719 258.234375 C 308.386719 256.613281 310.816406 256.613281 310.816406 258.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 353.085938 243.425781 C 353.085938 245.042969 350.65625 245.042969 350.65625 243.425781 C 350.65625 241.804688 353.085938 241.804688 353.085938 243.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.292969 204.246094 C 184.292969 205.867188 181.863281 205.867188 181.863281 204.246094 C 181.863281 202.625 184.292969 202.625 184.292969 204.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.703125 83.53125 C 212.703125 85.152344 210.273438 85.152344 210.273438 83.53125 C 210.273438 81.910156 212.703125 81.910156 212.703125 83.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.378906 163.5 C 211.378906 165.121094 208.949219 165.121094 208.949219 163.5 C 208.949219 161.878906 211.378906 161.878906 211.378906 163.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.054688 214.0625 C 329.054688 215.683594 326.625 215.683594 326.625 214.0625 C 326.625 212.445312 329.054688 212.445312 329.054688 214.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.617188 255.007812 C 233.617188 256.628906 231.1875 256.628906 231.1875 255.007812 C 231.1875 253.386719 233.617188 253.386719 233.617188 255.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.089844 246.917969 C 255.089844 248.535156 252.660156 248.535156 252.660156 246.917969 C 252.660156 245.296875 255.089844 245.296875 255.089844 246.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.816406 321 C 211.816406 322.621094 209.386719 322.621094 209.386719 321 C 209.386719 319.382812 211.816406 319.382812 211.816406 321 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.605469 313.109375 C 210.605469 314.730469 208.175781 314.730469 208.175781 313.109375 C 208.175781 311.492188 210.605469 311.492188 210.605469 313.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.226562 252.476562 C 226.226562 254.097656 223.796875 254.097656 223.796875 252.476562 C 223.796875 250.859375 226.226562 250.859375 226.226562 252.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.035156 257.867188 C 251.035156 259.488281 248.605469 259.488281 248.605469 257.867188 C 248.605469 256.246094 251.035156 256.246094 251.035156 257.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.53125 216.730469 C 217.53125 218.351562 215.101562 218.351562 215.101562 216.730469 C 215.101562 215.113281 217.53125 215.113281 217.53125 216.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.714844 212.488281 C 233.714844 214.105469 231.285156 214.105469 231.285156 212.488281 C 231.285156 210.867188 233.714844 210.867188 233.714844 212.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.136719 239.46875 C 244.136719 241.089844 241.707031 241.089844 241.707031 239.46875 C 241.707031 237.847656 244.136719 237.847656 244.136719 239.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.808594 273.113281 C 237.808594 274.734375 235.378906 274.734375 235.378906 273.113281 C 235.378906 271.492188 237.808594 271.492188 237.808594 273.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.734375 283.417969 C 301.734375 285.035156 299.300781 285.035156 299.300781 283.417969 C 299.300781 281.796875 301.734375 281.796875 301.734375 283.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.589844 248.554688 C 262.589844 250.175781 260.160156 250.175781 260.160156 248.554688 C 260.160156 246.9375 262.589844 246.9375 262.589844 248.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.414062 275.648438 C 139.414062 277.269531 136.984375 277.269531 136.984375 275.648438 C 136.984375 274.027344 139.414062 274.027344 139.414062 275.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.5 263.015625 C 321.5 264.636719 319.070312 264.636719 319.070312 263.015625 C 319.070312 261.394531 321.5 261.394531 321.5 263.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.929688 150.761719 C 290.929688 152.382812 288.5 152.382812 288.5 150.761719 C 288.5 149.140625 290.929688 149.140625 290.929688 150.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.570312 295.339844 C 218.570312 296.960938 216.140625 296.960938 216.140625 295.339844 C 216.140625 293.722656 218.570312 293.722656 218.570312 295.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.4375 226.992188 C 299.4375 228.609375 297.007812 228.609375 297.007812 226.992188 C 297.007812 225.371094 299.4375 225.371094 299.4375 226.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.300781 269.699219 C 230.300781 271.316406 227.871094 271.316406 227.871094 269.699219 C 227.871094 268.078125 230.300781 268.078125 230.300781 269.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.105469 253.816406 C 255.105469 255.4375 252.675781 255.4375 252.675781 253.816406 C 252.675781 252.195312 255.105469 252.195312 255.105469 253.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.707031 70.910156 L 146.34375 73.746094 L 143.070312 73.746094 Z M 144.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.589844 286.734375 C 285.589844 288.355469 283.160156 288.355469 283.160156 286.734375 C 283.160156 285.113281 285.589844 285.113281 285.589844 286.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.308594 274.589844 C 318.308594 276.210938 315.878906 276.210938 315.878906 274.589844 C 315.878906 272.972656 318.308594 272.972656 318.308594 274.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.554688 260.640625 C 261.554688 262.261719 259.125 262.261719 259.125 260.640625 C 259.125 259.019531 261.554688 259.019531 261.554688 260.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131 70.910156 L 132.636719 73.746094 L 129.363281 73.746094 Z M 131 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.050781 252.554688 C 293.050781 254.175781 290.621094 254.175781 290.621094 252.554688 C 290.621094 250.9375 293.050781 250.9375 293.050781 252.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.574219 201.359375 C 219.574219 202.980469 217.144531 202.980469 217.144531 201.359375 C 217.144531 199.738281 219.574219 199.738281 219.574219 201.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.167969 137.613281 C 225.167969 139.230469 222.738281 139.230469 222.738281 137.613281 C 222.738281 135.992188 225.167969 135.992188 225.167969 137.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.34375 217.21875 C 157.34375 218.835938 154.914062 218.835938 154.914062 217.21875 C 154.914062 215.597656 157.34375 215.597656 157.34375 217.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.753906 299.109375 C 233.753906 300.730469 231.324219 300.730469 231.324219 299.109375 C 231.324219 297.488281 233.753906 297.488281 233.753906 299.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.382812 202.6875 C 125.382812 204.308594 122.953125 204.308594 122.953125 202.6875 C 122.953125 201.066406 125.382812 201.066406 125.382812 202.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.210938 302.792969 C 236.210938 304.414062 233.777344 304.414062 233.777344 302.792969 C 233.777344 301.175781 236.210938 301.175781 236.210938 302.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.164062 252.195312 C 222.164062 253.816406 219.734375 253.816406 219.734375 252.195312 C 219.734375 250.574219 222.164062 250.574219 222.164062 252.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.90625 70.910156 L 264.542969 73.746094 L 261.269531 73.746094 Z M 262.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.730469 252.0625 C 135.730469 253.683594 133.300781 253.683594 133.300781 252.0625 C 133.300781 250.441406 135.730469 250.441406 135.730469 252.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.292969 143.625 C 278.292969 145.246094 275.863281 145.246094 275.863281 143.625 C 275.863281 142.003906 278.292969 142.003906 278.292969 143.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.863281 171.113281 C 272.863281 172.734375 270.433594 172.734375 270.433594 171.113281 C 270.433594 169.496094 272.863281 169.496094 272.863281 171.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.128906 216.144531 C 133.128906 217.765625 130.699219 217.765625 130.699219 216.144531 C 130.699219 214.527344 133.128906 214.527344 133.128906 216.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.304688 139.335938 C 289.304688 140.953125 286.875 140.953125 286.875 139.335938 C 286.875 137.714844 289.304688 137.714844 289.304688 139.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.679688 70.910156 L 234.316406 73.746094 L 231.046875 73.746094 Z M 232.679688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.398438 70.910156 L 152.035156 73.746094 L 148.761719 73.746094 Z M 150.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.90625 160.875 C 209.90625 162.496094 207.476562 162.496094 207.476562 160.875 C 207.476562 159.257812 209.90625 159.257812 209.90625 160.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.144531 149.066406 C 173.144531 150.683594 170.714844 150.683594 170.714844 149.066406 C 170.714844 147.445312 173.144531 147.445312 173.144531 149.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.621094 70.910156 L 127.253906 73.746094 L 123.984375 73.746094 Z M 125.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.289062 70.910156 L 258.925781 73.746094 L 255.652344 73.746094 Z M 257.289062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.304688 70.910156 L 193.941406 73.746094 L 190.667969 73.746094 Z M 192.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.140625 70.910156 L 263.777344 73.746094 L 260.503906 73.746094 Z M 262.140625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.726562 70.910156 L 152.363281 73.746094 L 149.089844 73.746094 Z M 150.726562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.902344 70.910156 L 162.539062 73.746094 L 159.265625 73.746094 Z M 160.902344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.667969 70.910156 L 141.304688 73.746094 L 138.03125 73.746094 Z M 139.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.5625 70.910156 L 294.199219 73.746094 L 290.925781 73.746094 Z M 292.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.363281 220.042969 C 220.363281 221.664062 217.933594 221.664062 217.933594 220.042969 C 217.933594 218.425781 220.363281 218.425781 220.363281 220.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.5 70.910156 L 216.136719 73.746094 L 212.863281 73.746094 Z M 214.5 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.996094 70.910156 L 256.632812 73.746094 L 253.359375 73.746094 Z M 254.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.6875 234.511719 C 284.6875 236.132812 282.257812 236.132812 282.257812 234.511719 C 282.257812 232.890625 284.6875 232.890625 284.6875 234.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.476562 92.375 C 213.476562 93.996094 211.046875 93.996094 211.046875 92.375 C 211.046875 90.753906 213.476562 90.753906 213.476562 92.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.308594 157.902344 C 294.308594 159.519531 291.878906 159.519531 291.878906 157.902344 C 291.878906 156.28125 294.308594 156.28125 294.308594 157.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.679688 279.867188 C 214.679688 281.488281 212.25 281.488281 212.25 279.867188 C 212.25 278.25 214.679688 278.25 214.679688 279.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.652344 114.667969 C 173.652344 116.289062 171.222656 116.289062 171.222656 114.667969 C 171.222656 113.046875 173.652344 113.046875 173.652344 114.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.683594 70.910156 L 264.320312 73.746094 L 261.046875 73.746094 Z M 262.683594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.890625 70.910156 L 237.527344 73.746094 L 234.253906 73.746094 Z M 235.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.664062 393.792969 C 317.664062 395.414062 315.234375 395.414062 315.234375 393.792969 C 315.234375 392.171875 317.664062 392.171875 317.664062 393.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.417969 355.792969 C 239.417969 357.410156 236.988281 357.410156 236.988281 355.792969 C 236.988281 354.171875 239.417969 354.171875 239.417969 355.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.785156 368.425781 C 312.785156 370.046875 310.355469 370.046875 310.355469 368.425781 C 310.355469 366.808594 312.785156 366.808594 312.785156 368.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.78125 347.703125 C 246.78125 349.324219 244.347656 349.324219 244.347656 347.703125 C 244.347656 346.082031 246.78125 346.082031 246.78125 347.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.464844 70.910156 L 205.101562 73.746094 L 201.832031 73.746094 Z M 203.464844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.628906 418.691406 L 249.265625 415.855469 L 245.992188 415.855469 Z M 247.628906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.398438 277.117188 C 242.398438 278.734375 239.96875 278.734375 239.96875 277.117188 C 239.96875 275.496094 242.398438 275.496094 242.398438 277.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 349.25 250.523438 C 349.25 252.144531 346.820312 252.144531 346.820312 250.523438 C 346.820312 248.902344 349.25 248.902344 349.25 250.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.777344 307.609375 C 150.777344 309.230469 148.347656 309.230469 148.347656 307.609375 C 148.347656 305.988281 150.777344 305.988281 150.777344 307.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.976562 259.589844 C 296.976562 261.210938 294.546875 261.210938 294.546875 259.589844 C 294.546875 257.96875 296.976562 257.96875 296.976562 259.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.917969 298.882812 C 331.917969 300.503906 329.488281 300.503906 329.488281 298.882812 C 329.488281 297.261719 331.917969 297.261719 331.917969 298.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.027344 264.046875 C 278.027344 265.667969 275.597656 265.667969 275.597656 264.046875 C 275.597656 262.425781 278.027344 262.425781 278.027344 264.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.53125 345.011719 C 298.53125 346.628906 296.101562 346.628906 296.101562 345.011719 C 296.101562 343.390625 298.53125 343.390625 298.53125 345.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.015625 70.910156 L 189.652344 73.746094 L 186.378906 73.746094 Z M 188.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.265625 162.546875 C 148.265625 164.167969 145.835938 164.167969 145.835938 162.546875 C 145.835938 160.929688 148.265625 160.929688 148.265625 162.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.15625 188.621094 C 318.15625 190.242188 315.726562 190.242188 315.726562 188.621094 C 315.726562 187 318.15625 187 318.15625 188.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.882812 70.910156 L 335.515625 73.746094 L 332.246094 73.746094 Z M 333.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.636719 121.726562 C 265.636719 123.347656 263.207031 123.347656 263.207031 121.726562 C 263.207031 120.105469 265.636719 120.105469 265.636719 121.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.828125 238.5625 C 290.828125 240.179688 288.398438 240.179688 288.398438 238.5625 C 288.398438 236.941406 290.828125 236.941406 290.828125 238.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.445312 70.910156 L 169.082031 73.746094 L 165.808594 73.746094 Z M 167.445312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.277344 70.910156 L 235.914062 73.746094 L 232.640625 73.746094 Z M 234.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.195312 297.980469 C 300.195312 299.601562 297.761719 299.601562 297.761719 297.980469 C 297.761719 296.363281 300.195312 296.363281 300.195312 297.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.148438 418.691406 L 278.785156 415.855469 L 275.511719 415.855469 Z M 277.148438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.945312 309.234375 C 274.945312 310.851562 272.515625 310.851562 272.515625 309.234375 C 272.515625 307.613281 274.945312 307.613281 274.945312 309.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.085938 70.910156 L 221.722656 73.746094 L 218.449219 73.746094 Z M 220.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.234375 144.414062 C 233.234375 146.03125 230.804688 146.03125 230.804688 144.414062 C 230.804688 142.792969 233.234375 142.792969 233.234375 144.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.484375 70.910156 L 264.121094 73.746094 L 260.847656 73.746094 Z M 262.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.21875 213.613281 C 224.21875 215.234375 221.789062 215.234375 221.789062 213.613281 C 221.789062 211.996094 224.21875 211.996094 224.21875 213.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.253906 200.78125 C 215.253906 202.398438 212.824219 202.398438 212.824219 200.78125 C 212.824219 199.160156 215.253906 199.160156 215.253906 200.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.070312 116.511719 C 231.070312 118.132812 228.640625 118.132812 228.640625 116.511719 C 228.640625 114.890625 231.070312 114.890625 231.070312 116.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.746094 70.910156 L 211.382812 73.746094 L 208.109375 73.746094 Z M 209.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.675781 370.578125 C 262.675781 372.199219 260.242188 372.199219 260.242188 370.578125 C 260.242188 368.957031 262.675781 368.957031 262.675781 370.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.484375 105.601562 C 196.484375 107.222656 194.054688 107.222656 194.054688 105.601562 C 194.054688 103.984375 196.484375 103.984375 196.484375 105.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.503906 198.925781 C 192.503906 200.546875 190.074219 200.546875 190.074219 198.925781 C 190.074219 197.308594 192.503906 197.308594 192.503906 198.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.015625 70.910156 L 203.652344 73.746094 L 200.378906 73.746094 Z M 202.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.789062 317.769531 C 107.789062 319.390625 105.359375 319.390625 105.359375 317.769531 C 105.359375 316.148438 107.789062 316.148438 107.789062 317.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.648438 321.238281 C 220.648438 322.859375 218.21875 322.859375 218.21875 321.238281 C 218.21875 319.621094 220.648438 319.621094 220.648438 321.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.574219 83.070312 C 239.574219 84.691406 237.144531 84.691406 237.144531 83.070312 C 237.144531 81.449219 239.574219 81.449219 239.574219 83.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.925781 276.300781 C 250.925781 277.921875 248.496094 277.921875 248.496094 276.300781 C 248.496094 274.683594 250.925781 274.683594 250.925781 276.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.628906 70.910156 L 267.265625 73.746094 L 263.992188 73.746094 Z M 265.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.207031 70.910156 L 299.84375 73.746094 L 296.574219 73.746094 Z M 298.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.710938 115.433594 C 267.710938 117.054688 265.28125 117.054688 265.28125 115.433594 C 265.28125 113.8125 267.710938 113.8125 267.710938 115.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.5 151.777344 C 150.5 153.398438 148.070312 153.398438 148.070312 151.777344 C 148.070312 150.160156 150.5 150.160156 150.5 151.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.855469 195.191406 C 232.855469 196.808594 230.425781 196.808594 230.425781 195.191406 C 230.425781 193.570312 232.855469 193.570312 232.855469 195.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.949219 261.484375 C 258.949219 263.105469 256.519531 263.105469 256.519531 261.484375 C 256.519531 259.863281 258.949219 259.863281 258.949219 261.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.238281 285.804688 C 292.238281 287.425781 289.808594 287.425781 289.808594 285.804688 C 289.808594 284.1875 292.238281 284.1875 292.238281 285.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.046875 70.910156 L 247.679688 73.746094 L 244.410156 73.746094 Z M 246.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.75 257.539062 C 278.75 259.160156 276.320312 259.160156 276.320312 257.539062 C 276.320312 255.921875 278.75 255.921875 278.75 257.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.460938 70.910156 L 129.097656 73.746094 L 125.824219 73.746094 Z M 127.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.640625 188.859375 C 271.640625 190.480469 269.210938 190.480469 269.210938 188.859375 C 269.210938 187.238281 271.640625 187.238281 271.640625 188.859375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.375 418.691406 L 324.011719 415.855469 L 320.738281 415.855469 Z M 322.375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.851562 259.214844 C 308.851562 260.832031 306.417969 260.832031 306.417969 259.214844 C 306.417969 257.59375 308.851562 257.59375 308.851562 259.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.625 272.261719 C 316.625 273.882812 314.195312 273.882812 314.195312 272.261719 C 314.195312 270.644531 316.625 270.644531 316.625 272.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.121094 70.910156 L 281.757812 73.746094 L 278.484375 73.746094 Z M 280.121094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.179688 70.910156 L 203.816406 73.746094 L 200.542969 73.746094 Z M 202.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.578125 178.519531 C 305.578125 180.140625 303.148438 180.140625 303.148438 178.519531 C 303.148438 176.898438 305.578125 176.898438 305.578125 178.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.757812 129.820312 C 230.757812 131.441406 228.328125 131.441406 228.328125 129.820312 C 228.328125 128.199219 230.757812 128.199219 230.757812 129.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.960938 136.921875 C 232.960938 138.542969 230.53125 138.542969 230.53125 136.921875 C 230.53125 135.300781 232.960938 135.300781 232.960938 136.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.90625 294.011719 C 287.90625 295.632812 285.476562 295.632812 285.476562 294.011719 C 285.476562 292.390625 287.90625 292.390625 287.90625 294.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.421875 136.445312 C 267.421875 138.0625 264.992188 138.0625 264.992188 136.445312 C 264.992188 134.824219 267.421875 134.824219 267.421875 136.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.777344 119.613281 C 299.777344 121.234375 297.347656 121.234375 297.347656 119.613281 C 297.347656 117.992188 299.777344 117.992188 299.777344 119.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.824219 252.296875 C 273.824219 253.917969 271.394531 253.917969 271.394531 252.296875 C 271.394531 250.675781 273.824219 250.675781 273.824219 252.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.105469 70.910156 L 126.742188 73.746094 L 123.46875 73.746094 Z M 125.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.683594 410.574219 C 123.683594 412.195312 121.25 412.195312 121.25 410.574219 C 121.25 408.953125 123.683594 408.953125 123.683594 410.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.671875 418.691406 L 156.308594 415.855469 L 153.035156 415.855469 Z M 154.671875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.492188 323.878906 C 185.492188 325.5 183.058594 325.5 183.058594 323.878906 C 183.058594 322.261719 185.492188 322.261719 185.492188 323.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.488281 70.910156 L 202.125 73.746094 L 198.851562 73.746094 Z M 200.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.785156 70.910156 L 156.421875 73.746094 L 153.148438 73.746094 Z M 154.785156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.722656 418.691406 L 289.359375 415.855469 L 286.085938 415.855469 Z M 287.722656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.945312 418.691406 L 334.578125 415.855469 L 331.308594 415.855469 Z M 332.945312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.714844 327.058594 C 232.714844 328.675781 230.285156 328.675781 230.285156 327.058594 C 230.285156 325.4375 232.714844 325.4375 232.714844 327.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.320312 253.609375 C 286.320312 255.230469 283.890625 255.230469 283.890625 253.609375 C 283.890625 251.988281 286.320312 251.988281 286.320312 253.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.441406 290.515625 C 308.441406 292.136719 306.011719 292.136719 306.011719 290.515625 C 306.011719 288.898438 308.441406 288.898438 308.441406 290.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.945312 70.910156 L 286.582031 73.746094 L 283.308594 73.746094 Z M 284.945312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.238281 70.910156 L 309.871094 73.746094 L 306.601562 73.746094 Z M 308.238281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.417969 93.03125 C 249.417969 94.652344 246.988281 94.652344 246.988281 93.03125 C 246.988281 91.410156 249.417969 91.410156 249.417969 93.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.609375 213.417969 C 247.609375 215.035156 245.179688 215.035156 245.179688 213.417969 C 245.179688 211.796875 247.609375 211.796875 247.609375 213.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.191406 418.691406 L 230.828125 415.855469 L 227.558594 415.855469 Z M 229.191406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.488281 345.878906 C 262.488281 347.5 260.058594 347.5 260.058594 345.878906 C 260.058594 344.261719 262.488281 344.261719 262.488281 345.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.039062 328.800781 C 113.039062 330.421875 110.609375 330.421875 110.609375 328.800781 C 110.609375 327.183594 113.039062 327.183594 113.039062 328.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.882812 418.691406 L 324.519531 415.855469 L 321.246094 415.855469 Z M 322.882812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.140625 156.835938 C 230.140625 158.453125 227.710938 158.453125 227.710938 156.835938 C 227.710938 155.214844 230.140625 155.214844 230.140625 156.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.242188 279.707031 C 151.242188 281.328125 148.8125 281.328125 148.8125 279.707031 C 148.8125 278.085938 151.242188 278.085938 151.242188 279.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.917969 340.859375 C 296.917969 342.480469 294.488281 342.480469 294.488281 340.859375 C 294.488281 339.238281 296.917969 339.238281 296.917969 340.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.882812 343.902344 C 129.882812 345.523438 127.453125 345.523438 127.453125 343.902344 C 127.453125 342.28125 129.882812 342.28125 129.882812 343.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.382812 254.09375 C 269.382812 255.710938 266.953125 255.710938 266.953125 254.09375 C 266.953125 252.472656 269.382812 252.472656 269.382812 254.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.554688 330.222656 C 217.554688 331.839844 215.125 331.839844 215.125 330.222656 C 215.125 328.601562 217.554688 328.601562 217.554688 330.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.960938 273.378906 C 166.960938 275 164.53125 275 164.53125 273.378906 C 164.53125 271.757812 166.960938 271.757812 166.960938 273.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.078125 278.457031 C 141.078125 280.078125 138.648438 280.078125 138.648438 278.457031 C 138.648438 276.835938 141.078125 276.835938 141.078125 278.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.433594 418.691406 L 126.070312 415.855469 L 122.796875 415.855469 Z M 124.433594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.464844 283.683594 C 225.464844 285.304688 223.035156 285.304688 223.035156 283.683594 C 223.035156 282.0625 225.464844 282.0625 225.464844 283.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.328125 247.933594 C 324.328125 249.554688 321.898438 249.554688 321.898438 247.933594 C 321.898438 246.3125 324.328125 246.3125 324.328125 247.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.972656 258.261719 C 290.972656 259.882812 288.542969 259.882812 288.542969 258.261719 C 288.542969 256.640625 290.972656 256.640625 290.972656 258.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.488281 91.328125 C 310.488281 92.949219 308.058594 92.949219 308.058594 91.328125 C 308.058594 89.707031 310.488281 89.707031 310.488281 91.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.128906 168.667969 C 224.128906 170.289062 221.699219 170.289062 221.699219 168.667969 C 221.699219 167.046875 224.128906 167.046875 224.128906 168.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.917969 70.910156 L 240.554688 73.746094 L 237.28125 73.746094 Z M 238.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.609375 251.886719 C 283.609375 253.507812 281.179688 253.507812 281.179688 251.886719 C 281.179688 250.269531 283.609375 250.269531 283.609375 251.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.222656 285.960938 C 278.222656 287.582031 275.792969 287.582031 275.792969 285.960938 C 275.792969 284.339844 278.222656 284.339844 278.222656 285.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.703125 70.910156 L 262.339844 73.746094 L 259.066406 73.746094 Z M 260.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.074219 209.742188 C 215.074219 211.363281 212.640625 211.363281 212.640625 209.742188 C 212.640625 208.121094 215.074219 208.121094 215.074219 209.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.535156 250.695312 C 236.535156 252.3125 234.105469 252.3125 234.105469 250.695312 C 234.105469 249.074219 236.535156 249.074219 236.535156 250.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.640625 220.066406 C 230.640625 221.6875 228.210938 221.6875 228.210938 220.066406 C 228.210938 218.449219 230.640625 218.449219 230.640625 220.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.96875 246.855469 C 318.96875 248.472656 316.539062 248.472656 316.539062 246.855469 C 316.539062 245.234375 318.96875 245.234375 318.96875 246.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.894531 190.058594 C 334.894531 191.679688 332.460938 191.679688 332.460938 190.058594 C 332.460938 188.441406 334.894531 188.441406 334.894531 190.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.25 150.632812 C 190.25 152.253906 187.820312 152.253906 187.820312 150.632812 C 187.820312 149.011719 190.25 149.011719 190.25 150.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.488281 352.875 C 257.488281 354.496094 255.058594 354.496094 255.058594 352.875 C 255.058594 351.253906 257.488281 351.253906 257.488281 352.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.367188 300.191406 C 257.367188 301.8125 254.9375 301.8125 254.9375 300.191406 C 254.9375 298.570312 257.367188 298.570312 257.367188 300.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.285156 190.726562 C 255.285156 192.34375 252.855469 192.34375 252.855469 190.726562 C 252.855469 189.105469 255.285156 189.105469 255.285156 190.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.632812 175.230469 C 236.632812 176.847656 234.203125 176.847656 234.203125 175.230469 C 234.203125 173.609375 236.632812 173.609375 236.632812 175.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.808594 174.214844 C 229.808594 175.835938 227.378906 175.835938 227.378906 174.214844 C 227.378906 172.597656 229.808594 172.597656 229.808594 174.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.78125 240.492188 C 292.78125 242.109375 290.351562 242.109375 290.351562 240.492188 C 290.351562 238.871094 292.78125 238.871094 292.78125 240.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.183594 321.625 C 156.183594 323.242188 153.75 323.242188 153.75 321.625 C 153.75 320.003906 156.183594 320.003906 156.183594 321.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.554688 105.214844 C 268.554688 106.835938 266.125 106.835938 266.125 105.214844 C 266.125 103.59375 268.554688 103.59375 268.554688 105.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.183594 184.164062 C 138.183594 185.785156 135.753906 185.785156 135.753906 184.164062 C 135.753906 182.542969 138.183594 182.542969 138.183594 184.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.664062 140.050781 C 273.664062 141.667969 271.234375 141.667969 271.234375 140.050781 C 271.234375 138.429688 273.664062 138.429688 273.664062 140.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.273438 233.167969 C 230.273438 234.789062 227.84375 234.789062 227.84375 233.167969 C 227.84375 231.546875 230.273438 231.546875 230.273438 233.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.28125 285.953125 C 264.28125 287.570312 261.851562 287.570312 261.851562 285.953125 C 261.851562 284.332031 264.28125 284.332031 264.28125 285.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.867188 235.871094 C 223.867188 237.492188 221.4375 237.492188 221.4375 235.871094 C 221.4375 234.253906 223.867188 234.253906 223.867188 235.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.007812 131.441406 C 187.007812 133.0625 184.578125 133.0625 184.578125 131.441406 C 184.578125 129.820312 187.007812 129.820312 187.007812 131.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.539062 251.191406 C 251.539062 252.8125 249.109375 252.8125 249.109375 251.191406 C 249.109375 249.570312 251.539062 249.570312 251.539062 251.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.578125 139.777344 C 276.578125 141.398438 274.148438 141.398438 274.148438 139.777344 C 274.148438 138.15625 276.578125 138.15625 276.578125 139.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.027344 367.019531 C 324.027344 368.640625 321.597656 368.640625 321.597656 367.019531 C 321.597656 365.398438 324.027344 365.398438 324.027344 367.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.984375 70.910156 L 212.617188 73.746094 L 209.347656 73.746094 Z M 210.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.671875 111.667969 C 121.671875 113.289062 119.238281 113.289062 119.238281 111.667969 C 119.238281 110.050781 121.671875 110.050781 121.671875 111.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.277344 197.4375 C 288.277344 199.054688 285.847656 199.054688 285.847656 197.4375 C 285.847656 195.816406 288.277344 195.816406 288.277344 197.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.679688 170.679688 C 351.679688 172.300781 349.25 172.300781 349.25 170.679688 C 349.25 169.058594 351.679688 169.058594 351.679688 170.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.394531 239.050781 C 286.394531 240.671875 283.964844 240.671875 283.964844 239.050781 C 283.964844 237.429688 286.394531 237.429688 286.394531 239.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.378906 70.910156 L 198.015625 73.746094 L 194.742188 73.746094 Z M 196.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.96875 70.910156 L 305.605469 73.746094 L 302.332031 73.746094 Z M 303.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.976562 231.898438 C 251.976562 233.515625 249.546875 233.515625 249.546875 231.898438 C 249.546875 230.277344 251.976562 230.277344 251.976562 231.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.9375 299.128906 C 277.9375 300.75 275.507812 300.75 275.507812 299.128906 C 275.507812 297.507812 277.9375 297.507812 277.9375 299.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.722656 231.464844 C 278.722656 233.085938 276.292969 233.085938 276.292969 231.464844 C 276.292969 229.847656 278.722656 229.847656 278.722656 231.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.597656 226.617188 C 280.597656 228.238281 278.167969 228.238281 278.167969 226.617188 C 278.167969 225 280.597656 225 280.597656 226.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.585938 201.753906 C 245.585938 203.375 243.15625 203.375 243.15625 201.753906 C 243.15625 200.132812 245.585938 200.132812 245.585938 201.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.265625 218.054688 C 317.265625 219.675781 314.832031 219.675781 314.832031 218.054688 C 314.832031 216.433594 317.265625 216.433594 317.265625 218.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.28125 132.886719 C 158.28125 134.507812 155.851562 134.507812 155.851562 132.886719 C 155.851562 131.265625 158.28125 131.265625 158.28125 132.886719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.347656 70.910156 L 170.984375 73.746094 L 167.710938 73.746094 Z M 169.347656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.515625 234.300781 C 306.515625 235.921875 304.085938 235.921875 304.085938 234.300781 C 304.085938 232.679688 306.515625 232.679688 306.515625 234.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.460938 324.1875 C 272.460938 325.804688 270.03125 325.804688 270.03125 324.1875 C 270.03125 322.566406 272.460938 322.566406 272.460938 324.1875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.597656 112.523438 C 261.597656 114.140625 259.167969 114.140625 259.167969 112.523438 C 259.167969 110.902344 261.597656 110.902344 261.597656 112.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.84375 245.351562 C 293.84375 246.96875 291.414062 246.96875 291.414062 245.351562 C 291.414062 243.730469 293.84375 243.730469 293.84375 245.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.96875 230.328125 C 286.96875 231.949219 284.539062 231.949219 284.539062 230.328125 C 284.539062 228.707031 286.96875 228.707031 286.96875 230.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.8125 70.910156 L 286.445312 73.746094 L 283.175781 73.746094 Z M 284.8125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.632812 70.910156 L 289.269531 73.746094 L 285.996094 73.746094 Z M 287.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.644531 209.726562 C 270.644531 211.34375 268.214844 211.34375 268.214844 209.726562 C 268.214844 208.105469 270.644531 208.105469 270.644531 209.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.058594 276.460938 C 215.058594 278.082031 212.628906 278.082031 212.628906 276.460938 C 212.628906 274.84375 215.058594 274.84375 215.058594 276.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.492188 318.792969 C 216.492188 320.414062 214.0625 320.414062 214.0625 318.792969 C 214.0625 317.171875 216.492188 317.171875 216.492188 318.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.066406 361.183594 C 183.066406 362.804688 180.636719 362.804688 180.636719 361.183594 C 180.636719 359.5625 183.066406 359.5625 183.066406 361.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.945312 323.070312 C 237.945312 324.691406 235.515625 324.691406 235.515625 323.070312 C 235.515625 321.449219 237.945312 321.449219 237.945312 323.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.277344 403.25 C 216.277344 404.871094 213.847656 404.871094 213.847656 403.25 C 213.847656 401.628906 216.277344 401.628906 216.277344 403.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.398438 277.71875 C 228.398438 279.335938 225.96875 279.335938 225.96875 277.71875 C 225.96875 276.097656 228.398438 276.097656 228.398438 277.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.152344 169.101562 C 278.152344 170.722656 275.722656 170.722656 275.722656 169.101562 C 275.722656 167.480469 278.152344 167.480469 278.152344 169.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.417969 140.457031 C 144.417969 142.078125 141.988281 142.078125 141.988281 140.457031 C 141.988281 138.839844 144.417969 138.839844 144.417969 140.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.457031 70.910156 L 194.089844 73.746094 L 190.820312 73.746094 Z M 192.457031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.21875 70.910156 L 216.855469 73.746094 L 213.582031 73.746094 Z M 215.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.320312 362.378906 C 234.320312 363.996094 231.890625 363.996094 231.890625 362.378906 C 231.890625 360.757812 234.320312 360.757812 234.320312 362.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.015625 328.265625 C 293.015625 329.886719 290.585938 329.886719 290.585938 328.265625 C 290.585938 326.648438 293.015625 326.648438 293.015625 328.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.609375 244.019531 C 291.609375 245.640625 289.179688 245.640625 289.179688 244.019531 C 289.179688 242.402344 291.609375 242.402344 291.609375 244.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.003906 238.84375 C 281.003906 240.464844 278.574219 240.464844 278.574219 238.84375 C 278.574219 237.226562 281.003906 237.226562 281.003906 238.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.613281 70.910156 L 146.25 73.746094 L 142.976562 73.746094 Z M 144.613281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.574219 272.898438 C 192.574219 274.519531 190.144531 274.519531 190.144531 272.898438 C 190.144531 271.28125 192.574219 271.28125 192.574219 272.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.242188 270.316406 C 254.242188 271.9375 251.8125 271.9375 251.8125 270.316406 C 251.8125 268.695312 254.242188 268.695312 254.242188 270.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.820312 70.910156 L 248.457031 73.746094 L 245.183594 73.746094 Z M 246.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.171875 95.207031 C 205.171875 96.824219 202.742188 96.824219 202.742188 95.207031 C 202.742188 93.585938 205.171875 93.585938 205.171875 95.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.777344 346.09375 C 266.777344 347.710938 264.347656 347.710938 264.347656 346.09375 C 264.347656 344.472656 266.777344 344.472656 266.777344 346.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.5625 276.066406 C 313.5625 277.6875 311.128906 277.6875 311.128906 276.066406 C 311.128906 274.445312 313.5625 274.445312 313.5625 276.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.820312 238.191406 C 239.820312 239.8125 237.390625 239.8125 237.390625 238.191406 C 237.390625 236.574219 239.820312 236.574219 239.820312 238.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.757812 213.898438 C 301.757812 215.519531 299.328125 215.519531 299.328125 213.898438 C 299.328125 212.277344 301.757812 212.277344 301.757812 213.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.148438 70.910156 L 206.785156 73.746094 L 203.511719 73.746094 Z M 205.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.296875 156.179688 C 213.296875 157.800781 210.867188 157.800781 210.867188 156.179688 C 210.867188 154.5625 213.296875 154.5625 213.296875 156.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.683594 266.746094 C 266.683594 268.367188 264.253906 268.367188 264.253906 266.746094 C 264.253906 265.125 266.683594 265.125 266.683594 266.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.902344 291.722656 C 146.902344 293.34375 144.472656 293.34375 144.472656 291.722656 C 144.472656 290.105469 146.902344 290.105469 146.902344 291.722656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.375 418.691406 L 162.011719 415.855469 L 158.738281 415.855469 Z M 160.375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.984375 418.691406 L 362.621094 415.855469 L 359.347656 415.855469 Z M 360.984375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.722656 222.929688 C 297.722656 224.546875 295.292969 224.546875 295.292969 222.929688 C 295.292969 221.308594 297.722656 221.308594 297.722656 222.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.960938 178.742188 C 265.960938 180.363281 263.53125 180.363281 263.53125 178.742188 C 263.53125 177.125 265.960938 177.125 265.960938 178.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.363281 197.941406 C 291.363281 199.5625 288.933594 199.5625 288.933594 197.941406 C 288.933594 196.320312 291.363281 196.320312 291.363281 197.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.941406 221.28125 C 252.941406 222.902344 250.511719 222.902344 250.511719 221.28125 C 250.511719 219.660156 252.941406 219.660156 252.941406 221.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.964844 166.042969 C 237.964844 167.664062 235.535156 167.664062 235.535156 166.042969 C 235.535156 164.425781 237.964844 164.425781 237.964844 166.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.550781 247.070312 C 328.550781 248.691406 326.121094 248.691406 326.121094 247.070312 C 326.121094 245.453125 328.550781 245.453125 328.550781 247.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.964844 70.910156 L 207.601562 73.746094 L 204.328125 73.746094 Z M 205.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.4375 312.828125 C 307.4375 314.449219 305.007812 314.449219 305.007812 312.828125 C 305.007812 311.207031 307.4375 311.207031 307.4375 312.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.488281 302.90625 C 228.488281 304.527344 226.058594 304.527344 226.058594 302.90625 C 226.058594 301.289062 228.488281 301.289062 228.488281 302.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.695312 136.367188 C 276.695312 137.988281 274.265625 137.988281 274.265625 136.367188 C 274.265625 134.746094 276.695312 134.746094 276.695312 136.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.011719 350.949219 C 313.011719 352.566406 310.582031 352.566406 310.582031 350.949219 C 310.582031 349.328125 313.011719 349.328125 313.011719 350.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.039062 252.277344 C 203.039062 253.898438 200.609375 253.898438 200.609375 252.277344 C 200.609375 250.65625 203.039062 250.65625 203.039062 252.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.613281 251.183594 C 240.613281 252.804688 238.183594 252.804688 238.183594 251.183594 C 238.183594 249.5625 240.613281 249.5625 240.613281 251.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.542969 268.761719 C 286.542969 270.382812 284.113281 270.382812 284.113281 268.761719 C 284.113281 267.140625 286.542969 267.140625 286.542969 268.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.769531 123.589844 C 202.769531 125.210938 200.339844 125.210938 200.339844 123.589844 C 200.339844 121.972656 202.769531 121.972656 202.769531 123.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.324219 232.234375 C 309.324219 233.855469 306.894531 233.855469 306.894531 232.234375 C 306.894531 230.617188 309.324219 230.617188 309.324219 232.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.550781 201.265625 C 284.550781 202.886719 282.121094 202.886719 282.121094 201.265625 C 282.121094 199.644531 284.550781 199.644531 284.550781 201.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.320312 200.195312 C 228.320312 201.8125 225.890625 201.8125 225.890625 200.195312 C 225.890625 198.574219 228.320312 198.574219 228.320312 200.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.867188 70.910156 L 129.503906 73.746094 L 126.230469 73.746094 Z M 127.867188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.730469 70.910156 L 212.367188 73.746094 L 209.09375 73.746094 Z M 210.730469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.519531 70.910156 L 175.15625 73.746094 L 171.882812 73.746094 Z M 173.519531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.011719 303.632812 C 141.011719 305.253906 138.582031 305.253906 138.582031 303.632812 C 138.582031 302.011719 141.011719 302.011719 141.011719 303.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.957031 301.257812 C 203.957031 302.878906 201.527344 302.878906 201.527344 301.257812 C 201.527344 299.640625 203.957031 299.640625 203.957031 301.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.996094 276.335938 C 299.996094 277.957031 297.566406 277.957031 297.566406 276.335938 C 297.566406 274.714844 299.996094 274.714844 299.996094 276.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.578125 204.277344 C 190.578125 205.898438 188.148438 205.898438 188.148438 204.277344 C 188.148438 202.65625 190.578125 202.65625 190.578125 204.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.332031 70.910156 L 282.96875 73.746094 L 279.695312 73.746094 Z M 281.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.894531 70.910156 L 241.527344 73.746094 L 238.257812 73.746094 Z M 239.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.339844 330.21875 C 217.339844 331.839844 214.910156 331.839844 214.910156 330.21875 C 214.910156 328.597656 217.339844 328.597656 217.339844 330.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.570312 339.257812 C 130.570312 340.878906 128.140625 340.878906 128.140625 339.257812 C 128.140625 337.636719 130.570312 337.636719 130.570312 339.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.183594 268.082031 C 268.183594 269.703125 265.753906 269.703125 265.753906 268.082031 C 265.753906 266.460938 268.183594 266.460938 268.183594 268.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.8125 70.910156 L 216.449219 73.746094 L 213.175781 73.746094 Z M 214.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.640625 266.324219 C 198.640625 267.941406 196.210938 267.941406 196.210938 266.324219 C 196.210938 264.703125 198.640625 264.703125 198.640625 266.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.316406 70.910156 L 274.953125 73.746094 L 271.679688 73.746094 Z M 273.316406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.625 70.910156 L 292.261719 73.746094 L 288.988281 73.746094 Z M 290.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.859375 213.597656 C 246.859375 215.214844 244.429688 215.214844 244.429688 213.597656 C 244.429688 211.976562 246.859375 211.976562 246.859375 213.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.519531 147.144531 C 165.519531 148.765625 163.089844 148.765625 163.089844 147.144531 C 163.089844 145.523438 165.519531 145.523438 165.519531 147.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.167969 264.511719 C 198.167969 266.132812 195.738281 266.132812 195.738281 264.511719 C 195.738281 262.894531 198.167969 262.894531 198.167969 264.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.695312 290.789062 C 275.695312 292.410156 273.265625 292.410156 273.265625 290.789062 C 273.265625 289.171875 275.695312 289.171875 275.695312 290.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.5 189.242188 C 154.5 190.859375 152.066406 190.859375 152.066406 189.242188 C 152.066406 187.621094 154.5 187.621094 154.5 189.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.863281 284.601562 C 287.863281 286.222656 285.433594 286.222656 285.433594 284.601562 C 285.433594 282.984375 287.863281 282.984375 287.863281 284.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.34375 196.523438 C 236.34375 198.144531 233.914062 198.144531 233.914062 196.523438 C 233.914062 194.902344 236.34375 194.902344 236.34375 196.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.914062 211.835938 C 159.914062 213.457031 157.484375 213.457031 157.484375 211.835938 C 157.484375 210.214844 159.914062 210.214844 159.914062 211.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.355469 258.292969 C 287.355469 259.914062 284.925781 259.914062 284.925781 258.292969 C 284.925781 256.671875 287.355469 256.671875 287.355469 258.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.960938 278.070312 C 316.960938 279.6875 314.53125 279.6875 314.53125 278.070312 C 314.53125 276.449219 316.960938 276.449219 316.960938 278.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.789062 262.203125 C 278.789062 263.820312 276.359375 263.820312 276.359375 262.203125 C 276.359375 260.582031 278.789062 260.582031 278.789062 262.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.769531 278.539062 C 253.769531 280.15625 251.339844 280.15625 251.339844 278.539062 C 251.339844 276.917969 253.769531 276.917969 253.769531 278.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.824219 96.332031 C 224.824219 97.953125 222.394531 97.953125 222.394531 96.332031 C 222.394531 94.710938 224.824219 94.710938 224.824219 96.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.40625 329.695312 C 130.40625 331.316406 127.976562 331.316406 127.976562 329.695312 C 127.976562 328.074219 130.40625 328.074219 130.40625 329.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.316406 176.203125 C 153.316406 177.820312 150.882812 177.820312 150.882812 176.203125 C 150.882812 174.582031 153.316406 174.582031 153.316406 176.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.148438 295.984375 C 264.148438 297.601562 261.71875 297.601562 261.71875 295.984375 C 261.71875 294.363281 264.148438 294.363281 264.148438 295.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.386719 284.316406 C 277.386719 285.9375 274.957031 285.9375 274.957031 284.316406 C 274.957031 282.699219 277.386719 282.699219 277.386719 284.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.101562 366.351562 C 175.101562 367.972656 172.671875 367.972656 172.671875 366.351562 C 172.671875 364.734375 175.101562 364.734375 175.101562 366.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.414062 309.425781 C 229.414062 311.046875 226.984375 311.046875 226.984375 309.425781 C 226.984375 307.804688 229.414062 307.804688 229.414062 309.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.527344 213.054688 C 255.527344 214.671875 253.097656 214.671875 253.097656 213.054688 C 253.097656 211.433594 255.527344 211.433594 255.527344 213.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.25 262.429688 C 202.25 264.050781 199.820312 264.050781 199.820312 262.429688 C 199.820312 260.8125 202.25 260.8125 202.25 262.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.132812 340.289062 C 218.132812 341.90625 215.703125 341.90625 215.703125 340.289062 C 215.703125 338.667969 218.132812 338.667969 218.132812 340.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.601562 364.492188 C 326.601562 366.113281 324.171875 366.113281 324.171875 364.492188 C 324.171875 362.871094 326.601562 362.871094 326.601562 364.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.195312 383.449219 C 271.195312 385.070312 268.765625 385.070312 268.765625 383.449219 C 268.765625 381.832031 271.195312 381.832031 271.195312 383.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.898438 214.964844 C 266.898438 216.585938 264.46875 216.585938 264.46875 214.964844 C 264.46875 213.34375 266.898438 213.34375 266.898438 214.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.675781 290.867188 C 283.675781 292.488281 281.246094 292.488281 281.246094 290.867188 C 281.246094 289.246094 283.675781 289.246094 283.675781 290.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.816406 70.910156 L 277.453125 73.746094 L 274.179688 73.746094 Z M 275.816406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.367188 418.691406 L 208.003906 415.855469 L 204.730469 415.855469 Z M 206.367188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.910156 264.386719 C 330.910156 266.007812 328.480469 266.007812 328.480469 264.386719 C 328.480469 262.765625 330.910156 262.765625 330.910156 264.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.980469 327.285156 C 274.980469 328.902344 272.550781 328.902344 272.550781 327.285156 C 272.550781 325.664062 274.980469 325.664062 274.980469 327.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.179688 325.027344 C 278.179688 326.644531 275.75 326.644531 275.75 325.027344 C 275.75 323.40625 278.179688 323.40625 278.179688 325.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.996094 70.910156 L 222.632812 73.746094 L 219.359375 73.746094 Z M 220.996094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.726562 418.691406 L 250.363281 415.855469 L 247.089844 415.855469 Z M 248.726562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.503906 189.390625 C 244.503906 191.011719 242.074219 191.011719 242.074219 189.390625 C 242.074219 187.773438 244.503906 187.773438 244.503906 189.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.234375 219.304688 C 189.234375 220.925781 186.804688 220.925781 186.804688 219.304688 C 186.804688 217.683594 189.234375 217.683594 189.234375 219.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.605469 142.804688 C 314.605469 144.425781 312.175781 144.425781 312.175781 142.804688 C 312.175781 141.1875 314.605469 141.1875 314.605469 142.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.011719 251.125 C 309.011719 252.746094 306.582031 252.746094 306.582031 251.125 C 306.582031 249.507812 309.011719 249.507812 309.011719 251.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.996094 129.675781 C 301.996094 131.296875 299.566406 131.296875 299.566406 129.675781 C 299.566406 128.054688 301.996094 128.054688 301.996094 129.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.90625 223.714844 C 132.90625 225.335938 130.476562 225.335938 130.476562 223.714844 C 130.476562 222.09375 132.90625 222.09375 132.90625 223.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.117188 153.371094 C 165.117188 154.992188 162.6875 154.992188 162.6875 153.371094 C 162.6875 151.75 165.117188 151.75 165.117188 153.371094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.214844 70.910156 L 120.851562 73.746094 L 117.578125 73.746094 Z M 119.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.476562 93.644531 C 226.476562 95.265625 224.042969 95.265625 224.042969 93.644531 C 224.042969 92.023438 226.476562 92.023438 226.476562 93.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.753906 193.1875 C 250.753906 194.808594 248.324219 194.808594 248.324219 193.1875 C 248.324219 191.566406 250.753906 191.566406 250.753906 193.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.625 209.277344 C 218.625 210.898438 216.195312 210.898438 216.195312 209.277344 C 216.195312 207.65625 218.625 207.65625 218.625 209.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.839844 182.046875 C 219.839844 183.667969 217.410156 183.667969 217.410156 182.046875 C 217.410156 180.425781 219.839844 180.425781 219.839844 182.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.027344 83.410156 C 243.027344 85.027344 240.597656 85.027344 240.597656 83.410156 C 240.597656 81.789062 243.027344 81.789062 243.027344 83.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.558594 97.90625 C 240.558594 99.527344 238.125 99.527344 238.125 97.90625 C 238.125 96.285156 240.558594 96.285156 240.558594 97.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.921875 366.019531 C 246.921875 367.640625 244.492188 367.640625 244.492188 366.019531 C 244.492188 364.398438 246.921875 364.398438 246.921875 366.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.992188 203.367188 C 202.992188 204.988281 200.5625 204.988281 200.5625 203.367188 C 200.5625 201.746094 202.992188 201.746094 202.992188 203.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.214844 222.058594 C 287.214844 223.675781 284.785156 223.675781 284.785156 222.058594 C 284.785156 220.4375 287.214844 220.4375 287.214844 222.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.101562 278.011719 C 280.101562 279.628906 277.671875 279.628906 277.671875 278.011719 C 277.671875 276.390625 280.101562 276.390625 280.101562 278.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.425781 279.082031 C 329.425781 280.703125 326.996094 280.703125 326.996094 279.082031 C 326.996094 277.460938 329.425781 277.460938 329.425781 279.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.550781 70.910156 L 306.1875 73.746094 L 302.914062 73.746094 Z M 304.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.777344 295.878906 C 314.777344 297.496094 312.347656 297.496094 312.347656 295.878906 C 312.347656 294.257812 314.777344 294.257812 314.777344 295.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.402344 270.390625 C 313.402344 272.011719 310.972656 272.011719 310.972656 270.390625 C 310.972656 268.773438 313.402344 268.773438 313.402344 270.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.417969 280.949219 C 296.417969 282.570312 293.988281 282.570312 293.988281 280.949219 C 293.988281 279.328125 296.417969 279.328125 296.417969 280.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.15625 217.894531 C 290.15625 219.511719 287.722656 219.511719 287.722656 217.894531 C 287.722656 216.273438 290.15625 216.273438 290.15625 217.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.078125 218.214844 C 320.078125 219.835938 317.648438 219.835938 317.648438 218.214844 C 317.648438 216.59375 320.078125 216.59375 320.078125 218.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.6875 333.652344 C 310.6875 335.269531 308.257812 335.269531 308.257812 333.652344 C 308.257812 332.03125 310.6875 332.03125 310.6875 333.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.679688 114.703125 C 148.679688 116.320312 146.25 116.320312 146.25 114.703125 C 146.25 113.082031 148.679688 113.082031 148.679688 114.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.054688 266.28125 C 261.054688 267.898438 258.625 267.898438 258.625 266.28125 C 258.625 264.660156 261.054688 264.660156 261.054688 266.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.347656 418.691406 L 308.984375 415.855469 L 305.710938 415.855469 Z M 307.347656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.449219 170.574219 C 274.449219 172.195312 272.019531 172.195312 272.019531 170.574219 C 272.019531 168.953125 274.449219 168.953125 274.449219 170.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.535156 70.910156 L 273.171875 73.746094 L 269.898438 73.746094 Z M 271.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.765625 302.671875 C 322.765625 304.289062 320.332031 304.289062 320.332031 302.671875 C 320.332031 301.050781 322.765625 301.050781 322.765625 302.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.285156 70.910156 L 262.921875 73.746094 L 259.648438 73.746094 Z M 261.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.894531 232.859375 C 282.894531 234.480469 280.464844 234.480469 280.464844 232.859375 C 280.464844 231.238281 282.894531 231.238281 282.894531 232.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.847656 248.257812 C 289.847656 249.878906 287.417969 249.878906 287.417969 248.257812 C 287.417969 246.636719 289.847656 246.636719 289.847656 248.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.359375 255.589844 C 282.359375 257.210938 279.929688 257.210938 279.929688 255.589844 C 279.929688 253.972656 282.359375 253.972656 282.359375 255.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.910156 70.910156 L 183.546875 73.746094 L 180.273438 73.746094 Z M 181.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.265625 395.390625 C 205.265625 397.011719 202.835938 397.011719 202.835938 395.390625 C 202.835938 393.773438 205.265625 393.773438 205.265625 395.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.039062 310.167969 C 204.039062 311.789062 201.609375 311.789062 201.609375 310.167969 C 201.609375 308.550781 204.039062 308.550781 204.039062 310.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.144531 193.515625 C 267.144531 195.136719 264.714844 195.136719 264.714844 193.515625 C 264.714844 191.898438 267.144531 191.898438 267.144531 193.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.757812 70.910156 L 170.394531 73.746094 L 167.125 73.746094 Z M 168.757812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.402344 70.910156 L 165.039062 73.746094 L 161.765625 73.746094 Z M 163.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.945312 162.765625 C 152.945312 164.386719 150.515625 164.386719 150.515625 162.765625 C 150.515625 161.148438 152.945312 161.148438 152.945312 162.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.636719 248.550781 C 342.636719 250.171875 340.207031 250.171875 340.207031 248.550781 C 340.207031 246.929688 342.636719 246.929688 342.636719 248.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.535156 130.894531 C 152.535156 132.515625 150.105469 132.515625 150.105469 130.894531 C 150.105469 129.273438 152.535156 129.273438 152.535156 130.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.628906 70.910156 L 173.265625 73.746094 L 169.996094 73.746094 Z M 171.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.769531 263.574219 C 246.769531 265.195312 244.339844 265.195312 244.339844 263.574219 C 244.339844 261.953125 246.769531 261.953125 246.769531 263.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.621094 70.910156 L 152.257812 73.746094 L 148.984375 73.746094 Z M 150.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.90625 223.605469 C 261.90625 225.226562 259.476562 225.226562 259.476562 223.605469 C 259.476562 221.988281 261.90625 221.988281 261.90625 223.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.925781 272.246094 C 267.925781 273.863281 265.496094 273.863281 265.496094 272.246094 C 265.496094 270.625 267.925781 270.625 267.925781 272.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.300781 242.335938 C 315.300781 243.957031 312.871094 243.957031 312.871094 242.335938 C 312.871094 240.714844 315.300781 240.714844 315.300781 242.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.488281 283.238281 C 263.488281 284.855469 261.058594 284.855469 261.058594 283.238281 C 261.058594 281.617188 263.488281 281.617188 263.488281 283.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.328125 309.84375 C 273.328125 311.464844 270.898438 311.464844 270.898438 309.84375 C 270.898438 308.222656 273.328125 308.222656 273.328125 309.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.375 252.289062 C 249.375 253.910156 246.945312 253.910156 246.945312 252.289062 C 246.945312 250.667969 249.375 250.667969 249.375 252.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.308594 323.75 C 249.308594 325.371094 246.878906 325.371094 246.878906 323.75 C 246.878906 322.128906 249.308594 322.128906 249.308594 323.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 356.886719 198.746094 C 356.886719 200.367188 354.457031 200.367188 354.457031 198.746094 C 354.457031 197.128906 356.886719 197.128906 356.886719 198.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.570312 390.925781 C 213.570312 392.546875 211.140625 392.546875 211.140625 390.925781 C 211.140625 389.304688 213.570312 389.304688 213.570312 390.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.644531 268.742188 C 295.644531 270.363281 293.214844 270.363281 293.214844 268.742188 C 293.214844 267.121094 295.644531 267.121094 295.644531 268.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.988281 70.910156 L 141.625 73.746094 L 138.351562 73.746094 Z M 139.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.390625 265.253906 C 291.390625 266.875 288.960938 266.875 288.960938 265.253906 C 288.960938 263.632812 291.390625 263.632812 291.390625 265.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.976562 155.425781 C 150.976562 157.046875 148.546875 157.046875 148.546875 155.425781 C 148.546875 153.804688 150.976562 153.804688 150.976562 155.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.367188 418.691406 L 292 415.855469 L 288.730469 415.855469 Z M 290.367188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.761719 271.265625 C 233.761719 272.886719 231.332031 272.886719 231.332031 271.265625 C 231.332031 269.644531 233.761719 269.644531 233.761719 271.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.425781 70.910156 L 169.0625 73.746094 L 165.789062 73.746094 Z M 167.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.058594 316.128906 C 150.058594 317.75 147.628906 317.75 147.628906 316.128906 C 147.628906 314.507812 150.058594 314.507812 150.058594 316.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.214844 293.828125 C 236.214844 295.449219 233.785156 295.449219 233.785156 293.828125 C 233.785156 292.207031 236.214844 292.207031 236.214844 293.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.730469 239.117188 C 262.730469 240.738281 260.300781 240.738281 260.300781 239.117188 C 260.300781 237.5 262.730469 237.5 262.730469 239.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.34375 280.371094 C 267.34375 281.992188 264.914062 281.992188 264.914062 280.371094 C 264.914062 278.753906 267.34375 278.753906 267.34375 280.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.199219 265.878906 C 316.199219 267.5 313.769531 267.5 313.769531 265.878906 C 313.769531 264.257812 316.199219 264.257812 316.199219 265.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.855469 227.273438 C 204.855469 228.894531 202.425781 228.894531 202.425781 227.273438 C 202.425781 225.652344 204.855469 225.652344 204.855469 227.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.558594 277.105469 C 250.558594 278.726562 248.128906 278.726562 248.128906 277.105469 C 248.128906 275.484375 250.558594 275.484375 250.558594 277.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.585938 310.582031 C 265.585938 312.203125 263.152344 312.203125 263.152344 310.582031 C 263.152344 308.964844 265.585938 308.964844 265.585938 310.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.125 218.558594 C 281.125 220.179688 278.695312 220.179688 278.695312 218.558594 C 278.695312 216.9375 281.125 216.9375 281.125 218.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.941406 201.09375 C 261.941406 202.714844 259.511719 202.714844 259.511719 201.09375 C 259.511719 199.472656 261.941406 199.472656 261.941406 201.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.644531 323.585938 C 229.644531 325.207031 227.214844 325.207031 227.214844 323.585938 C 227.214844 321.964844 229.644531 321.964844 229.644531 323.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.394531 418.691406 L 161.027344 415.855469 L 157.757812 415.855469 Z M 159.394531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.605469 149.972656 C 211.605469 151.589844 209.175781 151.589844 209.175781 149.972656 C 209.175781 148.351562 211.605469 148.351562 211.605469 149.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.4375 298.902344 C 303.4375 300.519531 301.007812 300.519531 301.007812 298.902344 C 301.007812 297.28125 303.4375 297.28125 303.4375 298.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.878906 70.910156 L 200.515625 73.746094 L 197.242188 73.746094 Z M 198.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.582031 295.78125 C 244.582031 297.402344 242.152344 297.402344 242.152344 295.78125 C 242.152344 294.164062 244.582031 294.164062 244.582031 295.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.753906 70.910156 L 286.390625 73.746094 L 283.117188 73.746094 Z M 284.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.429688 215.066406 C 225.429688 216.6875 222.996094 216.6875 222.996094 215.066406 C 222.996094 213.449219 225.429688 213.449219 225.429688 215.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.761719 206.929688 C 179.761719 208.550781 177.332031 208.550781 177.332031 206.929688 C 177.332031 205.3125 179.761719 205.3125 179.761719 206.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.546875 285.980469 C 321.546875 287.601562 319.117188 287.601562 319.117188 285.980469 C 319.117188 284.363281 321.546875 284.363281 321.546875 285.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.09375 236.4375 C 297.09375 238.054688 294.664062 238.054688 294.664062 236.4375 C 294.664062 234.816406 297.09375 234.816406 297.09375 236.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.867188 259.105469 C 247.867188 260.722656 245.433594 260.722656 245.433594 259.105469 C 245.433594 257.484375 247.867188 257.484375 247.867188 259.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.691406 290.71875 C 314.691406 292.339844 312.261719 292.339844 312.261719 290.71875 C 312.261719 289.101562 314.691406 289.101562 314.691406 290.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.375 197.085938 C 253.375 198.707031 250.945312 198.707031 250.945312 197.085938 C 250.945312 195.46875 253.375 195.46875 253.375 197.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.289062 228.046875 C 256.289062 229.664062 253.859375 229.664062 253.859375 228.046875 C 253.859375 226.425781 256.289062 226.425781 256.289062 228.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.898438 232.550781 C 215.898438 234.171875 213.46875 234.171875 213.46875 232.550781 C 213.46875 230.929688 215.898438 230.929688 215.898438 232.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.066406 222.859375 C 173.066406 224.476562 170.636719 224.476562 170.636719 222.859375 C 170.636719 221.238281 173.066406 221.238281 173.066406 222.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.984375 243.207031 C 287.984375 244.828125 285.554688 244.828125 285.554688 243.207031 C 285.554688 241.585938 287.984375 241.585938 287.984375 243.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.136719 165.179688 C 212.136719 166.796875 209.707031 166.796875 209.707031 165.179688 C 209.707031 163.558594 212.136719 163.558594 212.136719 165.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.769531 240.296875 C 234.769531 241.917969 232.339844 241.917969 232.339844 240.296875 C 232.339844 238.679688 234.769531 238.679688 234.769531 240.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.945312 276.308594 C 149.945312 277.929688 147.515625 277.929688 147.515625 276.308594 C 147.515625 274.6875 149.945312 274.6875 149.945312 276.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.589844 155.621094 C 130.589844 157.238281 128.160156 157.238281 128.160156 155.621094 C 128.160156 154 130.589844 154 130.589844 155.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.980469 211.34375 C 297.980469 212.964844 295.550781 212.964844 295.550781 211.34375 C 295.550781 209.726562 297.980469 209.726562 297.980469 211.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.957031 240.902344 C 198.957031 242.523438 196.527344 242.523438 196.527344 240.902344 C 196.527344 239.28125 198.957031 239.28125 198.957031 240.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.421875 140.558594 C 243.421875 142.179688 240.992188 142.179688 240.992188 140.558594 C 240.992188 138.941406 243.421875 138.941406 243.421875 140.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.566406 70.910156 L 200.203125 73.746094 L 196.929688 73.746094 Z M 198.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.230469 305.058594 C 282.230469 306.679688 279.800781 306.679688 279.800781 305.058594 C 279.800781 303.441406 282.230469 303.441406 282.230469 305.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.996094 100.902344 C 299.996094 102.523438 297.566406 102.523438 297.566406 100.902344 C 297.566406 99.285156 299.996094 99.285156 299.996094 100.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.484375 300.105469 C 286.484375 301.722656 284.054688 301.722656 284.054688 300.105469 C 284.054688 298.484375 286.484375 298.484375 286.484375 300.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.757812 224.289062 C 274.757812 225.910156 272.328125 225.910156 272.328125 224.289062 C 272.328125 222.667969 274.757812 222.667969 274.757812 224.289062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.46875 70.910156 L 318.105469 73.746094 L 314.832031 73.746094 Z M 316.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.21875 274.460938 C 214.21875 276.082031 211.789062 276.082031 211.789062 274.460938 C 211.789062 272.839844 214.21875 272.839844 214.21875 274.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.421875 256.605469 C 276.421875 258.222656 273.992188 258.222656 273.992188 256.605469 C 273.992188 254.984375 276.421875 254.984375 276.421875 256.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.757812 265.320312 C 308.757812 266.941406 306.328125 266.941406 306.328125 265.320312 C 306.328125 263.699219 308.757812 263.699219 308.757812 265.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.136719 79.609375 C 228.136719 81.230469 225.707031 81.230469 225.707031 79.609375 C 225.707031 77.992188 228.136719 77.992188 228.136719 79.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.597656 383.757812 C 321.597656 385.378906 319.167969 385.378906 319.167969 383.757812 C 319.167969 382.140625 321.597656 382.140625 321.597656 383.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.621094 188.308594 C 247.621094 189.929688 245.191406 189.929688 245.191406 188.308594 C 245.191406 186.691406 247.621094 186.691406 247.621094 188.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.953125 184.300781 C 214.953125 185.921875 212.519531 185.921875 212.519531 184.300781 C 212.519531 182.679688 214.953125 182.679688 214.953125 184.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.070312 175.257812 C 245.070312 176.875 242.640625 176.875 242.640625 175.257812 C 242.640625 173.636719 245.070312 173.636719 245.070312 175.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.988281 207.476562 C 214.988281 209.097656 212.558594 209.097656 212.558594 207.476562 C 212.558594 205.855469 214.988281 205.855469 214.988281 207.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.152344 418.691406 L 326.789062 415.855469 L 323.515625 415.855469 Z M 325.152344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.832031 126.417969 C 136.832031 128.035156 134.402344 128.035156 134.402344 126.417969 C 134.402344 124.796875 136.832031 124.796875 136.832031 126.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.949219 153.484375 C 130.949219 155.105469 128.519531 155.105469 128.519531 153.484375 C 128.519531 151.867188 130.949219 151.867188 130.949219 153.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.347656 268.410156 C 287.347656 270.027344 284.917969 270.027344 284.917969 268.410156 C 284.917969 266.789062 287.347656 266.789062 287.347656 268.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.835938 70.910156 L 228.472656 73.746094 L 225.199219 73.746094 Z M 226.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.472656 336.742188 C 278.472656 338.359375 276.039062 338.359375 276.039062 336.742188 C 276.039062 335.121094 278.472656 335.121094 278.472656 336.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.21875 146.054688 C 294.21875 147.675781 291.789062 147.675781 291.789062 146.054688 C 291.789062 144.4375 294.21875 144.4375 294.21875 146.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.011719 319.757812 C 309.011719 321.375 306.582031 321.375 306.582031 319.757812 C 306.582031 318.136719 309.011719 318.136719 309.011719 319.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.847656 70.910156 L 157.484375 73.746094 L 154.210938 73.746094 Z M 155.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.125 70.910156 L 149.761719 73.746094 L 146.488281 73.746094 Z M 148.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.121094 368.832031 C 236.121094 370.449219 233.691406 370.449219 233.691406 368.832031 C 233.691406 367.210938 236.121094 367.210938 236.121094 368.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.683594 294.449219 C 272.683594 296.070312 270.253906 296.070312 270.253906 294.449219 C 270.253906 292.828125 272.683594 292.828125 272.683594 294.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.878906 289.667969 C 289.878906 291.289062 287.449219 291.289062 287.449219 289.667969 C 287.449219 288.046875 289.878906 288.046875 289.878906 289.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.03125 88.109375 C 286.03125 89.726562 283.601562 89.726562 283.601562 88.109375 C 283.601562 86.488281 286.03125 86.488281 286.03125 88.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.328125 188.378906 C 252.328125 189.996094 249.898438 189.996094 249.898438 188.378906 C 249.898438 186.757812 252.328125 186.757812 252.328125 188.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.011719 236.261719 C 189.011719 237.882812 186.578125 237.882812 186.578125 236.261719 C 186.578125 234.640625 189.011719 234.640625 189.011719 236.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.695312 231.570312 C 210.695312 233.191406 208.265625 233.191406 208.265625 231.570312 C 208.265625 229.949219 210.695312 229.949219 210.695312 231.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.757812 345.03125 C 306.757812 346.652344 304.328125 346.652344 304.328125 345.03125 C 304.328125 343.410156 306.757812 343.410156 306.757812 345.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.382812 149.523438 C 186.382812 151.140625 183.953125 151.140625 183.953125 149.523438 C 183.953125 147.902344 186.382812 147.902344 186.382812 149.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.824219 198.878906 C 278.824219 200.5 276.394531 200.5 276.394531 198.878906 C 276.394531 197.257812 278.824219 197.257812 278.824219 198.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.660156 70.910156 L 185.296875 73.746094 L 182.023438 73.746094 Z M 183.660156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.109375 70.910156 L 260.746094 73.746094 L 257.472656 73.746094 Z M 259.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.214844 193.335938 C 257.214844 194.957031 254.785156 194.957031 254.785156 193.335938 C 254.785156 191.71875 257.214844 191.71875 257.214844 193.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.140625 250.226562 C 223.140625 251.847656 220.710938 251.847656 220.710938 250.226562 C 220.710938 248.605469 223.140625 248.605469 223.140625 250.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.121094 408.664062 C 297.121094 410.285156 294.691406 410.285156 294.691406 408.664062 C 294.691406 407.046875 297.121094 407.046875 297.121094 408.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.304688 119.066406 C 175.304688 120.6875 172.875 120.6875 172.875 119.066406 C 172.875 117.445312 175.304688 117.445312 175.304688 119.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.726562 300.800781 C 305.726562 302.421875 303.296875 302.421875 303.296875 300.800781 C 303.296875 299.179688 305.726562 299.179688 305.726562 300.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.433594 130.027344 C 208.433594 131.648438 206.003906 131.648438 206.003906 130.027344 C 206.003906 128.410156 208.433594 128.410156 208.433594 130.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.226562 171.015625 C 148.226562 172.632812 145.796875 172.632812 145.796875 171.015625 C 145.796875 169.394531 148.226562 169.394531 148.226562 171.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.019531 246.429688 C 241.019531 248.050781 238.589844 248.050781 238.589844 246.429688 C 238.589844 244.808594 241.019531 244.808594 241.019531 246.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.171875 243.496094 C 248.171875 245.113281 245.742188 245.113281 245.742188 243.496094 C 245.742188 241.875 248.171875 241.875 248.171875 243.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.667969 263.261719 C 271.667969 264.882812 269.238281 264.882812 269.238281 263.261719 C 269.238281 261.644531 271.667969 261.644531 271.667969 263.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.769531 186.917969 C 264.769531 188.535156 262.339844 188.535156 262.339844 186.917969 C 262.339844 185.296875 264.769531 185.296875 264.769531 186.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.769531 189.035156 C 204.769531 190.65625 202.339844 190.65625 202.339844 189.035156 C 202.339844 187.417969 204.769531 187.417969 204.769531 189.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.769531 96.117188 C 160.769531 97.738281 158.335938 97.738281 158.335938 96.117188 C 158.335938 94.496094 160.769531 94.496094 160.769531 96.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.332031 234.605469 C 282.332031 236.226562 279.898438 236.226562 279.898438 234.605469 C 279.898438 232.984375 282.332031 232.984375 282.332031 234.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.417969 136.125 C 233.417969 137.746094 230.988281 137.746094 230.988281 136.125 C 230.988281 134.503906 233.417969 134.503906 233.417969 136.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.207031 233.015625 C 206.207031 234.632812 203.777344 234.632812 203.777344 233.015625 C 203.777344 231.394531 206.207031 231.394531 206.207031 233.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.453125 222.175781 C 258.453125 223.796875 256.023438 223.796875 256.023438 222.175781 C 256.023438 220.554688 258.453125 220.554688 258.453125 222.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.417969 264.832031 C 256.417969 266.449219 253.988281 266.449219 253.988281 264.832031 C 253.988281 263.210938 256.417969 263.210938 256.417969 264.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.660156 230.714844 C 227.660156 232.335938 225.230469 232.335938 225.230469 230.714844 C 225.230469 229.097656 227.660156 229.097656 227.660156 230.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.046875 164.765625 C 266.046875 166.386719 263.617188 166.386719 263.617188 164.765625 C 263.617188 163.144531 266.046875 163.144531 266.046875 164.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.675781 70.910156 L 224.3125 73.746094 L 221.039062 73.746094 Z M 222.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.171875 265.988281 C 263.171875 267.605469 260.742188 267.605469 260.742188 265.988281 C 260.742188 264.367188 263.171875 264.367188 263.171875 265.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.558594 282.488281 C 229.558594 284.109375 227.128906 284.109375 227.128906 282.488281 C 227.128906 280.871094 229.558594 280.871094 229.558594 282.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.523438 188.414062 C 235.523438 190.035156 233.09375 190.035156 233.09375 188.414062 C 233.09375 186.792969 235.523438 186.792969 235.523438 188.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.105469 235.878906 C 271.105469 237.5 268.675781 237.5 268.675781 235.878906 C 268.675781 234.257812 271.105469 234.257812 271.105469 235.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.605469 186.011719 C 239.605469 187.632812 237.175781 187.632812 237.175781 186.011719 C 237.175781 184.394531 239.605469 184.394531 239.605469 186.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.160156 212.960938 C 296.160156 214.582031 293.730469 214.582031 293.730469 212.960938 C 293.730469 211.34375 296.160156 211.34375 296.160156 212.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.46875 163.519531 C 228.46875 165.136719 226.039062 165.136719 226.039062 163.519531 C 226.039062 161.898438 228.46875 161.898438 228.46875 163.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.164062 127.546875 C 208.164062 129.167969 205.734375 129.167969 205.734375 127.546875 C 205.734375 125.925781 208.164062 125.925781 208.164062 127.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.429688 70.910156 L 181.066406 73.746094 L 177.792969 73.746094 Z M 179.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.226562 206.539062 C 291.226562 208.15625 288.796875 208.15625 288.796875 206.539062 C 288.796875 204.917969 291.226562 204.917969 291.226562 206.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.351562 351.679688 C 150.351562 353.300781 147.921875 353.300781 147.921875 351.679688 C 147.921875 350.058594 150.351562 350.058594 150.351562 351.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.71875 70.910156 L 203.355469 73.746094 L 200.082031 73.746094 Z M 201.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.191406 124.679688 C 253.191406 126.300781 250.761719 126.300781 250.761719 124.679688 C 250.761719 123.058594 253.191406 123.058594 253.191406 124.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.570312 254.839844 C 292.570312 256.460938 290.136719 256.460938 290.136719 254.839844 C 290.136719 253.21875 292.570312 253.21875 292.570312 254.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.054688 264.925781 C 230.054688 266.546875 227.625 266.546875 227.625 264.925781 C 227.625 263.304688 230.054688 263.304688 230.054688 264.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.511719 154.910156 C 197.511719 156.53125 195.082031 156.53125 195.082031 154.910156 C 195.082031 153.289062 197.511719 153.289062 197.511719 154.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.167969 268.300781 C 167.167969 269.917969 164.738281 269.917969 164.738281 268.300781 C 164.738281 266.679688 167.167969 266.679688 167.167969 268.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.21875 330.527344 C 216.21875 332.148438 213.789062 332.148438 213.789062 330.527344 C 213.789062 328.910156 216.21875 328.910156 216.21875 330.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.777344 199.9375 C 236.777344 201.558594 234.347656 201.558594 234.347656 199.9375 C 234.347656 198.316406 236.777344 198.316406 236.777344 199.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.148438 240.253906 C 240.148438 241.875 237.71875 241.875 237.71875 240.253906 C 237.71875 238.636719 240.148438 238.636719 240.148438 240.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.875 230.855469 C 287.875 232.476562 285.445312 232.476562 285.445312 230.855469 C 285.445312 229.238281 287.875 229.238281 287.875 230.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.695312 229.761719 C 262.695312 231.378906 260.265625 231.378906 260.265625 229.761719 C 260.265625 228.140625 262.695312 228.140625 262.695312 229.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.28125 171.410156 C 129.28125 173.03125 126.851562 173.03125 126.851562 171.410156 C 126.851562 169.789062 129.28125 169.789062 129.28125 171.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.84375 228.214844 C 144.84375 229.832031 142.414062 229.832031 142.414062 228.214844 C 142.414062 226.59375 144.84375 226.59375 144.84375 228.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.957031 88.375 C 292.957031 89.992188 290.527344 89.992188 290.527344 88.375 C 290.527344 86.753906 292.957031 86.753906 292.957031 88.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.800781 252.765625 C 243.800781 254.386719 241.371094 254.386719 241.371094 252.765625 C 241.371094 251.148438 243.800781 251.148438 243.800781 252.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.199219 232.695312 C 300.199219 234.3125 297.769531 234.3125 297.769531 232.695312 C 297.769531 231.074219 300.199219 231.074219 300.199219 232.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.304688 110.332031 C 220.304688 111.949219 217.875 111.949219 217.875 110.332031 C 217.875 108.710938 220.304688 108.710938 220.304688 110.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.886719 168.550781 C 216.886719 170.171875 214.457031 170.171875 214.457031 168.550781 C 214.457031 166.933594 216.886719 166.933594 216.886719 168.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.402344 133.3125 C 132.402344 134.929688 129.972656 134.929688 129.972656 133.3125 C 129.972656 131.691406 132.402344 131.691406 132.402344 133.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.578125 211.925781 C 228.578125 213.542969 226.148438 213.542969 226.148438 211.925781 C 226.148438 210.304688 228.578125 210.304688 228.578125 211.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.492188 334.945312 C 230.492188 336.566406 228.058594 336.566406 228.058594 334.945312 C 228.058594 333.328125 230.492188 333.328125 230.492188 334.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.273438 230.175781 C 252.273438 231.796875 249.84375 231.796875 249.84375 230.175781 C 249.84375 228.554688 252.273438 228.554688 252.273438 230.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.429688 418.691406 L 225.066406 415.855469 L 221.792969 415.855469 Z M 223.429688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.09375 126.941406 C 147.09375 128.558594 144.660156 128.558594 144.660156 126.941406 C 144.660156 125.320312 147.09375 125.320312 147.09375 126.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.882812 268.90625 C 261.882812 270.523438 259.453125 270.523438 259.453125 268.90625 C 259.453125 267.285156 261.882812 267.285156 261.882812 268.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.226562 285.84375 C 220.226562 287.460938 217.792969 287.460938 217.792969 285.84375 C 217.792969 284.222656 220.226562 284.222656 220.226562 285.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.449219 253.378906 C 251.449219 255 249.019531 255 249.019531 253.378906 C 249.019531 251.761719 251.449219 251.761719 251.449219 253.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.742188 278.960938 C 217.742188 280.578125 215.3125 280.578125 215.3125 278.960938 C 215.3125 277.339844 217.742188 277.339844 217.742188 278.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.402344 134.882812 C 261.402344 136.5 258.96875 136.5 258.96875 134.882812 C 258.96875 133.261719 261.402344 133.261719 261.402344 134.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.628906 260.605469 C 293.628906 262.222656 291.199219 262.222656 291.199219 260.605469 C 291.199219 258.984375 293.628906 258.984375 293.628906 260.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.433594 70.910156 L 217.070312 73.746094 L 213.796875 73.746094 Z M 215.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.152344 248.070312 C 239.152344 249.691406 236.722656 249.691406 236.722656 248.070312 C 236.722656 246.449219 239.152344 246.449219 239.152344 248.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.65625 364.183594 C 147.65625 365.800781 145.222656 365.800781 145.222656 364.183594 C 145.222656 362.5625 147.65625 362.5625 147.65625 364.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.515625 301.234375 C 245.515625 302.851562 243.085938 302.851562 243.085938 301.234375 C 243.085938 299.613281 245.515625 299.613281 245.515625 301.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.863281 148.40625 C 250.863281 150.027344 248.433594 150.027344 248.433594 148.40625 C 248.433594 146.789062 250.863281 146.789062 250.863281 148.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.964844 121.191406 C 324.964844 122.808594 322.535156 122.808594 322.535156 121.191406 C 322.535156 119.570312 324.964844 119.570312 324.964844 121.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.632812 159.660156 C 131.632812 161.28125 129.203125 161.28125 129.203125 159.660156 C 129.203125 158.039062 131.632812 158.039062 131.632812 159.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.457031 248.953125 C 199.457031 250.574219 197.027344 250.574219 197.027344 248.953125 C 197.027344 247.335938 199.457031 247.335938 199.457031 248.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.4375 318.234375 C 298.4375 319.851562 296.007812 319.851562 296.007812 318.234375 C 296.007812 316.613281 298.4375 316.613281 298.4375 318.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.527344 239.785156 C 262.527344 241.40625 260.097656 241.40625 260.097656 239.785156 C 260.097656 238.164062 262.527344 238.164062 262.527344 239.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.09375 244.984375 C 270.09375 246.605469 267.660156 246.605469 267.660156 244.984375 C 267.660156 243.367188 270.09375 243.367188 270.09375 244.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.628906 402.421875 C 169.628906 404.039062 167.199219 404.039062 167.199219 402.421875 C 167.199219 400.800781 169.628906 400.800781 169.628906 402.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.027344 253.285156 C 285.027344 254.902344 282.597656 254.902344 282.597656 253.285156 C 282.597656 251.664062 285.027344 251.664062 285.027344 253.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.871094 70.910156 L 211.507812 73.746094 L 208.234375 73.746094 Z M 209.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.835938 230.625 C 282.835938 232.246094 280.40625 232.246094 280.40625 230.625 C 280.40625 229.003906 282.835938 229.003906 282.835938 230.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.726562 251.546875 C 214.726562 253.167969 212.296875 253.167969 212.296875 251.546875 C 212.296875 249.925781 214.726562 249.925781 214.726562 251.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.78125 199.050781 C 255.78125 200.671875 253.347656 200.671875 253.347656 199.050781 C 253.347656 197.433594 255.78125 197.433594 255.78125 199.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.640625 249.789062 C 270.640625 251.410156 268.210938 251.410156 268.210938 249.789062 C 268.210938 248.167969 270.640625 248.167969 270.640625 249.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.570312 278.199219 C 317.570312 279.820312 315.140625 279.820312 315.140625 278.199219 C 315.140625 276.578125 317.570312 276.578125 317.570312 278.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.839844 70.910156 L 116.476562 73.746094 L 113.203125 73.746094 Z M 114.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.027344 278.609375 C 279.027344 280.230469 276.597656 280.230469 276.597656 278.609375 C 276.597656 276.988281 279.027344 276.988281 279.027344 278.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.480469 236.621094 C 327.480469 238.238281 325.050781 238.238281 325.050781 236.621094 C 325.050781 235 327.480469 235 327.480469 236.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.433594 246.3125 C 328.433594 247.933594 326.003906 247.933594 326.003906 246.3125 C 326.003906 244.691406 328.433594 244.691406 328.433594 246.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.089844 158.363281 C 240.089844 159.984375 237.660156 159.984375 237.660156 158.363281 C 237.660156 156.742188 240.089844 156.742188 240.089844 158.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.460938 243.917969 C 288.460938 245.539062 286.03125 245.539062 286.03125 243.917969 C 286.03125 242.300781 288.460938 242.300781 288.460938 243.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.289062 231.316406 C 274.289062 232.933594 271.859375 232.933594 271.859375 231.316406 C 271.859375 229.695312 274.289062 229.695312 274.289062 231.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.539062 266.695312 C 184.539062 268.3125 182.109375 268.3125 182.109375 266.695312 C 182.109375 265.074219 184.539062 265.074219 184.539062 266.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.042969 236.894531 C 278.042969 238.515625 275.613281 238.515625 275.613281 236.894531 C 275.613281 235.273438 278.042969 235.273438 278.042969 236.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.074219 70.910156 L 252.710938 73.746094 L 249.4375 73.746094 Z M 251.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.042969 70.910156 L 223.679688 73.746094 L 220.40625 73.746094 Z M 222.042969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.601562 241.144531 C 248.601562 242.765625 246.167969 242.765625 246.167969 241.144531 C 246.167969 239.523438 248.601562 239.523438 248.601562 241.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.796875 271.296875 C 231.796875 272.914062 229.367188 272.914062 229.367188 271.296875 C 229.367188 269.675781 231.796875 269.675781 231.796875 271.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.035156 298.300781 C 184.035156 299.921875 181.605469 299.921875 181.605469 298.300781 C 181.605469 296.679688 184.035156 296.679688 184.035156 298.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.699219 319.460938 C 259.699219 321.082031 257.269531 321.082031 257.269531 319.460938 C 257.269531 317.839844 259.699219 317.839844 259.699219 319.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.207031 306.804688 C 227.207031 308.425781 224.777344 308.425781 224.777344 306.804688 C 224.777344 305.1875 227.207031 305.1875 227.207031 306.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.800781 230.925781 C 269.800781 232.542969 267.367188 232.542969 267.367188 230.925781 C 267.367188 229.304688 269.800781 229.304688 269.800781 230.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.355469 291.140625 C 242.355469 292.761719 239.925781 292.761719 239.925781 291.140625 C 239.925781 289.523438 242.355469 289.523438 242.355469 291.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.742188 418.691406 L 133.378906 415.855469 L 130.105469 415.855469 Z M 131.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.179688 119.65625 C 223.179688 121.277344 220.75 121.277344 220.75 119.65625 C 220.75 118.035156 223.179688 118.035156 223.179688 119.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.5625 388.726562 C 182.5625 390.347656 180.132812 390.347656 180.132812 388.726562 C 180.132812 387.105469 182.5625 387.105469 182.5625 388.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.910156 349.089844 C 237.910156 350.710938 235.480469 350.710938 235.480469 349.089844 C 235.480469 347.46875 237.910156 347.46875 237.910156 349.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.101562 375.980469 C 224.101562 377.601562 221.671875 377.601562 221.671875 375.980469 C 221.671875 374.363281 224.101562 374.363281 224.101562 375.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.277344 300.097656 C 218.277344 301.71875 215.847656 301.71875 215.847656 300.097656 C 215.847656 298.476562 218.277344 298.476562 218.277344 300.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.5 268.023438 C 273.5 269.644531 271.070312 269.644531 271.070312 268.023438 C 271.070312 266.40625 273.5 266.40625 273.5 268.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.039062 166.242188 C 278.039062 167.863281 275.609375 167.863281 275.609375 166.242188 C 275.609375 164.621094 278.039062 164.621094 278.039062 166.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.011719 179.570312 C 212.011719 181.191406 209.582031 181.191406 209.582031 179.570312 C 209.582031 177.953125 212.011719 177.953125 212.011719 179.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.242188 412.097656 C 236.242188 413.71875 233.8125 413.71875 233.8125 412.097656 C 233.8125 410.476562 236.242188 410.476562 236.242188 412.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.773438 252.753906 C 158.773438 254.371094 156.339844 254.371094 156.339844 252.753906 C 156.339844 251.132812 158.773438 251.132812 158.773438 252.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.917969 276.800781 C 175.917969 278.421875 173.488281 278.421875 173.488281 276.800781 C 173.488281 275.179688 175.917969 275.179688 175.917969 276.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.210938 226.703125 C 212.210938 228.324219 209.78125 228.324219 209.78125 226.703125 C 209.78125 225.082031 212.210938 225.082031 212.210938 226.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.078125 70.910156 L 260.714844 73.746094 L 257.441406 73.746094 Z M 259.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.511719 91.546875 C 224.511719 93.164062 222.082031 93.164062 222.082031 91.546875 C 222.082031 89.925781 224.511719 89.925781 224.511719 91.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.503906 70.910156 L 285.140625 73.746094 L 281.867188 73.746094 Z M 283.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.308594 268.316406 C 260.308594 269.933594 257.878906 269.933594 257.878906 268.316406 C 257.878906 266.695312 260.308594 266.695312 260.308594 268.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.121094 239.097656 C 245.121094 240.71875 242.691406 240.71875 242.691406 239.097656 C 242.691406 237.476562 245.121094 237.476562 245.121094 239.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.976562 70.910156 L 168.609375 73.746094 L 165.339844 73.746094 Z M 166.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 354.101562 389.273438 C 354.101562 390.894531 351.671875 390.894531 351.671875 389.273438 C 351.671875 387.652344 354.101562 387.652344 354.101562 389.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.027344 384.4375 C 290.027344 386.054688 287.597656 386.054688 287.597656 384.4375 C 287.597656 382.816406 290.027344 382.816406 290.027344 384.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.058594 284.546875 C 284.058594 286.167969 281.628906 286.167969 281.628906 284.546875 C 281.628906 282.925781 284.058594 282.925781 284.058594 284.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.082031 289.929688 C 227.082031 291.550781 224.652344 291.550781 224.652344 289.929688 C 224.652344 288.308594 227.082031 288.308594 227.082031 289.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.25 219.703125 C 280.25 221.324219 277.820312 221.324219 277.820312 219.703125 C 277.820312 218.082031 280.25 218.082031 280.25 219.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.449219 82.527344 C 171.449219 84.144531 169.019531 84.144531 169.019531 82.527344 C 169.019531 80.90625 171.449219 80.90625 171.449219 82.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.238281 70.910156 L 151.875 73.746094 L 148.601562 73.746094 Z M 150.238281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.429688 418.691406 L 298.066406 415.855469 L 294.792969 415.855469 Z M 296.429688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.902344 259.8125 C 202.902344 261.433594 200.472656 261.433594 200.472656 259.8125 C 200.472656 258.195312 202.902344 258.195312 202.902344 259.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.496094 243.707031 C 212.496094 245.324219 210.066406 245.324219 210.066406 243.707031 C 210.066406 242.085938 212.496094 242.085938 212.496094 243.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.34375 235.011719 C 233.34375 236.632812 230.914062 236.632812 230.914062 235.011719 C 230.914062 233.390625 233.34375 233.390625 233.34375 235.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.625 258.777344 C 257.625 260.394531 255.195312 260.394531 255.195312 258.777344 C 255.195312 257.15625 257.625 257.15625 257.625 258.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.8125 327.394531 C 178.8125 329.015625 176.382812 329.015625 176.382812 327.394531 C 176.382812 325.777344 178.8125 325.777344 178.8125 327.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.378906 270.710938 C 260.378906 272.332031 257.949219 272.332031 257.949219 270.710938 C 257.949219 269.09375 260.378906 269.09375 260.378906 270.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.238281 254.003906 C 234.238281 255.621094 231.808594 255.621094 231.808594 254.003906 C 231.808594 252.382812 234.238281 252.382812 234.238281 254.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.285156 295.054688 C 261.285156 296.675781 258.855469 296.675781 258.855469 295.054688 C 258.855469 293.4375 261.285156 293.4375 261.285156 295.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215 326.6875 C 215 328.304688 212.570312 328.304688 212.570312 326.6875 C 212.570312 325.066406 215 325.066406 215 326.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.546875 418.691406 L 360.183594 415.855469 L 356.910156 415.855469 Z M 358.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.011719 294.898438 C 259.011719 296.519531 256.582031 296.519531 256.582031 294.898438 C 256.582031 293.277344 259.011719 293.277344 259.011719 294.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.972656 331.191406 C 234.972656 332.808594 232.539062 332.808594 232.539062 331.191406 C 232.539062 329.570312 234.972656 329.570312 234.972656 331.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.035156 250.035156 C 305.035156 251.65625 302.605469 251.65625 302.605469 250.035156 C 302.605469 248.414062 305.035156 248.414062 305.035156 250.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.84375 418.691406 L 216.480469 415.855469 L 213.207031 415.855469 Z M 214.84375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.074219 286.832031 C 312.074219 288.453125 309.644531 288.453125 309.644531 286.832031 C 309.644531 285.214844 312.074219 285.214844 312.074219 286.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.140625 239.304688 C 119.140625 240.921875 116.710938 240.921875 116.710938 239.304688 C 116.710938 237.683594 119.140625 237.683594 119.140625 239.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.601562 418.691406 L 120.238281 415.855469 L 116.964844 415.855469 Z M 118.601562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.59375 70.910156 L 211.226562 73.746094 L 207.957031 73.746094 Z M 209.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.144531 183.957031 C 208.144531 185.574219 205.714844 185.574219 205.714844 183.957031 C 205.714844 182.335938 208.144531 182.335938 208.144531 183.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.464844 394.558594 C 301.464844 396.179688 299.035156 396.179688 299.035156 394.558594 C 299.035156 392.941406 301.464844 392.941406 301.464844 394.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.136719 280.632812 C 242.136719 282.25 239.707031 282.25 239.707031 280.632812 C 239.707031 279.011719 242.136719 279.011719 242.136719 280.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.015625 170.847656 C 237.015625 172.46875 234.585938 172.46875 234.585938 170.847656 C 234.585938 169.226562 237.015625 169.226562 237.015625 170.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.097656 306.027344 C 124.097656 307.644531 121.664062 307.644531 121.664062 306.027344 C 121.664062 304.40625 124.097656 304.40625 124.097656 306.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.355469 253.210938 C 162.355469 254.828125 159.925781 254.828125 159.925781 253.210938 C 159.925781 251.589844 162.355469 251.589844 162.355469 253.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.300781 268.164062 C 250.300781 269.785156 247.867188 269.785156 247.867188 268.164062 C 247.867188 266.546875 250.300781 266.546875 250.300781 268.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.035156 293.585938 C 294.035156 295.203125 291.605469 295.203125 291.605469 293.585938 C 291.605469 291.964844 294.035156 291.964844 294.035156 293.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.886719 347.648438 C 307.886719 349.269531 305.457031 349.269531 305.457031 347.648438 C 305.457031 346.027344 307.886719 346.027344 307.886719 347.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.992188 293.621094 C 228.992188 295.242188 226.5625 295.242188 226.5625 293.621094 C 226.5625 292 228.992188 292 228.992188 293.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.777344 273.355469 C 285.777344 274.976562 283.347656 274.976562 283.347656 273.355469 C 283.347656 271.734375 285.777344 271.734375 285.777344 273.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.566406 172.339844 C 211.566406 173.960938 209.132812 173.960938 209.132812 172.339844 C 209.132812 170.722656 211.566406 170.722656 211.566406 172.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.628906 297.519531 C 293.628906 299.140625 291.199219 299.140625 291.199219 297.519531 C 291.199219 295.898438 293.628906 295.898438 293.628906 297.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.382812 179.90625 C 204.382812 181.527344 201.953125 181.527344 201.953125 179.90625 C 201.953125 178.285156 204.382812 178.285156 204.382812 179.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.132812 276.691406 C 269.132812 278.3125 266.703125 278.3125 266.703125 276.691406 C 266.703125 275.074219 269.132812 275.074219 269.132812 276.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.367188 235.367188 C 321.367188 236.988281 318.9375 236.988281 318.9375 235.367188 C 318.9375 233.746094 321.367188 233.746094 321.367188 235.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.886719 224.210938 C 302.886719 225.832031 300.457031 225.832031 300.457031 224.210938 C 300.457031 222.589844 302.886719 222.589844 302.886719 224.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.066406 197.917969 C 289.066406 199.539062 286.636719 199.539062 286.636719 197.917969 C 286.636719 196.300781 289.066406 196.300781 289.066406 197.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.921875 268.671875 C 294.921875 270.292969 292.492188 270.292969 292.492188 268.671875 C 292.492188 267.050781 294.921875 267.050781 294.921875 268.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.207031 284.894531 C 273.207031 286.515625 270.777344 286.515625 270.777344 284.894531 C 270.777344 283.273438 273.207031 283.273438 273.207031 284.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.078125 418.691406 L 211.714844 415.855469 L 208.445312 415.855469 Z M 210.078125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.53125 418.691406 L 111.167969 415.855469 L 107.894531 415.855469 Z M 109.53125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.660156 418.691406 L 159.296875 415.855469 L 156.023438 415.855469 Z M 157.660156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.867188 418.691406 L 163.503906 415.855469 L 160.230469 415.855469 Z M 161.867188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.660156 298.644531 C 266.660156 300.265625 264.230469 300.265625 264.230469 298.644531 C 264.230469 297.023438 266.660156 297.023438 266.660156 298.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.660156 258.910156 C 257.660156 260.53125 255.230469 260.53125 255.230469 258.910156 C 255.230469 257.292969 257.660156 257.292969 257.660156 258.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.683594 193.726562 C 159.683594 195.34375 157.253906 195.34375 157.253906 193.726562 C 157.253906 192.105469 159.683594 192.105469 159.683594 193.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.222656 283.726562 C 216.222656 285.347656 213.792969 285.347656 213.792969 283.726562 C 213.792969 282.109375 216.222656 282.109375 216.222656 283.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.199219 283.464844 C 224.199219 285.085938 221.769531 285.085938 221.769531 283.464844 C 221.769531 281.847656 224.199219 281.847656 224.199219 283.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.472656 70.910156 L 303.109375 73.746094 L 299.835938 73.746094 Z M 301.472656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.589844 261.074219 C 277.589844 262.691406 275.160156 262.691406 275.160156 261.074219 C 275.160156 259.453125 277.589844 259.453125 277.589844 261.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.414062 288.855469 C 204.414062 290.476562 201.984375 290.476562 201.984375 288.855469 C 201.984375 287.234375 204.414062 287.234375 204.414062 288.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.558594 305.292969 C 178.558594 306.910156 176.128906 306.910156 176.128906 305.292969 C 176.128906 303.671875 178.558594 303.671875 178.558594 305.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.910156 70.910156 L 208.546875 73.746094 L 205.277344 73.746094 Z M 206.910156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.628906 70.910156 L 253.265625 73.746094 L 249.992188 73.746094 Z M 251.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.445312 70.910156 L 222.082031 73.746094 L 218.808594 73.746094 Z M 220.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.585938 126.050781 C 245.585938 127.671875 243.15625 127.671875 243.15625 126.050781 C 243.15625 124.429688 245.585938 124.429688 245.585938 126.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.996094 240.527344 C 309.996094 242.144531 307.566406 242.144531 307.566406 240.527344 C 307.566406 238.90625 309.996094 238.90625 309.996094 240.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.546875 183.730469 C 287.546875 185.347656 285.117188 185.347656 285.117188 183.730469 C 285.117188 182.109375 287.546875 182.109375 287.546875 183.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.039062 145.675781 C 258.039062 147.292969 255.609375 147.292969 255.609375 145.675781 C 255.609375 144.054688 258.039062 144.054688 258.039062 145.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.765625 160.609375 C 248.765625 162.230469 246.335938 162.230469 246.335938 160.609375 C 246.335938 158.988281 248.765625 158.988281 248.765625 160.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.136719 241.707031 C 296.136719 243.328125 293.707031 243.328125 293.707031 241.707031 C 293.707031 240.089844 296.136719 240.089844 296.136719 241.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.507812 297.699219 C 230.507812 299.320312 228.078125 299.320312 228.078125 297.699219 C 228.078125 296.082031 230.507812 296.082031 230.507812 297.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.84375 70.910156 L 218.480469 73.746094 L 215.207031 73.746094 Z M 216.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.992188 145.679688 C 259.992188 147.300781 257.5625 147.300781 257.5625 145.679688 C 257.5625 144.0625 259.992188 144.0625 259.992188 145.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.429688 263.40625 C 283.429688 265.027344 281 265.027344 281 263.40625 C 281 261.785156 283.429688 261.785156 283.429688 263.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.839844 251.710938 C 264.839844 253.332031 262.410156 253.332031 262.410156 251.710938 C 262.410156 250.089844 264.839844 250.089844 264.839844 251.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.589844 299.101562 C 275.589844 300.722656 273.160156 300.722656 273.160156 299.101562 C 273.160156 297.484375 275.589844 297.484375 275.589844 299.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.453125 277.210938 C 304.453125 278.832031 302.023438 278.832031 302.023438 277.210938 C 302.023438 275.59375 304.453125 275.59375 304.453125 277.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.46875 317.421875 C 259.46875 319.042969 257.039062 319.042969 257.039062 317.421875 C 257.039062 315.800781 259.46875 315.800781 259.46875 317.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.765625 213.042969 C 281.765625 214.664062 279.335938 214.664062 279.335938 213.042969 C 279.335938 211.425781 281.765625 211.425781 281.765625 213.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.484375 70.910156 L 231.117188 73.746094 L 227.847656 73.746094 Z M 229.484375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.535156 70.910156 L 145.171875 73.746094 L 141.898438 73.746094 Z M 143.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.785156 160.820312 C 338.785156 162.441406 336.355469 162.441406 336.355469 160.820312 C 336.355469 159.203125 338.785156 159.203125 338.785156 160.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.1875 418.691406 L 246.824219 415.855469 L 243.550781 415.855469 Z M 245.1875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.351562 418.691406 L 328.988281 415.855469 L 325.714844 415.855469 Z M 327.351562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.210938 70.910156 L 259.847656 73.746094 L 256.574219 73.746094 Z M 258.210938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.371094 294.101562 C 278.371094 295.722656 275.941406 295.722656 275.941406 294.101562 C 275.941406 292.484375 278.371094 292.484375 278.371094 294.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.914062 302.097656 C 257.914062 303.71875 255.484375 303.71875 255.484375 302.097656 C 255.484375 300.480469 257.914062 300.480469 257.914062 302.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.183594 223.34375 C 300.183594 224.964844 297.753906 224.964844 297.753906 223.34375 C 297.753906 221.722656 300.183594 221.722656 300.183594 223.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.351562 239.925781 C 259.351562 241.542969 256.921875 241.542969 256.921875 239.925781 C 256.921875 238.304688 259.351562 238.304688 259.351562 239.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.328125 251.355469 C 255.328125 252.972656 252.898438 252.972656 252.898438 251.355469 C 252.898438 249.734375 255.328125 249.734375 255.328125 251.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.90625 70.910156 L 269.542969 73.746094 L 266.269531 73.746094 Z M 267.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.25 288.707031 C 299.25 290.328125 296.820312 290.328125 296.820312 288.707031 C 296.820312 287.085938 299.25 287.085938 299.25 288.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.730469 70.910156 L 205.363281 73.746094 L 202.09375 73.746094 Z M 203.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.582031 264.84375 C 303.582031 266.464844 301.152344 266.464844 301.152344 264.84375 C 301.152344 263.226562 303.582031 263.226562 303.582031 264.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.578125 188.253906 C 261.578125 189.875 259.148438 189.875 259.148438 188.253906 C 259.148438 186.636719 261.578125 186.636719 261.578125 188.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.496094 70.910156 L 171.132812 73.746094 L 167.859375 73.746094 Z M 169.496094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.957031 70.910156 L 190.59375 73.746094 L 187.320312 73.746094 Z M 188.957031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.980469 161.507812 C 274.980469 163.128906 272.550781 163.128906 272.550781 161.507812 C 272.550781 159.886719 274.980469 159.886719 274.980469 161.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.367188 236.296875 C 155.367188 237.917969 152.9375 237.917969 152.9375 236.296875 C 152.9375 234.679688 155.367188 234.679688 155.367188 236.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.4375 106.476562 C 138.4375 108.097656 136.007812 108.097656 136.007812 106.476562 C 136.007812 104.859375 138.4375 104.859375 138.4375 106.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.632812 228.054688 C 283.632812 229.675781 281.203125 229.675781 281.203125 228.054688 C 281.203125 226.433594 283.632812 226.433594 283.632812 228.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.96875 260.207031 C 323.96875 261.828125 321.539062 261.828125 321.539062 260.207031 C 321.539062 258.585938 323.96875 258.585938 323.96875 260.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 383.019531 204.84375 C 383.019531 206.460938 380.589844 206.460938 380.589844 204.84375 C 380.589844 203.222656 383.019531 203.222656 383.019531 204.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.253906 105.90625 C 157.253906 107.527344 154.824219 107.527344 154.824219 105.90625 C 154.824219 104.285156 157.253906 104.285156 157.253906 105.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.414062 195.953125 C 191.414062 197.574219 188.984375 197.574219 188.984375 195.953125 C 188.984375 194.332031 191.414062 194.332031 191.414062 195.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.917969 240.4375 C 262.917969 242.054688 260.488281 242.054688 260.488281 240.4375 C 260.488281 238.816406 262.917969 238.816406 262.917969 240.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.175781 70.910156 L 264.8125 73.746094 L 261.539062 73.746094 Z M 263.175781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.507812 95.472656 C 311.507812 97.09375 309.078125 97.09375 309.078125 95.472656 C 309.078125 93.855469 311.507812 93.855469 311.507812 95.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.015625 235.03125 C 263.015625 236.652344 260.585938 236.652344 260.585938 235.03125 C 260.585938 233.410156 263.015625 233.410156 263.015625 235.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.046875 248.28125 C 280.046875 249.902344 277.617188 249.902344 277.617188 248.28125 C 277.617188 246.664062 280.046875 246.664062 280.046875 248.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.625 229.890625 C 264.625 231.511719 262.195312 231.511719 262.195312 229.890625 C 262.195312 228.269531 264.625 228.269531 264.625 229.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.886719 418.691406 L 269.523438 415.855469 L 266.25 415.855469 Z M 267.886719 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.8125 70.910156 L 251.445312 73.746094 L 248.175781 73.746094 Z M 249.8125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.425781 70.910156 L 253.0625 73.746094 L 249.789062 73.746094 Z M 251.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.167969 250.398438 C 185.167969 252.019531 182.738281 252.019531 182.738281 250.398438 C 182.738281 248.78125 185.167969 248.78125 185.167969 250.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.390625 192.226562 C 205.390625 193.847656 202.960938 193.847656 202.960938 192.226562 C 202.960938 190.605469 205.390625 190.605469 205.390625 192.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.9375 175.621094 C 209.9375 177.242188 207.507812 177.242188 207.507812 175.621094 C 207.507812 174.003906 209.9375 174.003906 209.9375 175.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.183594 195.269531 C 348.183594 196.890625 345.753906 196.890625 345.753906 195.269531 C 345.753906 193.652344 348.183594 193.652344 348.183594 195.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.085938 218.8125 C 347.085938 220.433594 344.65625 220.433594 344.65625 218.8125 C 344.65625 217.191406 347.085938 217.191406 347.085938 218.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 387.789062 206.890625 C 387.789062 208.511719 385.359375 208.511719 385.359375 206.890625 C 385.359375 205.273438 387.789062 205.273438 387.789062 206.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.746094 263.570312 C 286.746094 265.191406 284.316406 265.191406 284.316406 263.570312 C 284.316406 261.953125 286.746094 261.953125 286.746094 263.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.585938 70.910156 L 360.21875 73.746094 L 356.949219 73.746094 Z M 358.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.949219 155.597656 C 114.949219 157.21875 112.519531 157.21875 112.519531 155.597656 C 112.519531 153.980469 114.949219 153.980469 114.949219 155.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.726562 188.839844 C 255.726562 190.460938 253.296875 190.460938 253.296875 188.839844 C 253.296875 187.21875 255.726562 187.21875 255.726562 188.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.871094 216.335938 C 295.871094 217.957031 293.441406 217.957031 293.441406 216.335938 C 293.441406 214.71875 295.871094 214.71875 295.871094 216.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.613281 159.277344 C 233.613281 160.894531 231.183594 160.894531 231.183594 159.277344 C 231.183594 157.65625 233.613281 157.65625 233.613281 159.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.089844 153.054688 C 280.089844 154.675781 277.660156 154.675781 277.660156 153.054688 C 277.660156 151.4375 280.089844 151.4375 280.089844 153.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.230469 217.296875 C 278.230469 218.917969 275.800781 218.917969 275.800781 217.296875 C 275.800781 215.679688 278.230469 215.679688 278.230469 217.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.574219 70.910156 L 191.210938 73.746094 L 187.9375 73.746094 Z M 189.574219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.425781 70.910156 L 203.0625 73.746094 L 199.789062 73.746094 Z M 201.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.289062 246.15625 C 342.289062 247.777344 339.859375 247.777344 339.859375 246.15625 C 339.859375 244.539062 342.289062 244.539062 342.289062 246.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.277344 70.910156 L 269.914062 73.746094 L 266.640625 73.746094 Z M 268.277344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.917969 70.910156 L 161.554688 73.746094 L 158.28125 73.746094 Z M 159.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.335938 129.007812 C 213.335938 130.625 210.90625 130.625 210.90625 129.007812 C 210.90625 127.386719 213.335938 127.386719 213.335938 129.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.039062 278.015625 C 257.039062 279.636719 254.609375 279.636719 254.609375 278.015625 C 254.609375 276.394531 257.039062 276.394531 257.039062 278.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.324219 271.125 C 177.324219 272.746094 174.894531 272.746094 174.894531 271.125 C 174.894531 269.503906 177.324219 269.503906 177.324219 271.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.824219 70.910156 L 152.460938 73.746094 L 149.1875 73.746094 Z M 150.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.710938 181.964844 C 272.710938 183.585938 270.28125 183.585938 270.28125 181.964844 C 270.28125 180.34375 272.710938 180.34375 272.710938 181.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.628906 329.859375 C 264.628906 331.480469 262.199219 331.480469 262.199219 329.859375 C 262.199219 328.242188 264.628906 328.242188 264.628906 329.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.167969 78.503906 C 126.167969 80.125 123.738281 80.125 123.738281 78.503906 C 123.738281 76.882812 126.167969 76.882812 126.167969 78.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.019531 70.910156 L 295.65625 73.746094 L 292.382812 73.746094 Z M 294.019531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.253906 259.027344 C 245.253906 260.648438 242.824219 260.648438 242.824219 259.027344 C 242.824219 257.40625 245.253906 257.40625 245.253906 259.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.363281 288.1875 C 204.363281 289.808594 201.933594 289.808594 201.933594 288.1875 C 201.933594 286.570312 204.363281 286.570312 204.363281 288.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.980469 286.050781 C 274.980469 287.667969 272.550781 287.667969 272.550781 286.050781 C 272.550781 284.429688 274.980469 284.429688 274.980469 286.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.003906 283.695312 C 205.003906 285.316406 202.574219 285.316406 202.574219 283.695312 C 202.574219 282.074219 205.003906 282.074219 205.003906 283.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.578125 125.65625 C 262.578125 127.277344 260.148438 127.277344 260.148438 125.65625 C 260.148438 124.035156 262.578125 124.035156 262.578125 125.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.308594 418.691406 L 245.945312 415.855469 L 242.671875 415.855469 Z M 244.308594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.277344 168.507812 C 229.277344 170.128906 226.847656 170.128906 226.847656 168.507812 C 226.847656 166.886719 229.277344 166.886719 229.277344 168.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.023438 70.910156 L 177.660156 73.746094 L 174.386719 73.746094 Z M 176.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.0625 255.363281 C 198.0625 256.980469 195.632812 256.980469 195.632812 255.363281 C 195.632812 253.742188 198.0625 253.742188 198.0625 255.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.496094 248.851562 C 243.496094 250.472656 241.066406 250.472656 241.066406 248.851562 C 241.066406 247.230469 243.496094 247.230469 243.496094 248.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.316406 220.886719 C 289.316406 222.507812 286.886719 222.507812 286.886719 220.886719 C 286.886719 219.269531 289.316406 219.269531 289.316406 220.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.121094 218.128906 C 269.121094 219.746094 266.691406 219.746094 266.691406 218.128906 C 266.691406 216.507812 269.121094 216.507812 269.121094 218.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.535156 70.910156 L 190.171875 73.746094 L 186.898438 73.746094 Z M 188.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.242188 125.269531 C 300.242188 126.890625 297.8125 126.890625 297.8125 125.269531 C 297.8125 123.652344 300.242188 123.652344 300.242188 125.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.058594 418.691406 L 295.695312 415.855469 L 292.425781 415.855469 Z M 294.058594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.675781 352.398438 C 266.675781 354.019531 264.246094 354.019531 264.246094 352.398438 C 264.246094 350.777344 266.675781 350.777344 266.675781 352.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.746094 171.589844 C 239.746094 173.210938 237.316406 173.210938 237.316406 171.589844 C 237.316406 169.96875 239.746094 169.96875 239.746094 171.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.6875 153.652344 C 219.6875 155.269531 217.257812 155.269531 217.257812 153.652344 C 217.257812 152.03125 219.6875 152.03125 219.6875 153.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.550781 70.910156 L 127.1875 73.746094 L 123.914062 73.746094 Z M 125.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.613281 258.136719 C 287.613281 259.753906 285.183594 259.753906 285.183594 258.136719 C 285.183594 256.515625 287.613281 256.515625 287.613281 258.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.492188 247.808594 C 280.492188 249.425781 278.0625 249.425781 278.0625 247.808594 C 278.0625 246.1875 280.492188 246.1875 280.492188 247.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.1875 200.605469 C 166.1875 202.222656 163.757812 202.222656 163.757812 200.605469 C 163.757812 198.984375 166.1875 198.984375 166.1875 200.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.265625 136.515625 C 216.265625 138.136719 213.835938 138.136719 213.835938 136.515625 C 213.835938 134.894531 216.265625 134.894531 216.265625 136.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.988281 170.148438 C 210.988281 171.769531 208.554688 171.769531 208.554688 170.148438 C 208.554688 168.527344 210.988281 168.527344 210.988281 170.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.015625 70.910156 L 220.648438 73.746094 L 217.378906 73.746094 Z M 219.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.628906 358.113281 C 214.628906 359.734375 212.199219 359.734375 212.199219 358.113281 C 212.199219 356.492188 214.628906 356.492188 214.628906 358.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.683594 121.222656 C 210.683594 122.84375 208.253906 122.84375 208.253906 121.222656 C 208.253906 119.605469 210.683594 119.605469 210.683594 121.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.949219 133.523438 C 144.949219 135.144531 142.519531 135.144531 142.519531 133.523438 C 142.519531 131.90625 144.949219 131.90625 144.949219 133.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.039062 171.988281 C 172.039062 173.605469 169.609375 173.605469 169.609375 171.988281 C 169.609375 170.367188 172.039062 170.367188 172.039062 171.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.847656 127.578125 C 116.847656 129.199219 114.417969 129.199219 114.417969 127.578125 C 114.417969 125.960938 116.847656 125.960938 116.847656 127.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.144531 70.910156 L 179.78125 73.746094 L 176.507812 73.746094 Z M 178.144531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.113281 70.910156 L 223.75 73.746094 L 220.476562 73.746094 Z M 222.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.121094 182.058594 C 230.121094 183.675781 227.691406 183.675781 227.691406 182.058594 C 227.691406 180.4375 230.121094 180.4375 230.121094 182.058594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.605469 70.910156 L 206.242188 73.746094 L 202.96875 73.746094 Z M 204.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.917969 87.675781 C 140.917969 89.296875 138.488281 89.296875 138.488281 87.675781 C 138.488281 86.058594 140.917969 86.058594 140.917969 87.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.914062 70.910156 L 197.550781 73.746094 L 194.277344 73.746094 Z M 195.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.800781 70.910156 L 197.4375 73.746094 L 194.167969 73.746094 Z M 195.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.976562 102.109375 C 190.976562 103.730469 188.546875 103.730469 188.546875 102.109375 C 188.546875 100.488281 190.976562 100.488281 190.976562 102.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.15625 292.300781 C 303.15625 293.917969 300.726562 293.917969 300.726562 292.300781 C 300.726562 290.679688 303.15625 290.679688 303.15625 292.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.941406 70.910156 L 170.578125 73.746094 L 167.304688 73.746094 Z M 168.941406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 409.125 132.792969 C 409.125 134.414062 406.695312 134.414062 406.695312 132.792969 C 406.695312 131.175781 409.125 131.175781 409.125 132.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.210938 264.414062 C 251.210938 266.035156 248.78125 266.035156 248.78125 264.414062 C 248.78125 262.792969 251.210938 262.792969 251.210938 264.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.46875 70.910156 L 192.105469 73.746094 L 188.835938 73.746094 Z M 190.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.671875 155.480469 C 113.671875 157.097656 111.242188 157.097656 111.242188 155.480469 C 111.242188 153.859375 113.671875 153.859375 113.671875 155.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.597656 283.066406 C 209.597656 284.683594 207.167969 284.683594 207.167969 283.066406 C 207.167969 281.445312 209.597656 281.445312 209.597656 283.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.644531 199.148438 C 207.644531 200.769531 205.214844 200.769531 205.214844 199.148438 C 205.214844 197.527344 207.644531 197.527344 207.644531 199.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.507812 199.0625 C 295.507812 200.679688 293.078125 200.679688 293.078125 199.0625 C 293.078125 197.441406 295.507812 197.441406 295.507812 199.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.945312 244.796875 C 272.945312 246.417969 270.515625 246.417969 270.515625 244.796875 C 270.515625 243.175781 272.945312 243.175781 272.945312 244.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.289062 70.910156 L 195.925781 73.746094 L 192.652344 73.746094 Z M 194.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.699219 298.636719 C 238.699219 300.257812 236.269531 300.257812 236.269531 298.636719 C 236.269531 297.015625 238.699219 297.015625 238.699219 298.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.894531 399.378906 C 139.894531 400.996094 137.464844 400.996094 137.464844 399.378906 C 137.464844 397.757812 139.894531 397.757812 139.894531 399.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.285156 345.566406 C 232.285156 347.1875 229.855469 347.1875 229.855469 345.566406 C 229.855469 343.945312 232.285156 343.945312 232.285156 345.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.296875 93.25 C 233.296875 94.871094 230.867188 94.871094 230.867188 93.25 C 230.867188 91.628906 233.296875 91.628906 233.296875 93.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.421875 127.066406 C 265.421875 128.6875 262.992188 128.6875 262.992188 127.066406 C 262.992188 125.449219 265.421875 125.449219 265.421875 127.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.25 346.398438 C 311.25 348.019531 308.820312 348.019531 308.820312 346.398438 C 308.820312 344.777344 311.25 344.777344 311.25 346.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.460938 284.195312 C 264.460938 285.816406 262.03125 285.816406 262.03125 284.195312 C 262.03125 282.578125 264.460938 282.578125 264.460938 284.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.515625 70.910156 L 122.152344 73.746094 L 118.878906 73.746094 Z M 120.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.066406 180.074219 C 249.066406 181.691406 246.636719 181.691406 246.636719 180.074219 C 246.636719 178.453125 249.066406 178.453125 249.066406 180.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.023438 130.019531 C 303.023438 131.636719 300.59375 131.636719 300.59375 130.019531 C 300.59375 128.398438 303.023438 128.398438 303.023438 130.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.054688 281.558594 C 279.054688 283.179688 276.625 283.179688 276.625 281.558594 C 276.625 279.941406 279.054688 279.941406 279.054688 281.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.15625 320.011719 C 244.15625 321.632812 241.726562 321.632812 241.726562 320.011719 C 241.726562 318.390625 244.15625 318.390625 244.15625 320.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.742188 215.472656 C 267.742188 217.09375 265.3125 217.09375 265.3125 215.472656 C 265.3125 213.851562 267.742188 213.851562 267.742188 215.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.515625 254.117188 C 261.515625 255.734375 259.085938 255.734375 259.085938 254.117188 C 259.085938 252.496094 261.515625 252.496094 261.515625 254.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.207031 70.910156 L 119.84375 73.746094 L 116.570312 73.746094 Z M 118.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.839844 166.394531 C 152.839844 168.015625 150.410156 168.015625 150.410156 166.394531 C 150.410156 164.773438 152.839844 164.773438 152.839844 166.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.070312 252.402344 C 214.070312 254.023438 211.640625 254.023438 211.640625 252.402344 C 211.640625 250.78125 214.070312 250.78125 214.070312 252.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.710938 70.910156 L 282.347656 73.746094 L 279.074219 73.746094 Z M 280.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.253906 210.265625 C 214.253906 211.886719 211.824219 211.886719 211.824219 210.265625 C 211.824219 208.644531 214.253906 208.644531 214.253906 210.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.652344 79.394531 C 244.652344 81.011719 242.222656 81.011719 242.222656 79.394531 C 242.222656 77.773438 244.652344 77.773438 244.652344 79.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.113281 70.910156 L 255.75 73.746094 L 252.476562 73.746094 Z M 254.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.960938 82.488281 C 193.960938 84.109375 191.527344 84.109375 191.527344 82.488281 C 191.527344 80.867188 193.960938 80.867188 193.960938 82.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.746094 274.929688 C 340.746094 276.550781 338.316406 276.550781 338.316406 274.929688 C 338.316406 273.3125 340.746094 273.3125 340.746094 274.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.65625 70.910156 L 223.292969 73.746094 L 220.019531 73.746094 Z M 221.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.847656 253.582031 C 268.847656 255.203125 266.417969 255.203125 266.417969 253.582031 C 266.417969 251.964844 268.847656 251.964844 268.847656 253.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.863281 267.722656 C 208.863281 269.34375 206.429688 269.34375 206.429688 267.722656 C 206.429688 266.105469 208.863281 266.105469 208.863281 267.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.867188 210.839844 C 304.867188 212.460938 302.4375 212.460938 302.4375 210.839844 C 302.4375 209.222656 304.867188 209.222656 304.867188 210.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.664062 204.738281 C 274.664062 206.359375 272.234375 206.359375 272.234375 204.738281 C 272.234375 203.117188 274.664062 203.117188 274.664062 204.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.652344 94.976562 C 122.652344 96.59375 120.222656 96.59375 120.222656 94.976562 C 120.222656 93.355469 122.652344 93.355469 122.652344 94.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.773438 238.101562 C 289.773438 239.71875 287.34375 239.71875 287.34375 238.101562 C 287.34375 236.480469 289.773438 236.480469 289.773438 238.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.601562 179.0625 C 310.601562 180.683594 308.171875 180.683594 308.171875 179.0625 C 308.171875 177.441406 310.601562 177.441406 310.601562 179.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.550781 105.894531 C 120.550781 107.515625 118.121094 107.515625 118.121094 105.894531 C 118.121094 104.277344 120.550781 104.277344 120.550781 105.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.851562 332.421875 C 313.851562 334.042969 311.421875 334.042969 311.421875 332.421875 C 311.421875 330.804688 313.851562 330.804688 313.851562 332.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.414062 212.554688 C 243.414062 214.175781 240.984375 214.175781 240.984375 212.554688 C 240.984375 210.9375 243.414062 210.9375 243.414062 212.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.617188 224.808594 C 257.617188 226.429688 255.1875 226.429688 255.1875 224.808594 C 255.1875 223.1875 257.617188 223.1875 257.617188 224.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 356.144531 257.320312 C 356.144531 258.941406 353.714844 258.941406 353.714844 257.320312 C 353.714844 255.699219 356.144531 255.699219 356.144531 257.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.054688 343.265625 C 193.054688 344.882812 190.625 344.882812 190.625 343.265625 C 190.625 341.644531 193.054688 341.644531 193.054688 343.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.496094 103.058594 C 267.496094 104.679688 265.066406 104.679688 265.066406 103.058594 C 265.066406 101.441406 267.496094 101.441406 267.496094 103.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.800781 328.964844 C 256.800781 330.585938 254.367188 330.585938 254.367188 328.964844 C 254.367188 327.347656 256.800781 327.347656 256.800781 328.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.417969 324.476562 C 256.417969 326.09375 253.988281 326.09375 253.988281 324.476562 C 253.988281 322.855469 256.417969 322.855469 256.417969 324.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.347656 221.035156 C 221.347656 222.65625 218.917969 222.65625 218.917969 221.035156 C 218.917969 219.417969 221.347656 219.417969 221.347656 221.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.476562 188.714844 C 193.476562 190.335938 191.046875 190.335938 191.046875 188.714844 C 191.046875 187.09375 193.476562 187.09375 193.476562 188.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.59375 227.3125 C 271.59375 228.929688 269.164062 228.929688 269.164062 227.3125 C 269.164062 225.691406 271.59375 225.691406 271.59375 227.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.621094 206.578125 C 211.621094 208.199219 209.191406 208.199219 209.191406 206.578125 C 209.191406 204.960938 211.621094 204.960938 211.621094 206.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.195312 367.175781 C 192.195312 368.796875 189.765625 368.796875 189.765625 367.175781 C 189.765625 365.558594 192.195312 365.558594 192.195312 367.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.691406 267.527344 C 234.691406 269.144531 232.261719 269.144531 232.261719 267.527344 C 232.261719 265.90625 234.691406 265.90625 234.691406 267.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.855469 243.972656 C 206.855469 245.59375 204.425781 245.59375 204.425781 243.972656 C 204.425781 242.355469 206.855469 242.355469 206.855469 243.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.964844 354.207031 C 150.964844 355.824219 148.535156 355.824219 148.535156 354.207031 C 148.535156 352.585938 150.964844 352.585938 150.964844 354.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.574219 227.570312 C 240.574219 229.191406 238.144531 229.191406 238.144531 227.570312 C 238.144531 225.949219 240.574219 225.949219 240.574219 227.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.570312 352.09375 C 331.570312 353.714844 329.140625 353.714844 329.140625 352.09375 C 329.140625 350.476562 331.570312 350.476562 331.570312 352.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.882812 225.652344 C 310.882812 227.273438 308.449219 227.273438 308.449219 225.652344 C 308.449219 224.03125 310.882812 224.03125 310.882812 225.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 185.878906 73.15625 C 185.878906 74.777344 183.449219 74.777344 183.449219 73.15625 C 183.449219 71.539062 185.878906 71.539062 185.878906 73.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.582031 274.027344 C 247.582031 275.648438 245.152344 275.648438 245.152344 274.027344 C 245.152344 272.40625 247.582031 272.40625 247.582031 274.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.625 284.03125 C 292.625 285.652344 290.195312 285.652344 290.195312 284.03125 C 290.195312 282.410156 292.625 282.410156 292.625 284.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.019531 266.660156 C 221.019531 268.277344 218.585938 268.277344 218.585938 266.660156 C 218.585938 265.039062 221.019531 265.039062 221.019531 266.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.921875 70.910156 L 241.558594 73.746094 L 238.285156 73.746094 Z M 239.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.5 76.984375 C 344.5 78.601562 342.070312 78.601562 342.070312 76.984375 C 342.070312 75.363281 344.5 75.363281 344.5 76.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.5625 278.261719 C 204.5625 279.878906 202.132812 279.878906 202.132812 278.261719 C 202.132812 276.640625 204.5625 276.640625 204.5625 278.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.792969 234.695312 C 169.792969 236.316406 167.363281 236.316406 167.363281 234.695312 C 167.363281 233.074219 169.792969 233.074219 169.792969 234.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.34375 218.339844 C 285.34375 219.960938 282.914062 219.960938 282.914062 218.339844 C 282.914062 216.722656 285.34375 216.722656 285.34375 218.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.257812 242.988281 C 260.257812 244.605469 257.828125 244.605469 257.828125 242.988281 C 257.828125 241.367188 260.257812 241.367188 260.257812 242.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.371094 248.640625 C 256.371094 250.261719 253.941406 250.261719 253.941406 248.640625 C 253.941406 247.023438 256.371094 247.023438 256.371094 248.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.867188 183.6875 C 300.867188 185.308594 298.4375 185.308594 298.4375 183.6875 C 298.4375 182.066406 300.867188 182.066406 300.867188 183.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.097656 293.113281 C 309.097656 294.734375 306.664062 294.734375 306.664062 293.113281 C 306.664062 291.496094 309.097656 291.496094 309.097656 293.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272 229.984375 C 272 231.601562 269.566406 231.601562 269.566406 229.984375 C 269.566406 228.363281 272 228.363281 272 229.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.867188 73.929688 C 126.867188 75.550781 124.4375 75.550781 124.4375 73.929688 C 124.4375 72.3125 126.867188 72.3125 126.867188 73.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.855469 114.757812 C 244.855469 116.378906 242.425781 116.378906 242.425781 114.757812 C 242.425781 113.140625 244.855469 113.140625 244.855469 114.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.175781 70.910156 L 140.8125 73.746094 L 137.539062 73.746094 Z M 139.175781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.59375 381.582031 C 314.59375 383.203125 312.164062 383.203125 312.164062 381.582031 C 312.164062 379.960938 314.59375 379.960938 314.59375 381.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.070312 265.671875 C 278.070312 267.292969 275.640625 267.292969 275.640625 265.671875 C 275.640625 264.050781 278.070312 264.050781 278.070312 265.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.664062 70.910156 L 209.296875 73.746094 L 206.027344 73.746094 Z M 207.664062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.515625 70.910156 L 122.152344 73.746094 L 118.878906 73.746094 Z M 120.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.773438 266.246094 C 116.773438 267.867188 114.34375 267.867188 114.34375 266.246094 C 114.34375 264.628906 116.773438 264.628906 116.773438 266.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.921875 70.910156 L 194.558594 73.746094 L 191.285156 73.746094 Z M 192.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.144531 70.910156 L 201.78125 73.746094 L 198.511719 73.746094 Z M 200.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.789062 406.601562 C 248.789062 408.222656 246.359375 408.222656 246.359375 406.601562 C 246.359375 404.980469 248.789062 404.980469 248.789062 406.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.460938 70.910156 L 223.097656 73.746094 L 219.824219 73.746094 Z M 221.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 369.273438 193.09375 C 369.273438 194.710938 366.84375 194.710938 366.84375 193.09375 C 366.84375 191.472656 369.273438 191.472656 369.273438 193.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.808594 227.769531 C 227.808594 229.386719 225.378906 229.386719 225.378906 227.769531 C 225.378906 226.148438 227.808594 226.148438 227.808594 227.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.539062 418.691406 L 235.175781 415.855469 L 231.902344 415.855469 Z M 233.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.191406 142.953125 C 247.191406 144.574219 244.761719 144.574219 244.761719 142.953125 C 244.761719 141.332031 247.191406 141.332031 247.191406 142.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.667969 314.363281 C 245.667969 315.984375 243.238281 315.984375 243.238281 314.363281 C 243.238281 312.742188 245.667969 312.742188 245.667969 314.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.574219 176.214844 C 288.574219 177.832031 286.144531 177.832031 286.144531 176.214844 C 286.144531 174.59375 288.574219 174.59375 288.574219 176.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.722656 88.453125 C 277.722656 90.074219 275.289062 90.074219 275.289062 88.453125 C 275.289062 86.832031 277.722656 86.832031 277.722656 88.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.734375 70.910156 L 153.371094 73.746094 L 150.097656 73.746094 Z M 151.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.398438 76.628906 C 307.398438 78.25 304.96875 78.25 304.96875 76.628906 C 304.96875 75.007812 307.398438 75.007812 307.398438 76.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.582031 155.539062 C 298.582031 157.160156 296.152344 157.160156 296.152344 155.539062 C 296.152344 153.917969 298.582031 153.917969 298.582031 155.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.75 300.933594 C 231.75 302.554688 229.320312 302.554688 229.320312 300.933594 C 229.320312 299.3125 231.75 299.3125 231.75 300.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.773438 266.246094 C 116.773438 267.867188 114.34375 267.867188 114.34375 266.246094 C 114.34375 264.628906 116.773438 264.628906 116.773438 266.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.148438 233.15625 C 199.148438 234.777344 196.71875 234.777344 196.71875 233.15625 C 196.71875 231.535156 199.148438 231.535156 199.148438 233.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.359375 168.425781 C 270.359375 170.046875 267.929688 170.046875 267.929688 168.425781 C 267.929688 166.808594 270.359375 166.808594 270.359375 168.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.628906 212.09375 C 237.628906 213.714844 235.199219 213.714844 235.199219 212.09375 C 235.199219 210.472656 237.628906 210.472656 237.628906 212.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.964844 230.566406 C 259.964844 232.1875 257.535156 232.1875 257.535156 230.566406 C 257.535156 228.949219 259.964844 228.949219 259.964844 230.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.34375 93.355469 C 142.34375 94.972656 139.914062 94.972656 139.914062 93.355469 C 139.914062 91.734375 142.34375 91.734375 142.34375 93.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.320312 220.917969 C 284.320312 222.539062 281.890625 222.539062 281.890625 220.917969 C 281.890625 219.300781 284.320312 219.300781 284.320312 220.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 376.582031 220.804688 C 376.582031 222.425781 374.152344 222.425781 374.152344 220.804688 C 374.152344 219.183594 376.582031 219.183594 376.582031 220.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.007812 70.910156 L 245.644531 73.746094 L 242.371094 73.746094 Z M 244.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.445312 91.863281 C 212.445312 93.484375 210.015625 93.484375 210.015625 91.863281 C 210.015625 90.242188 212.445312 90.242188 212.445312 91.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.519531 234.429688 C 304.519531 236.046875 302.089844 236.046875 302.089844 234.429688 C 302.089844 232.808594 304.519531 232.808594 304.519531 234.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.328125 250.011719 C 295.328125 251.632812 292.898438 251.632812 292.898438 250.011719 C 292.898438 248.390625 295.328125 248.390625 295.328125 250.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.5 70.910156 L 203.136719 73.746094 L 199.863281 73.746094 Z M 201.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.191406 334.183594 C 287.191406 335.800781 284.761719 335.800781 284.761719 334.183594 C 284.761719 332.5625 287.191406 332.5625 287.191406 334.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.5625 260.03125 C 219.5625 261.652344 217.132812 261.652344 217.132812 260.03125 C 217.132812 258.414062 219.5625 258.414062 219.5625 260.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.359375 301.984375 C 258.359375 303.605469 255.929688 303.605469 255.929688 301.984375 C 255.929688 300.367188 258.359375 300.367188 258.359375 301.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.816406 229.597656 C 213.816406 231.21875 211.386719 231.21875 211.386719 229.597656 C 211.386719 227.980469 213.816406 227.980469 213.816406 229.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.359375 302.964844 C 194.359375 304.582031 191.929688 304.582031 191.929688 302.964844 C 191.929688 301.34375 194.359375 301.34375 194.359375 302.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.394531 298.269531 C 257.394531 299.886719 254.964844 299.886719 254.964844 298.269531 C 254.964844 296.648438 257.394531 296.648438 257.394531 298.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.734375 274.96875 C 262.734375 276.589844 260.304688 276.589844 260.304688 274.96875 C 260.304688 273.347656 262.734375 273.347656 262.734375 274.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.03125 235.875 C 222.03125 237.496094 219.601562 237.496094 219.601562 235.875 C 219.601562 234.257812 222.03125 234.257812 222.03125 235.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.691406 139.855469 C 242.691406 141.476562 240.261719 141.476562 240.261719 139.855469 C 240.261719 138.238281 242.691406 138.238281 242.691406 139.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.636719 70.910156 L 255.269531 73.746094 L 252 73.746094 Z M 253.636719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.730469 256.445312 C 300.730469 258.066406 298.300781 258.066406 298.300781 256.445312 C 298.300781 254.828125 300.730469 254.828125 300.730469 256.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.90625 281.945312 C 242.90625 283.566406 240.476562 283.566406 240.476562 281.945312 C 240.476562 280.328125 242.90625 280.328125 242.90625 281.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.03125 205.839844 C 220.03125 207.460938 217.597656 207.460938 217.597656 205.839844 C 217.597656 204.21875 220.03125 204.21875 220.03125 205.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.367188 181.34375 C 248.367188 182.964844 245.9375 182.964844 245.9375 181.34375 C 245.9375 179.726562 248.367188 179.726562 248.367188 181.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.238281 148.539062 C 307.238281 150.15625 304.808594 150.15625 304.808594 148.539062 C 304.808594 146.917969 307.238281 146.917969 307.238281 148.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.417969 211.300781 C 300.417969 212.917969 297.988281 212.917969 297.988281 211.300781 C 297.988281 209.679688 300.417969 209.679688 300.417969 211.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.148438 70.910156 L 228.785156 73.746094 L 225.511719 73.746094 Z M 227.148438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.9375 418.691406 L 247.574219 415.855469 L 244.300781 415.855469 Z M 245.9375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.4375 180.589844 C 320.4375 182.210938 318.007812 182.210938 318.007812 180.589844 C 318.007812 178.96875 320.4375 178.96875 320.4375 180.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.855469 221.128906 C 241.855469 222.75 239.425781 222.75 239.425781 221.128906 C 239.425781 219.511719 241.855469 219.511719 241.855469 221.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.316406 305.339844 C 271.316406 306.960938 268.886719 306.960938 268.886719 305.339844 C 268.886719 303.71875 271.316406 303.71875 271.316406 305.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.652344 188.730469 C 259.652344 190.351562 257.222656 190.351562 257.222656 188.730469 C 257.222656 187.113281 259.652344 187.113281 259.652344 188.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.261719 193.984375 C 238.261719 195.605469 235.832031 195.605469 235.832031 193.984375 C 235.832031 192.367188 238.261719 192.367188 238.261719 193.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.601562 241.804688 C 170.601562 243.425781 168.171875 243.425781 168.171875 241.804688 C 168.171875 240.1875 170.601562 240.1875 170.601562 241.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.566406 277.230469 C 305.566406 278.851562 303.136719 278.851562 303.136719 277.230469 C 303.136719 275.609375 305.566406 275.609375 305.566406 277.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.800781 293.800781 C 291.800781 295.421875 289.371094 295.421875 289.371094 293.800781 C 289.371094 292.183594 291.800781 292.183594 291.800781 293.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.339844 171.835938 C 308.339844 173.457031 305.910156 173.457031 305.910156 171.835938 C 305.910156 170.21875 308.339844 170.21875 308.339844 171.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.925781 418.691406 L 292.5625 415.855469 L 289.289062 415.855469 Z M 290.925781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.535156 112.328125 C 362.535156 113.949219 360.105469 113.949219 360.105469 112.328125 C 360.105469 110.710938 362.535156 110.710938 362.535156 112.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.46875 278.324219 C 314.46875 279.945312 312.039062 279.945312 312.039062 278.324219 C 312.039062 276.703125 314.46875 276.703125 314.46875 278.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.792969 244.671875 C 275.792969 246.292969 273.359375 246.292969 273.359375 244.671875 C 273.359375 243.050781 275.792969 243.050781 275.792969 244.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.03125 282.664062 C 305.03125 284.285156 302.601562 284.285156 302.601562 282.664062 C 302.601562 281.042969 305.03125 281.042969 305.03125 282.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.796875 279.898438 C 300.796875 281.519531 298.367188 281.519531 298.367188 279.898438 C 298.367188 278.277344 300.796875 278.277344 300.796875 279.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.425781 348.617188 C 178.425781 350.238281 175.996094 350.238281 175.996094 348.617188 C 175.996094 346.996094 178.425781 346.996094 178.425781 348.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.207031 282.664062 C 301.207031 284.285156 298.773438 284.285156 298.773438 282.664062 C 298.773438 281.042969 301.207031 281.042969 301.207031 282.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.1875 235.90625 C 236.1875 237.523438 233.757812 237.523438 233.757812 235.90625 C 233.757812 234.285156 236.1875 234.285156 236.1875 235.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.59375 197.648438 C 196.59375 199.265625 194.164062 199.265625 194.164062 197.648438 C 194.164062 196.027344 196.59375 196.027344 196.59375 197.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.964844 70.910156 L 171.601562 73.746094 L 168.328125 73.746094 Z M 169.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.085938 211.089844 C 267.085938 212.710938 264.652344 212.710938 264.652344 211.089844 C 264.652344 209.46875 267.085938 209.46875 267.085938 211.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.753906 70.910156 L 261.390625 73.746094 L 258.117188 73.746094 Z M 259.753906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.058594 70.910156 L 139.691406 73.746094 L 136.421875 73.746094 Z M 138.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.683594 299.121094 C 290.683594 300.742188 288.253906 300.742188 288.253906 299.121094 C 288.253906 297.503906 290.683594 297.503906 290.683594 299.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.886719 210.921875 C 313.886719 212.542969 311.457031 212.542969 311.457031 210.921875 C 311.457031 209.304688 313.886719 209.304688 313.886719 210.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.007812 114.847656 C 239.007812 116.46875 236.578125 116.46875 236.578125 114.847656 C 236.578125 113.226562 239.007812 113.226562 239.007812 114.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.640625 294.046875 C 231.640625 295.667969 229.210938 295.667969 229.210938 294.046875 C 229.210938 292.425781 231.640625 292.425781 231.640625 294.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.996094 405.15625 C 140.996094 406.777344 138.566406 406.777344 138.566406 405.15625 C 138.566406 403.535156 140.996094 403.535156 140.996094 405.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.632812 276.363281 C 258.632812 277.984375 256.203125 277.984375 256.203125 276.363281 C 256.203125 274.746094 258.632812 274.746094 258.632812 276.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.175781 247.171875 C 196.175781 248.792969 193.746094 248.792969 193.746094 247.171875 C 193.746094 245.554688 196.175781 245.554688 196.175781 247.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.023438 250 C 289.023438 251.617188 286.59375 251.617188 286.59375 250 C 286.59375 248.378906 289.023438 248.378906 289.023438 250 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.148438 259.21875 C 295.148438 260.839844 292.71875 260.839844 292.71875 259.21875 C 292.71875 257.597656 295.148438 257.597656 295.148438 259.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.503906 186.320312 C 220.503906 187.9375 218.074219 187.9375 218.074219 186.320312 C 218.074219 184.699219 220.503906 184.699219 220.503906 186.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.082031 271.828125 C 278.082031 273.449219 275.652344 273.449219 275.652344 271.828125 C 275.652344 270.207031 278.082031 270.207031 278.082031 271.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.238281 253.5 C 238.238281 255.121094 235.808594 255.121094 235.808594 253.5 C 235.808594 251.878906 238.238281 251.878906 238.238281 253.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.363281 309.75 C 210.363281 311.367188 207.933594 311.367188 207.933594 309.75 C 207.933594 308.128906 210.363281 308.128906 210.363281 309.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.164062 291.351562 C 244.164062 292.972656 241.734375 292.972656 241.734375 291.351562 C 241.734375 289.734375 244.164062 289.734375 244.164062 291.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.75 70.910156 L 149.386719 73.746094 L 146.113281 73.746094 Z M 147.75 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.222656 70.910156 L 240.859375 73.746094 L 237.585938 73.746094 Z M 239.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.253906 111.167969 C 227.253906 112.789062 224.824219 112.789062 224.824219 111.167969 C 224.824219 109.546875 227.253906 109.546875 227.253906 111.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.859375 139.964844 C 312.859375 141.585938 310.429688 141.585938 310.429688 139.964844 C 310.429688 138.347656 312.859375 138.347656 312.859375 139.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.175781 187.308594 C 215.175781 188.929688 212.746094 188.929688 212.746094 187.308594 C 212.746094 185.6875 215.175781 185.6875 215.175781 187.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.359375 256.855469 C 257.359375 258.476562 254.929688 258.476562 254.929688 256.855469 C 254.929688 255.234375 257.359375 255.234375 257.359375 256.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.785156 70.910156 L 266.421875 73.746094 L 263.148438 73.746094 Z M 264.785156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.828125 70.910156 L 153.464844 73.746094 L 150.191406 73.746094 Z M 151.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.257812 313.90625 C 163.257812 315.527344 160.828125 315.527344 160.828125 313.90625 C 160.828125 312.285156 163.257812 312.285156 163.257812 313.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.34375 249.527344 C 222.34375 251.144531 219.914062 251.144531 219.914062 249.527344 C 219.914062 247.90625 222.34375 247.90625 222.34375 249.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.386719 361.515625 C 289.386719 363.136719 286.957031 363.136719 286.957031 361.515625 C 286.957031 359.894531 289.386719 359.894531 289.386719 361.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.957031 130.796875 C 259.957031 132.417969 257.527344 132.417969 257.527344 130.796875 C 257.527344 129.175781 259.957031 129.175781 259.957031 130.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.175781 316.300781 C 283.175781 317.921875 280.746094 317.921875 280.746094 316.300781 C 280.746094 314.679688 283.175781 314.679688 283.175781 316.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.472656 108.128906 C 269.472656 109.746094 267.042969 109.746094 267.042969 108.128906 C 267.042969 106.507812 269.472656 106.507812 269.472656 108.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.722656 70.910156 L 188.355469 73.746094 L 185.085938 73.746094 Z M 186.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.585938 182.175781 C 206.585938 183.792969 204.15625 183.792969 204.15625 182.175781 C 204.15625 180.554688 206.585938 180.554688 206.585938 182.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.117188 281.902344 C 274.117188 283.523438 271.6875 283.523438 271.6875 281.902344 C 271.6875 280.28125 274.117188 280.28125 274.117188 281.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.980469 352.234375 C 292.980469 353.855469 290.550781 353.855469 290.550781 352.234375 C 290.550781 350.613281 292.980469 350.613281 292.980469 352.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.269531 162 C 262.269531 163.621094 259.839844 163.621094 259.839844 162 C 259.839844 160.382812 262.269531 160.382812 262.269531 162 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.441406 77.847656 C 208.441406 79.46875 206.011719 79.46875 206.011719 77.847656 C 206.011719 76.226562 208.441406 76.226562 208.441406 77.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.847656 218.957031 C 312.847656 220.574219 310.417969 220.574219 310.417969 218.957031 C 310.417969 217.335938 312.847656 217.335938 312.847656 218.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.894531 293.367188 C 280.894531 294.988281 278.464844 294.988281 278.464844 293.367188 C 278.464844 291.746094 280.894531 291.746094 280.894531 293.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.652344 250.9375 C 277.652344 252.558594 275.222656 252.558594 275.222656 250.9375 C 275.222656 249.316406 277.652344 249.316406 277.652344 250.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.511719 230.398438 C 284.511719 232.015625 282.082031 232.015625 282.082031 230.398438 C 282.082031 228.777344 284.511719 228.777344 284.511719 230.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.195312 217.496094 C 122.195312 219.117188 119.765625 219.117188 119.765625 217.496094 C 119.765625 215.875 122.195312 215.875 122.195312 217.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.609375 179.554688 C 156.609375 181.175781 154.179688 181.175781 154.179688 179.554688 C 154.179688 177.933594 156.609375 177.933594 156.609375 179.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.414062 230.925781 C 316.414062 232.546875 313.984375 232.546875 313.984375 230.925781 C 313.984375 229.304688 316.414062 229.304688 316.414062 230.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.308594 271.167969 C 277.308594 272.785156 274.878906 272.785156 274.878906 271.167969 C 274.878906 269.546875 277.308594 269.546875 277.308594 271.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.191406 266.664062 C 280.191406 268.285156 277.761719 268.285156 277.761719 266.664062 C 277.761719 265.042969 280.191406 265.042969 280.191406 266.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.597656 109.324219 C 305.597656 110.941406 303.167969 110.941406 303.167969 109.324219 C 303.167969 107.703125 305.597656 107.703125 305.597656 109.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.140625 274.515625 C 277.140625 276.136719 274.710938 276.136719 274.710938 274.515625 C 274.710938 272.894531 277.140625 272.894531 277.140625 274.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.320312 174.960938 C 251.320312 176.582031 248.890625 176.582031 248.890625 174.960938 C 248.890625 173.34375 251.320312 173.34375 251.320312 174.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.574219 190.675781 C 284.574219 192.296875 282.140625 192.296875 282.140625 190.675781 C 282.140625 189.058594 284.574219 189.058594 284.574219 190.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.363281 282.734375 C 303.363281 284.355469 300.933594 284.355469 300.933594 282.734375 C 300.933594 281.117188 303.363281 281.117188 303.363281 282.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.972656 221.285156 C 183.972656 222.90625 181.542969 222.90625 181.542969 221.285156 C 181.542969 219.664062 183.972656 219.664062 183.972656 221.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.925781 70.910156 L 232.558594 73.746094 L 229.289062 73.746094 Z M 230.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.511719 200.753906 C 257.511719 202.375 255.082031 202.375 255.082031 200.753906 C 255.082031 199.136719 257.511719 199.136719 257.511719 200.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.609375 125.261719 C 159.609375 126.882812 157.179688 126.882812 157.179688 125.261719 C 157.179688 123.640625 159.609375 123.640625 159.609375 125.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.882812 269.679688 C 309.882812 271.300781 307.453125 271.300781 307.453125 269.679688 C 307.453125 268.058594 309.882812 268.058594 309.882812 269.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.847656 278.855469 C 281.847656 280.476562 279.417969 280.476562 279.417969 278.855469 C 279.417969 277.238281 281.847656 277.238281 281.847656 278.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.242188 120.835938 C 306.242188 122.453125 303.8125 122.453125 303.8125 120.835938 C 303.8125 119.214844 306.242188 119.214844 306.242188 120.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.09375 70.910156 L 207.730469 73.746094 L 204.457031 73.746094 Z M 206.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.664062 257.730469 C 214.664062 259.351562 212.234375 259.351562 212.234375 257.730469 C 212.234375 256.109375 214.664062 256.109375 214.664062 257.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.15625 195.605469 C 150.15625 197.226562 147.726562 197.226562 147.726562 195.605469 C 147.726562 193.984375 150.15625 193.984375 150.15625 195.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.589844 133.292969 C 270.589844 134.914062 268.160156 134.914062 268.160156 133.292969 C 268.160156 131.671875 270.589844 131.671875 270.589844 133.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.058594 235.453125 C 193.058594 237.074219 190.628906 237.074219 190.628906 235.453125 C 190.628906 233.835938 193.058594 233.835938 193.058594 235.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.234375 70.910156 L 259.871094 73.746094 L 256.597656 73.746094 Z M 258.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.285156 294.597656 C 210.285156 296.214844 207.855469 296.214844 207.855469 294.597656 C 207.855469 292.976562 210.285156 292.976562 210.285156 294.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.195312 70.910156 L 249.832031 73.746094 L 246.558594 73.746094 Z M 248.195312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.878906 70.910156 L 201.515625 73.746094 L 198.242188 73.746094 Z M 199.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.082031 288.699219 C 284.082031 290.320312 281.652344 290.320312 281.652344 288.699219 C 281.652344 287.082031 284.082031 287.082031 284.082031 288.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.097656 171.175781 C 291.097656 172.792969 288.664062 172.792969 288.664062 171.175781 C 288.664062 169.554688 291.097656 169.554688 291.097656 171.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.964844 198.335938 C 220.964844 199.953125 218.535156 199.953125 218.535156 198.335938 C 218.535156 196.714844 220.964844 196.714844 220.964844 198.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.917969 386.667969 C 250.917969 388.289062 248.488281 388.289062 248.488281 386.667969 C 248.488281 385.050781 250.917969 385.050781 250.917969 386.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.890625 294.613281 C 299.890625 296.230469 297.460938 296.230469 297.460938 294.613281 C 297.460938 292.992188 299.890625 292.992188 299.890625 294.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.386719 210.3125 C 220.386719 211.933594 217.957031 211.933594 217.957031 210.3125 C 217.957031 208.691406 220.386719 208.691406 220.386719 210.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.109375 216.023438 C 234.109375 217.640625 231.679688 217.640625 231.679688 216.023438 C 231.679688 214.402344 234.109375 214.402344 234.109375 216.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.863281 418.691406 L 158.5 415.855469 L 155.226562 415.855469 Z M 156.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.753906 284.703125 C 226.753906 286.324219 224.324219 286.324219 224.324219 284.703125 C 224.324219 283.085938 226.753906 283.085938 226.753906 284.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.230469 309.882812 C 288.230469 311.503906 285.800781 311.503906 285.800781 309.882812 C 285.800781 308.265625 288.230469 308.265625 288.230469 309.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.570312 70.910156 L 240.207031 73.746094 L 236.933594 73.746094 Z M 238.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.882812 266.042969 C 267.882812 267.660156 265.453125 267.660156 265.453125 266.042969 C 265.453125 264.421875 267.882812 264.421875 267.882812 266.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.878906 179.628906 C 196.878906 181.25 194.449219 181.25 194.449219 179.628906 C 194.449219 178.007812 196.878906 178.007812 196.878906 179.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.796875 288 C 275.796875 289.621094 273.363281 289.621094 273.363281 288 C 273.363281 286.382812 275.796875 286.382812 275.796875 288 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.855469 255.597656 C 279.855469 257.214844 277.425781 257.214844 277.425781 255.597656 C 277.425781 253.976562 279.855469 253.976562 279.855469 255.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.320312 305.191406 C 255.320312 306.8125 252.890625 306.8125 252.890625 305.191406 C 252.890625 303.570312 255.320312 303.570312 255.320312 305.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.15625 70.910156 L 162.792969 73.746094 L 159.519531 73.746094 Z M 161.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.730469 174.367188 C 288.730469 175.984375 286.300781 175.984375 286.300781 174.367188 C 286.300781 172.746094 288.730469 172.746094 288.730469 174.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.929688 171.328125 C 250.929688 172.949219 248.5 172.949219 248.5 171.328125 C 248.5 169.707031 250.929688 169.707031 250.929688 171.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.375 160.972656 C 303.375 162.59375 300.945312 162.59375 300.945312 160.972656 C 300.945312 159.351562 303.375 159.351562 303.375 160.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.214844 231.324219 C 202.214844 232.941406 199.785156 232.941406 199.785156 231.324219 C 199.785156 229.703125 202.214844 229.703125 202.214844 231.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.09375 116.824219 C 278.09375 118.445312 275.664062 118.445312 275.664062 116.824219 C 275.664062 115.207031 278.09375 115.207031 278.09375 116.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.550781 418.691406 L 188.183594 415.855469 L 184.914062 415.855469 Z M 186.550781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.746094 70.910156 L 165.378906 73.746094 L 162.109375 73.746094 Z M 163.746094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.183594 418.691406 L 281.820312 415.855469 L 278.546875 415.855469 Z M 280.183594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.390625 377.808594 C 261.390625 379.429688 258.960938 379.429688 258.960938 377.808594 C 258.960938 376.191406 261.390625 376.191406 261.390625 377.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.082031 86.25 C 296.082031 87.871094 293.652344 87.871094 293.652344 86.25 C 293.652344 84.628906 296.082031 84.628906 296.082031 86.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.226562 206.484375 C 173.226562 208.105469 170.796875 208.105469 170.796875 206.484375 C 170.796875 204.867188 173.226562 204.867188 173.226562 206.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.535156 242.03125 C 274.535156 243.652344 272.105469 243.652344 272.105469 242.03125 C 272.105469 240.410156 274.535156 240.410156 274.535156 242.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.761719 248.050781 C 204.761719 249.671875 202.332031 249.671875 202.332031 248.050781 C 202.332031 246.429688 204.761719 246.429688 204.761719 248.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.722656 269.085938 C 286.722656 270.707031 284.292969 270.707031 284.292969 269.085938 C 284.292969 267.464844 286.722656 267.464844 286.722656 269.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.304688 240.695312 C 184.304688 242.316406 181.875 242.316406 181.875 240.695312 C 181.875 239.074219 184.304688 239.074219 184.304688 240.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.027344 327.074219 C 183.027344 328.695312 180.597656 328.695312 180.597656 327.074219 C 180.597656 325.453125 183.027344 325.453125 183.027344 327.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.628906 232.390625 C 299.628906 234.007812 297.199219 234.007812 297.199219 232.390625 C 297.199219 230.769531 299.628906 230.769531 299.628906 232.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.699219 260.164062 C 305.699219 261.785156 303.269531 261.785156 303.269531 260.164062 C 303.269531 258.542969 305.699219 258.542969 305.699219 260.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.128906 141.113281 C 238.128906 142.734375 235.699219 142.734375 235.699219 141.113281 C 235.699219 139.496094 238.128906 139.496094 238.128906 141.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.210938 227.347656 C 300.210938 228.96875 297.78125 228.96875 297.78125 227.347656 C 297.78125 225.726562 300.210938 225.726562 300.210938 227.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.570312 281.023438 C 243.570312 282.644531 241.140625 282.644531 241.140625 281.023438 C 241.140625 279.402344 243.570312 279.402344 243.570312 281.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.125 333.558594 C 185.125 335.179688 182.695312 335.179688 182.695312 333.558594 C 182.695312 331.941406 185.125 331.941406 185.125 333.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.671875 339.863281 C 265.671875 341.480469 263.242188 341.480469 263.242188 339.863281 C 263.242188 338.242188 265.671875 338.242188 265.671875 339.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.035156 302.503906 C 279.035156 304.125 276.605469 304.125 276.605469 302.503906 C 276.605469 300.882812 279.035156 300.882812 279.035156 302.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.492188 233.417969 C 268.492188 235.039062 266.0625 235.039062 266.0625 233.417969 C 266.0625 231.800781 268.492188 231.800781 268.492188 233.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.429688 240.167969 C 281.429688 241.789062 279 241.789062 279 240.167969 C 279 238.546875 281.429688 238.546875 281.429688 240.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.597656 288.355469 C 244.597656 289.976562 242.167969 289.976562 242.167969 288.355469 C 242.167969 286.738281 244.597656 286.738281 244.597656 288.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.84375 311.800781 C 275.84375 313.421875 273.414062 313.421875 273.414062 311.800781 C 273.414062 310.179688 275.84375 310.179688 275.84375 311.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.199219 192.644531 C 221.199219 194.265625 218.769531 194.265625 218.769531 192.644531 C 218.769531 191.023438 221.199219 191.023438 221.199219 192.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.519531 304.476562 C 277.519531 306.09375 275.089844 306.09375 275.089844 304.476562 C 275.089844 302.855469 277.519531 302.855469 277.519531 304.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.328125 294.246094 C 262.328125 295.867188 259.898438 295.867188 259.898438 294.246094 C 259.898438 292.625 262.328125 292.625 262.328125 294.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.722656 296.683594 C 347.722656 298.304688 345.289062 298.304688 345.289062 296.683594 C 345.289062 295.066406 347.722656 295.066406 347.722656 296.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.109375 234.488281 C 247.109375 236.105469 244.675781 236.105469 244.675781 234.488281 C 244.675781 232.867188 247.109375 232.867188 247.109375 234.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.269531 325.785156 C 174.269531 327.40625 171.839844 327.40625 171.839844 325.785156 C 171.839844 324.167969 174.269531 324.167969 174.269531 325.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.929688 276.617188 C 258.929688 278.238281 256.5 278.238281 256.5 276.617188 C 256.5 274.996094 258.929688 274.996094 258.929688 276.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.746094 255.3125 C 266.746094 256.933594 264.316406 256.933594 264.316406 255.3125 C 264.316406 253.691406 266.746094 253.691406 266.746094 255.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.644531 243.035156 C 261.644531 244.65625 259.214844 244.65625 259.214844 243.035156 C 259.214844 241.414062 261.644531 241.414062 261.644531 243.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.933594 272.144531 C 215.933594 273.765625 213.503906 273.765625 213.503906 272.144531 C 213.503906 270.527344 215.933594 270.527344 215.933594 272.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.699219 253.878906 C 206.699219 255.5 204.269531 255.5 204.269531 253.878906 C 204.269531 252.261719 206.699219 252.261719 206.699219 253.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.417969 369.210938 C 287.417969 370.832031 284.988281 370.832031 284.988281 369.210938 C 284.988281 367.589844 287.417969 367.589844 287.417969 369.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.160156 236.667969 C 266.160156 238.289062 263.730469 238.289062 263.730469 236.667969 C 263.730469 235.046875 266.160156 235.046875 266.160156 236.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.324219 260.832031 C 190.324219 262.453125 187.894531 262.453125 187.894531 260.832031 C 187.894531 259.214844 190.324219 259.214844 190.324219 260.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.386719 133.628906 C 223.386719 135.25 220.957031 135.25 220.957031 133.628906 C 220.957031 132.007812 223.386719 132.007812 223.386719 133.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.382812 178.578125 C 244.382812 180.199219 241.953125 180.199219 241.953125 178.578125 C 241.953125 176.960938 244.382812 176.960938 244.382812 178.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.628906 263.488281 C 263.628906 265.105469 261.199219 265.105469 261.199219 263.488281 C 261.199219 261.867188 263.628906 261.867188 263.628906 263.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.636719 125.777344 C 231.636719 127.398438 229.207031 127.398438 229.207031 125.777344 C 229.207031 124.15625 231.636719 124.15625 231.636719 125.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.261719 293.988281 C 329.261719 295.609375 326.832031 295.609375 326.832031 293.988281 C 326.832031 292.371094 329.261719 292.371094 329.261719 293.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.027344 418.691406 L 129.660156 415.855469 L 126.390625 415.855469 Z M 128.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.640625 319.78125 C 210.640625 321.402344 208.210938 321.402344 208.210938 319.78125 C 208.210938 318.164062 210.640625 318.164062 210.640625 319.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.730469 292.546875 C 251.730469 294.167969 249.300781 294.167969 249.300781 292.546875 C 249.300781 290.925781 251.730469 290.925781 251.730469 292.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.65625 172.542969 C 277.65625 174.164062 275.226562 174.164062 275.226562 172.542969 C 275.226562 170.921875 277.65625 170.921875 277.65625 172.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.132812 252.640625 C 285.132812 254.257812 282.703125 254.257812 282.703125 252.640625 C 282.703125 251.019531 285.132812 251.019531 285.132812 252.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.910156 70.910156 L 233.546875 73.746094 L 230.273438 73.746094 Z M 231.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.238281 123.433594 C 271.238281 125.054688 268.808594 125.054688 268.808594 123.433594 C 268.808594 121.8125 271.238281 121.8125 271.238281 123.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.152344 277.949219 C 295.152344 279.570312 292.71875 279.570312 292.71875 277.949219 C 292.71875 276.332031 295.152344 276.332031 295.152344 277.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.296875 283.382812 C 267.296875 285.003906 264.867188 285.003906 264.867188 283.382812 C 264.867188 281.761719 267.296875 281.761719 267.296875 283.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.515625 304.5 C 239.515625 306.121094 237.085938 306.121094 237.085938 304.5 C 237.085938 302.878906 239.515625 302.878906 239.515625 304.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.496094 130.800781 C 235.496094 132.421875 233.066406 132.421875 233.066406 130.800781 C 233.066406 129.179688 235.496094 129.179688 235.496094 130.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.285156 210.550781 C 277.285156 212.171875 274.855469 212.171875 274.855469 210.550781 C 274.855469 208.929688 277.285156 208.929688 277.285156 210.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.566406 122.894531 C 270.566406 124.515625 268.136719 124.515625 268.136719 122.894531 C 268.136719 121.277344 270.566406 121.277344 270.566406 122.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.265625 133.214844 C 235.265625 134.832031 232.835938 134.832031 232.835938 133.214844 C 232.835938 131.59375 235.265625 131.59375 235.265625 133.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.089844 418.691406 L 265.726562 415.855469 L 262.453125 415.855469 Z M 264.089844 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.890625 418.691406 L 205.527344 415.855469 L 202.253906 415.855469 Z M 203.890625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.527344 418.691406 L 185.164062 415.855469 L 181.890625 415.855469 Z M 183.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.878906 354.078125 C 317.878906 355.695312 315.449219 355.695312 315.449219 354.078125 C 315.449219 352.457031 317.878906 352.457031 317.878906 354.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.664062 70.910156 L 174.300781 73.746094 L 171.027344 73.746094 Z M 172.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.195312 403.714844 C 138.195312 405.332031 135.765625 405.332031 135.765625 403.714844 C 135.765625 402.09375 138.195312 402.09375 138.195312 403.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.765625 205.757812 C 266.765625 207.375 264.335938 207.375 264.335938 205.757812 C 264.335938 204.136719 266.765625 204.136719 266.765625 205.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.132812 286.328125 C 273.132812 287.949219 270.703125 287.949219 270.703125 286.328125 C 270.703125 284.707031 273.132812 284.707031 273.132812 286.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.898438 260.425781 C 241.898438 262.046875 239.46875 262.046875 239.46875 260.425781 C 239.46875 258.804688 241.898438 258.804688 241.898438 260.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.167969 347 C 319.167969 348.617188 316.738281 348.617188 316.738281 347 C 316.738281 345.378906 319.167969 345.378906 319.167969 347 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.15625 342.464844 C 252.15625 344.085938 249.726562 344.085938 249.726562 342.464844 C 249.726562 340.84375 252.15625 340.84375 252.15625 342.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.257812 260.425781 C 226.257812 262.046875 223.828125 262.046875 223.828125 260.425781 C 223.828125 258.808594 226.257812 258.808594 226.257812 260.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.621094 272.992188 C 290.621094 274.613281 288.191406 274.613281 288.191406 272.992188 C 288.191406 271.375 290.621094 271.375 290.621094 272.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.839844 257.960938 C 296.839844 259.582031 294.410156 259.582031 294.410156 257.960938 C 294.410156 256.339844 296.839844 256.339844 296.839844 257.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.390625 189.230469 C 239.390625 190.851562 236.960938 190.851562 236.960938 189.230469 C 236.960938 187.613281 239.390625 187.613281 239.390625 189.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.058594 272.347656 C 278.058594 273.96875 275.628906 273.96875 275.628906 272.347656 C 275.628906 270.726562 278.058594 270.726562 278.058594 272.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.722656 100.152344 C 188.722656 101.769531 186.292969 101.769531 186.292969 100.152344 C 186.292969 98.53125 188.722656 98.53125 188.722656 100.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.65625 240.054688 C 309.65625 241.675781 307.226562 241.675781 307.226562 240.054688 C 307.226562 238.433594 309.65625 238.433594 309.65625 240.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.585938 74.398438 C 226.585938 76.015625 224.15625 76.015625 224.15625 74.398438 C 224.15625 72.777344 226.585938 72.777344 226.585938 74.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.371094 265.78125 C 321.371094 267.402344 318.9375 267.402344 318.9375 265.78125 C 318.9375 264.160156 321.371094 264.160156 321.371094 265.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 382.042969 252.398438 C 382.042969 254.019531 379.613281 254.019531 379.613281 252.398438 C 379.613281 250.777344 382.042969 250.777344 382.042969 252.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.78125 273.128906 C 263.78125 274.746094 261.351562 274.746094 261.351562 273.128906 C 261.351562 271.507812 263.78125 271.507812 263.78125 273.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.898438 317.863281 C 196.898438 319.484375 194.46875 319.484375 194.46875 317.863281 C 194.46875 316.242188 196.898438 316.242188 196.898438 317.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.761719 170.34375 C 257.761719 171.964844 255.332031 171.964844 255.332031 170.34375 C 255.332031 168.722656 257.761719 168.722656 257.761719 170.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.742188 167.828125 C 246.742188 169.449219 244.308594 169.449219 244.308594 167.828125 C 244.308594 166.210938 246.742188 166.210938 246.742188 167.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.984375 90.324219 C 260.984375 91.945312 258.554688 91.945312 258.554688 90.324219 C 258.554688 88.703125 260.984375 88.703125 260.984375 90.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.328125 276.511719 C 247.328125 278.132812 244.898438 278.132812 244.898438 276.511719 C 244.898438 274.890625 247.328125 274.890625 247.328125 276.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.542969 247.785156 C 201.542969 249.40625 199.113281 249.40625 199.113281 247.785156 C 199.113281 246.167969 201.542969 246.167969 201.542969 247.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.605469 214.34375 C 284.605469 215.964844 282.175781 215.964844 282.175781 214.34375 C 282.175781 212.722656 284.605469 212.722656 284.605469 214.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.480469 226.445312 C 293.480469 228.066406 291.050781 228.066406 291.050781 226.445312 C 291.050781 224.824219 293.480469 224.824219 293.480469 226.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.058594 378.289062 C 186.058594 379.910156 183.628906 379.910156 183.628906 378.289062 C 183.628906 376.667969 186.058594 376.667969 186.058594 378.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.476562 215.125 C 257.476562 216.746094 255.046875 216.746094 255.046875 215.125 C 255.046875 213.503906 257.476562 213.503906 257.476562 215.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.628906 119.878906 C 176.628906 121.5 174.199219 121.5 174.199219 119.878906 C 174.199219 118.261719 176.628906 118.261719 176.628906 119.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.871094 150.855469 C 305.871094 152.472656 303.441406 152.472656 303.441406 150.855469 C 303.441406 149.234375 305.871094 149.234375 305.871094 150.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.023438 70.910156 L 305.660156 73.746094 L 302.386719 73.746094 Z M 304.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.191406 302.960938 C 283.191406 304.578125 280.761719 304.578125 280.761719 302.960938 C 280.761719 301.339844 283.191406 301.339844 283.191406 302.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.65625 418.691406 L 340.292969 415.855469 L 337.019531 415.855469 Z M 338.65625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.96875 208.707031 C 302.96875 210.328125 300.539062 210.328125 300.539062 208.707031 C 300.539062 207.085938 302.96875 207.085938 302.96875 208.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.136719 336.617188 C 141.136719 338.238281 138.707031 338.238281 138.707031 336.617188 C 138.707031 334.996094 141.136719 334.996094 141.136719 336.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.480469 229.835938 C 274.480469 231.457031 272.050781 231.457031 272.050781 229.835938 C 272.050781 228.214844 274.480469 228.214844 274.480469 229.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.050781 376.628906 C 280.050781 378.246094 277.621094 378.246094 277.621094 376.628906 C 277.621094 375.007812 280.050781 375.007812 280.050781 376.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.613281 70.910156 L 171.25 73.746094 L 167.976562 73.746094 Z M 169.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.996094 363.363281 C 328.996094 364.984375 326.566406 364.984375 326.566406 363.363281 C 326.566406 361.742188 328.996094 361.742188 328.996094 363.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.515625 230.398438 C 220.515625 232.015625 218.085938 232.015625 218.085938 230.398438 C 218.085938 228.777344 220.515625 228.777344 220.515625 230.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.023438 418.691406 L 350.660156 415.855469 L 347.386719 415.855469 Z M 349.023438 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.21875 418.691406 L 335.855469 415.855469 L 332.582031 415.855469 Z M 334.21875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.796875 208.472656 C 271.796875 210.09375 269.367188 210.09375 269.367188 208.472656 C 269.367188 206.851562 271.796875 206.851562 271.796875 208.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.480469 120.058594 C 167.480469 121.679688 165.050781 121.679688 165.050781 120.058594 C 165.050781 118.4375 167.480469 118.4375 167.480469 120.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.039062 334.710938 C 186.039062 336.332031 183.609375 336.332031 183.609375 334.710938 C 183.609375 333.089844 186.039062 333.089844 186.039062 334.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.425781 175.175781 C 252.425781 176.796875 249.996094 176.796875 249.996094 175.175781 C 249.996094 173.554688 252.425781 173.554688 252.425781 175.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.230469 304.289062 C 269.230469 305.910156 266.800781 305.910156 266.800781 304.289062 C 266.800781 302.671875 269.230469 302.671875 269.230469 304.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.671875 279.632812 C 286.671875 281.25 284.242188 281.25 284.242188 279.632812 C 284.242188 278.011719 286.671875 278.011719 286.671875 279.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.867188 128.542969 C 231.867188 130.164062 229.433594 130.164062 229.433594 128.542969 C 229.433594 126.925781 231.867188 126.925781 231.867188 128.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.925781 280.738281 C 281.925781 282.359375 279.496094 282.359375 279.496094 280.738281 C 279.496094 279.117188 281.925781 279.117188 281.925781 280.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.917969 279.3125 C 226.917969 280.933594 224.488281 280.933594 224.488281 279.3125 C 224.488281 277.695312 226.917969 277.695312 226.917969 279.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.980469 254.03125 C 280.980469 255.652344 278.550781 255.652344 278.550781 254.03125 C 278.550781 252.414062 280.980469 252.414062 280.980469 254.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.804688 174.21875 C 286.804688 175.839844 284.375 175.839844 284.375 174.21875 C 284.375 172.597656 286.804688 172.597656 286.804688 174.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.46875 258.976562 C 235.46875 260.597656 233.039062 260.597656 233.039062 258.976562 C 233.039062 257.355469 235.46875 257.355469 235.46875 258.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.140625 203.273438 C 267.140625 204.894531 264.710938 204.894531 264.710938 203.273438 C 264.710938 201.652344 267.140625 201.652344 267.140625 203.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.183594 182.507812 C 236.183594 184.128906 233.753906 184.128906 233.753906 182.507812 C 233.753906 180.886719 236.183594 180.886719 236.183594 182.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.140625 353.378906 C 257.140625 355 254.710938 355 254.710938 353.378906 C 254.710938 351.757812 257.140625 351.757812 257.140625 353.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.9375 170.796875 C 170.9375 172.417969 168.507812 172.417969 168.507812 170.796875 C 168.507812 169.175781 170.9375 169.175781 170.9375 170.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.367188 136.046875 C 281.367188 137.667969 278.9375 137.667969 278.9375 136.046875 C 278.9375 134.425781 281.367188 134.425781 281.367188 136.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.875 136.667969 C 291.875 138.285156 289.441406 138.285156 289.441406 136.667969 C 289.441406 135.046875 291.875 135.046875 291.875 136.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.019531 226.183594 C 240.019531 227.800781 237.589844 227.800781 237.589844 226.183594 C 237.589844 224.5625 240.019531 224.5625 240.019531 226.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.042969 194.078125 C 210.042969 195.695312 207.613281 195.695312 207.613281 194.078125 C 207.613281 192.457031 210.042969 192.457031 210.042969 194.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.726562 288.617188 C 233.726562 290.238281 231.296875 290.238281 231.296875 288.617188 C 231.296875 287 233.726562 287 233.726562 288.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.46875 318.683594 C 195.46875 320.300781 193.039062 320.300781 193.039062 318.683594 C 193.039062 317.0625 195.46875 317.0625 195.46875 318.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.589844 70.910156 L 217.226562 73.746094 L 213.953125 73.746094 Z M 215.589844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.234375 145.558594 C 259.234375 147.179688 256.800781 147.179688 256.800781 145.558594 C 256.800781 143.941406 259.234375 143.941406 259.234375 145.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.683594 144.484375 C 170.683594 146.105469 168.253906 146.105469 168.253906 144.484375 C 168.253906 142.867188 170.683594 142.867188 170.683594 144.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.996094 192.960938 C 292.996094 194.582031 290.566406 194.582031 290.566406 192.960938 C 290.566406 191.339844 292.996094 191.339844 292.996094 192.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.515625 242.054688 C 271.515625 243.675781 269.082031 243.675781 269.082031 242.054688 C 269.082031 240.433594 271.515625 240.433594 271.515625 242.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.925781 70.910156 L 159.5625 73.746094 L 156.289062 73.746094 Z M 157.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.75 294.558594 C 315.75 296.179688 313.320312 296.179688 313.320312 294.558594 C 313.320312 292.9375 315.75 292.9375 315.75 294.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.597656 218.773438 C 249.597656 220.394531 247.167969 220.394531 247.167969 218.773438 C 247.167969 217.15625 249.597656 217.15625 249.597656 218.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.730469 134.574219 C 212.730469 136.191406 210.300781 136.191406 210.300781 134.574219 C 210.300781 132.953125 212.730469 132.953125 212.730469 134.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.210938 209.472656 C 285.210938 211.089844 282.78125 211.089844 282.78125 209.472656 C 282.78125 207.851562 285.210938 207.851562 285.210938 209.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.527344 273.460938 C 253.527344 275.082031 251.097656 275.082031 251.097656 273.460938 C 251.097656 271.84375 253.527344 271.84375 253.527344 273.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.152344 248.746094 C 128.152344 250.367188 125.722656 250.367188 125.722656 248.746094 C 125.722656 247.128906 128.152344 247.128906 128.152344 248.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.601562 316.328125 C 273.601562 317.945312 271.171875 317.945312 271.171875 316.328125 C 271.171875 314.707031 273.601562 314.707031 273.601562 316.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.769531 245.628906 C 233.769531 247.25 231.335938 247.25 231.335938 245.628906 C 231.335938 244.011719 233.769531 244.011719 233.769531 245.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.671875 269.550781 C 223.671875 271.171875 221.242188 271.171875 221.242188 269.550781 C 221.242188 267.929688 223.671875 267.929688 223.671875 269.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.558594 307.929688 C 322.558594 309.550781 320.128906 309.550781 320.128906 307.929688 C 320.128906 306.3125 322.558594 306.3125 322.558594 307.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.800781 335.53125 C 287.800781 337.148438 285.371094 337.148438 285.371094 335.53125 C 285.371094 333.910156 287.800781 333.910156 287.800781 335.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.394531 367.871094 C 257.394531 369.492188 254.964844 369.492188 254.964844 367.871094 C 254.964844 366.25 257.394531 366.25 257.394531 367.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.714844 277.992188 C 290.714844 279.613281 288.285156 279.613281 288.285156 277.992188 C 288.285156 276.375 290.714844 276.375 290.714844 277.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 314.765625 418.691406 L 316.398438 415.855469 L 313.128906 415.855469 Z M 314.765625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.972656 179.976562 C 243.972656 181.597656 241.539062 181.597656 241.539062 179.976562 C 241.539062 178.355469 243.972656 178.355469 243.972656 179.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.386719 151.46875 C 288.386719 153.089844 285.957031 153.089844 285.957031 151.46875 C 285.957031 149.847656 288.386719 149.847656 288.386719 151.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.796875 251.355469 C 224.796875 252.976562 222.367188 252.976562 222.367188 251.355469 C 222.367188 249.734375 224.796875 249.734375 224.796875 251.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.992188 140.058594 C 315.992188 141.679688 313.5625 141.679688 313.5625 140.058594 C 313.5625 138.441406 315.992188 138.441406 315.992188 140.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.609375 261.574219 C 269.609375 263.191406 267.179688 263.191406 267.179688 261.574219 C 267.179688 259.953125 269.609375 259.953125 269.609375 261.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.917969 293.027344 C 224.917969 294.648438 222.488281 294.648438 222.488281 293.027344 C 222.488281 291.410156 224.917969 291.410156 224.917969 293.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.089844 296.082031 C 263.089844 297.703125 260.660156 297.703125 260.660156 296.082031 C 260.660156 294.460938 263.089844 294.460938 263.089844 296.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.480469 171.332031 C 253.480469 172.953125 251.050781 172.953125 251.050781 171.332031 C 251.050781 169.714844 253.480469 169.714844 253.480469 171.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.734375 253.382812 C 244.734375 255.003906 242.304688 255.003906 242.304688 253.382812 C 242.304688 251.765625 244.734375 251.765625 244.734375 253.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.078125 170.449219 C 185.078125 172.070312 182.648438 172.070312 182.648438 170.449219 C 182.648438 168.828125 185.078125 168.828125 185.078125 170.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.710938 266.371094 C 210.710938 267.992188 208.28125 267.992188 208.28125 266.371094 C 208.28125 264.75 210.710938 264.75 210.710938 266.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.253906 303.074219 C 300.253906 304.695312 297.824219 304.695312 297.824219 303.074219 C 297.824219 301.453125 300.253906 301.453125 300.253906 303.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.199219 266.539062 C 215.199219 268.160156 212.769531 268.160156 212.769531 266.539062 C 212.769531 264.921875 215.199219 264.921875 215.199219 266.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.53125 418.691406 L 269.167969 415.855469 L 265.894531 415.855469 Z M 267.53125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.035156 418.691406 L 263.671875 415.855469 L 260.398438 415.855469 Z M 262.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.039062 313.074219 C 268.039062 314.695312 265.609375 314.695312 265.609375 313.074219 C 265.609375 311.453125 268.039062 311.453125 268.039062 313.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.910156 275.796875 C 271.910156 277.417969 269.480469 277.417969 269.480469 275.796875 C 269.480469 274.175781 271.910156 274.175781 271.910156 275.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.863281 271.976562 C 179.863281 273.59375 177.433594 273.59375 177.433594 271.976562 C 177.433594 270.355469 179.863281 270.355469 179.863281 271.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.609375 216.613281 C 239.609375 218.234375 237.179688 218.234375 237.179688 216.613281 C 237.179688 214.996094 239.609375 214.996094 239.609375 216.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.421875 328.945312 C 258.421875 330.5625 255.992188 330.5625 255.992188 328.945312 C 255.992188 327.324219 258.421875 327.324219 258.421875 328.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.125 360.175781 C 228.125 361.796875 225.691406 361.796875 225.691406 360.175781 C 225.691406 358.554688 228.125 358.554688 228.125 360.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.109375 382.710938 C 119.109375 384.332031 116.675781 384.332031 116.675781 382.710938 C 116.675781 381.089844 119.109375 381.089844 119.109375 382.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.972656 318.289062 C 326.972656 319.910156 324.542969 319.910156 324.542969 318.289062 C 324.542969 316.667969 326.972656 316.667969 326.972656 318.289062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.140625 70.910156 L 223.777344 73.746094 L 220.503906 73.746094 Z M 222.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.242188 232.210938 C 254.242188 233.832031 251.8125 233.832031 251.8125 232.210938 C 251.8125 230.589844 254.242188 230.589844 254.242188 232.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.769531 234.691406 C 244.769531 236.3125 242.339844 236.3125 242.339844 234.691406 C 242.339844 233.074219 244.769531 233.074219 244.769531 234.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.890625 264.835938 C 255.890625 266.457031 253.460938 266.457031 253.460938 264.835938 C 253.460938 263.214844 255.890625 263.214844 255.890625 264.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.871094 70.910156 L 138.507812 73.746094 L 135.234375 73.746094 Z M 136.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.21875 198.207031 C 313.21875 199.828125 310.789062 199.828125 310.789062 198.207031 C 310.789062 196.585938 313.21875 196.585938 313.21875 198.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.3125 231.703125 C 317.3125 233.324219 314.882812 233.324219 314.882812 231.703125 C 314.882812 230.082031 317.3125 230.082031 317.3125 231.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.601562 85.636719 C 152.601562 87.253906 150.171875 87.253906 150.171875 85.636719 C 150.171875 84.015625 152.601562 84.015625 152.601562 85.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.90625 255.117188 C 244.90625 256.734375 242.472656 256.734375 242.472656 255.117188 C 242.472656 253.496094 244.90625 253.496094 244.90625 255.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.59375 228.773438 C 278.59375 230.394531 276.164062 230.394531 276.164062 228.773438 C 276.164062 227.152344 278.59375 227.152344 278.59375 228.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.984375 296.09375 C 132.984375 297.714844 130.554688 297.714844 130.554688 296.09375 C 130.554688 294.472656 132.984375 294.472656 132.984375 296.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.339844 322.136719 C 294.339844 323.757812 291.910156 323.757812 291.910156 322.136719 C 291.910156 320.515625 294.339844 320.515625 294.339844 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.949219 331.199219 C 269.949219 332.820312 267.519531 332.820312 267.519531 331.199219 C 267.519531 329.582031 269.949219 329.582031 269.949219 331.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.683594 214.78125 C 154.683594 216.402344 152.253906 216.402344 152.253906 214.78125 C 152.253906 213.160156 154.683594 213.160156 154.683594 214.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.523438 219.972656 C 271.523438 221.59375 269.09375 221.59375 269.09375 219.972656 C 269.09375 218.351562 271.523438 218.351562 271.523438 219.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.828125 237.558594 C 281.828125 239.179688 279.398438 239.179688 279.398438 237.558594 C 279.398438 235.9375 281.828125 235.9375 281.828125 237.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.914062 295.339844 C 247.914062 296.960938 245.480469 296.960938 245.480469 295.339844 C 245.480469 293.722656 247.914062 293.722656 247.914062 295.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.339844 77.089844 C 202.339844 78.707031 199.910156 78.707031 199.910156 77.089844 C 199.910156 75.46875 202.339844 75.46875 202.339844 77.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.335938 396.140625 C 267.335938 397.761719 264.90625 397.761719 264.90625 396.140625 C 264.90625 394.519531 267.335938 394.519531 267.335938 396.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.09375 381.527344 C 302.09375 383.148438 299.664062 383.148438 299.664062 381.527344 C 299.664062 379.910156 302.09375 379.910156 302.09375 381.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.015625 347.222656 C 308.015625 348.84375 305.585938 348.84375 305.585938 347.222656 C 305.585938 345.601562 308.015625 345.601562 308.015625 347.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.476562 197.300781 C 200.476562 198.921875 198.046875 198.921875 198.046875 197.300781 C 198.046875 195.679688 200.476562 195.679688 200.476562 197.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.691406 70.910156 L 164.328125 73.746094 L 161.054688 73.746094 Z M 162.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.488281 122.542969 C 119.488281 124.160156 117.058594 124.160156 117.058594 122.542969 C 117.058594 120.921875 119.488281 120.921875 119.488281 122.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.292969 114.089844 C 270.292969 115.707031 267.863281 115.707031 267.863281 114.089844 C 267.863281 112.46875 270.292969 112.46875 270.292969 114.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.390625 70.910156 L 128.023438 73.746094 L 124.753906 73.746094 Z M 126.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.882812 366.898438 C 232.882812 368.515625 230.453125 368.515625 230.453125 366.898438 C 230.453125 365.277344 232.882812 365.277344 232.882812 366.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.566406 70.910156 L 165.203125 73.746094 L 161.933594 73.746094 Z M 163.566406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.820312 70.910156 L 214.457031 73.746094 L 211.1875 73.746094 Z M 212.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.632812 361.140625 C 133.632812 362.761719 131.203125 362.761719 131.203125 361.140625 C 131.203125 359.523438 133.632812 359.523438 133.632812 361.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.019531 214.398438 C 235.019531 216.019531 232.589844 216.019531 232.589844 214.398438 C 232.589844 212.777344 235.019531 212.777344 235.019531 214.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.335938 179.894531 C 138.335938 181.515625 135.90625 181.515625 135.90625 179.894531 C 135.90625 178.273438 138.335938 178.273438 138.335938 179.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.9375 315.773438 C 170.9375 317.394531 168.503906 317.394531 168.503906 315.773438 C 168.503906 314.15625 170.9375 314.15625 170.9375 315.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 361.574219 247.542969 C 361.574219 249.164062 359.140625 249.164062 359.140625 247.542969 C 359.140625 245.921875 361.574219 245.921875 361.574219 247.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.542969 70.910156 L 141.179688 73.746094 L 137.90625 73.746094 Z M 139.542969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.347656 70.910156 L 275.984375 73.746094 L 272.710938 73.746094 Z M 274.347656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.355469 163.296875 C 215.355469 164.914062 212.925781 164.914062 212.925781 163.296875 C 212.925781 161.675781 215.355469 161.675781 215.355469 163.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.039062 70.910156 L 152.671875 73.746094 L 149.402344 73.746094 Z M 151.039062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.375 70.910156 L 216.011719 73.746094 L 212.738281 73.746094 Z M 214.375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.21875 70.910156 L 175.855469 73.746094 L 172.582031 73.746094 Z M 174.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.097656 150.714844 C 213.097656 152.335938 210.664062 152.335938 210.664062 150.714844 C 210.664062 149.09375 213.097656 149.09375 213.097656 150.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.757812 206.964844 C 305.757812 208.585938 303.328125 208.585938 303.328125 206.964844 C 303.328125 205.34375 305.757812 205.34375 305.757812 206.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.792969 418.691406 L 184.429688 415.855469 L 181.15625 415.855469 Z M 182.792969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.691406 256.972656 C 274.691406 258.589844 272.261719 258.589844 272.261719 256.972656 C 272.261719 255.351562 274.691406 255.351562 274.691406 256.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.375 223.773438 C 203.375 225.394531 200.945312 225.394531 200.945312 223.773438 C 200.945312 222.152344 203.375 222.152344 203.375 223.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.539062 98.578125 C 183.539062 100.195312 181.109375 100.195312 181.109375 98.578125 C 181.109375 96.957031 183.539062 96.957031 183.539062 98.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.070312 251.40625 C 322.070312 253.023438 319.640625 253.023438 319.640625 251.40625 C 319.640625 249.785156 322.070312 249.785156 322.070312 251.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.03125 269.210938 C 239.03125 270.832031 236.601562 270.832031 236.601562 269.210938 C 236.601562 267.589844 239.03125 267.589844 239.03125 269.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.734375 259.722656 C 227.734375 261.34375 225.304688 261.34375 225.304688 259.722656 C 225.304688 258.101562 227.734375 258.101562 227.734375 259.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.703125 254.167969 C 229.703125 255.789062 227.273438 255.789062 227.273438 254.167969 C 227.273438 252.546875 229.703125 252.546875 229.703125 254.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.851562 262.003906 C 299.851562 263.621094 297.417969 263.621094 297.417969 262.003906 C 297.417969 260.382812 299.851562 260.382812 299.851562 262.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.023438 195.636719 C 126.023438 197.257812 123.59375 197.257812 123.59375 195.636719 C 123.59375 194.015625 126.023438 194.015625 126.023438 195.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.554688 418.691406 L 222.191406 415.855469 L 218.917969 415.855469 Z M 220.554688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 357.664062 398.792969 C 357.664062 400.414062 355.234375 400.414062 355.234375 398.792969 C 355.234375 397.175781 357.664062 397.175781 357.664062 398.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.171875 283.441406 C 330.171875 285.058594 327.742188 285.058594 327.742188 283.441406 C 327.742188 281.820312 330.171875 281.820312 330.171875 283.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.617188 305.136719 C 294.617188 306.753906 292.1875 306.753906 292.1875 305.136719 C 292.1875 303.515625 294.617188 303.515625 294.617188 305.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.027344 209.097656 C 272.027344 210.71875 269.597656 210.71875 269.597656 209.097656 C 269.597656 207.476562 272.027344 207.476562 272.027344 209.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.003906 70.910156 L 298.640625 73.746094 L 295.371094 73.746094 Z M 297.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.011719 117.179688 C 119.011719 118.800781 116.582031 118.800781 116.582031 117.179688 C 116.582031 115.558594 119.011719 115.558594 119.011719 117.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.015625 329.703125 C 201.015625 331.320312 198.585938 331.320312 198.585938 329.703125 C 198.585938 328.082031 201.015625 328.082031 201.015625 329.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.375 199.660156 C 201.375 201.28125 198.945312 201.28125 198.945312 199.660156 C 198.945312 198.039062 201.375 198.039062 201.375 199.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.777344 70.910156 L 188.414062 73.746094 L 185.140625 73.746094 Z M 186.777344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.351562 240.574219 C 283.351562 242.195312 280.921875 242.195312 280.921875 240.574219 C 280.921875 238.957031 283.351562 238.957031 283.351562 240.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.894531 310.382812 C 221.894531 312.003906 219.464844 312.003906 219.464844 310.382812 C 219.464844 308.765625 221.894531 308.765625 221.894531 310.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.332031 255.472656 C 147.332031 257.09375 144.902344 257.09375 144.902344 255.472656 C 144.902344 253.851562 147.332031 253.851562 147.332031 255.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.695312 227.496094 C 256.695312 229.117188 254.265625 229.117188 254.265625 227.496094 C 254.265625 225.878906 256.695312 225.878906 256.695312 227.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.175781 151.628906 C 317.175781 153.25 314.746094 153.25 314.746094 151.628906 C 314.746094 150.007812 317.175781 150.007812 317.175781 151.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.710938 184.753906 C 206.710938 186.375 204.28125 186.375 204.28125 184.753906 C 204.28125 183.132812 206.710938 183.132812 206.710938 184.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.734375 206.644531 C 318.734375 208.265625 316.304688 208.265625 316.304688 206.644531 C 316.304688 205.023438 318.734375 205.023438 318.734375 206.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.972656 273.730469 C 296.972656 275.351562 294.542969 275.351562 294.542969 273.730469 C 294.542969 272.109375 296.972656 272.109375 296.972656 273.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.777344 160.746094 C 178.777344 162.367188 176.34375 162.367188 176.34375 160.746094 C 176.34375 159.128906 178.777344 159.128906 178.777344 160.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.320312 262.402344 C 283.320312 264.023438 280.890625 264.023438 280.890625 262.402344 C 280.890625 260.78125 283.320312 260.78125 283.320312 262.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.230469 253.664062 C 127.230469 255.28125 124.800781 255.28125 124.800781 253.664062 C 124.800781 252.042969 127.230469 252.042969 127.230469 253.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.9375 365.828125 C 285.9375 367.449219 283.507812 367.449219 283.507812 365.828125 C 283.507812 364.207031 285.9375 364.207031 285.9375 365.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.5625 418.691406 L 239.199219 415.855469 L 235.925781 415.855469 Z M 237.5625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.460938 418.691406 L 121.097656 415.855469 L 117.824219 415.855469 Z M 119.460938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 338.378906 70.910156 L 340.015625 73.746094 L 336.742188 73.746094 Z M 338.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.519531 418.691406 L 241.15625 415.855469 L 237.882812 415.855469 Z M 239.519531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.027344 70.910156 L 211.664062 73.746094 L 208.390625 73.746094 Z M 210.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.375 165.675781 C 254.375 167.292969 251.945312 167.292969 251.945312 165.675781 C 251.945312 164.054688 254.375 164.054688 254.375 165.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.933594 418.691406 L 139.570312 415.855469 L 136.296875 415.855469 Z M 137.933594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.1875 252.148438 C 197.1875 253.769531 194.757812 253.769531 194.757812 252.148438 C 194.757812 250.53125 197.1875 250.53125 197.1875 252.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.023438 252.402344 C 259.023438 254.023438 256.59375 254.023438 256.59375 252.402344 C 256.59375 250.78125 259.023438 250.78125 259.023438 252.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.371094 260.808594 C 293.371094 262.425781 290.941406 262.425781 290.941406 260.808594 C 290.941406 259.1875 293.371094 259.1875 293.371094 260.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.570312 223.902344 C 262.570312 225.523438 260.140625 225.523438 260.140625 223.902344 C 260.140625 222.28125 262.570312 222.28125 262.570312 223.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.144531 418.691406 L 329.78125 415.855469 L 326.507812 415.855469 Z M 328.144531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.757812 109.910156 C 259.757812 111.53125 257.328125 111.53125 257.328125 109.910156 C 257.328125 108.292969 259.757812 108.292969 259.757812 109.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.148438 257.507812 C 266.148438 259.125 263.71875 259.125 263.71875 257.507812 C 263.71875 255.886719 266.148438 255.886719 266.148438 257.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.476562 247.3125 C 240.476562 248.929688 238.046875 248.929688 238.046875 247.3125 C 238.046875 245.691406 240.476562 245.691406 240.476562 247.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.863281 230.214844 C 201.863281 231.835938 199.433594 231.835938 199.433594 230.214844 C 199.433594 228.59375 201.863281 228.59375 201.863281 230.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.789062 200.28125 C 292.789062 201.902344 290.359375 201.902344 290.359375 200.28125 C 290.359375 198.664062 292.789062 198.664062 292.789062 200.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.269531 418.691406 L 237.90625 415.855469 L 234.632812 415.855469 Z M 236.269531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.65625 201.941406 C 257.65625 203.5625 255.226562 203.5625 255.226562 201.941406 C 255.226562 200.324219 257.65625 200.324219 257.65625 201.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.566406 188.222656 C 230.566406 189.84375 228.136719 189.84375 228.136719 188.222656 C 228.136719 186.601562 230.566406 186.601562 230.566406 188.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.511719 239.683594 C 249.511719 241.304688 247.082031 241.304688 247.082031 239.683594 C 247.082031 238.066406 249.511719 238.066406 249.511719 239.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.058594 194.460938 C 300.058594 196.078125 297.628906 196.078125 297.628906 194.460938 C 297.628906 192.839844 300.058594 192.839844 300.058594 194.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.40625 170.09375 C 158.40625 171.714844 155.972656 171.714844 155.972656 170.09375 C 155.972656 168.472656 158.40625 168.472656 158.40625 170.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.570312 398.183594 C 314.570312 399.800781 312.140625 399.800781 312.140625 398.183594 C 312.140625 396.5625 314.570312 396.5625 314.570312 398.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.597656 70.910156 L 288.234375 73.746094 L 284.960938 73.746094 Z M 286.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.324219 281.058594 C 232.324219 282.679688 229.894531 282.679688 229.894531 281.058594 C 229.894531 279.441406 232.324219 279.441406 232.324219 281.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.316406 253.910156 C 245.316406 255.53125 242.886719 255.53125 242.886719 253.910156 C 242.886719 252.289062 245.316406 252.289062 245.316406 253.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.984375 234.671875 C 266.984375 236.292969 264.554688 236.292969 264.554688 234.671875 C 264.554688 233.050781 266.984375 233.050781 266.984375 234.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.292969 285.703125 C 328.292969 287.320312 325.863281 287.320312 325.863281 285.703125 C 325.863281 284.082031 328.292969 284.082031 328.292969 285.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.828125 245.6875 C 145.828125 247.304688 143.398438 247.304688 143.398438 245.6875 C 143.398438 244.066406 145.828125 244.066406 145.828125 245.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.746094 70.910156 L 342.382812 73.746094 L 339.109375 73.746094 Z M 340.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 348.679688 278.015625 C 348.679688 279.636719 346.25 279.636719 346.25 278.015625 C 346.25 276.398438 348.679688 276.398438 348.679688 278.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.496094 249.953125 C 217.496094 251.570312 215.066406 251.570312 215.066406 249.953125 C 215.066406 248.332031 217.496094 248.332031 217.496094 249.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.851562 262.523438 C 157.851562 264.144531 155.421875 264.144531 155.421875 262.523438 C 155.421875 260.902344 157.851562 260.902344 157.851562 262.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.585938 273.378906 C 245.585938 275 243.15625 275 243.15625 273.378906 C 243.15625 271.761719 245.585938 271.761719 245.585938 273.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.589844 258.433594 C 267.589844 260.054688 265.160156 260.054688 265.160156 258.433594 C 265.160156 256.816406 267.589844 256.816406 267.589844 258.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.640625 240.683594 C 240.640625 242.304688 238.210938 242.304688 238.210938 240.683594 C 238.210938 239.066406 240.640625 239.066406 240.640625 240.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.308594 286.304688 C 289.308594 287.925781 286.878906 287.925781 286.878906 286.304688 C 286.878906 284.683594 289.308594 284.683594 289.308594 286.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.804688 70.910156 L 271.441406 73.746094 L 268.167969 73.746094 Z M 269.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.960938 301.9375 C 269.960938 303.558594 267.53125 303.558594 267.53125 301.9375 C 267.53125 300.320312 269.960938 300.320312 269.960938 301.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.578125 307.660156 C 296.578125 309.277344 294.148438 309.277344 294.148438 307.660156 C 294.148438 306.039062 296.578125 306.039062 296.578125 307.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.050781 248.007812 C 261.050781 249.628906 258.621094 249.628906 258.621094 248.007812 C 258.621094 246.390625 261.050781 246.390625 261.050781 248.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.9375 300.183594 C 230.9375 301.800781 228.507812 301.800781 228.507812 300.183594 C 228.507812 298.5625 230.9375 298.5625 230.9375 300.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.03125 214.972656 C 211.03125 216.59375 208.601562 216.59375 208.601562 214.972656 C 208.601562 213.355469 211.03125 213.355469 211.03125 214.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.789062 227.34375 C 141.789062 228.964844 139.359375 228.964844 139.359375 227.34375 C 139.359375 225.726562 141.789062 225.726562 141.789062 227.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.414062 345.605469 C 240.414062 347.226562 237.984375 347.226562 237.984375 345.605469 C 237.984375 343.988281 240.414062 343.988281 240.414062 345.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.890625 338.835938 C 142.890625 340.457031 140.460938 340.457031 140.460938 338.835938 C 140.460938 337.214844 142.890625 337.214844 142.890625 338.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.210938 292.914062 C 222.210938 294.535156 219.78125 294.535156 219.78125 292.914062 C 219.78125 291.296875 222.210938 291.296875 222.210938 292.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.117188 294.636719 C 259.117188 296.257812 256.6875 296.257812 256.6875 294.636719 C 256.6875 293.015625 259.117188 293.015625 259.117188 294.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.359375 156.292969 C 305.359375 157.914062 302.929688 157.914062 302.929688 156.292969 C 302.929688 154.671875 305.359375 154.671875 305.359375 156.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.117188 316.097656 C 303.117188 317.714844 300.6875 317.714844 300.6875 316.097656 C 300.6875 314.476562 303.117188 314.476562 303.117188 316.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.445312 270.949219 C 275.445312 272.570312 273.015625 272.570312 273.015625 270.949219 C 273.015625 269.332031 275.445312 269.332031 275.445312 270.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.640625 114.242188 C 261.640625 115.863281 259.210938 115.863281 259.210938 114.242188 C 259.210938 112.625 261.640625 112.625 261.640625 114.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.101562 215.449219 C 274.101562 217.066406 271.671875 217.066406 271.671875 215.449219 C 271.671875 213.828125 274.101562 213.828125 274.101562 215.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.160156 98.691406 C 231.160156 100.3125 228.730469 100.3125 228.730469 98.691406 C 228.730469 97.070312 231.160156 97.070312 231.160156 98.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 347.25 70.910156 L 348.886719 73.746094 L 345.613281 73.746094 Z M 347.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.058594 322.910156 C 287.058594 324.53125 284.628906 324.53125 284.628906 322.910156 C 284.628906 321.292969 287.058594 321.292969 287.058594 322.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.074219 221.609375 C 269.074219 223.230469 266.644531 223.230469 266.644531 221.609375 C 266.644531 219.992188 269.074219 219.992188 269.074219 221.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.363281 284.992188 C 303.363281 286.613281 300.933594 286.613281 300.933594 284.992188 C 300.933594 283.371094 303.363281 283.371094 303.363281 284.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.621094 271.613281 C 249.621094 273.234375 247.191406 273.234375 247.191406 271.613281 C 247.191406 269.996094 249.621094 269.996094 249.621094 271.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.347656 220.992188 C 267.347656 222.613281 264.917969 222.613281 264.917969 220.992188 C 264.917969 219.375 267.347656 219.375 267.347656 220.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.5625 218.664062 C 264.5625 220.285156 262.132812 220.285156 262.132812 218.664062 C 262.132812 217.042969 264.5625 217.042969 264.5625 218.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.941406 223.148438 C 271.941406 224.769531 269.511719 224.769531 269.511719 223.148438 C 269.511719 221.53125 271.941406 221.53125 271.941406 223.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.777344 206.824219 C 243.777344 208.445312 241.347656 208.445312 241.347656 206.824219 C 241.347656 205.203125 243.777344 205.203125 243.777344 206.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.0625 292.761719 C 239.0625 294.382812 236.628906 294.382812 236.628906 292.761719 C 236.628906 291.140625 239.0625 291.140625 239.0625 292.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.316406 280.761719 C 221.316406 282.382812 218.886719 282.382812 218.886719 280.761719 C 218.886719 279.140625 221.316406 279.140625 221.316406 280.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.71875 70.910156 L 247.355469 73.746094 L 244.085938 73.746094 Z M 245.71875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.710938 70.910156 L 286.347656 73.746094 L 283.074219 73.746094 Z M 284.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.808594 70.910156 L 115.445312 73.746094 L 112.175781 73.746094 Z M 113.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.144531 127.554688 C 241.144531 129.175781 238.714844 129.175781 238.714844 127.554688 C 238.714844 125.933594 241.144531 125.933594 241.144531 127.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.425781 230.425781 C 257.425781 232.046875 254.996094 232.046875 254.996094 230.425781 C 254.996094 228.804688 257.425781 228.804688 257.425781 230.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.296875 319.617188 C 177.296875 321.238281 174.867188 321.238281 174.867188 319.617188 C 174.867188 318 177.296875 318 177.296875 319.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.222656 126.175781 C 225.222656 127.792969 222.792969 127.792969 222.792969 126.175781 C 222.792969 124.554688 225.222656 124.554688 225.222656 126.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.640625 125.632812 C 248.640625 127.253906 246.210938 127.253906 246.210938 125.632812 C 246.210938 124.015625 248.640625 124.015625 248.640625 125.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.3125 236.191406 C 234.3125 237.8125 231.882812 237.8125 231.882812 236.191406 C 231.882812 234.574219 234.3125 234.574219 234.3125 236.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.402344 163.578125 C 224.402344 165.195312 221.96875 165.195312 221.96875 163.578125 C 221.96875 161.957031 224.402344 161.957031 224.402344 163.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.976562 233.390625 C 287.976562 235.007812 285.546875 235.007812 285.546875 233.390625 C 285.546875 231.769531 287.976562 231.769531 287.976562 233.390625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.53125 418.691406 L 111.167969 415.855469 L 107.894531 415.855469 Z M 109.53125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.207031 207.835938 C 240.207031 209.457031 237.773438 209.457031 237.773438 207.835938 C 237.773438 206.21875 240.207031 206.21875 240.207031 207.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.730469 338.011719 C 243.730469 339.628906 241.300781 339.628906 241.300781 338.011719 C 241.300781 336.390625 243.730469 336.390625 243.730469 338.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.46875 245.933594 C 307.46875 247.554688 305.039062 247.554688 305.039062 245.933594 C 305.039062 244.3125 307.46875 244.3125 307.46875 245.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.691406 213.136719 C 273.691406 214.757812 271.261719 214.757812 271.261719 213.136719 C 271.261719 211.519531 273.691406 211.519531 273.691406 213.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.574219 305.300781 C 123.574219 306.917969 121.140625 306.917969 121.140625 305.300781 C 121.140625 303.679688 123.574219 303.679688 123.574219 305.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.199219 292.199219 C 193.199219 293.816406 190.769531 293.816406 190.769531 292.199219 C 190.769531 290.578125 193.199219 290.578125 193.199219 292.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.335938 233.21875 C 324.335938 234.835938 321.902344 234.835938 321.902344 233.21875 C 321.902344 231.597656 324.335938 231.597656 324.335938 233.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.386719 418.691406 L 266.023438 415.855469 L 262.75 415.855469 Z M 264.386719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.371094 326.945312 C 229.371094 328.566406 226.941406 328.566406 226.941406 326.945312 C 226.941406 325.324219 229.371094 325.324219 229.371094 326.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.210938 220.296875 C 244.210938 221.914062 241.78125 221.914062 241.78125 220.296875 C 241.78125 218.675781 244.210938 218.675781 244.210938 220.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.398438 227.75 C 283.398438 229.367188 280.96875 229.367188 280.96875 227.75 C 280.96875 226.128906 283.398438 226.128906 283.398438 227.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.953125 197.542969 C 288.953125 199.164062 286.523438 199.164062 286.523438 197.542969 C 286.523438 195.921875 288.953125 195.921875 288.953125 197.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.390625 330.738281 C 307.390625 332.359375 304.960938 332.359375 304.960938 330.738281 C 304.960938 329.117188 307.390625 329.117188 307.390625 330.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.703125 221.851562 C 204.703125 223.472656 202.273438 223.472656 202.273438 221.851562 C 202.273438 220.230469 204.703125 220.230469 204.703125 221.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.03125 164.71875 C 255.03125 166.339844 252.601562 166.339844 252.601562 164.71875 C 252.601562 163.097656 255.03125 163.097656 255.03125 164.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.183594 208.941406 C 256.183594 210.5625 253.753906 210.5625 253.753906 208.941406 C 253.753906 207.320312 256.183594 207.320312 256.183594 208.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.144531 303.035156 C 153.144531 304.65625 150.714844 304.65625 150.714844 303.035156 C 150.714844 301.417969 153.144531 301.417969 153.144531 303.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.847656 70.910156 L 185.484375 73.746094 L 182.210938 73.746094 Z M 183.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.226562 70.910156 L 153.863281 73.746094 L 150.589844 73.746094 Z M 152.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.320312 287.796875 C 302.320312 289.417969 299.890625 289.417969 299.890625 287.796875 C 299.890625 286.175781 302.320312 286.175781 302.320312 287.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.195312 235.992188 C 204.195312 237.613281 201.765625 237.613281 201.765625 235.992188 C 201.765625 234.371094 204.195312 234.371094 204.195312 235.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.382812 70.910156 L 259.019531 73.746094 L 255.746094 73.746094 Z M 257.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.832031 236.441406 C 235.832031 238.058594 233.402344 238.058594 233.402344 236.441406 C 233.402344 234.820312 235.832031 234.820312 235.832031 236.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.710938 261.050781 C 274.710938 262.667969 272.28125 262.667969 272.28125 261.050781 C 272.28125 259.429688 274.710938 259.429688 274.710938 261.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.832031 276.582031 C 141.832031 278.203125 139.402344 278.203125 139.402344 276.582031 C 139.402344 274.964844 141.832031 274.964844 141.832031 276.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.554688 298.75 C 288.554688 300.371094 286.125 300.371094 286.125 298.75 C 286.125 297.128906 288.554688 297.128906 288.554688 298.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.734375 258.140625 C 250.734375 259.761719 248.304688 259.761719 248.304688 258.140625 C 248.304688 256.519531 250.734375 256.519531 250.734375 258.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.582031 257.921875 C 293.582031 259.539062 291.152344 259.539062 291.152344 257.921875 C 291.152344 256.300781 293.582031 256.300781 293.582031 257.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.464844 350.1875 C 296.464844 351.804688 294.035156 351.804688 294.035156 350.1875 C 294.035156 348.566406 296.464844 348.566406 296.464844 350.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.460938 320.644531 C 270.460938 322.261719 268.03125 322.261719 268.03125 320.644531 C 268.03125 319.023438 270.460938 319.023438 270.460938 320.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 386.46875 86.648438 C 386.46875 88.269531 384.039062 88.269531 384.039062 86.648438 C 384.039062 85.027344 386.46875 85.027344 386.46875 86.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.9375 278.398438 C 276.9375 280.019531 274.507812 280.019531 274.507812 278.398438 C 274.507812 276.78125 276.9375 276.78125 276.9375 278.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.539062 70.910156 L 310.175781 73.746094 L 306.902344 73.746094 Z M 308.539062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.769531 251.164062 C 232.769531 252.785156 230.339844 252.785156 230.339844 251.164062 C 230.339844 249.546875 232.769531 249.546875 232.769531 251.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.46875 96.253906 C 237.46875 97.875 235.039062 97.875 235.039062 96.253906 C 235.039062 94.632812 237.46875 94.632812 237.46875 96.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.207031 267.023438 C 284.207031 268.644531 281.777344 268.644531 281.777344 267.023438 C 281.777344 265.402344 284.207031 265.402344 284.207031 267.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.019531 214.4375 C 237.019531 216.058594 234.589844 216.058594 234.589844 214.4375 C 234.589844 212.816406 237.019531 212.816406 237.019531 214.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.097656 70.910156 L 224.734375 73.746094 L 221.460938 73.746094 Z M 223.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.460938 107.179688 C 174.460938 108.800781 172.03125 108.800781 172.03125 107.179688 C 172.03125 105.558594 174.460938 105.558594 174.460938 107.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.875 70.910156 L 303.511719 73.746094 L 300.242188 73.746094 Z M 301.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.789062 236.832031 C 244.789062 238.453125 242.355469 238.453125 242.355469 236.832031 C 242.355469 235.210938 244.789062 235.210938 244.789062 236.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.335938 298.339844 C 262.335938 299.960938 259.90625 299.960938 259.90625 298.339844 C 259.90625 296.722656 262.335938 296.722656 262.335938 298.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.308594 198.335938 C 324.308594 199.957031 321.875 199.957031 321.875 198.335938 C 321.875 196.71875 324.308594 196.71875 324.308594 198.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.304688 188.714844 C 227.304688 190.332031 224.875 190.332031 224.875 188.714844 C 224.875 187.09375 227.304688 187.09375 227.304688 188.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.625 218.5 C 158.625 220.117188 156.195312 220.117188 156.195312 218.5 C 156.195312 216.878906 158.625 216.878906 158.625 218.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.324219 70.910156 L 172.960938 73.746094 L 169.6875 73.746094 Z M 171.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.855469 171.050781 C 178.855469 172.671875 176.425781 172.671875 176.425781 171.050781 C 176.425781 169.429688 178.855469 169.429688 178.855469 171.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.824219 191.734375 C 253.824219 193.355469 251.394531 193.355469 251.394531 191.734375 C 251.394531 190.113281 253.824219 190.113281 253.824219 191.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.480469 270.679688 C 290.480469 272.300781 288.046875 272.300781 288.046875 270.679688 C 288.046875 269.0625 290.480469 269.0625 290.480469 270.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.460938 70.910156 L 233.097656 73.746094 L 229.824219 73.746094 Z M 231.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.585938 273.023438 C 214.585938 274.644531 212.15625 274.644531 212.15625 273.023438 C 212.15625 271.40625 214.585938 271.40625 214.585938 273.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.042969 70.910156 L 279.679688 73.746094 L 276.40625 73.746094 Z M 278.042969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.191406 138.160156 C 249.191406 139.78125 246.761719 139.78125 246.761719 138.160156 C 246.761719 136.539062 249.191406 136.539062 249.191406 138.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.003906 213.84375 C 174.003906 215.464844 171.570312 215.464844 171.570312 213.84375 C 171.570312 212.222656 174.003906 212.222656 174.003906 213.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.867188 160.628906 C 293.867188 162.246094 291.4375 162.246094 291.4375 160.628906 C 291.4375 159.007812 293.867188 159.007812 293.867188 160.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.539062 286.722656 C 195.539062 288.34375 193.109375 288.34375 193.109375 286.722656 C 193.109375 285.101562 195.539062 285.101562 195.539062 286.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.394531 278.832031 C 242.394531 280.453125 239.964844 280.453125 239.964844 278.832031 C 239.964844 277.210938 242.394531 277.210938 242.394531 278.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.023438 336.621094 C 259.023438 338.242188 256.59375 338.242188 256.59375 336.621094 C 256.59375 335 259.023438 335 259.023438 336.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.875 418.691406 L 278.511719 415.855469 L 275.238281 415.855469 Z M 276.875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.683594 377.925781 C 301.683594 379.542969 299.253906 379.542969 299.253906 377.925781 C 299.253906 376.304688 301.683594 376.304688 301.683594 377.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.542969 338.308594 C 344.542969 339.925781 342.113281 339.925781 342.113281 338.308594 C 342.113281 336.6875 344.542969 336.6875 344.542969 338.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.0625 70.910156 L 143.699219 73.746094 L 140.429688 73.746094 Z M 142.0625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.304688 142.535156 C 293.304688 144.15625 290.875 144.15625 290.875 142.535156 C 290.875 140.917969 293.304688 140.917969 293.304688 142.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.871094 267.570312 C 272.871094 269.191406 270.441406 269.191406 270.441406 267.570312 C 270.441406 265.949219 272.871094 265.949219 272.871094 267.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.402344 249.953125 C 298.402344 251.574219 295.972656 251.574219 295.972656 249.953125 C 295.972656 248.332031 298.402344 248.332031 298.402344 249.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.277344 249.859375 C 293.277344 251.476562 290.847656 251.476562 290.847656 249.859375 C 290.847656 248.238281 293.277344 248.238281 293.277344 249.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.164062 191.445312 C 237.164062 193.0625 234.734375 193.0625 234.734375 191.445312 C 234.734375 189.824219 237.164062 189.824219 237.164062 191.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.800781 232.691406 C 265.800781 234.3125 263.371094 234.3125 263.371094 232.691406 C 263.371094 231.070312 265.800781 231.070312 265.800781 232.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.902344 173.789062 C 261.902344 175.40625 259.46875 175.40625 259.46875 173.789062 C 259.46875 172.167969 261.902344 172.167969 261.902344 173.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.960938 70.910156 L 284.597656 73.746094 L 281.324219 73.746094 Z M 282.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.953125 273.101562 C 308.953125 274.722656 306.523438 274.722656 306.523438 273.101562 C 306.523438 271.484375 308.953125 271.484375 308.953125 273.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.019531 149.046875 C 240.019531 150.667969 237.589844 150.667969 237.589844 149.046875 C 237.589844 147.429688 240.019531 147.429688 240.019531 149.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.089844 172.773438 C 249.089844 174.394531 246.660156 174.394531 246.660156 172.773438 C 246.660156 171.152344 249.089844 171.152344 249.089844 172.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.128906 246.183594 C 257.128906 247.804688 254.699219 247.804688 254.699219 246.183594 C 254.699219 244.5625 257.128906 244.5625 257.128906 246.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.691406 276.261719 C 210.691406 277.878906 208.261719 277.878906 208.261719 276.261719 C 208.261719 274.640625 210.691406 274.640625 210.691406 276.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.625 70.910156 L 290.261719 73.746094 L 286.992188 73.746094 Z M 288.625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.09375 70.910156 L 138.730469 73.746094 L 135.457031 73.746094 Z M 137.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.046875 244.941406 C 291.046875 246.5625 288.617188 246.5625 288.617188 244.941406 C 288.617188 243.324219 291.046875 243.324219 291.046875 244.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.636719 233.070312 C 161.636719 234.691406 159.207031 234.691406 159.207031 233.070312 C 159.207031 231.449219 161.636719 231.449219 161.636719 233.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.9375 280.5625 C 261.9375 282.183594 259.507812 282.183594 259.507812 280.5625 C 259.507812 278.945312 261.9375 278.945312 261.9375 280.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.457031 298.164062 C 278.457031 299.785156 276.027344 299.785156 276.027344 298.164062 C 276.027344 296.542969 278.457031 296.542969 278.457031 298.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.351562 263.632812 C 257.351562 265.253906 254.921875 265.253906 254.921875 263.632812 C 254.921875 262.011719 257.351562 262.011719 257.351562 263.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.957031 246.019531 C 301.957031 247.640625 299.527344 247.640625 299.527344 246.019531 C 299.527344 244.398438 301.957031 244.398438 301.957031 246.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.511719 281.195312 C 266.511719 282.816406 264.082031 282.816406 264.082031 281.195312 C 264.082031 279.574219 266.511719 279.574219 266.511719 281.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.652344 311.773438 C 293.652344 313.394531 291.21875 313.394531 291.21875 311.773438 C 291.21875 310.15625 293.652344 310.15625 293.652344 311.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.679688 277.652344 C 309.679688 279.269531 307.25 279.269531 307.25 277.652344 C 307.25 276.03125 309.679688 276.03125 309.679688 277.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.066406 321.175781 C 278.066406 322.796875 275.636719 322.796875 275.636719 321.175781 C 275.636719 319.554688 278.066406 319.554688 278.066406 321.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.570312 248.230469 C 275.570312 249.851562 273.140625 249.851562 273.140625 248.230469 C 273.140625 246.613281 275.570312 246.613281 275.570312 248.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.234375 264.015625 C 135.234375 265.636719 132.804688 265.636719 132.804688 264.015625 C 132.804688 262.398438 135.234375 262.398438 135.234375 264.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.363281 242.582031 C 300.363281 244.203125 297.933594 244.203125 297.933594 242.582031 C 297.933594 240.964844 300.363281 240.964844 300.363281 242.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.535156 156.125 C 343.535156 157.746094 341.105469 157.746094 341.105469 156.125 C 341.105469 154.503906 343.535156 154.503906 343.535156 156.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.652344 180.847656 C 211.652344 182.46875 209.222656 182.46875 209.222656 180.847656 C 209.222656 179.226562 211.652344 179.226562 211.652344 180.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.429688 70.910156 L 247.066406 73.746094 L 243.792969 73.746094 Z M 245.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.136719 164.324219 C 191.136719 165.941406 188.707031 165.941406 188.707031 164.324219 C 188.707031 162.703125 191.136719 162.703125 191.136719 164.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.824219 173.0625 C 152.824219 174.679688 150.394531 174.679688 150.394531 173.0625 C 150.394531 171.441406 152.824219 171.441406 152.824219 173.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.605469 201.648438 C 319.605469 203.269531 317.175781 203.269531 317.175781 201.648438 C 317.175781 200.027344 319.605469 200.027344 319.605469 201.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.667969 123.046875 C 212.667969 124.667969 210.238281 124.667969 210.238281 123.046875 C 210.238281 121.429688 212.667969 121.429688 212.667969 123.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.105469 226.527344 C 184.105469 228.148438 181.675781 228.148438 181.675781 226.527344 C 181.675781 224.90625 184.105469 224.90625 184.105469 226.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.066406 255.441406 C 182.066406 257.0625 179.636719 257.0625 179.636719 255.441406 C 179.636719 253.824219 182.066406 253.824219 182.066406 255.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.980469 70.910156 L 174.617188 73.746094 L 171.34375 73.746094 Z M 172.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.996094 288.507812 C 273.996094 290.128906 271.566406 290.128906 271.566406 288.507812 C 271.566406 286.886719 273.996094 286.886719 273.996094 288.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.484375 305.691406 C 278.484375 307.3125 276.054688 307.3125 276.054688 305.691406 C 276.054688 304.074219 278.484375 304.074219 278.484375 305.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.824219 259.085938 C 275.824219 260.707031 273.394531 260.707031 273.394531 259.085938 C 273.394531 257.464844 275.824219 257.464844 275.824219 259.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.011719 266.929688 C 215.011719 268.546875 212.582031 268.546875 212.582031 266.929688 C 212.582031 265.308594 215.011719 265.308594 215.011719 266.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.152344 209.996094 C 306.152344 211.617188 303.722656 211.617188 303.722656 209.996094 C 303.722656 208.375 306.152344 208.375 306.152344 209.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.472656 204.785156 C 260.472656 206.40625 258.042969 206.40625 258.042969 204.785156 C 258.042969 203.164062 260.472656 203.164062 260.472656 204.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.214844 215.851562 C 343.214844 217.472656 340.785156 217.472656 340.785156 215.851562 C 340.785156 214.234375 343.214844 214.234375 343.214844 215.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.515625 131.070312 C 200.515625 132.691406 198.085938 132.691406 198.085938 131.070312 C 198.085938 129.449219 200.515625 129.449219 200.515625 131.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.40625 221.78125 C 237.40625 223.398438 234.976562 223.398438 234.976562 221.78125 C 234.976562 220.160156 237.40625 220.160156 237.40625 221.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.851562 221.328125 C 276.851562 222.949219 274.421875 222.949219 274.421875 221.328125 C 274.421875 219.707031 276.851562 219.707031 276.851562 221.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.300781 70.910156 L 164.9375 73.746094 L 161.664062 73.746094 Z M 163.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.953125 274.234375 C 222.953125 275.851562 220.523438 275.851562 220.523438 274.234375 C 220.523438 272.613281 222.953125 272.613281 222.953125 274.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.890625 228.917969 C 234.890625 230.535156 232.460938 230.535156 232.460938 228.917969 C 232.460938 227.296875 234.890625 227.296875 234.890625 228.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.027344 179.878906 C 261.027344 181.5 258.597656 181.5 258.597656 179.878906 C 258.597656 178.257812 261.027344 178.257812 261.027344 179.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.796875 249.824219 C 265.796875 251.441406 263.367188 251.441406 263.367188 249.824219 C 263.367188 248.203125 265.796875 248.203125 265.796875 249.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.480469 276.910156 C 257.480469 278.527344 255.050781 278.527344 255.050781 276.910156 C 255.050781 275.289062 257.480469 275.289062 257.480469 276.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.394531 142.375 C 285.394531 143.996094 282.964844 143.996094 282.964844 142.375 C 282.964844 140.753906 285.394531 140.753906 285.394531 142.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.882812 120.90625 C 279.882812 122.527344 277.453125 122.527344 277.453125 120.90625 C 277.453125 119.285156 279.882812 119.285156 279.882812 120.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.902344 160.976562 C 233.902344 162.597656 231.472656 162.597656 231.472656 160.976562 C 231.472656 159.355469 233.902344 159.355469 233.902344 160.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.449219 97.910156 C 261.449219 99.527344 259.019531 99.527344 259.019531 97.910156 C 259.019531 96.289062 261.449219 96.289062 261.449219 97.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.695312 163.910156 C 337.695312 165.527344 335.261719 165.527344 335.261719 163.910156 C 335.261719 162.289062 337.695312 162.289062 337.695312 163.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.074219 258.597656 C 274.074219 260.21875 271.644531 260.21875 271.644531 258.597656 C 271.644531 256.976562 274.074219 256.976562 274.074219 258.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.777344 281.15625 C 324.777344 282.777344 322.347656 282.777344 322.347656 281.15625 C 322.347656 279.535156 324.777344 279.535156 324.777344 281.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.1875 151.445312 C 243.1875 153.066406 240.753906 153.066406 240.753906 151.445312 C 240.753906 149.824219 243.1875 149.824219 243.1875 151.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.214844 141.199219 C 280.214844 142.820312 277.785156 142.820312 277.785156 141.199219 C 277.785156 139.582031 280.214844 139.582031 280.214844 141.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.519531 301.550781 C 190.519531 303.171875 188.089844 303.171875 188.089844 301.550781 C 188.089844 299.929688 190.519531 299.929688 190.519531 301.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.800781 347.191406 C 259.800781 348.808594 257.371094 348.808594 257.371094 347.191406 C 257.371094 345.570312 259.800781 345.570312 259.800781 347.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.484375 418.691406 L 300.121094 415.855469 L 296.847656 415.855469 Z M 298.484375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.839844 245.429688 C 249.839844 247.050781 247.410156 247.050781 247.410156 245.429688 C 247.410156 243.808594 249.839844 243.808594 249.839844 245.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.65625 161.625 C 239.65625 163.242188 237.226562 163.242188 237.226562 161.625 C 237.226562 160.003906 239.65625 160.003906 239.65625 161.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.753906 290.058594 C 203.753906 291.679688 201.324219 291.679688 201.324219 290.058594 C 201.324219 288.441406 203.753906 288.441406 203.753906 290.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.738281 311.007812 C 316.738281 312.628906 314.308594 312.628906 314.308594 311.007812 C 314.308594 309.390625 316.738281 309.390625 316.738281 311.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.507812 70.910156 L 183.144531 73.746094 L 179.871094 73.746094 Z M 181.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.238281 266.664062 C 291.238281 268.285156 288.808594 268.285156 288.808594 266.664062 C 288.808594 265.046875 291.238281 265.046875 291.238281 266.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.445312 288.503906 C 327.445312 290.125 325.015625 290.125 325.015625 288.503906 C 325.015625 286.882812 327.445312 286.882812 327.445312 288.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.570312 203.472656 C 313.570312 205.09375 311.140625 205.09375 311.140625 203.472656 C 311.140625 201.855469 313.570312 201.855469 313.570312 203.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.109375 218.15625 C 242.109375 219.777344 239.679688 219.777344 239.679688 218.15625 C 239.679688 216.535156 242.109375 216.535156 242.109375 218.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.015625 308.542969 C 162.015625 310.164062 159.585938 310.164062 159.585938 308.542969 C 159.585938 306.925781 162.015625 306.925781 162.015625 308.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.835938 197.8125 C 199.835938 199.433594 197.40625 199.433594 197.40625 197.8125 C 197.40625 196.195312 199.835938 196.195312 199.835938 197.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.046875 109.308594 C 225.046875 110.929688 222.617188 110.929688 222.617188 109.308594 C 222.617188 107.691406 225.046875 107.691406 225.046875 109.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.234375 111.082031 C 196.234375 112.703125 193.804688 112.703125 193.804688 111.082031 C 193.804688 109.460938 196.234375 109.460938 196.234375 111.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.253906 287.636719 C 256.253906 289.257812 253.824219 289.257812 253.824219 287.636719 C 253.824219 286.015625 256.253906 286.015625 256.253906 287.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.410156 203.585938 C 243.410156 205.207031 240.976562 205.207031 240.976562 203.585938 C 240.976562 201.964844 243.410156 201.964844 243.410156 203.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.304688 125.449219 C 245.304688 127.070312 242.875 127.070312 242.875 125.449219 C 242.875 123.828125 245.304688 123.828125 245.304688 125.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.125 264.101562 C 270.125 265.71875 267.695312 265.71875 267.695312 264.101562 C 267.695312 262.480469 270.125 262.480469 270.125 264.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.609375 138.203125 C 267.609375 139.824219 265.179688 139.824219 265.179688 138.203125 C 265.179688 136.582031 267.609375 136.582031 267.609375 138.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.394531 120.617188 C 341.394531 122.238281 338.964844 122.238281 338.964844 120.617188 C 338.964844 119 341.394531 119 341.394531 120.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.777344 274.90625 C 300.777344 276.523438 298.347656 276.523438 298.347656 274.90625 C 298.347656 273.285156 300.777344 273.285156 300.777344 274.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.613281 145.613281 C 272.613281 147.234375 270.183594 147.234375 270.183594 145.613281 C 270.183594 143.992188 272.613281 143.992188 272.613281 145.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.105469 346.21875 C 295.105469 347.839844 292.675781 347.839844 292.675781 346.21875 C 292.675781 344.601562 295.105469 344.601562 295.105469 346.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.628906 216.078125 C 263.628906 217.699219 261.199219 217.699219 261.199219 216.078125 C 261.199219 214.457031 263.628906 214.457031 263.628906 216.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.042969 142.433594 C 244.042969 144.050781 241.613281 144.050781 241.613281 142.433594 C 241.613281 140.8125 244.042969 140.8125 244.042969 142.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.472656 123.171875 C 232.472656 124.789062 230.042969 124.789062 230.042969 123.171875 C 230.042969 121.550781 232.472656 121.550781 232.472656 123.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.199219 277.785156 C 301.199219 279.40625 298.769531 279.40625 298.769531 277.785156 C 298.769531 276.164062 301.199219 276.164062 301.199219 277.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.09375 347.863281 C 293.09375 349.484375 290.664062 349.484375 290.664062 347.863281 C 290.664062 346.246094 293.09375 346.246094 293.09375 347.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.515625 329.234375 C 246.515625 330.855469 244.082031 330.855469 244.082031 329.234375 C 244.082031 327.613281 246.515625 327.613281 246.515625 329.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.988281 216.679688 C 259.988281 218.296875 257.558594 218.296875 257.558594 216.679688 C 257.558594 215.058594 259.988281 215.058594 259.988281 216.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.121094 70.910156 L 122.757812 73.746094 L 119.484375 73.746094 Z M 121.121094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.355469 288.527344 C 204.355469 290.148438 201.925781 290.148438 201.925781 288.527344 C 201.925781 286.90625 204.355469 286.90625 204.355469 288.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.769531 269.921875 C 190.769531 271.542969 188.339844 271.542969 188.339844 269.921875 C 188.339844 268.300781 190.769531 268.300781 190.769531 269.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.648438 216.878906 C 243.648438 218.496094 241.21875 218.496094 241.21875 216.878906 C 241.21875 215.257812 243.648438 215.257812 243.648438 216.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.140625 239.863281 C 254.140625 241.484375 251.710938 241.484375 251.710938 239.863281 C 251.710938 238.242188 254.140625 238.242188 254.140625 239.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.632812 242.453125 C 305.632812 244.074219 303.203125 244.074219 303.203125 242.453125 C 303.203125 240.832031 305.632812 240.832031 305.632812 242.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.472656 242.761719 C 185.472656 244.382812 183.042969 244.382812 183.042969 242.761719 C 183.042969 241.144531 185.472656 241.144531 185.472656 242.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.050781 197.871094 C 235.050781 199.492188 232.621094 199.492188 232.621094 197.871094 C 232.621094 196.25 235.050781 196.25 235.050781 197.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.398438 186.664062 C 232.398438 188.285156 229.96875 188.285156 229.96875 186.664062 C 229.96875 185.046875 232.398438 185.046875 232.398438 186.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.195312 278.097656 C 305.195312 279.71875 302.761719 279.71875 302.761719 278.097656 C 302.761719 276.480469 305.195312 276.480469 305.195312 278.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.960938 174.601562 C 276.960938 176.21875 274.53125 176.21875 274.53125 174.601562 C 274.53125 172.980469 276.960938 172.980469 276.960938 174.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.980469 189.246094 C 291.980469 190.867188 289.550781 190.867188 289.550781 189.246094 C 289.550781 187.625 291.980469 187.625 291.980469 189.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.023438 195.636719 C 126.023438 197.257812 123.59375 197.257812 123.59375 195.636719 C 123.59375 194.015625 126.023438 194.015625 126.023438 195.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.152344 278.027344 C 302.152344 279.648438 299.722656 279.648438 299.722656 278.027344 C 299.722656 276.40625 302.152344 276.40625 302.152344 278.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.246094 295.957031 C 305.246094 297.574219 302.816406 297.574219 302.816406 295.957031 C 302.816406 294.335938 305.246094 294.335938 305.246094 295.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.289062 294.90625 C 292.289062 296.523438 289.855469 296.523438 289.855469 294.90625 C 289.855469 293.285156 292.289062 293.285156 292.289062 294.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.902344 295.148438 C 288.902344 296.765625 286.472656 296.765625 286.472656 295.148438 C 286.472656 293.527344 288.902344 293.527344 288.902344 295.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.207031 217.777344 C 277.207031 219.398438 274.777344 219.398438 274.777344 217.777344 C 274.777344 216.15625 277.207031 216.15625 277.207031 217.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.042969 278.6875 C 240.042969 280.304688 237.613281 280.304688 237.613281 278.6875 C 237.613281 277.066406 240.042969 277.066406 240.042969 278.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.496094 278.082031 C 264.496094 279.703125 262.066406 279.703125 262.066406 278.082031 C 262.066406 276.460938 264.496094 276.460938 264.496094 278.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.992188 334.316406 C 213.992188 335.9375 211.5625 335.9375 211.5625 334.316406 C 211.5625 332.699219 213.992188 332.699219 213.992188 334.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.597656 292.320312 C 240.597656 293.941406 238.167969 293.941406 238.167969 292.320312 C 238.167969 290.699219 240.597656 290.699219 240.597656 292.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.5625 280.742188 C 280.5625 282.359375 278.128906 282.359375 278.128906 280.742188 C 278.128906 279.121094 280.5625 279.121094 280.5625 280.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.367188 265.386719 C 263.367188 267.007812 260.9375 267.007812 260.9375 265.386719 C 260.9375 263.769531 263.367188 263.769531 263.367188 265.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.035156 162.039062 C 254.035156 163.660156 251.605469 163.660156 251.605469 162.039062 C 251.605469 160.417969 254.035156 160.417969 254.035156 162.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.957031 246.199219 C 267.957031 247.820312 265.527344 247.820312 265.527344 246.199219 C 265.527344 244.578125 267.957031 244.578125 267.957031 246.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.101562 267.070312 C 217.101562 268.691406 214.671875 268.691406 214.671875 267.070312 C 214.671875 265.453125 217.101562 265.453125 217.101562 267.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.558594 289.539062 C 254.558594 291.160156 252.128906 291.160156 252.128906 289.539062 C 252.128906 287.921875 254.558594 287.921875 254.558594 289.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.097656 291.847656 C 254.097656 293.46875 251.667969 293.46875 251.667969 291.847656 C 251.667969 290.226562 254.097656 290.226562 254.097656 291.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.296875 312.644531 C 268.296875 314.261719 265.867188 314.261719 265.867188 312.644531 C 265.867188 311.023438 268.296875 311.023438 268.296875 312.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.804688 268.269531 C 249.804688 269.890625 247.375 269.890625 247.375 268.269531 C 247.375 266.652344 249.804688 266.652344 249.804688 268.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.425781 285.996094 C 284.425781 287.613281 281.996094 287.613281 281.996094 285.996094 C 281.996094 284.375 284.425781 284.375 284.425781 285.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.621094 175.785156 C 290.621094 177.40625 288.191406 177.40625 288.191406 175.785156 C 288.191406 174.167969 290.621094 174.167969 290.621094 175.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.605469 192.949219 C 228.605469 194.570312 226.175781 194.570312 226.175781 192.949219 C 226.175781 191.328125 228.605469 191.328125 228.605469 192.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.339844 418.691406 L 191.976562 415.855469 L 188.703125 415.855469 Z M 190.339844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.417969 209.359375 C 213.417969 210.976562 210.988281 210.976562 210.988281 209.359375 C 210.988281 207.738281 213.417969 207.738281 213.417969 209.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.464844 211.542969 C 203.464844 213.164062 201.035156 213.164062 201.035156 211.542969 C 201.035156 209.925781 203.464844 209.925781 203.464844 211.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.167969 296.5625 C 306.167969 298.183594 303.738281 298.183594 303.738281 296.5625 C 303.738281 294.945312 306.167969 294.945312 306.167969 296.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.261719 283.574219 C 278.261719 285.195312 275.832031 285.195312 275.832031 283.574219 C 275.832031 281.953125 278.261719 281.953125 278.261719 283.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.113281 70.910156 L 166.75 73.746094 L 163.476562 73.746094 Z M 165.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.269531 266.371094 C 251.269531 267.992188 248.839844 267.992188 248.839844 266.371094 C 248.839844 264.753906 251.269531 264.753906 251.269531 266.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.113281 285.253906 C 224.113281 286.875 221.683594 286.875 221.683594 285.253906 C 221.683594 283.632812 224.113281 283.632812 224.113281 285.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.546875 152.660156 C 131.546875 154.28125 129.117188 154.28125 129.117188 152.660156 C 129.117188 151.039062 131.546875 151.039062 131.546875 152.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.058594 179.890625 C 250.058594 181.511719 247.628906 181.511719 247.628906 179.890625 C 247.628906 178.269531 250.058594 178.269531 250.058594 179.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.777344 195.296875 C 280.777344 196.914062 278.347656 196.914062 278.347656 195.296875 C 278.347656 193.675781 280.777344 193.675781 280.777344 195.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.019531 262.226562 C 289.019531 263.84375 286.585938 263.84375 286.585938 262.226562 C 286.585938 260.605469 289.019531 260.605469 289.019531 262.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.777344 215.46875 C 176.777344 217.089844 174.347656 217.089844 174.347656 215.46875 C 174.347656 213.847656 176.777344 213.847656 176.777344 215.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.492188 223.023438 C 248.492188 224.644531 246.058594 224.644531 246.058594 223.023438 C 246.058594 221.402344 248.492188 221.402344 248.492188 223.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.855469 298.921875 C 273.855469 300.542969 271.425781 300.542969 271.425781 298.921875 C 271.425781 297.304688 273.855469 297.304688 273.855469 298.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.769531 166.476562 C 308.769531 168.097656 306.339844 168.097656 306.339844 166.476562 C 306.339844 164.855469 308.769531 164.855469 308.769531 166.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.417969 162.1875 C 129.417969 163.808594 126.984375 163.808594 126.984375 162.1875 C 126.984375 160.566406 129.417969 160.566406 129.417969 162.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.507812 159.496094 C 194.507812 161.113281 192.078125 161.113281 192.078125 159.496094 C 192.078125 157.875 194.507812 157.875 194.507812 159.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.078125 194.863281 C 230.078125 196.480469 227.648438 196.480469 227.648438 194.863281 C 227.648438 193.242188 230.078125 193.242188 230.078125 194.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.699219 233.589844 C 271.699219 235.207031 269.269531 235.207031 269.269531 233.589844 C 269.269531 231.96875 271.699219 231.96875 271.699219 233.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.070312 265.34375 C 213.070312 266.964844 210.640625 266.964844 210.640625 265.34375 C 210.640625 263.726562 213.070312 263.726562 213.070312 265.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.972656 254.820312 C 275.972656 256.441406 273.542969 256.441406 273.542969 254.820312 C 273.542969 253.203125 275.972656 253.203125 275.972656 254.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.027344 70.910156 L 174.664062 73.746094 L 171.390625 73.746094 Z M 173.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.097656 269.316406 C 273.097656 270.9375 270.664062 270.9375 270.664062 269.316406 C 270.664062 267.695312 273.097656 267.695312 273.097656 269.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.613281 218.96875 C 207.613281 220.585938 205.183594 220.585938 205.183594 218.96875 C 205.183594 217.347656 207.613281 217.347656 207.613281 218.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.816406 243.355469 C 244.816406 244.972656 242.386719 244.972656 242.386719 243.355469 C 242.386719 241.734375 244.816406 241.734375 244.816406 243.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.101562 194.707031 C 285.101562 196.328125 282.671875 196.328125 282.671875 194.707031 C 282.671875 193.085938 285.101562 193.085938 285.101562 194.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.957031 237.113281 C 172.957031 238.734375 170.527344 238.734375 170.527344 237.113281 C 170.527344 235.492188 172.957031 235.492188 172.957031 237.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.792969 262.003906 C 257.792969 263.621094 255.363281 263.621094 255.363281 262.003906 C 255.363281 260.382812 257.792969 260.382812 257.792969 262.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.664062 271.585938 C 269.664062 273.207031 267.234375 273.207031 267.234375 271.585938 C 267.234375 269.964844 269.664062 269.964844 269.664062 271.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.457031 256.394531 C 302.457031 258.015625 300.023438 258.015625 300.023438 256.394531 C 300.023438 254.773438 302.457031 254.773438 302.457031 256.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.570312 247.886719 C 285.570312 249.507812 283.140625 249.507812 283.140625 247.886719 C 283.140625 246.265625 285.570312 246.265625 285.570312 247.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.621094 263.941406 C 254.621094 265.5625 252.191406 265.5625 252.191406 263.941406 C 252.191406 262.324219 254.621094 262.324219 254.621094 263.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.214844 284.476562 C 271.214844 286.09375 268.785156 286.09375 268.785156 284.476562 C 268.785156 282.855469 271.214844 282.855469 271.214844 284.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.273438 289.578125 C 302.273438 291.195312 299.84375 291.195312 299.84375 289.578125 C 299.84375 287.957031 302.273438 287.957031 302.273438 289.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.695312 253.808594 C 281.695312 255.425781 279.265625 255.425781 279.265625 253.808594 C 279.265625 252.1875 281.695312 252.1875 281.695312 253.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.09375 238.449219 C 271.09375 240.070312 268.660156 240.070312 268.660156 238.449219 C 268.660156 236.828125 271.09375 236.828125 271.09375 238.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.839844 149.359375 C 247.839844 150.980469 245.410156 150.980469 245.410156 149.359375 C 245.410156 147.742188 247.839844 147.742188 247.839844 149.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.765625 314.238281 C 198.765625 315.859375 196.335938 315.859375 196.335938 314.238281 C 196.335938 312.617188 198.765625 312.617188 198.765625 314.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.546875 258.5 C 252.546875 260.121094 250.117188 260.121094 250.117188 258.5 C 250.117188 256.878906 252.546875 256.878906 252.546875 258.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.277344 77.15625 C 194.277344 78.777344 191.847656 78.777344 191.847656 77.15625 C 191.847656 75.535156 194.277344 75.535156 194.277344 77.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.105469 70.910156 L 255.742188 73.746094 L 252.46875 73.746094 Z M 254.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.929688 263.570312 C 212.929688 265.191406 210.5 265.191406 210.5 263.570312 C 210.5 261.953125 212.929688 261.953125 212.929688 263.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.78125 249.371094 C 232.78125 250.992188 230.351562 250.992188 230.351562 249.371094 C 230.351562 247.753906 232.78125 247.753906 232.78125 249.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.375 325.046875 C 286.375 326.664062 283.945312 326.664062 283.945312 325.046875 C 283.945312 323.425781 286.375 323.425781 286.375 325.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.480469 294.101562 C 275.480469 295.722656 273.050781 295.722656 273.050781 294.101562 C 273.050781 292.480469 275.480469 292.480469 275.480469 294.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.175781 219.332031 C 160.175781 220.953125 157.742188 220.953125 157.742188 219.332031 C 157.742188 217.714844 160.175781 217.714844 160.175781 219.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.101562 278.039062 C 277.101562 279.660156 274.671875 279.660156 274.671875 278.039062 C 274.671875 276.421875 277.101562 276.421875 277.101562 278.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.035156 70.910156 L 196.671875 73.746094 L 193.398438 73.746094 Z M 195.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.21875 163.816406 C 128.21875 165.4375 125.789062 165.4375 125.789062 163.816406 C 125.789062 162.199219 128.21875 162.199219 128.21875 163.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.425781 326.285156 C 281.425781 327.90625 278.996094 327.90625 278.996094 326.285156 C 278.996094 324.664062 281.425781 324.664062 281.425781 326.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.21875 313.28125 C 299.21875 314.902344 296.789062 314.902344 296.789062 313.28125 C 296.789062 311.664062 299.21875 311.664062 299.21875 313.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.757812 245.601562 C 289.757812 247.222656 287.328125 247.222656 287.328125 245.601562 C 287.328125 243.980469 289.757812 243.980469 289.757812 245.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.640625 257.464844 C 270.640625 259.085938 268.210938 259.085938 268.210938 257.464844 C 268.210938 255.84375 270.640625 255.84375 270.640625 257.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.246094 331.410156 C 250.246094 333.03125 247.8125 333.03125 247.8125 331.410156 C 247.8125 329.789062 250.246094 329.789062 250.246094 331.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.351562 301.519531 C 276.351562 303.140625 273.921875 303.140625 273.921875 301.519531 C 273.921875 299.898438 276.351562 299.898438 276.351562 301.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.050781 70.910156 L 147.6875 73.746094 L 144.414062 73.746094 Z M 146.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.601562 272.28125 C 151.601562 273.902344 149.171875 273.902344 149.171875 272.28125 C 149.171875 270.664062 151.601562 270.664062 151.601562 272.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.617188 153.074219 C 237.617188 154.695312 235.1875 154.695312 235.1875 153.074219 C 235.1875 151.453125 237.617188 151.453125 237.617188 153.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.855469 123.417969 C 280.855469 125.039062 278.425781 125.039062 278.425781 123.417969 C 278.425781 121.796875 280.855469 121.796875 280.855469 123.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.5 418.691406 L 139.136719 415.855469 L 135.863281 415.855469 Z M 137.5 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.597656 256.707031 C 265.597656 258.328125 263.167969 258.328125 263.167969 256.707031 C 263.167969 255.089844 265.597656 255.089844 265.597656 256.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.777344 283.515625 C 283.777344 285.136719 281.347656 285.136719 281.347656 283.515625 C 281.347656 281.898438 283.777344 281.898438 283.777344 283.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.488281 418.691406 L 146.125 415.855469 L 142.851562 415.855469 Z M 144.488281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.113281 255.148438 C 264.113281 256.769531 261.683594 256.769531 261.683594 255.148438 C 261.683594 253.53125 264.113281 253.53125 264.113281 255.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.542969 316.027344 C 281.542969 317.648438 279.113281 317.648438 279.113281 316.027344 C 279.113281 314.410156 281.542969 314.410156 281.542969 316.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.917969 212.003906 C 292.917969 213.625 290.484375 213.625 290.484375 212.003906 C 290.484375 210.382812 292.917969 210.382812 292.917969 212.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.882812 238.71875 C 272.882812 240.339844 270.453125 240.339844 270.453125 238.71875 C 270.453125 237.101562 272.882812 237.101562 272.882812 238.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.40625 249.46875 C 304.40625 251.089844 301.972656 251.089844 301.972656 249.46875 C 301.972656 247.851562 304.40625 247.851562 304.40625 249.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.332031 345.980469 C 246.332031 347.597656 243.902344 347.597656 243.902344 345.980469 C 243.902344 344.359375 246.332031 344.359375 246.332031 345.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.042969 159.171875 C 256.042969 160.792969 253.613281 160.792969 253.613281 159.171875 C 253.613281 157.550781 256.042969 157.550781 256.042969 159.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.691406 92.066406 C 306.691406 93.6875 304.261719 93.6875 304.261719 92.066406 C 304.261719 90.449219 306.691406 90.449219 306.691406 92.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.90625 195.902344 C 162.90625 197.523438 160.476562 197.523438 160.476562 195.902344 C 160.476562 194.285156 162.90625 194.285156 162.90625 195.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.578125 260.269531 C 309.578125 261.890625 307.148438 261.890625 307.148438 260.269531 C 307.148438 258.648438 309.578125 258.648438 309.578125 260.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.867188 256.234375 C 285.867188 257.855469 283.4375 257.855469 283.4375 256.234375 C 283.4375 254.617188 285.867188 254.617188 285.867188 256.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.363281 109.273438 C 275.363281 110.894531 272.933594 110.894531 272.933594 109.273438 C 272.933594 107.65625 275.363281 107.65625 275.363281 109.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.9375 189.660156 C 288.9375 191.28125 286.507812 191.28125 286.507812 189.660156 C 286.507812 188.042969 288.9375 188.042969 288.9375 189.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.476562 291.550781 C 253.476562 293.171875 251.046875 293.171875 251.046875 291.550781 C 251.046875 289.933594 253.476562 289.933594 253.476562 291.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.332031 249.097656 C 246.332031 250.71875 243.898438 250.71875 243.898438 249.097656 C 243.898438 247.480469 246.332031 247.480469 246.332031 249.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.796875 222.988281 C 262.796875 224.609375 260.367188 224.609375 260.367188 222.988281 C 260.367188 221.371094 262.796875 221.371094 262.796875 222.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.238281 254.164062 C 262.238281 255.785156 259.804688 255.785156 259.804688 254.164062 C 259.804688 252.542969 262.238281 252.542969 262.238281 254.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.082031 266.636719 C 306.082031 268.253906 303.652344 268.253906 303.652344 266.636719 C 303.652344 265.015625 306.082031 265.015625 306.082031 266.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.707031 418.691406 L 305.339844 415.855469 L 302.070312 415.855469 Z M 303.707031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.488281 310.5625 C 260.488281 312.183594 258.058594 312.183594 258.058594 310.5625 C 258.058594 308.941406 260.488281 308.941406 260.488281 310.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.804688 263.402344 C 337.804688 265.019531 335.375 265.019531 335.375 263.402344 C 335.375 261.78125 337.804688 261.78125 337.804688 263.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 379.519531 295.253906 C 379.519531 296.875 377.089844 296.875 377.089844 295.253906 C 377.089844 293.632812 379.519531 293.632812 379.519531 295.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.191406 280.230469 C 268.191406 281.851562 265.761719 281.851562 265.761719 280.230469 C 265.761719 278.609375 268.191406 278.609375 268.191406 280.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.179688 244.621094 C 160.179688 246.242188 157.75 246.242188 157.75 244.621094 C 157.75 243 160.179688 243 160.179688 244.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.933594 70.910156 L 134.570312 73.746094 L 131.300781 73.746094 Z M 132.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.765625 266.96875 C 244.765625 268.589844 242.335938 268.589844 242.335938 266.96875 C 242.335938 265.347656 244.765625 265.347656 244.765625 266.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.453125 196.265625 C 273.453125 197.882812 271.019531 197.882812 271.019531 196.265625 C 271.019531 194.644531 273.453125 194.644531 273.453125 196.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.59375 70.910156 L 311.230469 73.746094 L 307.960938 73.746094 Z M 309.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.632812 215.722656 C 202.632812 217.34375 200.203125 217.34375 200.203125 215.722656 C 200.203125 214.101562 202.632812 214.101562 202.632812 215.722656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.230469 418.691406 L 130.867188 415.855469 L 127.59375 415.855469 Z M 129.230469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.367188 202.015625 C 332.367188 203.636719 329.933594 203.636719 329.933594 202.015625 C 329.933594 200.394531 332.367188 200.394531 332.367188 202.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.636719 142.246094 C 203.636719 143.863281 201.207031 143.863281 201.207031 142.246094 C 201.207031 140.625 203.636719 140.625 203.636719 142.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.488281 308.289062 C 273.488281 309.90625 271.058594 309.90625 271.058594 308.289062 C 271.058594 306.667969 273.488281 306.667969 273.488281 308.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.148438 290.519531 C 335.148438 292.136719 332.71875 292.136719 332.71875 290.519531 C 332.71875 288.898438 335.148438 288.898438 335.148438 290.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.433594 316.070312 C 309.433594 317.6875 307.003906 317.6875 307.003906 316.070312 C 307.003906 314.449219 309.433594 314.449219 309.433594 316.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.875 418.691406 L 357.511719 415.855469 L 354.242188 415.855469 Z M 355.875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.917969 70.910156 L 250.554688 73.746094 L 247.28125 73.746094 Z M 248.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.558594 70.910156 L 226.195312 73.746094 L 222.921875 73.746094 Z M 224.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.128906 301.648438 C 232.128906 303.269531 229.695312 303.269531 229.695312 301.648438 C 229.695312 300.03125 232.128906 300.03125 232.128906 301.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.667969 70.910156 L 229.304688 73.746094 L 226.03125 73.746094 Z M 227.667969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.621094 70.910156 L 280.257812 73.746094 L 276.984375 73.746094 Z M 278.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.136719 70.910156 L 193.769531 73.746094 L 190.5 73.746094 Z M 192.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.691406 300.136719 C 311.691406 301.757812 309.261719 301.757812 309.261719 300.136719 C 309.261719 298.515625 311.691406 298.515625 311.691406 300.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.242188 245.875 C 275.242188 247.492188 272.8125 247.492188 272.8125 245.875 C 272.8125 244.253906 275.242188 244.253906 275.242188 245.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.390625 70.910156 L 155.027344 73.746094 L 151.753906 73.746094 Z M 153.390625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.628906 70.910156 L 227.265625 73.746094 L 223.992188 73.746094 Z M 225.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.53125 266.324219 C 248.53125 267.941406 246.097656 267.941406 246.097656 266.324219 C 246.097656 264.703125 248.53125 264.703125 248.53125 266.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.929688 260.109375 C 192.929688 261.730469 190.5 261.730469 190.5 260.109375 C 190.5 258.492188 192.929688 258.492188 192.929688 260.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.332031 265.625 C 195.332031 267.242188 192.902344 267.242188 192.902344 265.625 C 192.902344 264.003906 195.332031 264.003906 195.332031 265.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.96875 210.003906 C 271.96875 211.625 269.539062 211.625 269.539062 210.003906 C 269.539062 208.382812 271.96875 208.382812 271.96875 210.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.53125 278.515625 C 274.53125 280.136719 272.101562 280.136719 272.101562 278.515625 C 272.101562 276.898438 274.53125 276.898438 274.53125 278.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.855469 418.691406 L 140.492188 415.855469 L 137.21875 415.855469 Z M 138.855469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.382812 206.214844 C 252.382812 207.835938 249.953125 207.835938 249.953125 206.214844 C 249.953125 204.59375 252.382812 204.59375 252.382812 206.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.1875 70.910156 L 328.824219 73.746094 L 325.550781 73.746094 Z M 327.1875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 328.570312 70.910156 L 330.207031 73.746094 L 326.933594 73.746094 Z M 328.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.976562 238.328125 C 231.976562 239.945312 229.546875 239.945312 229.546875 238.328125 C 229.546875 236.707031 231.976562 236.707031 231.976562 238.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.335938 70.910156 L 171.972656 73.746094 L 168.699219 73.746094 Z M 170.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.09375 245.8125 C 211.09375 247.429688 208.664062 247.429688 208.664062 245.8125 C 208.664062 244.191406 211.09375 244.191406 211.09375 245.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.464844 277.511719 C 286.464844 279.132812 284.035156 279.132812 284.035156 277.511719 C 284.035156 275.894531 286.464844 275.894531 286.464844 277.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.097656 384.648438 C 247.097656 386.265625 244.667969 386.265625 244.667969 384.648438 C 244.667969 383.027344 247.097656 383.027344 247.097656 384.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.246094 418.691406 L 225.882812 415.855469 L 222.609375 415.855469 Z M 224.246094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.792969 267.527344 C 285.792969 269.148438 283.363281 269.148438 283.363281 267.527344 C 283.363281 265.90625 285.792969 265.90625 285.792969 267.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.226562 216.507812 C 287.226562 218.128906 284.796875 218.128906 284.796875 216.507812 C 284.796875 214.886719 287.226562 214.886719 287.226562 216.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.933594 70.910156 L 225.570312 73.746094 L 222.296875 73.746094 Z M 223.933594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.285156 70.910156 L 211.917969 73.746094 L 208.648438 73.746094 Z M 210.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.355469 226.996094 C 279.355469 228.617188 276.925781 228.617188 276.925781 226.996094 C 276.925781 225.375 279.355469 225.375 279.355469 226.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.636719 222.265625 C 207.636719 223.886719 205.207031 223.886719 205.207031 222.265625 C 205.207031 220.648438 207.636719 220.648438 207.636719 222.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.660156 264.851562 C 231.660156 266.472656 229.230469 266.472656 229.230469 264.851562 C 229.230469 263.230469 231.660156 263.230469 231.660156 264.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.507812 221.023438 C 258.507812 222.640625 256.078125 222.640625 256.078125 221.023438 C 256.078125 219.402344 258.507812 219.402344 258.507812 221.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.832031 222.355469 C 307.832031 223.972656 305.402344 223.972656 305.402344 222.355469 C 305.402344 220.734375 307.832031 220.734375 307.832031 222.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.421875 266.859375 C 269.421875 268.480469 266.992188 268.480469 266.992188 266.859375 C 266.992188 265.242188 269.421875 265.242188 269.421875 266.859375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.964844 70.910156 L 190.601562 73.746094 L 187.332031 73.746094 Z M 188.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.589844 70.910156 L 244.226562 73.746094 L 240.953125 73.746094 Z M 242.589844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.546875 70.910156 L 223.183594 73.746094 L 219.910156 73.746094 Z M 221.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.703125 195.199219 C 184.703125 196.820312 182.273438 196.820312 182.273438 195.199219 C 182.273438 193.582031 184.703125 193.582031 184.703125 195.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.867188 244.113281 C 287.867188 245.734375 285.4375 245.734375 285.4375 244.113281 C 285.4375 242.492188 287.867188 242.492188 287.867188 244.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.011719 205.949219 C 300.011719 207.566406 297.582031 207.566406 297.582031 205.949219 C 297.582031 204.328125 300.011719 204.328125 300.011719 205.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.332031 239.246094 C 294.332031 240.867188 291.902344 240.867188 291.902344 239.246094 C 291.902344 237.625 294.332031 237.625 294.332031 239.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.359375 97.054688 C 201.359375 98.671875 198.929688 98.671875 198.929688 97.054688 C 198.929688 95.433594 201.359375 95.433594 201.359375 97.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.25 236.40625 C 274.25 238.027344 271.816406 238.027344 271.816406 236.40625 C 271.816406 234.785156 274.25 234.785156 274.25 236.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.328125 266.074219 C 250.328125 267.695312 247.898438 267.695312 247.898438 266.074219 C 247.898438 264.457031 250.328125 264.457031 250.328125 266.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.15625 266.574219 C 210.15625 268.195312 207.726562 268.195312 207.726562 266.574219 C 207.726562 264.957031 210.15625 264.957031 210.15625 266.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.921875 185.421875 C 231.921875 187.042969 229.492188 187.042969 229.492188 185.421875 C 229.492188 183.804688 231.921875 183.804688 231.921875 185.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.269531 256.820312 C 237.269531 258.4375 234.839844 258.4375 234.839844 256.820312 C 234.839844 255.199219 237.269531 255.199219 237.269531 256.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.386719 383.359375 C 287.386719 384.980469 284.953125 384.980469 284.953125 383.359375 C 284.953125 381.742188 287.386719 381.742188 287.386719 383.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.414062 194.25 C 223.414062 195.871094 220.984375 195.871094 220.984375 194.25 C 220.984375 192.628906 223.414062 192.628906 223.414062 194.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.441406 163.992188 C 249.441406 165.613281 247.011719 165.613281 247.011719 163.992188 C 247.011719 162.375 249.441406 162.375 249.441406 163.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.449219 196.296875 C 186.449219 197.917969 184.019531 197.917969 184.019531 196.296875 C 184.019531 194.679688 186.449219 194.679688 186.449219 196.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.851562 294.441406 C 283.851562 296.0625 281.421875 296.0625 281.421875 294.441406 C 281.421875 292.820312 283.851562 292.820312 283.851562 294.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.203125 418.691406 L 356.839844 415.855469 L 353.566406 415.855469 Z M 355.203125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.71875 418.691406 L 156.355469 415.855469 L 153.082031 415.855469 Z M 154.71875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.238281 418.691406 L 251.875 415.855469 L 248.601562 415.855469 Z M 250.238281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.429688 70.910156 L 175.066406 73.746094 L 171.792969 73.746094 Z M 173.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.851562 241.996094 C 281.851562 243.613281 279.421875 243.613281 279.421875 241.996094 C 279.421875 240.375 281.851562 240.375 281.851562 241.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.808594 217.265625 C 282.808594 218.886719 280.378906 218.886719 280.378906 217.265625 C 280.378906 215.644531 282.808594 215.644531 282.808594 217.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.257812 209.390625 C 268.257812 211.011719 265.828125 211.011719 265.828125 209.390625 C 265.828125 207.773438 268.257812 207.773438 268.257812 209.390625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.875 418.691406 L 159.511719 415.855469 L 156.238281 415.855469 Z M 157.875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.21875 140.9375 C 302.21875 142.554688 299.789062 142.554688 299.789062 140.9375 C 299.789062 139.316406 302.21875 139.316406 302.21875 140.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.859375 70.910156 L 196.496094 73.746094 L 193.222656 73.746094 Z M 194.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.960938 161.488281 C 154.960938 163.109375 152.53125 163.109375 152.53125 161.488281 C 152.53125 159.871094 154.960938 159.871094 154.960938 161.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.621094 274.085938 C 222.621094 275.707031 220.191406 275.707031 220.191406 274.085938 C 220.191406 272.46875 222.621094 272.46875 222.621094 274.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.289062 246.277344 C 261.289062 247.898438 258.855469 247.898438 258.855469 246.277344 C 258.855469 244.660156 261.289062 244.660156 261.289062 246.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.40625 162.335938 C 252.40625 163.957031 249.976562 163.957031 249.976562 162.335938 C 249.976562 160.71875 252.40625 160.71875 252.40625 162.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.578125 418.691406 L 358.214844 415.855469 L 354.941406 415.855469 Z M 356.578125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.242188 285.121094 C 201.242188 286.742188 198.8125 286.742188 198.8125 285.121094 C 198.8125 283.5 201.242188 283.5 201.242188 285.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.652344 335.394531 C 306.652344 337.015625 304.222656 337.015625 304.222656 335.394531 C 304.222656 333.773438 306.652344 333.773438 306.652344 335.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.261719 371.609375 C 232.261719 373.230469 229.832031 373.230469 229.832031 371.609375 C 229.832031 369.992188 232.261719 369.992188 232.261719 371.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.621094 215.441406 C 289.621094 217.0625 287.191406 217.0625 287.191406 215.441406 C 287.191406 213.824219 289.621094 213.824219 289.621094 215.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.398438 297.015625 C 211.398438 298.636719 208.96875 298.636719 208.96875 297.015625 C 208.96875 295.394531 211.398438 295.394531 211.398438 297.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.152344 173.066406 C 300.152344 174.6875 297.722656 174.6875 297.722656 173.066406 C 297.722656 171.445312 300.152344 171.445312 300.152344 173.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.6875 247.335938 C 303.6875 248.953125 301.257812 248.953125 301.257812 247.335938 C 301.257812 245.714844 303.6875 245.714844 303.6875 247.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.925781 267.894531 C 158.925781 269.515625 156.496094 269.515625 156.496094 267.894531 C 156.496094 266.273438 158.925781 266.273438 158.925781 267.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.589844 418.691406 L 331.222656 415.855469 L 327.953125 415.855469 Z M 329.589844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.527344 294.625 C 269.527344 296.246094 267.097656 296.246094 267.097656 294.625 C 267.097656 293.003906 269.527344 293.003906 269.527344 294.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.257812 255.53125 C 298.257812 257.152344 295.828125 257.152344 295.828125 255.53125 C 295.828125 253.914062 298.257812 253.914062 298.257812 255.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.359375 195.230469 C 172.359375 196.847656 169.929688 196.847656 169.929688 195.230469 C 169.929688 193.609375 172.359375 193.609375 172.359375 195.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.117188 259.902344 C 237.117188 261.519531 234.6875 261.519531 234.6875 259.902344 C 234.6875 258.28125 237.117188 258.28125 237.117188 259.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.070312 282.65625 C 313.070312 284.277344 310.640625 284.277344 310.640625 282.65625 C 310.640625 281.039062 313.070312 281.039062 313.070312 282.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.695312 219.421875 C 267.695312 221.042969 265.261719 221.042969 265.261719 219.421875 C 265.261719 217.800781 267.695312 217.800781 267.695312 219.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.3125 217.667969 C 263.3125 219.289062 260.882812 219.289062 260.882812 217.667969 C 260.882812 216.050781 263.3125 216.050781 263.3125 217.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.402344 299.085938 C 307.402344 300.707031 304.972656 300.707031 304.972656 299.085938 C 304.972656 297.464844 307.402344 297.464844 307.402344 299.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.933594 284.957031 C 268.933594 286.578125 266.503906 286.578125 266.503906 284.957031 C 266.503906 283.335938 268.933594 283.335938 268.933594 284.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.074219 221.46875 C 238.074219 223.089844 235.644531 223.089844 235.644531 221.46875 C 235.644531 219.851562 238.074219 219.851562 238.074219 221.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.257812 237.378906 C 260.257812 239 257.828125 239 257.828125 237.378906 C 257.828125 235.757812 260.257812 235.757812 260.257812 237.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.378906 256.34375 C 267.378906 257.960938 264.949219 257.960938 264.949219 256.34375 C 264.949219 254.722656 267.378906 254.722656 267.378906 256.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.519531 207.328125 C 285.519531 208.945312 283.089844 208.945312 283.089844 207.328125 C 283.089844 205.707031 285.519531 205.707031 285.519531 207.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.316406 70.910156 L 295.949219 73.746094 L 292.679688 73.746094 Z M 294.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.367188 107.304688 C 262.367188 108.925781 259.933594 108.925781 259.933594 107.304688 C 259.933594 105.6875 262.367188 105.6875 262.367188 107.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.027344 119.511719 C 271.027344 121.132812 268.597656 121.132812 268.597656 119.511719 C 268.597656 117.890625 271.027344 117.890625 271.027344 119.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.691406 191.027344 C 308.691406 192.644531 306.261719 192.644531 306.261719 191.027344 C 306.261719 189.40625 308.691406 189.40625 308.691406 191.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.03125 285.382812 C 268.03125 287.003906 265.601562 287.003906 265.601562 285.382812 C 265.601562 283.761719 268.03125 283.761719 268.03125 285.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.847656 246.863281 C 243.847656 248.484375 241.417969 248.484375 241.417969 246.863281 C 241.417969 245.242188 243.847656 245.242188 243.847656 246.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.242188 70.910156 L 320.878906 73.746094 L 317.605469 73.746094 Z M 319.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.351562 330.019531 C 311.351562 331.640625 308.921875 331.640625 308.921875 330.019531 C 308.921875 328.402344 311.351562 328.402344 311.351562 330.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.234375 295.898438 C 316.234375 297.519531 313.804688 297.519531 313.804688 295.898438 C 313.804688 294.277344 316.234375 294.277344 316.234375 295.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.265625 145.808594 C 269.265625 147.429688 266.835938 147.429688 266.835938 145.808594 C 266.835938 144.1875 269.265625 144.1875 269.265625 145.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.390625 245.152344 C 200.390625 246.773438 197.960938 246.773438 197.960938 245.152344 C 197.960938 243.53125 200.390625 243.53125 200.390625 245.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.335938 254.761719 C 241.335938 256.382812 238.90625 256.382812 238.90625 254.761719 C 238.90625 253.140625 241.335938 253.140625 241.335938 254.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.335938 295.539062 C 207.335938 297.15625 204.90625 297.15625 204.90625 295.539062 C 204.90625 293.917969 207.335938 293.917969 207.335938 295.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.691406 279.921875 C 286.691406 281.542969 284.261719 281.542969 284.261719 279.921875 C 284.261719 278.304688 286.691406 278.304688 286.691406 279.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.128906 310.601562 C 300.128906 312.222656 297.699219 312.222656 297.699219 310.601562 C 297.699219 308.984375 300.128906 308.984375 300.128906 310.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.945312 291.128906 C 183.945312 292.746094 181.515625 292.746094 181.515625 291.128906 C 181.515625 289.507812 183.945312 289.507812 183.945312 291.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.511719 70.910156 L 253.148438 73.746094 L 249.875 73.746094 Z M 251.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.089844 78.835938 C 239.089844 80.457031 236.660156 80.457031 236.660156 78.835938 C 236.660156 77.214844 239.089844 77.214844 239.089844 78.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.511719 288.964844 C 326.511719 290.585938 324.082031 290.585938 324.082031 288.964844 C 324.082031 287.347656 326.511719 287.347656 326.511719 288.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.1875 309.855469 C 274.1875 311.476562 271.757812 311.476562 271.757812 309.855469 C 271.757812 308.238281 274.1875 308.238281 274.1875 309.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.035156 251.847656 C 258.035156 253.46875 255.605469 253.46875 255.605469 251.847656 C 255.605469 250.226562 258.035156 250.226562 258.035156 251.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.265625 70.910156 L 213.902344 73.746094 L 210.628906 73.746094 Z M 212.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.1875 244.839844 C 120.1875 246.460938 117.757812 246.460938 117.757812 244.839844 C 117.757812 243.222656 120.1875 243.222656 120.1875 244.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.0625 70.910156 L 159.699219 73.746094 L 156.425781 73.746094 Z M 158.0625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.757812 70.910156 L 261.394531 73.746094 L 258.121094 73.746094 Z M 259.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.082031 242.210938 C 238.082031 243.828125 235.652344 243.828125 235.652344 242.210938 C 235.652344 240.589844 238.082031 240.589844 238.082031 242.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.441406 208.554688 C 290.441406 210.175781 288.011719 210.175781 288.011719 208.554688 C 288.011719 206.9375 290.441406 206.9375 290.441406 208.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.148438 70.910156 L 143.785156 73.746094 L 140.511719 73.746094 Z M 142.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.472656 263.886719 C 233.472656 265.507812 231.042969 265.507812 231.042969 263.886719 C 231.042969 262.269531 233.472656 262.269531 233.472656 263.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.496094 165.207031 C 111.496094 166.828125 109.066406 166.828125 109.066406 165.207031 C 109.066406 163.589844 111.496094 163.589844 111.496094 165.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.441406 418.691406 L 131.078125 415.855469 L 127.804688 415.855469 Z M 129.441406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.710938 70.910156 L 139.347656 73.746094 L 136.074219 73.746094 Z M 137.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.234375 263.058594 C 328.234375 264.675781 325.800781 264.675781 325.800781 263.058594 C 325.800781 261.4375 328.234375 261.4375 328.234375 263.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.207031 280.746094 C 293.207031 282.367188 290.777344 282.367188 290.777344 280.746094 C 290.777344 279.125 293.207031 279.125 293.207031 280.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.699219 134.332031 C 133.699219 135.953125 131.269531 135.953125 131.269531 134.332031 C 131.269531 132.714844 133.699219 132.714844 133.699219 134.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.542969 70.910156 L 188.179688 73.746094 L 184.90625 73.746094 Z M 186.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.324219 246.539062 C 230.324219 248.160156 227.894531 248.160156 227.894531 246.539062 C 227.894531 244.917969 230.324219 244.917969 230.324219 246.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.144531 376.144531 C 277.144531 377.761719 274.714844 377.761719 274.714844 376.144531 C 274.714844 374.523438 277.144531 374.523438 277.144531 376.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.527344 218.742188 C 301.527344 220.359375 299.097656 220.359375 299.097656 218.742188 C 299.097656 217.121094 301.527344 217.121094 301.527344 218.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.085938 389.015625 C 274.085938 390.636719 271.65625 390.636719 271.65625 389.015625 C 271.65625 387.394531 274.085938 387.394531 274.085938 389.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.761719 215.953125 C 286.761719 217.574219 284.332031 217.574219 284.332031 215.953125 C 284.332031 214.335938 286.761719 214.335938 286.761719 215.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.96875 255.574219 C 280.96875 257.195312 278.539062 257.195312 278.539062 255.574219 C 278.539062 253.953125 280.96875 253.953125 280.96875 255.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.144531 418.691406 L 217.78125 415.855469 L 214.507812 415.855469 Z M 216.144531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 347.984375 267.1875 C 347.984375 268.808594 345.554688 268.808594 345.554688 267.1875 C 345.554688 265.566406 347.984375 265.566406 347.984375 267.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.035156 70.910156 L 285.671875 73.746094 L 282.398438 73.746094 Z M 284.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.429688 310.828125 C 211.429688 312.449219 208.996094 312.449219 208.996094 310.828125 C 208.996094 309.210938 211.429688 309.210938 211.429688 310.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.550781 272.265625 C 257.550781 273.886719 255.121094 273.886719 255.121094 272.265625 C 255.121094 270.644531 257.550781 270.644531 257.550781 272.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.21875 245.511719 C 171.21875 247.132812 168.789062 247.132812 168.789062 245.511719 C 168.789062 243.890625 171.21875 243.890625 171.21875 245.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.234375 205.59375 C 288.234375 207.214844 285.804688 207.214844 285.804688 205.59375 C 285.804688 203.972656 288.234375 203.972656 288.234375 205.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.410156 418.691406 L 123.042969 415.855469 L 119.773438 415.855469 Z M 121.410156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.925781 276.839844 C 255.925781 278.457031 253.496094 278.457031 253.496094 276.839844 C 253.496094 275.21875 255.925781 275.21875 255.925781 276.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.933594 199.191406 C 237.933594 200.8125 235.503906 200.8125 235.503906 199.191406 C 235.503906 197.570312 237.933594 197.570312 237.933594 199.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.613281 328.386719 C 262.613281 330.003906 260.183594 330.003906 260.183594 328.386719 C 260.183594 326.765625 262.613281 326.765625 262.613281 328.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.261719 418.691406 L 188.898438 415.855469 L 185.628906 415.855469 Z M 187.261719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.082031 339.492188 C 263.082031 341.113281 260.648438 341.113281 260.648438 339.492188 C 260.648438 337.871094 263.082031 337.871094 263.082031 339.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.109375 70.910156 L 267.746094 73.746094 L 264.472656 73.746094 Z M 266.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.84375 212.105469 C 252.84375 213.722656 250.414062 213.722656 250.414062 212.105469 C 250.414062 210.484375 252.84375 210.484375 252.84375 212.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.945312 221.472656 C 203.945312 223.09375 201.515625 223.09375 201.515625 221.472656 C 201.515625 219.851562 203.945312 219.851562 203.945312 221.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.355469 258.828125 C 217.355469 260.445312 214.925781 260.445312 214.925781 258.828125 C 214.925781 257.207031 217.355469 257.207031 217.355469 258.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.527344 282.5625 C 255.527344 284.183594 253.097656 284.183594 253.097656 282.5625 C 253.097656 280.941406 255.527344 280.941406 255.527344 282.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.121094 307.484375 C 243.121094 309.101562 240.691406 309.101562 240.691406 307.484375 C 240.691406 305.863281 243.121094 305.863281 243.121094 307.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.46875 235.089844 C 265.46875 236.707031 263.039062 236.707031 263.039062 235.089844 C 263.039062 233.46875 265.46875 233.46875 265.46875 235.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.152344 252.835938 C 143.152344 254.453125 140.722656 254.453125 140.722656 252.835938 C 140.722656 251.214844 143.152344 251.214844 143.152344 252.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.59375 282.886719 C 289.59375 284.503906 287.164062 284.503906 287.164062 282.886719 C 287.164062 281.265625 289.59375 281.265625 289.59375 282.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.90625 229.816406 C 216.90625 231.4375 214.476562 231.4375 214.476562 229.816406 C 214.476562 228.195312 216.90625 228.195312 216.90625 229.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.382812 418.691406 L 145.015625 415.855469 L 141.746094 415.855469 Z M 143.382812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.207031 366.179688 C 260.207031 367.800781 257.777344 367.800781 257.777344 366.179688 C 257.777344 364.5625 260.207031 364.5625 260.207031 366.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.730469 70.910156 L 147.363281 73.746094 L 144.09375 73.746094 Z M 145.730469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.917969 70.910156 L 220.554688 73.746094 L 217.28125 73.746094 Z M 218.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.171875 418.691406 L 189.808594 415.855469 L 186.535156 415.855469 Z M 188.171875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.933594 257.4375 C 289.933594 259.058594 287.503906 259.058594 287.503906 257.4375 C 287.503906 255.816406 289.933594 255.816406 289.933594 257.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.09375 258.960938 C 322.09375 260.582031 319.664062 260.582031 319.664062 258.960938 C 319.664062 257.34375 322.09375 257.34375 322.09375 258.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.019531 261.652344 C 250.019531 263.273438 247.589844 263.273438 247.589844 261.652344 C 247.589844 260.035156 250.019531 260.035156 250.019531 261.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.046875 412.472656 C 286.046875 414.089844 283.617188 414.089844 283.617188 412.472656 C 283.617188 410.851562 286.046875 410.851562 286.046875 412.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.15625 330.648438 C 298.15625 332.269531 295.726562 332.269531 295.726562 330.648438 C 295.726562 329.027344 298.15625 329.027344 298.15625 330.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.847656 310.878906 C 293.847656 312.496094 291.417969 312.496094 291.417969 310.878906 C 291.417969 309.257812 293.847656 309.257812 293.847656 310.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.941406 127.742188 C 204.941406 129.363281 202.511719 129.363281 202.511719 127.742188 C 202.511719 126.125 204.941406 126.125 204.941406 127.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.816406 107.945312 C 136.816406 109.566406 134.386719 109.566406 134.386719 107.945312 C 134.386719 106.324219 136.816406 106.324219 136.816406 107.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.820312 319.171875 C 247.820312 320.792969 245.390625 320.792969 245.390625 319.171875 C 245.390625 317.550781 247.820312 317.550781 247.820312 319.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.335938 390.316406 C 214.335938 391.9375 211.90625 391.9375 211.90625 390.316406 C 211.90625 388.699219 214.335938 388.699219 214.335938 390.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.09375 311.910156 C 302.09375 313.53125 299.664062 313.53125 299.664062 311.910156 C 299.664062 310.289062 302.09375 310.289062 302.09375 311.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.554688 248.035156 C 279.554688 249.65625 277.125 249.65625 277.125 248.035156 C 277.125 246.414062 279.554688 246.414062 279.554688 248.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.042969 316.949219 C 313.042969 318.566406 310.613281 318.566406 310.613281 316.949219 C 310.613281 315.328125 313.042969 315.328125 313.042969 316.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.476562 214.675781 C 245.476562 216.296875 243.046875 216.296875 243.046875 214.675781 C 243.046875 213.054688 245.476562 213.054688 245.476562 214.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.761719 125.5625 C 285.761719 127.179688 283.332031 127.179688 283.332031 125.5625 C 283.332031 123.941406 285.761719 123.941406 285.761719 125.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.71875 240.816406 C 247.71875 242.433594 245.289062 242.433594 245.289062 240.816406 C 245.289062 239.195312 247.71875 239.195312 247.71875 240.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.445312 305.78125 C 304.445312 307.402344 302.015625 307.402344 302.015625 305.78125 C 302.015625 304.160156 304.445312 304.160156 304.445312 305.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.632812 301.972656 C 241.632812 303.59375 239.203125 303.59375 239.203125 301.972656 C 239.203125 300.351562 241.632812 300.351562 241.632812 301.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.359375 244.6875 C 229.359375 246.308594 226.929688 246.308594 226.929688 244.6875 C 226.929688 243.070312 229.359375 243.070312 229.359375 244.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.09375 70.910156 L 124.730469 73.746094 L 121.457031 73.746094 Z M 123.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.617188 241.523438 C 117.617188 243.140625 115.1875 243.140625 115.1875 241.523438 C 115.1875 239.902344 117.617188 239.902344 117.617188 241.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.527344 418.691406 L 190.164062 415.855469 L 186.890625 415.855469 Z M 188.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.109375 149.507812 C 225.109375 151.125 222.675781 151.125 222.675781 149.507812 C 222.675781 147.886719 225.109375 147.886719 225.109375 149.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 179.667969 81.261719 C 179.667969 82.882812 177.238281 82.882812 177.238281 81.261719 C 177.238281 79.640625 179.667969 79.640625 179.667969 81.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.320312 418.691406 L 239.957031 415.855469 L 236.683594 415.855469 Z M 238.320312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.445312 70.910156 L 250.082031 73.746094 L 246.808594 73.746094 Z M 248.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.945312 136.371094 C 343.945312 137.992188 341.515625 137.992188 341.515625 136.371094 C 341.515625 134.753906 343.945312 134.753906 343.945312 136.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.96875 182.683594 C 232.96875 184.304688 230.539062 184.304688 230.539062 182.683594 C 230.539062 181.0625 232.96875 181.0625 232.96875 182.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.535156 127.070312 C 246.535156 128.691406 244.105469 128.691406 244.105469 127.070312 C 244.105469 125.449219 246.535156 125.449219 246.535156 127.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.429688 271.511719 C 181.429688 273.132812 179 273.132812 179 271.511719 C 179 269.894531 181.429688 269.894531 181.429688 271.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.382812 231.195312 C 154.382812 232.816406 151.953125 232.816406 151.953125 231.195312 C 151.953125 229.578125 154.382812 229.578125 154.382812 231.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.023438 206.285156 C 269.023438 207.902344 266.59375 207.902344 266.59375 206.285156 C 266.59375 204.664062 269.023438 204.664062 269.023438 206.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.246094 306.023438 C 236.246094 307.640625 233.816406 307.640625 233.816406 306.023438 C 233.816406 304.402344 236.246094 304.402344 236.246094 306.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.875 360.6875 C 253.875 362.308594 251.441406 362.308594 251.441406 360.6875 C 251.441406 359.070312 253.875 359.070312 253.875 360.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.28125 349.679688 C 275.28125 351.300781 272.847656 351.300781 272.847656 349.679688 C 272.847656 348.0625 275.28125 348.0625 275.28125 349.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.933594 224.976562 C 268.933594 226.59375 266.503906 226.59375 266.503906 224.976562 C 266.503906 223.355469 268.933594 223.355469 268.933594 224.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.578125 70.910156 L 229.214844 73.746094 L 225.941406 73.746094 Z M 227.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.503906 300.886719 C 211.503906 302.507812 209.074219 302.507812 209.074219 300.886719 C 209.074219 299.265625 211.503906 299.265625 211.503906 300.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.640625 272.167969 C 215.640625 273.785156 213.210938 273.785156 213.210938 272.167969 C 213.210938 270.546875 215.640625 270.546875 215.640625 272.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.464844 254.808594 C 265.464844 256.429688 263.035156 256.429688 263.035156 254.808594 C 263.035156 253.1875 265.464844 253.1875 265.464844 254.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.101562 264.707031 C 244.101562 266.324219 241.671875 266.324219 241.671875 264.707031 C 241.671875 263.085938 244.101562 263.085938 244.101562 264.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.492188 236.164062 C 292.492188 237.785156 290.058594 237.785156 290.058594 236.164062 C 290.058594 234.542969 292.492188 234.542969 292.492188 236.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.476562 136.992188 C 290.476562 138.609375 288.046875 138.609375 288.046875 136.992188 C 288.046875 135.371094 290.476562 135.371094 290.476562 136.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.632812 266.726562 C 240.632812 268.34375 238.203125 268.34375 238.203125 266.726562 C 238.203125 265.105469 240.632812 265.105469 240.632812 266.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.296875 298.738281 C 252.296875 300.359375 249.867188 300.359375 249.867188 298.738281 C 249.867188 297.121094 252.296875 297.121094 252.296875 298.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.910156 254.171875 C 266.910156 255.792969 264.476562 255.792969 264.476562 254.171875 C 264.476562 252.550781 266.910156 252.550781 266.910156 254.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.976562 250.75 C 233.976562 252.371094 231.546875 252.371094 231.546875 250.75 C 231.546875 249.132812 233.976562 249.132812 233.976562 250.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.015625 271.148438 C 255.015625 272.769531 252.585938 272.769531 252.585938 271.148438 C 252.585938 269.527344 255.015625 269.527344 255.015625 271.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.417969 236.097656 C 284.417969 237.71875 281.988281 237.71875 281.988281 236.097656 C 281.988281 234.476562 284.417969 234.476562 284.417969 236.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.988281 70.910156 L 231.625 73.746094 L 228.351562 73.746094 Z M 229.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.527344 323.570312 C 278.527344 325.1875 276.097656 325.1875 276.097656 323.570312 C 276.097656 321.949219 278.527344 321.949219 278.527344 323.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.667969 285.851562 C 239.667969 287.472656 237.238281 287.472656 237.238281 285.851562 C 237.238281 284.234375 239.667969 284.234375 239.667969 285.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.6875 275.738281 C 252.6875 277.355469 250.257812 277.355469 250.257812 275.738281 C 250.257812 274.117188 252.6875 274.117188 252.6875 275.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.003906 255.777344 C 263.003906 257.398438 260.574219 257.398438 260.574219 255.777344 C 260.574219 254.15625 263.003906 254.15625 263.003906 255.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.796875 257.277344 C 256.796875 258.898438 254.367188 258.898438 254.367188 257.277344 C 254.367188 255.660156 256.796875 255.660156 256.796875 257.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.289062 243.316406 C 302.289062 244.933594 299.859375 244.933594 299.859375 243.316406 C 299.859375 241.695312 302.289062 241.695312 302.289062 243.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.191406 359.40625 C 165.191406 361.023438 162.761719 361.023438 162.761719 359.40625 C 162.761719 357.785156 165.191406 357.785156 165.191406 359.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.308594 288.988281 C 234.308594 290.609375 231.878906 290.609375 231.878906 288.988281 C 231.878906 287.367188 234.308594 287.367188 234.308594 288.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.410156 274.613281 C 265.410156 276.234375 262.980469 276.234375 262.980469 274.613281 C 262.980469 272.992188 265.410156 272.992188 265.410156 274.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.714844 253.511719 C 274.714844 255.132812 272.285156 255.132812 272.285156 253.511719 C 272.285156 251.890625 274.714844 251.890625 274.714844 253.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.753906 293.589844 C 220.753906 295.210938 218.324219 295.210938 218.324219 293.589844 C 218.324219 291.96875 220.753906 291.96875 220.753906 293.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.445312 342.847656 C 216.445312 344.464844 214.015625 344.464844 214.015625 342.847656 C 214.015625 341.226562 216.445312 341.226562 216.445312 342.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.546875 231.246094 C 217.546875 232.867188 215.117188 232.867188 215.117188 231.246094 C 215.117188 229.625 217.546875 229.625 217.546875 231.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.15625 221.75 C 192.15625 223.371094 189.726562 223.371094 189.726562 221.75 C 189.726562 220.128906 192.15625 220.128906 192.15625 221.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.246094 227.496094 C 316.246094 229.117188 313.816406 229.117188 313.816406 227.496094 C 313.816406 225.875 316.246094 225.875 316.246094 227.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.882812 243.3125 C 276.882812 244.933594 274.453125 244.933594 274.453125 243.3125 C 274.453125 241.691406 276.882812 241.691406 276.882812 243.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.710938 70.910156 L 260.34375 73.746094 L 257.074219 73.746094 Z M 258.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.636719 324.683594 C 246.636719 326.304688 244.207031 326.304688 244.207031 324.683594 C 244.207031 323.0625 246.636719 323.0625 246.636719 324.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.273438 268.335938 C 193.273438 269.957031 190.84375 269.957031 190.84375 268.335938 C 190.84375 266.71875 193.273438 266.71875 193.273438 268.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.988281 376.632812 C 314.988281 378.253906 312.554688 378.253906 312.554688 376.632812 C 312.554688 375.011719 314.988281 375.011719 314.988281 376.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.074219 293.441406 C 272.074219 295.058594 269.644531 295.058594 269.644531 293.441406 C 269.644531 291.820312 272.074219 291.820312 272.074219 293.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.488281 186.429688 C 298.488281 188.050781 296.058594 188.050781 296.058594 186.429688 C 296.058594 184.808594 298.488281 184.808594 298.488281 186.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.34375 143.566406 C 203.34375 145.183594 200.914062 145.183594 200.914062 143.566406 C 200.914062 141.945312 203.34375 141.945312 203.34375 143.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.332031 302.628906 C 144.332031 304.246094 141.902344 304.246094 141.902344 302.628906 C 141.902344 301.007812 144.332031 301.007812 144.332031 302.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.382812 113.507812 C 329.382812 115.128906 326.953125 115.128906 326.953125 113.507812 C 326.953125 111.886719 329.382812 111.886719 329.382812 113.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.441406 296.175781 C 284.441406 297.796875 282.011719 297.796875 282.011719 296.175781 C 282.011719 294.558594 284.441406 294.558594 284.441406 296.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.9375 296.867188 C 286.9375 298.488281 284.507812 298.488281 284.507812 296.867188 C 284.507812 295.246094 286.9375 295.246094 286.9375 296.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.410156 300.699219 C 239.410156 302.316406 236.980469 302.316406 236.980469 300.699219 C 236.980469 299.078125 239.410156 299.078125 239.410156 300.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.042969 299.171875 C 259.042969 300.792969 256.613281 300.792969 256.613281 299.171875 C 256.613281 297.550781 259.042969 297.550781 259.042969 299.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.945312 291.734375 C 242.945312 293.355469 240.515625 293.355469 240.515625 291.734375 C 240.515625 290.113281 242.945312 290.113281 242.945312 291.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.746094 190.308594 C 293.746094 191.929688 291.316406 191.929688 291.316406 190.308594 C 291.316406 188.6875 293.746094 188.6875 293.746094 190.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.535156 307.117188 C 224.535156 308.738281 222.105469 308.738281 222.105469 307.117188 C 222.105469 305.496094 224.535156 305.496094 224.535156 307.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.460938 70.910156 L 188.09375 73.746094 L 184.824219 73.746094 Z M 186.460938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.695312 70.910156 L 260.332031 73.746094 L 257.058594 73.746094 Z M 258.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.214844 99.441406 C 244.214844 101.0625 241.785156 101.0625 241.785156 99.441406 C 241.785156 97.824219 244.214844 97.824219 244.214844 99.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.195312 206.109375 C 211.195312 207.726562 208.765625 207.726562 208.765625 206.109375 C 208.765625 204.488281 211.195312 204.488281 211.195312 206.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.109375 331.816406 C 196.109375 333.433594 193.679688 333.433594 193.679688 331.816406 C 193.679688 330.195312 196.109375 330.195312 196.109375 331.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.628906 294.699219 C 219.628906 296.316406 217.199219 296.316406 217.199219 294.699219 C 217.199219 293.078125 219.628906 293.078125 219.628906 294.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.816406 288.753906 C 241.816406 290.375 239.386719 290.375 239.386719 288.753906 C 239.386719 287.132812 241.816406 287.132812 241.816406 288.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.9375 227.097656 C 217.9375 228.714844 215.507812 228.714844 215.507812 227.097656 C 215.507812 225.476562 217.9375 225.476562 217.9375 227.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.476562 241.628906 C 223.476562 243.246094 221.042969 243.246094 221.042969 241.628906 C 221.042969 240.007812 223.476562 240.007812 223.476562 241.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.152344 169.386719 C 231.152344 171.007812 228.722656 171.007812 228.722656 169.386719 C 228.722656 167.769531 231.152344 167.769531 231.152344 169.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.582031 184.914062 C 213.582031 186.535156 211.152344 186.535156 211.152344 184.914062 C 211.152344 183.292969 213.582031 183.292969 213.582031 184.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.5625 218.097656 C 240.5625 219.71875 238.132812 219.71875 238.132812 218.097656 C 238.132812 216.480469 240.5625 216.480469 240.5625 218.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.53125 325.996094 C 299.53125 327.617188 297.097656 327.617188 297.097656 325.996094 C 297.097656 324.375 299.53125 324.375 299.53125 325.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.570312 285.519531 C 230.570312 287.140625 228.140625 287.140625 228.140625 285.519531 C 228.140625 283.902344 230.570312 283.902344 230.570312 285.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.179688 258.746094 C 236.179688 260.367188 233.75 260.367188 233.75 258.746094 C 233.75 257.125 236.179688 257.125 236.179688 258.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.726562 88.429688 C 235.726562 90.050781 233.296875 90.050781 233.296875 88.429688 C 233.296875 86.808594 235.726562 86.808594 235.726562 88.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.78125 221.378906 C 293.78125 223 291.347656 223 291.347656 221.378906 C 291.347656 219.757812 293.78125 219.757812 293.78125 221.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.160156 264.957031 C 284.160156 266.578125 281.730469 266.578125 281.730469 264.957031 C 281.730469 263.335938 284.160156 263.335938 284.160156 264.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.644531 240.714844 C 296.644531 242.335938 294.214844 242.335938 294.214844 240.714844 C 294.214844 239.09375 296.644531 239.09375 296.644531 240.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.972656 301.421875 C 136.972656 303.042969 134.542969 303.042969 134.542969 301.421875 C 134.542969 299.800781 136.972656 299.800781 136.972656 301.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.621094 418.691406 L 159.257812 415.855469 L 155.984375 415.855469 Z M 157.621094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.121094 148.488281 C 209.121094 150.109375 206.691406 150.109375 206.691406 148.488281 C 206.691406 146.867188 209.121094 146.867188 209.121094 148.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.375 234.53125 C 288.375 236.152344 285.945312 236.152344 285.945312 234.53125 C 285.945312 232.914062 288.375 232.914062 288.375 234.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.195312 310.046875 C 267.195312 311.664062 264.765625 311.664062 264.765625 310.046875 C 264.765625 308.425781 267.195312 308.425781 267.195312 310.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.34375 186.527344 C 218.34375 188.148438 215.914062 188.148438 215.914062 186.527344 C 215.914062 184.90625 218.34375 184.90625 218.34375 186.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.894531 266.9375 C 310.894531 268.558594 308.464844 268.558594 308.464844 266.9375 C 308.464844 265.316406 310.894531 265.316406 310.894531 266.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.207031 293.855469 C 253.207031 295.476562 250.777344 295.476562 250.777344 293.855469 C 250.777344 292.234375 253.207031 292.234375 253.207031 293.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.953125 253.5625 C 288.953125 255.179688 286.523438 255.179688 286.523438 253.5625 C 286.523438 251.941406 288.953125 251.941406 288.953125 253.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.582031 383.175781 C 224.582031 384.792969 222.152344 384.792969 222.152344 383.175781 C 222.152344 381.554688 224.582031 381.554688 224.582031 383.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.363281 288.464844 C 195.363281 290.085938 192.933594 290.085938 192.933594 288.464844 C 192.933594 286.84375 195.363281 286.84375 195.363281 288.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.734375 263.039062 C 254.734375 264.65625 252.304688 264.65625 252.304688 263.039062 C 252.304688 261.417969 254.734375 261.417969 254.734375 263.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.753906 284.023438 C 299.753906 285.644531 297.324219 285.644531 297.324219 284.023438 C 297.324219 282.40625 299.753906 282.40625 299.753906 284.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.234375 297.730469 C 279.234375 299.351562 276.804688 299.351562 276.804688 297.730469 C 276.804688 296.109375 279.234375 296.109375 279.234375 297.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.878906 270.816406 C 309.878906 272.433594 307.449219 272.433594 307.449219 270.816406 C 307.449219 269.195312 309.878906 269.195312 309.878906 270.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.285156 309.273438 C 249.285156 310.894531 246.855469 310.894531 246.855469 309.273438 C 246.855469 307.652344 249.285156 307.652344 249.285156 309.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.527344 418.691406 L 168.164062 415.855469 L 164.890625 415.855469 Z M 166.527344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.226562 285.703125 C 262.226562 287.324219 259.796875 287.324219 259.796875 285.703125 C 259.796875 284.082031 262.226562 284.082031 262.226562 285.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.320312 276.035156 C 227.320312 277.65625 224.890625 277.65625 224.890625 276.035156 C 224.890625 274.414062 227.320312 274.414062 227.320312 276.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.007812 246.796875 C 247.007812 248.414062 244.578125 248.414062 244.578125 246.796875 C 244.578125 245.175781 247.007812 245.175781 247.007812 246.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.144531 303.804688 C 294.144531 305.425781 291.710938 305.425781 291.710938 303.804688 C 291.710938 302.1875 294.144531 302.1875 294.144531 303.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.367188 293.496094 C 258.367188 295.113281 255.9375 295.113281 255.9375 293.496094 C 255.9375 291.875 258.367188 291.875 258.367188 293.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.9375 177.835938 C 241.9375 179.457031 239.507812 179.457031 239.507812 177.835938 C 239.507812 176.214844 241.9375 176.214844 241.9375 177.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.097656 181.511719 C 231.097656 183.132812 228.667969 183.132812 228.667969 181.511719 C 228.667969 179.890625 231.097656 179.890625 231.097656 181.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.621094 310.101562 C 280.621094 311.71875 278.191406 311.71875 278.191406 310.101562 C 278.191406 308.480469 280.621094 308.480469 280.621094 310.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.613281 273.507812 C 244.613281 275.128906 242.183594 275.128906 242.183594 273.507812 C 242.183594 271.886719 244.613281 271.886719 244.613281 273.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.746094 270.332031 C 251.746094 271.953125 249.316406 271.953125 249.316406 270.332031 C 249.316406 268.710938 251.746094 268.710938 251.746094 270.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.457031 316.496094 C 218.457031 318.117188 216.027344 318.117188 216.027344 316.496094 C 216.027344 314.878906 218.457031 314.878906 218.457031 316.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.90625 339.089844 C 276.90625 340.710938 274.476562 340.710938 274.476562 339.089844 C 274.476562 337.46875 276.90625 337.46875 276.90625 339.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.164062 349.25 C 234.164062 350.871094 231.734375 350.871094 231.734375 349.25 C 231.734375 347.628906 234.164062 347.628906 234.164062 349.25 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.472656 70.910156 L 209.109375 73.746094 L 205.835938 73.746094 Z M 207.472656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.808594 289.304688 C 284.808594 290.925781 282.378906 290.925781 282.378906 289.304688 C 282.378906 287.6875 284.808594 287.6875 284.808594 289.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.28125 102.0625 C 288.28125 103.683594 285.851562 103.683594 285.851562 102.0625 C 285.851562 100.445312 288.28125 100.445312 288.28125 102.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.363281 70.910156 L 172 73.746094 L 168.726562 73.746094 Z M 170.363281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.0625 160.855469 C 238.0625 162.476562 235.632812 162.476562 235.632812 160.855469 C 235.632812 159.234375 238.0625 159.234375 238.0625 160.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.933594 166.421875 C 223.933594 168.042969 221.503906 168.042969 221.503906 166.421875 C 221.503906 164.800781 223.933594 164.800781 223.933594 166.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.96875 181.703125 C 152.96875 183.324219 150.539062 183.324219 150.539062 181.703125 C 150.539062 180.082031 152.96875 180.082031 152.96875 181.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.066406 311.035156 C 279.066406 312.65625 276.636719 312.65625 276.636719 311.035156 C 276.636719 309.414062 279.066406 309.414062 279.066406 311.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.648438 260.625 C 283.648438 262.246094 281.214844 262.246094 281.214844 260.625 C 281.214844 259.007812 283.648438 259.007812 283.648438 260.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.125 337.484375 C 215.125 339.105469 212.691406 339.105469 212.691406 337.484375 C 212.691406 335.863281 215.125 335.863281 215.125 337.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.667969 273.945312 C 283.667969 275.566406 281.238281 275.566406 281.238281 273.945312 C 281.238281 272.324219 283.667969 272.324219 283.667969 273.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.875 182.246094 C 256.875 183.867188 254.445312 183.867188 254.445312 182.246094 C 254.445312 180.628906 256.875 180.628906 256.875 182.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.917969 70.910156 L 156.554688 73.746094 L 153.28125 73.746094 Z M 154.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.46875 70.910156 L 192.105469 73.746094 L 188.832031 73.746094 Z M 190.46875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.105469 70.910156 L 169.742188 73.746094 L 166.46875 73.746094 Z M 168.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.992188 77.246094 C 282.992188 78.867188 280.5625 78.867188 280.5625 77.246094 C 280.5625 75.628906 282.992188 75.628906 282.992188 77.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.464844 70.910156 L 195.101562 73.746094 L 191.828125 73.746094 Z M 193.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.804688 196.648438 C 157.804688 198.269531 155.375 198.269531 155.375 196.648438 C 155.375 195.03125 157.804688 195.03125 157.804688 196.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.601562 215.328125 C 173.601562 216.949219 171.171875 216.949219 171.171875 215.328125 C 171.171875 213.710938 173.601562 213.710938 173.601562 215.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.796875 197.492188 C 284.796875 199.113281 282.367188 199.113281 282.367188 197.492188 C 282.367188 195.871094 284.796875 195.871094 284.796875 197.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.316406 234.226562 C 240.316406 235.84375 237.886719 235.84375 237.886719 234.226562 C 237.886719 232.605469 240.316406 232.605469 240.316406 234.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.078125 70.910156 L 184.714844 73.746094 L 181.441406 73.746094 Z M 183.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.632812 321.613281 C 285.632812 323.230469 283.203125 323.230469 283.203125 321.613281 C 283.203125 319.992188 285.632812 319.992188 285.632812 321.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.242188 307.601562 C 247.242188 309.222656 244.8125 309.222656 244.8125 307.601562 C 244.8125 305.984375 247.242188 305.984375 247.242188 307.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.039062 345.78125 C 165.039062 347.402344 162.609375 347.402344 162.609375 345.78125 C 162.609375 344.164062 165.039062 344.164062 165.039062 345.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.039062 248.152344 C 233.039062 249.773438 230.609375 249.773438 230.609375 248.152344 C 230.609375 246.535156 233.039062 246.535156 233.039062 248.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.671875 289.710938 C 261.671875 291.332031 259.242188 291.332031 259.242188 289.710938 C 259.242188 288.089844 261.671875 288.089844 261.671875 289.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.410156 147.589844 C 214.410156 149.207031 211.976562 149.207031 211.976562 147.589844 C 211.976562 145.96875 214.410156 145.96875 214.410156 147.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.222656 215.902344 C 266.222656 217.523438 263.792969 217.523438 263.792969 215.902344 C 263.792969 214.28125 266.222656 214.28125 266.222656 215.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.179688 298.699219 C 168.179688 300.320312 165.75 300.320312 165.75 298.699219 C 165.75 297.082031 168.179688 297.082031 168.179688 298.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.070312 255.417969 C 221.070312 257.035156 218.640625 257.035156 218.640625 255.417969 C 218.640625 253.796875 221.070312 253.796875 221.070312 255.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.460938 279.152344 C 216.460938 280.773438 214.03125 280.773438 214.03125 279.152344 C 214.03125 277.535156 216.460938 277.535156 216.460938 279.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.605469 242.363281 C 248.605469 243.980469 246.175781 243.980469 246.175781 242.363281 C 246.175781 240.742188 248.605469 240.742188 248.605469 242.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.074219 285.679688 C 234.074219 287.300781 231.644531 287.300781 231.644531 285.679688 C 231.644531 284.0625 234.074219 284.0625 234.074219 285.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.257812 240.496094 C 267.257812 242.113281 264.828125 242.113281 264.828125 240.496094 C 264.828125 238.875 267.257812 238.875 267.257812 240.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.492188 418.691406 L 166.128906 415.855469 L 162.855469 415.855469 Z M 164.492188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.289062 149.050781 C 144.289062 150.671875 141.859375 150.671875 141.859375 149.050781 C 141.859375 147.429688 144.289062 147.429688 144.289062 149.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.839844 209.765625 C 278.839844 211.386719 276.410156 211.386719 276.410156 209.765625 C 276.410156 208.148438 278.839844 208.148438 278.839844 209.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.714844 304.464844 C 213.714844 306.085938 211.285156 306.085938 211.285156 304.464844 C 211.285156 302.847656 213.714844 302.847656 213.714844 304.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.4375 337.933594 C 245.4375 339.554688 243.007812 339.554688 243.007812 337.933594 C 243.007812 336.3125 245.4375 336.3125 245.4375 337.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.125 70.910156 L 198.761719 73.746094 L 195.492188 73.746094 Z M 197.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.703125 257.882812 C 281.703125 259.503906 279.273438 259.503906 279.273438 257.882812 C 279.273438 256.261719 281.703125 256.261719 281.703125 257.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.21875 295.375 C 239.21875 296.996094 236.789062 296.996094 236.789062 295.375 C 236.789062 293.753906 239.21875 293.753906 239.21875 295.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.75 263.480469 C 227.75 265.097656 225.320312 265.097656 225.320312 263.480469 C 225.320312 261.859375 227.75 261.859375 227.75 263.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.261719 70.910156 L 154.898438 73.746094 L 151.625 73.746094 Z M 153.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.328125 357.441406 C 273.328125 359.0625 270.894531 359.0625 270.894531 357.441406 C 270.894531 355.820312 273.328125 355.820312 273.328125 357.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.867188 164.703125 C 209.867188 166.324219 207.4375 166.324219 207.4375 164.703125 C 207.4375 163.082031 209.867188 163.082031 209.867188 164.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.902344 244.582031 C 222.902344 246.203125 220.472656 246.203125 220.472656 244.582031 C 220.472656 242.964844 222.902344 242.964844 222.902344 244.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.386719 264.210938 C 271.386719 265.828125 268.957031 265.828125 268.957031 264.210938 C 268.957031 262.589844 271.386719 262.589844 271.386719 264.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.035156 220.628906 C 168.035156 222.25 165.605469 222.25 165.605469 220.628906 C 165.605469 219.011719 168.035156 219.011719 168.035156 220.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.589844 418.691406 L 206.226562 415.855469 L 202.953125 415.855469 Z M 204.589844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.824219 249.355469 C 287.824219 250.972656 285.394531 250.972656 285.394531 249.355469 C 285.394531 247.734375 287.824219 247.734375 287.824219 249.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.015625 166.773438 C 264.015625 168.394531 261.582031 168.394531 261.582031 166.773438 C 261.582031 165.15625 264.015625 165.15625 264.015625 166.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.492188 227.109375 C 299.492188 228.730469 297.0625 228.730469 297.0625 227.109375 C 297.0625 225.492188 299.492188 225.492188 299.492188 227.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.582031 256.953125 C 248.582031 258.574219 246.152344 258.574219 246.152344 256.953125 C 246.152344 255.335938 248.582031 255.335938 248.582031 256.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.558594 295.222656 C 270.558594 296.839844 268.128906 296.839844 268.128906 295.222656 C 268.128906 293.601562 270.558594 293.601562 270.558594 295.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.550781 159.976562 C 277.550781 161.597656 275.121094 161.597656 275.121094 159.976562 C 275.121094 158.355469 277.550781 158.355469 277.550781 159.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.945312 174.230469 C 184.945312 175.851562 182.515625 175.851562 182.515625 174.230469 C 182.515625 172.613281 184.945312 172.613281 184.945312 174.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.007812 309.59375 C 279.007812 311.214844 276.578125 311.214844 276.578125 309.59375 C 276.578125 307.976562 279.007812 307.976562 279.007812 309.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.242188 220.199219 C 173.242188 221.820312 170.8125 221.820312 170.8125 220.199219 C 170.8125 218.578125 173.242188 218.578125 173.242188 220.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.679688 216.441406 C 256.679688 218.058594 254.25 218.058594 254.25 216.441406 C 254.25 214.820312 256.679688 214.820312 256.679688 216.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.253906 270.976562 C 268.253906 272.597656 265.824219 272.597656 265.824219 270.976562 C 265.824219 269.359375 268.253906 269.359375 268.253906 270.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.179688 272.707031 C 237.179688 274.324219 234.75 274.324219 234.75 272.707031 C 234.75 271.085938 237.179688 271.085938 237.179688 272.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.96875 70.910156 L 171.605469 73.746094 L 168.332031 73.746094 Z M 169.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.6875 211.316406 C 286.6875 212.9375 284.257812 212.9375 284.257812 211.316406 C 284.257812 209.695312 286.6875 209.695312 286.6875 211.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.691406 418.691406 L 277.328125 415.855469 L 274.054688 415.855469 Z M 275.691406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.417969 306.957031 C 298.417969 308.578125 295.988281 308.578125 295.988281 306.957031 C 295.988281 305.339844 298.417969 305.339844 298.417969 306.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.214844 70.910156 L 190.851562 73.746094 L 187.578125 73.746094 Z M 189.214844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.554688 70.910156 L 198.191406 73.746094 L 194.917969 73.746094 Z M 196.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.414062 262.582031 C 275.414062 264.203125 272.984375 264.203125 272.984375 262.582031 C 272.984375 260.964844 275.414062 260.964844 275.414062 262.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.425781 70.910156 L 255.0625 73.746094 L 251.789062 73.746094 Z M 253.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.863281 155.257812 C 265.863281 156.878906 263.433594 156.878906 263.433594 155.257812 C 263.433594 153.640625 265.863281 153.640625 265.863281 155.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.316406 243.46875 C 312.316406 245.085938 309.886719 245.085938 309.886719 243.46875 C 309.886719 241.847656 312.316406 241.847656 312.316406 243.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.222656 404.957031 C 220.222656 406.578125 217.792969 406.578125 217.792969 404.957031 C 217.792969 403.335938 220.222656 403.335938 220.222656 404.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.4375 260.464844 C 257.4375 262.085938 255.007812 262.085938 255.007812 260.464844 C 255.007812 258.84375 257.4375 258.84375 257.4375 260.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.683594 289.5 C 282.683594 291.117188 280.253906 291.117188 280.253906 289.5 C 280.253906 287.878906 282.683594 287.878906 282.683594 289.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.996094 167.609375 C 292.996094 169.230469 290.566406 169.230469 290.566406 167.609375 C 290.566406 165.988281 292.996094 165.988281 292.996094 167.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.007812 312.21875 C 260.007812 313.839844 257.578125 313.839844 257.578125 312.21875 C 257.578125 310.601562 260.007812 310.601562 260.007812 312.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 389.140625 296.167969 C 389.140625 297.785156 386.710938 297.785156 386.710938 296.167969 C 386.710938 294.546875 389.140625 294.546875 389.140625 296.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.828125 292.292969 C 157.828125 293.914062 155.398438 293.914062 155.398438 292.292969 C 155.398438 290.675781 157.828125 290.675781 157.828125 292.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.058594 324.476562 C 303.058594 326.097656 300.628906 326.097656 300.628906 324.476562 C 300.628906 322.855469 303.058594 322.855469 303.058594 324.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.207031 295.628906 C 328.207031 297.246094 325.777344 297.246094 325.777344 295.628906 C 325.777344 294.007812 328.207031 294.007812 328.207031 295.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.164062 225.039062 C 155.164062 226.660156 152.734375 226.660156 152.734375 225.039062 C 152.734375 223.417969 155.164062 223.417969 155.164062 225.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.6875 262.941406 C 236.6875 264.5625 234.257812 264.5625 234.257812 262.941406 C 234.257812 261.324219 236.6875 261.324219 236.6875 262.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.449219 272.402344 C 250.449219 274.023438 248.019531 274.023438 248.019531 272.402344 C 248.019531 270.78125 250.449219 270.78125 250.449219 272.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.410156 214.582031 C 217.410156 216.203125 214.980469 216.203125 214.980469 214.582031 C 214.980469 212.964844 217.410156 212.964844 217.410156 214.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.320312 334.863281 C 290.320312 336.480469 287.890625 336.480469 287.890625 334.863281 C 287.890625 333.242188 290.320312 333.242188 290.320312 334.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.734375 347.976562 C 216.734375 349.59375 214.304688 349.59375 214.304688 347.976562 C 214.304688 346.355469 216.734375 346.355469 216.734375 347.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.027344 70.910156 L 123.664062 73.746094 L 120.390625 73.746094 Z M 122.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.347656 211.226562 C 270.347656 212.84375 267.917969 212.84375 267.917969 211.226562 C 267.917969 209.605469 270.347656 209.605469 270.347656 211.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.605469 150.207031 C 219.605469 151.828125 217.171875 151.828125 217.171875 150.207031 C 217.171875 148.585938 219.605469 148.585938 219.605469 150.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.609375 162.554688 C 166.609375 164.171875 164.179688 164.171875 164.179688 162.554688 C 164.179688 160.933594 166.609375 160.933594 166.609375 162.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.625 272.652344 C 281.625 274.269531 279.195312 274.269531 279.195312 272.652344 C 279.195312 271.03125 281.625 271.03125 281.625 272.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.375 244.851562 C 229.375 246.46875 226.945312 246.46875 226.945312 244.851562 C 226.945312 243.230469 229.375 243.230469 229.375 244.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.183594 216.566406 C 285.183594 218.1875 282.753906 218.1875 282.753906 216.566406 C 282.753906 214.945312 285.183594 214.945312 285.183594 216.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.84375 231.054688 C 193.84375 232.671875 191.414062 232.671875 191.414062 231.054688 C 191.414062 229.433594 193.84375 229.433594 193.84375 231.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.199219 223.082031 C 215.199219 224.703125 212.769531 224.703125 212.769531 223.082031 C 212.769531 221.460938 215.199219 221.460938 215.199219 223.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.132812 265.613281 C 286.132812 267.234375 283.703125 267.234375 283.703125 265.613281 C 283.703125 263.996094 286.132812 263.996094 286.132812 265.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.726562 248.558594 C 288.726562 250.179688 286.296875 250.179688 286.296875 248.558594 C 286.296875 246.9375 288.726562 246.9375 288.726562 248.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.558594 162.386719 C 185.558594 164.003906 183.128906 164.003906 183.128906 162.386719 C 183.128906 160.765625 185.558594 160.765625 185.558594 162.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.320312 172.214844 C 189.320312 173.832031 186.890625 173.832031 186.890625 172.214844 C 186.890625 170.59375 189.320312 170.59375 189.320312 172.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 187.96875 77.976562 C 187.96875 79.597656 185.539062 79.597656 185.539062 77.976562 C 185.539062 76.359375 187.96875 76.359375 187.96875 77.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.097656 190.304688 C 288.097656 191.921875 285.667969 191.921875 285.667969 190.304688 C 285.667969 188.683594 288.097656 188.683594 288.097656 190.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.957031 351.035156 C 269.957031 352.65625 267.527344 352.65625 267.527344 351.035156 C 267.527344 349.414062 269.957031 349.414062 269.957031 351.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.421875 213.269531 C 303.421875 214.890625 300.992188 214.890625 300.992188 213.269531 C 300.992188 211.652344 303.421875 211.652344 303.421875 213.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.277344 314.59375 C 320.277344 316.214844 317.847656 316.214844 317.847656 314.59375 C 317.847656 312.976562 320.277344 312.976562 320.277344 314.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.234375 418.691406 L 134.871094 415.855469 L 131.601562 415.855469 Z M 133.234375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.101562 375.972656 C 154.101562 377.589844 151.671875 377.589844 151.671875 375.972656 C 151.671875 374.351562 154.101562 374.351562 154.101562 375.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.96875 381.722656 C 148.96875 383.339844 146.539062 383.339844 146.539062 381.722656 C 146.539062 380.101562 148.96875 380.101562 148.96875 381.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.605469 301.910156 C 230.605469 303.527344 228.175781 303.527344 228.175781 301.910156 C 228.175781 300.289062 230.605469 300.289062 230.605469 301.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.085938 301.523438 C 145.085938 303.144531 142.65625 303.144531 142.65625 301.523438 C 142.65625 299.902344 145.085938 299.902344 145.085938 301.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.617188 137.273438 C 243.617188 138.894531 241.1875 138.894531 241.1875 137.273438 C 241.1875 135.652344 243.617188 135.652344 243.617188 137.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.847656 393.097656 C 175.847656 394.714844 173.417969 394.714844 173.417969 393.097656 C 173.417969 391.476562 175.847656 391.476562 175.847656 393.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.847656 290.25 C 304.847656 291.871094 302.417969 291.871094 302.417969 290.25 C 302.417969 288.628906 304.847656 288.628906 304.847656 290.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.738281 245 C 122.738281 246.621094 120.308594 246.621094 120.308594 245 C 120.308594 243.378906 122.738281 243.378906 122.738281 245 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.375 258.691406 C 238.375 260.308594 235.945312 260.308594 235.945312 258.691406 C 235.945312 257.070312 238.375 257.070312 238.375 258.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.484375 217.355469 C 175.484375 218.976562 173.054688 218.976562 173.054688 217.355469 C 173.054688 215.734375 175.484375 215.734375 175.484375 217.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.746094 70.910156 L 192.378906 73.746094 L 189.109375 73.746094 Z M 190.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.089844 280.902344 C 321.089844 282.523438 318.660156 282.523438 318.660156 280.902344 C 318.660156 279.28125 321.089844 279.28125 321.089844 280.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.269531 307.511719 C 256.269531 309.132812 253.839844 309.132812 253.839844 307.511719 C 253.839844 305.890625 256.269531 305.890625 256.269531 307.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.949219 266.242188 C 299.949219 267.863281 297.519531 267.863281 297.519531 266.242188 C 297.519531 264.625 299.949219 264.625 299.949219 266.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.523438 244.0625 C 266.523438 245.683594 264.09375 245.683594 264.09375 244.0625 C 264.09375 242.441406 266.523438 242.441406 266.523438 244.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.648438 212.71875 C 146.648438 214.339844 144.21875 214.339844 144.21875 212.71875 C 144.21875 211.097656 146.648438 211.097656 146.648438 212.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.109375 210.519531 C 305.109375 212.136719 302.679688 212.136719 302.679688 210.519531 C 302.679688 208.898438 305.109375 208.898438 305.109375 210.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.527344 246.796875 C 187.527344 248.417969 185.097656 248.417969 185.097656 246.796875 C 185.097656 245.175781 187.527344 245.175781 187.527344 246.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.351562 373.953125 C 244.351562 375.574219 241.921875 375.574219 241.921875 373.953125 C 241.921875 372.335938 244.351562 372.335938 244.351562 373.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.46875 303.054688 C 205.46875 304.675781 203.039062 304.675781 203.039062 303.054688 C 203.039062 301.4375 205.46875 301.4375 205.46875 303.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.769531 138.234375 C 320.769531 139.855469 318.339844 139.855469 318.339844 138.234375 C 318.339844 136.613281 320.769531 136.613281 320.769531 138.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.367188 373.992188 C 297.367188 375.613281 294.9375 375.613281 294.9375 373.992188 C 294.9375 372.375 297.367188 372.375 297.367188 373.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.59375 173.53125 C 272.59375 175.152344 270.164062 175.152344 270.164062 173.53125 C 270.164062 171.910156 272.59375 171.910156 272.59375 173.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.632812 256.144531 C 291.632812 257.765625 289.203125 257.765625 289.203125 256.144531 C 289.203125 254.527344 291.632812 254.527344 291.632812 256.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.109375 126.167969 C 210.109375 127.789062 207.679688 127.789062 207.679688 126.167969 C 207.679688 124.546875 210.109375 124.546875 210.109375 126.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.085938 193.078125 C 282.085938 194.699219 279.652344 194.699219 279.652344 193.078125 C 279.652344 191.457031 282.085938 191.457031 282.085938 193.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.570312 254.953125 C 245.570312 256.570312 243.140625 256.570312 243.140625 254.953125 C 243.140625 253.332031 245.570312 253.332031 245.570312 254.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.117188 208.734375 C 264.117188 210.351562 261.6875 210.351562 261.6875 208.734375 C 261.6875 207.113281 264.117188 207.113281 264.117188 208.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.769531 248.683594 C 284.769531 250.300781 282.339844 250.300781 282.339844 248.683594 C 282.339844 247.0625 284.769531 247.0625 284.769531 248.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.917969 366.929688 C 211.917969 368.550781 209.488281 368.550781 209.488281 366.929688 C 209.488281 365.308594 211.917969 365.308594 211.917969 366.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.011719 190.238281 C 184.011719 191.855469 181.578125 191.855469 181.578125 190.238281 C 181.578125 188.617188 184.011719 188.617188 184.011719 190.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.582031 188.542969 C 283.582031 190.160156 281.152344 190.160156 281.152344 188.542969 C 281.152344 186.921875 283.582031 186.921875 283.582031 188.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.695312 239.445312 C 283.695312 241.066406 281.265625 241.066406 281.265625 239.445312 C 281.265625 237.824219 283.695312 237.824219 283.695312 239.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.929688 266.9375 C 298.929688 268.558594 296.5 268.558594 296.5 266.9375 C 296.5 265.320312 298.929688 265.320312 298.929688 266.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.109375 151.496094 C 264.109375 153.113281 261.679688 153.113281 261.679688 151.496094 C 261.679688 149.875 264.109375 149.875 264.109375 151.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.988281 202.183594 C 275.988281 203.804688 273.558594 203.804688 273.558594 202.183594 C 273.558594 200.5625 275.988281 200.5625 275.988281 202.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.191406 217.960938 C 280.191406 219.582031 277.761719 219.582031 277.761719 217.960938 C 277.761719 216.339844 280.191406 216.339844 280.191406 217.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.453125 265.296875 C 269.453125 266.917969 267.023438 266.917969 267.023438 265.296875 C 267.023438 263.675781 269.453125 263.675781 269.453125 265.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.40625 101.414062 C 221.40625 103.035156 218.976562 103.035156 218.976562 101.414062 C 218.976562 99.792969 221.40625 99.792969 221.40625 101.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.90625 296.390625 C 164.90625 298.011719 162.476562 298.011719 162.476562 296.390625 C 162.476562 294.769531 164.90625 294.769531 164.90625 296.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.820312 314.335938 C 261.820312 315.953125 259.390625 315.953125 259.390625 314.335938 C 259.390625 312.714844 261.820312 312.714844 261.820312 314.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.757812 255.207031 C 248.757812 256.828125 246.328125 256.828125 246.328125 255.207031 C 246.328125 253.589844 248.757812 253.589844 248.757812 255.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.816406 265.574219 C 294.816406 267.195312 292.386719 267.195312 292.386719 265.574219 C 292.386719 263.953125 294.816406 263.953125 294.816406 265.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.332031 321.769531 C 281.332031 323.390625 278.902344 323.390625 278.902344 321.769531 C 278.902344 320.148438 281.332031 320.148438 281.332031 321.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.902344 263.699219 C 256.902344 265.320312 254.472656 265.320312 254.472656 263.699219 C 254.472656 262.078125 256.902344 262.078125 256.902344 263.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.347656 243.027344 C 326.347656 244.644531 323.917969 244.644531 323.917969 243.027344 C 323.917969 241.40625 326.347656 241.40625 326.347656 243.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.789062 167.183594 C 281.789062 168.804688 279.359375 168.804688 279.359375 167.183594 C 279.359375 165.5625 281.789062 165.5625 281.789062 167.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.664062 418.691406 L 182.296875 415.855469 L 179.027344 415.855469 Z M 180.664062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.117188 398.941406 C 238.117188 400.558594 235.6875 400.558594 235.6875 398.941406 C 235.6875 397.320312 238.117188 397.320312 238.117188 398.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.316406 418.691406 L 263.953125 415.855469 L 260.679688 415.855469 Z M 262.316406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.628906 70.910156 L 227.265625 73.746094 L 223.992188 73.746094 Z M 225.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.730469 70.910156 L 183.367188 73.746094 L 180.097656 73.746094 Z M 181.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.820312 196.03125 C 293.820312 197.648438 291.386719 197.648438 291.386719 196.03125 C 291.386719 194.410156 293.820312 194.410156 293.820312 196.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.765625 361.257812 C 293.765625 362.878906 291.335938 362.878906 291.335938 361.257812 C 291.335938 359.640625 293.765625 359.640625 293.765625 361.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.4375 418.691406 L 311.074219 415.855469 L 307.800781 415.855469 Z M 309.4375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.613281 393.597656 C 192.613281 395.214844 190.179688 395.214844 190.179688 393.597656 C 190.179688 391.976562 192.613281 391.976562 192.613281 393.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.445312 310.175781 C 257.445312 311.792969 255.015625 311.792969 255.015625 310.175781 C 255.015625 308.554688 257.445312 308.554688 257.445312 310.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.613281 93.5 C 188.613281 95.121094 186.183594 95.121094 186.183594 93.5 C 186.183594 91.878906 188.613281 91.878906 188.613281 93.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.964844 353.5625 C 277.964844 355.183594 275.535156 355.183594 275.535156 353.5625 C 275.535156 351.941406 277.964844 351.941406 277.964844 353.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.414062 371.226562 C 280.414062 372.84375 277.984375 372.84375 277.984375 371.226562 C 277.984375 369.605469 280.414062 369.605469 280.414062 371.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.226562 255.476562 C 271.226562 257.097656 268.796875 257.097656 268.796875 255.476562 C 268.796875 253.855469 271.226562 253.855469 271.226562 255.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.78125 412.683594 C 310.78125 414.304688 308.351562 414.304688 308.351562 412.683594 C 308.351562 411.0625 310.78125 411.0625 310.78125 412.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.335938 144.554688 C 252.335938 146.175781 249.90625 146.175781 249.90625 144.554688 C 249.90625 142.933594 252.335938 142.933594 252.335938 144.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.859375 70.910156 L 155.496094 73.746094 L 152.222656 73.746094 Z M 153.859375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.246094 70.910156 L 191.882812 73.746094 L 188.609375 73.746094 Z M 190.246094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.019531 70.910156 L 240.65625 73.746094 L 237.386719 73.746094 Z M 239.019531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.089844 207.164062 C 238.089844 208.785156 235.660156 208.785156 235.660156 207.164062 C 235.660156 205.542969 238.089844 205.542969 238.089844 207.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.308594 70.910156 L 240.941406 73.746094 L 237.671875 73.746094 Z M 239.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.28125 208.535156 C 269.28125 210.15625 266.851562 210.15625 266.851562 208.535156 C 266.851562 206.917969 269.28125 206.917969 269.28125 208.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.882812 375.839844 C 119.882812 377.460938 117.453125 377.460938 117.453125 375.839844 C 117.453125 374.21875 119.882812 374.21875 119.882812 375.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.671875 393.011719 C 241.671875 394.628906 239.242188 394.628906 239.242188 393.011719 C 239.242188 391.390625 241.671875 391.390625 241.671875 393.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.980469 141 C 115.980469 142.621094 113.550781 142.621094 113.550781 141 C 113.550781 139.378906 115.980469 139.378906 115.980469 141 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.488281 70.910156 L 224.125 73.746094 L 220.851562 73.746094 Z M 222.488281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.148438 70.910156 L 233.785156 73.746094 L 230.515625 73.746094 Z M 232.148438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.753906 70.910156 L 202.390625 73.746094 L 199.117188 73.746094 Z M 200.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.734375 117.714844 C 249.734375 119.335938 247.304688 119.335938 247.304688 117.714844 C 247.304688 116.097656 249.734375 116.097656 249.734375 117.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.101562 70.910156 L 215.738281 73.746094 L 212.464844 73.746094 Z M 214.101562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.828125 418.691406 L 222.464844 415.855469 L 219.191406 415.855469 Z M 220.828125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.597656 70.910156 L 177.234375 73.746094 L 173.960938 73.746094 Z M 175.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.617188 284.363281 C 154.617188 285.980469 152.1875 285.980469 152.1875 284.363281 C 152.1875 282.742188 154.617188 282.742188 154.617188 284.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.375 285.941406 C 149.375 287.5625 146.945312 287.5625 146.945312 285.941406 C 146.945312 284.320312 149.375 284.320312 149.375 285.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.210938 312.675781 C 176.210938 314.296875 173.78125 314.296875 173.78125 312.675781 C 173.78125 311.054688 176.210938 311.054688 176.210938 312.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.828125 299.839844 C 144.828125 301.460938 142.398438 301.460938 142.398438 299.839844 C 142.398438 298.21875 144.828125 298.21875 144.828125 299.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.75 70.910156 L 134.386719 73.746094 L 131.113281 73.746094 Z M 132.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.308594 158.097656 C 196.308594 159.71875 193.878906 159.71875 193.878906 158.097656 C 193.878906 156.476562 196.308594 156.476562 196.308594 158.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.71875 99.640625 C 270.71875 101.261719 268.289062 101.261719 268.289062 99.640625 C 268.289062 98.019531 270.71875 98.019531 270.71875 99.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.949219 328.546875 C 313.949219 330.167969 311.515625 330.167969 311.515625 328.546875 C 311.515625 326.925781 313.949219 326.925781 313.949219 328.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.527344 193.09375 C 207.527344 194.710938 205.097656 194.710938 205.097656 193.09375 C 205.097656 191.472656 207.527344 191.472656 207.527344 193.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.027344 147.808594 C 303.027344 149.429688 300.597656 149.429688 300.597656 147.808594 C 300.597656 146.191406 303.027344 146.191406 303.027344 147.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.699219 234.144531 C 248.699219 235.761719 246.269531 235.761719 246.269531 234.144531 C 246.269531 232.523438 248.699219 232.523438 248.699219 234.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.0625 267.257812 C 238.0625 268.878906 235.632812 268.878906 235.632812 267.257812 C 235.632812 265.636719 238.0625 265.636719 238.0625 267.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.25 274.34375 C 250.25 275.964844 247.820312 275.964844 247.820312 274.34375 C 247.820312 272.722656 250.25 272.722656 250.25 274.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.589844 131.015625 C 174.589844 132.632812 172.160156 132.632812 172.160156 131.015625 C 172.160156 129.394531 174.589844 129.394531 174.589844 131.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.125 101.578125 C 230.125 103.199219 227.695312 103.199219 227.695312 101.578125 C 227.695312 99.957031 230.125 99.957031 230.125 101.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.183594 307.773438 C 263.183594 309.390625 260.753906 309.390625 260.753906 307.773438 C 260.753906 306.152344 263.183594 306.152344 263.183594 307.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.054688 70.910156 L 158.691406 73.746094 L 155.417969 73.746094 Z M 157.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.042969 263.269531 C 314.042969 264.890625 311.613281 264.890625 311.613281 263.269531 C 311.613281 261.648438 314.042969 261.648438 314.042969 263.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.523438 293.570312 C 278.523438 295.1875 276.09375 295.1875 276.09375 293.570312 C 276.09375 291.949219 278.523438 291.949219 278.523438 293.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.234375 270.488281 C 283.234375 272.109375 280.804688 272.109375 280.804688 270.488281 C 280.804688 268.867188 283.234375 268.867188 283.234375 270.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.242188 70.910156 L 294.878906 73.746094 L 291.605469 73.746094 Z M 293.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.140625 73.402344 C 126.140625 75.019531 123.710938 75.019531 123.710938 73.402344 C 123.710938 71.78125 126.140625 71.78125 126.140625 73.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.695312 240.050781 C 254.695312 241.671875 252.265625 241.671875 252.265625 240.050781 C 252.265625 238.433594 254.695312 238.433594 254.695312 240.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.296875 262.394531 C 289.296875 264.015625 286.867188 264.015625 286.867188 262.394531 C 286.867188 260.777344 289.296875 260.777344 289.296875 262.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.25 251.289062 C 346.25 252.910156 343.820312 252.910156 343.820312 251.289062 C 343.820312 249.667969 346.25 249.667969 346.25 251.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.109375 333.027344 C 263.109375 334.648438 260.679688 334.648438 260.679688 333.027344 C 260.679688 331.40625 263.109375 331.40625 263.109375 333.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.773438 316.53125 C 273.773438 318.152344 271.339844 318.152344 271.339844 316.53125 C 271.339844 314.910156 273.773438 314.910156 273.773438 316.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.527344 278.769531 C 269.527344 280.390625 267.097656 280.390625 267.097656 278.769531 C 267.097656 277.148438 269.527344 277.148438 269.527344 278.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.929688 70.910156 L 189.5625 73.746094 L 186.292969 73.746094 Z M 187.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.726562 187.234375 C 294.726562 188.855469 292.296875 188.855469 292.296875 187.234375 C 292.296875 185.613281 294.726562 185.613281 294.726562 187.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.820312 303.167969 C 208.820312 304.789062 206.390625 304.789062 206.390625 303.167969 C 206.390625 301.546875 208.820312 301.546875 208.820312 303.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.949219 255.140625 C 285.949219 256.761719 283.519531 256.761719 283.519531 255.140625 C 283.519531 253.519531 285.949219 253.519531 285.949219 255.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.628906 263.292969 C 158.628906 264.914062 156.199219 264.914062 156.199219 263.292969 C 156.199219 261.671875 158.628906 261.671875 158.628906 263.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.914062 258.710938 C 243.914062 260.328125 241.484375 260.328125 241.484375 258.710938 C 241.484375 257.089844 243.914062 257.089844 243.914062 258.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.921875 256.46875 C 308.921875 258.089844 306.492188 258.089844 306.492188 256.46875 C 306.492188 254.847656 308.921875 254.847656 308.921875 256.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.605469 70.910156 L 159.242188 73.746094 L 155.96875 73.746094 Z M 157.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.785156 266.886719 C 276.785156 268.503906 274.351562 268.503906 274.351562 266.886719 C 274.351562 265.265625 276.785156 265.265625 276.785156 266.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.988281 70.910156 L 130.625 73.746094 L 127.355469 73.746094 Z M 128.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.03125 231.882812 C 271.03125 233.503906 268.601562 233.503906 268.601562 231.882812 C 268.601562 230.261719 271.03125 230.261719 271.03125 231.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.53125 120.097656 C 317.53125 121.71875 315.101562 121.71875 315.101562 120.097656 C 315.101562 118.476562 317.53125 118.476562 317.53125 120.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.90625 305.792969 C 219.90625 307.414062 217.476562 307.414062 217.476562 305.792969 C 217.476562 304.175781 219.90625 304.175781 219.90625 305.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.324219 226.203125 C 277.324219 227.824219 274.894531 227.824219 274.894531 226.203125 C 274.894531 224.585938 277.324219 224.585938 277.324219 226.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.625 248.589844 C 129.625 250.210938 127.195312 250.210938 127.195312 248.589844 C 127.195312 246.96875 129.625 246.96875 129.625 248.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.472656 70.910156 L 279.109375 73.746094 L 275.835938 73.746094 Z M 277.472656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.882812 264.054688 C 231.882812 265.675781 229.453125 265.675781 229.453125 264.054688 C 229.453125 262.433594 231.882812 262.433594 231.882812 264.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.605469 296.429688 C 285.605469 298.050781 283.175781 298.050781 283.175781 296.429688 C 283.175781 294.808594 285.605469 294.808594 285.605469 296.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.753906 264.082031 C 295.753906 265.703125 293.324219 265.703125 293.324219 264.082031 C 293.324219 262.460938 295.753906 262.460938 295.753906 264.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.128906 221.390625 C 304.128906 223.007812 301.699219 223.007812 301.699219 221.390625 C 301.699219 219.769531 304.128906 219.769531 304.128906 221.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.929688 281.167969 C 222.929688 282.789062 220.5 282.789062 220.5 281.167969 C 220.5 279.546875 222.929688 279.546875 222.929688 281.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.253906 373.769531 C 148.253906 375.386719 145.820312 375.386719 145.820312 373.769531 C 145.820312 372.148438 148.253906 372.148438 148.253906 373.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.453125 235.328125 C 129.453125 236.949219 127.023438 236.949219 127.023438 235.328125 C 127.023438 233.707031 129.453125 233.707031 129.453125 235.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.691406 238.566406 C 201.691406 240.183594 199.261719 240.183594 199.261719 238.566406 C 199.261719 236.945312 201.691406 236.945312 201.691406 238.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.503906 161.90625 C 139.503906 163.527344 137.070312 163.527344 137.070312 161.90625 C 137.070312 160.289062 139.503906 160.289062 139.503906 161.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.207031 70.910156 L 119.84375 73.746094 L 116.570312 73.746094 Z M 118.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.902344 70.910156 L 169.535156 73.746094 L 166.265625 73.746094 Z M 167.902344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.285156 418.691406 L 151.921875 415.855469 L 148.652344 415.855469 Z M 150.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.316406 210.898438 C 174.316406 212.519531 171.882812 212.519531 171.882812 210.898438 C 171.882812 209.28125 174.316406 209.28125 174.316406 210.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 346.515625 70.910156 L 348.152344 73.746094 L 344.878906 73.746094 Z M 346.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.269531 76.207031 C 332.269531 77.828125 329.839844 77.828125 329.839844 76.207031 C 329.839844 74.585938 332.269531 74.585938 332.269531 76.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.421875 319.519531 C 312.421875 321.140625 309.992188 321.140625 309.992188 319.519531 C 309.992188 317.902344 312.421875 317.902344 312.421875 319.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.636719 289.09375 C 285.636719 290.714844 283.207031 290.714844 283.207031 289.09375 C 283.207031 287.476562 285.636719 287.476562 285.636719 289.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.347656 297.96875 C 191.347656 299.585938 188.917969 299.585938 188.917969 297.96875 C 188.917969 296.347656 191.347656 296.347656 191.347656 297.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.347656 267.949219 C 308.347656 269.570312 305.917969 269.570312 305.917969 267.949219 C 305.917969 266.332031 308.347656 266.332031 308.347656 267.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.417969 291.832031 C 248.417969 293.453125 245.988281 293.453125 245.988281 291.832031 C 245.988281 290.214844 248.417969 290.214844 248.417969 291.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.828125 418.691406 L 202.464844 415.855469 L 199.191406 415.855469 Z M 200.828125 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.070312 70.910156 L 217.707031 73.746094 L 214.4375 73.746094 Z M 216.070312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.9375 70.910156 L 228.570312 73.746094 L 225.300781 73.746094 Z M 226.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.25 326.089844 C 295.25 327.710938 292.820312 327.710938 292.820312 326.089844 C 292.820312 324.46875 295.25 324.46875 295.25 326.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.476562 70.910156 L 207.113281 73.746094 L 203.839844 73.746094 Z M 205.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.207031 283.300781 C 274.207031 284.921875 271.777344 284.921875 271.777344 283.300781 C 271.777344 281.679688 274.207031 281.679688 274.207031 283.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132 224.738281 C 132 226.355469 129.570312 226.355469 129.570312 224.738281 C 129.570312 223.117188 132 223.117188 132 224.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.300781 233.230469 C 323.300781 234.851562 320.871094 234.851562 320.871094 233.230469 C 320.871094 231.609375 323.300781 231.609375 323.300781 233.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.207031 304.410156 C 291.207031 306.027344 288.777344 306.027344 288.777344 304.410156 C 288.777344 302.789062 291.207031 302.789062 291.207031 304.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.984375 70.910156 L 161.621094 73.746094 L 158.347656 73.746094 Z M 159.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.605469 70.910156 L 160.242188 73.746094 L 156.96875 73.746094 Z M 158.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.644531 231.5625 C 299.644531 233.183594 297.214844 233.183594 297.214844 231.5625 C 297.214844 229.941406 299.644531 229.941406 299.644531 231.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.117188 70.910156 L 142.753906 73.746094 L 139.480469 73.746094 Z M 141.117188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.691406 70.910156 L 195.328125 73.746094 L 192.054688 73.746094 Z M 193.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.671875 219.671875 C 262.671875 221.292969 260.242188 221.292969 260.242188 219.671875 C 260.242188 218.050781 262.671875 218.050781 262.671875 219.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.046875 227.914062 C 248.046875 229.535156 245.613281 229.535156 245.613281 227.914062 C 245.613281 226.292969 248.046875 226.292969 248.046875 227.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.058594 222.066406 C 245.058594 223.6875 242.628906 223.6875 242.628906 222.066406 C 242.628906 220.449219 245.058594 220.449219 245.058594 222.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.296875 275.441406 C 213.296875 277.058594 210.867188 277.058594 210.867188 275.441406 C 210.867188 273.820312 213.296875 273.820312 213.296875 275.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.25 70.910156 L 168.886719 73.746094 L 165.613281 73.746094 Z M 167.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.410156 328.898438 C 142.410156 330.515625 139.980469 330.515625 139.980469 328.898438 C 139.980469 327.277344 142.410156 327.277344 142.410156 328.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.242188 184.792969 C 231.242188 186.410156 228.8125 186.410156 228.8125 184.792969 C 228.8125 183.171875 231.242188 183.171875 231.242188 184.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.769531 191.960938 C 267.769531 193.582031 265.339844 193.582031 265.339844 191.960938 C 265.339844 190.339844 267.769531 190.339844 267.769531 191.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.214844 70.910156 L 248.847656 73.746094 L 245.578125 73.746094 Z M 247.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.035156 303.554688 C 310.035156 305.171875 307.605469 305.171875 307.605469 303.554688 C 307.605469 301.933594 310.035156 301.933594 310.035156 303.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.636719 243.535156 C 279.636719 245.15625 277.207031 245.15625 277.207031 243.535156 C 277.207031 241.917969 279.636719 241.917969 279.636719 243.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.226562 304.308594 C 277.226562 305.929688 274.796875 305.929688 274.796875 304.308594 C 274.796875 302.6875 277.226562 302.6875 277.226562 304.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.65625 289.414062 C 248.65625 291.035156 246.226562 291.035156 246.226562 289.414062 C 246.226562 287.792969 248.65625 287.792969 248.65625 289.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.566406 333.261719 C 243.566406 334.882812 241.136719 334.882812 241.136719 333.261719 C 241.136719 331.644531 243.566406 331.644531 243.566406 333.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.882812 342.757812 C 139.882812 344.378906 137.453125 344.378906 137.453125 342.757812 C 137.453125 341.136719 139.882812 341.136719 139.882812 342.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.109375 275.351562 C 311.109375 276.972656 308.679688 276.972656 308.679688 275.351562 C 308.679688 273.734375 311.109375 273.734375 311.109375 275.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.113281 303.113281 C 208.113281 304.734375 205.683594 304.734375 205.683594 303.113281 C 205.683594 301.492188 208.113281 301.492188 208.113281 303.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.652344 213.339844 C 155.652344 214.960938 153.222656 214.960938 153.222656 213.339844 C 153.222656 211.71875 155.652344 211.71875 155.652344 213.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.097656 232.804688 C 305.097656 234.425781 302.667969 234.425781 302.667969 232.804688 C 302.667969 231.1875 305.097656 231.1875 305.097656 232.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.753906 75.117188 C 236.753906 76.738281 234.324219 76.738281 234.324219 75.117188 C 234.324219 73.5 236.753906 73.5 236.753906 75.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.167969 130.019531 C 133.167969 131.640625 130.738281 131.640625 130.738281 130.019531 C 130.738281 128.402344 133.167969 128.402344 133.167969 130.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.757812 245.089844 C 169.757812 246.710938 167.328125 246.710938 167.328125 245.089844 C 167.328125 243.46875 169.757812 243.46875 169.757812 245.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.570312 274.699219 C 317.570312 276.320312 315.140625 276.320312 315.140625 274.699219 C 315.140625 273.082031 317.570312 273.082031 317.570312 274.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.648438 70.910156 L 256.285156 73.746094 L 253.011719 73.746094 Z M 254.648438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.050781 70.910156 L 140.6875 73.746094 L 137.414062 73.746094 Z M 139.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.746094 129.027344 C 192.746094 130.648438 190.316406 130.648438 190.316406 129.027344 C 190.316406 127.40625 192.746094 127.40625 192.746094 129.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.136719 174.808594 C 253.136719 176.429688 250.707031 176.429688 250.707031 174.808594 C 250.707031 173.191406 253.136719 173.191406 253.136719 174.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.75 217.265625 C 226.75 218.886719 224.320312 218.886719 224.320312 217.265625 C 224.320312 215.644531 226.75 215.644531 226.75 217.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.867188 207.125 C 216.867188 208.742188 214.4375 208.742188 214.4375 207.125 C 214.4375 205.503906 216.867188 205.503906 216.867188 207.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.375 70.910156 L 140.011719 73.746094 L 136.738281 73.746094 Z M 138.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.023438 415.929688 C 299.023438 417.550781 296.59375 417.550781 296.59375 415.929688 C 296.59375 414.308594 299.023438 414.308594 299.023438 415.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.417969 70.910156 L 154.054688 73.746094 L 150.78125 73.746094 Z M 152.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.304688 312.359375 C 253.304688 313.980469 250.875 313.980469 250.875 312.359375 C 250.875 310.742188 253.304688 310.742188 253.304688 312.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.765625 235.953125 C 291.765625 237.574219 289.335938 237.574219 289.335938 235.953125 C 289.335938 234.335938 291.765625 234.335938 291.765625 235.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.1875 259.023438 C 227.1875 260.644531 224.757812 260.644531 224.757812 259.023438 C 224.757812 257.40625 227.1875 257.40625 227.1875 259.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.011719 117.179688 C 119.011719 118.800781 116.582031 118.800781 116.582031 117.179688 C 116.582031 115.558594 119.011719 115.558594 119.011719 117.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.945312 239.75 C 145.945312 241.371094 143.515625 241.371094 143.515625 239.75 C 143.515625 238.132812 145.945312 238.132812 145.945312 239.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.191406 335.160156 C 217.191406 336.777344 214.761719 336.777344 214.761719 335.160156 C 214.761719 333.539062 217.191406 333.539062 217.191406 335.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.847656 169.65625 C 262.847656 171.273438 260.417969 171.273438 260.417969 169.65625 C 260.417969 168.035156 262.847656 168.035156 262.847656 169.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.570312 156.003906 C 270.570312 157.625 268.140625 157.625 268.140625 156.003906 C 268.140625 154.386719 270.570312 154.386719 270.570312 156.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.515625 202.933594 C 267.515625 204.554688 265.085938 204.554688 265.085938 202.933594 C 265.085938 201.316406 267.515625 201.316406 267.515625 202.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.796875 231.996094 C 227.796875 233.613281 225.367188 233.613281 225.367188 231.996094 C 225.367188 230.375 227.796875 230.375 227.796875 231.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.839844 237.503906 C 161.839844 239.125 159.410156 239.125 159.410156 237.503906 C 159.410156 235.882812 161.839844 235.882812 161.839844 237.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.800781 244.140625 C 269.800781 245.761719 267.371094 245.761719 267.371094 244.140625 C 267.371094 242.523438 269.800781 242.523438 269.800781 244.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.050781 224.003906 C 234.050781 225.621094 231.621094 225.621094 231.621094 224.003906 C 231.621094 222.382812 234.050781 222.382812 234.050781 224.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.675781 291.945312 C 174.675781 293.566406 172.246094 293.566406 172.246094 291.945312 C 172.246094 290.328125 174.675781 290.328125 174.675781 291.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.230469 276.570312 C 279.230469 278.191406 276.800781 278.191406 276.800781 276.570312 C 276.800781 274.953125 279.230469 274.953125 279.230469 276.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.324219 277.957031 C 162.324219 279.578125 159.894531 279.578125 159.894531 277.957031 C 159.894531 276.339844 162.324219 276.339844 162.324219 277.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.828125 228.589844 C 159.828125 230.210938 157.394531 230.210938 157.394531 228.589844 C 157.394531 226.96875 159.828125 226.96875 159.828125 228.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.035156 359.148438 C 296.035156 360.769531 293.605469 360.769531 293.605469 359.148438 C 293.605469 357.527344 296.035156 357.527344 296.035156 359.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.957031 312 C 341.957031 313.621094 339.527344 313.621094 339.527344 312 C 339.527344 310.378906 341.957031 310.378906 341.957031 312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.050781 70.910156 L 173.6875 73.746094 L 170.414062 73.746094 Z M 172.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.242188 123.546875 C 159.242188 125.167969 156.8125 125.167969 156.8125 123.546875 C 156.8125 121.925781 159.242188 121.925781 159.242188 123.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.34375 229.484375 C 314.34375 231.101562 311.910156 231.101562 311.910156 229.484375 C 311.910156 227.863281 314.34375 227.863281 314.34375 229.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.28125 311.949219 C 278.28125 313.566406 275.847656 313.566406 275.847656 311.949219 C 275.847656 310.328125 278.28125 310.328125 278.28125 311.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.667969 223.269531 C 326.667969 224.890625 324.238281 224.890625 324.238281 223.269531 C 324.238281 221.648438 326.667969 221.648438 326.667969 223.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.265625 206.097656 C 307.265625 207.71875 304.835938 207.71875 304.835938 206.097656 C 304.835938 204.480469 307.265625 204.480469 307.265625 206.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 360.851562 223.289062 C 360.851562 224.910156 358.421875 224.910156 358.421875 223.289062 C 358.421875 221.667969 360.851562 221.667969 360.851562 223.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.183594 275.78125 C 277.183594 277.398438 274.753906 277.398438 274.753906 275.78125 C 274.753906 274.160156 277.183594 274.160156 277.183594 275.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.964844 277.628906 C 167.964844 279.246094 165.535156 279.246094 165.535156 277.628906 C 165.535156 276.007812 167.964844 276.007812 167.964844 277.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.789062 240.269531 C 242.789062 241.886719 240.359375 241.886719 240.359375 240.269531 C 240.359375 238.648438 242.789062 238.648438 242.789062 240.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.160156 281.941406 C 236.160156 283.5625 233.726562 283.5625 233.726562 281.941406 C 233.726562 280.324219 236.160156 280.324219 236.160156 281.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.878906 269.238281 C 182.878906 270.859375 180.449219 270.859375 180.449219 269.238281 C 180.449219 267.617188 182.878906 267.617188 182.878906 269.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.222656 261.039062 C 241.222656 262.660156 238.792969 262.660156 238.792969 261.039062 C 238.792969 259.417969 241.222656 259.417969 241.222656 261.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.136719 242.945312 C 299.136719 244.566406 296.707031 244.566406 296.707031 242.945312 C 296.707031 241.328125 299.136719 241.328125 299.136719 242.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.140625 290.597656 C 275.140625 292.21875 272.710938 292.21875 272.710938 290.597656 C 272.710938 288.980469 275.140625 288.980469 275.140625 290.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.773438 278.105469 C 265.773438 279.722656 263.34375 279.722656 263.34375 278.105469 C 263.34375 276.484375 265.773438 276.484375 265.773438 278.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.507812 80.566406 C 287.507812 82.1875 285.078125 82.1875 285.078125 80.566406 C 285.078125 78.945312 287.507812 78.945312 287.507812 80.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328 146.292969 C 328 147.910156 325.570312 147.910156 325.570312 146.292969 C 325.570312 144.671875 328 144.671875 328 146.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.214844 213.460938 C 234.214844 215.082031 231.785156 215.082031 231.785156 213.460938 C 231.785156 211.839844 234.214844 211.839844 234.214844 213.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.371094 256.824219 C 129.371094 258.445312 126.941406 258.445312 126.941406 256.824219 C 126.941406 255.203125 129.371094 255.203125 129.371094 256.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.433594 179.902344 C 235.433594 181.523438 233.003906 181.523438 233.003906 179.902344 C 233.003906 178.28125 235.433594 178.28125 235.433594 179.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.515625 272.050781 C 170.515625 273.667969 168.085938 273.667969 168.085938 272.050781 C 168.085938 270.429688 170.515625 270.429688 170.515625 272.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.59375 312.890625 C 251.59375 314.511719 249.164062 314.511719 249.164062 312.890625 C 249.164062 311.269531 251.59375 311.269531 251.59375 312.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.671875 70.910156 L 136.308594 73.746094 L 133.035156 73.746094 Z M 134.671875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.832031 237.898438 C 216.832031 239.519531 214.402344 239.519531 214.402344 237.898438 C 214.402344 236.277344 216.832031 236.277344 216.832031 237.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.023438 271.871094 C 306.023438 273.492188 303.59375 273.492188 303.59375 271.871094 C 303.59375 270.25 306.023438 270.25 306.023438 271.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.550781 208.082031 C 256.550781 209.699219 254.121094 209.699219 254.121094 208.082031 C 254.121094 206.460938 256.550781 206.460938 256.550781 208.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.460938 195.378906 C 286.460938 197 284.03125 197 284.03125 195.378906 C 284.03125 193.757812 286.460938 193.757812 286.460938 195.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.605469 222.179688 C 236.605469 223.800781 234.175781 223.800781 234.175781 222.179688 C 234.175781 220.558594 236.605469 220.558594 236.605469 222.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.75 263.476562 C 269.75 265.097656 267.320312 265.097656 267.320312 263.476562 C 267.320312 261.855469 269.75 261.855469 269.75 263.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.453125 252.507812 C 218.453125 254.128906 216.023438 254.128906 216.023438 252.507812 C 216.023438 250.886719 218.453125 250.886719 218.453125 252.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.308594 238.945312 C 281.308594 240.566406 278.878906 240.566406 278.878906 238.945312 C 278.878906 237.324219 281.308594 237.324219 281.308594 238.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.152344 340.972656 C 129.152344 342.59375 126.722656 342.59375 126.722656 340.972656 C 126.722656 339.351562 129.152344 339.351562 129.152344 340.972656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.089844 418.691406 L 146.726562 415.855469 L 143.453125 415.855469 Z M 145.089844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.785156 271.019531 C 259.785156 272.640625 257.355469 272.640625 257.355469 271.019531 C 257.355469 269.402344 259.785156 269.402344 259.785156 271.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.980469 145.222656 C 251.980469 146.84375 249.550781 146.84375 249.550781 145.222656 C 249.550781 143.601562 251.980469 143.601562 251.980469 145.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.726562 140.664062 C 254.726562 142.285156 252.296875 142.285156 252.296875 140.664062 C 252.296875 139.042969 254.726562 139.042969 254.726562 140.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.066406 203.074219 C 234.066406 204.695312 231.636719 204.695312 231.636719 203.074219 C 231.636719 201.457031 234.066406 201.457031 234.066406 203.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.980469 199.761719 C 228.980469 201.378906 226.550781 201.378906 226.550781 199.761719 C 226.550781 198.140625 228.980469 198.140625 228.980469 199.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.816406 321.667969 C 136.816406 323.289062 134.386719 323.289062 134.386719 321.667969 C 134.386719 320.046875 136.816406 320.046875 136.816406 321.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.121094 208.53125 C 225.121094 210.152344 222.691406 210.152344 222.691406 208.53125 C 222.691406 206.910156 225.121094 206.910156 225.121094 208.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.289062 166.835938 C 130.289062 168.457031 127.859375 168.457031 127.859375 166.835938 C 127.859375 165.214844 130.289062 165.214844 130.289062 166.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.921875 258.792969 C 323.921875 260.410156 321.492188 260.410156 321.492188 258.792969 C 321.492188 257.171875 323.921875 257.171875 323.921875 258.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.441406 228.203125 C 300.441406 229.820312 298.011719 229.820312 298.011719 228.203125 C 298.011719 226.582031 300.441406 226.582031 300.441406 228.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.769531 229.28125 C 315.769531 230.902344 313.339844 230.902344 313.339844 229.28125 C 313.339844 227.660156 315.769531 227.660156 315.769531 229.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.492188 226.332031 C 235.492188 227.953125 233.0625 227.953125 233.0625 226.332031 C 233.0625 224.714844 235.492188 224.714844 235.492188 226.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.265625 252.589844 C 259.265625 254.207031 256.835938 254.207031 256.835938 252.589844 C 256.835938 250.96875 259.265625 250.96875 259.265625 252.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.621094 101.367188 C 270.621094 102.988281 268.191406 102.988281 268.191406 101.367188 C 268.191406 99.75 270.621094 99.75 270.621094 101.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.351562 101.449219 C 253.351562 103.070312 250.921875 103.070312 250.921875 101.449219 C 250.921875 99.832031 253.351562 99.832031 253.351562 101.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.246094 70.910156 L 228.882812 73.746094 L 225.609375 73.746094 Z M 227.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.90625 256.304688 C 290.90625 257.921875 288.476562 257.921875 288.476562 256.304688 C 288.476562 254.683594 290.90625 254.683594 290.90625 256.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.191406 292.3125 C 250.191406 293.933594 247.761719 293.933594 247.761719 292.3125 C 247.761719 290.695312 250.191406 290.695312 250.191406 292.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.875 204.609375 C 298.875 206.230469 296.445312 206.230469 296.445312 204.609375 C 296.445312 202.992188 298.875 202.992188 298.875 204.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.582031 224.542969 C 206.582031 226.164062 204.152344 226.164062 204.152344 224.542969 C 204.152344 222.925781 206.582031 222.925781 206.582031 224.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.496094 293.042969 C 314.496094 294.664062 312.0625 294.664062 312.0625 293.042969 C 312.0625 291.421875 314.496094 291.421875 314.496094 293.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.167969 144.238281 C 174.167969 145.859375 171.738281 145.859375 171.738281 144.238281 C 171.738281 142.617188 174.167969 142.617188 174.167969 144.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.101562 252.742188 C 246.101562 254.359375 243.671875 254.359375 243.671875 252.742188 C 243.671875 251.121094 246.101562 251.121094 246.101562 252.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.628906 215.363281 C 259.628906 216.980469 257.199219 216.980469 257.199219 215.363281 C 257.199219 213.742188 259.628906 213.742188 259.628906 215.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.28125 418.691406 L 307.917969 415.855469 L 304.644531 415.855469 Z M 306.28125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.421875 203.90625 C 288.421875 205.523438 285.992188 205.523438 285.992188 203.90625 C 285.992188 202.285156 288.421875 202.285156 288.421875 203.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.1875 273.054688 C 224.1875 274.675781 221.757812 274.675781 221.757812 273.054688 C 221.757812 271.4375 224.1875 271.4375 224.1875 273.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.695312 272.171875 C 295.695312 273.792969 293.265625 273.792969 293.265625 272.171875 C 293.265625 270.550781 295.695312 270.550781 295.695312 272.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.84375 213.417969 C 229.84375 215.035156 227.414062 215.035156 227.414062 213.417969 C 227.414062 211.796875 229.84375 211.796875 229.84375 213.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.734375 206.609375 C 249.734375 208.230469 247.304688 208.230469 247.304688 206.609375 C 247.304688 204.988281 249.734375 204.988281 249.734375 206.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.613281 70.910156 L 246.25 73.746094 L 242.976562 73.746094 Z M 244.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.101562 224.625 C 201.101562 226.242188 198.671875 226.242188 198.671875 224.625 C 198.671875 223.003906 201.101562 223.003906 201.101562 224.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.792969 255.429688 C 294.792969 257.050781 292.363281 257.050781 292.363281 255.429688 C 292.363281 253.808594 294.792969 253.808594 294.792969 255.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.644531 204.859375 C 266.644531 206.480469 264.214844 206.480469 264.214844 204.859375 C 264.214844 203.238281 266.644531 203.238281 266.644531 204.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.191406 146.804688 C 198.191406 148.425781 195.761719 148.425781 195.761719 146.804688 C 195.761719 145.183594 198.191406 145.183594 198.191406 146.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.726562 220.453125 C 163.726562 222.074219 161.296875 222.074219 161.296875 220.453125 C 161.296875 218.832031 163.726562 218.832031 163.726562 220.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.433594 70.910156 L 175.070312 73.746094 L 171.796875 73.746094 Z M 173.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.816406 143.101562 C 175.816406 144.722656 173.386719 144.722656 173.386719 143.101562 C 173.386719 141.480469 175.816406 141.480469 175.816406 143.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.683594 243.40625 C 279.683594 245.023438 277.25 245.023438 277.25 243.40625 C 277.25 241.785156 279.683594 241.785156 279.683594 243.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.371094 264.613281 C 179.371094 266.230469 176.941406 266.230469 176.941406 264.613281 C 176.941406 262.992188 179.371094 262.992188 179.371094 264.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.246094 260.144531 C 274.246094 261.761719 271.816406 261.761719 271.816406 260.144531 C 271.816406 258.523438 274.246094 258.523438 274.246094 260.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.808594 236.15625 C 283.808594 237.777344 281.378906 237.777344 281.378906 236.15625 C 281.378906 234.539062 283.808594 234.539062 283.808594 236.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296 263.695312 C 296 265.316406 293.570312 265.316406 293.570312 263.695312 C 293.570312 262.078125 296 262.078125 296 263.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.300781 242.242188 C 289.300781 243.863281 286.871094 243.863281 286.871094 242.242188 C 286.871094 240.625 289.300781 240.625 289.300781 242.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.253906 228.808594 C 280.253906 230.429688 277.824219 230.429688 277.824219 228.808594 C 277.824219 227.191406 280.253906 227.191406 280.253906 228.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.320312 342.984375 C 264.320312 344.601562 261.890625 344.601562 261.890625 342.984375 C 261.890625 341.363281 264.320312 341.363281 264.320312 342.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.257812 316.597656 C 184.257812 318.214844 181.828125 318.214844 181.828125 316.597656 C 181.828125 314.976562 184.257812 314.976562 184.257812 316.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.742188 238.675781 C 282.742188 240.296875 280.3125 240.296875 280.3125 238.675781 C 280.3125 237.054688 282.742188 237.054688 282.742188 238.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.863281 304.160156 C 280.863281 305.78125 278.433594 305.78125 278.433594 304.160156 C 278.433594 302.539062 280.863281 302.539062 280.863281 304.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.542969 281.332031 C 339.542969 282.953125 337.113281 282.953125 337.113281 281.332031 C 337.113281 279.710938 339.542969 279.710938 339.542969 281.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.152344 265.835938 C 141.152344 267.457031 138.722656 267.457031 138.722656 265.835938 C 138.722656 264.214844 141.152344 264.214844 141.152344 265.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.441406 70.910156 L 196.078125 73.746094 L 192.804688 73.746094 Z M 194.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.679688 120.582031 C 310.679688 122.203125 308.25 122.203125 308.25 120.582031 C 308.25 118.964844 310.679688 118.964844 310.679688 120.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.246094 245.226562 C 273.246094 246.84375 270.816406 246.84375 270.816406 245.226562 C 270.816406 243.605469 273.246094 243.605469 273.246094 245.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.320312 70.910156 L 234.957031 73.746094 L 231.683594 73.746094 Z M 233.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.949219 217.886719 C 172.949219 219.507812 170.519531 219.507812 170.519531 217.886719 C 170.519531 216.265625 172.949219 216.265625 172.949219 217.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.816406 166.882812 C 266.816406 168.503906 264.386719 168.503906 264.386719 166.882812 C 264.386719 165.261719 266.816406 165.261719 266.816406 166.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.488281 401.140625 C 198.488281 402.757812 196.054688 402.757812 196.054688 401.140625 C 196.054688 399.519531 198.488281 399.519531 198.488281 401.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.59375 218.972656 C 314.59375 220.589844 312.164062 220.589844 312.164062 218.972656 C 312.164062 217.351562 314.59375 217.351562 314.59375 218.972656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.910156 70.910156 L 304.546875 73.746094 L 301.273438 73.746094 Z M 302.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.828125 300.027344 C 263.828125 301.648438 261.398438 301.648438 261.398438 300.027344 C 261.398438 298.40625 263.828125 298.40625 263.828125 300.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.582031 307.332031 C 237.582031 308.953125 235.152344 308.953125 235.152344 307.332031 C 235.152344 305.710938 237.582031 305.710938 237.582031 307.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.972656 418.691406 L 269.605469 415.855469 L 266.335938 415.855469 Z M 267.972656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.144531 327.863281 C 268.144531 329.484375 265.714844 329.484375 265.714844 327.863281 C 265.714844 326.242188 268.144531 326.242188 268.144531 327.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.972656 418.691406 L 292.609375 415.855469 L 289.335938 415.855469 Z M 290.972656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.066406 343.339844 C 318.066406 344.960938 315.636719 344.960938 315.636719 343.339844 C 315.636719 341.722656 318.066406 341.722656 318.066406 343.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.476562 258.789062 C 298.476562 260.410156 296.046875 260.410156 296.046875 258.789062 C 296.046875 257.167969 298.476562 257.167969 298.476562 258.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.296875 345.730469 C 300.296875 347.351562 297.867188 347.351562 297.867188 345.730469 C 297.867188 344.109375 300.296875 344.109375 300.296875 345.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.425781 346.503906 C 327.425781 348.125 324.996094 348.125 324.996094 346.503906 C 324.996094 344.882812 327.425781 344.882812 327.425781 346.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.785156 289.554688 C 155.785156 291.175781 153.355469 291.175781 153.355469 289.554688 C 153.355469 287.9375 155.785156 287.9375 155.785156 289.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.445312 381.289062 C 277.445312 382.910156 275.015625 382.910156 275.015625 381.289062 C 275.015625 379.667969 277.445312 379.667969 277.445312 381.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.160156 214.6875 C 303.160156 216.308594 300.730469 216.308594 300.730469 214.6875 C 300.730469 213.070312 303.160156 213.070312 303.160156 214.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.914062 247.171875 C 295.914062 248.792969 293.484375 248.792969 293.484375 247.171875 C 293.484375 245.554688 295.914062 245.554688 295.914062 247.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.382812 254.332031 C 288.382812 255.953125 285.953125 255.953125 285.953125 254.332031 C 285.953125 252.710938 288.382812 252.710938 288.382812 254.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.785156 300.566406 C 254.785156 302.183594 252.355469 302.183594 252.355469 300.566406 C 252.355469 298.945312 254.785156 298.945312 254.785156 300.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.351562 70.910156 L 236.984375 73.746094 L 233.714844 73.746094 Z M 235.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.429688 361.328125 C 257.429688 362.949219 255 362.949219 255 361.328125 C 255 359.707031 257.429688 359.707031 257.429688 361.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.109375 342.582031 C 286.109375 344.203125 283.675781 344.203125 283.675781 342.582031 C 283.675781 340.964844 286.109375 340.964844 286.109375 342.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.089844 191.742188 C 286.089844 193.359375 283.660156 193.359375 283.660156 191.742188 C 283.660156 190.121094 286.089844 190.121094 286.089844 191.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.371094 280.695312 C 259.371094 282.316406 256.941406 282.316406 256.941406 280.695312 C 256.941406 279.074219 259.371094 279.074219 259.371094 280.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.0625 295.550781 C 274.0625 297.171875 271.632812 297.171875 271.632812 295.550781 C 271.632812 293.929688 274.0625 293.929688 274.0625 295.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.582031 224.683594 C 310.582031 226.300781 308.152344 226.300781 308.152344 224.683594 C 308.152344 223.0625 310.582031 223.0625 310.582031 224.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.921875 239.855469 C 266.921875 241.476562 264.492188 241.476562 264.492188 239.855469 C 264.492188 238.234375 266.921875 238.234375 266.921875 239.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.292969 256.046875 C 250.292969 257.667969 247.863281 257.667969 247.863281 256.046875 C 247.863281 254.425781 250.292969 254.425781 250.292969 256.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.863281 418.691406 L 270.5 415.855469 L 267.226562 415.855469 Z M 268.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.105469 228.109375 C 274.105469 229.730469 271.675781 229.730469 271.675781 228.109375 C 271.675781 226.488281 274.105469 226.488281 274.105469 228.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.414062 267.039062 C 207.414062 268.660156 204.984375 268.660156 204.984375 267.039062 C 204.984375 265.417969 207.414062 265.417969 207.414062 267.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.414062 278.980469 C 210.414062 280.601562 207.984375 280.601562 207.984375 278.980469 C 207.984375 277.359375 210.414062 277.359375 210.414062 278.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.195312 265.261719 C 226.195312 266.882812 223.765625 266.882812 223.765625 265.261719 C 223.765625 263.640625 226.195312 263.640625 226.195312 265.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.664062 277.480469 C 273.664062 279.101562 271.234375 279.101562 271.234375 277.480469 C 271.234375 275.863281 273.664062 275.863281 273.664062 277.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.773438 335.726562 C 265.773438 337.347656 263.34375 337.347656 263.34375 335.726562 C 263.34375 334.105469 265.773438 334.105469 265.773438 335.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.914062 70.910156 L 172.550781 73.746094 L 169.277344 73.746094 Z M 170.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.707031 302.15625 C 257.707031 303.777344 255.277344 303.777344 255.277344 302.15625 C 255.277344 300.539062 257.707031 300.539062 257.707031 302.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.390625 70.910156 L 217.023438 73.746094 L 213.753906 73.746094 Z M 215.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.964844 287.457031 C 327.964844 289.078125 325.535156 289.078125 325.535156 287.457031 C 325.535156 285.835938 327.964844 285.835938 327.964844 287.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.539062 311.878906 C 311.539062 313.5 309.109375 313.5 309.109375 311.878906 C 309.109375 310.257812 311.539062 310.257812 311.539062 311.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.558594 236.574219 C 144.558594 238.195312 142.128906 238.195312 142.128906 236.574219 C 142.128906 234.953125 144.558594 234.953125 144.558594 236.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.570312 270.066406 C 280.570312 271.6875 278.140625 271.6875 278.140625 270.066406 C 278.140625 268.445312 280.570312 268.445312 280.570312 270.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.578125 200.359375 C 217.578125 201.980469 215.148438 201.980469 215.148438 200.359375 C 215.148438 198.742188 217.578125 198.742188 217.578125 200.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.832031 145.714844 C 228.832031 147.335938 226.402344 147.335938 226.402344 145.714844 C 226.402344 144.09375 228.832031 144.09375 228.832031 145.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.496094 246.640625 C 300.496094 248.261719 298.066406 248.261719 298.066406 246.640625 C 298.066406 245.019531 300.496094 245.019531 300.496094 246.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.351562 248.941406 C 319.351562 250.5625 316.921875 250.5625 316.921875 248.941406 C 316.921875 247.320312 319.351562 247.320312 319.351562 248.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.625 70.910156 L 141.261719 73.746094 L 137.988281 73.746094 Z M 139.625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.886719 185.242188 C 198.886719 186.859375 196.457031 186.859375 196.457031 185.242188 C 196.457031 183.621094 198.886719 183.621094 198.886719 185.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.035156 151.78125 C 250.035156 153.402344 247.601562 153.402344 247.601562 151.78125 C 247.601562 150.164062 250.035156 150.164062 250.035156 151.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.527344 121.765625 C 185.527344 123.386719 183.097656 123.386719 183.097656 121.765625 C 183.097656 120.148438 185.527344 120.148438 185.527344 121.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.796875 161.71875 C 168.796875 163.339844 166.367188 163.339844 166.367188 161.71875 C 166.367188 160.097656 168.796875 160.097656 168.796875 161.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.0625 310.191406 C 267.0625 311.8125 264.632812 311.8125 264.632812 310.191406 C 264.632812 308.570312 267.0625 308.570312 267.0625 310.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.480469 256.308594 C 302.480469 257.929688 300.050781 257.929688 300.050781 256.308594 C 300.050781 254.6875 302.480469 254.6875 302.480469 256.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.855469 219.238281 C 264.855469 220.859375 262.425781 220.859375 262.425781 219.238281 C 262.425781 217.621094 264.855469 217.621094 264.855469 219.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.9375 278.777344 C 239.9375 280.398438 237.507812 280.398438 237.507812 278.777344 C 237.507812 277.15625 239.9375 277.15625 239.9375 278.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.164062 243.113281 C 273.164062 244.734375 270.734375 244.734375 270.734375 243.113281 C 270.734375 241.496094 273.164062 241.496094 273.164062 243.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 360.246094 212.398438 C 360.246094 214.019531 357.816406 214.019531 357.816406 212.398438 C 357.816406 210.78125 360.246094 210.78125 360.246094 212.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.417969 227.136719 C 269.417969 228.757812 266.988281 228.757812 266.988281 227.136719 C 266.988281 225.515625 269.417969 225.515625 269.417969 227.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.855469 257.097656 C 234.855469 258.71875 232.425781 258.71875 232.425781 257.097656 C 232.425781 255.476562 234.855469 255.476562 234.855469 257.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.050781 143.75 C 302.050781 145.371094 299.621094 145.371094 299.621094 143.75 C 299.621094 142.132812 302.050781 142.132812 302.050781 143.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.277344 418.691406 L 275.914062 415.855469 L 272.640625 415.855469 Z M 274.277344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.800781 262.113281 C 253.800781 263.734375 251.371094 263.734375 251.371094 262.113281 C 251.371094 260.496094 253.800781 260.496094 253.800781 262.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.914062 90.523438 C 140.914062 92.140625 138.484375 92.140625 138.484375 90.523438 C 138.484375 88.902344 140.914062 88.902344 140.914062 90.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.476562 208.820312 C 322.476562 210.4375 320.046875 210.4375 320.046875 208.820312 C 320.046875 207.199219 322.476562 207.199219 322.476562 208.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.21875 122.304688 C 287.21875 123.925781 284.785156 123.925781 284.785156 122.304688 C 284.785156 120.683594 287.21875 120.683594 287.21875 122.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.808594 167.257812 C 283.808594 168.878906 281.378906 168.878906 281.378906 167.257812 C 281.378906 165.636719 283.808594 165.636719 283.808594 167.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.773438 200.1875 C 279.773438 201.804688 277.34375 201.804688 277.34375 200.1875 C 277.34375 198.566406 279.773438 198.566406 279.773438 200.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.121094 234.96875 C 315.121094 236.589844 312.691406 236.589844 312.691406 234.96875 C 312.691406 233.347656 315.121094 233.347656 315.121094 234.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.652344 131.125 C 224.652344 132.742188 222.222656 132.742188 222.222656 131.125 C 222.222656 129.503906 224.652344 129.503906 224.652344 131.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.8125 70.910156 L 272.449219 73.746094 L 269.175781 73.746094 Z M 270.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.0625 363.648438 C 302.0625 365.269531 299.632812 365.269531 299.632812 363.648438 C 299.632812 362.027344 302.0625 362.027344 302.0625 363.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.890625 150.222656 C 278.890625 151.84375 276.460938 151.84375 276.460938 150.222656 C 276.460938 148.601562 278.890625 148.601562 278.890625 150.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.082031 334.570312 C 258.082031 336.191406 255.652344 336.191406 255.652344 334.570312 C 255.652344 332.953125 258.082031 332.953125 258.082031 334.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.582031 186.828125 C 128.582031 188.445312 126.152344 188.445312 126.152344 186.828125 C 126.152344 185.207031 128.582031 185.207031 128.582031 186.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.1875 231.664062 C 282.1875 233.285156 279.757812 233.285156 279.757812 231.664062 C 279.757812 230.046875 282.1875 230.046875 282.1875 231.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.492188 225.664062 C 290.492188 227.285156 288.0625 227.285156 288.0625 225.664062 C 288.0625 224.046875 290.492188 224.046875 290.492188 225.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.902344 70.910156 L 231.539062 73.746094 L 228.265625 73.746094 Z M 229.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.449219 103.742188 C 149.449219 105.363281 147.019531 105.363281 147.019531 103.742188 C 147.019531 102.125 149.449219 102.125 149.449219 103.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.375 85.285156 C 197.375 86.90625 194.945312 86.90625 194.945312 85.285156 C 194.945312 83.667969 197.375 83.667969 197.375 85.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 369.253906 275.804688 C 369.253906 277.425781 366.824219 277.425781 366.824219 275.804688 C 366.824219 274.183594 369.253906 274.183594 369.253906 275.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.171875 172.355469 C 263.171875 173.976562 260.742188 173.976562 260.742188 172.355469 C 260.742188 170.738281 263.171875 170.738281 263.171875 172.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.257812 308.308594 C 339.257812 309.929688 336.828125 309.929688 336.828125 308.308594 C 336.828125 306.691406 339.257812 306.691406 339.257812 308.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.179688 277.789062 C 219.179688 279.410156 216.75 279.410156 216.75 277.789062 C 216.75 276.171875 219.179688 276.171875 219.179688 277.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.472656 271.058594 C 248.472656 272.679688 246.042969 272.679688 246.042969 271.058594 C 246.042969 269.441406 248.472656 269.441406 248.472656 271.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.605469 224.933594 C 285.605469 226.554688 283.175781 226.554688 283.175781 224.933594 C 283.175781 223.3125 285.605469 223.3125 285.605469 224.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.785156 214.074219 C 334.785156 215.691406 332.355469 215.691406 332.355469 214.074219 C 332.355469 212.453125 334.785156 212.453125 334.785156 214.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.890625 184.855469 C 188.890625 186.472656 186.460938 186.472656 186.460938 184.855469 C 186.460938 183.234375 188.890625 183.234375 188.890625 184.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.867188 124.300781 C 256.867188 125.917969 254.4375 125.917969 254.4375 124.300781 C 254.4375 122.679688 256.867188 122.679688 256.867188 124.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.921875 130.75 C 269.921875 132.371094 267.492188 132.371094 267.492188 130.75 C 267.492188 129.128906 269.921875 129.128906 269.921875 130.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.125 264.1875 C 284.125 265.808594 281.691406 265.808594 281.691406 264.1875 C 281.691406 262.570312 284.125 262.570312 284.125 264.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.367188 229.683594 C 282.367188 231.304688 279.9375 231.304688 279.9375 229.683594 C 279.9375 228.0625 282.367188 228.0625 282.367188 229.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.375 229.894531 C 120.375 231.511719 117.945312 231.511719 117.945312 229.894531 C 117.945312 228.273438 120.375 228.273438 120.375 229.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.085938 312.585938 C 211.085938 314.203125 208.65625 314.203125 208.65625 312.585938 C 208.65625 310.964844 211.085938 310.964844 211.085938 312.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.820312 270.757812 C 324.820312 272.378906 322.390625 272.378906 322.390625 270.757812 C 322.390625 269.136719 324.820312 269.136719 324.820312 270.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.542969 148.863281 C 275.542969 150.484375 273.113281 150.484375 273.113281 148.863281 C 273.113281 147.246094 275.542969 147.246094 275.542969 148.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.402344 180.066406 C 267.402344 181.6875 264.972656 181.6875 264.972656 180.066406 C 264.972656 178.449219 267.402344 178.449219 267.402344 180.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.457031 165.277344 C 276.457031 166.898438 274.027344 166.898438 274.027344 165.277344 C 274.027344 163.65625 276.457031 163.65625 276.457031 165.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.96875 326.273438 C 307.96875 327.890625 305.539062 327.890625 305.539062 326.273438 C 305.539062 324.652344 307.96875 324.652344 307.96875 326.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.085938 308.15625 C 247.085938 309.777344 244.65625 309.777344 244.65625 308.15625 C 244.65625 306.535156 247.085938 306.535156 247.085938 308.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.425781 341.761719 C 221.425781 343.382812 218.996094 343.382812 218.996094 341.761719 C 218.996094 340.144531 221.425781 340.144531 221.425781 341.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.324219 70.910156 L 122.960938 73.746094 L 119.6875 73.746094 Z M 121.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.242188 96.671875 C 227.242188 98.289062 224.8125 98.289062 224.8125 96.671875 C 224.8125 95.050781 227.242188 95.050781 227.242188 96.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.71875 324.238281 C 284.71875 325.859375 282.289062 325.859375 282.289062 324.238281 C 282.289062 322.617188 284.71875 322.617188 284.71875 324.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.875 339.214844 C 266.875 340.832031 264.445312 340.832031 264.445312 339.214844 C 264.445312 337.59375 266.875 337.59375 266.875 339.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.167969 70.910156 L 124.804688 73.746094 L 121.535156 73.746094 Z M 123.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.476562 196.476562 C 272.476562 198.09375 270.046875 198.09375 270.046875 196.476562 C 270.046875 194.855469 272.476562 194.855469 272.476562 196.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.035156 336.03125 C 283.035156 337.652344 280.605469 337.652344 280.605469 336.03125 C 280.605469 334.410156 283.035156 334.410156 283.035156 336.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.917969 266.4375 C 183.917969 268.058594 181.488281 268.058594 181.488281 266.4375 C 181.488281 264.816406 183.917969 264.816406 183.917969 266.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.152344 271.738281 C 291.152344 273.359375 288.722656 273.359375 288.722656 271.738281 C 288.722656 270.121094 291.152344 270.121094 291.152344 271.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.234375 238.144531 C 197.234375 239.765625 194.800781 239.765625 194.800781 238.144531 C 194.800781 236.523438 197.234375 236.523438 197.234375 238.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.058594 229.585938 C 131.058594 231.207031 128.628906 231.207031 128.628906 229.585938 C 128.628906 227.964844 131.058594 227.964844 131.058594 229.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.910156 273.488281 C 267.910156 275.105469 265.480469 275.105469 265.480469 273.488281 C 265.480469 271.867188 267.910156 271.867188 267.910156 273.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.878906 247.304688 C 259.878906 248.925781 257.449219 248.925781 257.449219 247.304688 C 257.449219 245.6875 259.878906 245.6875 259.878906 247.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.902344 70.910156 L 202.539062 73.746094 L 199.265625 73.746094 Z M 200.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.894531 302.179688 C 219.894531 303.800781 217.464844 303.800781 217.464844 302.179688 C 217.464844 300.5625 219.894531 300.5625 219.894531 302.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.894531 293.59375 C 279.894531 295.214844 277.464844 295.214844 277.464844 293.59375 C 277.464844 291.972656 279.894531 291.972656 279.894531 293.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.960938 190.566406 C 134.960938 192.1875 132.53125 192.1875 132.53125 190.566406 C 132.53125 188.945312 134.960938 188.945312 134.960938 190.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.003906 418.691406 L 156.640625 415.855469 L 153.367188 415.855469 Z M 155.003906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 362.933594 193.746094 C 362.933594 195.363281 360.503906 195.363281 360.503906 193.746094 C 360.503906 192.125 362.933594 192.125 362.933594 193.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.046875 375.03125 C 300.046875 376.652344 297.617188 376.652344 297.617188 375.03125 C 297.617188 373.414062 300.046875 373.414062 300.046875 375.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.371094 244.707031 C 307.371094 246.328125 304.941406 246.328125 304.941406 244.707031 C 304.941406 243.085938 307.371094 243.085938 307.371094 244.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.082031 276.136719 C 310.082031 277.753906 307.652344 277.753906 307.652344 276.136719 C 307.652344 274.515625 310.082031 274.515625 310.082031 276.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.246094 266.492188 C 231.246094 268.113281 228.816406 268.113281 228.816406 266.492188 C 228.816406 264.871094 231.246094 264.871094 231.246094 266.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.070312 361.792969 C 269.070312 363.414062 266.640625 363.414062 266.640625 361.792969 C 266.640625 360.175781 269.070312 360.175781 269.070312 361.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.542969 214.894531 C 246.542969 216.511719 244.113281 216.511719 244.113281 214.894531 C 244.113281 213.273438 246.542969 213.273438 246.542969 214.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.484375 257.210938 C 256.484375 258.832031 254.054688 258.832031 254.054688 257.210938 C 254.054688 255.59375 256.484375 255.59375 256.484375 257.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.050781 292.941406 C 273.050781 294.5625 270.617188 294.5625 270.617188 292.941406 C 270.617188 291.320312 273.050781 291.320312 273.050781 292.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.441406 216.503906 C 263.441406 218.125 261.007812 218.125 261.007812 216.503906 C 261.007812 214.886719 263.441406 214.886719 263.441406 216.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.070312 198.902344 C 251.070312 200.523438 248.640625 200.523438 248.640625 198.902344 C 248.640625 197.285156 251.070312 197.285156 251.070312 198.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.441406 70.910156 L 268.078125 73.746094 L 264.804688 73.746094 Z M 266.441406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.085938 70.910156 L 178.722656 73.746094 L 175.453125 73.746094 Z M 177.085938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.265625 70.910156 L 276.902344 73.746094 L 273.628906 73.746094 Z M 275.265625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.140625 70.910156 L 234.777344 73.746094 L 231.507812 73.746094 Z M 233.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.488281 203.480469 C 280.488281 205.097656 278.058594 205.097656 278.058594 203.480469 C 278.058594 201.859375 280.488281 201.859375 280.488281 203.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.375 192.777344 C 251.375 194.398438 248.945312 194.398438 248.945312 192.777344 C 248.945312 191.15625 251.375 191.15625 251.375 192.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.625 104.382812 C 221.625 106.003906 219.195312 106.003906 219.195312 104.382812 C 219.195312 102.761719 221.625 102.761719 221.625 104.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.914062 287.429688 C 200.914062 289.050781 198.484375 289.050781 198.484375 287.429688 C 198.484375 285.808594 200.914062 285.808594 200.914062 287.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.863281 340.597656 C 147.863281 342.21875 145.433594 342.21875 145.433594 340.597656 C 145.433594 338.976562 147.863281 338.976562 147.863281 340.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.308594 287.410156 C 171.308594 289.03125 168.878906 289.03125 168.878906 287.410156 C 168.878906 285.789062 171.308594 285.789062 171.308594 287.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.054688 211.933594 C 161.054688 213.554688 158.625 213.554688 158.625 211.933594 C 158.625 210.3125 161.054688 210.3125 161.054688 211.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.617188 316.558594 C 275.617188 318.179688 273.1875 318.179688 273.1875 316.558594 C 273.1875 314.9375 275.617188 314.9375 275.617188 316.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.105469 172.363281 C 291.105469 173.984375 288.675781 173.984375 288.675781 172.363281 C 288.675781 170.746094 291.105469 170.746094 291.105469 172.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.292969 70.910156 L 157.929688 73.746094 L 154.65625 73.746094 Z M 156.292969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.296875 70.910156 L 143.933594 73.746094 L 140.660156 73.746094 Z M 142.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.445312 149.417969 C 302.445312 151.039062 300.015625 151.039062 300.015625 149.417969 C 300.015625 147.800781 302.445312 147.800781 302.445312 149.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.617188 206.503906 C 319.617188 208.121094 317.1875 208.121094 317.1875 206.503906 C 317.1875 204.882812 319.617188 204.882812 319.617188 206.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.246094 371.925781 C 132.246094 373.542969 129.816406 373.542969 129.816406 371.925781 C 129.816406 370.304688 132.246094 370.304688 132.246094 371.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.800781 155.414062 C 308.800781 157.035156 306.371094 157.035156 306.371094 155.414062 C 306.371094 153.796875 308.800781 153.796875 308.800781 155.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.585938 224.808594 C 250.585938 226.429688 248.15625 226.429688 248.15625 224.808594 C 248.15625 223.1875 250.585938 223.1875 250.585938 224.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.550781 223.914062 C 258.550781 225.535156 256.121094 225.535156 256.121094 223.914062 C 256.121094 222.292969 258.550781 222.292969 258.550781 223.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.589844 259.089844 C 298.589844 260.710938 296.160156 260.710938 296.160156 259.089844 C 296.160156 257.472656 298.589844 257.472656 298.589844 259.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.523438 111.855469 C 284.523438 113.472656 282.09375 113.472656 282.09375 111.855469 C 282.09375 110.234375 284.523438 110.234375 284.523438 111.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.738281 162.570312 C 233.738281 164.191406 231.308594 164.191406 231.308594 162.570312 C 231.308594 160.949219 233.738281 160.949219 233.738281 162.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.21875 208.503906 C 253.21875 210.125 250.789062 210.125 250.789062 208.503906 C 250.789062 206.882812 253.21875 206.882812 253.21875 208.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.222656 176.632812 C 341.222656 178.253906 338.792969 178.253906 338.792969 176.632812 C 338.792969 175.011719 341.222656 175.011719 341.222656 176.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.265625 225.097656 C 266.265625 226.71875 263.832031 226.71875 263.832031 225.097656 C 263.832031 223.480469 266.265625 223.480469 266.265625 225.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.851562 275.167969 C 296.851562 276.785156 294.421875 276.785156 294.421875 275.167969 C 294.421875 273.546875 296.851562 273.546875 296.851562 275.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.652344 70.910156 L 153.289062 73.746094 L 150.015625 73.746094 Z M 151.652344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.8125 70.910156 L 191.449219 73.746094 L 188.175781 73.746094 Z M 189.8125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.675781 70.910156 L 226.3125 73.746094 L 223.039062 73.746094 Z M 224.675781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.207031 418.691406 L 191.84375 415.855469 L 188.574219 415.855469 Z M 190.207031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.0625 225.53125 C 253.0625 227.152344 250.632812 227.152344 250.632812 225.53125 C 250.632812 223.910156 253.0625 223.910156 253.0625 225.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.433594 278.195312 C 305.433594 279.816406 303.003906 279.816406 303.003906 278.195312 C 303.003906 276.578125 305.433594 276.578125 305.433594 278.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.972656 224.417969 C 273.972656 226.039062 271.542969 226.039062 271.542969 224.417969 C 271.542969 222.800781 273.972656 222.800781 273.972656 224.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.429688 237.742188 C 275.429688 239.363281 273 239.363281 273 237.742188 C 273 236.121094 275.429688 236.121094 275.429688 237.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.269531 228.714844 C 260.269531 230.335938 257.839844 230.335938 257.839844 228.714844 C 257.839844 227.09375 260.269531 227.09375 260.269531 228.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.804688 237.402344 C 274.804688 239.019531 272.375 239.019531 272.375 237.402344 C 272.375 235.78125 274.804688 235.78125 274.804688 237.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.929688 137.046875 C 133.929688 138.667969 131.496094 138.667969 131.496094 137.046875 C 131.496094 135.425781 133.929688 135.425781 133.929688 137.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.070312 167.863281 C 240.070312 169.484375 237.640625 169.484375 237.640625 167.863281 C 237.640625 166.242188 240.070312 166.242188 240.070312 167.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.6875 80.320312 C 243.6875 81.941406 241.257812 81.941406 241.257812 80.320312 C 241.257812 78.703125 243.6875 78.703125 243.6875 80.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.066406 287.242188 C 200.066406 288.863281 197.636719 288.863281 197.636719 287.242188 C 197.636719 285.621094 200.066406 285.621094 200.066406 287.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.980469 253.777344 C 303.980469 255.398438 301.550781 255.398438 301.550781 253.777344 C 301.550781 252.15625 303.980469 252.15625 303.980469 253.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.480469 280.304688 C 287.480469 281.925781 285.050781 281.925781 285.050781 280.304688 C 285.050781 278.683594 287.480469 278.683594 287.480469 280.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.769531 298.65625 C 124.769531 300.277344 122.339844 300.277344 122.339844 298.65625 C 122.339844 297.039062 124.769531 297.039062 124.769531 298.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.027344 246.105469 C 213.027344 247.722656 210.597656 247.722656 210.597656 246.105469 C 210.597656 244.484375 213.027344 244.484375 213.027344 246.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.160156 284.515625 C 232.160156 286.132812 229.726562 286.132812 229.726562 284.515625 C 229.726562 282.894531 232.160156 282.894531 232.160156 284.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.378906 133.753906 C 248.378906 135.375 245.945312 135.375 245.945312 133.753906 C 245.945312 132.132812 248.378906 132.132812 248.378906 133.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.0625 256.75 C 196.0625 258.367188 193.632812 258.367188 193.632812 256.75 C 193.632812 255.128906 196.0625 255.128906 196.0625 256.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.144531 84.113281 C 190.144531 85.734375 187.714844 85.734375 187.714844 84.113281 C 187.714844 82.492188 190.144531 82.492188 190.144531 84.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.152344 336.832031 C 160.152344 338.453125 157.722656 338.453125 157.722656 336.832031 C 157.722656 335.210938 160.152344 335.210938 160.152344 336.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.613281 308.277344 C 276.613281 309.894531 274.183594 309.894531 274.183594 308.277344 C 274.183594 306.65625 276.613281 306.65625 276.613281 308.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.28125 282.015625 C 237.28125 283.636719 234.851562 283.636719 234.851562 282.015625 C 234.851562 280.398438 237.28125 280.398438 237.28125 282.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.042969 190.828125 C 160.042969 192.445312 157.613281 192.445312 157.613281 190.828125 C 157.613281 189.207031 160.042969 189.207031 160.042969 190.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.9375 194.746094 C 250.9375 196.367188 248.503906 196.367188 248.503906 194.746094 C 248.503906 193.125 250.9375 193.125 250.9375 194.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.621094 263.878906 C 252.621094 265.5 250.191406 265.5 250.191406 263.878906 C 250.191406 262.257812 252.621094 262.257812 252.621094 263.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.542969 279.425781 C 290.542969 281.046875 288.113281 281.046875 288.113281 279.425781 C 288.113281 277.804688 290.542969 277.804688 290.542969 279.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.371094 272.921875 C 233.371094 274.539062 230.941406 274.539062 230.941406 272.921875 C 230.941406 271.300781 233.371094 271.300781 233.371094 272.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.039062 372.265625 C 313.039062 373.886719 310.609375 373.886719 310.609375 372.265625 C 310.609375 370.648438 313.039062 370.648438 313.039062 372.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.183594 182.679688 C 245.183594 184.300781 242.753906 184.300781 242.753906 182.679688 C 242.753906 181.058594 245.183594 181.058594 245.183594 182.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.085938 329.636719 C 208.085938 331.257812 205.65625 331.257812 205.65625 329.636719 C 205.65625 328.015625 208.085938 328.015625 208.085938 329.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.480469 286.09375 C 277.480469 287.714844 275.046875 287.714844 275.046875 286.09375 C 275.046875 284.472656 277.480469 284.472656 277.480469 286.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.644531 336.207031 C 221.644531 337.824219 219.214844 337.824219 219.214844 336.207031 C 219.214844 334.585938 221.644531 334.585938 221.644531 336.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.089844 327.507812 C 246.089844 329.128906 243.660156 329.128906 243.660156 327.507812 C 243.660156 325.890625 246.089844 325.890625 246.089844 327.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.039062 328.800781 C 113.039062 330.421875 110.609375 330.421875 110.609375 328.800781 C 110.609375 327.183594 113.039062 327.183594 113.039062 328.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.777344 345.742188 C 222.777344 347.359375 220.347656 347.359375 220.347656 345.742188 C 220.347656 344.121094 222.777344 344.121094 222.777344 345.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.4375 260.855469 C 228.4375 262.476562 226.003906 262.476562 226.003906 260.855469 C 226.003906 259.234375 228.4375 259.234375 228.4375 260.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.175781 229.699219 C 279.175781 231.316406 276.746094 231.316406 276.746094 229.699219 C 276.746094 228.078125 279.175781 228.078125 279.175781 229.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.113281 234.191406 C 299.113281 235.8125 296.683594 235.8125 296.683594 234.191406 C 296.683594 232.570312 299.113281 232.570312 299.113281 234.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.523438 198.328125 C 325.523438 199.949219 323.09375 199.949219 323.09375 198.328125 C 323.09375 196.707031 325.523438 196.707031 325.523438 198.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.308594 268.65625 C 271.308594 270.277344 268.878906 270.277344 268.878906 268.65625 C 268.878906 267.035156 271.308594 267.035156 271.308594 268.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.363281 303.042969 C 199.363281 304.660156 196.933594 304.660156 196.933594 303.042969 C 196.933594 301.421875 199.363281 301.421875 199.363281 303.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.007812 137.65625 C 255.007812 139.277344 252.578125 139.277344 252.578125 137.65625 C 252.578125 136.035156 255.007812 136.035156 255.007812 137.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.625 127.425781 C 196.625 129.046875 194.195312 129.046875 194.195312 127.425781 C 194.195312 125.804688 196.625 125.804688 196.625 127.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.648438 242.726562 C 308.648438 244.34375 306.21875 244.34375 306.21875 242.726562 C 306.21875 241.105469 308.648438 241.105469 308.648438 242.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.078125 220.554688 C 256.078125 222.175781 253.648438 222.175781 253.648438 220.554688 C 253.648438 218.933594 256.078125 218.933594 256.078125 220.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.550781 70.910156 L 202.1875 73.746094 L 198.914062 73.746094 Z M 200.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.523438 244.128906 C 149.523438 245.746094 147.09375 245.746094 147.09375 244.128906 C 147.09375 242.507812 149.523438 242.507812 149.523438 244.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.226562 251.847656 C 130.226562 253.464844 127.792969 253.464844 127.792969 251.847656 C 127.792969 250.226562 130.226562 250.226562 130.226562 251.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.929688 217.949219 C 176.929688 219.566406 174.5 219.566406 174.5 217.949219 C 174.5 216.328125 176.929688 216.328125 176.929688 217.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.300781 289.746094 C 231.300781 291.367188 228.871094 291.367188 228.871094 289.746094 C 228.871094 288.125 231.300781 288.125 231.300781 289.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.199219 70.910156 L 219.835938 73.746094 L 216.5625 73.746094 Z M 218.199219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.097656 245.496094 C 223.097656 247.117188 220.667969 247.117188 220.667969 245.496094 C 220.667969 243.878906 223.097656 243.878906 223.097656 245.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.199219 232.710938 C 244.199219 234.332031 241.769531 234.332031 241.769531 232.710938 C 241.769531 231.089844 244.199219 231.089844 244.199219 232.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.125 236.097656 C 198.125 237.71875 195.695312 237.71875 195.695312 236.097656 C 195.695312 234.480469 198.125 234.480469 198.125 236.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.234375 272.386719 C 299.234375 274.003906 296.804688 274.003906 296.804688 272.386719 C 296.804688 270.765625 299.234375 270.765625 299.234375 272.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.578125 255.117188 C 242.578125 256.738281 240.148438 256.738281 240.148438 255.117188 C 240.148438 253.5 242.578125 253.5 242.578125 255.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.824219 267.707031 C 257.824219 269.324219 255.394531 269.324219 255.394531 267.707031 C 255.394531 266.085938 257.824219 266.085938 257.824219 267.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 382.570312 178.777344 C 382.570312 180.394531 380.140625 180.394531 380.140625 178.777344 C 380.140625 177.15625 382.570312 177.15625 382.570312 178.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.554688 289.226562 C 305.554688 290.847656 303.125 290.847656 303.125 289.226562 C 303.125 287.605469 305.554688 287.605469 305.554688 289.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.746094 307.070312 C 281.746094 308.691406 279.3125 308.691406 279.3125 307.070312 C 279.3125 305.449219 281.746094 305.449219 281.746094 307.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.992188 148.480469 C 240.992188 150.101562 238.558594 150.101562 238.558594 148.480469 C 238.558594 146.859375 240.992188 146.859375 240.992188 148.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.402344 344.59375 C 287.402344 346.214844 284.972656 346.214844 284.972656 344.59375 C 284.972656 342.972656 287.402344 342.972656 287.402344 344.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.667969 322.058594 C 327.667969 323.679688 325.238281 323.679688 325.238281 322.058594 C 325.238281 320.4375 327.667969 320.4375 327.667969 322.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.859375 210.558594 C 187.859375 212.179688 185.429688 212.179688 185.429688 210.558594 C 185.429688 208.9375 187.859375 208.9375 187.859375 210.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.527344 85.855469 C 172.527344 87.476562 170.097656 87.476562 170.097656 85.855469 C 170.097656 84.234375 172.527344 84.234375 172.527344 85.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.519531 79.824219 C 195.519531 81.445312 193.089844 81.445312 193.089844 79.824219 C 193.089844 78.207031 195.519531 78.207031 195.519531 79.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.121094 418.691406 L 250.757812 415.855469 L 247.484375 415.855469 Z M 249.121094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.5 321.042969 C 189.5 322.664062 187.070312 322.664062 187.070312 321.042969 C 187.070312 319.421875 189.5 319.421875 189.5 321.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 413.511719 168.175781 C 413.511719 169.792969 411.082031 169.792969 411.082031 168.175781 C 411.082031 166.554688 413.511719 166.554688 413.511719 168.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.464844 219.4375 C 279.464844 221.058594 277.035156 221.058594 277.035156 219.4375 C 277.035156 217.816406 279.464844 217.816406 279.464844 219.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.984375 271.425781 C 269.984375 273.046875 267.550781 273.046875 267.550781 271.425781 C 267.550781 269.804688 269.984375 269.804688 269.984375 271.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.722656 199.832031 C 315.722656 201.449219 313.292969 201.449219 313.292969 199.832031 C 313.292969 198.210938 315.722656 198.210938 315.722656 199.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.292969 325.824219 C 315.292969 327.445312 312.863281 327.445312 312.863281 325.824219 C 312.863281 324.203125 315.292969 324.203125 315.292969 325.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.207031 253.894531 C 263.207031 255.511719 260.777344 255.511719 260.777344 253.894531 C 260.777344 252.273438 263.207031 252.273438 263.207031 253.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.695312 193.078125 C 263.695312 194.699219 261.261719 194.699219 261.261719 193.078125 C 261.261719 191.460938 263.695312 191.460938 263.695312 193.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.21875 187.15625 C 259.21875 188.777344 256.789062 188.777344 256.789062 187.15625 C 256.789062 185.535156 259.21875 185.535156 259.21875 187.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.449219 70.910156 L 285.085938 73.746094 L 281.816406 73.746094 Z M 283.449219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.222656 70.910156 L 231.859375 73.746094 L 228.589844 73.746094 Z M 230.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.078125 228.714844 C 232.078125 230.335938 229.648438 230.335938 229.648438 228.714844 C 229.648438 227.09375 232.078125 227.09375 232.078125 228.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.351562 253.078125 C 323.351562 254.699219 320.921875 254.699219 320.921875 253.078125 C 320.921875 251.457031 323.351562 251.457031 323.351562 253.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.617188 237.589844 C 289.617188 239.210938 287.1875 239.210938 287.1875 237.589844 C 287.1875 235.96875 289.617188 235.96875 289.617188 237.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.246094 101.738281 C 157.246094 103.359375 154.816406 103.359375 154.816406 101.738281 C 154.816406 100.117188 157.246094 100.117188 157.246094 101.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.980469 418.691406 L 196.617188 415.855469 L 193.34375 415.855469 Z M 194.980469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.488281 268.308594 C 270.488281 269.929688 268.058594 269.929688 268.058594 268.308594 C 268.058594 266.6875 270.488281 266.6875 270.488281 268.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.765625 305.140625 C 287.765625 306.761719 285.335938 306.761719 285.335938 305.140625 C 285.335938 303.519531 287.765625 303.519531 287.765625 305.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.285156 206.871094 C 233.285156 208.492188 230.855469 208.492188 230.855469 206.871094 C 230.855469 205.25 233.285156 205.25 233.285156 206.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.363281 309.402344 C 208.363281 311.023438 205.933594 311.023438 205.933594 309.402344 C 205.933594 307.78125 208.363281 307.78125 208.363281 309.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.703125 289.304688 C 293.703125 290.921875 291.273438 290.921875 291.273438 289.304688 C 291.273438 287.683594 293.703125 287.683594 293.703125 289.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.257812 200.898438 C 237.257812 202.515625 234.828125 202.515625 234.828125 200.898438 C 234.828125 199.277344 237.257812 199.277344 237.257812 200.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.6875 229.394531 C 261.6875 231.015625 259.257812 231.015625 259.257812 229.394531 C 259.257812 227.773438 261.6875 227.773438 261.6875 229.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.34375 172.574219 C 258.34375 174.191406 255.914062 174.191406 255.914062 172.574219 C 255.914062 170.953125 258.34375 170.953125 258.34375 172.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.820312 242.664062 C 295.820312 244.285156 293.390625 244.285156 293.390625 242.664062 C 293.390625 241.046875 295.820312 241.046875 295.820312 242.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.851562 233.523438 C 145.851562 235.144531 143.421875 235.144531 143.421875 233.523438 C 143.421875 231.90625 145.851562 231.90625 145.851562 233.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.523438 264.410156 C 236.523438 266.03125 234.09375 266.03125 234.09375 264.410156 C 234.09375 262.789062 236.523438 262.789062 236.523438 264.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.203125 340.109375 C 211.203125 341.730469 208.773438 341.730469 208.773438 340.109375 C 208.773438 338.492188 211.203125 338.492188 211.203125 340.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.808594 354.933594 C 333.808594 356.554688 331.378906 356.554688 331.378906 354.933594 C 331.378906 353.316406 333.808594 353.316406 333.808594 354.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.753906 222.46875 C 274.753906 224.085938 272.320312 224.085938 272.320312 222.46875 C 272.320312 220.847656 274.753906 220.847656 274.753906 222.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.875 141.261719 C 337.875 142.882812 335.445312 142.882812 335.445312 141.261719 C 335.445312 139.644531 337.875 139.644531 337.875 141.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.539062 221.710938 C 301.539062 223.328125 299.109375 223.328125 299.109375 221.710938 C 299.109375 220.089844 301.539062 220.089844 301.539062 221.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.101562 70.910156 L 291.738281 73.746094 L 288.464844 73.746094 Z M 290.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.40625 118.679688 C 199.40625 120.300781 196.976562 120.300781 196.976562 118.679688 C 196.976562 117.058594 199.40625 117.058594 199.40625 118.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.808594 99.050781 C 157.808594 100.667969 155.378906 100.667969 155.378906 99.050781 C 155.378906 97.429688 157.808594 97.429688 157.808594 99.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.4375 70.910156 L 156.074219 73.746094 L 152.800781 73.746094 Z M 154.4375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.914062 70.910156 L 300.550781 73.746094 L 297.277344 73.746094 Z M 298.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 374.289062 205.484375 C 374.289062 207.101562 371.859375 207.101562 371.859375 205.484375 C 371.859375 203.863281 374.289062 203.863281 374.289062 205.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.972656 206.597656 C 255.972656 208.21875 253.542969 208.21875 253.542969 206.597656 C 253.542969 204.980469 255.972656 204.980469 255.972656 206.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.339844 315.890625 C 277.339844 317.507812 274.910156 317.507812 274.910156 315.890625 C 274.910156 314.269531 277.339844 314.269531 277.339844 315.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.613281 265.796875 C 317.613281 267.417969 315.183594 267.417969 315.183594 265.796875 C 315.183594 264.179688 317.613281 264.179688 317.613281 265.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.226562 251.847656 C 130.226562 253.464844 127.792969 253.464844 127.792969 251.847656 C 127.792969 250.226562 130.226562 250.226562 130.226562 251.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.320312 293.660156 C 295.320312 295.28125 292.890625 295.28125 292.890625 293.660156 C 292.890625 292.039062 295.320312 292.039062 295.320312 293.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.617188 350.078125 C 264.617188 351.695312 262.1875 351.695312 262.1875 350.078125 C 262.1875 348.457031 264.617188 348.457031 264.617188 350.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.214844 335.449219 C 243.214844 337.070312 240.785156 337.070312 240.785156 335.449219 C 240.785156 333.832031 243.214844 333.832031 243.214844 335.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.871094 246.773438 C 286.871094 248.394531 284.441406 248.394531 284.441406 246.773438 C 284.441406 245.152344 286.871094 245.152344 286.871094 246.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.527344 275.953125 C 181.527344 277.574219 179.097656 277.574219 179.097656 275.953125 C 179.097656 274.335938 181.527344 274.335938 181.527344 275.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.835938 258.976562 C 268.835938 260.59375 266.402344 260.59375 266.402344 258.976562 C 266.402344 257.355469 268.835938 257.355469 268.835938 258.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.949219 220.742188 C 298.949219 222.363281 296.519531 222.363281 296.519531 220.742188 C 296.519531 219.125 298.949219 219.125 298.949219 220.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.179688 70.910156 L 224.816406 73.746094 L 221.542969 73.746094 Z M 223.179688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.992188 70.910156 L 243.628906 73.746094 L 240.355469 73.746094 Z M 241.992188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.304688 330.832031 C 170.304688 332.449219 167.875 332.449219 167.875 330.832031 C 167.875 329.210938 170.304688 329.210938 170.304688 330.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.117188 105.886719 C 258.117188 107.503906 255.6875 107.503906 255.6875 105.886719 C 255.6875 104.265625 258.117188 104.265625 258.117188 105.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.910156 131.296875 C 145.910156 132.914062 143.480469 132.914062 143.480469 131.296875 C 143.480469 129.675781 145.910156 129.675781 145.910156 131.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.523438 256.761719 C 336.523438 258.378906 334.09375 258.378906 334.09375 256.761719 C 334.09375 255.140625 336.523438 255.140625 336.523438 256.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.015625 170.625 C 298.015625 172.246094 295.585938 172.246094 295.585938 170.625 C 295.585938 169.007812 298.015625 169.007812 298.015625 170.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.488281 373.992188 C 292.488281 375.613281 290.058594 375.613281 290.058594 373.992188 C 290.058594 372.371094 292.488281 372.371094 292.488281 373.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.972656 368.847656 C 295.972656 370.46875 293.542969 370.46875 293.542969 368.847656 C 293.542969 367.230469 295.972656 367.230469 295.972656 368.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.472656 242.996094 C 286.472656 244.617188 284.042969 244.617188 284.042969 242.996094 C 284.042969 241.375 286.472656 241.375 286.472656 242.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.703125 346.949219 C 281.703125 348.570312 279.273438 348.570312 279.273438 346.949219 C 279.273438 345.328125 281.703125 345.328125 281.703125 346.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.660156 221.230469 C 250.660156 222.851562 248.226562 222.851562 248.226562 221.230469 C 248.226562 219.613281 250.660156 219.613281 250.660156 221.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.9375 70.910156 L 211.574219 73.746094 L 208.300781 73.746094 Z M 209.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.796875 180.851562 C 272.796875 182.472656 270.367188 182.472656 270.367188 180.851562 C 270.367188 179.230469 272.796875 179.230469 272.796875 180.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.078125 82.875 C 125.078125 84.496094 122.648438 84.496094 122.648438 82.875 C 122.648438 81.253906 125.078125 81.253906 125.078125 82.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.1875 70.910156 L 182.824219 73.746094 L 179.550781 73.746094 Z M 181.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.878906 217.085938 C 274.878906 218.707031 272.449219 218.707031 272.449219 217.085938 C 272.449219 215.464844 274.878906 215.464844 274.878906 217.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.746094 309.730469 C 240.746094 311.351562 238.316406 311.351562 238.316406 309.730469 C 238.316406 308.113281 240.746094 308.113281 240.746094 309.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.289062 244.320312 C 237.289062 245.941406 234.859375 245.941406 234.859375 244.320312 C 234.859375 242.699219 237.289062 242.699219 237.289062 244.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.449219 70.910156 L 187.085938 73.746094 L 183.816406 73.746094 Z M 185.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.980469 194.902344 C 168.980469 196.523438 166.550781 196.523438 166.550781 194.902344 C 166.550781 193.28125 168.980469 193.28125 168.980469 194.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.414062 322.738281 C 241.414062 324.359375 238.984375 324.359375 238.984375 322.738281 C 238.984375 321.121094 241.414062 321.121094 241.414062 322.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.757812 231.089844 C 255.757812 232.710938 253.328125 232.710938 253.328125 231.089844 C 253.328125 229.472656 255.757812 229.472656 255.757812 231.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.902344 238.941406 C 219.902344 240.5625 217.472656 240.5625 217.472656 238.941406 C 217.472656 237.320312 219.902344 237.320312 219.902344 238.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.320312 306.507812 C 126.320312 308.125 123.890625 308.125 123.890625 306.507812 C 123.890625 304.886719 126.320312 304.886719 126.320312 306.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.511719 286.347656 C 212.511719 287.96875 210.082031 287.96875 210.082031 286.347656 C 210.082031 284.726562 212.511719 284.726562 212.511719 286.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.675781 177.171875 C 257.675781 178.789062 255.246094 178.789062 255.246094 177.171875 C 255.246094 175.550781 257.675781 175.550781 257.675781 177.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.898438 151.285156 C 304.898438 152.90625 302.46875 152.90625 302.46875 151.285156 C 302.46875 149.664062 304.898438 149.664062 304.898438 151.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.191406 276.238281 C 226.191406 277.859375 223.761719 277.859375 223.761719 276.238281 C 223.761719 274.617188 226.191406 274.617188 226.191406 276.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.359375 92.019531 C 254.359375 93.640625 251.929688 93.640625 251.929688 92.019531 C 251.929688 90.402344 254.359375 90.402344 254.359375 92.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.480469 70.910156 L 283.117188 73.746094 L 279.84375 73.746094 Z M 281.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.402344 250.75 C 322.402344 252.371094 319.972656 252.371094 319.972656 250.75 C 319.972656 249.128906 322.402344 249.128906 322.402344 250.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.800781 258.417969 C 276.800781 260.039062 274.367188 260.039062 274.367188 258.417969 C 274.367188 256.800781 276.800781 256.800781 276.800781 258.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.304688 256.285156 C 222.304688 257.902344 219.875 257.902344 219.875 256.285156 C 219.875 254.664062 222.304688 254.664062 222.304688 256.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.289062 236.785156 C 307.289062 238.40625 304.855469 238.40625 304.855469 236.785156 C 304.855469 235.164062 307.289062 235.164062 307.289062 236.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.894531 190.992188 C 258.894531 192.613281 256.464844 192.613281 256.464844 190.992188 C 256.464844 189.371094 258.894531 189.371094 258.894531 190.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.621094 313.601562 C 227.621094 315.222656 225.191406 315.222656 225.191406 313.601562 C 225.191406 311.980469 227.621094 311.980469 227.621094 313.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.097656 256.367188 C 274.097656 257.988281 271.667969 257.988281 271.667969 256.367188 C 271.667969 254.746094 274.097656 254.746094 274.097656 256.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.820312 113.429688 C 275.820312 115.046875 273.390625 115.046875 273.390625 113.429688 C 273.390625 111.808594 275.820312 111.808594 275.820312 113.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.730469 298.28125 C 333.730469 299.902344 331.300781 299.902344 331.300781 298.28125 C 331.300781 296.660156 333.730469 296.660156 333.730469 298.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.730469 307.523438 C 230.730469 309.144531 228.300781 309.144531 228.300781 307.523438 C 228.300781 305.902344 230.730469 305.902344 230.730469 307.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.570312 418.691406 L 235.207031 415.855469 L 231.933594 415.855469 Z M 233.570312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.832031 132.691406 C 222.832031 134.3125 220.402344 134.3125 220.402344 132.691406 C 220.402344 131.070312 222.832031 131.070312 222.832031 132.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.308594 107.546875 C 214.308594 109.167969 211.878906 109.167969 211.878906 107.546875 C 211.878906 105.925781 214.308594 105.925781 214.308594 107.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.410156 230.234375 C 212.410156 231.855469 209.980469 231.855469 209.980469 230.234375 C 209.980469 228.617188 212.410156 228.617188 212.410156 230.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.40625 335.257812 C 282.40625 336.875 279.976562 336.875 279.976562 335.257812 C 279.976562 333.636719 282.40625 333.636719 282.40625 335.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.257812 341.640625 C 268.257812 343.261719 265.828125 343.261719 265.828125 341.640625 C 265.828125 340.023438 268.257812 340.023438 268.257812 341.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 181.34375 416.609375 C 181.34375 418.230469 178.914062 418.230469 178.914062 416.609375 C 178.914062 414.988281 181.34375 414.988281 181.34375 416.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.320312 260.699219 C 258.320312 262.320312 255.890625 262.320312 255.890625 260.699219 C 255.890625 259.078125 258.320312 259.078125 258.320312 260.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.707031 70.910156 L 211.34375 73.746094 L 208.074219 73.746094 Z M 209.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.097656 207.675781 C 241.097656 209.296875 238.667969 209.296875 238.667969 207.675781 C 238.667969 206.054688 241.097656 206.054688 241.097656 207.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 369.550781 267.925781 C 369.550781 269.546875 367.121094 269.546875 367.121094 267.925781 C 367.121094 266.304688 369.550781 266.304688 369.550781 267.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.992188 309.761719 C 313.992188 311.382812 311.5625 311.382812 311.5625 309.761719 C 311.5625 308.140625 313.992188 308.140625 313.992188 309.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.53125 76.324219 C 192.53125 77.945312 190.101562 77.945312 190.101562 76.324219 C 190.101562 74.703125 192.53125 74.703125 192.53125 76.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.050781 155.082031 C 271.050781 156.703125 268.621094 156.703125 268.621094 155.082031 C 268.621094 153.460938 271.050781 153.460938 271.050781 155.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.191406 298.933594 C 301.191406 300.554688 298.761719 300.554688 298.761719 298.933594 C 298.761719 297.316406 301.191406 297.316406 301.191406 298.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.0625 150.222656 C 309.0625 151.84375 306.632812 151.84375 306.632812 150.222656 C 306.632812 148.601562 309.0625 148.601562 309.0625 150.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.609375 115.324219 C 242.609375 116.941406 240.179688 116.941406 240.179688 115.324219 C 240.179688 113.703125 242.609375 113.703125 242.609375 115.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.425781 245.210938 C 306.425781 246.828125 303.996094 246.828125 303.996094 245.210938 C 303.996094 243.589844 306.425781 243.589844 306.425781 245.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.308594 125.152344 C 309.308594 126.773438 306.878906 126.773438 306.878906 125.152344 C 306.878906 123.535156 309.308594 123.535156 309.308594 125.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.394531 379.382812 C 188.394531 381.003906 185.964844 381.003906 185.964844 379.382812 C 185.964844 377.761719 188.394531 377.761719 188.394531 379.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.640625 279.035156 C 249.640625 280.65625 247.210938 280.65625 247.210938 279.035156 C 247.210938 277.417969 249.640625 277.417969 249.640625 279.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.757812 207.945312 C 310.757812 209.566406 308.324219 209.566406 308.324219 207.945312 C 308.324219 206.324219 310.757812 206.324219 310.757812 207.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.394531 344.261719 C 296.394531 345.878906 293.964844 345.878906 293.964844 344.261719 C 293.964844 342.640625 296.394531 342.640625 296.394531 344.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.550781 233.863281 C 248.550781 235.484375 246.121094 235.484375 246.121094 233.863281 C 246.121094 232.242188 248.550781 232.242188 248.550781 233.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.289062 217.089844 C 324.289062 218.710938 321.859375 218.710938 321.859375 217.089844 C 321.859375 215.472656 324.289062 215.472656 324.289062 217.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.105469 385.085938 C 307.105469 386.703125 304.675781 386.703125 304.675781 385.085938 C 304.675781 383.464844 307.105469 383.464844 307.105469 385.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.335938 70.910156 L 193.972656 73.746094 L 190.699219 73.746094 Z M 192.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.929688 232.214844 C 292.929688 233.835938 290.5 233.835938 290.5 232.214844 C 290.5 230.59375 292.929688 230.59375 292.929688 232.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.019531 179.972656 C 284.019531 181.59375 281.589844 181.59375 281.589844 179.972656 C 281.589844 178.351562 284.019531 178.351562 284.019531 179.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.878906 269.742188 C 254.878906 271.363281 252.449219 271.363281 252.449219 269.742188 C 252.449219 268.125 254.878906 268.125 254.878906 269.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.882812 70.910156 L 137.519531 73.746094 L 134.246094 73.746094 Z M 135.882812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.832031 185.605469 C 284.832031 187.226562 282.402344 187.226562 282.402344 185.605469 C 282.402344 183.984375 284.832031 183.984375 284.832031 185.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.785156 266.851562 C 184.785156 268.472656 182.355469 268.472656 182.355469 266.851562 C 182.355469 265.234375 184.785156 265.234375 184.785156 266.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 375.109375 288.289062 C 375.109375 289.90625 372.679688 289.90625 372.679688 288.289062 C 372.679688 286.667969 375.109375 286.667969 375.109375 288.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.648438 219.226562 C 169.648438 220.847656 167.21875 220.847656 167.21875 219.226562 C 167.21875 217.605469 169.648438 217.605469 169.648438 219.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.925781 276.964844 C 196.925781 278.585938 194.496094 278.585938 194.496094 276.964844 C 194.496094 275.34375 196.925781 275.34375 196.925781 276.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.945312 247.347656 C 309.945312 248.96875 307.515625 248.96875 307.515625 247.347656 C 307.515625 245.730469 309.945312 245.730469 309.945312 247.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.40625 125.738281 C 233.40625 127.359375 230.972656 127.359375 230.972656 125.738281 C 230.972656 124.117188 233.40625 124.117188 233.40625 125.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.167969 182.429688 C 267.167969 184.050781 264.738281 184.050781 264.738281 182.429688 C 264.738281 180.808594 267.167969 180.808594 267.167969 182.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.117188 70.910156 L 254.753906 73.746094 L 251.480469 73.746094 Z M 253.117188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.832031 70.910156 L 240.46875 73.746094 L 237.195312 73.746094 Z M 238.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.1875 299.023438 C 241.1875 300.640625 238.757812 300.640625 238.757812 299.023438 C 238.757812 297.402344 241.1875 297.402344 241.1875 299.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.359375 319.585938 C 224.359375 321.207031 221.929688 321.207031 221.929688 319.585938 C 221.929688 317.964844 224.359375 317.964844 224.359375 319.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.601562 70.910156 L 264.238281 73.746094 L 260.96875 73.746094 Z M 262.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.925781 82.945312 C 236.925781 84.566406 234.496094 84.566406 234.496094 82.945312 C 234.496094 81.328125 236.925781 81.328125 236.925781 82.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.015625 215.007812 C 245.015625 216.628906 242.585938 216.628906 242.585938 215.007812 C 242.585938 213.386719 245.015625 213.386719 245.015625 215.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.570312 237.007812 C 260.570312 238.625 258.140625 238.625 258.140625 237.007812 C 258.140625 235.386719 260.570312 235.386719 260.570312 237.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.691406 309.03125 C 257.691406 310.652344 255.261719 310.652344 255.261719 309.03125 C 255.261719 307.410156 257.691406 307.410156 257.691406 309.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.023438 278.492188 C 246.023438 280.113281 243.59375 280.113281 243.59375 278.492188 C 243.59375 276.871094 246.023438 276.871094 246.023438 278.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.761719 233.96875 C 242.761719 235.585938 240.332031 235.585938 240.332031 233.96875 C 240.332031 232.347656 242.761719 232.347656 242.761719 233.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.183594 198.925781 C 214.183594 200.546875 211.753906 200.546875 211.753906 198.925781 C 211.753906 197.304688 214.183594 197.304688 214.183594 198.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.566406 184.515625 C 258.566406 186.136719 256.136719 186.136719 256.136719 184.515625 C 256.136719 182.898438 258.566406 182.898438 258.566406 184.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.492188 315.53125 C 334.492188 317.152344 332.0625 317.152344 332.0625 315.53125 C 332.0625 313.910156 334.492188 313.910156 334.492188 315.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.117188 70.910156 L 160.75 73.746094 L 157.480469 73.746094 Z M 159.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.433594 199.515625 C 217.433594 201.132812 215.003906 201.132812 215.003906 199.515625 C 215.003906 197.894531 217.433594 197.894531 217.433594 199.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.960938 176.4375 C 270.960938 178.058594 268.53125 178.058594 268.53125 176.4375 C 268.53125 174.820312 270.960938 174.820312 270.960938 176.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.683594 210.164062 C 274.683594 211.78125 272.253906 211.78125 272.253906 210.164062 C 272.253906 208.542969 274.683594 208.542969 274.683594 210.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.957031 394.371094 C 236.957031 395.992188 234.527344 395.992188 234.527344 394.371094 C 234.527344 392.753906 236.957031 392.753906 236.957031 394.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.078125 79.96875 C 241.078125 81.585938 238.648438 81.585938 238.648438 79.96875 C 238.648438 78.347656 241.078125 78.347656 241.078125 79.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.5625 155.867188 C 232.5625 157.484375 230.132812 157.484375 230.132812 155.867188 C 230.132812 154.246094 232.5625 154.246094 232.5625 155.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.800781 292.308594 C 223.800781 293.925781 221.371094 293.925781 221.371094 292.308594 C 221.371094 290.6875 223.800781 290.6875 223.800781 292.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.542969 215.347656 C 287.542969 216.964844 285.113281 216.964844 285.113281 215.347656 C 285.113281 213.726562 287.542969 213.726562 287.542969 215.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.230469 278.835938 C 344.230469 280.457031 341.800781 280.457031 341.800781 278.835938 C 341.800781 277.214844 344.230469 277.214844 344.230469 278.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.894531 203.757812 C 269.894531 205.378906 267.464844 205.378906 267.464844 203.757812 C 267.464844 202.136719 269.894531 202.136719 269.894531 203.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.632812 221.859375 C 280.632812 223.480469 278.203125 223.480469 278.203125 221.859375 C 278.203125 220.242188 280.632812 220.242188 280.632812 221.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.414062 70.910156 L 261.050781 73.746094 L 257.777344 73.746094 Z M 259.414062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.667969 70.910156 L 196.304688 73.746094 L 193.03125 73.746094 Z M 194.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.746094 257.992188 C 260.746094 259.613281 258.316406 259.613281 258.316406 257.992188 C 258.316406 256.371094 260.746094 256.371094 260.746094 257.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.773438 176.902344 C 186.773438 178.519531 184.34375 178.519531 184.34375 176.902344 C 184.34375 175.28125 186.773438 175.28125 186.773438 176.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.429688 190.984375 C 256.429688 192.605469 254 192.605469 254 190.984375 C 254 189.363281 256.429688 189.363281 256.429688 190.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.773438 166.796875 C 249.773438 168.417969 247.34375 168.417969 247.34375 166.796875 C 247.34375 165.175781 249.773438 165.175781 249.773438 166.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.003906 70.910156 L 146.640625 73.746094 L 143.371094 73.746094 Z M 145.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.007812 187.796875 C 263.007812 189.414062 260.578125 189.414062 260.578125 187.796875 C 260.578125 186.175781 263.007812 186.175781 263.007812 187.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.636719 316.855469 C 243.636719 318.476562 241.207031 318.476562 241.207031 316.855469 C 241.207031 315.238281 243.636719 315.238281 243.636719 316.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.75 333.722656 C 261.75 335.34375 259.320312 335.34375 259.320312 333.722656 C 259.320312 332.101562 261.75 332.101562 261.75 333.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.371094 332.886719 C 211.371094 334.507812 208.941406 334.507812 208.941406 332.886719 C 208.941406 331.269531 211.371094 331.269531 211.371094 332.886719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.214844 70.910156 L 120.851562 73.746094 L 117.578125 73.746094 Z M 119.214844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.265625 418.691406 L 293.902344 415.855469 L 290.632812 415.855469 Z M 292.265625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.550781 418.691406 L 258.183594 415.855469 L 254.914062 415.855469 Z M 256.550781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.980469 418.691406 L 287.617188 415.855469 L 284.34375 415.855469 Z M 285.980469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.894531 70.910156 L 176.53125 73.746094 L 173.257812 73.746094 Z M 174.894531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.835938 418.691406 L 134.472656 415.855469 L 131.199219 415.855469 Z M 132.835938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.007812 195.394531 C 263.007812 197.011719 260.578125 197.011719 260.578125 195.394531 C 260.578125 193.773438 263.007812 193.773438 263.007812 195.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.839844 231.171875 C 217.839844 232.792969 215.410156 232.792969 215.410156 231.171875 C 215.410156 229.554688 217.839844 229.554688 217.839844 231.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.246094 287.359375 C 163.246094 288.980469 160.816406 288.980469 160.816406 287.359375 C 160.816406 285.738281 163.246094 285.738281 163.246094 287.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.757812 305.785156 C 261.757812 307.402344 259.328125 307.402344 259.328125 305.785156 C 259.328125 304.164062 261.757812 304.164062 261.757812 305.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.085938 223.273438 C 193.085938 224.894531 190.65625 224.894531 190.65625 223.273438 C 190.65625 221.652344 193.085938 221.652344 193.085938 223.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.210938 180.96875 C 276.210938 182.589844 273.78125 182.589844 273.78125 180.96875 C 273.78125 179.347656 276.210938 179.347656 276.210938 180.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.089844 231.792969 C 296.089844 233.414062 293.660156 233.414062 293.660156 231.792969 C 293.660156 230.171875 296.089844 230.171875 296.089844 231.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.484375 277.140625 C 212.484375 278.757812 210.054688 278.757812 210.054688 277.140625 C 210.054688 275.519531 212.484375 275.519531 212.484375 277.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.359375 82.085938 C 273.359375 83.707031 270.929688 83.707031 270.929688 82.085938 C 270.929688 80.464844 273.359375 80.464844 273.359375 82.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.996094 260.332031 C 146.996094 261.953125 144.566406 261.953125 144.566406 260.332031 C 144.566406 258.710938 146.996094 258.710938 146.996094 260.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.546875 269.59375 C 244.546875 271.210938 242.117188 271.210938 242.117188 269.59375 C 242.117188 267.972656 244.546875 267.972656 244.546875 269.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.792969 334.765625 C 246.792969 336.386719 244.363281 336.386719 244.363281 334.765625 C 244.363281 333.148438 246.792969 333.148438 246.792969 334.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.136719 363.128906 C 289.136719 364.75 286.707031 364.75 286.707031 363.128906 C 286.707031 361.507812 289.136719 361.507812 289.136719 363.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.46875 203.578125 C 266.46875 205.199219 264.039062 205.199219 264.039062 203.578125 C 264.039062 201.957031 266.46875 201.957031 266.46875 203.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.816406 272.773438 C 277.816406 274.394531 275.386719 274.394531 275.386719 272.773438 C 275.386719 271.15625 277.816406 271.15625 277.816406 272.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.46875 222.085938 C 285.46875 223.707031 283.039062 223.707031 283.039062 222.085938 C 283.039062 220.46875 285.46875 220.46875 285.46875 222.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.398438 70.910156 L 276.03125 73.746094 L 272.761719 73.746094 Z M 274.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.453125 249.34375 C 247.453125 250.964844 245.023438 250.964844 245.023438 249.34375 C 245.023438 247.726562 247.453125 247.726562 247.453125 249.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.648438 260.039062 C 319.648438 261.660156 317.21875 261.660156 317.21875 260.039062 C 317.21875 258.421875 319.648438 258.421875 319.648438 260.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.726562 254.601562 C 253.726562 256.21875 251.296875 256.21875 251.296875 254.601562 C 251.296875 252.980469 253.726562 252.980469 253.726562 254.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.523438 186.027344 C 297.523438 187.648438 295.09375 187.648438 295.09375 186.027344 C 295.09375 184.40625 297.523438 184.40625 297.523438 186.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.078125 232.828125 C 285.078125 234.449219 282.648438 234.449219 282.648438 232.828125 C 282.648438 231.207031 285.078125 231.207031 285.078125 232.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.324219 207.191406 C 277.324219 208.808594 274.894531 208.808594 274.894531 207.191406 C 274.894531 205.570312 277.324219 205.570312 277.324219 207.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.339844 235.132812 C 246.339844 236.75 243.910156 236.75 243.910156 235.132812 C 243.910156 233.511719 246.339844 233.511719 246.339844 235.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.351562 296.824219 C 214.351562 298.445312 211.921875 298.445312 211.921875 296.824219 C 211.921875 295.207031 214.351562 295.207031 214.351562 296.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.097656 252.9375 C 188.097656 254.558594 185.667969 254.558594 185.667969 252.9375 C 185.667969 251.320312 188.097656 251.320312 188.097656 252.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.753906 243.816406 C 222.753906 245.4375 220.324219 245.4375 220.324219 243.816406 C 220.324219 242.195312 222.753906 242.195312 222.753906 243.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.625 137.699219 C 326.625 139.320312 324.195312 139.320312 324.195312 137.699219 C 324.195312 136.082031 326.625 136.082031 326.625 137.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.0625 233.917969 C 323.0625 235.539062 320.632812 235.539062 320.632812 233.917969 C 320.632812 232.296875 323.0625 232.296875 323.0625 233.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.773438 418.691406 L 304.410156 415.855469 L 301.136719 415.855469 Z M 302.773438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.972656 305.8125 C 214.972656 307.433594 212.542969 307.433594 212.542969 305.8125 C 212.542969 304.195312 214.972656 304.195312 214.972656 305.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.949219 237.933594 C 188.949219 239.550781 186.519531 239.550781 186.519531 237.933594 C 186.519531 236.3125 188.949219 236.3125 188.949219 237.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.335938 282.558594 C 261.335938 284.179688 258.90625 284.179688 258.90625 282.558594 C 258.90625 280.941406 261.335938 280.941406 261.335938 282.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.9375 218.210938 C 288.9375 219.832031 286.507812 219.832031 286.507812 218.210938 C 286.507812 216.589844 288.9375 216.589844 288.9375 218.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.265625 199.085938 C 222.265625 200.703125 219.835938 200.703125 219.835938 199.085938 C 219.835938 197.464844 222.265625 197.464844 222.265625 199.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.402344 222.523438 C 260.402344 224.140625 257.972656 224.140625 257.972656 222.523438 C 257.972656 220.902344 260.402344 220.902344 260.402344 222.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.1875 168.898438 C 218.1875 170.519531 215.753906 170.519531 215.753906 168.898438 C 215.753906 167.277344 218.1875 167.277344 218.1875 168.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.449219 257.757812 C 258.449219 259.378906 256.015625 259.378906 256.015625 257.757812 C 256.015625 256.136719 258.449219 256.136719 258.449219 257.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.753906 141.097656 C 114.753906 142.714844 112.324219 142.714844 112.324219 141.097656 C 112.324219 139.476562 114.753906 139.476562 114.753906 141.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.488281 176.59375 C 127.488281 178.210938 125.058594 178.210938 125.058594 176.59375 C 125.058594 174.972656 127.488281 174.972656 127.488281 176.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.609375 252.984375 C 280.609375 254.605469 278.179688 254.605469 278.179688 252.984375 C 278.179688 251.367188 280.609375 251.367188 280.609375 252.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.1875 306.914062 C 313.1875 308.53125 310.757812 308.53125 310.757812 306.914062 C 310.757812 305.292969 313.1875 305.292969 313.1875 306.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.28125 298.871094 C 279.28125 300.488281 276.847656 300.488281 276.847656 298.871094 C 276.847656 297.25 279.28125 297.25 279.28125 298.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.050781 205.441406 C 253.050781 207.0625 250.617188 207.0625 250.617188 205.441406 C 250.617188 203.820312 253.050781 203.820312 253.050781 205.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.027344 238.433594 C 261.027344 240.054688 258.597656 240.054688 258.597656 238.433594 C 258.597656 236.816406 261.027344 236.816406 261.027344 238.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.894531 204.492188 C 260.894531 206.109375 258.464844 206.109375 258.464844 204.492188 C 258.464844 202.871094 260.894531 202.871094 260.894531 204.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.933594 152.085938 C 284.933594 153.707031 282.503906 153.707031 282.503906 152.085938 C 282.503906 150.464844 284.933594 150.464844 284.933594 152.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.726562 266.914062 C 263.726562 268.53125 261.296875 268.53125 261.296875 266.914062 C 261.296875 265.292969 263.726562 265.292969 263.726562 266.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.976562 279.070312 C 228.976562 280.6875 226.546875 280.6875 226.546875 279.070312 C 226.546875 277.449219 228.976562 277.449219 228.976562 279.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.832031 179.222656 C 170.832031 180.84375 168.402344 180.84375 168.402344 179.222656 C 168.402344 177.601562 170.832031 177.601562 170.832031 179.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.179688 70.910156 L 129.816406 73.746094 L 126.542969 73.746094 Z M 128.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.746094 247.75 C 300.746094 249.371094 298.316406 249.371094 298.316406 247.75 C 298.316406 246.128906 300.746094 246.128906 300.746094 247.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.675781 312.167969 C 303.675781 313.785156 301.246094 313.785156 301.246094 312.167969 C 301.246094 310.546875 303.675781 310.546875 303.675781 312.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.9375 284.308594 C 255.9375 285.929688 253.507812 285.929688 253.507812 284.308594 C 253.507812 282.6875 255.9375 282.6875 255.9375 284.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.445312 266.457031 C 294.445312 268.078125 292.015625 268.078125 292.015625 266.457031 C 292.015625 264.839844 294.445312 264.839844 294.445312 266.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.324219 109.925781 C 286.324219 111.546875 283.894531 111.546875 283.894531 109.925781 C 283.894531 108.308594 286.324219 108.308594 286.324219 109.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.105469 160.074219 C 203.105469 161.691406 200.675781 161.691406 200.675781 160.074219 C 200.675781 158.453125 203.105469 158.453125 203.105469 160.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.714844 70.910156 L 133.351562 73.746094 L 130.078125 73.746094 Z M 131.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.449219 203.734375 C 247.449219 205.351562 245.019531 205.351562 245.019531 203.734375 C 245.019531 202.113281 247.449219 202.113281 247.449219 203.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.917969 346.722656 C 225.917969 348.34375 223.488281 348.34375 223.488281 346.722656 C 223.488281 345.105469 225.917969 345.105469 225.917969 346.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.910156 321.691406 C 266.910156 323.308594 264.480469 323.308594 264.480469 321.691406 C 264.480469 320.070312 266.910156 320.070312 266.910156 321.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.976562 215.632812 C 284.976562 217.253906 282.546875 217.253906 282.546875 215.632812 C 282.546875 214.011719 284.976562 214.011719 284.976562 215.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.9375 129.054688 C 158.9375 130.671875 156.507812 130.671875 156.507812 129.054688 C 156.507812 127.433594 158.9375 127.433594 158.9375 129.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.089844 322.949219 C 252.089844 324.566406 249.660156 324.566406 249.660156 322.949219 C 249.660156 321.328125 252.089844 321.328125 252.089844 322.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.476562 159.914062 C 237.476562 161.535156 235.046875 161.535156 235.046875 159.914062 C 235.046875 158.292969 237.476562 158.292969 237.476562 159.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.953125 164.199219 C 256.953125 165.816406 254.523438 165.816406 254.523438 164.199219 C 254.523438 162.578125 256.953125 162.578125 256.953125 164.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.511719 161.023438 C 241.511719 162.644531 239.082031 162.644531 239.082031 161.023438 C 239.082031 159.40625 241.511719 159.40625 241.511719 161.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.414062 223.976562 C 294.414062 225.597656 291.984375 225.597656 291.984375 223.976562 C 291.984375 222.355469 294.414062 222.355469 294.414062 223.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.554688 418.691406 L 139.191406 415.855469 L 135.917969 415.855469 Z M 137.554688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.683594 402.34375 C 337.683594 403.960938 335.253906 403.960938 335.253906 402.34375 C 335.253906 400.722656 337.683594 400.722656 337.683594 402.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.726562 301.878906 C 281.726562 303.5 279.296875 303.5 279.296875 301.878906 C 279.296875 300.261719 281.726562 300.261719 281.726562 301.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 368.894531 247.535156 C 368.894531 249.15625 366.464844 249.15625 366.464844 247.535156 C 366.464844 245.914062 368.894531 245.914062 368.894531 247.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.40625 418.691406 L 142.042969 415.855469 L 138.769531 415.855469 Z M 140.40625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.8125 218.699219 C 285.8125 220.316406 283.382812 220.316406 283.382812 218.699219 C 283.382812 217.078125 285.8125 217.078125 285.8125 218.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.792969 73.636719 C 154.792969 75.257812 152.363281 75.257812 152.363281 73.636719 C 152.363281 72.015625 154.792969 72.015625 154.792969 73.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.34375 317.6875 C 320.34375 319.308594 317.914062 319.308594 317.914062 317.6875 C 317.914062 316.066406 320.34375 316.066406 320.34375 317.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.578125 193.804688 C 159.578125 195.421875 157.148438 195.421875 157.148438 193.804688 C 157.148438 192.183594 159.578125 192.183594 159.578125 193.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.636719 277.757812 C 201.636719 279.378906 199.203125 279.378906 199.203125 277.757812 C 199.203125 276.136719 201.636719 276.136719 201.636719 277.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.902344 199.554688 C 256.902344 201.175781 254.472656 201.175781 254.472656 199.554688 C 254.472656 197.9375 256.902344 197.9375 256.902344 199.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.910156 344.28125 C 345.910156 345.898438 343.480469 345.898438 343.480469 344.28125 C 343.480469 342.660156 345.910156 342.660156 345.910156 344.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.34375 393.046875 C 287.34375 394.664062 284.914062 394.664062 284.914062 393.046875 C 284.914062 391.425781 287.34375 391.425781 287.34375 393.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.304688 70.910156 L 232.941406 73.746094 L 229.667969 73.746094 Z M 231.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.300781 385.574219 C 139.300781 387.191406 136.871094 387.191406 136.871094 385.574219 C 136.871094 383.953125 139.300781 383.953125 139.300781 385.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.398438 163.207031 C 284.398438 164.828125 281.96875 164.828125 281.96875 163.207031 C 281.96875 161.589844 284.398438 161.589844 284.398438 163.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.546875 416.730469 C 242.546875 418.351562 240.113281 418.351562 240.113281 416.730469 C 240.113281 415.113281 242.546875 415.113281 242.546875 416.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.210938 98.128906 C 169.210938 99.75 166.78125 99.75 166.78125 98.128906 C 166.78125 96.507812 169.210938 96.507812 169.210938 98.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.476562 236.070312 C 248.476562 237.691406 246.046875 237.691406 246.046875 236.070312 C 246.046875 234.453125 248.476562 234.453125 248.476562 236.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 320.09375 70.910156 L 321.730469 73.746094 L 318.457031 73.746094 Z M 320.09375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.789062 70.910156 L 262.425781 73.746094 L 259.152344 73.746094 Z M 260.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.808594 301.292969 C 288.808594 302.914062 286.378906 302.914062 286.378906 301.292969 C 286.378906 299.675781 288.808594 299.675781 288.808594 301.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.375 70.910156 L 167.011719 73.746094 L 163.738281 73.746094 Z M 165.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.082031 233.253906 C 260.082031 234.875 257.652344 234.875 257.652344 233.253906 C 257.652344 231.636719 260.082031 231.636719 260.082031 233.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.851562 225.542969 C 304.851562 227.160156 302.421875 227.160156 302.421875 225.542969 C 302.421875 223.921875 304.851562 223.921875 304.851562 225.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.925781 226.367188 C 198.925781 227.988281 196.496094 227.988281 196.496094 226.367188 C 196.496094 224.746094 198.925781 224.746094 198.925781 226.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.40625 284.839844 C 233.40625 286.460938 230.976562 286.460938 230.976562 284.839844 C 230.976562 283.21875 233.40625 283.21875 233.40625 284.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.074219 305.402344 C 231.074219 307.019531 228.644531 307.019531 228.644531 305.402344 C 228.644531 303.78125 231.074219 303.78125 231.074219 305.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.238281 301.386719 C 273.238281 303.003906 270.808594 303.003906 270.808594 301.386719 C 270.808594 299.765625 273.238281 299.765625 273.238281 301.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.003906 209.789062 C 194.003906 211.410156 191.574219 211.410156 191.574219 209.789062 C 191.574219 208.167969 194.003906 208.167969 194.003906 209.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.429688 232.136719 C 289.429688 233.757812 287 233.757812 287 232.136719 C 287 230.515625 289.429688 230.515625 289.429688 232.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.066406 331.261719 C 228.066406 332.878906 225.636719 332.878906 225.636719 331.261719 C 225.636719 329.640625 228.066406 329.640625 228.066406 331.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.351562 103.945312 C 284.351562 105.566406 281.921875 105.566406 281.921875 103.945312 C 281.921875 102.324219 284.351562 102.324219 284.351562 103.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.625 208.847656 C 236.625 210.464844 234.195312 210.464844 234.195312 208.847656 C 234.195312 207.226562 236.625 207.226562 236.625 208.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.546875 261.910156 C 289.546875 263.53125 287.117188 263.53125 287.117188 261.910156 C 287.117188 260.289062 289.546875 260.289062 289.546875 261.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.179688 378.429688 C 294.179688 380.046875 291.75 380.046875 291.75 378.429688 C 291.75 376.808594 294.179688 376.808594 294.179688 378.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.964844 70.910156 L 219.601562 73.746094 L 216.328125 73.746094 Z M 217.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.804688 70.910156 L 209.441406 73.746094 L 206.167969 73.746094 Z M 207.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.140625 70.910156 L 211.777344 73.746094 L 208.503906 73.746094 Z M 210.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.257812 204.277344 C 226.257812 205.898438 223.828125 205.898438 223.828125 204.277344 C 223.828125 202.65625 226.257812 202.65625 226.257812 204.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.226562 311.714844 C 277.226562 313.335938 274.796875 313.335938 274.796875 311.714844 C 274.796875 310.097656 277.226562 310.097656 277.226562 311.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.9375 70.910156 L 197.574219 73.746094 L 194.300781 73.746094 Z M 195.9375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.53125 70.910156 L 182.167969 73.746094 L 178.894531 73.746094 Z M 180.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.117188 407.058594 C 331.117188 408.679688 328.6875 408.679688 328.6875 407.058594 C 328.6875 405.441406 331.117188 405.441406 331.117188 407.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.691406 195.703125 C 288.691406 197.324219 286.261719 197.324219 286.261719 195.703125 C 286.261719 194.085938 288.691406 194.085938 288.691406 195.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.882812 107.335938 C 155.882812 108.957031 153.453125 108.957031 153.453125 107.335938 C 153.453125 105.71875 155.882812 105.71875 155.882812 107.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.667969 262.976562 C 240.667969 264.597656 238.238281 264.597656 238.238281 262.976562 C 238.238281 261.359375 240.667969 261.359375 240.667969 262.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.035156 179.214844 C 286.035156 180.835938 283.605469 180.835938 283.605469 179.214844 C 283.605469 177.597656 286.035156 177.597656 286.035156 179.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.886719 222.121094 C 292.886719 223.742188 290.457031 223.742188 290.457031 222.121094 C 290.457031 220.503906 292.886719 220.503906 292.886719 222.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.109375 347.15625 C 265.109375 348.777344 262.679688 348.777344 262.679688 347.15625 C 262.679688 345.535156 265.109375 345.535156 265.109375 347.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.359375 145.789062 C 245.359375 147.40625 242.929688 147.40625 242.929688 145.789062 C 242.929688 144.167969 245.359375 144.167969 245.359375 145.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.699219 218.796875 C 278.699219 220.417969 276.269531 220.417969 276.269531 218.796875 C 276.269531 217.175781 278.699219 217.175781 278.699219 218.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.375 104.28125 C 242.375 105.898438 239.945312 105.898438 239.945312 104.28125 C 239.945312 102.660156 242.375 102.660156 242.375 104.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.953125 241.519531 C 318.953125 243.140625 316.523438 243.140625 316.523438 241.519531 C 316.523438 239.902344 318.953125 239.902344 318.953125 241.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.714844 70.910156 L 172.351562 73.746094 L 169.078125 73.746094 Z M 170.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 399.011719 182.734375 C 399.011719 184.355469 396.582031 184.355469 396.582031 182.734375 C 396.582031 181.117188 399.011719 181.117188 399.011719 182.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.777344 84.246094 C 245.777344 85.867188 243.347656 85.867188 243.347656 84.246094 C 243.347656 82.625 245.777344 82.625 245.777344 84.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.09375 217.171875 C 276.09375 218.792969 273.660156 218.792969 273.660156 217.171875 C 273.660156 215.550781 276.09375 215.550781 276.09375 217.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.816406 267.441406 C 229.816406 269.0625 227.386719 269.0625 227.386719 267.441406 C 227.386719 265.820312 229.816406 265.820312 229.816406 267.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.117188 274.710938 C 170.117188 276.328125 167.6875 276.328125 167.6875 274.710938 C 167.6875 273.089844 170.117188 273.089844 170.117188 274.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.234375 220.425781 C 251.234375 222.046875 248.800781 222.046875 248.800781 220.425781 C 248.800781 218.808594 251.234375 218.808594 251.234375 220.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 341.976562 262.164062 C 341.976562 263.78125 339.546875 263.78125 339.546875 262.164062 C 339.546875 260.542969 341.976562 260.542969 341.976562 262.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.6875 236.859375 C 201.6875 238.480469 199.257812 238.480469 199.257812 236.859375 C 199.257812 235.238281 201.6875 235.238281 201.6875 236.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.757812 294.722656 C 322.757812 296.339844 320.328125 296.339844 320.328125 294.722656 C 320.328125 293.101562 322.757812 293.101562 322.757812 294.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.105469 216.984375 C 261.105469 218.605469 258.675781 218.605469 258.675781 216.984375 C 258.675781 215.363281 261.105469 215.363281 261.105469 216.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.636719 146.148438 C 141.636719 147.769531 139.207031 147.769531 139.207031 146.148438 C 139.207031 144.527344 141.636719 144.527344 141.636719 146.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.828125 70.910156 L 126.464844 73.746094 L 123.191406 73.746094 Z M 124.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.085938 146.519531 C 255.085938 148.140625 252.65625 148.140625 252.65625 146.519531 C 252.65625 144.898438 255.085938 144.898438 255.085938 146.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.453125 236.238281 C 320.453125 237.855469 318.023438 237.855469 318.023438 236.238281 C 318.023438 234.617188 320.453125 234.617188 320.453125 236.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.90625 418.691406 L 273.539062 415.855469 L 270.269531 415.855469 Z M 271.90625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.4375 180.675781 C 110.4375 182.296875 108.007812 182.296875 108.007812 180.675781 C 108.007812 179.054688 110.4375 179.054688 110.4375 180.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.015625 207.390625 C 262.015625 209.011719 259.585938 209.011719 259.585938 207.390625 C 259.585938 205.773438 262.015625 205.773438 262.015625 207.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.257812 312.902344 C 189.257812 314.523438 186.828125 314.523438 186.828125 312.902344 C 186.828125 311.28125 189.257812 311.28125 189.257812 312.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.578125 277.804688 C 249.578125 279.425781 247.148438 279.425781 247.148438 277.804688 C 247.148438 276.183594 249.578125 276.183594 249.578125 277.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.445312 265.644531 C 263.445312 267.265625 261.011719 267.265625 261.011719 265.644531 C 261.011719 264.023438 263.445312 264.023438 263.445312 265.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.492188 259.308594 C 252.492188 260.929688 250.0625 260.929688 250.0625 259.308594 C 250.0625 257.691406 252.492188 257.691406 252.492188 259.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.996094 306.644531 C 224.996094 308.261719 222.566406 308.261719 222.566406 306.644531 C 222.566406 305.023438 224.996094 305.023438 224.996094 306.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.394531 70.910156 L 122.027344 73.746094 L 118.757812 73.746094 Z M 120.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.949219 299.878906 C 324.949219 301.5 322.519531 301.5 322.519531 299.878906 C 322.519531 298.261719 324.949219 298.261719 324.949219 299.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.847656 355.363281 C 370.847656 356.984375 368.417969 356.984375 368.417969 355.363281 C 368.417969 353.742188 370.847656 353.742188 370.847656 355.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.34375 288.046875 C 318.34375 289.664062 315.914062 289.664062 315.914062 288.046875 C 315.914062 286.425781 318.34375 286.425781 318.34375 288.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.472656 293.882812 C 261.472656 295.503906 259.042969 295.503906 259.042969 293.882812 C 259.042969 292.261719 261.472656 292.261719 261.472656 293.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.90625 315.394531 C 292.90625 317.015625 290.472656 317.015625 290.472656 315.394531 C 290.472656 313.773438 292.90625 313.773438 292.90625 315.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.378906 95.378906 C 123.378906 96.996094 120.949219 96.996094 120.949219 95.378906 C 120.949219 93.757812 123.378906 93.757812 123.378906 95.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.875 291.921875 C 158.875 293.542969 156.445312 293.542969 156.445312 291.921875 C 156.445312 290.304688 158.875 290.304688 158.875 291.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.558594 264.714844 C 274.558594 266.335938 272.128906 266.335938 272.128906 264.714844 C 272.128906 263.09375 274.558594 263.09375 274.558594 264.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.285156 167.179688 C 321.285156 168.796875 318.855469 168.796875 318.855469 167.179688 C 318.855469 165.558594 321.285156 165.558594 321.285156 167.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.699219 70.910156 L 164.335938 73.746094 L 161.0625 73.746094 Z M 162.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 363 233.28125 C 363 234.902344 360.570312 234.902344 360.570312 233.28125 C 360.570312 231.660156 363 231.660156 363 233.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.511719 139.960938 C 221.511719 141.582031 219.082031 141.582031 219.082031 139.960938 C 219.082031 138.339844 221.511719 138.339844 221.511719 139.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.8125 217.546875 C 331.8125 219.167969 329.382812 219.167969 329.382812 217.546875 C 329.382812 215.929688 331.8125 215.929688 331.8125 217.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.4375 133.664062 C 115.4375 135.285156 113.007812 135.285156 113.007812 133.664062 C 113.007812 132.042969 115.4375 132.042969 115.4375 133.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.636719 269.214844 C 260.636719 270.835938 258.207031 270.835938 258.207031 269.214844 C 258.207031 267.59375 260.636719 267.59375 260.636719 269.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.222656 302.058594 C 260.222656 303.675781 257.792969 303.675781 257.792969 302.058594 C 257.792969 300.4375 260.222656 300.4375 260.222656 302.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.875 313.917969 C 318.875 315.535156 316.441406 315.535156 316.441406 313.917969 C 316.441406 312.296875 318.875 312.296875 318.875 313.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.25 70.910156 L 186.886719 73.746094 L 183.613281 73.746094 Z M 185.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.101562 276.066406 C 258.101562 277.683594 255.671875 277.683594 255.671875 276.066406 C 255.671875 274.445312 258.101562 274.445312 258.101562 276.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.433594 376.695312 C 133.433594 378.3125 131.003906 378.3125 131.003906 376.695312 C 131.003906 375.074219 133.433594 375.074219 133.433594 376.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.992188 418.691406 L 134.628906 415.855469 L 131.355469 415.855469 Z M 132.992188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.996094 308.046875 C 198.996094 309.667969 196.5625 309.667969 196.5625 308.046875 C 196.5625 306.429688 198.996094 306.429688 198.996094 308.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.992188 284.058594 C 179.992188 285.679688 177.5625 285.679688 177.5625 284.058594 C 177.5625 282.4375 179.992188 282.4375 179.992188 284.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.671875 192.382812 C 285.671875 194.003906 283.242188 194.003906 283.242188 192.382812 C 283.242188 190.761719 285.671875 190.761719 285.671875 192.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.390625 294.589844 C 206.390625 296.210938 203.960938 296.210938 203.960938 294.589844 C 203.960938 292.96875 206.390625 292.96875 206.390625 294.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.386719 266.273438 C 228.386719 267.894531 225.957031 267.894531 225.957031 266.273438 C 225.957031 264.652344 228.386719 264.652344 228.386719 266.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.636719 284.332031 C 266.636719 285.953125 264.207031 285.953125 264.207031 284.332031 C 264.207031 282.710938 266.636719 282.710938 266.636719 284.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.222656 418.691406 L 173.859375 415.855469 L 170.585938 415.855469 Z M 172.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.695312 226.597656 C 261.695312 228.21875 259.265625 228.21875 259.265625 226.597656 C 259.265625 224.980469 261.695312 224.980469 261.695312 226.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.710938 249.007812 C 141.710938 250.628906 139.28125 250.628906 139.28125 249.007812 C 139.28125 247.386719 141.710938 247.386719 141.710938 249.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.957031 178.746094 C 252.957031 180.367188 250.527344 180.367188 250.527344 178.746094 C 250.527344 177.125 252.957031 177.125 252.957031 178.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.671875 239.570312 C 289.671875 241.191406 287.242188 241.191406 287.242188 239.570312 C 287.242188 237.953125 289.671875 237.953125 289.671875 239.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.125 283.753906 C 227.125 285.371094 224.695312 285.371094 224.695312 283.753906 C 224.695312 282.132812 227.125 282.132812 227.125 283.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.460938 296.019531 C 226.460938 297.640625 224.03125 297.640625 224.03125 296.019531 C 224.03125 294.398438 226.460938 294.398438 226.460938 296.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.566406 264.296875 C 272.566406 265.917969 270.136719 265.917969 270.136719 264.296875 C 270.136719 262.675781 272.566406 262.675781 272.566406 264.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.523438 252.808594 C 276.523438 254.429688 274.09375 254.429688 274.09375 252.808594 C 274.09375 251.191406 276.523438 251.191406 276.523438 252.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.59375 268.726562 C 261.59375 270.347656 259.164062 270.347656 259.164062 268.726562 C 259.164062 267.109375 261.59375 267.109375 261.59375 268.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.132812 189.824219 C 256.132812 191.445312 253.703125 191.445312 253.703125 189.824219 C 253.703125 188.207031 256.132812 188.207031 256.132812 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.695312 70.910156 L 261.332031 73.746094 L 258.058594 73.746094 Z M 259.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.109375 200.5 C 143.109375 202.121094 140.679688 202.121094 140.679688 200.5 C 140.679688 198.878906 143.109375 198.878906 143.109375 200.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.304688 70.910156 L 197.9375 73.746094 L 194.667969 73.746094 Z M 196.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.660156 70.910156 L 218.296875 73.746094 L 215.023438 73.746094 Z M 216.660156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.890625 70.910156 L 164.527344 73.746094 L 161.253906 73.746094 Z M 162.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.464844 415.570312 C 208.464844 417.191406 206.035156 417.191406 206.035156 415.570312 C 206.035156 413.949219 208.464844 413.949219 208.464844 415.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.101562 70.910156 L 153.738281 73.746094 L 150.464844 73.746094 Z M 152.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.828125 231.097656 C 281.828125 232.71875 279.398438 232.71875 279.398438 231.097656 C 279.398438 229.476562 281.828125 229.476562 281.828125 231.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.621094 233.710938 C 290.621094 235.332031 288.191406 235.332031 288.191406 233.710938 C 288.191406 232.089844 290.621094 232.089844 290.621094 233.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.800781 95.53125 C 211.800781 97.152344 209.367188 97.152344 209.367188 95.53125 C 209.367188 93.910156 211.800781 93.910156 211.800781 95.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.082031 117.847656 C 187.082031 119.464844 184.652344 119.464844 184.652344 117.847656 C 184.652344 116.226562 187.082031 116.226562 187.082031 117.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.957031 70.910156 L 185.59375 73.746094 L 182.320312 73.746094 Z M 183.957031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.699219 274.089844 C 249.699219 275.710938 247.269531 275.710938 247.269531 274.089844 C 247.269531 272.46875 249.699219 272.46875 249.699219 274.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.65625 116.59375 C 331.65625 118.214844 329.226562 118.214844 329.226562 116.59375 C 329.226562 114.972656 331.65625 114.972656 331.65625 116.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.523438 418.691406 L 131.160156 415.855469 L 127.886719 415.855469 Z M 129.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.847656 83.523438 C 232.847656 85.140625 230.417969 85.140625 230.417969 83.523438 C 230.417969 81.902344 232.847656 81.902344 232.847656 83.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.714844 111.882812 C 192.714844 113.503906 190.285156 113.503906 190.285156 111.882812 C 190.285156 110.261719 192.714844 110.261719 192.714844 111.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.386719 269.945312 C 350.386719 271.566406 347.957031 271.566406 347.957031 269.945312 C 347.957031 268.328125 350.386719 268.328125 350.386719 269.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.097656 182.730469 C 277.097656 184.351562 274.667969 184.351562 274.667969 182.730469 C 274.667969 181.113281 277.097656 181.113281 277.097656 182.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.390625 274.785156 C 262.390625 276.402344 259.960938 276.402344 259.960938 274.785156 C 259.960938 273.164062 262.390625 273.164062 262.390625 274.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.984375 115.449219 C 179.984375 117.070312 177.554688 117.070312 177.554688 115.449219 C 177.554688 113.828125 179.984375 113.828125 179.984375 115.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.257812 203.625 C 234.257812 205.242188 231.828125 205.242188 231.828125 203.625 C 231.828125 202.003906 234.257812 202.003906 234.257812 203.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.238281 143.414062 C 162.238281 145.035156 159.804688 145.035156 159.804688 143.414062 C 159.804688 141.796875 162.238281 141.796875 162.238281 143.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.609375 418.691406 L 217.246094 415.855469 L 213.972656 415.855469 Z M 215.609375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.703125 70.910156 L 199.335938 73.746094 L 196.066406 73.746094 Z M 197.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.136719 411.679688 C 259.136719 413.300781 256.707031 413.300781 256.707031 411.679688 C 256.707031 410.058594 259.136719 410.058594 259.136719 411.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.917969 300.265625 C 271.917969 301.886719 269.488281 301.886719 269.488281 300.265625 C 269.488281 298.644531 271.917969 298.644531 271.917969 300.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.457031 291.910156 C 254.457031 293.53125 252.027344 293.53125 252.027344 291.910156 C 252.027344 290.289062 254.457031 290.289062 254.457031 291.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.8125 70.910156 L 161.449219 73.746094 L 158.175781 73.746094 Z M 159.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.945312 276.210938 C 259.945312 277.832031 257.515625 277.832031 257.515625 276.210938 C 257.515625 274.59375 259.945312 274.59375 259.945312 276.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.992188 275.878906 C 265.992188 277.5 263.5625 277.5 263.5625 275.878906 C 263.5625 274.257812 265.992188 274.257812 265.992188 275.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.367188 252.882812 C 254.367188 254.503906 251.9375 254.503906 251.9375 252.882812 C 251.9375 251.261719 254.367188 251.261719 254.367188 252.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.257812 317.859375 C 220.257812 319.476562 217.824219 319.476562 217.824219 317.859375 C 217.824219 316.238281 220.257812 316.238281 220.257812 317.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.253906 366.183594 C 188.253906 367.804688 185.824219 367.804688 185.824219 366.183594 C 185.824219 364.5625 188.253906 364.5625 188.253906 366.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.296875 323.71875 C 216.296875 325.335938 213.867188 325.335938 213.867188 323.71875 C 213.867188 322.097656 216.296875 322.097656 216.296875 323.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.71875 360.6875 C 233.71875 362.304688 231.289062 362.304688 231.289062 360.6875 C 231.289062 359.066406 233.71875 359.066406 233.71875 360.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.71875 267.015625 C 301.71875 268.632812 299.289062 268.632812 299.289062 267.015625 C 299.289062 265.394531 301.71875 265.394531 301.71875 267.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.390625 268.039062 C 245.390625 269.660156 242.960938 269.660156 242.960938 268.039062 C 242.960938 266.417969 245.390625 266.417969 245.390625 268.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.945312 252.976562 C 243.945312 254.597656 241.515625 254.597656 241.515625 252.976562 C 241.515625 251.355469 243.945312 251.355469 243.945312 252.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.171875 308.027344 C 207.171875 309.644531 204.742188 309.644531 204.742188 308.027344 C 204.742188 306.40625 207.171875 306.40625 207.171875 308.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.9375 335.714844 C 140.9375 337.335938 138.507812 337.335938 138.507812 335.714844 C 138.507812 334.097656 140.9375 334.097656 140.9375 335.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.753906 141.097656 C 114.753906 142.714844 112.324219 142.714844 112.324219 141.097656 C 112.324219 139.476562 114.753906 139.476562 114.753906 141.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.988281 293.46875 C 240.988281 295.089844 238.558594 295.089844 238.558594 293.46875 C 238.558594 291.847656 240.988281 291.847656 240.988281 293.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.539062 323.175781 C 243.539062 324.796875 241.109375 324.796875 241.109375 323.175781 C 241.109375 321.554688 243.539062 321.554688 243.539062 323.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 378.871094 154.664062 C 378.871094 156.285156 376.441406 156.285156 376.441406 154.664062 C 376.441406 153.046875 378.871094 153.046875 378.871094 154.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.460938 136.945312 C 366.460938 138.566406 364.03125 138.566406 364.03125 136.945312 C 364.03125 135.328125 366.460938 135.328125 366.460938 136.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 344.484375 156.742188 C 344.484375 158.363281 342.054688 158.363281 342.054688 156.742188 C 342.054688 155.121094 344.484375 155.121094 344.484375 156.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 416.367188 157.90625 C 416.367188 159.523438 413.9375 159.523438 413.9375 157.90625 C 413.9375 156.285156 416.367188 156.285156 416.367188 157.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 400.253906 114.816406 C 400.253906 116.4375 397.824219 116.4375 397.824219 114.816406 C 397.824219 113.199219 400.253906 113.199219 400.253906 114.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.453125 221.9375 C 253.453125 223.558594 251.023438 223.558594 251.023438 221.9375 C 251.023438 220.316406 253.453125 220.316406 253.453125 221.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.453125 317.382812 C 327.453125 319.003906 325.023438 319.003906 325.023438 317.382812 C 325.023438 315.765625 327.453125 315.765625 327.453125 317.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.902344 70.910156 L 169.539062 73.746094 L 166.265625 73.746094 Z M 167.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.398438 133.585938 C 231.398438 135.203125 228.96875 135.203125 228.96875 133.585938 C 228.96875 131.964844 231.398438 131.964844 231.398438 133.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.011719 280.5 C 217.011719 282.121094 214.582031 282.121094 214.582031 280.5 C 214.582031 278.882812 217.011719 278.882812 217.011719 280.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.167969 233.515625 C 210.167969 235.136719 207.738281 235.136719 207.738281 233.515625 C 207.738281 231.894531 210.167969 231.894531 210.167969 233.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.957031 252.765625 C 308.957031 254.382812 306.527344 254.382812 306.527344 252.765625 C 306.527344 251.144531 308.957031 251.144531 308.957031 252.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.90625 383.726562 C 304.90625 385.34375 302.476562 385.34375 302.476562 383.726562 C 302.476562 382.105469 304.90625 382.105469 304.90625 383.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.410156 208.386719 C 214.410156 210.007812 211.980469 210.007812 211.980469 208.386719 C 211.980469 206.769531 214.410156 206.769531 214.410156 208.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.910156 267.289062 C 279.910156 268.90625 277.480469 268.90625 277.480469 267.289062 C 277.480469 265.667969 279.910156 265.667969 279.910156 267.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.53125 289.898438 C 250.53125 291.519531 248.101562 291.519531 248.101562 289.898438 C 248.101562 288.28125 250.53125 288.28125 250.53125 289.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.03125 311.539062 C 294.03125 313.160156 291.601562 313.160156 291.601562 311.539062 C 291.601562 309.917969 294.03125 309.917969 294.03125 311.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.003906 265.046875 C 301.003906 266.667969 298.574219 266.667969 298.574219 265.046875 C 298.574219 263.425781 301.003906 263.425781 301.003906 265.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.769531 186.90625 C 216.769531 188.527344 214.339844 188.527344 214.339844 186.90625 C 214.339844 185.289062 216.769531 185.289062 216.769531 186.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.5 158.933594 C 281.5 160.554688 279.070312 160.554688 279.070312 158.933594 C 279.070312 157.3125 281.5 157.3125 281.5 158.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.988281 201.421875 C 306.988281 203.042969 304.558594 203.042969 304.558594 201.421875 C 304.558594 199.804688 306.988281 199.804688 306.988281 201.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.285156 230.085938 C 250.285156 231.707031 247.851562 231.707031 247.851562 230.085938 C 247.851562 228.464844 250.285156 228.464844 250.285156 230.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.671875 334.734375 C 131.671875 336.355469 129.242188 336.355469 129.242188 334.734375 C 129.242188 333.117188 131.671875 333.117188 131.671875 334.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.761719 294.171875 C 247.761719 295.792969 245.332031 295.792969 245.332031 294.171875 C 245.332031 292.550781 247.761719 292.550781 247.761719 294.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.746094 258.605469 C 233.746094 260.226562 231.316406 260.226562 231.316406 258.605469 C 231.316406 256.988281 233.746094 256.988281 233.746094 258.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.160156 70.910156 L 310.796875 73.746094 L 307.523438 73.746094 Z M 309.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.671875 113.984375 C 294.671875 115.605469 292.242188 115.605469 292.242188 113.984375 C 292.242188 112.367188 294.671875 112.367188 294.671875 113.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.726562 281.8125 C 252.726562 283.429688 250.296875 283.429688 250.296875 281.8125 C 250.296875 280.191406 252.726562 280.191406 252.726562 281.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.699219 284.675781 C 287.699219 286.292969 285.269531 286.292969 285.269531 284.675781 C 285.269531 283.054688 287.699219 283.054688 287.699219 284.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.207031 210.191406 C 262.207031 211.808594 259.777344 211.808594 259.777344 210.191406 C 259.777344 208.570312 262.207031 208.570312 262.207031 210.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.625 294.824219 C 277.625 296.445312 275.195312 296.445312 275.195312 294.824219 C 275.195312 293.203125 277.625 293.203125 277.625 294.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.714844 207.566406 C 258.714844 209.183594 256.285156 209.183594 256.285156 207.566406 C 256.285156 205.945312 258.714844 205.945312 258.714844 207.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.976562 196.238281 C 270.976562 197.859375 268.546875 197.859375 268.546875 196.238281 C 268.546875 194.621094 270.976562 194.621094 270.976562 196.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.675781 341.390625 C 203.675781 343.007812 201.246094 343.007812 201.246094 341.390625 C 201.246094 339.769531 203.675781 339.769531 203.675781 341.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.328125 331.457031 C 251.328125 333.078125 248.898438 333.078125 248.898438 331.457031 C 248.898438 329.839844 251.328125 329.839844 251.328125 331.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.699219 411.503906 C 125.699219 413.125 123.269531 413.125 123.269531 411.503906 C 123.269531 409.882812 125.699219 409.882812 125.699219 411.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.03125 70.910156 L 148.667969 73.746094 L 145.398438 73.746094 Z M 147.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.367188 325.777344 C 137.367188 327.398438 134.9375 327.398438 134.9375 325.777344 C 134.9375 324.160156 137.367188 324.160156 137.367188 325.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.320312 306.445312 C 297.320312 308.066406 294.890625 308.066406 294.890625 306.445312 C 294.890625 304.828125 297.320312 304.828125 297.320312 306.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.53125 231.082031 C 257.53125 232.699219 255.101562 232.699219 255.101562 231.082031 C 255.101562 229.460938 257.53125 229.460938 257.53125 231.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.667969 281.191406 C 276.667969 282.808594 274.238281 282.808594 274.238281 281.191406 C 274.238281 279.570312 276.667969 279.570312 276.667969 281.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.152344 244.027344 C 278.152344 245.648438 275.722656 245.648438 275.722656 244.027344 C 275.722656 242.40625 278.152344 242.40625 278.152344 244.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.195312 86.222656 C 189.195312 87.839844 186.765625 87.839844 186.765625 86.222656 C 186.765625 84.601562 189.195312 84.601562 189.195312 86.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.324219 70.910156 L 227.957031 73.746094 L 224.6875 73.746094 Z M 226.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.097656 70.910156 L 189.734375 73.746094 L 186.460938 73.746094 Z M 188.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.265625 273.628906 C 172.265625 275.25 169.832031 275.25 169.832031 273.628906 C 169.832031 272.007812 172.265625 272.007812 172.265625 273.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.851562 280.257812 C 235.851562 281.875 233.421875 281.875 233.421875 280.257812 C 233.421875 278.636719 235.851562 278.636719 235.851562 280.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.523438 284.550781 C 297.523438 286.171875 295.09375 286.171875 295.09375 284.550781 C 295.09375 282.933594 297.523438 282.933594 297.523438 284.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.605469 264.136719 C 309.605469 265.757812 307.175781 265.757812 307.175781 264.136719 C 307.175781 262.515625 309.605469 262.515625 309.605469 264.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.613281 224.316406 C 294.613281 225.9375 292.183594 225.9375 292.183594 224.316406 C 292.183594 222.695312 294.613281 222.695312 294.613281 224.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.414062 199.289062 C 304.414062 200.90625 301.984375 200.90625 301.984375 199.289062 C 301.984375 197.667969 304.414062 197.667969 304.414062 199.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.734375 317.953125 C 251.734375 319.574219 249.304688 319.574219 249.304688 317.953125 C 249.304688 316.335938 251.734375 316.335938 251.734375 317.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.6875 310.085938 C 242.6875 311.703125 240.257812 311.703125 240.257812 310.085938 C 240.257812 308.464844 242.6875 308.464844 242.6875 310.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.644531 151.136719 C 216.644531 152.757812 214.214844 152.757812 214.214844 151.136719 C 214.214844 149.515625 216.644531 149.515625 216.644531 151.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.125 177.726562 C 267.125 179.347656 264.695312 179.347656 264.695312 177.726562 C 264.695312 176.105469 267.125 176.105469 267.125 177.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.945312 221.425781 C 251.945312 223.046875 249.515625 223.046875 249.515625 221.425781 C 249.515625 219.804688 251.945312 219.804688 251.945312 221.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.460938 178.058594 C 187.460938 179.679688 185.03125 179.679688 185.03125 178.058594 C 185.03125 176.4375 187.460938 176.4375 187.460938 178.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.039062 279.375 C 178.039062 280.996094 175.609375 280.996094 175.609375 279.375 C 175.609375 277.757812 178.039062 277.757812 178.039062 279.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.339844 261.15625 C 272.339844 262.773438 269.910156 262.773438 269.910156 261.15625 C 269.910156 259.535156 272.339844 259.535156 272.339844 261.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.859375 200.25 C 277.859375 201.871094 275.429688 201.871094 275.429688 200.25 C 275.429688 198.628906 277.859375 198.628906 277.859375 200.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.949219 233.117188 C 265.949219 234.738281 263.515625 234.738281 263.515625 233.117188 C 263.515625 231.496094 265.949219 231.496094 265.949219 233.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.175781 324.710938 C 184.175781 326.332031 181.746094 326.332031 181.746094 324.710938 C 181.746094 323.089844 184.175781 323.089844 184.175781 324.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.296875 300.433594 C 268.296875 302.054688 265.867188 302.054688 265.867188 300.433594 C 265.867188 298.8125 268.296875 298.8125 268.296875 300.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.066406 268.226562 C 201.066406 269.847656 198.636719 269.847656 198.636719 268.226562 C 198.636719 266.605469 201.066406 266.605469 201.066406 268.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.792969 343.085938 C 254.792969 344.707031 252.363281 344.707031 252.363281 343.085938 C 252.363281 341.464844 254.792969 341.464844 254.792969 343.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.632812 321.847656 C 358.632812 323.46875 356.203125 323.46875 356.203125 321.847656 C 356.203125 320.226562 358.632812 320.226562 358.632812 321.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 400.4375 369.210938 C 400.4375 370.832031 398.007812 370.832031 398.007812 369.210938 C 398.007812 367.59375 400.4375 367.59375 400.4375 369.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.925781 282.996094 C 266.925781 284.617188 264.496094 284.617188 264.496094 282.996094 C 264.496094 281.375 266.925781 281.375 266.925781 282.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.675781 399.878906 C 172.675781 401.496094 170.246094 401.496094 170.246094 399.878906 C 170.246094 398.257812 172.675781 398.257812 172.675781 399.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.382812 202.6875 C 125.382812 204.308594 122.953125 204.308594 122.953125 202.6875 C 122.953125 201.066406 125.382812 201.066406 125.382812 202.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.457031 163.660156 C 142.457031 165.277344 140.027344 165.277344 140.027344 163.660156 C 140.027344 162.039062 142.457031 162.039062 142.457031 163.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 180.0625 84.347656 C 180.0625 85.964844 177.632812 85.964844 177.632812 84.347656 C 177.632812 82.726562 180.0625 82.726562 180.0625 84.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.460938 194.125 C 280.460938 195.746094 278.03125 195.746094 278.03125 194.125 C 278.03125 192.503906 280.460938 192.503906 280.460938 194.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.597656 274.976562 C 175.597656 276.597656 173.167969 276.597656 173.167969 274.976562 C 173.167969 273.355469 175.597656 273.355469 175.597656 274.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.929688 243.507812 C 309.929688 245.128906 307.5 245.128906 307.5 243.507812 C 307.5 241.886719 309.929688 241.886719 309.929688 243.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.316406 317.847656 C 109.316406 319.46875 106.886719 319.46875 106.886719 317.847656 C 106.886719 316.230469 109.316406 316.230469 109.316406 317.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.167969 191.753906 C 243.167969 193.371094 240.738281 193.371094 240.738281 191.753906 C 240.738281 190.132812 243.167969 190.132812 243.167969 191.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.175781 199.175781 C 241.175781 200.796875 238.746094 200.796875 238.746094 199.175781 C 238.746094 197.558594 241.175781 197.558594 241.175781 199.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.824219 294.308594 C 241.824219 295.925781 239.390625 295.925781 239.390625 294.308594 C 239.390625 292.6875 241.824219 292.6875 241.824219 294.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.691406 263.867188 C 271.691406 265.488281 269.261719 265.488281 269.261719 263.867188 C 269.261719 262.25 271.691406 262.25 271.691406 263.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.109375 70.910156 L 218.746094 73.746094 L 215.472656 73.746094 Z M 217.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.894531 138.328125 C 257.894531 139.949219 255.464844 139.949219 255.464844 138.328125 C 255.464844 136.710938 257.894531 136.710938 257.894531 138.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.628906 199.132812 C 175.628906 200.75 173.199219 200.75 173.199219 199.132812 C 173.199219 197.511719 175.628906 197.511719 175.628906 199.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.347656 299.800781 C 309.347656 301.421875 306.917969 301.421875 306.917969 299.800781 C 306.917969 298.183594 309.347656 298.183594 309.347656 299.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.175781 242.890625 C 320.175781 244.511719 317.746094 244.511719 317.746094 242.890625 C 317.746094 241.269531 320.175781 241.269531 320.175781 242.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.152344 281.136719 C 272.152344 282.757812 269.722656 282.757812 269.722656 281.136719 C 269.722656 279.515625 272.152344 279.515625 272.152344 281.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.394531 192.464844 C 192.394531 194.085938 189.964844 194.085938 189.964844 192.464844 C 189.964844 190.84375 192.394531 190.84375 192.394531 192.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.417969 290.304688 C 286.417969 291.925781 283.988281 291.925781 283.988281 290.304688 C 283.988281 288.6875 286.417969 288.6875 286.417969 290.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.398438 274.339844 C 279.398438 275.957031 276.96875 275.957031 276.96875 274.339844 C 276.96875 272.71875 279.398438 272.71875 279.398438 274.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.082031 70.910156 L 132.71875 73.746094 L 129.445312 73.746094 Z M 131.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.605469 213.917969 C 257.605469 215.535156 255.171875 215.535156 255.171875 213.917969 C 255.171875 212.296875 257.605469 212.296875 257.605469 213.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.988281 144.710938 C 141.988281 146.328125 139.558594 146.328125 139.558594 144.710938 C 139.558594 143.089844 141.988281 143.089844 141.988281 144.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.792969 383.507812 C 187.792969 385.128906 185.363281 385.128906 185.363281 383.507812 C 185.363281 381.890625 187.792969 381.890625 187.792969 383.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.890625 196.753906 C 122.890625 198.371094 120.457031 198.371094 120.457031 196.753906 C 120.457031 195.132812 122.890625 195.132812 122.890625 196.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.140625 183.898438 C 263.140625 185.515625 260.710938 185.515625 260.710938 183.898438 C 260.710938 182.277344 263.140625 182.277344 263.140625 183.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.828125 166.28125 C 314.828125 167.898438 312.398438 167.898438 312.398438 166.28125 C 312.398438 164.660156 314.828125 164.660156 314.828125 166.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.109375 81.042969 C 170.109375 82.660156 167.679688 82.660156 167.679688 81.042969 C 167.679688 79.421875 170.109375 79.421875 170.109375 81.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.492188 305.160156 C 288.492188 306.78125 286.0625 306.78125 286.0625 305.160156 C 286.0625 303.539062 288.492188 303.539062 288.492188 305.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.882812 240.40625 C 305.882812 242.027344 303.449219 242.027344 303.449219 240.40625 C 303.449219 238.789062 305.882812 238.789062 305.882812 240.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.265625 247.714844 C 274.265625 249.335938 271.835938 249.335938 271.835938 247.714844 C 271.835938 246.09375 274.265625 246.09375 274.265625 247.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.617188 293.183594 C 263.617188 294.804688 261.1875 294.804688 261.1875 293.183594 C 261.1875 291.5625 263.617188 291.5625 263.617188 293.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.578125 228.558594 C 171.578125 230.179688 169.148438 230.179688 169.148438 228.558594 C 169.148438 226.9375 171.578125 226.9375 171.578125 228.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.007812 154.605469 C 173.007812 156.226562 170.578125 156.226562 170.578125 154.605469 C 170.578125 152.984375 173.007812 152.984375 173.007812 154.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.785156 387.640625 C 243.785156 389.257812 241.355469 389.257812 241.355469 387.640625 C 241.355469 386.019531 243.785156 386.019531 243.785156 387.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.679688 288.4375 C 203.679688 290.058594 201.25 290.058594 201.25 288.4375 C 201.25 286.816406 203.679688 286.816406 203.679688 288.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.480469 319.351562 C 177.480469 320.972656 175.050781 320.972656 175.050781 319.351562 C 175.050781 317.734375 177.480469 317.734375 177.480469 319.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.171875 320.730469 C 220.171875 322.347656 217.742188 322.347656 217.742188 320.730469 C 217.742188 319.109375 220.171875 319.109375 220.171875 320.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.460938 294.355469 C 248.460938 295.976562 246.03125 295.976562 246.03125 294.355469 C 246.03125 292.738281 248.460938 292.738281 248.460938 294.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.300781 294.0625 C 223.300781 295.683594 220.871094 295.683594 220.871094 294.0625 C 220.871094 292.441406 223.300781 292.441406 223.300781 294.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.710938 270.894531 C 256.710938 272.511719 254.277344 272.511719 254.277344 270.894531 C 254.277344 269.273438 256.710938 269.273438 256.710938 270.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.816406 156.039062 C 129.816406 157.660156 127.386719 157.660156 127.386719 156.039062 C 127.386719 154.417969 129.816406 154.417969 129.816406 156.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.597656 70.910156 L 198.230469 73.746094 L 194.960938 73.746094 Z M 196.597656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.765625 70.910156 L 240.402344 73.746094 L 237.128906 73.746094 Z M 238.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.363281 322.554688 C 158.363281 324.175781 155.933594 324.175781 155.933594 322.554688 C 155.933594 320.933594 158.363281 320.933594 158.363281 322.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.910156 273.289062 C 303.910156 274.910156 301.480469 274.910156 301.480469 273.289062 C 301.480469 271.667969 303.910156 271.667969 303.910156 273.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.566406 292.292969 C 241.566406 293.914062 239.136719 293.914062 239.136719 292.292969 C 239.136719 290.671875 241.566406 290.671875 241.566406 292.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.203125 223.78125 C 251.203125 225.402344 248.773438 225.402344 248.773438 223.78125 C 248.773438 222.160156 251.203125 222.160156 251.203125 223.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.621094 216.6875 C 277.621094 218.304688 275.191406 218.304688 275.191406 216.6875 C 275.191406 215.066406 277.621094 215.066406 277.621094 216.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.074219 418.691406 L 161.710938 415.855469 L 158.4375 415.855469 Z M 160.074219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 425.429688 245.050781 C 425.429688 246.671875 422.996094 246.671875 422.996094 245.050781 C 422.996094 243.429688 425.429688 243.429688 425.429688 245.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.476562 380.0625 C 118.476562 381.683594 116.046875 381.683594 116.046875 380.0625 C 116.046875 378.441406 118.476562 378.441406 118.476562 380.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.257812 282.175781 C 227.257812 283.796875 224.828125 283.796875 224.828125 282.175781 C 224.828125 280.554688 227.257812 280.554688 227.257812 282.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.636719 305.714844 C 249.636719 307.335938 247.207031 307.335938 247.207031 305.714844 C 247.207031 304.09375 249.636719 304.09375 249.636719 305.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.035156 113.996094 C 195.035156 115.617188 192.605469 115.617188 192.605469 113.996094 C 192.605469 112.375 195.035156 112.375 195.035156 113.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.53125 271.464844 C 248.53125 273.082031 246.101562 273.082031 246.101562 271.464844 C 246.101562 269.84375 248.53125 269.84375 248.53125 271.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.921875 225.511719 C 328.921875 227.128906 326.492188 227.128906 326.492188 225.511719 C 326.492188 223.890625 328.921875 223.890625 328.921875 225.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.199219 246.679688 C 129.199219 248.296875 126.765625 248.296875 126.765625 246.679688 C 126.765625 245.058594 129.199219 245.058594 129.199219 246.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.09375 70.910156 L 124.730469 73.746094 L 121.457031 73.746094 Z M 123.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.652344 236.335938 C 248.652344 237.957031 246.222656 237.957031 246.222656 236.335938 C 246.222656 234.714844 248.652344 234.714844 248.652344 236.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.253906 129.4375 C 164.253906 131.058594 161.824219 131.058594 161.824219 129.4375 C 161.824219 127.816406 164.253906 127.816406 164.253906 129.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.695312 70.910156 L 191.332031 73.746094 L 188.058594 73.746094 Z M 189.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.277344 248.765625 C 196.277344 250.386719 193.847656 250.386719 193.847656 248.765625 C 193.847656 247.144531 196.277344 247.144531 196.277344 248.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.046875 244.632812 C 247.046875 246.253906 244.617188 246.253906 244.617188 244.632812 C 244.617188 243.015625 247.046875 243.015625 247.046875 244.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.917969 418.691406 L 110.550781 415.855469 L 107.28125 415.855469 Z M 108.917969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.894531 176.339844 C 125.894531 177.960938 123.464844 177.960938 123.464844 176.339844 C 123.464844 174.722656 125.894531 174.722656 125.894531 176.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.066406 134.003906 C 189.066406 135.621094 186.636719 135.621094 186.636719 134.003906 C 186.636719 132.382812 189.066406 132.382812 189.066406 134.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.070312 347.558594 C 208.070312 349.179688 205.640625 349.179688 205.640625 347.558594 C 205.640625 345.9375 208.070312 345.9375 208.070312 347.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.378906 261.980469 C 204.378906 263.601562 201.949219 263.601562 201.949219 261.980469 C 201.949219 260.363281 204.378906 260.363281 204.378906 261.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.753906 418.691406 L 197.390625 415.855469 L 194.117188 415.855469 Z M 195.753906 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.875 70.910156 L 326.511719 73.746094 L 323.242188 73.746094 Z M 324.875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.609375 70.910156 L 313.246094 73.746094 L 309.972656 73.746094 Z M 311.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.351562 259.253906 C 234.351562 260.875 231.921875 260.875 231.921875 259.253906 C 231.921875 257.632812 234.351562 257.632812 234.351562 259.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.6875 238.363281 C 267.6875 239.984375 265.257812 239.984375 265.257812 238.363281 C 265.257812 236.742188 267.6875 236.742188 267.6875 238.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.5 70.910156 L 307.136719 73.746094 L 303.863281 73.746094 Z M 305.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.933594 259.785156 C 256.933594 261.402344 254.503906 261.402344 254.503906 259.785156 C 254.503906 258.164062 256.933594 258.164062 256.933594 259.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.023438 118.054688 C 170.023438 119.671875 167.59375 119.671875 167.59375 118.054688 C 167.59375 116.433594 170.023438 116.433594 170.023438 118.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.78125 347.667969 C 214.78125 349.289062 212.351562 349.289062 212.351562 347.667969 C 212.351562 346.050781 214.78125 346.050781 214.78125 347.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.648438 283.484375 C 252.648438 285.105469 250.21875 285.105469 250.21875 283.484375 C 250.21875 281.867188 252.648438 281.867188 252.648438 283.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.148438 266.5 C 284.148438 268.117188 281.71875 268.117188 281.71875 266.5 C 281.71875 264.878906 284.148438 264.878906 284.148438 266.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.214844 270.519531 C 281.214844 272.136719 278.78125 272.136719 278.78125 270.519531 C 278.78125 268.898438 281.214844 268.898438 281.214844 270.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.609375 183.644531 C 232.609375 185.261719 230.179688 185.261719 230.179688 183.644531 C 230.179688 182.023438 232.609375 182.023438 232.609375 183.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.300781 70.910156 L 128.9375 73.746094 L 125.664062 73.746094 Z M 127.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.949219 205.160156 C 213.949219 206.78125 211.515625 206.78125 211.515625 205.160156 C 211.515625 203.539062 213.949219 203.539062 213.949219 205.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.066406 285.304688 C 258.066406 286.925781 255.632812 286.925781 255.632812 285.304688 C 255.632812 283.683594 258.066406 283.683594 258.066406 285.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.25 70.910156 L 201.886719 73.746094 L 198.613281 73.746094 Z M 200.25 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.457031 70.910156 L 306.09375 73.746094 L 302.820312 73.746094 Z M 304.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.347656 258.6875 C 259.347656 260.308594 256.917969 260.308594 256.917969 258.6875 C 256.917969 257.070312 259.347656 257.070312 259.347656 258.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.84375 252.90625 C 231.84375 254.527344 229.414062 254.527344 229.414062 252.90625 C 229.414062 251.285156 231.84375 251.285156 231.84375 252.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.355469 254.230469 C 205.355469 255.851562 202.925781 255.851562 202.925781 254.230469 C 202.925781 252.613281 205.355469 252.613281 205.355469 254.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.886719 113.128906 C 214.886719 114.746094 212.457031 114.746094 212.457031 113.128906 C 212.457031 111.507812 214.886719 111.507812 214.886719 113.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.472656 282.199219 C 202.472656 283.820312 200.042969 283.820312 200.042969 282.199219 C 200.042969 280.578125 202.472656 280.578125 202.472656 282.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.339844 304.171875 C 244.339844 305.789062 241.90625 305.789062 241.90625 304.171875 C 241.90625 302.550781 244.339844 302.550781 244.339844 304.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.832031 288.996094 C 301.832031 290.617188 299.402344 290.617188 299.402344 288.996094 C 299.402344 287.378906 301.832031 287.378906 301.832031 288.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.929688 140.277344 C 279.929688 141.894531 277.5 141.894531 277.5 140.277344 C 277.5 138.65625 279.929688 138.65625 279.929688 140.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.566406 340.019531 C 140.566406 341.640625 138.136719 341.640625 138.136719 340.019531 C 138.136719 338.398438 140.566406 338.398438 140.566406 340.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.128906 309.097656 C 362.128906 310.714844 359.699219 310.714844 359.699219 309.097656 C 359.699219 307.476562 362.128906 307.476562 362.128906 309.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.976562 213.621094 C 276.976562 215.238281 274.546875 215.238281 274.546875 213.621094 C 274.546875 212 276.976562 212 276.976562 213.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.476562 224.066406 C 162.476562 225.6875 160.046875 225.6875 160.046875 224.066406 C 160.046875 222.449219 162.476562 222.449219 162.476562 224.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.871094 265.902344 C 259.871094 267.519531 257.441406 267.519531 257.441406 265.902344 C 257.441406 264.28125 259.871094 264.28125 259.871094 265.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.414062 264.226562 C 239.414062 265.847656 236.984375 265.847656 236.984375 264.226562 C 236.984375 262.609375 239.414062 262.609375 239.414062 264.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.808594 268.242188 C 270.808594 269.863281 268.375 269.863281 268.375 268.242188 C 268.375 266.625 270.808594 266.625 270.808594 268.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.515625 326.847656 C 267.515625 328.464844 265.085938 328.464844 265.085938 326.847656 C 265.085938 325.226562 267.515625 325.226562 267.515625 326.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.171875 299.445312 C 255.171875 301.0625 252.742188 301.0625 252.742188 299.445312 C 252.742188 297.824219 255.171875 297.824219 255.171875 299.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.363281 230.628906 C 218.363281 232.246094 215.933594 232.246094 215.933594 230.628906 C 215.933594 229.007812 218.363281 229.007812 218.363281 230.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.808594 418.691406 L 278.445312 415.855469 L 275.171875 415.855469 Z M 276.808594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.078125 261.300781 C 224.078125 262.921875 221.648438 262.921875 221.648438 261.300781 C 221.648438 259.679688 224.078125 259.679688 224.078125 261.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.324219 179.515625 C 244.324219 181.136719 241.894531 181.136719 241.894531 179.515625 C 241.894531 177.894531 244.324219 177.894531 244.324219 179.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.175781 305.351562 C 203.175781 306.972656 200.746094 306.972656 200.746094 305.351562 C 200.746094 303.734375 203.175781 303.734375 203.175781 305.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 409.011719 328.679688 C 409.011719 330.300781 406.582031 330.300781 406.582031 328.679688 C 406.582031 327.0625 409.011719 327.0625 409.011719 328.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.320312 418.691406 L 283.957031 415.855469 L 280.683594 415.855469 Z M 282.320312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.015625 418.691406 L 140.652344 415.855469 L 137.382812 415.855469 Z M 139.015625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.734375 418.691406 L 350.371094 415.855469 L 347.097656 415.855469 Z M 348.734375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.054688 383.652344 C 197.054688 385.273438 194.625 385.273438 194.625 383.652344 C 194.625 382.035156 197.054688 382.035156 197.054688 383.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.9375 229.484375 C 196.9375 231.101562 194.507812 231.101562 194.507812 229.484375 C 194.507812 227.863281 196.9375 227.863281 196.9375 229.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.007812 238.394531 C 210.007812 240.015625 207.578125 240.015625 207.578125 238.394531 C 207.578125 236.777344 210.007812 236.777344 210.007812 238.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.953125 271.890625 C 221.953125 273.511719 219.523438 273.511719 219.523438 271.890625 C 219.523438 270.273438 221.953125 270.273438 221.953125 271.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.667969 220.550781 C 263.667969 222.167969 261.238281 222.167969 261.238281 220.550781 C 261.238281 218.929688 263.667969 218.929688 263.667969 220.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.214844 307.128906 C 243.214844 308.746094 240.785156 308.746094 240.785156 307.128906 C 240.785156 305.507812 243.214844 305.507812 243.214844 307.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.464844 268.230469 C 291.464844 269.851562 289.035156 269.851562 289.035156 268.230469 C 289.035156 266.609375 291.464844 266.609375 291.464844 268.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.605469 216.222656 C 265.605469 217.84375 263.175781 217.84375 263.175781 216.222656 C 263.175781 214.601562 265.605469 214.601562 265.605469 216.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.074219 247.992188 C 286.074219 249.613281 283.644531 249.613281 283.644531 247.992188 C 283.644531 246.371094 286.074219 246.371094 286.074219 247.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.597656 272.835938 C 320.597656 274.457031 318.167969 274.457031 318.167969 272.835938 C 318.167969 271.214844 320.597656 271.214844 320.597656 272.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.230469 70.910156 L 195.867188 73.746094 L 192.59375 73.746094 Z M 194.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.996094 252.054688 C 293.996094 253.675781 291.566406 253.675781 291.566406 252.054688 C 291.566406 250.4375 293.996094 250.4375 293.996094 252.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.867188 282.382812 C 306.867188 284.003906 304.4375 284.003906 304.4375 282.382812 C 304.4375 280.761719 306.867188 280.761719 306.867188 282.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.042969 183.878906 C 204.042969 185.5 201.613281 185.5 201.613281 183.878906 C 201.613281 182.257812 204.042969 182.257812 204.042969 183.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.355469 202.644531 C 230.355469 204.261719 227.925781 204.261719 227.925781 202.644531 C 227.925781 201.023438 230.355469 201.023438 230.355469 202.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.320312 183.234375 C 196.320312 184.855469 193.886719 184.855469 193.886719 183.234375 C 193.886719 181.617188 196.320312 181.617188 196.320312 183.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.945312 264.410156 C 292.945312 266.03125 290.515625 266.03125 290.515625 264.410156 C 290.515625 262.789062 292.945312 262.789062 292.945312 264.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.539062 236.042969 C 327.539062 237.664062 325.109375 237.664062 325.109375 236.042969 C 325.109375 234.421875 327.539062 234.421875 327.539062 236.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.4375 208.769531 C 235.4375 210.390625 233.007812 210.390625 233.007812 208.769531 C 233.007812 207.152344 235.4375 207.152344 235.4375 208.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.152344 217.945312 C 273.152344 219.5625 270.722656 219.5625 270.722656 217.945312 C 270.722656 216.324219 273.152344 216.324219 273.152344 217.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.25 70.910156 L 248.886719 73.746094 L 245.613281 73.746094 Z M 247.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.558594 297.402344 C 251.558594 299.023438 249.125 299.023438 249.125 297.402344 C 249.125 295.78125 251.558594 295.78125 251.558594 297.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.371094 207.871094 C 327.371094 209.492188 324.941406 209.492188 324.941406 207.871094 C 324.941406 206.253906 327.371094 206.253906 327.371094 207.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.855469 177.261719 C 239.855469 178.882812 237.425781 178.882812 237.425781 177.261719 C 237.425781 175.640625 239.855469 175.640625 239.855469 177.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.59375 195.886719 C 260.59375 197.507812 258.164062 197.507812 258.164062 195.886719 C 258.164062 194.269531 260.59375 194.269531 260.59375 195.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.460938 161.601562 C 200.460938 163.21875 198.027344 163.21875 198.027344 161.601562 C 198.027344 159.980469 200.460938 159.980469 200.460938 161.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 127.550781 C 118.445312 129.171875 116.015625 129.171875 116.015625 127.550781 C 116.015625 125.933594 118.445312 125.933594 118.445312 127.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.351562 70.910156 L 231.988281 73.746094 L 228.714844 73.746094 Z M 230.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.84375 159.199219 C 158.84375 160.816406 156.414062 160.816406 156.414062 159.199219 C 156.414062 157.578125 158.84375 157.578125 158.84375 159.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.5625 221.125 C 299.5625 222.746094 297.128906 222.746094 297.128906 221.125 C 297.128906 219.507812 299.5625 219.507812 299.5625 221.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.515625 92.339844 C 287.515625 93.960938 285.085938 93.960938 285.085938 92.339844 C 285.085938 90.71875 287.515625 90.71875 287.515625 92.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.386719 223.539062 C 294.386719 225.160156 291.957031 225.160156 291.957031 223.539062 C 291.957031 221.921875 294.386719 221.921875 294.386719 223.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.019531 243.222656 C 289.019531 244.84375 286.589844 244.84375 286.589844 243.222656 C 286.589844 241.605469 289.019531 241.605469 289.019531 243.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.015625 140.367188 C 279.015625 141.988281 276.585938 141.988281 276.585938 140.367188 C 276.585938 138.746094 279.015625 138.746094 279.015625 140.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.492188 277.402344 C 156.492188 279.019531 154.0625 279.019531 154.0625 277.402344 C 154.0625 275.78125 156.492188 275.78125 156.492188 277.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.808594 248.960938 C 252.808594 250.582031 250.378906 250.582031 250.378906 248.960938 C 250.378906 247.34375 252.808594 247.34375 252.808594 248.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.890625 230.261719 C 138.890625 231.878906 136.460938 231.878906 136.460938 230.261719 C 136.460938 228.640625 138.890625 228.640625 138.890625 230.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 330.125 70.910156 L 331.761719 73.746094 L 328.488281 73.746094 Z M 330.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.738281 200.746094 C 183.738281 202.367188 181.308594 202.367188 181.308594 200.746094 C 181.308594 199.125 183.738281 199.125 183.738281 200.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.765625 70.910156 L 280.402344 73.746094 L 277.128906 73.746094 Z M 278.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.3125 254.261719 C 137.3125 255.882812 134.882812 255.882812 134.882812 254.261719 C 134.882812 252.644531 137.3125 252.644531 137.3125 254.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.347656 302.253906 C 229.347656 303.875 226.917969 303.875 226.917969 302.253906 C 226.917969 300.632812 229.347656 300.632812 229.347656 302.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.09375 75.777344 C 228.09375 77.394531 225.664062 77.394531 225.664062 75.777344 C 225.664062 74.15625 228.09375 74.15625 228.09375 75.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.050781 327.511719 C 168.050781 329.128906 165.621094 329.128906 165.621094 327.511719 C 165.621094 325.890625 168.050781 325.890625 168.050781 327.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.035156 367.421875 C 230.035156 369.042969 227.605469 369.042969 227.605469 367.421875 C 227.605469 365.804688 230.035156 365.804688 230.035156 367.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.660156 70.910156 L 147.296875 73.746094 L 144.023438 73.746094 Z M 145.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.554688 185.804688 C 268.554688 187.425781 266.125 187.425781 266.125 185.804688 C 266.125 184.183594 268.554688 184.183594 268.554688 185.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.121094 70.910156 L 221.757812 73.746094 L 218.484375 73.746094 Z M 220.121094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.738281 70.910156 L 251.375 73.746094 L 248.101562 73.746094 Z M 249.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.820312 256.710938 C 284.820312 258.332031 282.390625 258.332031 282.390625 256.710938 C 282.390625 255.089844 284.820312 255.089844 284.820312 256.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.476562 214.90625 C 267.476562 216.527344 265.046875 216.527344 265.046875 214.90625 C 265.046875 213.285156 267.476562 213.285156 267.476562 214.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.238281 241.976562 C 251.238281 243.597656 248.804688 243.597656 248.804688 241.976562 C 248.804688 240.359375 251.238281 240.359375 251.238281 241.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.179688 196.132812 C 232.179688 197.753906 229.75 197.753906 229.75 196.132812 C 229.75 194.511719 232.179688 194.511719 232.179688 196.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.722656 205.609375 C 285.722656 207.226562 283.292969 207.226562 283.292969 205.609375 C 283.292969 203.988281 285.722656 203.988281 285.722656 205.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.546875 205.175781 C 288.546875 206.796875 286.117188 206.796875 286.117188 205.175781 C 286.117188 203.558594 288.546875 203.558594 288.546875 205.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.390625 303.78125 C 143.390625 305.402344 140.960938 305.402344 140.960938 303.78125 C 140.960938 302.160156 143.390625 302.160156 143.390625 303.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.359375 230.917969 C 226.359375 232.539062 223.929688 232.539062 223.929688 230.917969 C 223.929688 229.296875 226.359375 229.296875 226.359375 230.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.722656 212.109375 C 286.722656 213.726562 284.292969 213.726562 284.292969 212.109375 C 284.292969 210.488281 286.722656 210.488281 286.722656 212.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.222656 132.84375 C 146.222656 134.464844 143.792969 134.464844 143.792969 132.84375 C 143.792969 131.222656 146.222656 131.222656 146.222656 132.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.863281 301.660156 C 299.863281 303.28125 297.433594 303.28125 297.433594 301.660156 C 297.433594 300.039062 299.863281 300.039062 299.863281 301.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.734375 309.085938 C 247.734375 310.703125 245.304688 310.703125 245.304688 309.085938 C 245.304688 307.464844 247.734375 307.464844 247.734375 309.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.378906 418.691406 L 278.015625 415.855469 L 274.742188 415.855469 Z M 276.378906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.015625 109.851562 C 331.015625 111.472656 328.585938 111.472656 328.585938 109.851562 C 328.585938 108.234375 331.015625 108.234375 331.015625 109.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.222656 211.273438 C 258.222656 212.890625 255.792969 212.890625 255.792969 211.273438 C 255.792969 209.652344 258.222656 209.652344 258.222656 211.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.617188 236.425781 C 196.617188 238.046875 194.1875 238.046875 194.1875 236.425781 C 194.1875 234.804688 196.617188 234.804688 196.617188 236.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.488281 253.050781 C 305.488281 254.671875 303.058594 254.671875 303.058594 253.050781 C 303.058594 251.429688 305.488281 251.429688 305.488281 253.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.949219 364.0625 C 218.949219 365.683594 216.515625 365.683594 216.515625 364.0625 C 216.515625 362.441406 218.949219 362.441406 218.949219 364.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.914062 138.765625 C 258.914062 140.386719 256.484375 140.386719 256.484375 138.765625 C 256.484375 137.144531 258.914062 137.144531 258.914062 138.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.226562 234.742188 C 289.226562 236.363281 286.796875 236.363281 286.796875 234.742188 C 286.796875 233.125 289.226562 233.125 289.226562 234.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.597656 225.710938 C 306.597656 227.332031 304.167969 227.332031 304.167969 225.710938 C 304.167969 224.089844 306.597656 224.089844 306.597656 225.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.53125 351.988281 C 223.53125 353.609375 221.101562 353.609375 221.101562 351.988281 C 221.101562 350.367188 223.53125 350.367188 223.53125 351.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.101562 266.871094 C 290.101562 268.492188 287.671875 268.492188 287.671875 266.871094 C 287.671875 265.25 290.101562 265.25 290.101562 266.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.960938 88.65625 C 279.960938 90.273438 277.53125 90.273438 277.53125 88.65625 C 277.53125 87.035156 279.960938 87.035156 279.960938 88.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.703125 99.160156 C 159.703125 100.777344 157.273438 100.777344 157.273438 99.160156 C 157.273438 97.539062 159.703125 97.539062 159.703125 99.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.292969 243.023438 C 263.292969 244.644531 260.863281 244.644531 260.863281 243.023438 C 260.863281 241.402344 263.292969 241.402344 263.292969 243.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.761719 319.753906 C 250.761719 321.371094 248.332031 321.371094 248.332031 319.753906 C 248.332031 318.132812 250.761719 318.132812 250.761719 319.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.523438 156.175781 C 235.523438 157.792969 233.09375 157.792969 233.09375 156.175781 C 233.09375 154.554688 235.523438 154.554688 235.523438 156.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.492188 70.910156 L 281.128906 73.746094 L 277.855469 73.746094 Z M 279.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.007812 227.910156 C 262.007812 229.53125 259.578125 229.53125 259.578125 227.910156 C 259.578125 226.289062 262.007812 226.289062 262.007812 227.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.414062 70.910156 L 319.046875 73.746094 L 315.777344 73.746094 Z M 317.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.46875 273.515625 C 269.46875 275.136719 267.039062 275.136719 267.039062 273.515625 C 267.039062 271.894531 269.46875 271.894531 269.46875 273.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.738281 288.46875 C 286.738281 290.089844 284.308594 290.089844 284.308594 288.46875 C 284.308594 286.851562 286.738281 286.851562 286.738281 288.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.425781 289.492188 C 271.425781 291.109375 268.996094 291.109375 268.996094 289.492188 C 268.996094 287.871094 271.425781 287.871094 271.425781 289.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.429688 224.058594 C 317.429688 225.679688 315 225.679688 315 224.058594 C 315 222.4375 317.429688 222.4375 317.429688 224.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.726562 268.953125 C 251.726562 270.574219 249.296875 270.574219 249.296875 268.953125 C 249.296875 267.332031 251.726562 267.332031 251.726562 268.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.007812 70.910156 L 188.640625 73.746094 L 185.371094 73.746094 Z M 187.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.558594 305.203125 C 217.558594 306.824219 215.125 306.824219 215.125 305.203125 C 215.125 303.585938 217.558594 303.585938 217.558594 305.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.449219 362.519531 C 276.449219 364.140625 274.019531 364.140625 274.019531 362.519531 C 274.019531 360.898438 276.449219 360.898438 276.449219 362.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.984375 232.308594 C 236.984375 233.925781 234.554688 233.925781 234.554688 232.308594 C 234.554688 230.6875 236.984375 230.6875 236.984375 232.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.855469 291.824219 C 278.855469 293.441406 276.425781 293.441406 276.425781 291.824219 C 276.425781 290.203125 278.855469 290.203125 278.855469 291.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.492188 202.21875 C 234.492188 203.839844 232.0625 203.839844 232.0625 202.21875 C 232.0625 200.601562 234.492188 200.601562 234.492188 202.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.707031 243.871094 C 248.707031 245.488281 246.277344 245.488281 246.277344 243.871094 C 246.277344 242.25 248.707031 242.25 248.707031 243.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.664062 70.910156 L 179.300781 73.746094 L 176.027344 73.746094 Z M 177.664062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.066406 70.910156 L 222.703125 73.746094 L 219.429688 73.746094 Z M 221.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.386719 90.300781 C 142.386719 91.917969 139.957031 91.917969 139.957031 90.300781 C 139.957031 88.679688 142.386719 88.679688 142.386719 90.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.964844 188.78125 C 175.964844 190.402344 173.535156 190.402344 173.535156 188.78125 C 173.535156 187.164062 175.964844 187.164062 175.964844 188.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.585938 222.96875 C 171.585938 224.589844 169.15625 224.589844 169.15625 222.96875 C 169.15625 221.351562 171.585938 221.351562 171.585938 222.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.917969 185.042969 C 291.917969 186.664062 289.488281 186.664062 289.488281 185.042969 C 289.488281 183.425781 291.917969 183.425781 291.917969 185.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.84375 288.039062 C 279.84375 289.660156 277.414062 289.660156 277.414062 288.039062 C 277.414062 286.417969 279.84375 286.417969 279.84375 288.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.1875 310.890625 C 313.1875 312.511719 310.757812 312.511719 310.757812 310.890625 C 310.757812 309.273438 313.1875 309.273438 313.1875 310.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.855469 70.910156 L 343.492188 73.746094 L 340.21875 73.746094 Z M 341.855469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.84375 70.910156 L 318.480469 73.746094 L 315.207031 73.746094 Z M 316.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.890625 70.910156 L 133.527344 73.746094 L 130.257812 73.746094 Z M 131.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.601562 222.027344 C 254.601562 223.648438 252.171875 223.648438 252.171875 222.027344 C 252.171875 220.410156 254.601562 220.410156 254.601562 222.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.296875 255.457031 C 259.296875 257.078125 256.863281 257.078125 256.863281 255.457031 C 256.863281 253.835938 259.296875 253.835938 259.296875 255.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.796875 268.257812 C 160.796875 269.878906 158.367188 269.878906 158.367188 268.257812 C 158.367188 266.640625 160.796875 266.640625 160.796875 268.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.828125 338.707031 C 243.828125 340.324219 241.398438 340.324219 241.398438 338.707031 C 241.398438 337.085938 243.828125 337.085938 243.828125 338.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.015625 265.515625 C 275.015625 267.136719 272.585938 267.136719 272.585938 265.515625 C 272.585938 263.898438 275.015625 263.898438 275.015625 265.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.050781 261.558594 C 298.050781 263.179688 295.621094 263.179688 295.621094 261.558594 C 295.621094 259.941406 298.050781 259.941406 298.050781 261.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.828125 70.910156 L 126.464844 73.746094 L 123.191406 73.746094 Z M 124.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.683594 186.757812 C 260.683594 188.378906 258.253906 188.378906 258.253906 186.757812 C 258.253906 185.136719 260.683594 185.136719 260.683594 186.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.484375 283.425781 C 315.484375 285.046875 313.054688 285.046875 313.054688 283.425781 C 313.054688 281.804688 315.484375 281.804688 315.484375 283.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.25 235.203125 C 268.25 236.820312 265.820312 236.820312 265.820312 235.203125 C 265.820312 233.582031 268.25 233.582031 268.25 235.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.914062 199.300781 C 213.914062 200.921875 211.484375 200.921875 211.484375 199.300781 C 211.484375 197.679688 213.914062 197.679688 213.914062 199.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.253906 265.46875 C 325.253906 267.085938 322.824219 267.085938 322.824219 265.46875 C 322.824219 263.847656 325.253906 263.847656 325.253906 265.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.152344 286.636719 C 243.152344 288.257812 240.722656 288.257812 240.722656 286.636719 C 240.722656 285.019531 243.152344 285.019531 243.152344 286.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.320312 366.554688 C 182.320312 368.175781 179.890625 368.175781 179.890625 366.554688 C 179.890625 364.9375 182.320312 364.9375 182.320312 366.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.351562 277.285156 C 230.351562 278.902344 227.921875 278.902344 227.921875 277.285156 C 227.921875 275.664062 230.351562 275.664062 230.351562 277.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.617188 253.578125 C 119.617188 255.199219 117.1875 255.199219 117.1875 253.578125 C 117.1875 251.960938 119.617188 251.960938 119.617188 253.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.234375 70.910156 L 284.871094 73.746094 L 281.597656 73.746094 Z M 283.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.796875 191.121094 C 207.796875 192.742188 205.367188 192.742188 205.367188 191.121094 C 205.367188 189.503906 207.796875 189.503906 207.796875 191.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.628906 222.636719 C 193.628906 224.253906 191.199219 224.253906 191.199219 222.636719 C 191.199219 221.015625 193.628906 221.015625 193.628906 222.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.84375 163.925781 C 218.84375 165.546875 216.414062 165.546875 216.414062 163.925781 C 216.414062 162.308594 218.84375 162.308594 218.84375 163.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.375 277.480469 C 135.375 279.101562 132.945312 279.101562 132.945312 277.480469 C 132.945312 275.859375 135.375 275.859375 135.375 277.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.257812 259.035156 C 306.257812 260.65625 303.828125 260.65625 303.828125 259.035156 C 303.828125 257.414062 306.257812 257.414062 306.257812 259.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 348.105469 78.367188 C 348.105469 79.988281 345.675781 79.988281 345.675781 78.367188 C 345.675781 76.75 348.105469 76.75 348.105469 78.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.734375 220.085938 C 153.734375 221.707031 151.304688 221.707031 151.304688 220.085938 C 151.304688 218.46875 153.734375 218.46875 153.734375 220.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.519531 107.601562 C 327.519531 109.21875 325.089844 109.21875 325.089844 107.601562 C 325.089844 105.980469 327.519531 105.980469 327.519531 107.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.144531 197.015625 C 258.144531 198.636719 255.710938 198.636719 255.710938 197.015625 C 255.710938 195.394531 258.144531 195.394531 258.144531 197.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.316406 261.257812 C 222.316406 262.878906 219.882812 262.878906 219.882812 261.257812 C 219.882812 259.636719 222.316406 259.636719 222.316406 261.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.332031 240.621094 C 277.332031 242.238281 274.902344 242.238281 274.902344 240.621094 C 274.902344 239 277.332031 239 277.332031 240.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.730469 253.152344 C 239.730469 254.773438 237.300781 254.773438 237.300781 253.152344 C 237.300781 251.53125 239.730469 251.53125 239.730469 253.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.488281 192.875 C 270.488281 194.496094 268.058594 194.496094 268.058594 192.875 C 268.058594 191.257812 270.488281 191.257812 270.488281 192.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.308594 224.589844 C 236.308594 226.210938 233.878906 226.210938 233.878906 224.589844 C 233.878906 222.96875 236.308594 222.96875 236.308594 224.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.042969 316.902344 C 333.042969 318.519531 330.613281 318.519531 330.613281 316.902344 C 330.613281 315.28125 333.042969 315.28125 333.042969 316.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.492188 289.835938 C 292.492188 291.457031 290.0625 291.457031 290.0625 289.835938 C 290.0625 288.214844 292.492188 288.214844 292.492188 289.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.542969 87.773438 C 240.542969 89.394531 238.113281 89.394531 238.113281 87.773438 C 238.113281 86.15625 240.542969 86.15625 240.542969 87.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.445312 70.910156 L 232.082031 73.746094 L 228.808594 73.746094 Z M 230.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.773438 306.472656 C 273.773438 308.09375 271.34375 308.09375 271.34375 306.472656 C 271.34375 304.855469 273.773438 304.855469 273.773438 306.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.574219 266.449219 C 231.574219 268.070312 229.144531 268.070312 229.144531 266.449219 C 229.144531 264.832031 231.574219 264.832031 231.574219 266.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.316406 161.953125 C 234.316406 163.570312 231.886719 163.570312 231.886719 161.953125 C 231.886719 160.332031 234.316406 160.332031 234.316406 161.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.945312 295.484375 C 201.945312 297.101562 199.515625 297.101562 199.515625 295.484375 C 199.515625 293.863281 201.945312 293.863281 201.945312 295.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.234375 263.46875 C 291.234375 265.089844 288.804688 265.089844 288.804688 263.46875 C 288.804688 261.847656 291.234375 261.847656 291.234375 263.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.398438 170.199219 C 169.398438 171.816406 166.964844 171.816406 166.964844 170.199219 C 166.964844 168.578125 169.398438 168.578125 169.398438 170.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.667969 232.664062 C 336.667969 234.285156 334.238281 234.285156 334.238281 232.664062 C 334.238281 231.042969 336.667969 231.042969 336.667969 232.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.25 175.789062 C 225.25 177.410156 222.820312 177.410156 222.820312 175.789062 C 222.820312 174.171875 225.25 174.171875 225.25 175.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.351562 166.199219 C 241.351562 167.820312 238.917969 167.820312 238.917969 166.199219 C 238.917969 164.582031 241.351562 164.582031 241.351562 166.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.691406 147.242188 C 205.691406 148.859375 203.261719 148.859375 203.261719 147.242188 C 203.261719 145.621094 205.691406 145.621094 205.691406 147.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.84375 296.378906 C 282.84375 298 280.414062 298 280.414062 296.378906 C 280.414062 294.757812 282.84375 294.757812 282.84375 296.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.398438 108.152344 C 193.398438 109.773438 190.96875 109.773438 190.96875 108.152344 C 190.96875 106.53125 193.398438 106.53125 193.398438 108.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.445312 259.921875 C 288.445312 261.542969 286.015625 261.542969 286.015625 259.921875 C 286.015625 258.300781 288.445312 258.300781 288.445312 259.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.667969 226.75 C 175.667969 228.367188 173.238281 228.367188 173.238281 226.75 C 173.238281 225.128906 175.667969 225.128906 175.667969 226.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.335938 269.171875 C 224.335938 270.792969 221.90625 270.792969 221.90625 269.171875 C 221.90625 267.550781 224.335938 267.550781 224.335938 269.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.785156 233.042969 C 197.785156 234.660156 195.355469 234.660156 195.355469 233.042969 C 195.355469 231.421875 197.785156 231.421875 197.785156 233.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.160156 154.492188 C 221.160156 156.113281 218.726562 156.113281 218.726562 154.492188 C 218.726562 152.871094 221.160156 152.871094 221.160156 154.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.59375 217.898438 C 234.59375 219.519531 232.160156 219.519531 232.160156 217.898438 C 232.160156 216.277344 234.59375 216.277344 234.59375 217.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.269531 263.851562 C 245.269531 265.472656 242.839844 265.472656 242.839844 263.851562 C 242.839844 262.234375 245.269531 262.234375 245.269531 263.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.34375 249.214844 C 283.34375 250.835938 280.914062 250.835938 280.914062 249.214844 C 280.914062 247.597656 283.34375 247.597656 283.34375 249.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.140625 246.992188 C 272.140625 248.609375 269.710938 248.609375 269.710938 246.992188 C 269.710938 245.371094 272.140625 245.371094 272.140625 246.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.644531 185.628906 C 274.644531 187.25 272.214844 187.25 272.214844 185.628906 C 272.214844 184.007812 274.644531 184.007812 274.644531 185.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.386719 182.300781 C 228.386719 183.921875 225.957031 183.921875 225.957031 182.300781 C 225.957031 180.683594 228.386719 180.683594 228.386719 182.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.84375 70.910156 L 252.480469 73.746094 L 249.207031 73.746094 Z M 250.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.601562 418.691406 L 226.238281 415.855469 L 222.964844 415.855469 Z M 224.601562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185 294.148438 C 185 295.769531 182.570312 295.769531 182.570312 294.148438 C 182.570312 292.53125 185 292.53125 185 294.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.335938 256.101562 C 242.335938 257.71875 239.90625 257.71875 239.90625 256.101562 C 239.90625 254.480469 242.335938 254.480469 242.335938 256.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.472656 144.40625 C 319.472656 146.027344 317.039062 146.027344 317.039062 144.40625 C 317.039062 142.785156 319.472656 142.785156 319.472656 144.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.457031 70.910156 L 147.09375 73.746094 L 143.820312 73.746094 Z M 145.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.175781 290.484375 C 254.175781 292.105469 251.746094 292.105469 251.746094 290.484375 C 251.746094 288.863281 254.175781 288.863281 254.175781 290.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.617188 136.050781 C 277.617188 137.667969 275.1875 137.667969 275.1875 136.050781 C 275.1875 134.429688 277.617188 134.429688 277.617188 136.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.148438 223.195312 C 320.148438 224.816406 317.71875 224.816406 317.71875 223.195312 C 317.71875 221.574219 320.148438 221.574219 320.148438 223.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.652344 123.734375 C 284.652344 125.355469 282.222656 125.355469 282.222656 123.734375 C 282.222656 122.113281 284.652344 122.113281 284.652344 123.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.53125 247.382812 C 234.53125 249.003906 232.101562 249.003906 232.101562 247.382812 C 232.101562 245.765625 234.53125 245.765625 234.53125 247.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.914062 337.875 C 318.914062 339.496094 316.484375 339.496094 316.484375 337.875 C 316.484375 336.253906 318.914062 336.253906 318.914062 337.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.414062 197.503906 C 219.414062 199.125 216.984375 199.125 216.984375 197.503906 C 216.984375 195.882812 219.414062 195.882812 219.414062 197.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.078125 320.925781 C 286.078125 322.546875 283.648438 322.546875 283.648438 320.925781 C 283.648438 319.304688 286.078125 319.304688 286.078125 320.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.625 381.789062 C 161.625 383.410156 159.195312 383.410156 159.195312 381.789062 C 159.195312 380.171875 161.625 380.171875 161.625 381.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.015625 322.835938 C 227.015625 324.457031 224.585938 324.457031 224.585938 322.835938 C 224.585938 321.214844 227.015625 321.214844 227.015625 322.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.90625 292.40625 C 293.90625 294.023438 291.476562 294.023438 291.476562 292.40625 C 291.476562 290.785156 293.90625 290.785156 293.90625 292.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.878906 204.578125 C 265.878906 206.199219 263.449219 206.199219 263.449219 204.578125 C 263.449219 202.957031 265.878906 202.957031 265.878906 204.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.738281 195.808594 C 305.738281 197.429688 303.308594 197.429688 303.308594 195.808594 C 303.308594 194.1875 305.738281 194.1875 305.738281 195.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 127.550781 C 118.445312 129.171875 116.015625 129.171875 116.015625 127.550781 C 116.015625 125.933594 118.445312 125.933594 118.445312 127.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.546875 247.425781 C 118.546875 249.046875 116.117188 249.046875 116.117188 247.425781 C 116.117188 245.804688 118.546875 245.804688 118.546875 247.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.019531 262.59375 C 315.019531 264.214844 312.589844 264.214844 312.589844 262.59375 C 312.589844 260.972656 315.019531 260.972656 315.019531 262.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.179688 70.910156 L 129.816406 73.746094 L 126.542969 73.746094 Z M 128.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.785156 154.65625 C 212.785156 156.277344 210.351562 156.277344 210.351562 154.65625 C 210.351562 153.039062 212.785156 153.039062 212.785156 154.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.5 220.121094 C 218.5 221.742188 216.070312 221.742188 216.070312 220.121094 C 216.070312 218.5 218.5 218.5 218.5 220.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.613281 242.648438 C 260.613281 244.269531 258.183594 244.269531 258.183594 242.648438 C 258.183594 241.027344 260.613281 241.027344 260.613281 242.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.316406 276.015625 C 281.316406 277.632812 278.886719 277.632812 278.886719 276.015625 C 278.886719 274.394531 281.316406 274.394531 281.316406 276.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.652344 382.347656 C 184.652344 383.96875 182.222656 383.96875 182.222656 382.347656 C 182.222656 380.730469 184.652344 380.730469 184.652344 382.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.78125 70.910156 L 151.417969 73.746094 L 148.144531 73.746094 Z M 149.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.492188 117.234375 C 120.492188 118.855469 118.0625 118.855469 118.0625 117.234375 C 118.0625 115.617188 120.492188 115.617188 120.492188 117.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.609375 253.058594 C 257.609375 254.675781 255.179688 254.675781 255.179688 253.058594 C 255.179688 251.4375 257.609375 251.4375 257.609375 253.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.050781 204.03125 C 296.050781 205.648438 293.621094 205.648438 293.621094 204.03125 C 293.621094 202.410156 296.050781 202.410156 296.050781 204.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.167969 139.441406 C 184.167969 141.0625 181.738281 141.0625 181.738281 139.441406 C 181.738281 137.820312 184.167969 137.820312 184.167969 139.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.121094 116.539062 C 186.121094 118.160156 183.691406 118.160156 183.691406 116.539062 C 183.691406 114.917969 186.121094 114.917969 186.121094 116.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.996094 252.148438 C 269.996094 253.769531 267.566406 253.769531 267.566406 252.148438 C 267.566406 250.53125 269.996094 250.53125 269.996094 252.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.390625 249.0625 C 326.390625 250.679688 323.960938 250.679688 323.960938 249.0625 C 323.960938 247.441406 326.390625 247.441406 326.390625 249.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.402344 269.773438 C 232.402344 271.394531 229.972656 271.394531 229.972656 269.773438 C 229.972656 268.152344 232.402344 268.152344 232.402344 269.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.578125 70.910156 L 239.214844 73.746094 L 235.941406 73.746094 Z M 237.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 381.179688 149.925781 C 381.179688 151.542969 378.75 151.542969 378.75 149.925781 C 378.75 148.304688 381.179688 148.304688 381.179688 149.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.765625 165.332031 C 282.765625 166.949219 280.335938 166.949219 280.335938 165.332031 C 280.335938 163.710938 282.765625 163.710938 282.765625 165.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 353.328125 251.339844 C 353.328125 252.960938 350.898438 252.960938 350.898438 251.339844 C 350.898438 249.71875 353.328125 249.71875 353.328125 251.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.660156 248.601562 C 250.660156 250.222656 248.230469 250.222656 248.230469 248.601562 C 248.230469 246.984375 250.660156 246.984375 250.660156 248.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.542969 226.242188 C 249.542969 227.863281 247.113281 227.863281 247.113281 226.242188 C 247.113281 224.621094 249.542969 224.621094 249.542969 226.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.382812 181.894531 C 218.382812 183.515625 215.953125 183.515625 215.953125 181.894531 C 215.953125 180.273438 218.382812 180.273438 218.382812 181.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.820312 234.898438 C 267.820312 236.515625 265.386719 236.515625 265.386719 234.898438 C 265.386719 233.277344 267.820312 233.277344 267.820312 234.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.328125 223.578125 C 321.328125 225.195312 318.898438 225.195312 318.898438 223.578125 C 318.898438 221.957031 321.328125 221.957031 321.328125 223.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.484375 123.277344 C 206.484375 124.898438 204.054688 124.898438 204.054688 123.277344 C 204.054688 121.660156 206.484375 121.660156 206.484375 123.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.242188 339.640625 C 189.242188 341.261719 186.8125 341.261719 186.8125 339.640625 C 186.8125 338.023438 189.242188 338.023438 189.242188 339.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.480469 70.910156 L 263.117188 73.746094 L 259.847656 73.746094 Z M 261.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.164062 266.789062 C 291.164062 268.410156 288.734375 268.410156 288.734375 266.789062 C 288.734375 265.167969 291.164062 265.167969 291.164062 266.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.542969 178.179688 C 302.542969 179.796875 300.113281 179.796875 300.113281 178.179688 C 300.113281 176.558594 302.542969 176.558594 302.542969 178.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.007812 395.707031 C 229.007812 397.328125 226.574219 397.328125 226.574219 395.707031 C 226.574219 394.085938 229.007812 394.085938 229.007812 395.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.460938 315.289062 C 318.460938 316.910156 316.03125 316.910156 316.03125 315.289062 C 316.03125 313.667969 318.460938 313.667969 318.460938 315.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.445312 330.433594 C 273.445312 332.054688 271.015625 332.054688 271.015625 330.433594 C 271.015625 328.8125 273.445312 328.8125 273.445312 330.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.675781 368.429688 C 282.675781 370.050781 280.246094 370.050781 280.246094 368.429688 C 280.246094 366.808594 282.675781 366.808594 282.675781 368.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.804688 267.6875 C 245.804688 269.308594 243.375 269.308594 243.375 267.6875 C 243.375 266.070312 245.804688 266.070312 245.804688 267.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.503906 418.691406 L 246.140625 415.855469 L 242.867188 415.855469 Z M 244.503906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.980469 264.675781 C 283.980469 266.296875 281.550781 266.296875 281.550781 264.675781 C 281.550781 263.058594 283.980469 263.058594 283.980469 264.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.898438 231.304688 C 274.898438 232.925781 272.46875 232.925781 272.46875 231.304688 C 272.46875 229.683594 274.898438 229.683594 274.898438 231.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.003906 219.265625 C 249.003906 220.882812 246.574219 220.882812 246.574219 219.265625 C 246.574219 217.644531 249.003906 217.644531 249.003906 219.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.433594 409.484375 C 296.433594 411.101562 294.003906 411.101562 294.003906 409.484375 C 294.003906 407.863281 296.433594 407.863281 296.433594 409.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.351562 192.546875 C 198.351562 194.164062 195.921875 194.164062 195.921875 192.546875 C 195.921875 190.925781 198.351562 190.925781 198.351562 192.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.640625 70.910156 L 123.277344 73.746094 L 120.003906 73.746094 Z M 121.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.453125 223.855469 C 257.453125 225.476562 255.023438 225.476562 255.023438 223.855469 C 255.023438 222.234375 257.453125 222.234375 257.453125 223.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.492188 312.242188 C 245.492188 313.863281 243.0625 313.863281 243.0625 312.242188 C 243.0625 310.625 245.492188 310.625 245.492188 312.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.898438 96.320312 C 273.898438 97.9375 271.46875 97.9375 271.46875 96.320312 C 271.46875 94.699219 273.898438 94.699219 273.898438 96.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.148438 121.820312 C 212.148438 123.441406 209.71875 123.441406 209.71875 121.820312 C 209.71875 120.199219 212.148438 120.199219 212.148438 121.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.742188 70.910156 L 242.378906 73.746094 L 239.109375 73.746094 Z M 240.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.941406 186.21875 C 332.941406 187.839844 330.511719 187.839844 330.511719 186.21875 C 330.511719 184.601562 332.941406 184.601562 332.941406 186.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.261719 107.355469 C 256.261719 108.976562 253.832031 108.976562 253.832031 107.355469 C 253.832031 105.738281 256.261719 105.738281 256.261719 107.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.480469 185.367188 C 293.480469 186.988281 291.050781 186.988281 291.050781 185.367188 C 291.050781 183.746094 293.480469 183.746094 293.480469 185.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.511719 70.910156 L 213.148438 73.746094 L 209.878906 73.746094 Z M 211.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.863281 105.519531 C 163.863281 107.140625 161.433594 107.140625 161.433594 105.519531 C 161.433594 103.902344 163.863281 103.902344 163.863281 105.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.019531 70.910156 L 202.65625 73.746094 L 199.382812 73.746094 Z M 201.019531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.832031 273.0625 C 250.832031 274.683594 248.402344 274.683594 248.402344 273.0625 C 248.402344 271.441406 250.832031 271.441406 250.832031 273.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.632812 217.167969 C 240.632812 218.789062 238.203125 218.789062 238.203125 217.167969 C 238.203125 215.546875 240.632812 215.546875 240.632812 217.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.054688 167.667969 C 195.054688 169.285156 192.625 169.285156 192.625 167.667969 C 192.625 166.046875 195.054688 166.046875 195.054688 167.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.339844 241.671875 C 277.339844 243.292969 274.910156 243.292969 274.910156 241.671875 C 274.910156 240.050781 277.339844 240.050781 277.339844 241.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.195312 99.179688 C 190.195312 100.800781 187.765625 100.800781 187.765625 99.179688 C 187.765625 97.558594 190.195312 97.558594 190.195312 99.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.660156 70.910156 L 143.296875 73.746094 L 140.027344 73.746094 Z M 141.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.613281 164.054688 C 236.613281 165.671875 234.183594 165.671875 234.183594 164.054688 C 234.183594 162.433594 236.613281 162.433594 236.613281 164.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.164062 70.910156 L 254.800781 73.746094 L 251.527344 73.746094 Z M 253.164062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.179688 70.910156 L 242.8125 73.746094 L 239.542969 73.746094 Z M 241.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.097656 158.355469 C 195.097656 159.972656 192.667969 159.972656 192.667969 158.355469 C 192.667969 156.734375 195.097656 156.734375 195.097656 158.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.554688 229.378906 C 271.554688 231 269.125 231 269.125 229.378906 C 269.125 227.761719 271.554688 227.761719 271.554688 229.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.296875 241.648438 C 310.296875 243.269531 307.867188 243.269531 307.867188 241.648438 C 307.867188 240.027344 310.296875 240.027344 310.296875 241.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.875 277.589844 C 281.875 279.210938 279.445312 279.210938 279.445312 277.589844 C 279.445312 275.96875 281.875 275.96875 281.875 277.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.089844 308.691406 C 276.089844 310.3125 273.65625 310.3125 273.65625 308.691406 C 273.65625 307.070312 276.089844 307.070312 276.089844 308.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.917969 312.714844 C 217.917969 314.335938 215.488281 314.335938 215.488281 312.714844 C 215.488281 311.09375 217.917969 311.09375 217.917969 312.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.769531 233.34375 C 295.769531 234.964844 293.339844 234.964844 293.339844 233.34375 C 293.339844 231.722656 295.769531 231.722656 295.769531 233.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.367188 367.761719 C 118.367188 369.382812 115.9375 369.382812 115.9375 367.761719 C 115.9375 366.144531 118.367188 366.144531 118.367188 367.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.949219 293.117188 C 358.949219 294.738281 356.519531 294.738281 356.519531 293.117188 C 356.519531 291.496094 358.949219 291.496094 358.949219 293.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.085938 157.425781 C 183.085938 159.046875 180.65625 159.046875 180.65625 157.425781 C 180.65625 155.808594 183.085938 155.808594 183.085938 157.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.460938 279.226562 C 267.460938 280.847656 265.03125 280.847656 265.03125 279.226562 C 265.03125 277.605469 267.460938 277.605469 267.460938 279.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.097656 390.507812 C 137.097656 392.128906 134.667969 392.128906 134.667969 390.507812 C 134.667969 388.886719 137.097656 388.886719 137.097656 390.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.128906 292.113281 C 305.128906 293.734375 302.699219 293.734375 302.699219 292.113281 C 302.699219 290.492188 305.128906 290.492188 305.128906 292.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.933594 298.0625 C 258.933594 299.683594 256.503906 299.683594 256.503906 298.0625 C 256.503906 296.441406 258.933594 296.441406 258.933594 298.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.382812 312.246094 C 278.382812 313.867188 275.953125 313.867188 275.953125 312.246094 C 275.953125 310.625 278.382812 310.625 278.382812 312.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.273438 334.488281 C 291.273438 336.109375 288.84375 336.109375 288.84375 334.488281 C 288.84375 332.871094 291.273438 332.871094 291.273438 334.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.546875 303.058594 C 268.546875 304.675781 266.117188 304.675781 266.117188 303.058594 C 266.117188 301.4375 268.546875 301.4375 268.546875 303.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.867188 192.121094 C 150.867188 193.742188 148.4375 193.742188 148.4375 192.121094 C 148.4375 190.5 150.867188 190.5 150.867188 192.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.367188 304.464844 C 266.367188 306.085938 263.9375 306.085938 263.9375 304.464844 C 263.9375 302.847656 266.367188 302.847656 266.367188 304.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.800781 294.171875 C 236.800781 295.789062 234.371094 295.789062 234.371094 294.171875 C 234.371094 292.550781 236.800781 292.550781 236.800781 294.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.070312 275.960938 C 169.070312 277.582031 166.640625 277.582031 166.640625 275.960938 C 166.640625 274.339844 169.070312 274.339844 169.070312 275.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 360.132812 225.996094 C 360.132812 227.617188 357.703125 227.617188 357.703125 225.996094 C 357.703125 224.375 360.132812 224.375 360.132812 225.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.796875 235.347656 C 325.796875 236.96875 323.367188 236.96875 323.367188 235.347656 C 323.367188 233.730469 325.796875 233.730469 325.796875 235.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.84375 233.15625 C 204.84375 234.777344 202.414062 234.777344 202.414062 233.15625 C 202.414062 231.535156 204.84375 231.535156 204.84375 233.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 299.914062 418.691406 L 301.550781 415.855469 L 298.277344 415.855469 Z M 299.914062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.957031 172.070312 C 259.957031 173.691406 257.527344 173.691406 257.527344 172.070312 C 257.527344 170.453125 259.957031 170.453125 259.957031 172.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.324219 70.910156 L 268.960938 73.746094 L 265.6875 73.746094 Z M 267.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.375 158.382812 C 267.375 160.003906 264.945312 160.003906 264.945312 158.382812 C 264.945312 156.761719 267.375 156.761719 267.375 158.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.582031 104.089844 C 211.582031 105.710938 209.152344 105.710938 209.152344 104.089844 C 209.152344 102.46875 211.582031 102.46875 211.582031 104.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.964844 274.628906 C 318.964844 276.25 316.535156 276.25 316.535156 274.628906 C 316.535156 273.007812 318.964844 273.007812 318.964844 274.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.753906 255.621094 C 314.753906 257.238281 312.324219 257.238281 312.324219 255.621094 C 312.324219 254 314.753906 254 314.753906 255.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.183594 268.117188 C 311.183594 269.734375 308.753906 269.734375 308.753906 268.117188 C 308.753906 266.496094 311.183594 266.496094 311.183594 268.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.796875 418.691406 L 168.433594 415.855469 L 165.160156 415.855469 Z M 166.796875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.734375 328.484375 C 175.734375 330.105469 173.304688 330.105469 173.304688 328.484375 C 173.304688 326.863281 175.734375 326.863281 175.734375 328.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.671875 236.128906 C 289.671875 237.75 287.242188 237.75 287.242188 236.128906 C 287.242188 234.507812 289.671875 234.507812 289.671875 236.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.40625 288.351562 C 260.40625 289.972656 257.976562 289.972656 257.976562 288.351562 C 257.976562 286.730469 260.40625 286.730469 260.40625 288.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.851562 158.273438 C 272.851562 159.894531 270.421875 159.894531 270.421875 158.273438 C 270.421875 156.652344 272.851562 156.652344 272.851562 158.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 341.28125 123.484375 C 341.28125 125.101562 338.851562 125.101562 338.851562 123.484375 C 338.851562 121.863281 341.28125 121.863281 341.28125 123.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.765625 284.585938 C 284.765625 286.203125 282.335938 286.203125 282.335938 284.585938 C 282.335938 282.964844 284.765625 282.964844 284.765625 284.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.523438 204.933594 C 288.523438 206.554688 286.09375 206.554688 286.09375 204.933594 C 286.09375 203.3125 288.523438 203.3125 288.523438 204.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.5625 70.910156 L 269.199219 73.746094 L 265.925781 73.746094 Z M 267.5625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.515625 418.691406 L 130.152344 415.855469 L 126.878906 415.855469 Z M 128.515625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.75 281.007812 C 187.75 282.628906 185.320312 282.628906 185.320312 281.007812 C 185.320312 279.390625 187.75 279.390625 187.75 281.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.203125 255.882812 C 272.203125 257.503906 269.769531 257.503906 269.769531 255.882812 C 269.769531 254.261719 272.203125 254.261719 272.203125 255.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.753906 197.507812 C 262.753906 199.128906 260.324219 199.128906 260.324219 197.507812 C 260.324219 195.886719 262.753906 195.886719 262.753906 197.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.890625 255.410156 C 244.890625 257.03125 242.460938 257.03125 242.460938 255.410156 C 242.460938 253.789062 244.890625 253.789062 244.890625 255.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.183594 70.910156 L 247.820312 73.746094 L 244.550781 73.746094 Z M 246.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.636719 195.894531 C 249.636719 197.515625 247.207031 197.515625 247.207031 195.894531 C 247.207031 194.277344 249.636719 194.277344 249.636719 195.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.636719 204.113281 C 282.636719 205.734375 280.207031 205.734375 280.207031 204.113281 C 280.207031 202.492188 282.636719 202.492188 282.636719 204.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.550781 97.015625 C 211.550781 98.636719 209.121094 98.636719 209.121094 97.015625 C 209.121094 95.394531 211.550781 95.394531 211.550781 97.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.988281 178.457031 C 223.988281 180.078125 221.558594 180.078125 221.558594 178.457031 C 221.558594 176.839844 223.988281 176.839844 223.988281 178.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.597656 146.832031 C 190.597656 148.453125 188.167969 148.453125 188.167969 146.832031 C 188.167969 145.210938 190.597656 145.210938 190.597656 146.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.210938 418.691406 L 274.847656 415.855469 L 271.574219 415.855469 Z M 273.210938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.976562 318.21875 C 278.976562 319.835938 276.546875 319.835938 276.546875 318.21875 C 276.546875 316.597656 278.976562 316.597656 278.976562 318.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.359375 202.757812 C 282.359375 204.378906 279.929688 204.378906 279.929688 202.757812 C 279.929688 201.140625 282.359375 201.140625 282.359375 202.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.121094 275.863281 C 320.121094 277.480469 317.691406 277.480469 317.691406 275.863281 C 317.691406 274.242188 320.121094 274.242188 320.121094 275.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.457031 292.664062 C 269.457031 294.285156 267.027344 294.285156 267.027344 292.664062 C 267.027344 291.042969 269.457031 291.042969 269.457031 292.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.316406 278.726562 C 300.316406 280.347656 297.886719 280.347656 297.886719 278.726562 C 297.886719 277.105469 300.316406 277.105469 300.316406 278.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.53125 141.394531 C 265.53125 143.015625 263.097656 143.015625 263.097656 141.394531 C 263.097656 139.777344 265.53125 139.777344 265.53125 141.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.160156 342.320312 C 308.160156 343.941406 305.730469 343.941406 305.730469 342.320312 C 305.730469 340.703125 308.160156 340.703125 308.160156 342.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.871094 198.511719 C 282.871094 200.128906 280.441406 200.128906 280.441406 198.511719 C 280.441406 196.890625 282.871094 196.890625 282.871094 198.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.535156 70.910156 L 249.171875 73.746094 L 245.898438 73.746094 Z M 247.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.585938 275.722656 C 286.585938 277.34375 284.15625 277.34375 284.15625 275.722656 C 284.15625 274.101562 286.585938 274.101562 286.585938 275.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.875 224.765625 C 261.875 226.386719 259.445312 226.386719 259.445312 224.765625 C 259.445312 223.144531 261.875 223.144531 261.875 224.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.796875 91.769531 C 242.796875 93.390625 240.367188 93.390625 240.367188 91.769531 C 240.367188 90.148438 242.796875 90.148438 242.796875 91.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.875 418.691406 L 263.511719 415.855469 L 260.238281 415.855469 Z M 261.875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.371094 112.144531 C 171.371094 113.765625 168.941406 113.765625 168.941406 112.144531 C 168.941406 110.523438 171.371094 110.523438 171.371094 112.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.273438 369.273438 C 286.273438 370.894531 283.84375 370.894531 283.84375 369.273438 C 283.84375 367.652344 286.273438 367.652344 286.273438 369.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.15625 70.910156 L 265.792969 73.746094 L 262.519531 73.746094 Z M 264.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.324219 70.910156 L 228.960938 73.746094 L 225.6875 73.746094 Z M 227.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.984375 301.210938 C 133.984375 302.832031 131.554688 302.832031 131.554688 301.210938 C 131.554688 299.59375 133.984375 299.59375 133.984375 301.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.871094 176.65625 C 266.871094 178.277344 264.4375 178.277344 264.4375 176.65625 C 264.4375 175.035156 266.871094 175.035156 266.871094 176.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.664062 275.53125 C 267.664062 277.148438 265.234375 277.148438 265.234375 275.53125 C 265.234375 273.910156 267.664062 273.910156 267.664062 275.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.816406 229.019531 C 264.816406 230.636719 262.386719 230.636719 262.386719 229.019531 C 262.386719 227.398438 264.816406 227.398438 264.816406 229.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.335938 263.773438 C 315.335938 265.394531 312.90625 265.394531 312.90625 263.773438 C 312.90625 262.152344 315.335938 262.152344 315.335938 263.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.617188 273.046875 C 277.617188 274.667969 275.1875 274.667969 275.1875 273.046875 C 275.1875 271.425781 277.617188 271.425781 277.617188 273.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.472656 257.25 C 305.472656 258.871094 303.042969 258.871094 303.042969 257.25 C 303.042969 255.628906 305.472656 255.628906 305.472656 257.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.742188 249.824219 C 346.742188 251.445312 344.3125 251.445312 344.3125 249.824219 C 344.3125 248.203125 346.742188 248.203125 346.742188 249.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.3125 243.03125 C 292.3125 244.652344 289.882812 244.652344 289.882812 243.03125 C 289.882812 241.414062 292.3125 241.414062 292.3125 243.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.808594 301.582031 C 289.808594 303.203125 287.378906 303.203125 287.378906 301.582031 C 287.378906 299.960938 289.808594 299.960938 289.808594 301.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.773438 326.070312 C 234.773438 327.691406 232.34375 327.691406 232.34375 326.070312 C 232.34375 324.449219 234.773438 324.449219 234.773438 326.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.710938 227.949219 C 299.710938 229.566406 297.28125 229.566406 297.28125 227.949219 C 297.28125 226.328125 299.710938 226.328125 299.710938 227.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.199219 220.539062 C 252.199219 222.160156 249.769531 222.160156 249.769531 220.539062 C 249.769531 218.921875 252.199219 218.921875 252.199219 220.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.949219 208.921875 C 269.949219 210.542969 267.519531 210.542969 267.519531 208.921875 C 267.519531 207.304688 269.949219 207.304688 269.949219 208.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.792969 256.183594 C 195.792969 257.800781 193.363281 257.800781 193.363281 256.183594 C 193.363281 254.5625 195.792969 254.5625 195.792969 256.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.632812 265.976562 C 209.632812 267.597656 207.203125 267.597656 207.203125 265.976562 C 207.203125 264.355469 209.632812 264.355469 209.632812 265.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.578125 418.691406 L 115.214844 415.855469 L 111.941406 415.855469 Z M 113.578125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.644531 171.179688 C 232.644531 172.800781 230.210938 172.800781 230.210938 171.179688 C 230.210938 169.5625 232.644531 169.5625 232.644531 171.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.203125 235.570312 C 302.203125 237.191406 299.773438 237.191406 299.773438 235.570312 C 299.773438 233.953125 302.203125 233.953125 302.203125 235.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.730469 161.167969 C 201.730469 162.789062 199.300781 162.789062 199.300781 161.167969 C 199.300781 159.550781 201.730469 159.550781 201.730469 161.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.511719 182.527344 C 222.511719 184.148438 220.078125 184.148438 220.078125 182.527344 C 220.078125 180.90625 222.511719 180.90625 222.511719 182.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.886719 194.679688 C 273.886719 196.300781 271.457031 196.300781 271.457031 194.679688 C 271.457031 193.058594 273.886719 193.058594 273.886719 194.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.445312 143.753906 C 206.445312 145.375 204.015625 145.375 204.015625 143.753906 C 204.015625 142.136719 206.445312 142.136719 206.445312 143.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.601562 171.164062 C 209.601562 172.785156 207.171875 172.785156 207.171875 171.164062 C 207.171875 169.542969 209.601562 169.542969 209.601562 171.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.335938 223.980469 C 282.335938 225.601562 279.902344 225.601562 279.902344 223.980469 C 279.902344 222.359375 282.335938 222.359375 282.335938 223.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.867188 81.386719 C 288.867188 83.007812 286.4375 83.007812 286.4375 81.386719 C 286.4375 79.765625 288.867188 79.765625 288.867188 81.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.566406 70.910156 L 173.203125 73.746094 L 169.933594 73.746094 Z M 171.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.953125 152.492188 C 259.953125 154.113281 257.523438 154.113281 257.523438 152.492188 C 257.523438 150.871094 259.953125 150.871094 259.953125 152.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 369.300781 299.089844 C 369.300781 300.707031 366.871094 300.707031 366.871094 299.089844 C 366.871094 297.46875 369.300781 297.46875 369.300781 299.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.910156 244.910156 C 277.910156 246.527344 275.480469 246.527344 275.480469 244.910156 C 275.480469 243.289062 277.910156 243.289062 277.910156 244.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.636719 257.851562 C 265.636719 259.472656 263.207031 259.472656 263.207031 257.851562 C 263.207031 256.234375 265.636719 256.234375 265.636719 257.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.546875 276.769531 C 324.546875 278.390625 322.117188 278.390625 322.117188 276.769531 C 322.117188 275.148438 324.546875 275.148438 324.546875 276.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.296875 310.570312 C 316.296875 312.191406 313.867188 312.191406 313.867188 310.570312 C 313.867188 308.949219 316.296875 308.949219 316.296875 310.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.6875 277.707031 C 242.6875 279.328125 240.257812 279.328125 240.257812 277.707031 C 240.257812 276.085938 242.6875 276.085938 242.6875 277.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.207031 264.785156 C 237.207031 266.40625 234.777344 266.40625 234.777344 264.785156 C 234.777344 263.164062 237.207031 263.164062 237.207031 264.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.832031 194.617188 C 267.832031 196.234375 265.402344 196.234375 265.402344 194.617188 C 265.402344 192.996094 267.832031 192.996094 267.832031 194.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.394531 273.824219 C 296.394531 275.445312 293.964844 275.445312 293.964844 273.824219 C 293.964844 272.207031 296.394531 272.207031 296.394531 273.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.585938 244.015625 C 295.585938 245.632812 293.15625 245.632812 293.15625 244.015625 C 293.15625 242.394531 295.585938 242.394531 295.585938 244.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.171875 418.691406 L 246.808594 415.855469 L 243.535156 415.855469 Z M 245.171875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.335938 306.558594 C 195.335938 308.179688 192.90625 308.179688 192.90625 306.558594 C 192.90625 304.941406 195.335938 304.941406 195.335938 306.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.503906 269.050781 C 244.503906 270.671875 242.074219 270.671875 242.074219 269.050781 C 242.074219 267.429688 244.503906 267.429688 244.503906 269.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.058594 418.691406 L 227.695312 415.855469 L 224.421875 415.855469 Z M 226.058594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.824219 184.703125 C 162.824219 186.324219 160.394531 186.324219 160.394531 184.703125 C 160.394531 183.082031 162.824219 183.082031 162.824219 184.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.320312 363.132812 C 289.320312 364.753906 286.890625 364.753906 286.890625 363.132812 C 286.890625 361.515625 289.320312 361.515625 289.320312 363.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.847656 267.445312 C 287.847656 269.066406 285.417969 269.066406 285.417969 267.445312 C 285.417969 265.824219 287.847656 265.824219 287.847656 267.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.175781 288.476562 C 224.175781 290.097656 221.746094 290.097656 221.746094 288.476562 C 221.746094 286.859375 224.175781 286.859375 224.175781 288.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.542969 255.222656 C 294.542969 256.84375 292.109375 256.84375 292.109375 255.222656 C 292.109375 253.605469 294.542969 253.605469 294.542969 255.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.0625 187.867188 C 272.0625 189.484375 269.632812 189.484375 269.632812 187.867188 C 269.632812 186.246094 272.0625 186.246094 272.0625 187.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.164062 111.488281 C 166.164062 113.105469 163.734375 113.105469 163.734375 111.488281 C 163.734375 109.867188 166.164062 109.867188 166.164062 111.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.757812 179.101562 C 270.757812 180.722656 268.328125 180.722656 268.328125 179.101562 C 268.328125 177.484375 270.757812 177.484375 270.757812 179.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.984375 216.070312 C 265.984375 217.6875 263.550781 217.6875 263.550781 216.070312 C 263.550781 214.449219 265.984375 214.449219 265.984375 216.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.425781 221.503906 C 256.425781 223.125 253.996094 223.125 253.996094 221.503906 C 253.996094 219.882812 256.425781 219.882812 256.425781 221.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.953125 242.6875 C 232.953125 244.308594 230.523438 244.308594 230.523438 242.6875 C 230.523438 241.066406 232.953125 241.066406 232.953125 242.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.027344 212.382812 C 233.027344 214 230.597656 214 230.597656 212.382812 C 230.597656 210.761719 233.027344 210.761719 233.027344 212.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.988281 70.910156 L 243.625 73.746094 L 240.355469 73.746094 Z M 241.988281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.980469 147.753906 C 221.980469 149.371094 219.550781 149.371094 219.550781 147.753906 C 219.550781 146.132812 221.980469 146.132812 221.980469 147.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.972656 144.304688 C 273.972656 145.925781 271.542969 145.925781 271.542969 144.304688 C 271.542969 142.683594 273.972656 142.683594 273.972656 144.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.550781 220.574219 C 315.550781 222.195312 313.117188 222.195312 313.117188 220.574219 C 313.117188 218.953125 315.550781 218.953125 315.550781 220.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.359375 242.507812 C 263.359375 244.125 260.929688 244.125 260.929688 242.507812 C 260.929688 240.886719 263.359375 240.886719 263.359375 242.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.300781 418.691406 L 245.9375 415.855469 L 242.667969 415.855469 Z M 244.300781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.132812 204.609375 C 184.132812 206.230469 181.699219 206.230469 181.699219 204.609375 C 181.699219 202.988281 184.132812 202.988281 184.132812 204.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.605469 398.507812 C 312.605469 400.125 310.175781 400.125 310.175781 398.507812 C 310.175781 396.886719 312.605469 396.886719 312.605469 398.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.042969 369.652344 C 305.042969 371.273438 302.613281 371.273438 302.613281 369.652344 C 302.613281 368.035156 305.042969 368.035156 305.042969 369.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.851562 130.617188 C 304.851562 132.238281 302.421875 132.238281 302.421875 130.617188 C 302.421875 129 304.851562 129 304.851562 130.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.882812 227.378906 C 266.882812 229 264.453125 229 264.453125 227.378906 C 264.453125 225.757812 266.882812 225.757812 266.882812 227.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.367188 114.148438 C 198.367188 115.765625 195.9375 115.765625 195.9375 114.148438 C 195.9375 112.527344 198.367188 112.527344 198.367188 114.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.382812 180.921875 C 273.382812 182.542969 270.953125 182.542969 270.953125 180.921875 C 270.953125 179.304688 273.382812 179.304688 273.382812 180.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.40625 254.613281 C 182.40625 256.234375 179.972656 256.234375 179.972656 254.613281 C 179.972656 252.992188 182.40625 252.992188 182.40625 254.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.738281 269.097656 C 266.738281 270.714844 264.308594 270.714844 264.308594 269.097656 C 264.308594 267.476562 266.738281 267.476562 266.738281 269.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.769531 283.8125 C 222.769531 285.433594 220.339844 285.433594 220.339844 283.8125 C 220.339844 282.191406 222.769531 282.191406 222.769531 283.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.023438 418.691406 L 164.660156 415.855469 L 161.386719 415.855469 Z M 163.023438 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.859375 70.910156 L 197.492188 73.746094 L 194.222656 73.746094 Z M 195.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.523438 267.203125 C 257.523438 268.820312 255.09375 268.820312 255.09375 267.203125 C 255.09375 265.582031 257.523438 265.582031 257.523438 267.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.492188 215.464844 C 318.492188 217.082031 316.0625 217.082031 316.0625 215.464844 C 316.0625 213.84375 318.492188 213.84375 318.492188 215.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.742188 172.96875 C 247.742188 174.585938 245.3125 174.585938 245.3125 172.96875 C 245.3125 171.347656 247.742188 171.347656 247.742188 172.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.203125 276.222656 C 284.203125 277.84375 281.773438 277.84375 281.773438 276.222656 C 281.773438 274.601562 284.203125 274.601562 284.203125 276.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.65625 221.507812 C 209.65625 223.125 207.226562 223.125 207.226562 221.507812 C 207.226562 219.886719 209.65625 219.886719 209.65625 221.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.457031 190.414062 C 261.457031 192.035156 259.027344 192.035156 259.027344 190.414062 C 259.027344 188.796875 261.457031 188.796875 261.457031 190.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.703125 70.910156 L 173.339844 73.746094 L 170.070312 73.746094 Z M 171.703125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.316406 70.910156 L 282.953125 73.746094 L 279.679688 73.746094 Z M 281.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.835938 332.726562 C 291.835938 334.34375 289.40625 334.34375 289.40625 332.726562 C 289.40625 331.105469 291.835938 331.105469 291.835938 332.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.027344 70.910156 L 134.664062 73.746094 L 131.390625 73.746094 Z M 133.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.246094 70.910156 L 241.878906 73.746094 L 238.609375 73.746094 Z M 240.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336 250.121094 C 336 251.738281 333.570312 251.738281 333.570312 250.121094 C 333.570312 248.5 336 248.5 336 250.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.6875 288.234375 C 134.6875 289.855469 132.257812 289.855469 132.257812 288.234375 C 132.257812 286.613281 134.6875 286.613281 134.6875 288.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.347656 164.699219 C 233.347656 166.320312 230.917969 166.320312 230.917969 164.699219 C 230.917969 163.078125 233.347656 163.078125 233.347656 164.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.421875 131.917969 C 223.421875 133.539062 220.992188 133.539062 220.992188 131.917969 C 220.992188 130.300781 223.421875 130.300781 223.421875 131.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.050781 70.910156 L 140.6875 73.746094 L 137.414062 73.746094 Z M 139.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.050781 199.660156 C 148.050781 201.277344 145.621094 201.277344 145.621094 199.660156 C 145.621094 198.039062 148.050781 198.039062 148.050781 199.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.679688 116.570312 C 119.679688 118.1875 117.25 118.1875 117.25 116.570312 C 117.25 114.949219 119.679688 114.949219 119.679688 116.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.984375 320.03125 C 164.984375 321.652344 162.554688 321.652344 162.554688 320.03125 C 162.554688 318.414062 164.984375 318.414062 164.984375 320.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.507812 364.800781 C 134.507812 366.421875 132.078125 366.421875 132.078125 364.800781 C 132.078125 363.183594 134.507812 363.183594 134.507812 364.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.617188 242.359375 C 266.617188 243.980469 264.1875 243.980469 264.1875 242.359375 C 264.1875 240.738281 266.617188 240.738281 266.617188 242.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.667969 70.910156 L 241.304688 73.746094 L 238.03125 73.746094 Z M 239.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.4375 230.144531 C 251.4375 231.765625 249.007812 231.765625 249.007812 230.144531 C 249.007812 228.527344 251.4375 228.527344 251.4375 230.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.714844 200.734375 C 264.714844 202.355469 262.285156 202.355469 262.285156 200.734375 C 262.285156 199.117188 264.714844 199.117188 264.714844 200.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.902344 265.851562 C 223.902344 267.46875 221.472656 267.46875 221.472656 265.851562 C 221.472656 264.230469 223.902344 264.230469 223.902344 265.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.960938 70.910156 L 143.597656 73.746094 L 140.324219 73.746094 Z M 141.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.59375 237.117188 C 231.59375 238.738281 229.164062 238.738281 229.164062 237.117188 C 229.164062 235.5 231.59375 235.5 231.59375 237.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.417969 251.640625 C 268.417969 253.261719 265.988281 253.261719 265.988281 251.640625 C 265.988281 250.023438 268.417969 250.023438 268.417969 251.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.761719 248.429688 C 277.761719 250.050781 275.332031 250.050781 275.332031 248.429688 C 275.332031 246.808594 277.761719 246.808594 277.761719 248.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.371094 185.296875 C 286.371094 186.917969 283.941406 186.917969 283.941406 185.296875 C 283.941406 183.675781 286.371094 183.675781 286.371094 185.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.652344 173.210938 C 288.652344 174.828125 286.222656 174.828125 286.222656 173.210938 C 286.222656 171.589844 288.652344 171.589844 288.652344 173.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.527344 70.910156 L 151.164062 73.746094 L 147.890625 73.746094 Z M 149.527344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.019531 285.503906 C 161.019531 287.125 158.589844 287.125 158.589844 285.503906 C 158.589844 283.882812 161.019531 283.882812 161.019531 285.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.722656 224.703125 C 183.722656 226.324219 181.292969 226.324219 181.292969 224.703125 C 181.292969 223.085938 183.722656 223.085938 183.722656 224.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.035156 220.101562 C 302.035156 221.71875 299.605469 221.71875 299.605469 220.101562 C 299.605469 218.480469 302.035156 218.480469 302.035156 220.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.921875 236.027344 C 262.921875 237.648438 260.492188 237.648438 260.492188 236.027344 C 260.492188 234.410156 262.921875 234.410156 262.921875 236.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.414062 175.753906 C 146.414062 177.375 143.984375 177.375 143.984375 175.753906 C 143.984375 174.136719 146.414062 174.136719 146.414062 175.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.09375 247.140625 C 279.09375 248.757812 276.664062 248.757812 276.664062 247.140625 C 276.664062 245.519531 279.09375 245.519531 279.09375 247.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.414062 228.707031 C 232.414062 230.328125 229.984375 230.328125 229.984375 228.707031 C 229.984375 227.089844 232.414062 227.089844 232.414062 228.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.945312 292.320312 C 251.945312 293.941406 249.515625 293.941406 249.515625 292.320312 C 249.515625 290.699219 251.945312 290.699219 251.945312 292.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.261719 240.039062 C 181.261719 241.660156 178.832031 241.660156 178.832031 240.039062 C 178.832031 238.421875 181.261719 238.421875 181.261719 240.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.597656 278.660156 C 288.597656 280.28125 286.167969 280.28125 286.167969 278.660156 C 286.167969 277.039062 288.597656 277.039062 288.597656 278.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.230469 305.863281 C 242.230469 307.484375 239.800781 307.484375 239.800781 305.863281 C 239.800781 304.242188 242.230469 304.242188 242.230469 305.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.347656 129.722656 C 225.347656 131.34375 222.917969 131.34375 222.917969 129.722656 C 222.917969 128.101562 225.347656 128.101562 225.347656 129.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.328125 260.359375 C 304.328125 261.980469 301.898438 261.980469 301.898438 260.359375 C 301.898438 258.742188 304.328125 258.742188 304.328125 260.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.035156 80.199219 C 281.035156 81.820312 278.605469 81.820312 278.605469 80.199219 C 278.605469 78.578125 281.035156 78.578125 281.035156 80.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.101562 333.25 C 235.101562 334.871094 232.671875 334.871094 232.671875 333.25 C 232.671875 331.628906 235.101562 331.628906 235.101562 333.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.496094 368.792969 C 280.496094 370.414062 278.066406 370.414062 278.066406 368.792969 C 278.066406 367.175781 280.496094 367.175781 280.496094 368.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.71875 70.910156 L 128.355469 73.746094 L 125.085938 73.746094 Z M 126.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.777344 250.964844 C 259.777344 252.582031 257.347656 252.582031 257.347656 250.964844 C 257.347656 249.34375 259.777344 249.34375 259.777344 250.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.488281 255.574219 C 324.488281 257.195312 322.058594 257.195312 322.058594 255.574219 C 322.058594 253.953125 324.488281 253.953125 324.488281 255.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.789062 207.277344 C 215.789062 208.898438 213.359375 208.898438 213.359375 207.277344 C 213.359375 205.65625 215.789062 205.65625 215.789062 207.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.269531 227.109375 C 257.269531 228.730469 254.839844 228.730469 254.839844 227.109375 C 254.839844 225.488281 257.269531 225.488281 257.269531 227.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.136719 70.910156 L 233.769531 73.746094 L 230.5 73.746094 Z M 232.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.082031 307.144531 C 234.082031 308.765625 231.648438 308.765625 231.648438 307.144531 C 231.648438 305.523438 234.082031 305.523438 234.082031 307.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.132812 202.410156 C 290.132812 204.03125 287.703125 204.03125 287.703125 202.410156 C 287.703125 200.789062 290.132812 200.789062 290.132812 202.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.652344 258.183594 C 282.652344 259.804688 280.222656 259.804688 280.222656 258.183594 C 280.222656 256.5625 282.652344 256.5625 282.652344 258.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.128906 283.507812 C 253.128906 285.125 250.699219 285.125 250.699219 283.507812 C 250.699219 281.886719 253.128906 281.886719 253.128906 283.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.578125 236.683594 C 256.578125 238.304688 254.148438 238.304688 254.148438 236.683594 C 254.148438 235.066406 256.578125 235.066406 256.578125 236.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.664062 286.421875 C 241.664062 288.042969 239.234375 288.042969 239.234375 286.421875 C 239.234375 284.804688 241.664062 284.804688 241.664062 286.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.203125 261.546875 C 280.203125 263.167969 277.773438 263.167969 277.773438 261.546875 C 277.773438 259.929688 280.203125 259.929688 280.203125 261.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.859375 207.839844 C 251.859375 209.460938 249.429688 209.460938 249.429688 207.839844 C 249.429688 206.21875 251.859375 206.21875 251.859375 207.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.613281 203.652344 C 231.613281 205.273438 229.183594 205.273438 229.183594 203.652344 C 229.183594 202.035156 231.613281 202.035156 231.613281 203.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.984375 263.964844 C 188.984375 265.585938 186.554688 265.585938 186.554688 263.964844 C 186.554688 262.34375 188.984375 262.34375 188.984375 263.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.308594 70.910156 L 278.945312 73.746094 L 275.671875 73.746094 Z M 277.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.316406 236.9375 C 284.316406 238.554688 281.886719 238.554688 281.886719 236.9375 C 281.886719 235.316406 284.316406 235.316406 284.316406 236.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.519531 244.476562 C 275.519531 246.097656 273.089844 246.097656 273.089844 244.476562 C 273.089844 242.855469 275.519531 242.855469 275.519531 244.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.847656 355.457031 C 250.847656 357.078125 248.417969 357.078125 248.417969 355.457031 C 248.417969 353.835938 250.847656 353.835938 250.847656 355.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.34375 268.257812 C 220.34375 269.878906 217.914062 269.878906 217.914062 268.257812 C 217.914062 266.640625 220.34375 266.640625 220.34375 268.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.898438 292.796875 C 266.898438 294.417969 264.464844 294.417969 264.464844 292.796875 C 264.464844 291.175781 266.898438 291.175781 266.898438 292.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.484375 232.65625 C 285.484375 234.277344 283.054688 234.277344 283.054688 232.65625 C 283.054688 231.039062 285.484375 231.039062 285.484375 232.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.085938 391.097656 C 246.085938 392.71875 243.65625 392.71875 243.65625 391.097656 C 243.65625 389.476562 246.085938 389.476562 246.085938 391.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.117188 106.894531 C 218.117188 108.511719 215.6875 108.511719 215.6875 106.894531 C 215.6875 105.273438 218.117188 105.273438 218.117188 106.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.835938 249.765625 C 216.835938 251.386719 214.40625 251.386719 214.40625 249.765625 C 214.40625 248.144531 216.835938 248.144531 216.835938 249.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.984375 285.585938 C 305.984375 287.207031 303.554688 287.207031 303.554688 285.585938 C 303.554688 283.96875 305.984375 283.96875 305.984375 285.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.34375 70.910156 L 193.980469 73.746094 L 190.707031 73.746094 Z M 192.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.195312 290.6875 C 222.195312 292.308594 219.765625 292.308594 219.765625 290.6875 C 219.765625 289.066406 222.195312 289.066406 222.195312 290.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.683594 241.289062 C 267.683594 242.910156 265.253906 242.910156 265.253906 241.289062 C 265.253906 239.671875 267.683594 239.671875 267.683594 241.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.175781 270.546875 C 290.175781 272.164062 287.746094 272.164062 287.746094 270.546875 C 287.746094 268.925781 290.175781 268.925781 290.175781 270.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.253906 91.332031 C 124.253906 92.953125 121.824219 92.953125 121.824219 91.332031 C 121.824219 89.714844 124.253906 89.714844 124.253906 91.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.792969 181.953125 C 251.792969 183.574219 249.363281 183.574219 249.363281 181.953125 C 249.363281 180.335938 251.792969 180.335938 251.792969 181.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.882812 290.265625 C 269.882812 291.886719 267.453125 291.886719 267.453125 290.265625 C 267.453125 288.648438 269.882812 288.648438 269.882812 290.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.652344 258.726562 C 287.652344 260.34375 285.222656 260.34375 285.222656 258.726562 C 285.222656 257.105469 287.652344 257.105469 287.652344 258.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.824219 291.792969 C 300.824219 293.414062 298.394531 293.414062 298.394531 291.792969 C 298.394531 290.171875 300.824219 290.171875 300.824219 291.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.84375 303.679688 C 270.84375 305.300781 268.410156 305.300781 268.410156 303.679688 C 268.410156 302.058594 270.84375 302.058594 270.84375 303.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.28125 206.664062 C 243.28125 208.28125 240.851562 208.28125 240.851562 206.664062 C 240.851562 205.042969 243.28125 205.042969 243.28125 206.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.804688 263.253906 C 221.804688 264.875 219.375 264.875 219.375 263.253906 C 219.375 261.632812 221.804688 261.632812 221.804688 263.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.800781 293.105469 C 232.800781 294.726562 230.371094 294.726562 230.371094 293.105469 C 230.371094 291.484375 232.800781 291.484375 232.800781 293.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.699219 183.515625 C 160.699219 185.136719 158.269531 185.136719 158.269531 183.515625 C 158.269531 181.898438 160.699219 181.898438 160.699219 183.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.363281 259.050781 C 282.363281 260.671875 279.933594 260.671875 279.933594 259.050781 C 279.933594 257.433594 282.363281 257.433594 282.363281 259.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.507812 70.910156 L 216.144531 73.746094 L 212.871094 73.746094 Z M 214.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.082031 70.910156 L 257.714844 73.746094 L 254.445312 73.746094 Z M 256.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.835938 221.972656 C 300.835938 223.59375 298.40625 223.59375 298.40625 221.972656 C 298.40625 220.355469 300.835938 220.355469 300.835938 221.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.097656 243.457031 C 259.097656 245.078125 256.664062 245.078125 256.664062 243.457031 C 256.664062 241.839844 259.097656 241.839844 259.097656 243.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.1875 209.863281 C 265.1875 211.480469 262.753906 211.480469 262.753906 209.863281 C 262.753906 208.242188 265.1875 208.242188 265.1875 209.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.226562 349.09375 C 246.226562 350.714844 243.792969 350.714844 243.792969 349.09375 C 243.792969 347.476562 246.226562 347.476562 246.226562 349.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.460938 295.636719 C 299.460938 297.257812 297.03125 297.257812 297.03125 295.636719 C 297.03125 294.015625 299.460938 294.015625 299.460938 295.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.296875 319.617188 C 177.296875 321.238281 174.867188 321.238281 174.867188 319.617188 C 174.867188 318 177.296875 318 177.296875 319.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.871094 252.574219 C 196.871094 254.195312 194.4375 254.195312 194.4375 252.574219 C 194.4375 250.957031 196.871094 250.957031 196.871094 252.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.992188 84.574219 C 219.992188 86.195312 217.5625 86.195312 217.5625 84.574219 C 217.5625 82.957031 219.992188 82.957031 219.992188 84.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.363281 223.695312 C 328.363281 225.316406 325.933594 225.316406 325.933594 223.695312 C 325.933594 222.074219 328.363281 222.074219 328.363281 223.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.167969 293.644531 C 320.167969 295.261719 317.738281 295.261719 317.738281 293.644531 C 317.738281 292.023438 320.167969 292.023438 320.167969 293.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.113281 153.253906 C 318.113281 154.875 315.683594 154.875 315.683594 153.253906 C 315.683594 151.632812 318.113281 151.632812 318.113281 153.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.175781 199.128906 C 269.175781 200.746094 266.746094 200.746094 266.746094 199.128906 C 266.746094 197.507812 269.175781 197.507812 269.175781 199.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.808594 335.125 C 272.808594 336.746094 270.378906 336.746094 270.378906 335.125 C 270.378906 333.507812 272.808594 333.507812 272.808594 335.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.933594 70.910156 L 238.570312 73.746094 L 235.296875 73.746094 Z M 236.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.667969 212.867188 C 310.667969 214.488281 308.238281 214.488281 308.238281 212.867188 C 308.238281 211.25 310.667969 211.25 310.667969 212.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.472656 274.894531 C 296.472656 276.515625 294.042969 276.515625 294.042969 274.894531 C 294.042969 273.277344 296.472656 273.277344 296.472656 274.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.039062 338.804688 C 235.039062 340.425781 232.609375 340.425781 232.609375 338.804688 C 232.609375 337.1875 235.039062 337.1875 235.039062 338.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.304688 246.953125 C 174.304688 248.574219 171.875 248.574219 171.875 246.953125 C 171.875 245.335938 174.304688 245.335938 174.304688 246.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.121094 269.65625 C 291.121094 271.273438 288.691406 271.273438 288.691406 269.65625 C 288.691406 268.035156 291.121094 268.035156 291.121094 269.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.917969 286.121094 C 240.917969 287.738281 238.488281 287.738281 238.488281 286.121094 C 238.488281 284.5 240.917969 284.5 240.917969 286.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.4375 222.15625 C 315.4375 223.777344 313.007812 223.777344 313.007812 222.15625 C 313.007812 220.535156 315.4375 220.535156 315.4375 222.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.476562 313.363281 C 257.476562 314.984375 255.046875 314.984375 255.046875 313.363281 C 255.046875 311.746094 257.476562 311.746094 257.476562 313.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.316406 242.972656 C 229.316406 244.59375 226.886719 244.59375 226.886719 242.972656 C 226.886719 241.351562 229.316406 241.351562 229.316406 242.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.695312 202.984375 C 295.695312 204.605469 293.265625 204.605469 293.265625 202.984375 C 293.265625 201.363281 295.695312 201.363281 295.695312 202.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.992188 123.746094 C 144.992188 125.363281 142.5625 125.363281 142.5625 123.746094 C 142.5625 122.125 144.992188 122.125 144.992188 123.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.855469 194.910156 C 250.855469 196.53125 248.425781 196.53125 248.425781 194.910156 C 248.425781 193.292969 250.855469 193.292969 250.855469 194.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.667969 70.910156 L 210.304688 73.746094 L 207.03125 73.746094 Z M 208.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.09375 230.714844 C 220.09375 232.335938 217.664062 232.335938 217.664062 230.714844 C 217.664062 229.09375 220.09375 229.09375 220.09375 230.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.710938 291.363281 C 316.710938 292.984375 314.277344 292.984375 314.277344 291.363281 C 314.277344 289.742188 316.710938 289.742188 316.710938 291.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.222656 274.121094 C 320.222656 275.738281 317.792969 275.738281 317.792969 274.121094 C 317.792969 272.5 320.222656 272.5 320.222656 274.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.746094 295.992188 C 230.746094 297.613281 228.316406 297.613281 228.316406 295.992188 C 228.316406 294.375 230.746094 294.375 230.746094 295.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.351562 70.910156 L 211.988281 73.746094 L 208.714844 73.746094 Z M 210.351562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.089844 70.910156 L 218.726562 73.746094 L 215.453125 73.746094 Z M 217.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.289062 263.589844 C 232.289062 265.210938 229.859375 265.210938 229.859375 263.589844 C 229.859375 261.96875 232.289062 261.96875 232.289062 263.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.808594 189.824219 C 223.808594 191.445312 221.375 191.445312 221.375 189.824219 C 221.375 188.207031 223.808594 188.207031 223.808594 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.414062 294.394531 C 234.414062 296.015625 231.984375 296.015625 231.984375 294.394531 C 231.984375 292.773438 234.414062 292.773438 234.414062 294.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.800781 232.1875 C 281.800781 233.808594 279.371094 233.808594 279.371094 232.1875 C 279.371094 230.566406 281.800781 230.566406 281.800781 232.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.480469 305.453125 C 290.480469 307.074219 288.050781 307.074219 288.050781 305.453125 C 288.050781 303.835938 290.480469 303.835938 290.480469 305.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.054688 247.558594 C 307.054688 249.179688 304.621094 249.179688 304.621094 247.558594 C 304.621094 245.941406 307.054688 245.941406 307.054688 247.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.054688 392.777344 C 217.054688 394.398438 214.625 394.398438 214.625 392.777344 C 214.625 391.15625 217.054688 391.15625 217.054688 392.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.117188 293.15625 C 262.117188 294.773438 259.6875 294.773438 259.6875 293.15625 C 259.6875 291.535156 262.117188 291.535156 262.117188 293.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.402344 297.707031 C 259.402344 299.324219 256.972656 299.324219 256.972656 297.707031 C 256.972656 296.085938 259.402344 296.085938 259.402344 297.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.648438 70.910156 L 188.285156 73.746094 L 185.011719 73.746094 Z M 186.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.117188 133.550781 C 117.117188 135.171875 114.6875 135.171875 114.6875 133.550781 C 114.6875 131.933594 117.117188 131.933594 117.117188 133.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.4375 70.910156 L 166.074219 73.746094 L 162.800781 73.746094 Z M 164.4375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.742188 418.691406 L 295.378906 415.855469 L 292.105469 415.855469 Z M 293.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.605469 295.230469 C 229.605469 296.851562 227.175781 296.851562 227.175781 295.230469 C 227.175781 293.613281 229.605469 293.613281 229.605469 295.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.980469 251.371094 C 248.980469 252.992188 246.550781 252.992188 246.550781 251.371094 C 246.550781 249.753906 248.980469 249.753906 248.980469 251.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.386719 230.4375 C 284.386719 232.058594 281.957031 232.058594 281.957031 230.4375 C 281.957031 228.820312 284.386719 228.820312 284.386719 230.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.613281 252.070312 C 335.613281 253.691406 333.183594 253.691406 333.183594 252.070312 C 333.183594 250.453125 335.613281 250.453125 335.613281 252.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.265625 220.089844 C 257.265625 221.707031 254.835938 221.707031 254.835938 220.089844 C 254.835938 218.46875 257.265625 218.46875 257.265625 220.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.476562 241.410156 C 295.476562 243.03125 293.046875 243.03125 293.046875 241.410156 C 293.046875 239.792969 295.476562 239.792969 295.476562 241.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.300781 70.910156 L 213.9375 73.746094 L 210.664062 73.746094 Z M 212.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.816406 163.90625 C 205.816406 165.527344 203.386719 165.527344 203.386719 163.90625 C 203.386719 162.289062 205.816406 162.289062 205.816406 163.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.480469 236.816406 C 232.480469 238.4375 230.050781 238.4375 230.050781 236.816406 C 230.050781 235.199219 232.480469 235.199219 232.480469 236.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.753906 308.511719 C 260.753906 310.132812 258.324219 310.132812 258.324219 308.511719 C 258.324219 306.890625 260.753906 306.890625 260.753906 308.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.667969 259.332031 C 301.667969 260.953125 299.238281 260.953125 299.238281 259.332031 C 299.238281 257.714844 301.667969 257.714844 301.667969 259.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.996094 367.675781 C 236.996094 369.296875 234.566406 369.296875 234.566406 367.675781 C 234.566406 366.058594 236.996094 366.058594 236.996094 367.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.722656 296.488281 C 272.722656 298.105469 270.292969 298.105469 270.292969 296.488281 C 270.292969 294.867188 272.722656 294.867188 272.722656 296.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.023438 361.058594 C 269.023438 362.675781 266.59375 362.675781 266.59375 361.058594 C 266.59375 359.4375 269.023438 359.4375 269.023438 361.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.238281 116.546875 C 119.238281 118.167969 116.808594 118.167969 116.808594 116.546875 C 116.808594 114.925781 119.238281 114.925781 119.238281 116.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.246094 78.417969 C 126.246094 80.039062 123.816406 80.039062 123.816406 78.417969 C 123.816406 76.800781 126.246094 76.800781 126.246094 78.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.109375 223.925781 C 294.109375 225.546875 291.675781 225.546875 291.675781 223.925781 C 291.675781 222.304688 294.109375 222.304688 294.109375 223.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.96875 255.574219 C 327.96875 257.195312 325.535156 257.195312 325.535156 255.574219 C 325.535156 253.953125 327.96875 253.953125 327.96875 255.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.640625 223.128906 C 282.640625 224.75 280.210938 224.75 280.210938 223.128906 C 280.210938 221.507812 282.640625 221.507812 282.640625 223.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.015625 328.449219 C 224.015625 330.070312 221.585938 330.070312 221.585938 328.449219 C 221.585938 326.832031 224.015625 326.832031 224.015625 328.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.71875 255.226562 C 282.71875 256.847656 280.285156 256.847656 280.285156 255.226562 C 280.285156 253.609375 282.71875 253.609375 282.71875 255.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.5625 286.246094 C 238.5625 287.867188 236.132812 287.867188 236.132812 286.246094 C 236.132812 284.625 238.5625 284.625 238.5625 286.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.902344 248.464844 C 218.902344 250.085938 216.472656 250.085938 216.472656 248.464844 C 216.472656 246.84375 218.902344 246.84375 218.902344 248.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.449219 284.324219 C 276.449219 285.945312 274.019531 285.945312 274.019531 284.324219 C 274.019531 282.703125 276.449219 282.703125 276.449219 284.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.542969 311.886719 C 328.542969 313.507812 326.113281 313.507812 326.113281 311.886719 C 326.113281 310.265625 328.542969 310.265625 328.542969 311.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.765625 161.894531 C 225.765625 163.515625 223.335938 163.515625 223.335938 161.894531 C 223.335938 160.273438 225.765625 160.273438 225.765625 161.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.488281 234.851562 C 279.488281 236.46875 277.058594 236.46875 277.058594 234.851562 C 277.058594 233.230469 279.488281 233.230469 279.488281 234.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.707031 213.097656 C 234.707031 214.714844 232.277344 214.714844 232.277344 213.097656 C 232.277344 211.476562 234.707031 211.476562 234.707031 213.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.167969 205.871094 C 196.167969 207.492188 193.738281 207.492188 193.738281 205.871094 C 193.738281 204.253906 196.167969 204.253906 196.167969 205.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.835938 101.214844 C 151.835938 102.835938 149.40625 102.835938 149.40625 101.214844 C 149.40625 99.597656 151.835938 99.597656 151.835938 101.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.011719 70.910156 L 200.648438 73.746094 L 197.375 73.746094 Z M 199.011719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.105469 70.910156 L 228.742188 73.746094 L 225.46875 73.746094 Z M 227.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.683594 368.769531 C 196.683594 370.390625 194.253906 370.390625 194.253906 368.769531 C 194.253906 367.148438 196.683594 367.148438 196.683594 368.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.898438 418.691406 L 228.535156 415.855469 L 225.261719 415.855469 Z M 226.898438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.679688 153.484375 C 250.679688 155.105469 248.25 155.105469 248.25 153.484375 C 248.25 151.863281 250.679688 151.863281 250.679688 153.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.824219 401.511719 C 272.824219 403.132812 270.394531 403.132812 270.394531 401.511719 C 270.394531 399.890625 272.824219 399.890625 272.824219 401.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.644531 418.691406 L 243.28125 415.855469 L 240.007812 415.855469 Z M 241.644531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.046875 418.691406 L 221.683594 415.855469 L 218.410156 415.855469 Z M 220.046875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 380 389.105469 C 380 390.726562 377.570312 390.726562 377.570312 389.105469 C 377.570312 387.484375 380 387.484375 380 389.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.132812 299.140625 C 319.132812 300.761719 316.703125 300.761719 316.703125 299.140625 C 316.703125 297.519531 319.132812 297.519531 319.132812 299.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.652344 179.410156 C 200.652344 181.03125 198.222656 181.03125 198.222656 179.410156 C 198.222656 177.789062 200.652344 177.789062 200.652344 179.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.734375 190.570312 C 339.734375 192.191406 337.304688 192.191406 337.304688 190.570312 C 337.304688 188.953125 339.734375 188.953125 339.734375 190.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.324219 292.691406 C 254.324219 294.3125 251.894531 294.3125 251.894531 292.691406 C 251.894531 291.074219 254.324219 291.074219 254.324219 292.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.601562 70.910156 L 188.238281 73.746094 L 184.96875 73.746094 Z M 186.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.058594 225.980469 C 277.058594 227.601562 274.628906 227.601562 274.628906 225.980469 C 274.628906 224.359375 277.058594 224.359375 277.058594 225.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.515625 238.101562 C 317.515625 239.722656 315.085938 239.722656 315.085938 238.101562 C 315.085938 236.480469 317.515625 236.480469 317.515625 238.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.136719 364.890625 C 343.136719 366.511719 340.707031 366.511719 340.707031 364.890625 C 340.707031 363.273438 343.136719 363.273438 343.136719 364.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.257812 256.597656 C 345.257812 258.21875 342.828125 258.21875 342.828125 256.597656 C 342.828125 254.976562 345.257812 254.976562 345.257812 256.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.539062 310.871094 C 316.539062 312.492188 314.109375 312.492188 314.109375 310.871094 C 314.109375 309.253906 316.539062 309.253906 316.539062 310.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.882812 294.773438 C 255.882812 296.394531 253.453125 296.394531 253.453125 294.773438 C 253.453125 293.152344 255.882812 293.152344 255.882812 294.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.796875 359.898438 C 293.796875 361.519531 291.367188 361.519531 291.367188 359.898438 C 291.367188 358.277344 293.796875 358.277344 293.796875 359.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.351562 418.691406 L 195.988281 415.855469 L 192.714844 415.855469 Z M 194.351562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.4375 70.910156 L 250.074219 73.746094 L 246.804688 73.746094 Z M 248.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.214844 222.652344 C 286.214844 224.273438 283.785156 224.273438 283.785156 222.652344 C 283.785156 221.03125 286.214844 221.03125 286.214844 222.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 371.90625 324.796875 C 371.90625 326.414062 369.476562 326.414062 369.476562 324.796875 C 369.476562 323.175781 371.90625 323.175781 371.90625 324.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.585938 70.910156 L 244.222656 73.746094 L 240.949219 73.746094 Z M 242.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.636719 106.371094 C 285.636719 107.992188 283.207031 107.992188 283.207031 106.371094 C 283.207031 104.75 285.636719 104.75 285.636719 106.371094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.363281 418.691406 L 265 415.855469 L 261.726562 415.855469 Z M 263.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.003906 274.683594 C 273.003906 276.300781 270.574219 276.300781 270.574219 274.683594 C 270.574219 273.0625 273.003906 273.0625 273.003906 274.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.46875 70.910156 L 177.105469 73.746094 L 173.832031 73.746094 Z M 175.46875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.25 418.691406 L 212.886719 415.855469 L 209.613281 415.855469 Z M 211.25 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.109375 263.761719 C 263.109375 265.378906 260.679688 265.378906 260.679688 263.761719 C 260.679688 262.140625 263.109375 262.140625 263.109375 263.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.359375 262.222656 C 267.359375 263.84375 264.929688 263.84375 264.929688 262.222656 C 264.929688 260.601562 267.359375 260.601562 267.359375 262.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.582031 298.773438 C 124.582031 300.394531 122.152344 300.394531 122.152344 298.773438 C 122.152344 297.152344 124.582031 297.152344 124.582031 298.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.925781 147.644531 C 288.925781 149.261719 286.496094 149.261719 286.496094 147.644531 C 286.496094 146.023438 288.925781 146.023438 288.925781 147.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.976562 313.378906 C 192.976562 314.996094 190.546875 314.996094 190.546875 313.378906 C 190.546875 311.757812 192.976562 311.757812 192.976562 313.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301 260.832031 C 301 262.453125 298.570312 262.453125 298.570312 260.832031 C 298.570312 259.214844 301 259.214844 301 260.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.101562 253.585938 C 268.101562 255.207031 265.671875 255.207031 265.671875 253.585938 C 265.671875 251.964844 268.101562 251.964844 268.101562 253.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.574219 184.625 C 155.574219 186.246094 153.144531 186.246094 153.144531 184.625 C 153.144531 183.003906 155.574219 183.003906 155.574219 184.625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.507812 70.910156 L 142.144531 73.746094 L 138.871094 73.746094 Z M 140.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.140625 226.777344 C 263.140625 228.398438 260.710938 228.398438 260.710938 226.777344 C 260.710938 225.15625 263.140625 225.15625 263.140625 226.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.738281 252.175781 C 116.738281 253.796875 114.308594 253.796875 114.308594 252.175781 C 114.308594 250.554688 116.738281 250.554688 116.738281 252.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.3125 268.230469 C 238.3125 269.847656 235.882812 269.847656 235.882812 268.230469 C 235.882812 266.609375 238.3125 266.609375 238.3125 268.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.976562 171.253906 C 199.976562 172.875 197.546875 172.875 197.546875 171.253906 C 197.546875 169.636719 199.976562 169.636719 199.976562 171.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.972656 246.984375 C 317.972656 248.605469 315.542969 248.605469 315.542969 246.984375 C 315.542969 245.363281 317.972656 245.363281 317.972656 246.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.066406 297.835938 C 283.066406 299.457031 280.636719 299.457031 280.636719 297.835938 C 280.636719 296.21875 283.066406 296.21875 283.066406 297.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.214844 265.597656 C 289.214844 267.21875 286.785156 267.21875 286.785156 265.597656 C 286.785156 263.980469 289.214844 263.980469 289.214844 265.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.128906 70.910156 L 273.765625 73.746094 L 270.496094 73.746094 Z M 272.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.480469 295 C 189.480469 296.621094 187.050781 296.621094 187.050781 295 C 187.050781 293.378906 189.480469 293.378906 189.480469 295 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.828125 356.691406 C 136.828125 358.308594 134.398438 358.308594 134.398438 356.691406 C 134.398438 355.070312 136.828125 355.070312 136.828125 356.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.144531 384.621094 C 288.144531 386.242188 285.714844 386.242188 285.714844 384.621094 C 285.714844 383 288.144531 383 288.144531 384.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 182.871094 83.203125 C 182.871094 84.824219 180.441406 84.824219 180.441406 83.203125 C 180.441406 81.582031 182.871094 81.582031 182.871094 83.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.929688 282.816406 C 264.929688 284.4375 262.5 284.4375 262.5 282.816406 C 262.5 281.195312 264.929688 281.195312 264.929688 282.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.449219 252.726562 C 249.449219 254.347656 247.019531 254.347656 247.019531 252.726562 C 247.019531 251.105469 249.449219 251.105469 249.449219 252.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.238281 144.128906 C 166.238281 145.75 163.808594 145.75 163.808594 144.128906 C 163.808594 142.507812 166.238281 142.507812 166.238281 144.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.339844 266.714844 C 200.339844 268.332031 197.910156 268.332031 197.910156 266.714844 C 197.910156 265.09375 200.339844 265.09375 200.339844 266.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.082031 266.371094 C 280.082031 267.988281 277.652344 267.988281 277.652344 266.371094 C 277.652344 264.75 280.082031 264.75 280.082031 266.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.648438 360.285156 C 280.648438 361.90625 278.214844 361.90625 278.214844 360.285156 C 278.214844 358.664062 280.648438 358.664062 280.648438 360.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.582031 157.03125 C 218.582031 158.648438 216.152344 158.648438 216.152344 157.03125 C 216.152344 155.410156 218.582031 155.410156 218.582031 157.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.988281 121.582031 C 262.988281 123.203125 260.558594 123.203125 260.558594 121.582031 C 260.558594 119.964844 262.988281 119.964844 262.988281 121.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.269531 82.921875 C 126.269531 84.542969 123.839844 84.542969 123.839844 82.921875 C 123.839844 81.304688 126.269531 81.304688 126.269531 82.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.609375 241.757812 C 302.609375 243.378906 300.179688 243.378906 300.179688 241.757812 C 300.179688 240.136719 302.609375 240.136719 302.609375 241.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.878906 365.195312 C 303.878906 366.816406 301.449219 366.816406 301.449219 365.195312 C 301.449219 363.574219 303.878906 363.574219 303.878906 365.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.457031 244.019531 C 206.457031 245.640625 204.027344 245.640625 204.027344 244.019531 C 204.027344 242.402344 206.457031 242.402344 206.457031 244.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.160156 299.609375 C 293.160156 301.230469 290.730469 301.230469 290.730469 299.609375 C 290.730469 297.988281 293.160156 297.988281 293.160156 299.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.40625 168.292969 C 286.40625 169.914062 283.976562 169.914062 283.976562 168.292969 C 283.976562 166.671875 286.40625 166.671875 286.40625 168.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.53125 260.238281 C 281.53125 261.859375 279.097656 261.859375 279.097656 260.238281 C 279.097656 258.621094 281.53125 258.621094 281.53125 260.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.328125 275.503906 C 184.328125 277.121094 181.898438 277.121094 181.898438 275.503906 C 181.898438 273.882812 184.328125 273.882812 184.328125 275.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.390625 203.589844 C 277.390625 205.207031 274.960938 205.207031 274.960938 203.589844 C 274.960938 201.96875 277.390625 201.96875 277.390625 203.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.875 70.910156 L 278.511719 73.746094 L 275.242188 73.746094 Z M 276.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.082031 313.972656 C 233.082031 315.59375 230.652344 315.59375 230.652344 313.972656 C 230.652344 312.351562 233.082031 312.351562 233.082031 313.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.410156 239.800781 C 256.410156 241.421875 253.976562 241.421875 253.976562 239.800781 C 253.976562 238.183594 256.410156 238.183594 256.410156 239.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.859375 240.179688 C 160.859375 241.800781 158.429688 241.800781 158.429688 240.179688 C 158.429688 238.558594 160.859375 238.558594 160.859375 240.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.078125 158.238281 C 181.078125 159.859375 178.648438 159.859375 178.648438 158.238281 C 178.648438 156.617188 181.078125 156.617188 181.078125 158.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.265625 129.65625 C 144.265625 131.277344 141.835938 131.277344 141.835938 129.65625 C 141.835938 128.039062 144.265625 128.039062 144.265625 129.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.53125 418.691406 L 111.167969 415.855469 L 107.894531 415.855469 Z M 109.53125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.433594 282.390625 C 210.433594 284.007812 208.003906 284.007812 208.003906 282.390625 C 208.003906 280.769531 210.433594 280.769531 210.433594 282.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.601562 268.644531 C 251.601562 270.261719 249.171875 270.261719 249.171875 268.644531 C 249.171875 267.023438 251.601562 267.023438 251.601562 268.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.234375 148.09375 C 151.234375 149.714844 148.804688 149.714844 148.804688 148.09375 C 148.804688 146.476562 151.234375 146.476562 151.234375 148.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.695312 233.070312 C 139.695312 234.691406 137.265625 234.691406 137.265625 233.070312 C 137.265625 231.449219 139.695312 231.449219 139.695312 233.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.0625 325.960938 C 151.0625 327.582031 148.632812 327.582031 148.632812 325.960938 C 148.632812 324.339844 151.0625 324.339844 151.0625 325.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.757812 253.480469 C 192.757812 255.101562 190.328125 255.101562 190.328125 253.480469 C 190.328125 251.863281 192.757812 251.863281 192.757812 253.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.375 345.023438 C 268.375 346.644531 265.945312 346.644531 265.945312 345.023438 C 265.945312 343.402344 268.375 343.402344 268.375 345.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.992188 338.089844 C 163.992188 339.710938 161.5625 339.710938 161.5625 338.089844 C 161.5625 336.472656 163.992188 336.472656 163.992188 338.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.011719 273.457031 C 317.011719 275.078125 314.582031 275.078125 314.582031 273.457031 C 314.582031 271.839844 317.011719 271.839844 317.011719 273.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.390625 286.386719 C 298.390625 288.003906 295.960938 288.003906 295.960938 286.386719 C 295.960938 284.765625 298.390625 284.765625 298.390625 286.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.402344 237.675781 C 154.402344 239.296875 151.972656 239.296875 151.972656 237.675781 C 151.972656 236.054688 154.402344 236.054688 154.402344 237.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.824219 274.40625 C 292.824219 276.027344 290.394531 276.027344 290.394531 274.40625 C 290.394531 272.785156 292.824219 272.785156 292.824219 274.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.769531 267.78125 C 246.769531 269.402344 244.339844 269.402344 244.339844 267.78125 C 244.339844 266.160156 246.769531 266.160156 246.769531 267.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.152344 312.695312 C 194.152344 314.316406 191.722656 314.316406 191.722656 312.695312 C 191.722656 311.074219 194.152344 311.074219 194.152344 312.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.074219 282.601562 C 233.074219 284.222656 230.640625 284.222656 230.640625 282.601562 C 230.640625 280.980469 233.074219 280.980469 233.074219 282.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.308594 284.28125 C 231.308594 285.902344 228.878906 285.902344 228.878906 284.28125 C 228.878906 282.660156 231.308594 282.660156 231.308594 284.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.835938 334.207031 C 215.835938 335.828125 213.40625 335.828125 213.40625 334.207031 C 213.40625 332.585938 215.835938 332.585938 215.835938 334.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.089844 130.488281 C 271.089844 132.109375 268.660156 132.109375 268.660156 130.488281 C 268.660156 128.871094 271.089844 128.871094 271.089844 130.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.964844 297.96875 C 222.964844 299.589844 220.535156 299.589844 220.535156 297.96875 C 220.535156 296.347656 222.964844 296.347656 222.964844 297.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.632812 228.070312 C 335.632812 229.691406 333.203125 229.691406 333.203125 228.070312 C 333.203125 226.453125 335.632812 226.453125 335.632812 228.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.042969 266.320312 C 317.042969 267.941406 314.613281 267.941406 314.613281 266.320312 C 314.613281 264.699219 317.042969 264.699219 317.042969 266.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.195312 256.492188 C 277.195312 258.109375 274.765625 258.109375 274.765625 256.492188 C 274.765625 254.871094 277.195312 254.871094 277.195312 256.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.175781 281.699219 C 332.175781 283.320312 329.746094 283.320312 329.746094 281.699219 C 329.746094 280.078125 332.175781 280.078125 332.175781 281.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.390625 143.421875 C 303.390625 145.039062 300.960938 145.039062 300.960938 143.421875 C 300.960938 141.800781 303.390625 141.800781 303.390625 143.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.421875 308.136719 C 266.421875 309.753906 263.988281 309.753906 263.988281 308.136719 C 263.988281 306.515625 266.421875 306.515625 266.421875 308.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.121094 256.683594 C 211.121094 258.304688 208.691406 258.304688 208.691406 256.683594 C 208.691406 255.066406 211.121094 255.066406 211.121094 256.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.476562 267.828125 C 197.476562 269.449219 195.046875 269.449219 195.046875 267.828125 C 195.046875 266.207031 197.476562 266.207031 197.476562 267.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.484375 256.226562 C 260.484375 257.847656 258.054688 257.847656 258.054688 256.226562 C 258.054688 254.605469 260.484375 254.605469 260.484375 256.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.132812 70.910156 L 238.769531 73.746094 L 235.496094 73.746094 Z M 237.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.582031 262.542969 C 261.582031 264.160156 259.152344 264.160156 259.152344 262.542969 C 259.152344 260.921875 261.582031 260.921875 261.582031 262.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.410156 237.835938 C 328.410156 239.453125 325.980469 239.453125 325.980469 237.835938 C 325.980469 236.214844 328.410156 236.214844 328.410156 237.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.640625 231.460938 C 287.640625 233.078125 285.210938 233.078125 285.210938 231.460938 C 285.210938 229.839844 287.640625 229.839844 287.640625 231.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.816406 70.910156 L 265.453125 73.746094 L 262.179688 73.746094 Z M 263.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.804688 301.671875 C 194.804688 303.292969 192.375 303.292969 192.375 301.671875 C 192.375 300.054688 194.804688 300.054688 194.804688 301.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.714844 238.265625 C 269.714844 239.886719 267.285156 239.886719 267.285156 238.265625 C 267.285156 236.648438 269.714844 236.648438 269.714844 238.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.300781 225.570312 C 266.300781 227.191406 263.871094 227.191406 263.871094 225.570312 C 263.871094 223.949219 266.300781 223.949219 266.300781 225.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.949219 216.71875 C 277.949219 218.339844 275.519531 218.339844 275.519531 216.71875 C 275.519531 215.097656 277.949219 215.097656 277.949219 216.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.03125 290.796875 C 289.03125 292.417969 286.601562 292.417969 286.601562 290.796875 C 286.601562 289.175781 289.03125 289.175781 289.03125 290.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.191406 273.421875 C 270.191406 275.042969 267.761719 275.042969 267.761719 273.421875 C 267.761719 271.800781 270.191406 271.800781 270.191406 273.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 393.617188 70.910156 L 395.253906 73.746094 L 391.980469 73.746094 Z M 393.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.980469 205.757812 C 283.980469 207.378906 281.550781 207.378906 281.550781 205.757812 C 281.550781 204.136719 283.980469 204.136719 283.980469 205.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.074219 261.585938 C 287.074219 263.203125 284.644531 263.203125 284.644531 261.585938 C 284.644531 259.964844 287.074219 259.964844 287.074219 261.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.65625 269.65625 C 267.65625 271.277344 265.226562 271.277344 265.226562 269.65625 C 265.226562 268.039062 267.65625 268.039062 267.65625 269.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.203125 281.992188 C 281.203125 283.613281 278.773438 283.613281 278.773438 281.992188 C 278.773438 280.375 281.203125 280.375 281.203125 281.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.90625 371.664062 C 253.90625 373.28125 251.476562 373.28125 251.476562 371.664062 C 251.476562 370.042969 253.90625 370.042969 253.90625 371.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.125 373.261719 C 252.125 374.882812 249.691406 374.882812 249.691406 373.261719 C 249.691406 371.640625 252.125 371.640625 252.125 373.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.917969 399.359375 C 255.917969 400.980469 253.488281 400.980469 253.488281 399.359375 C 253.488281 397.738281 255.917969 397.738281 255.917969 399.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.019531 387.957031 C 167.019531 389.578125 164.585938 389.578125 164.585938 387.957031 C 164.585938 386.335938 167.019531 386.335938 167.019531 387.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.863281 418.691406 L 186.496094 415.855469 L 183.226562 415.855469 Z M 184.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.609375 366.734375 C 203.609375 368.351562 201.179688 368.351562 201.179688 366.734375 C 201.179688 365.113281 203.609375 365.113281 203.609375 366.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.773438 386.144531 C 171.773438 387.765625 169.34375 387.765625 169.34375 386.144531 C 169.34375 384.523438 171.773438 384.523438 171.773438 386.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.664062 304.917969 C 218.664062 306.539062 216.234375 306.539062 216.234375 304.917969 C 216.234375 303.300781 218.664062 303.300781 218.664062 304.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.300781 70.910156 L 128.9375 73.746094 L 125.664062 73.746094 Z M 127.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.824219 70.910156 L 164.460938 73.746094 L 161.1875 73.746094 Z M 162.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.320312 129.128906 C 189.320312 130.75 186.890625 130.75 186.890625 129.128906 C 186.890625 127.507812 189.320312 127.507812 189.320312 129.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.132812 240.285156 C 176.132812 241.90625 173.703125 241.90625 173.703125 240.285156 C 173.703125 238.664062 176.132812 238.664062 176.132812 240.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 418.160156 179.511719 C 418.160156 181.132812 415.730469 181.132812 415.730469 179.511719 C 415.730469 177.890625 418.160156 177.890625 418.160156 179.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 381.601562 70.910156 L 383.238281 73.746094 L 379.964844 73.746094 Z M 381.601562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.691406 228.234375 C 226.691406 229.851562 224.261719 229.851562 224.261719 228.234375 C 224.261719 226.613281 226.691406 226.613281 226.691406 228.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.398438 183.308594 C 250.398438 184.929688 247.96875 184.929688 247.96875 183.308594 C 247.96875 181.6875 250.398438 181.6875 250.398438 183.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.265625 418.691406 L 263.902344 415.855469 L 260.628906 415.855469 Z M 262.265625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.226562 158.816406 C 248.226562 160.4375 245.796875 160.4375 245.796875 158.816406 C 245.796875 157.195312 248.226562 157.195312 248.226562 158.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.601562 239.6875 C 129.601562 241.304688 127.171875 241.304688 127.171875 239.6875 C 127.171875 238.066406 129.601562 238.066406 129.601562 239.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.398438 231.171875 C 269.398438 232.789062 266.96875 232.789062 266.96875 231.171875 C 266.96875 229.550781 269.398438 229.550781 269.398438 231.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.457031 294.679688 C 321.457031 296.300781 319.027344 296.300781 319.027344 294.679688 C 319.027344 293.058594 321.457031 293.058594 321.457031 294.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 376.84375 313.703125 C 376.84375 315.324219 374.414062 315.324219 374.414062 313.703125 C 374.414062 312.082031 376.84375 312.082031 376.84375 313.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.632812 70.910156 L 140.269531 73.746094 L 136.996094 73.746094 Z M 138.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.21875 312.929688 C 123.21875 314.546875 120.789062 314.546875 120.789062 312.929688 C 120.789062 311.308594 123.21875 311.308594 123.21875 312.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.929688 418.691406 L 221.566406 415.855469 L 218.292969 415.855469 Z M 219.929688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.546875 105.828125 C 121.546875 107.449219 119.117188 107.449219 119.117188 105.828125 C 119.117188 104.207031 121.546875 104.207031 121.546875 105.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.148438 295.871094 C 290.148438 297.488281 287.71875 297.488281 287.71875 295.871094 C 287.71875 294.25 290.148438 294.25 290.148438 295.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.742188 291.511719 C 268.742188 293.132812 266.3125 293.132812 266.3125 291.511719 C 266.3125 289.890625 268.742188 289.890625 268.742188 291.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.75 418.691406 L 181.386719 415.855469 L 178.113281 415.855469 Z M 179.75 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.433594 142.5625 C 142.433594 144.183594 140.003906 144.183594 140.003906 142.5625 C 140.003906 140.945312 142.433594 140.945312 142.433594 142.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.988281 246.203125 C 263.988281 247.820312 261.558594 247.820312 261.558594 246.203125 C 261.558594 244.582031 263.988281 244.582031 263.988281 246.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.390625 315.617188 C 230.390625 317.234375 227.960938 317.234375 227.960938 315.617188 C 227.960938 313.996094 230.390625 313.996094 230.390625 315.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 319.785156 418.691406 L 321.421875 415.855469 L 318.152344 415.855469 Z M 319.785156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.226562 70.910156 L 148.863281 73.746094 L 145.589844 73.746094 Z M 147.226562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.726562 70.910156 L 171.363281 73.746094 L 168.089844 73.746094 Z M 169.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.179688 269.917969 C 229.179688 271.539062 226.75 271.539062 226.75 269.917969 C 226.75 268.296875 229.179688 268.296875 229.179688 269.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.800781 70.910156 L 267.433594 73.746094 L 264.164062 73.746094 Z M 265.800781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.714844 418.691406 L 212.351562 415.855469 L 209.078125 415.855469 Z M 210.714844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.582031 186.828125 C 128.582031 188.445312 126.152344 188.445312 126.152344 186.828125 C 126.152344 185.207031 128.582031 185.207031 128.582031 186.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.863281 165.242188 C 153.863281 166.863281 151.433594 166.863281 151.433594 165.242188 C 151.433594 163.621094 153.863281 163.621094 153.863281 165.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 411.300781 159.203125 C 411.300781 160.824219 408.871094 160.824219 408.871094 159.203125 C 408.871094 157.585938 411.300781 157.585938 411.300781 159.203125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.304688 70.910156 L 212.941406 73.746094 L 209.667969 73.746094 Z M 211.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.550781 253.78125 C 271.550781 255.398438 269.121094 255.398438 269.121094 253.78125 C 269.121094 252.160156 271.550781 252.160156 271.550781 253.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.085938 273.65625 C 246.085938 275.273438 243.65625 275.273438 243.65625 273.65625 C 243.65625 272.035156 246.085938 272.035156 246.085938 273.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.820312 252.472656 C 271.820312 254.089844 269.390625 254.089844 269.390625 252.472656 C 269.390625 250.851562 271.820312 250.851562 271.820312 252.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.058594 70.910156 L 139.691406 73.746094 L 136.421875 73.746094 Z M 138.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.753906 247.042969 C 300.753906 248.660156 298.324219 248.660156 298.324219 247.042969 C 298.324219 245.421875 300.753906 245.421875 300.753906 247.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.890625 418.691406 L 181.527344 415.855469 L 178.253906 415.855469 Z M 179.890625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.9375 372.722656 C 182.9375 374.34375 180.507812 374.34375 180.507812 372.722656 C 180.507812 371.101562 182.9375 371.101562 182.9375 372.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 398.265625 287.539062 C 398.265625 289.160156 395.835938 289.160156 395.835938 287.539062 C 395.835938 285.917969 398.265625 285.917969 398.265625 287.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.851562 256.402344 C 237.851562 258.023438 235.421875 258.023438 235.421875 256.402344 C 235.421875 254.78125 237.851562 254.78125 237.851562 256.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.925781 131.019531 C 265.925781 132.636719 263.496094 132.636719 263.496094 131.019531 C 263.496094 129.398438 265.925781 129.398438 265.925781 131.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.546875 186.765625 C 137.546875 188.386719 135.117188 188.386719 135.117188 186.765625 C 135.117188 185.148438 137.546875 185.148438 137.546875 186.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.074219 416.285156 C 125.074219 417.90625 122.644531 417.90625 122.644531 416.285156 C 122.644531 414.664062 125.074219 414.664062 125.074219 416.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.015625 364.035156 C 221.015625 365.65625 218.585938 365.65625 218.585938 364.035156 C 218.585938 362.414062 221.015625 362.414062 221.015625 364.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.472656 268.707031 C 227.472656 270.328125 225.042969 270.328125 225.042969 268.707031 C 225.042969 267.089844 227.472656 267.089844 227.472656 268.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.496094 301.957031 C 271.496094 303.574219 269.066406 303.574219 269.066406 301.957031 C 269.066406 300.335938 271.496094 300.335938 271.496094 301.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.175781 333.449219 C 263.175781 335.070312 260.746094 335.070312 260.746094 333.449219 C 260.746094 331.832031 263.175781 331.832031 263.175781 333.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.050781 377.457031 C 265.050781 379.074219 262.621094 379.074219 262.621094 377.457031 C 262.621094 375.835938 265.050781 375.835938 265.050781 377.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.679688 84.476562 C 261.679688 86.09375 259.25 86.09375 259.25 84.476562 C 259.25 82.855469 261.679688 82.855469 261.679688 84.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.355469 70.910156 L 146.992188 73.746094 L 143.71875 73.746094 Z M 145.355469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.691406 251.074219 C 236.691406 252.695312 234.257812 252.695312 234.257812 251.074219 C 234.257812 249.453125 236.691406 249.453125 236.691406 251.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.105469 274.398438 C 257.105469 276.019531 254.675781 276.019531 254.675781 274.398438 C 254.675781 272.777344 257.105469 272.777344 257.105469 274.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.917969 266.296875 C 293.917969 267.917969 291.488281 267.917969 291.488281 266.296875 C 291.488281 264.679688 293.917969 264.679688 293.917969 266.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.082031 313.566406 C 294.082031 315.1875 291.652344 315.1875 291.652344 313.566406 C 291.652344 311.945312 294.082031 311.945312 294.082031 313.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.59375 297.6875 C 204.59375 299.304688 202.164062 299.304688 202.164062 297.6875 C 202.164062 296.066406 204.59375 296.066406 204.59375 297.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.296875 251.871094 C 204.296875 253.492188 201.867188 253.492188 201.867188 251.871094 C 201.867188 250.253906 204.296875 250.253906 204.296875 251.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.039062 303.28125 C 293.039062 304.898438 290.609375 304.898438 290.609375 303.28125 C 290.609375 301.660156 293.039062 301.660156 293.039062 303.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.703125 180.605469 C 259.703125 182.226562 257.273438 182.226562 257.273438 180.605469 C 257.273438 178.984375 259.703125 178.984375 259.703125 180.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.726562 220.800781 C 287.726562 222.417969 285.296875 222.417969 285.296875 220.800781 C 285.296875 219.179688 287.726562 219.179688 287.726562 220.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.632812 143.226562 C 246.632812 144.847656 244.203125 144.847656 244.203125 143.226562 C 244.203125 141.609375 246.632812 141.609375 246.632812 143.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.703125 276.160156 C 276.703125 277.78125 274.273438 277.78125 274.273438 276.160156 C 274.273438 274.542969 276.703125 274.542969 276.703125 276.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.332031 312.824219 C 125.332031 314.445312 122.898438 314.445312 122.898438 312.824219 C 122.898438 311.203125 125.332031 311.203125 125.332031 312.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.714844 343.414062 C 317.714844 345.03125 315.285156 345.03125 315.285156 343.414062 C 315.285156 341.792969 317.714844 341.792969 317.714844 343.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.066406 179.304688 C 264.066406 180.925781 261.636719 180.925781 261.636719 179.304688 C 261.636719 177.683594 264.066406 177.683594 264.066406 179.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.496094 165.207031 C 111.496094 166.828125 109.066406 166.828125 109.066406 165.207031 C 109.066406 163.589844 111.496094 163.589844 111.496094 165.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.167969 205.0625 C 122.167969 206.683594 119.738281 206.683594 119.738281 205.0625 C 119.738281 203.441406 122.167969 203.441406 122.167969 205.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.804688 202.554688 C 137.804688 204.175781 135.375 204.175781 135.375 202.554688 C 135.375 200.9375 137.804688 200.9375 137.804688 202.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.78125 267.328125 C 285.78125 268.949219 283.347656 268.949219 283.347656 267.328125 C 283.347656 265.707031 285.78125 265.707031 285.78125 267.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.949219 275.191406 C 285.949219 276.8125 283.519531 276.8125 283.519531 275.191406 C 283.519531 273.570312 285.949219 273.570312 285.949219 275.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.441406 237.445312 C 257.441406 239.0625 255.011719 239.0625 255.011719 237.445312 C 255.011719 235.824219 257.441406 235.824219 257.441406 237.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.96875 214.199219 C 239.96875 215.820312 237.539062 215.820312 237.539062 214.199219 C 237.539062 212.578125 239.96875 212.578125 239.96875 214.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.402344 284.164062 C 195.402344 285.785156 192.972656 285.785156 192.972656 284.164062 C 192.972656 282.542969 195.402344 282.542969 195.402344 284.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.953125 200.894531 C 212.953125 202.515625 210.523438 202.515625 210.523438 200.894531 C 210.523438 199.273438 212.953125 199.273438 212.953125 200.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.285156 365.597656 C 327.285156 367.21875 324.855469 367.21875 324.855469 365.597656 C 324.855469 363.980469 327.285156 363.980469 327.285156 365.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.625 323.90625 C 199.625 325.527344 197.191406 325.527344 197.191406 323.90625 C 197.191406 322.285156 199.625 322.285156 199.625 323.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.21875 418.691406 L 228.855469 415.855469 L 225.582031 415.855469 Z M 227.21875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.082031 226.296875 C 299.082031 227.917969 296.652344 227.917969 296.652344 226.296875 C 296.652344 224.675781 299.082031 224.675781 299.082031 226.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.617188 297.398438 C 287.617188 299.015625 285.1875 299.015625 285.1875 297.398438 C 285.1875 295.777344 287.617188 295.777344 287.617188 297.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.710938 70.910156 L 139.347656 73.746094 L 136.074219 73.746094 Z M 137.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.746094 287.476562 C 243.746094 289.097656 241.316406 289.097656 241.316406 287.476562 C 241.316406 285.855469 243.746094 285.855469 243.746094 287.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.894531 253.070312 C 278.894531 254.6875 276.464844 254.6875 276.464844 253.070312 C 276.464844 251.449219 278.894531 251.449219 278.894531 253.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.828125 306.789062 C 185.828125 308.410156 183.398438 308.410156 183.398438 306.789062 C 183.398438 305.167969 185.828125 305.167969 185.828125 306.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.765625 310.539062 C 291.765625 312.15625 289.335938 312.15625 289.335938 310.539062 C 289.335938 308.917969 291.765625 308.917969 291.765625 310.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143 418.691406 L 144.636719 415.855469 L 141.367188 415.855469 Z M 143 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.828125 211.53125 C 174.828125 213.152344 172.398438 213.152344 172.398438 211.53125 C 172.398438 209.914062 174.828125 209.914062 174.828125 211.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.917969 299.511719 C 251.917969 301.132812 249.488281 301.132812 249.488281 299.511719 C 249.488281 297.894531 251.917969 297.894531 251.917969 299.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.085938 271.285156 C 228.085938 272.902344 225.65625 272.902344 225.65625 271.285156 C 225.65625 269.664062 228.085938 269.664062 228.085938 271.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.90625 245.472656 C 246.90625 247.089844 244.476562 247.089844 244.476562 245.472656 C 244.476562 243.851562 246.90625 243.851562 246.90625 245.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.476562 182.941406 C 242.476562 184.5625 240.046875 184.5625 240.046875 182.941406 C 240.046875 181.320312 242.476562 181.320312 242.476562 182.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.402344 145.558594 C 242.402344 147.179688 239.96875 147.179688 239.96875 145.558594 C 239.96875 143.941406 242.402344 143.941406 242.402344 145.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.546875 70.910156 L 221.179688 73.746094 L 217.910156 73.746094 Z M 219.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.902344 294.976562 C 205.902344 296.59375 203.472656 296.59375 203.472656 294.976562 C 203.472656 293.355469 205.902344 293.355469 205.902344 294.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.753906 235.199219 C 284.753906 236.820312 282.324219 236.820312 282.324219 235.199219 C 282.324219 233.582031 284.753906 233.582031 284.753906 235.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.664062 229.796875 C 324.664062 231.417969 322.234375 231.417969 322.234375 229.796875 C 322.234375 228.179688 324.664062 228.179688 324.664062 229.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.878906 280.851562 C 250.878906 282.472656 248.449219 282.472656 248.449219 280.851562 C 248.449219 279.234375 250.878906 279.234375 250.878906 280.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.429688 277.613281 C 255.429688 279.234375 253 279.234375 253 277.613281 C 253 275.992188 255.429688 275.992188 255.429688 277.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.378906 324.019531 C 219.378906 325.636719 216.949219 325.636719 216.949219 324.019531 C 216.949219 322.398438 219.378906 322.398438 219.378906 324.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.472656 307.449219 C 306.472656 309.070312 304.042969 309.070312 304.042969 307.449219 C 304.042969 305.828125 306.472656 305.828125 306.472656 307.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.449219 194.3125 C 293.449219 195.933594 291.019531 195.933594 291.019531 194.3125 C 291.019531 192.691406 293.449219 192.691406 293.449219 194.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.050781 261.785156 C 303.050781 263.40625 300.621094 263.40625 300.621094 261.785156 C 300.621094 260.164062 303.050781 260.164062 303.050781 261.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.4375 247.449219 C 277.4375 249.070312 275.007812 249.070312 275.007812 247.449219 C 275.007812 245.828125 277.4375 245.828125 277.4375 247.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.390625 246.015625 C 248.390625 247.632812 245.960938 247.632812 245.960938 246.015625 C 245.960938 244.394531 248.390625 244.394531 248.390625 246.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.285156 205.878906 C 254.285156 207.5 251.855469 207.5 251.855469 205.878906 C 251.855469 204.257812 254.285156 204.257812 254.285156 205.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.671875 236.734375 C 192.671875 238.355469 190.242188 238.355469 190.242188 236.734375 C 190.242188 235.113281 192.671875 235.113281 192.671875 236.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.160156 253.683594 C 281.160156 255.300781 278.730469 255.300781 278.730469 253.683594 C 278.730469 252.0625 281.160156 252.0625 281.160156 253.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.929688 70.910156 L 221.566406 73.746094 L 218.292969 73.746094 Z M 219.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.964844 192.703125 C 245.964844 194.320312 243.535156 194.320312 243.535156 192.703125 C 243.535156 191.082031 245.964844 191.082031 245.964844 192.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.890625 154.195312 C 227.890625 155.8125 225.460938 155.8125 225.460938 154.195312 C 225.460938 152.574219 227.890625 152.574219 227.890625 154.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.097656 251.277344 C 142.097656 252.894531 139.667969 252.894531 139.667969 251.277344 C 139.667969 249.65625 142.097656 249.65625 142.097656 251.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.234375 206.417969 C 281.234375 208.039062 278.800781 208.039062 278.800781 206.417969 C 278.800781 204.796875 281.234375 204.796875 281.234375 206.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.296875 264.003906 C 270.296875 265.625 267.867188 265.625 267.867188 264.003906 C 267.867188 262.386719 270.296875 262.386719 270.296875 264.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.289062 219.496094 C 220.289062 221.117188 217.859375 221.117188 217.859375 219.496094 C 217.859375 217.878906 220.289062 217.878906 220.289062 219.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.753906 70.910156 L 203.390625 73.746094 L 200.121094 73.746094 Z M 201.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.195312 264.15625 C 258.195312 265.777344 255.765625 265.777344 255.765625 264.15625 C 255.765625 262.535156 258.195312 262.535156 258.195312 264.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.730469 286.964844 C 264.730469 288.585938 262.300781 288.585938 262.300781 286.964844 C 262.300781 285.34375 264.730469 285.34375 264.730469 286.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.226562 251.847656 C 130.226562 253.464844 127.792969 253.464844 127.792969 251.847656 C 127.792969 250.226562 130.226562 250.226562 130.226562 251.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.746094 329.960938 C 213.746094 331.582031 211.3125 331.582031 211.3125 329.960938 C 211.3125 328.339844 213.746094 328.339844 213.746094 329.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.574219 76.121094 C 289.574219 77.742188 287.144531 77.742188 287.144531 76.121094 C 287.144531 74.503906 289.574219 74.503906 289.574219 76.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.324219 146.8125 C 311.324219 148.429688 308.894531 148.429688 308.894531 146.8125 C 308.894531 145.191406 311.324219 145.191406 311.324219 146.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.25 319.9375 C 204.25 321.554688 201.820312 321.554688 201.820312 319.9375 C 201.820312 318.316406 204.25 318.316406 204.25 319.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.476562 276.816406 C 145.476562 278.4375 143.046875 278.4375 143.046875 276.816406 C 143.046875 275.195312 145.476562 275.195312 145.476562 276.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.484375 195.300781 C 281.484375 196.921875 279.054688 196.921875 279.054688 195.300781 C 279.054688 193.679688 281.484375 193.679688 281.484375 195.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.277344 151.289062 C 184.277344 152.910156 181.847656 152.910156 181.847656 151.289062 C 181.847656 149.667969 184.277344 149.667969 184.277344 151.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.4375 284.449219 C 299.4375 286.070312 297.007812 286.070312 297.007812 284.449219 C 297.007812 282.828125 299.4375 282.828125 299.4375 284.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.371094 210.972656 C 227.371094 212.59375 224.941406 212.59375 224.941406 210.972656 C 224.941406 209.351562 227.371094 209.351562 227.371094 210.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.230469 212.78125 C 203.230469 214.402344 200.800781 214.402344 200.800781 212.78125 C 200.800781 211.164062 203.230469 211.164062 203.230469 212.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.035156 418.691406 L 120.671875 415.855469 L 117.398438 415.855469 Z M 119.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.683594 88.21875 C 245.683594 89.839844 243.253906 89.839844 243.253906 88.21875 C 243.253906 86.597656 245.683594 86.597656 245.683594 88.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.90625 214.835938 C 167.90625 216.457031 165.476562 216.457031 165.476562 214.835938 C 165.476562 213.214844 167.90625 213.214844 167.90625 214.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.824219 70.910156 L 148.460938 73.746094 L 145.1875 73.746094 Z M 146.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.183594 242.230469 C 248.183594 243.851562 245.753906 243.851562 245.753906 242.230469 C 245.753906 240.613281 248.183594 240.613281 248.183594 242.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.003906 88.753906 C 320.003906 90.375 317.574219 90.375 317.574219 88.753906 C 317.574219 87.136719 320.003906 87.136719 320.003906 88.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.902344 272.355469 C 299.902344 273.976562 297.472656 273.976562 297.472656 272.355469 C 297.472656 270.734375 299.902344 270.734375 299.902344 272.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.234375 70.910156 L 128.871094 73.746094 L 125.597656 73.746094 Z M 127.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.871094 249.847656 C 283.871094 251.46875 281.441406 251.46875 281.441406 249.847656 C 281.441406 248.226562 283.871094 248.226562 283.871094 249.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.507812 282.378906 C 328.507812 284 326.078125 284 326.078125 282.378906 C 326.078125 280.757812 328.507812 280.757812 328.507812 282.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.128906 280.832031 C 233.128906 282.453125 230.699219 282.453125 230.699219 280.832031 C 230.699219 279.214844 233.128906 279.214844 233.128906 280.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.167969 237.871094 C 201.167969 239.488281 198.734375 239.488281 198.734375 237.871094 C 198.734375 236.25 201.167969 236.25 201.167969 237.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.546875 156.816406 C 240.546875 158.4375 238.117188 158.4375 238.117188 156.816406 C 238.117188 155.199219 240.546875 155.199219 240.546875 156.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.792969 288.027344 C 196.792969 289.648438 194.363281 289.648438 194.363281 288.027344 C 194.363281 286.40625 196.792969 286.40625 196.792969 288.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.296875 369.59375 C 335.296875 371.214844 332.867188 371.214844 332.867188 369.59375 C 332.867188 367.972656 335.296875 367.972656 335.296875 369.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.632812 312.636719 C 277.632812 314.257812 275.203125 314.257812 275.203125 312.636719 C 275.203125 311.019531 277.632812 311.019531 277.632812 312.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.4375 345.84375 C 214.4375 347.464844 212.007812 347.464844 212.007812 345.84375 C 212.007812 344.222656 214.4375 344.222656 214.4375 345.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.085938 314.101562 C 189.085938 315.722656 186.65625 315.722656 186.65625 314.101562 C 186.65625 312.480469 189.085938 312.480469 189.085938 314.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.722656 184.59375 C 204.722656 186.214844 202.289062 186.214844 202.289062 184.59375 C 202.289062 182.972656 204.722656 182.972656 204.722656 184.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.683594 252.34375 C 159.683594 253.964844 157.253906 253.964844 157.253906 252.34375 C 157.253906 250.726562 159.683594 250.726562 159.683594 252.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.1875 210.636719 C 280.1875 212.257812 277.753906 212.257812 277.753906 210.636719 C 277.753906 209.015625 280.1875 209.015625 280.1875 210.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.109375 254.140625 C 268.109375 255.757812 265.679688 255.757812 265.679688 254.140625 C 265.679688 252.519531 268.109375 252.519531 268.109375 254.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.703125 152.898438 C 233.703125 154.519531 231.273438 154.519531 231.273438 152.898438 C 231.273438 151.28125 233.703125 151.28125 233.703125 152.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.707031 175.039062 C 232.707031 176.660156 230.277344 176.660156 230.277344 175.039062 C 230.277344 173.421875 232.707031 173.421875 232.707031 175.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.515625 353.554688 C 296.515625 355.175781 294.085938 355.175781 294.085938 353.554688 C 294.085938 351.933594 296.515625 351.933594 296.515625 353.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.617188 418.691406 L 190.253906 415.855469 L 186.980469 415.855469 Z M 188.617188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.222656 211.070312 C 121.222656 212.6875 118.792969 212.6875 118.792969 211.070312 C 118.792969 209.449219 121.222656 209.449219 121.222656 211.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.972656 190.632812 C 278.972656 192.253906 276.539062 192.253906 276.539062 190.632812 C 276.539062 189.015625 278.972656 189.015625 278.972656 190.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.589844 245.34375 C 309.589844 246.964844 307.160156 246.964844 307.160156 245.34375 C 307.160156 243.726562 309.589844 243.726562 309.589844 245.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.253906 187.53125 C 226.253906 189.152344 223.824219 189.152344 223.824219 187.53125 C 223.824219 185.914062 226.253906 185.914062 226.253906 187.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.398438 203.394531 C 262.398438 205.015625 259.96875 205.015625 259.96875 203.394531 C 259.96875 201.773438 262.398438 201.773438 262.398438 203.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.882812 167.953125 C 235.882812 169.574219 233.453125 169.574219 233.453125 167.953125 C 233.453125 166.335938 235.882812 166.335938 235.882812 167.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.488281 189.222656 C 282.488281 190.84375 280.058594 190.84375 280.058594 189.222656 C 280.058594 187.601562 282.488281 187.601562 282.488281 189.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.890625 175.828125 C 160.890625 177.449219 158.460938 177.449219 158.460938 175.828125 C 158.460938 174.207031 160.890625 174.207031 160.890625 175.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.714844 345.042969 C 258.714844 346.664062 256.285156 346.664062 256.285156 345.042969 C 256.285156 343.421875 258.714844 343.421875 258.714844 345.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.320312 280.078125 C 255.320312 281.699219 252.890625 281.699219 252.890625 280.078125 C 252.890625 278.460938 255.320312 278.460938 255.320312 280.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.960938 70.910156 L 151.597656 73.746094 L 148.324219 73.746094 Z M 149.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.898438 70.910156 L 179.535156 73.746094 L 176.261719 73.746094 Z M 177.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.636719 267.03125 C 251.636719 268.652344 249.207031 268.652344 249.207031 267.03125 C 249.207031 265.410156 251.636719 265.410156 251.636719 267.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.03125 236.757812 C 131.03125 238.375 128.601562 238.375 128.601562 236.757812 C 128.601562 235.136719 131.03125 235.136719 131.03125 236.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.507812 280.800781 C 269.507812 282.421875 267.078125 282.421875 267.078125 280.800781 C 267.078125 279.179688 269.507812 279.179688 269.507812 280.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.386719 255.097656 C 261.386719 256.71875 258.957031 256.71875 258.957031 255.097656 C 258.957031 253.480469 261.386719 253.480469 261.386719 255.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.109375 227.625 C 216.109375 229.242188 213.679688 229.242188 213.679688 227.625 C 213.679688 226.003906 216.109375 226.003906 216.109375 227.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.085938 392.003906 C 279.085938 393.625 276.652344 393.625 276.652344 392.003906 C 276.652344 390.382812 279.085938 390.382812 279.085938 392.003906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.589844 70.910156 L 292.226562 73.746094 L 288.953125 73.746094 Z M 290.589844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.0625 70.910156 L 234.699219 73.746094 L 231.425781 73.746094 Z M 233.0625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.929688 172.304688 C 212.929688 173.925781 210.5 173.925781 210.5 172.304688 C 210.5 170.6875 212.929688 170.6875 212.929688 172.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.089844 70.910156 L 131.726562 73.746094 L 128.453125 73.746094 Z M 130.089844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.570312 70.910156 L 144.207031 73.746094 L 140.933594 73.746094 Z M 142.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.257812 296.363281 C 124.257812 297.984375 121.828125 297.984375 121.828125 296.363281 C 121.828125 294.742188 124.257812 294.742188 124.257812 296.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.929688 254.878906 C 147.929688 256.5 145.5 256.5 145.5 254.878906 C 145.5 253.257812 147.929688 253.257812 147.929688 254.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.425781 196.492188 C 202.425781 198.113281 199.992188 198.113281 199.992188 196.492188 C 199.992188 194.875 202.425781 194.875 202.425781 196.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.949219 295.472656 C 125.949219 297.09375 123.519531 297.09375 123.519531 295.472656 C 123.519531 293.851562 125.949219 293.851562 125.949219 295.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.210938 70.910156 L 194.847656 73.746094 L 191.574219 73.746094 Z M 193.210938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.351562 291.402344 C 216.351562 293.023438 213.921875 293.023438 213.921875 291.402344 C 213.921875 289.785156 216.351562 289.785156 216.351562 291.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.308594 212.589844 C 252.308594 214.210938 249.878906 214.210938 249.878906 212.589844 C 249.878906 210.96875 252.308594 210.96875 252.308594 212.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.78125 175.019531 C 144.78125 176.640625 142.351562 176.640625 142.351562 175.019531 C 142.351562 173.398438 144.78125 173.398438 144.78125 175.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.398438 356.8125 C 260.398438 358.429688 257.96875 358.429688 257.96875 356.8125 C 257.96875 355.191406 260.398438 355.191406 260.398438 356.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.296875 326.554688 C 232.296875 328.175781 229.867188 328.175781 229.867188 326.554688 C 229.867188 324.933594 232.296875 324.933594 232.296875 326.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.371094 185.976562 C 313.371094 187.597656 310.941406 187.597656 310.941406 185.976562 C 310.941406 184.355469 313.371094 184.355469 313.371094 185.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.992188 289.582031 C 235.992188 291.203125 233.5625 291.203125 233.5625 289.582031 C 233.5625 287.960938 235.992188 287.960938 235.992188 289.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.703125 256.652344 C 304.703125 258.273438 302.273438 258.273438 302.273438 256.652344 C 302.273438 255.035156 304.703125 255.035156 304.703125 256.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.511719 400.445312 C 159.511719 402.066406 157.082031 402.066406 157.082031 400.445312 C 157.082031 398.828125 159.511719 398.828125 159.511719 400.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.136719 70.910156 L 277.769531 73.746094 L 274.5 73.746094 Z M 276.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.757812 228.910156 C 295.757812 230.527344 293.328125 230.527344 293.328125 228.910156 C 293.328125 227.289062 295.757812 227.289062 295.757812 228.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.792969 258.78125 C 261.792969 260.402344 259.363281 260.402344 259.363281 258.78125 C 259.363281 257.160156 261.792969 257.160156 261.792969 258.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.445312 282.898438 C 199.445312 284.515625 197.015625 284.515625 197.015625 282.898438 C 197.015625 281.277344 199.445312 281.277344 199.445312 282.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.925781 139.199219 C 250.925781 140.820312 248.496094 140.820312 248.496094 139.199219 C 248.496094 137.582031 250.925781 137.582031 250.925781 139.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.304688 158.246094 C 177.304688 159.863281 174.875 159.863281 174.875 158.246094 C 174.875 156.625 177.304688 156.625 177.304688 158.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.402344 172.394531 C 128.402344 174.015625 125.972656 174.015625 125.972656 172.394531 C 125.972656 170.777344 128.402344 170.777344 128.402344 172.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.683594 261.902344 C 227.683594 263.523438 225.253906 263.523438 225.253906 261.902344 C 225.253906 260.28125 227.683594 260.28125 227.683594 261.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.585938 295.476562 C 190.585938 297.09375 188.15625 297.09375 188.15625 295.476562 C 188.15625 293.855469 190.585938 293.855469 190.585938 295.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.902344 258.875 C 277.902344 260.492188 275.472656 260.492188 275.472656 258.875 C 275.472656 257.253906 277.902344 257.253906 277.902344 258.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.835938 313.183594 C 272.835938 314.804688 270.40625 314.804688 270.40625 313.183594 C 270.40625 311.5625 272.835938 311.5625 272.835938 313.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.835938 177.417969 C 261.835938 179.039062 259.40625 179.039062 259.40625 177.417969 C 259.40625 175.796875 261.835938 175.796875 261.835938 177.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.976562 70.910156 L 287.613281 73.746094 L 284.34375 73.746094 Z M 285.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.308594 262.609375 C 289.308594 264.230469 286.878906 264.230469 286.878906 262.609375 C 286.878906 260.988281 289.308594 260.988281 289.308594 262.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.835938 272.449219 C 218.835938 274.070312 216.40625 274.070312 216.40625 272.449219 C 216.40625 270.828125 218.835938 270.828125 218.835938 272.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.671875 190.804688 C 242.671875 192.425781 240.242188 192.425781 240.242188 190.804688 C 240.242188 189.183594 242.671875 189.183594 242.671875 190.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.695312 70.910156 L 166.332031 73.746094 L 163.058594 73.746094 Z M 164.695312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.179688 70.910156 L 153.816406 73.746094 L 150.542969 73.746094 Z M 152.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.984375 278.503906 C 198.984375 280.121094 196.554688 280.121094 196.554688 278.503906 C 196.554688 276.882812 198.984375 276.882812 198.984375 278.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.105469 70.910156 L 244.742188 73.746094 L 241.46875 73.746094 Z M 243.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.804688 270.871094 C 233.804688 272.492188 231.375 272.492188 231.375 270.871094 C 231.375 269.25 233.804688 269.25 233.804688 270.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.046875 254.796875 C 257.046875 256.417969 254.617188 256.417969 254.617188 254.796875 C 254.617188 253.175781 257.046875 253.175781 257.046875 254.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.121094 236.8125 C 237.121094 238.429688 234.691406 238.429688 234.691406 236.8125 C 234.691406 235.191406 237.121094 235.191406 237.121094 236.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.730469 264.332031 C 211.730469 265.953125 209.300781 265.953125 209.300781 264.332031 C 209.300781 262.710938 211.730469 262.710938 211.730469 264.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.652344 257.695312 C 258.652344 259.316406 256.222656 259.316406 256.222656 257.695312 C 256.222656 256.074219 258.652344 256.074219 258.652344 257.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.746094 240.328125 C 214.746094 241.949219 212.3125 241.949219 212.3125 240.328125 C 212.3125 238.707031 214.746094 238.707031 214.746094 240.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.671875 212.46875 C 209.671875 214.089844 207.242188 214.089844 207.242188 212.46875 C 207.242188 210.847656 209.671875 210.847656 209.671875 212.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.929688 211.214844 C 184.929688 212.835938 182.5 212.835938 182.5 211.214844 C 182.5 209.597656 184.929688 209.597656 184.929688 211.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.828125 294.855469 C 193.828125 296.476562 191.398438 296.476562 191.398438 294.855469 C 191.398438 293.234375 193.828125 293.234375 193.828125 294.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.300781 70.910156 L 236.9375 73.746094 L 233.664062 73.746094 Z M 235.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.417969 70.910156 L 192.054688 73.746094 L 188.78125 73.746094 Z M 190.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.894531 416.265625 C 125.894531 417.886719 123.464844 417.886719 123.464844 416.265625 C 123.464844 414.644531 125.894531 414.644531 125.894531 416.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.5625 241 C 239.5625 242.617188 237.132812 242.617188 237.132812 241 C 237.132812 239.378906 239.5625 239.378906 239.5625 241 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.769531 253.84375 C 317.769531 255.464844 315.335938 255.464844 315.335938 253.84375 C 315.335938 252.226562 317.769531 252.226562 317.769531 253.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.070312 251.875 C 306.070312 253.496094 303.640625 253.496094 303.640625 251.875 C 303.640625 250.253906 306.070312 250.253906 306.070312 251.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.554688 318.566406 C 160.554688 320.1875 158.125 320.1875 158.125 318.566406 C 158.125 316.945312 160.554688 316.945312 160.554688 318.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.484375 272.769531 C 258.484375 274.390625 256.054688 274.390625 256.054688 272.769531 C 256.054688 271.152344 258.484375 271.152344 258.484375 272.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.800781 70.910156 L 267.4375 73.746094 L 264.164062 73.746094 Z M 265.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.949219 122.519531 C 117.949219 124.140625 115.519531 124.140625 115.519531 122.519531 C 115.519531 120.902344 117.949219 120.902344 117.949219 122.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.53125 70.910156 L 209.167969 73.746094 L 205.894531 73.746094 Z M 207.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.242188 321.011719 C 300.242188 322.632812 297.808594 322.632812 297.808594 321.011719 C 297.808594 319.390625 300.242188 319.390625 300.242188 321.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.222656 261.042969 C 260.222656 262.664062 257.792969 262.664062 257.792969 261.042969 C 257.792969 259.421875 260.222656 259.421875 260.222656 261.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.199219 255.363281 C 301.199219 256.984375 298.769531 256.984375 298.769531 255.363281 C 298.769531 253.742188 301.199219 253.742188 301.199219 255.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.40625 229.167969 C 279.40625 230.789062 276.976562 230.789062 276.976562 229.167969 C 276.976562 227.546875 279.40625 227.546875 279.40625 229.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.699219 340.714844 C 170.699219 342.335938 168.269531 342.335938 168.269531 340.714844 C 168.269531 339.097656 170.699219 339.097656 170.699219 340.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.175781 418.691406 L 220.8125 415.855469 L 217.539062 415.855469 Z M 219.175781 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.511719 418.691406 L 219.144531 415.855469 L 215.875 415.855469 Z M 217.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.863281 199.992188 C 252.863281 201.613281 250.433594 201.613281 250.433594 199.992188 C 250.433594 198.371094 252.863281 198.371094 252.863281 199.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.488281 276.015625 C 283.488281 277.636719 281.058594 277.636719 281.058594 276.015625 C 281.058594 274.398438 283.488281 274.398438 283.488281 276.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.003906 161.5 C 215.003906 163.121094 212.574219 163.121094 212.574219 161.5 C 212.574219 159.878906 215.003906 159.878906 215.003906 161.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.675781 154.441406 C 203.675781 156.0625 201.246094 156.0625 201.246094 154.441406 C 201.246094 152.820312 203.675781 152.820312 203.675781 154.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.65625 159.484375 C 164.65625 161.101562 162.226562 161.101562 162.226562 159.484375 C 162.226562 157.863281 164.65625 157.863281 164.65625 159.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.460938 203.046875 C 123.460938 204.664062 121.03125 204.664062 121.03125 203.046875 C 121.03125 201.425781 123.460938 201.425781 123.460938 203.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.839844 322.117188 C 260.839844 323.738281 258.410156 323.738281 258.410156 322.117188 C 258.410156 320.496094 260.839844 320.496094 260.839844 322.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.664062 275.4375 C 228.664062 277.058594 226.234375 277.058594 226.234375 275.4375 C 226.234375 273.816406 228.664062 273.816406 228.664062 275.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.042969 260.933594 C 265.042969 262.550781 262.609375 262.550781 262.609375 260.933594 C 262.609375 259.3125 265.042969 259.3125 265.042969 260.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.828125 282.152344 C 248.828125 283.773438 246.398438 283.773438 246.398438 282.152344 C 246.398438 280.535156 248.828125 280.535156 248.828125 282.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.433594 140.921875 C 229.433594 142.542969 227 142.542969 227 140.921875 C 227 139.300781 229.433594 139.300781 229.433594 140.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.746094 129.160156 C 188.746094 130.78125 186.316406 130.78125 186.316406 129.160156 C 186.316406 127.539062 188.746094 127.539062 188.746094 129.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.46875 310.578125 C 279.46875 312.199219 277.039062 312.199219 277.039062 310.578125 C 277.039062 308.960938 279.46875 308.960938 279.46875 310.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.414062 306.171875 C 263.414062 307.792969 260.984375 307.792969 260.984375 306.171875 C 260.984375 304.554688 263.414062 304.554688 263.414062 306.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.542969 329.667969 C 239.542969 331.285156 237.113281 331.285156 237.113281 329.667969 C 237.113281 328.046875 239.542969 328.046875 239.542969 329.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.035156 246.992188 C 195.035156 248.609375 192.605469 248.609375 192.605469 246.992188 C 192.605469 245.371094 195.035156 245.371094 195.035156 246.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.515625 70.910156 L 249.152344 73.746094 L 245.878906 73.746094 Z M 247.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.804688 179.578125 C 244.804688 181.199219 242.375 181.199219 242.375 179.578125 C 242.375 177.960938 244.804688 177.960938 244.804688 179.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.292969 418.691406 L 113.929688 415.855469 L 110.660156 415.855469 Z M 112.292969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.261719 207.1875 C 255.261719 208.804688 252.828125 208.804688 252.828125 207.1875 C 252.828125 205.566406 255.261719 205.566406 255.261719 207.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.632812 250.773438 C 271.632812 252.394531 269.203125 252.394531 269.203125 250.773438 C 269.203125 249.152344 271.632812 249.152344 271.632812 250.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.785156 294.773438 C 280.785156 296.394531 278.355469 296.394531 278.355469 294.773438 C 278.355469 293.152344 280.785156 293.152344 280.785156 294.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.316406 300.582031 C 256.316406 302.203125 253.886719 302.203125 253.886719 300.582031 C 253.886719 298.960938 256.316406 298.960938 256.316406 300.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.445312 285.730469 C 260.445312 287.347656 258.015625 287.347656 258.015625 285.730469 C 258.015625 284.109375 260.445312 284.109375 260.445312 285.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.722656 304.980469 C 123.722656 306.601562 121.289062 306.601562 121.289062 304.980469 C 121.289062 303.363281 123.722656 303.363281 123.722656 304.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.75 344.84375 C 211.75 346.464844 209.320312 346.464844 209.320312 344.84375 C 209.320312 343.222656 211.75 343.222656 211.75 344.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.097656 318.898438 C 271.097656 320.519531 268.667969 320.519531 268.667969 318.898438 C 268.667969 317.277344 271.097656 317.277344 271.097656 318.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.863281 295.328125 C 282.863281 296.949219 280.433594 296.949219 280.433594 295.328125 C 280.433594 293.710938 282.863281 293.710938 282.863281 295.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.164062 309.234375 C 280.164062 310.851562 277.734375 310.851562 277.734375 309.234375 C 277.734375 307.613281 280.164062 307.613281 280.164062 309.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.953125 291.222656 C 266.953125 292.839844 264.523438 292.839844 264.523438 291.222656 C 264.523438 289.601562 266.953125 289.601562 266.953125 291.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.707031 233.878906 C 256.707031 235.496094 254.277344 235.496094 254.277344 233.878906 C 254.277344 232.257812 256.707031 232.257812 256.707031 233.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.152344 231.488281 C 241.152344 233.105469 238.71875 233.105469 238.71875 231.488281 C 238.71875 229.867188 241.152344 229.867188 241.152344 231.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.707031 242.222656 C 270.707031 243.839844 268.277344 243.839844 268.277344 242.222656 C 268.277344 240.601562 270.707031 240.601562 270.707031 242.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.695312 245.578125 C 288.695312 247.199219 286.265625 247.199219 286.265625 245.578125 C 286.265625 243.957031 288.695312 243.957031 288.695312 245.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.917969 304.066406 C 161.917969 305.683594 159.488281 305.683594 159.488281 304.066406 C 159.488281 302.445312 161.917969 302.445312 161.917969 304.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.785156 237.871094 C 239.785156 239.492188 237.355469 239.492188 237.355469 237.871094 C 237.355469 236.25 239.785156 236.25 239.785156 237.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.921875 338.550781 C 293.921875 340.167969 291.492188 340.167969 291.492188 338.550781 C 291.492188 336.929688 293.921875 336.929688 293.921875 338.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.878906 353.398438 C 276.878906 355.019531 274.449219 355.019531 274.449219 353.398438 C 274.449219 351.777344 276.878906 351.777344 276.878906 353.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.71875 307.40625 C 306.71875 309.023438 304.289062 309.023438 304.289062 307.40625 C 304.289062 305.785156 306.71875 305.785156 306.71875 307.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.636719 204.921875 C 220.636719 206.539062 218.207031 206.539062 218.207031 204.921875 C 218.207031 203.300781 220.636719 203.300781 220.636719 204.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.222656 250.417969 C 304.222656 252.039062 301.792969 252.039062 301.792969 250.417969 C 301.792969 248.800781 304.222656 248.800781 304.222656 250.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.105469 264.933594 C 263.105469 266.554688 260.675781 266.554688 260.675781 264.933594 C 260.675781 263.316406 263.105469 263.316406 263.105469 264.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.199219 246.410156 C 279.199219 248.027344 276.769531 248.027344 276.769531 246.410156 C 276.769531 244.789062 279.199219 244.789062 279.199219 246.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.035156 224.691406 C 280.035156 226.308594 277.605469 226.308594 277.605469 224.691406 C 277.605469 223.070312 280.035156 223.070312 280.035156 224.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.984375 228.222656 C 190.984375 229.84375 188.554688 229.84375 188.554688 228.222656 C 188.554688 226.601562 190.984375 226.601562 190.984375 228.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.523438 206.589844 C 188.523438 208.210938 186.09375 208.210938 186.09375 206.589844 C 186.09375 204.96875 188.523438 204.96875 188.523438 206.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.378906 213.726562 C 186.378906 215.347656 183.949219 215.347656 183.949219 213.726562 C 183.949219 212.109375 186.378906 212.109375 186.378906 213.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.195312 237.691406 C 140.195312 239.308594 137.765625 239.308594 137.765625 237.691406 C 137.765625 236.070312 140.195312 236.070312 140.195312 237.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.761719 245.957031 C 130.761719 247.578125 128.332031 247.578125 128.332031 245.957031 C 128.332031 244.335938 130.761719 244.335938 130.761719 245.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.445312 186.339844 C 229.445312 187.960938 227.011719 187.960938 227.011719 186.339844 C 227.011719 184.71875 229.445312 184.71875 229.445312 186.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.070312 225.332031 C 193.070312 226.949219 190.640625 226.949219 190.640625 225.332031 C 190.640625 223.710938 193.070312 223.710938 193.070312 225.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.980469 260.542969 C 154.980469 262.164062 152.550781 262.164062 152.550781 260.542969 C 152.550781 258.921875 154.980469 258.921875 154.980469 260.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.507812 70.910156 L 184.144531 73.746094 L 180.871094 73.746094 Z M 182.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.5 135.273438 C 171.5 136.894531 169.070312 136.894531 169.070312 135.273438 C 169.070312 133.652344 171.5 133.652344 171.5 135.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.945312 70.910156 L 336.582031 73.746094 L 333.3125 73.746094 Z M 334.945312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.644531 144.886719 C 265.644531 146.507812 263.210938 146.507812 263.210938 144.886719 C 263.210938 143.265625 265.644531 143.265625 265.644531 144.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.289062 204.078125 C 201.289062 205.699219 198.859375 205.699219 198.859375 204.078125 C 198.859375 202.457031 201.289062 202.457031 201.289062 204.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.808594 245.117188 C 274.808594 246.734375 272.375 246.734375 272.375 245.117188 C 272.375 243.496094 274.808594 243.496094 274.808594 245.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.074219 70.910156 L 236.710938 73.746094 L 233.4375 73.746094 Z M 235.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.1875 70.910156 L 141.824219 73.746094 L 138.550781 73.746094 Z M 140.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.234375 228.179688 C 162.234375 229.800781 159.804688 229.800781 159.804688 228.179688 C 159.804688 226.558594 162.234375 226.558594 162.234375 228.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.453125 270.632812 C 246.453125 272.253906 244.023438 272.253906 244.023438 270.632812 C 244.023438 269.015625 246.453125 269.015625 246.453125 270.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.824219 70.910156 L 243.460938 73.746094 L 240.1875 73.746094 Z M 241.824219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.054688 70.910156 L 257.691406 73.746094 L 254.417969 73.746094 Z M 256.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.074219 123.921875 C 227.074219 125.539062 224.644531 125.539062 224.644531 123.921875 C 224.644531 122.300781 227.074219 122.300781 227.074219 123.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.460938 106.113281 C 171.460938 107.734375 169.03125 107.734375 169.03125 106.113281 C 169.03125 104.492188 171.460938 104.492188 171.460938 106.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.949219 70.910156 L 152.585938 73.746094 L 149.3125 73.746094 Z M 150.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.597656 173.027344 C 239.597656 174.648438 237.167969 174.648438 237.167969 173.027344 C 237.167969 171.410156 239.597656 171.410156 239.597656 173.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.957031 206.550781 C 270.957031 208.167969 268.527344 208.167969 268.527344 206.550781 C 268.527344 204.929688 270.957031 204.929688 270.957031 206.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.683594 227.613281 C 139.683594 229.230469 137.25 229.230469 137.25 227.613281 C 137.25 225.992188 139.683594 225.992188 139.683594 227.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.710938 272.359375 C 254.710938 273.976562 252.28125 273.976562 252.28125 272.359375 C 252.28125 270.738281 254.710938 270.738281 254.710938 272.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.671875 70.910156 L 178.308594 73.746094 L 175.035156 73.746094 Z M 176.671875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.691406 177.6875 C 251.691406 179.308594 249.261719 179.308594 249.261719 177.6875 C 249.261719 176.066406 251.691406 176.066406 251.691406 177.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.171875 184.515625 C 259.171875 186.136719 256.738281 186.136719 256.738281 184.515625 C 256.738281 182.894531 259.171875 182.894531 259.171875 184.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.363281 70.910156 L 284 73.746094 L 280.726562 73.746094 Z M 282.363281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.839844 70.910156 L 260.476562 73.746094 L 257.207031 73.746094 Z M 258.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.609375 209.628906 C 239.609375 211.246094 237.179688 211.246094 237.179688 209.628906 C 237.179688 208.007812 239.609375 208.007812 239.609375 209.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.574219 105.847656 C 176.574219 107.46875 174.144531 107.46875 174.144531 105.847656 C 174.144531 104.226562 176.574219 104.226562 176.574219 105.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.382812 286.554688 C 244.382812 288.175781 241.953125 288.175781 241.953125 286.554688 C 241.953125 284.933594 244.382812 284.933594 244.382812 286.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.667969 187.824219 C 232.667969 189.445312 230.238281 189.445312 230.238281 187.824219 C 230.238281 186.203125 232.667969 186.203125 232.667969 187.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.582031 154.324219 C 272.582031 155.941406 270.152344 155.941406 270.152344 154.324219 C 270.152344 152.703125 272.582031 152.703125 272.582031 154.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.582031 245.6875 C 299.582031 247.308594 297.152344 247.308594 297.152344 245.6875 C 297.152344 244.070312 299.582031 244.070312 299.582031 245.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.589844 186.835938 C 322.589844 188.457031 320.160156 188.457031 320.160156 186.835938 C 320.160156 185.21875 322.589844 185.21875 322.589844 186.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.410156 146.402344 C 308.410156 148.023438 305.980469 148.023438 305.980469 146.402344 C 305.980469 144.78125 308.410156 144.78125 308.410156 146.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.46875 70.910156 L 246.105469 73.746094 L 242.832031 73.746094 Z M 244.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.429688 290.148438 C 274.429688 291.765625 272 291.765625 272 290.148438 C 272 288.527344 274.429688 288.527344 274.429688 290.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.464844 211.355469 C 330.464844 212.976562 328.035156 212.976562 328.035156 211.355469 C 328.035156 209.738281 330.464844 209.738281 330.464844 211.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.882812 189.414062 C 286.882812 191.03125 284.453125 191.03125 284.453125 189.414062 C 284.453125 187.792969 286.882812 187.792969 286.882812 189.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.9375 129.042969 C 144.9375 130.664062 142.507812 130.664062 142.507812 129.042969 C 142.507812 127.425781 144.9375 127.425781 144.9375 129.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.742188 191.4375 C 219.742188 193.058594 217.3125 193.058594 217.3125 191.4375 C 217.3125 189.820312 219.742188 189.820312 219.742188 191.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.703125 254.570312 C 295.703125 256.1875 293.273438 256.1875 293.273438 254.570312 C 293.273438 252.949219 295.703125 252.949219 295.703125 254.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.316406 418.691406 L 277.953125 415.855469 L 274.679688 415.855469 Z M 276.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.007812 195.863281 C 282.007812 197.480469 279.578125 197.480469 279.578125 195.863281 C 279.578125 194.242188 282.007812 194.242188 282.007812 195.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.484375 157.527344 C 270.484375 159.144531 268.054688 159.144531 268.054688 157.527344 C 268.054688 155.90625 270.484375 155.90625 270.484375 157.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.492188 70.910156 L 226.128906 73.746094 L 222.855469 73.746094 Z M 224.492188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.003906 418.691406 L 252.636719 415.855469 L 249.367188 415.855469 Z M 251.003906 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.597656 418.691406 L 259.234375 415.855469 L 255.960938 415.855469 Z M 257.597656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.222656 282.261719 C 293.222656 283.878906 290.792969 283.878906 290.792969 282.261719 C 290.792969 280.640625 293.222656 280.640625 293.222656 282.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.0625 150.515625 C 149.0625 152.136719 146.632812 152.136719 146.632812 150.515625 C 146.632812 148.894531 149.0625 148.894531 149.0625 150.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.851562 242.582031 C 336.851562 244.203125 334.421875 244.203125 334.421875 242.582031 C 334.421875 240.960938 336.851562 240.960938 336.851562 242.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.980469 336.355469 C 263.980469 337.976562 261.550781 337.976562 261.550781 336.355469 C 261.550781 334.734375 263.980469 334.734375 263.980469 336.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.6875 183.054688 C 204.6875 184.675781 202.257812 184.675781 202.257812 183.054688 C 202.257812 181.433594 204.6875 181.433594 204.6875 183.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.175781 308.449219 C 171.175781 310.066406 168.746094 310.066406 168.746094 308.449219 C 168.746094 306.828125 171.175781 306.828125 171.175781 308.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.933594 189.894531 C 243.933594 191.515625 241.503906 191.515625 241.503906 189.894531 C 241.503906 188.273438 243.933594 188.273438 243.933594 189.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.949219 196.386719 C 257.949219 198.007812 255.519531 198.007812 255.519531 196.386719 C 255.519531 194.765625 257.949219 194.765625 257.949219 196.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.898438 286.757812 C 234.898438 288.375 232.46875 288.375 232.46875 286.757812 C 232.46875 285.136719 234.898438 285.136719 234.898438 286.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.828125 277.257812 C 288.828125 278.875 286.398438 278.875 286.398438 277.257812 C 286.398438 275.636719 288.828125 275.636719 288.828125 277.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.042969 219.257812 C 264.042969 220.878906 261.613281 220.878906 261.613281 219.257812 C 261.613281 217.640625 264.042969 217.640625 264.042969 219.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.996094 185.09375 C 195.996094 186.714844 193.566406 186.714844 193.566406 185.09375 C 193.566406 183.472656 195.996094 183.472656 195.996094 185.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.769531 70.910156 L 137.40625 73.746094 L 134.132812 73.746094 Z M 135.769531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.597656 194.457031 C 279.597656 196.078125 277.167969 196.078125 277.167969 194.457031 C 277.167969 192.839844 279.597656 192.839844 279.597656 194.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.882812 314.511719 C 249.882812 316.132812 247.453125 316.132812 247.453125 314.511719 C 247.453125 312.890625 249.882812 312.890625 249.882812 314.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.488281 70.910156 L 242.125 73.746094 L 238.851562 73.746094 Z M 240.488281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.746094 110.550781 C 246.746094 112.171875 244.316406 112.171875 244.316406 110.550781 C 244.316406 108.933594 246.746094 108.933594 246.746094 110.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.902344 282.214844 C 258.902344 283.835938 256.472656 283.835938 256.472656 282.214844 C 256.472656 280.597656 258.902344 280.597656 258.902344 282.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.011719 258.949219 C 312.011719 260.570312 309.582031 260.570312 309.582031 258.949219 C 309.582031 257.328125 312.011719 257.328125 312.011719 258.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.394531 233.546875 C 194.394531 235.167969 191.964844 235.167969 191.964844 233.546875 C 191.964844 231.925781 194.394531 231.925781 194.394531 233.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.511719 205.121094 C 305.511719 206.742188 303.082031 206.742188 303.082031 205.121094 C 303.082031 203.5 305.511719 203.5 305.511719 205.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.460938 154.324219 C 267.460938 155.945312 265.03125 155.945312 265.03125 154.324219 C 265.03125 152.703125 267.460938 152.703125 267.460938 154.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.234375 70.910156 L 201.867188 73.746094 L 198.597656 73.746094 Z M 200.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.273438 70.910156 L 245.910156 73.746094 L 242.636719 73.746094 Z M 244.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.769531 245.015625 C 286.769531 246.636719 284.339844 246.636719 284.339844 245.015625 C 284.339844 243.398438 286.769531 243.398438 286.769531 245.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.308594 245.09375 C 261.308594 246.714844 258.878906 246.714844 258.878906 245.09375 C 258.878906 243.472656 261.308594 243.472656 261.308594 245.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.941406 212.421875 C 282.941406 214.042969 280.511719 214.042969 280.511719 212.421875 C 280.511719 210.800781 282.941406 210.800781 282.941406 212.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.546875 249.296875 C 258.546875 250.917969 256.117188 250.917969 256.117188 249.296875 C 256.117188 247.675781 258.546875 247.675781 258.546875 249.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.503906 210.109375 C 327.503906 211.726562 325.074219 211.726562 325.074219 210.109375 C 325.074219 208.488281 327.503906 208.488281 327.503906 210.109375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.433594 70.910156 L 261.070312 73.746094 L 257.796875 73.746094 Z M 259.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.214844 238.765625 C 294.214844 240.386719 291.78125 240.386719 291.78125 238.765625 C 291.78125 237.148438 294.214844 237.148438 294.214844 238.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.925781 238.292969 C 238.925781 239.910156 236.496094 239.910156 236.496094 238.292969 C 236.496094 236.671875 238.925781 236.671875 238.925781 238.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.957031 230.273438 C 263.957031 231.894531 261.527344 231.894531 261.527344 230.273438 C 261.527344 228.652344 263.957031 228.652344 263.957031 230.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.464844 279.878906 C 230.464844 281.5 228.03125 281.5 228.03125 279.878906 C 228.03125 278.257812 230.464844 278.257812 230.464844 279.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.179688 289.316406 C 214.179688 290.9375 211.75 290.9375 211.75 289.316406 C 211.75 287.699219 214.179688 287.699219 214.179688 289.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.695312 260.363281 C 249.695312 261.984375 247.265625 261.984375 247.265625 260.363281 C 247.265625 258.742188 249.695312 258.742188 249.695312 260.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.1875 70.910156 L 185.824219 73.746094 L 182.550781 73.746094 Z M 184.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.375 415.035156 C 229.375 416.65625 226.945312 416.65625 226.945312 415.035156 C 226.945312 413.414062 229.375 413.414062 229.375 415.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.871094 70.910156 L 207.507812 73.746094 L 204.238281 73.746094 Z M 205.871094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.441406 70.910156 L 229.078125 73.746094 L 225.804688 73.746094 Z M 227.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.597656 328.296875 C 292.597656 329.914062 290.167969 329.914062 290.167969 328.296875 C 290.167969 326.675781 292.597656 326.675781 292.597656 328.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.121094 321.367188 C 274.121094 322.984375 271.691406 322.984375 271.691406 321.367188 C 271.691406 319.746094 274.121094 319.746094 274.121094 321.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.046875 358.613281 C 176.046875 360.234375 173.617188 360.234375 173.617188 358.613281 C 173.617188 356.996094 176.046875 356.996094 176.046875 358.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.964844 265.636719 C 181.964844 267.253906 179.535156 267.253906 179.535156 265.636719 C 179.535156 264.015625 181.964844 264.015625 181.964844 265.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.3125 212.09375 C 309.3125 213.714844 306.882812 213.714844 306.882812 212.09375 C 306.882812 210.472656 309.3125 210.472656 309.3125 212.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.667969 275.835938 C 243.667969 277.453125 241.238281 277.453125 241.238281 275.835938 C 241.238281 274.214844 243.667969 274.214844 243.667969 275.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.203125 113.148438 C 327.203125 114.769531 324.773438 114.769531 324.773438 113.148438 C 324.773438 111.53125 327.203125 111.53125 327.203125 113.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.074219 242.289062 C 288.074219 243.90625 285.644531 243.90625 285.644531 242.289062 C 285.644531 240.667969 288.074219 240.667969 288.074219 242.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.535156 216.371094 C 273.535156 217.992188 271.105469 217.992188 271.105469 216.371094 C 271.105469 214.753906 273.535156 214.753906 273.535156 216.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.269531 171.425781 C 190.269531 173.046875 187.839844 173.046875 187.839844 171.425781 C 187.839844 169.804688 190.269531 169.804688 190.269531 171.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.382812 218.21875 C 256.382812 219.835938 253.953125 219.835938 253.953125 218.21875 C 253.953125 216.597656 256.382812 216.597656 256.382812 218.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.554688 70.910156 L 128.191406 73.746094 L 124.917969 73.746094 Z M 126.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.203125 86.1875 C 260.203125 87.804688 257.769531 87.804688 257.769531 86.1875 C 257.769531 84.566406 260.203125 84.566406 260.203125 86.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.675781 228.398438 C 220.675781 230.019531 218.246094 230.019531 218.246094 228.398438 C 218.246094 226.777344 220.675781 226.777344 220.675781 228.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.269531 418.691406 L 173.90625 415.855469 L 170.636719 415.855469 Z M 172.269531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.414062 254.113281 C 155.414062 255.730469 152.984375 255.730469 152.984375 254.113281 C 152.984375 252.492188 155.414062 252.492188 155.414062 254.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.695312 70.910156 L 262.328125 73.746094 L 259.058594 73.746094 Z M 260.695312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.964844 70.910156 L 219.601562 73.746094 L 216.328125 73.746094 Z M 217.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.519531 70.910156 L 249.15625 73.746094 L 245.882812 73.746094 Z M 247.519531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.988281 239.5625 C 261.988281 241.183594 259.558594 241.183594 259.558594 239.5625 C 259.558594 237.941406 261.988281 237.941406 261.988281 239.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.828125 244.691406 C 252.828125 246.3125 250.398438 246.3125 250.398438 244.691406 C 250.398438 243.074219 252.828125 243.074219 252.828125 244.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.507812 264.410156 C 215.507812 266.027344 213.078125 266.027344 213.078125 264.410156 C 213.078125 262.789062 215.507812 262.789062 215.507812 264.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.3125 273.316406 C 279.3125 274.933594 276.882812 274.933594 276.882812 273.316406 C 276.882812 271.695312 279.3125 271.695312 279.3125 273.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.496094 212.601562 C 229.496094 214.222656 227.066406 214.222656 227.066406 212.601562 C 227.066406 210.980469 229.496094 210.980469 229.496094 212.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.726562 321.304688 C 256.726562 322.921875 254.296875 322.921875 254.296875 321.304688 C 254.296875 319.683594 256.726562 319.683594 256.726562 321.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.9375 318.402344 C 256.9375 320.023438 254.507812 320.023438 254.507812 318.402344 C 254.507812 316.78125 256.9375 316.78125 256.9375 318.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.8125 304.726562 C 236.8125 306.34375 234.382812 306.34375 234.382812 304.726562 C 234.382812 303.105469 236.8125 303.105469 236.8125 304.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.988281 277.625 C 236.988281 279.246094 234.558594 279.246094 234.558594 277.625 C 234.558594 276.007812 236.988281 276.007812 236.988281 277.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.796875 297.414062 C 264.796875 299.035156 262.367188 299.035156 262.367188 297.414062 C 262.367188 295.796875 264.796875 295.796875 264.796875 297.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.863281 304.277344 C 269.863281 305.894531 267.433594 305.894531 267.433594 304.277344 C 267.433594 302.65625 269.863281 302.65625 269.863281 304.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.746094 166.695312 C 158.746094 168.316406 156.316406 168.316406 156.316406 166.695312 C 156.316406 165.074219 158.746094 165.074219 158.746094 166.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.164062 277.5625 C 271.164062 279.183594 268.734375 279.183594 268.734375 277.5625 C 268.734375 275.941406 271.164062 275.941406 271.164062 277.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.296875 302.222656 C 328.296875 303.839844 325.867188 303.839844 325.867188 302.222656 C 325.867188 300.601562 328.296875 300.601562 328.296875 302.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.988281 248.632812 C 278.988281 250.253906 276.554688 250.253906 276.554688 248.632812 C 276.554688 247.015625 278.988281 247.015625 278.988281 248.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.921875 293.355469 C 230.921875 294.976562 228.492188 294.976562 228.492188 293.355469 C 228.492188 291.738281 230.921875 291.738281 230.921875 293.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.394531 276.253906 C 235.394531 277.871094 232.964844 277.871094 232.964844 276.253906 C 232.964844 274.632812 235.394531 274.632812 235.394531 276.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.828125 266.46875 C 270.828125 268.089844 268.398438 268.089844 268.398438 266.46875 C 268.398438 264.847656 270.828125 264.847656 270.828125 266.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.53125 319.371094 C 287.53125 320.992188 285.101562 320.992188 285.101562 319.371094 C 285.101562 317.75 287.53125 317.75 287.53125 319.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.757812 193.824219 C 276.757812 195.445312 274.328125 195.445312 274.328125 193.824219 C 274.328125 192.203125 276.757812 192.203125 276.757812 193.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.09375 262.722656 C 268.09375 264.339844 265.664062 264.339844 265.664062 262.722656 C 265.664062 261.101562 268.09375 261.101562 268.09375 262.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.496094 243.257812 C 143.496094 244.875 141.066406 244.875 141.066406 243.257812 C 141.066406 241.636719 143.496094 241.636719 143.496094 243.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.597656 266.433594 C 285.597656 268.054688 283.167969 268.054688 283.167969 266.433594 C 283.167969 264.8125 285.597656 264.8125 285.597656 266.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.242188 291.945312 C 292.242188 293.566406 289.808594 293.566406 289.808594 291.945312 C 289.808594 290.324219 292.242188 290.324219 292.242188 291.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.574219 153.625 C 275.574219 155.246094 273.144531 155.246094 273.144531 153.625 C 273.144531 152.003906 275.574219 152.003906 275.574219 153.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.402344 172.394531 C 128.402344 174.015625 125.972656 174.015625 125.972656 172.394531 C 125.972656 170.777344 128.402344 170.777344 128.402344 172.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.082031 317.324219 C 201.082031 318.941406 198.652344 318.941406 198.652344 317.324219 C 198.652344 315.703125 201.082031 315.703125 201.082031 317.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201 334.503906 C 201 336.125 198.570312 336.125 198.570312 334.503906 C 198.570312 332.882812 201 332.882812 201 334.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.480469 70.910156 L 245.117188 73.746094 L 241.84375 73.746094 Z M 243.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.824219 163.886719 C 266.824219 165.503906 264.394531 165.503906 264.394531 163.886719 C 264.394531 162.265625 266.824219 162.265625 266.824219 163.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.667969 282.632812 C 286.667969 284.253906 284.238281 284.253906 284.238281 282.632812 C 284.238281 281.015625 286.667969 281.015625 286.667969 282.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.808594 275.414062 C 290.808594 277.035156 288.378906 277.035156 288.378906 275.414062 C 288.378906 273.796875 290.808594 273.796875 290.808594 275.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.226562 265.347656 C 252.226562 266.96875 249.796875 266.96875 249.796875 265.347656 C 249.796875 263.730469 252.226562 263.730469 252.226562 265.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.167969 250.964844 C 274.167969 252.585938 271.738281 252.585938 271.738281 250.964844 C 271.738281 249.34375 274.167969 249.34375 274.167969 250.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.089844 349.699219 C 303.089844 351.320312 300.660156 351.320312 300.660156 349.699219 C 300.660156 348.078125 303.089844 348.078125 303.089844 349.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.445312 248.402344 C 229.445312 250.023438 227.015625 250.023438 227.015625 248.402344 C 227.015625 246.78125 229.445312 246.78125 229.445312 248.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.246094 229.074219 C 265.246094 230.695312 262.816406 230.695312 262.816406 229.074219 C 262.816406 227.453125 265.246094 227.453125 265.246094 229.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.539062 365.746094 C 292.539062 367.367188 290.109375 367.367188 290.109375 365.746094 C 290.109375 364.125 292.539062 364.125 292.539062 365.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.6875 70.910156 L 160.320312 73.746094 L 157.050781 73.746094 Z M 158.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.445312 280.550781 C 279.445312 282.171875 277.015625 282.171875 277.015625 280.550781 C 277.015625 278.933594 279.445312 278.933594 279.445312 280.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.855469 70.910156 L 252.492188 73.746094 L 249.21875 73.746094 Z M 250.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 178.332031 74.941406 C 178.332031 76.5625 175.902344 76.5625 175.902344 74.941406 C 175.902344 73.324219 178.332031 73.324219 178.332031 74.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.910156 70.910156 L 292.546875 73.746094 L 289.273438 73.746094 Z M 290.910156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.320312 70.910156 L 189.957031 73.746094 L 186.683594 73.746094 Z M 188.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.816406 85.550781 C 178.816406 87.171875 176.386719 87.171875 176.386719 85.550781 C 176.386719 83.929688 178.816406 83.929688 178.816406 85.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.828125 143.324219 C 234.828125 144.941406 232.398438 144.941406 232.398438 143.324219 C 232.398438 141.703125 234.828125 141.703125 234.828125 143.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.921875 70.910156 L 232.558594 73.746094 L 229.285156 73.746094 Z M 230.921875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.695312 418.691406 L 124.332031 415.855469 L 121.058594 415.855469 Z M 122.695312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.210938 235.082031 C 317.210938 236.703125 314.777344 236.703125 314.777344 235.082031 C 314.777344 233.460938 317.210938 233.460938 317.210938 235.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.289062 316.824219 C 258.289062 318.445312 255.859375 318.445312 255.859375 316.824219 C 255.859375 315.203125 258.289062 315.203125 258.289062 316.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.542969 335.035156 C 264.542969 336.65625 262.109375 336.65625 262.109375 335.035156 C 262.109375 333.417969 264.542969 333.417969 264.542969 335.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.246094 263.078125 C 279.246094 264.699219 276.816406 264.699219 276.816406 263.078125 C 276.816406 261.457031 279.246094 261.457031 279.246094 263.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.03125 219.535156 C 281.03125 221.152344 278.601562 221.152344 278.601562 219.535156 C 278.601562 217.914062 281.03125 217.914062 281.03125 219.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.242188 279.023438 C 209.242188 280.640625 206.8125 280.640625 206.8125 279.023438 C 206.8125 277.402344 209.242188 277.402344 209.242188 279.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.339844 278.214844 C 286.339844 279.832031 283.910156 279.832031 283.910156 278.214844 C 283.910156 276.59375 286.339844 276.59375 286.339844 278.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.574219 213.140625 C 345.574219 214.761719 343.144531 214.761719 343.144531 213.140625 C 343.144531 211.519531 345.574219 211.519531 345.574219 213.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.710938 275.542969 C 255.710938 277.160156 253.277344 277.160156 253.277344 275.542969 C 253.277344 273.921875 255.710938 273.921875 255.710938 275.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.558594 260.792969 C 246.558594 262.410156 244.128906 262.410156 244.128906 260.792969 C 244.128906 259.171875 246.558594 259.171875 246.558594 260.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.574219 70.910156 L 281.210938 73.746094 L 277.941406 73.746094 Z M 279.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.625 265.507812 C 190.625 267.128906 188.195312 267.128906 188.195312 265.507812 C 188.195312 263.886719 190.625 263.886719 190.625 265.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.710938 246.695312 C 219.710938 248.316406 217.28125 248.316406 217.28125 246.695312 C 217.28125 245.074219 219.710938 245.074219 219.710938 246.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.609375 225.199219 C 257.609375 226.820312 255.179688 226.820312 255.179688 225.199219 C 255.179688 223.578125 257.609375 223.578125 257.609375 225.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.261719 189.050781 C 259.261719 190.671875 256.832031 190.671875 256.832031 189.050781 C 256.832031 187.429688 259.261719 187.429688 259.261719 189.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.027344 255.972656 C 195.027344 257.589844 192.597656 257.589844 192.597656 255.972656 C 192.597656 254.351562 195.027344 254.351562 195.027344 255.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.664062 202.496094 C 236.664062 204.117188 234.234375 204.117188 234.234375 202.496094 C 234.234375 200.878906 236.664062 200.878906 236.664062 202.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.050781 206.671875 C 216.050781 208.292969 213.621094 208.292969 213.621094 206.671875 C 213.621094 205.054688 216.050781 205.054688 216.050781 206.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.59375 213.308594 C 272.59375 214.929688 270.164062 214.929688 270.164062 213.308594 C 270.164062 211.691406 272.59375 211.691406 272.59375 213.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.535156 336.539062 C 348.535156 338.160156 346.105469 338.160156 346.105469 336.539062 C 346.105469 334.917969 348.535156 334.917969 348.535156 336.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.082031 202.914062 C 298.082031 204.535156 295.652344 204.535156 295.652344 202.914062 C 295.652344 201.296875 298.082031 201.296875 298.082031 202.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.925781 271.855469 C 224.925781 273.476562 222.492188 273.476562 222.492188 271.855469 C 222.492188 270.238281 224.925781 270.238281 224.925781 271.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.59375 70.910156 L 180.226562 73.746094 L 176.957031 73.746094 Z M 178.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.773438 239.285156 C 245.773438 240.90625 243.34375 240.90625 243.34375 239.285156 C 243.34375 237.664062 245.773438 237.664062 245.773438 239.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.917969 70.910156 L 275.554688 73.746094 L 272.285156 73.746094 Z M 273.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.820312 315.433594 C 305.820312 317.054688 303.390625 317.054688 303.390625 315.433594 C 303.390625 313.816406 305.820312 313.816406 305.820312 315.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.269531 70.910156 L 306.90625 73.746094 L 303.632812 73.746094 Z M 305.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.871094 290.578125 C 221.871094 292.199219 219.441406 292.199219 219.441406 290.578125 C 219.441406 288.960938 221.871094 288.960938 221.871094 290.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.167969 238.457031 C 259.167969 240.074219 256.738281 240.074219 256.738281 238.457031 C 256.738281 236.835938 259.167969 236.835938 259.167969 238.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.390625 370.96875 C 287.390625 372.589844 284.960938 372.589844 284.960938 370.96875 C 284.960938 369.351562 287.390625 369.351562 287.390625 370.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.167969 217.5 C 325.167969 219.121094 322.738281 219.121094 322.738281 217.5 C 322.738281 215.878906 325.167969 215.878906 325.167969 217.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.847656 194.140625 C 201.847656 195.761719 199.417969 195.761719 199.417969 194.140625 C 199.417969 192.519531 201.847656 192.519531 201.847656 194.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.429688 418.691406 L 254.066406 415.855469 L 250.792969 415.855469 Z M 252.429688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.375 418.691406 L 211.011719 415.855469 L 207.742188 415.855469 Z M 209.375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.332031 263.285156 C 260.332031 264.90625 257.902344 264.90625 257.902344 263.285156 C 257.902344 261.667969 260.332031 261.667969 260.332031 263.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.589844 190.207031 C 274.589844 191.824219 272.160156 191.824219 272.160156 190.207031 C 272.160156 188.585938 274.589844 188.585938 274.589844 190.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.855469 243.710938 C 314.855469 245.332031 312.425781 245.332031 312.425781 243.710938 C 312.425781 242.09375 314.855469 242.09375 314.855469 243.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.976562 248.800781 C 205.976562 250.421875 203.546875 250.421875 203.546875 248.800781 C 203.546875 247.183594 205.976562 247.183594 205.976562 248.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.875 250.234375 C 143.875 251.855469 141.445312 251.855469 141.445312 250.234375 C 141.445312 248.617188 143.875 248.617188 143.875 250.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.921875 70.910156 L 151.558594 73.746094 L 148.285156 73.746094 Z M 149.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.144531 296.839844 C 185.144531 298.460938 182.714844 298.460938 182.714844 296.839844 C 182.714844 295.222656 185.144531 295.222656 185.144531 296.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.988281 310.9375 C 195.988281 312.558594 193.558594 312.558594 193.558594 310.9375 C 193.558594 309.320312 195.988281 309.320312 195.988281 310.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.191406 303.125 C 326.191406 304.746094 323.761719 304.746094 323.761719 303.125 C 323.761719 301.507812 326.191406 301.507812 326.191406 303.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.21875 220.128906 C 306.21875 221.75 303.789062 221.75 303.789062 220.128906 C 303.789062 218.507812 306.21875 218.507812 306.21875 220.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.230469 278.25 C 255.230469 279.867188 252.800781 279.867188 252.800781 278.25 C 252.800781 276.628906 255.230469 276.628906 255.230469 278.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.085938 169.789062 C 228.085938 171.410156 225.65625 171.410156 225.65625 169.789062 C 225.65625 168.167969 228.085938 168.167969 228.085938 169.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.671875 262.601562 C 342.671875 264.21875 340.242188 264.21875 340.242188 262.601562 C 340.242188 260.980469 342.671875 260.980469 342.671875 262.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.207031 249.820312 C 178.207031 251.4375 175.777344 251.4375 175.777344 249.820312 C 175.777344 248.199219 178.207031 248.199219 178.207031 249.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.863281 297.433594 C 269.863281 299.050781 267.433594 299.050781 267.433594 297.433594 C 267.433594 295.8125 269.863281 295.8125 269.863281 297.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.882812 308.074219 C 121.882812 309.695312 119.453125 309.695312 119.453125 308.074219 C 119.453125 306.457031 121.882812 306.457031 121.882812 308.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.746094 418.691406 L 223.382812 415.855469 L 220.109375 415.855469 Z M 221.746094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.425781 118.539062 C 268.425781 120.160156 265.996094 120.160156 265.996094 118.539062 C 265.996094 116.917969 268.425781 116.917969 268.425781 118.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.671875 133.90625 C 271.671875 135.527344 269.242188 135.527344 269.242188 133.90625 C 269.242188 132.285156 271.671875 132.285156 271.671875 133.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.390625 205.597656 C 244.390625 207.21875 241.960938 207.21875 241.960938 205.597656 C 241.960938 203.980469 244.390625 203.980469 244.390625 205.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.160156 70.910156 L 226.796875 73.746094 L 223.523438 73.746094 Z M 225.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.09375 87.875 C 213.09375 89.496094 210.664062 89.496094 210.664062 87.875 C 210.664062 86.253906 213.09375 86.253906 213.09375 87.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.613281 278.035156 C 244.613281 279.65625 242.183594 279.65625 242.183594 278.035156 C 242.183594 276.414062 244.613281 276.414062 244.613281 278.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.890625 70.910156 L 200.527344 73.746094 L 197.253906 73.746094 Z M 198.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.394531 201.023438 C 303.394531 202.644531 300.964844 202.644531 300.964844 201.023438 C 300.964844 199.40625 303.394531 199.40625 303.394531 201.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.671875 395.085938 C 253.671875 396.707031 251.242188 396.707031 251.242188 395.085938 C 251.242188 393.46875 253.671875 393.46875 253.671875 395.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.863281 232.972656 C 264.863281 234.59375 262.429688 234.59375 262.429688 232.972656 C 262.429688 231.351562 264.863281 231.351562 264.863281 232.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.824219 380.933594 C 136.824219 382.550781 134.394531 382.550781 134.394531 380.933594 C 134.394531 379.3125 136.824219 379.3125 136.824219 380.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.746094 156.589844 C 212.746094 158.210938 210.316406 158.210938 210.316406 156.589844 C 210.316406 154.96875 212.746094 154.96875 212.746094 156.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.394531 145.84375 C 265.394531 147.464844 262.960938 147.464844 262.960938 145.84375 C 262.960938 144.222656 265.394531 144.222656 265.394531 145.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.433594 169.097656 C 184.433594 170.71875 182.003906 170.71875 182.003906 169.097656 C 182.003906 167.476562 184.433594 167.476562 184.433594 169.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.113281 70.910156 L 129.75 73.746094 L 126.476562 73.746094 Z M 128.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.875 265.199219 C 250.875 266.820312 248.445312 266.820312 248.445312 265.199219 C 248.445312 263.578125 250.875 263.578125 250.875 265.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.375 240.328125 C 314.375 241.949219 311.945312 241.949219 311.945312 240.328125 C 311.945312 238.707031 314.375 238.707031 314.375 240.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.429688 233.160156 C 227.429688 234.78125 225 234.78125 225 233.160156 C 225 231.539062 227.429688 231.539062 227.429688 233.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.203125 245.285156 C 222.203125 246.90625 219.773438 246.90625 219.773438 245.285156 C 219.773438 243.664062 222.203125 243.664062 222.203125 245.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.667969 348.136719 C 275.667969 349.753906 273.238281 349.753906 273.238281 348.136719 C 273.238281 346.515625 275.667969 346.515625 275.667969 348.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.15625 278.558594 C 289.15625 280.175781 286.726562 280.175781 286.726562 278.558594 C 286.726562 276.9375 289.15625 276.9375 289.15625 278.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.769531 260.335938 C 242.769531 261.953125 240.339844 261.953125 240.339844 260.335938 C 240.339844 258.714844 242.769531 258.714844 242.769531 260.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.855469 268.167969 C 316.855469 269.789062 314.425781 269.789062 314.425781 268.167969 C 314.425781 266.546875 316.855469 266.546875 316.855469 268.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.996094 252.652344 C 305.996094 254.273438 303.566406 254.273438 303.566406 252.652344 C 303.566406 251.035156 305.996094 251.035156 305.996094 252.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.492188 283.515625 C 249.492188 285.136719 247.0625 285.136719 247.0625 283.515625 C 247.0625 281.894531 249.492188 281.894531 249.492188 283.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.148438 283.011719 C 283.148438 284.632812 280.71875 284.632812 280.71875 283.011719 C 280.71875 281.390625 283.148438 281.390625 283.148438 283.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.699219 264.941406 C 268.699219 266.5625 266.269531 266.5625 266.269531 264.941406 C 266.269531 263.324219 268.699219 263.324219 268.699219 264.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.734375 260.589844 C 260.734375 262.210938 258.304688 262.210938 258.304688 260.589844 C 258.304688 258.972656 260.734375 258.972656 260.734375 260.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.152344 174.25 C 237.152344 175.871094 234.722656 175.871094 234.722656 174.25 C 234.722656 172.628906 237.152344 172.628906 237.152344 174.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.992188 245.816406 C 191.992188 247.4375 189.5625 247.4375 189.5625 245.816406 C 189.5625 244.195312 191.992188 244.195312 191.992188 245.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.175781 257.351562 C 307.175781 258.972656 304.746094 258.972656 304.746094 257.351562 C 304.746094 255.730469 307.175781 255.730469 307.175781 257.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.390625 418.691406 L 281.027344 415.855469 L 277.753906 415.855469 Z M 279.390625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.929688 371.476562 C 222.929688 373.097656 220.5 373.097656 220.5 371.476562 C 220.5 369.859375 222.929688 369.859375 222.929688 371.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.761719 233.078125 C 220.761719 234.699219 218.332031 234.699219 218.332031 233.078125 C 218.332031 231.460938 220.761719 231.460938 220.761719 233.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.621094 213.945312 C 239.621094 215.566406 237.191406 215.566406 237.191406 213.945312 C 237.191406 212.328125 239.621094 212.328125 239.621094 213.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.496094 229.664062 C 238.496094 231.28125 236.066406 231.28125 236.066406 229.664062 C 236.066406 228.042969 238.496094 228.042969 238.496094 229.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.542969 191.464844 C 187.542969 193.085938 185.113281 193.085938 185.113281 191.464844 C 185.113281 189.847656 187.542969 189.847656 187.542969 191.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.089844 296.300781 C 309.089844 297.917969 306.660156 297.917969 306.660156 296.300781 C 306.660156 294.679688 309.089844 294.679688 309.089844 296.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.320312 275.734375 C 289.320312 277.355469 286.890625 277.355469 286.890625 275.734375 C 286.890625 274.113281 289.320312 274.113281 289.320312 275.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.875 70.910156 L 165.511719 73.746094 L 162.238281 73.746094 Z M 163.875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.183594 70.910156 L 228.820312 73.746094 L 225.550781 73.746094 Z M 227.183594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.234375 70.910156 L 222.871094 73.746094 L 219.597656 73.746094 Z M 221.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.554688 139.160156 C 151.554688 140.777344 149.125 140.777344 149.125 139.160156 C 149.125 137.539062 151.554688 137.539062 151.554688 139.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.53125 299.078125 C 231.53125 300.695312 229.101562 300.695312 229.101562 299.078125 C 229.101562 297.457031 231.53125 297.457031 231.53125 299.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.378906 163.886719 C 128.378906 165.507812 125.949219 165.507812 125.949219 163.886719 C 125.949219 162.265625 128.378906 162.265625 128.378906 163.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.4375 153.695312 C 216.4375 155.316406 214.007812 155.316406 214.007812 153.695312 C 214.007812 152.078125 216.4375 152.078125 216.4375 153.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.894531 70.910156 L 212.53125 73.746094 L 209.257812 73.746094 Z M 210.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.34375 259.160156 C 266.34375 260.78125 263.914062 260.78125 263.914062 259.160156 C 263.914062 257.539062 266.34375 257.539062 266.34375 259.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.511719 70.910156 L 137.148438 73.746094 L 133.875 73.746094 Z M 135.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.492188 299.894531 C 214.492188 301.515625 212.0625 301.515625 212.0625 299.894531 C 212.0625 298.277344 214.492188 298.277344 214.492188 299.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.324219 70.910156 L 122.960938 73.746094 L 119.6875 73.746094 Z M 121.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.203125 272.792969 C 278.203125 274.414062 275.773438 274.414062 275.773438 272.792969 C 275.773438 271.175781 278.203125 271.175781 278.203125 272.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.285156 266.628906 C 223.285156 268.25 220.855469 268.25 220.855469 266.628906 C 220.855469 265.007812 223.285156 265.007812 223.285156 266.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.652344 131.265625 C 183.652344 132.886719 181.222656 132.886719 181.222656 131.265625 C 181.222656 129.644531 183.652344 129.644531 183.652344 131.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.769531 199.054688 C 148.769531 200.671875 146.339844 200.671875 146.339844 199.054688 C 146.339844 197.433594 148.769531 197.433594 148.769531 199.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.363281 241.550781 C 249.363281 243.171875 246.933594 243.171875 246.933594 241.550781 C 246.933594 239.929688 249.363281 239.929688 249.363281 241.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.082031 196.164062 C 270.082031 197.785156 267.652344 197.785156 267.652344 196.164062 C 267.652344 194.542969 270.082031 194.542969 270.082031 196.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.703125 302.476562 C 325.703125 304.097656 323.273438 304.097656 323.273438 302.476562 C 323.273438 300.859375 325.703125 300.859375 325.703125 302.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.042969 251.460938 C 235.042969 253.082031 232.613281 253.082031 232.613281 251.460938 C 232.613281 249.839844 235.042969 249.839844 235.042969 251.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.320312 112.898438 C 154.320312 114.519531 151.890625 114.519531 151.890625 112.898438 C 151.890625 111.28125 154.320312 111.28125 154.320312 112.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.980469 295.492188 C 228.980469 297.113281 226.550781 297.113281 226.550781 295.492188 C 226.550781 293.871094 228.980469 293.871094 228.980469 295.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.375 226.019531 C 160.375 227.636719 157.945312 227.636719 157.945312 226.019531 C 157.945312 224.398438 160.375 224.398438 160.375 226.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.648438 165.910156 C 189.648438 167.53125 187.21875 167.53125 187.21875 165.910156 C 187.21875 164.289062 189.648438 164.289062 189.648438 165.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.363281 70.910156 L 243 73.746094 L 239.726562 73.746094 Z M 241.363281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.394531 254.910156 C 205.394531 256.527344 202.964844 256.527344 202.964844 254.910156 C 202.964844 253.289062 205.394531 253.289062 205.394531 254.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.027344 229.902344 C 238.027344 231.523438 235.597656 231.523438 235.597656 229.902344 C 235.597656 228.28125 238.027344 228.28125 238.027344 229.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.1875 331.421875 C 284.1875 333.042969 281.757812 333.042969 281.757812 331.421875 C 281.757812 329.800781 284.1875 329.800781 284.1875 331.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.449219 95.421875 C 122.449219 97.039062 120.019531 97.039062 120.019531 95.421875 C 120.019531 93.800781 122.449219 93.800781 122.449219 95.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.105469 237.933594 C 162.105469 239.550781 159.675781 239.550781 159.675781 237.933594 C 159.675781 236.3125 162.105469 236.3125 162.105469 237.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.554688 151.164062 C 291.554688 152.785156 289.125 152.785156 289.125 151.164062 C 289.125 149.542969 291.554688 149.542969 291.554688 151.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.851562 205.882812 C 245.851562 207.5 243.421875 207.5 243.421875 205.882812 C 243.421875 204.261719 245.851562 204.261719 245.851562 205.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.558594 418.691406 L 166.195312 415.855469 L 162.921875 415.855469 Z M 164.558594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.457031 298.675781 C 301.457031 300.296875 299.027344 300.296875 299.027344 298.675781 C 299.027344 297.058594 301.457031 297.058594 301.457031 298.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 385.355469 124.589844 C 385.355469 126.210938 382.925781 126.210938 382.925781 124.589844 C 382.925781 122.972656 385.355469 122.972656 385.355469 124.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.246094 70.910156 L 132.882812 73.746094 L 129.609375 73.746094 Z M 131.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.960938 241.285156 C 320.960938 242.90625 318.53125 242.90625 318.53125 241.285156 C 318.53125 239.664062 320.960938 239.664062 320.960938 241.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.851562 193.398438 C 248.851562 195.019531 246.421875 195.019531 246.421875 193.398438 C 246.421875 191.777344 248.851562 191.777344 248.851562 193.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.328125 152.328125 C 299.328125 153.945312 296.898438 153.945312 296.898438 152.328125 C 296.898438 150.707031 299.328125 150.707031 299.328125 152.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.929688 310.8125 C 281.929688 312.433594 279.5 312.433594 279.5 310.8125 C 279.5 309.191406 281.929688 309.191406 281.929688 310.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.167969 279.394531 C 157.167969 281.011719 154.738281 281.011719 154.738281 279.394531 C 154.738281 277.773438 157.167969 277.773438 157.167969 279.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.769531 288.085938 C 230.769531 289.707031 228.339844 289.707031 228.339844 288.085938 C 228.339844 286.464844 230.769531 286.464844 230.769531 288.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.625 263.070312 C 297.625 264.691406 295.195312 264.691406 295.195312 263.070312 C 295.195312 261.449219 297.625 261.449219 297.625 263.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.886719 198.59375 C 279.886719 200.214844 277.453125 200.214844 277.453125 198.59375 C 277.453125 196.976562 279.886719 196.976562 279.886719 198.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.210938 128.179688 C 118.210938 129.796875 115.78125 129.796875 115.78125 128.179688 C 115.78125 126.558594 118.210938 126.558594 118.210938 128.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.128906 246.707031 C 249.128906 248.328125 246.699219 248.328125 246.699219 246.707031 C 246.699219 245.085938 249.128906 245.085938 249.128906 246.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.714844 329.757812 C 275.714844 331.378906 273.285156 331.378906 273.285156 329.757812 C 273.285156 328.136719 275.714844 328.136719 275.714844 329.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.363281 398.871094 C 192.363281 400.488281 189.933594 400.488281 189.933594 398.871094 C 189.933594 397.25 192.363281 397.25 192.363281 398.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.179688 266.617188 C 286.179688 268.234375 283.75 268.234375 283.75 266.617188 C 283.75 264.996094 286.179688 264.996094 286.179688 266.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.113281 258.195312 C 161.113281 259.816406 158.679688 259.816406 158.679688 258.195312 C 158.679688 256.574219 161.113281 256.574219 161.113281 258.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.277344 285.3125 C 254.277344 286.929688 251.847656 286.929688 251.847656 285.3125 C 251.847656 283.691406 254.277344 283.691406 254.277344 285.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.855469 70.910156 L 109.492188 73.746094 L 106.21875 73.746094 Z M 107.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.921875 197.5625 C 243.921875 199.183594 241.492188 199.183594 241.492188 197.5625 C 241.492188 195.941406 243.921875 195.941406 243.921875 197.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.820312 70.910156 L 250.457031 73.746094 L 247.183594 73.746094 Z M 248.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.664062 367.785156 C 158.664062 369.40625 156.234375 369.40625 156.234375 367.785156 C 156.234375 366.167969 158.664062 366.167969 158.664062 367.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.09375 310.148438 C 168.09375 311.769531 165.664062 311.769531 165.664062 310.148438 C 165.664062 308.53125 168.09375 308.53125 168.09375 310.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.332031 103.953125 C 193.332031 105.574219 190.902344 105.574219 190.902344 103.953125 C 190.902344 102.332031 193.332031 102.332031 193.332031 103.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.140625 226.195312 C 285.140625 227.816406 282.710938 227.816406 282.710938 226.195312 C 282.710938 224.574219 285.140625 224.574219 285.140625 226.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.945312 418.691406 L 135.582031 415.855469 L 132.308594 415.855469 Z M 133.945312 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.570312 70.910156 L 144.207031 73.746094 L 140.933594 73.746094 Z M 142.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.742188 342.597656 C 293.742188 344.21875 291.3125 344.21875 291.3125 342.597656 C 291.3125 340.976562 293.742188 340.976562 293.742188 342.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.953125 268.355469 C 258.953125 269.972656 256.523438 269.972656 256.523438 268.355469 C 256.523438 266.734375 258.953125 266.734375 258.953125 268.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.601562 291.898438 C 262.601562 293.519531 260.171875 293.519531 260.171875 291.898438 C 260.171875 290.28125 262.601562 290.28125 262.601562 291.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.324219 79.492188 C 236.324219 81.113281 233.890625 81.113281 233.890625 79.492188 C 233.890625 77.871094 236.324219 77.871094 236.324219 79.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.511719 143.980469 C 296.511719 145.601562 294.082031 145.601562 294.082031 143.980469 C 294.082031 142.359375 296.511719 142.359375 296.511719 143.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.164062 277.933594 C 227.164062 279.554688 224.734375 279.554688 224.734375 277.933594 C 224.734375 276.316406 227.164062 276.316406 227.164062 277.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.929688 133.941406 C 231.929688 135.558594 229.5 135.558594 229.5 133.941406 C 229.5 132.320312 231.929688 132.320312 231.929688 133.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.167969 256.636719 C 278.167969 258.257812 275.738281 258.257812 275.738281 256.636719 C 275.738281 255.015625 278.167969 255.015625 278.167969 256.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.980469 338.273438 C 261.980469 339.894531 259.550781 339.894531 259.550781 338.273438 C 259.550781 336.65625 261.980469 336.65625 261.980469 338.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.378906 235.839844 C 205.378906 237.460938 202.949219 237.460938 202.949219 235.839844 C 202.949219 234.222656 205.378906 234.222656 205.378906 235.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.355469 299.28125 C 221.355469 300.902344 218.925781 300.902344 218.925781 299.28125 C 218.925781 297.660156 221.355469 297.660156 221.355469 299.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.398438 210.492188 C 148.398438 212.109375 145.96875 212.109375 145.96875 210.492188 C 145.96875 208.871094 148.398438 208.871094 148.398438 210.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.910156 70.910156 L 128.546875 73.746094 L 125.273438 73.746094 Z M 126.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 384.460938 346.21875 C 384.460938 347.839844 382.03125 347.839844 382.03125 346.21875 C 382.03125 344.601562 384.460938 344.601562 384.460938 346.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.183594 110.949219 C 224.183594 112.570312 221.753906 112.570312 221.753906 110.949219 C 221.753906 109.328125 224.183594 109.328125 224.183594 110.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.402344 287.808594 C 266.402344 289.429688 263.972656 289.429688 263.972656 287.808594 C 263.972656 286.191406 266.402344 286.191406 266.402344 287.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.136719 321.457031 C 163.136719 323.078125 160.707031 323.078125 160.707031 321.457031 C 160.707031 319.835938 163.136719 319.835938 163.136719 321.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.25 243.609375 C 304.25 245.226562 301.820312 245.226562 301.820312 243.609375 C 301.820312 241.988281 304.25 241.988281 304.25 243.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.027344 70.910156 L 253.660156 73.746094 L 250.390625 73.746094 Z M 252.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.453125 193.539062 C 159.453125 195.160156 157.023438 195.160156 157.023438 193.539062 C 157.023438 191.921875 159.453125 191.921875 159.453125 193.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.878906 70.910156 L 225.515625 73.746094 L 222.242188 73.746094 Z M 223.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.996094 258.253906 C 225.996094 259.875 223.566406 259.875 223.566406 258.253906 C 223.566406 256.636719 225.996094 256.636719 225.996094 258.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.832031 330.402344 C 201.832031 332.019531 199.402344 332.019531 199.402344 330.402344 C 199.402344 328.78125 201.832031 328.78125 201.832031 330.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.910156 197.933594 C 338.910156 199.554688 336.480469 199.554688 336.480469 197.933594 C 336.480469 196.3125 338.910156 196.3125 338.910156 197.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.386719 212.453125 C 307.386719 214.074219 304.953125 214.074219 304.953125 212.453125 C 304.953125 210.835938 307.386719 210.835938 307.386719 212.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.472656 76.683594 C 232.472656 78.304688 230.042969 78.304688 230.042969 76.683594 C 230.042969 75.0625 232.472656 75.0625 232.472656 76.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.375 246.289062 C 263.375 247.910156 260.945312 247.910156 260.945312 246.289062 C 260.945312 244.667969 263.375 244.667969 263.375 246.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.941406 228.8125 C 240.941406 230.433594 238.511719 230.433594 238.511719 228.8125 C 238.511719 227.191406 240.941406 227.191406 240.941406 228.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.179688 122.988281 C 118.179688 124.605469 115.75 124.605469 115.75 122.988281 C 115.75 121.367188 118.179688 121.367188 118.179688 122.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.707031 282.921875 C 246.707031 284.542969 244.277344 284.542969 244.277344 282.921875 C 244.277344 281.300781 246.707031 281.300781 246.707031 282.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.417969 217.726562 C 256.417969 219.34375 253.988281 219.34375 253.988281 217.726562 C 253.988281 216.105469 256.417969 216.105469 256.417969 217.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.773438 198.289062 C 186.773438 199.910156 184.34375 199.910156 184.34375 198.289062 C 184.34375 196.671875 186.773438 196.671875 186.773438 198.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.367188 227.582031 C 319.367188 229.203125 316.9375 229.203125 316.9375 227.582031 C 316.9375 225.960938 319.367188 225.960938 319.367188 227.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.394531 217.472656 C 133.394531 219.089844 130.964844 219.089844 130.964844 217.472656 C 130.964844 215.851562 133.394531 215.851562 133.394531 217.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.5625 70.910156 L 310.199219 73.746094 L 306.925781 73.746094 Z M 308.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.476562 239.9375 C 296.476562 241.554688 294.046875 241.554688 294.046875 239.9375 C 294.046875 238.316406 296.476562 238.316406 296.476562 239.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.789062 252.011719 C 294.789062 253.632812 292.359375 253.632812 292.359375 252.011719 C 292.359375 250.390625 294.789062 250.390625 294.789062 252.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.417969 70.910156 L 173.054688 73.746094 L 169.78125 73.746094 Z M 171.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.816406 156.972656 C 154.816406 158.59375 152.386719 158.59375 152.386719 156.972656 C 152.386719 155.351562 154.816406 155.351562 154.816406 156.972656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.386719 70.910156 L 157.019531 73.746094 L 153.75 73.746094 Z M 155.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.542969 357.644531 C 284.542969 359.261719 282.113281 359.261719 282.113281 357.644531 C 282.113281 356.023438 284.542969 356.023438 284.542969 357.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.816406 229.378906 C 228.816406 231 226.386719 231 226.386719 229.378906 C 226.386719 227.757812 228.816406 227.757812 228.816406 229.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.066406 239.363281 C 209.066406 240.984375 206.632812 240.984375 206.632812 239.363281 C 206.632812 237.746094 209.066406 237.746094 209.066406 239.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.386719 333.957031 C 131.386719 335.578125 128.957031 335.578125 128.957031 333.957031 C 128.957031 332.335938 131.386719 332.335938 131.386719 333.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.292969 274.453125 C 306.292969 276.070312 303.863281 276.070312 303.863281 274.453125 C 303.863281 272.832031 306.292969 272.832031 306.292969 274.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.753906 418.691406 L 238.390625 415.855469 L 235.117188 415.855469 Z M 236.753906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.859375 282.105469 C 253.859375 283.722656 251.429688 283.722656 251.429688 282.105469 C 251.429688 280.484375 253.859375 280.484375 253.859375 282.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.871094 189.046875 C 339.871094 190.664062 337.441406 190.664062 337.441406 189.046875 C 337.441406 187.425781 339.871094 187.425781 339.871094 189.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.785156 187.148438 C 179.785156 188.769531 177.355469 188.769531 177.355469 187.148438 C 177.355469 185.527344 179.785156 185.527344 179.785156 187.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.347656 418.691406 L 154.980469 415.855469 L 151.710938 415.855469 Z M 153.347656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.765625 70.910156 L 216.402344 73.746094 L 213.128906 73.746094 Z M 214.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.988281 389.890625 C 254.988281 391.507812 252.558594 391.507812 252.558594 389.890625 C 252.558594 388.269531 254.988281 388.269531 254.988281 389.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.882812 388.070312 C 219.882812 389.691406 217.453125 389.691406 217.453125 388.070312 C 217.453125 386.453125 219.882812 386.453125 219.882812 388.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.648438 70.910156 L 246.28125 73.746094 L 243.011719 73.746094 Z M 244.648438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.523438 70.910156 L 263.160156 73.746094 L 259.886719 73.746094 Z M 261.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.949219 287.09375 C 238.949219 288.710938 236.519531 288.710938 236.519531 287.09375 C 236.519531 285.472656 238.949219 285.472656 238.949219 287.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.644531 238.597656 C 259.644531 240.21875 257.214844 240.21875 257.214844 238.597656 C 257.214844 236.980469 259.644531 236.980469 259.644531 238.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.230469 291.71875 C 218.230469 293.339844 215.800781 293.339844 215.800781 291.71875 C 215.800781 290.101562 218.230469 290.101562 218.230469 291.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.730469 331.765625 C 225.730469 333.382812 223.300781 333.382812 223.300781 331.765625 C 223.300781 330.144531 225.730469 330.144531 225.730469 331.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.761719 251.503906 C 191.761719 253.121094 189.332031 253.121094 189.332031 251.503906 C 189.332031 249.882812 191.761719 249.882812 191.761719 251.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.714844 70.910156 L 131.351562 73.746094 L 128.078125 73.746094 Z M 129.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.835938 271.46875 C 229.835938 273.085938 227.40625 273.085938 227.40625 271.46875 C 227.40625 269.847656 229.835938 269.847656 229.835938 271.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.496094 340.179688 C 211.496094 341.800781 209.066406 341.800781 209.066406 340.179688 C 209.066406 338.558594 211.496094 338.558594 211.496094 340.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.078125 82.875 C 125.078125 84.496094 122.648438 84.496094 122.648438 82.875 C 122.648438 81.253906 125.078125 81.253906 125.078125 82.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.125 223.074219 C 256.125 224.695312 253.695312 224.695312 253.695312 223.074219 C 253.695312 221.453125 256.125 221.453125 256.125 223.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.09375 232.539062 C 299.09375 234.160156 296.664062 234.160156 296.664062 232.539062 C 296.664062 230.921875 299.09375 230.921875 299.09375 232.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.796875 279.621094 C 328.796875 281.242188 326.367188 281.242188 326.367188 279.621094 C 326.367188 278 328.796875 278 328.796875 279.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.941406 206.988281 C 330.941406 208.609375 328.511719 208.609375 328.511719 206.988281 C 328.511719 205.367188 330.941406 205.367188 330.941406 206.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.9375 338.902344 C 256.9375 340.523438 254.507812 340.523438 254.507812 338.902344 C 254.507812 337.28125 256.9375 337.28125 256.9375 338.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.445312 306.144531 C 337.445312 307.765625 335.015625 307.765625 335.015625 306.144531 C 335.015625 304.527344 337.445312 304.527344 337.445312 306.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.476562 205.59375 C 284.476562 207.210938 282.046875 207.210938 282.046875 205.59375 C 282.046875 203.972656 284.476562 203.972656 284.476562 205.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.738281 146.773438 C 196.738281 148.394531 194.308594 148.394531 194.308594 146.773438 C 194.308594 145.152344 196.738281 145.152344 196.738281 146.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.734375 70.910156 L 167.371094 73.746094 L 164.097656 73.746094 Z M 165.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.835938 99.050781 C 271.835938 100.671875 269.40625 100.671875 269.40625 99.050781 C 269.40625 97.433594 271.835938 97.433594 271.835938 99.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.730469 70.910156 L 207.363281 73.746094 L 204.09375 73.746094 Z M 205.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.734375 268.613281 C 146.734375 270.234375 144.304688 270.234375 144.304688 268.613281 C 144.304688 266.992188 146.734375 266.992188 146.734375 268.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.753906 411.601562 C 227.753906 413.222656 225.324219 413.222656 225.324219 411.601562 C 225.324219 409.980469 227.753906 409.980469 227.753906 411.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.917969 418.691406 L 150.554688 415.855469 L 147.28125 415.855469 Z M 148.917969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.136719 418.691406 L 262.773438 415.855469 L 259.5 415.855469 Z M 261.136719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.925781 233.570312 C 265.925781 235.191406 263.496094 235.191406 263.496094 233.570312 C 263.496094 231.953125 265.925781 231.953125 265.925781 233.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 374.96875 C 118.445312 376.589844 116.015625 376.589844 116.015625 374.96875 C 116.015625 373.347656 118.445312 373.347656 118.445312 374.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.648438 195.847656 C 288.648438 197.46875 286.21875 197.46875 286.21875 195.847656 C 286.21875 194.226562 288.648438 194.226562 288.648438 195.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.367188 227.398438 C 262.367188 229.019531 259.9375 229.019531 259.9375 227.398438 C 259.9375 225.777344 262.367188 225.777344 262.367188 227.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.359375 208.101562 C 124.359375 209.71875 121.929688 209.71875 121.929688 208.101562 C 121.929688 206.480469 124.359375 206.480469 124.359375 208.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.226562 136.59375 C 268.226562 138.214844 265.796875 138.214844 265.796875 136.59375 C 265.796875 134.972656 268.226562 134.972656 268.226562 136.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.597656 248.359375 C 286.597656 249.980469 284.167969 249.980469 284.167969 248.359375 C 284.167969 246.738281 286.597656 246.738281 286.597656 248.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.355469 348.15625 C 277.355469 349.773438 274.921875 349.773438 274.921875 348.15625 C 274.921875 346.535156 277.355469 346.535156 277.355469 348.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.269531 70.910156 L 138.90625 73.746094 L 135.632812 73.746094 Z M 137.269531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.632812 263.605469 C 215.632812 265.226562 213.203125 265.226562 213.203125 263.605469 C 213.203125 261.984375 215.632812 261.984375 215.632812 263.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.953125 127.195312 C 178.953125 128.816406 176.523438 128.816406 176.523438 127.195312 C 176.523438 125.578125 178.953125 125.578125 178.953125 127.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.300781 70.910156 L 128.9375 73.746094 L 125.664062 73.746094 Z M 127.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.371094 227.71875 C 319.371094 229.339844 316.941406 229.339844 316.941406 227.71875 C 316.941406 226.097656 319.371094 226.097656 319.371094 227.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.933594 418.691406 L 162.570312 415.855469 L 159.296875 415.855469 Z M 160.933594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.316406 418.691406 L 230.953125 415.855469 L 227.679688 415.855469 Z M 229.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.90625 264.453125 C 331.90625 266.074219 329.476562 266.074219 329.476562 264.453125 C 329.476562 262.832031 331.90625 262.832031 331.90625 264.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.070312 102.667969 C 225.070312 104.289062 222.640625 104.289062 222.640625 102.667969 C 222.640625 101.046875 225.070312 101.046875 225.070312 102.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.628906 300.164062 C 207.628906 301.785156 205.199219 301.785156 205.199219 300.164062 C 205.199219 298.546875 207.628906 298.546875 207.628906 300.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.574219 80.570312 C 248.574219 82.191406 246.144531 82.191406 246.144531 80.570312 C 246.144531 78.953125 248.574219 78.953125 248.574219 80.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.644531 385.503906 C 282.644531 387.121094 280.214844 387.121094 280.214844 385.503906 C 280.214844 383.882812 282.644531 383.882812 282.644531 385.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 332.074219 418.691406 L 333.710938 415.855469 L 330.441406 415.855469 Z M 332.074219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.113281 265.15625 C 267.113281 266.777344 264.679688 266.777344 264.679688 265.15625 C 264.679688 263.535156 267.113281 263.535156 267.113281 265.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.960938 159.203125 C 277.960938 160.824219 275.53125 160.824219 275.53125 159.203125 C 275.53125 157.582031 277.960938 157.582031 277.960938 159.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.417969 270.222656 C 267.417969 271.839844 264.988281 271.839844 264.988281 270.222656 C 264.988281 268.601562 267.417969 268.601562 267.417969 270.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.152344 273.023438 C 197.152344 274.644531 194.722656 274.644531 194.722656 273.023438 C 194.722656 271.402344 197.152344 271.402344 197.152344 273.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.148438 267 C 273.148438 268.621094 270.71875 268.621094 270.71875 267 C 270.71875 265.382812 273.148438 265.382812 273.148438 267 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.863281 279.382812 C 260.863281 281 258.433594 281 258.433594 279.382812 C 258.433594 277.761719 260.863281 277.761719 260.863281 279.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.542969 233.953125 C 218.542969 235.574219 216.113281 235.574219 216.113281 233.953125 C 216.113281 232.332031 218.542969 232.332031 218.542969 233.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.722656 248.839844 C 223.722656 250.460938 221.292969 250.460938 221.292969 248.839844 C 221.292969 247.21875 223.722656 247.21875 223.722656 248.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.3125 70.910156 L 292.949219 73.746094 L 289.675781 73.746094 Z M 291.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.394531 173.273438 C 110.394531 174.890625 107.964844 174.890625 107.964844 173.273438 C 107.964844 171.652344 110.394531 171.652344 110.394531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.195312 70.910156 L 240.832031 73.746094 L 237.558594 73.746094 Z M 239.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.832031 278.765625 C 236.832031 280.386719 234.398438 280.386719 234.398438 278.765625 C 234.398438 277.144531 236.832031 277.144531 236.832031 278.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.980469 258.273438 C 281.980469 259.894531 279.550781 259.894531 279.550781 258.273438 C 279.550781 256.652344 281.980469 256.652344 281.980469 258.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.417969 270.238281 C 168.417969 271.859375 165.988281 271.859375 165.988281 270.238281 C 165.988281 268.617188 168.417969 268.617188 168.417969 270.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.171875 353.246094 C 266.171875 354.867188 263.742188 354.867188 263.742188 353.246094 C 263.742188 351.625 266.171875 351.625 266.171875 353.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 354.5625 296.886719 C 354.5625 298.507812 352.132812 298.507812 352.132812 296.886719 C 352.132812 295.265625 354.5625 295.265625 354.5625 296.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.121094 279.007812 C 251.121094 280.628906 248.691406 280.628906 248.691406 279.007812 C 248.691406 277.386719 251.121094 277.386719 251.121094 279.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.691406 70.910156 L 225.328125 73.746094 L 222.054688 73.746094 Z M 223.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.601562 217.941406 C 200.601562 219.5625 198.171875 219.5625 198.171875 217.941406 C 198.171875 216.324219 200.601562 216.324219 200.601562 217.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.382812 295.101562 C 202.382812 296.722656 199.953125 296.722656 199.953125 295.101562 C 199.953125 293.484375 202.382812 293.484375 202.382812 295.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.917969 418.691406 L 110.550781 415.855469 L 107.28125 415.855469 Z M 108.917969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.148438 198.597656 C 247.148438 200.214844 244.71875 200.214844 244.71875 198.597656 C 244.71875 196.976562 247.148438 196.976562 247.148438 198.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.542969 288.460938 C 257.542969 290.082031 255.113281 290.082031 255.113281 288.460938 C 255.113281 286.84375 257.542969 286.84375 257.542969 288.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.347656 296.414062 C 291.347656 298.03125 288.917969 298.03125 288.917969 296.414062 C 288.917969 294.792969 291.347656 294.792969 291.347656 296.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.816406 418.691406 L 139.453125 415.855469 L 136.179688 415.855469 Z M 137.816406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.445312 236.144531 C 221.445312 237.761719 219.015625 237.761719 219.015625 236.144531 C 219.015625 234.523438 221.445312 234.523438 221.445312 236.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.507812 70.910156 L 214.144531 73.746094 L 210.871094 73.746094 Z M 212.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.675781 81.992188 C 142.675781 83.613281 140.246094 83.613281 140.246094 81.992188 C 140.246094 80.371094 142.675781 80.371094 142.675781 81.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.40625 152.464844 C 174.40625 154.085938 171.976562 154.085938 171.976562 152.464844 C 171.976562 150.84375 174.40625 150.84375 174.40625 152.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.300781 340.25 C 243.300781 341.867188 240.871094 341.867188 240.871094 340.25 C 240.871094 338.628906 243.300781 338.628906 243.300781 340.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.382812 216.140625 C 189.382812 217.757812 186.953125 217.757812 186.953125 216.140625 C 186.953125 214.519531 189.382812 214.519531 189.382812 216.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.1875 195.199219 C 206.1875 196.820312 203.757812 196.820312 203.757812 195.199219 C 203.757812 193.582031 206.1875 193.582031 206.1875 195.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.808594 272.371094 C 222.808594 273.992188 220.378906 273.992188 220.378906 272.371094 C 220.378906 270.75 222.808594 270.75 222.808594 272.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.960938 277.691406 C 238.960938 279.308594 236.53125 279.308594 236.53125 277.691406 C 236.53125 276.070312 238.960938 276.070312 238.960938 277.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.707031 70.910156 L 285.34375 73.746094 L 282.074219 73.746094 Z M 283.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.082031 125.894531 C 265.082031 127.515625 262.652344 127.515625 262.652344 125.894531 C 262.652344 124.277344 265.082031 124.277344 265.082031 125.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.234375 287.253906 C 245.234375 288.875 242.804688 288.875 242.804688 287.253906 C 242.804688 285.636719 245.234375 285.636719 245.234375 287.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.242188 251.0625 C 245.242188 252.679688 242.8125 252.679688 242.8125 251.0625 C 242.8125 249.441406 245.242188 249.441406 245.242188 251.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.71875 70.910156 L 136.355469 73.746094 L 133.082031 73.746094 Z M 134.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.261719 312.207031 C 330.261719 313.828125 327.832031 313.828125 327.832031 312.207031 C 327.832031 310.589844 330.261719 310.589844 330.261719 312.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.066406 215.871094 C 287.066406 217.488281 284.636719 217.488281 284.636719 215.871094 C 284.636719 214.25 287.066406 214.25 287.066406 215.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.621094 194.402344 C 305.621094 196.019531 303.191406 196.019531 303.191406 194.402344 C 303.191406 192.78125 305.621094 192.78125 305.621094 194.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.527344 138.203125 C 305.527344 139.820312 303.097656 139.820312 303.097656 138.203125 C 303.097656 136.582031 305.527344 136.582031 305.527344 138.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.523438 216.066406 C 228.523438 217.6875 226.09375 217.6875 226.09375 216.066406 C 226.09375 214.449219 228.523438 214.449219 228.523438 216.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.03125 70.910156 L 199.664062 73.746094 L 196.394531 73.746094 Z M 198.03125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.855469 70.910156 L 218.492188 73.746094 L 215.21875 73.746094 Z M 216.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.179688 105.027344 C 158.179688 106.648438 155.75 106.648438 155.75 105.027344 C 155.75 103.40625 158.179688 103.40625 158.179688 105.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.535156 218.203125 C 297.535156 219.824219 295.105469 219.824219 295.105469 218.203125 C 295.105469 216.585938 297.535156 216.585938 297.535156 218.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.960938 230.070312 C 313.960938 231.691406 311.53125 231.691406 311.53125 230.070312 C 311.53125 228.453125 313.960938 228.453125 313.960938 230.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.335938 268.015625 C 311.335938 269.632812 308.90625 269.632812 308.90625 268.015625 C 308.90625 266.394531 311.335938 266.394531 311.335938 268.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.371094 299.992188 C 198.371094 301.609375 195.941406 301.609375 195.941406 299.992188 C 195.941406 298.371094 198.371094 298.371094 198.371094 299.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.15625 310.269531 C 236.15625 311.890625 233.726562 311.890625 233.726562 310.269531 C 233.726562 308.648438 236.15625 308.648438 236.15625 310.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.1875 281.480469 C 315.1875 283.101562 312.753906 283.101562 312.753906 281.480469 C 312.753906 279.859375 315.1875 279.859375 315.1875 281.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.039062 297.296875 C 255.039062 298.914062 252.609375 298.914062 252.609375 297.296875 C 252.609375 295.675781 255.039062 295.675781 255.039062 297.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.84375 268.027344 C 289.84375 269.644531 287.414062 269.644531 287.414062 268.027344 C 287.414062 266.40625 289.84375 266.40625 289.84375 268.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.289062 125.027344 C 147.289062 126.644531 144.859375 126.644531 144.859375 125.027344 C 144.859375 123.40625 147.289062 123.40625 147.289062 125.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.394531 138.402344 C 243.394531 140.023438 240.964844 140.023438 240.964844 138.402344 C 240.964844 136.785156 243.394531 136.785156 243.394531 138.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.546875 303.894531 C 197.546875 305.515625 195.117188 305.515625 195.117188 303.894531 C 195.117188 302.273438 197.546875 302.273438 197.546875 303.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 377.722656 144.917969 C 377.722656 146.535156 375.292969 146.535156 375.292969 144.917969 C 375.292969 143.296875 377.722656 143.296875 377.722656 144.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.621094 70.910156 L 127.253906 73.746094 L 123.984375 73.746094 Z M 125.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.265625 212.179688 C 254.265625 213.800781 251.835938 213.800781 251.835938 212.179688 C 251.835938 210.5625 254.265625 210.5625 254.265625 212.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.910156 240.445312 C 246.910156 242.0625 244.480469 242.0625 244.480469 240.445312 C 244.480469 238.824219 246.910156 238.824219 246.910156 240.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.445312 207.242188 C 335.445312 208.863281 333.015625 208.863281 333.015625 207.242188 C 333.015625 205.625 335.445312 205.625 335.445312 207.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.554688 226.796875 C 220.554688 228.414062 218.125 228.414062 218.125 226.796875 C 218.125 225.175781 220.554688 225.175781 220.554688 226.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.402344 244.691406 C 260.402344 246.3125 257.972656 246.3125 257.972656 244.691406 C 257.972656 243.070312 260.402344 243.070312 260.402344 244.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.710938 323.859375 C 303.710938 325.476562 301.28125 325.476562 301.28125 323.859375 C 301.28125 322.238281 303.710938 322.238281 303.710938 323.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.703125 145.957031 C 251.703125 147.578125 249.273438 147.578125 249.273438 145.957031 C 249.273438 144.335938 251.703125 144.335938 251.703125 145.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.507812 101.5 C 194.507812 103.121094 192.078125 103.121094 192.078125 101.5 C 192.078125 99.878906 194.507812 99.878906 194.507812 101.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.757812 359.160156 C 156.757812 360.78125 154.328125 360.78125 154.328125 359.160156 C 154.328125 357.539062 156.757812 357.539062 156.757812 359.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.476562 224.539062 C 166.476562 226.15625 164.046875 226.15625 164.046875 224.539062 C 164.046875 222.917969 166.476562 222.917969 166.476562 224.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.847656 344.015625 C 201.847656 345.636719 199.414062 345.636719 199.414062 344.015625 C 199.414062 342.394531 201.847656 342.394531 201.847656 344.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.367188 197.085938 C 265.367188 198.703125 262.9375 198.703125 262.9375 197.085938 C 262.9375 195.464844 265.367188 195.464844 265.367188 197.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.117188 282.546875 C 204.117188 284.167969 201.6875 284.167969 201.6875 282.546875 C 201.6875 280.929688 204.117188 280.929688 204.117188 282.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.800781 270.421875 C 249.800781 272.042969 247.371094 272.042969 247.371094 270.421875 C 247.371094 268.800781 249.800781 268.800781 249.800781 270.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.507812 370.515625 C 147.507812 372.136719 145.078125 372.136719 145.078125 370.515625 C 145.078125 368.894531 147.507812 368.894531 147.507812 370.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.058594 349.15625 C 292.058594 350.777344 289.628906 350.777344 289.628906 349.15625 C 289.628906 347.535156 292.058594 347.535156 292.058594 349.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.003906 195.667969 C 240.003906 197.289062 237.574219 197.289062 237.574219 195.667969 C 237.574219 194.050781 240.003906 194.050781 240.003906 195.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.96875 271.671875 C 264.96875 273.292969 262.539062 273.292969 262.539062 271.671875 C 262.539062 270.050781 264.96875 270.050781 264.96875 271.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.714844 70.910156 L 161.351562 73.746094 L 158.078125 73.746094 Z M 159.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.457031 245.570312 C 258.457031 247.191406 256.027344 247.191406 256.027344 245.570312 C 256.027344 243.953125 258.457031 243.953125 258.457031 245.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.621094 222.882812 C 211.621094 224.5 209.191406 224.5 209.191406 222.882812 C 209.191406 221.261719 211.621094 221.261719 211.621094 222.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.242188 256.945312 C 203.242188 258.566406 200.8125 258.566406 200.8125 256.945312 C 200.8125 255.324219 203.242188 255.324219 203.242188 256.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.597656 273.875 C 237.597656 275.496094 235.167969 275.496094 235.167969 273.875 C 235.167969 272.253906 237.597656 272.253906 237.597656 273.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.34375 260.125 C 192.34375 261.742188 189.914062 261.742188 189.914062 260.125 C 189.914062 258.503906 192.34375 258.503906 192.34375 260.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.335938 70.910156 L 200.972656 73.746094 L 197.699219 73.746094 Z M 199.335938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.109375 70.910156 L 233.746094 73.746094 L 230.472656 73.746094 Z M 232.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.996094 70.910156 L 152.632812 73.746094 L 149.359375 73.746094 Z M 150.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.128906 286.398438 C 272.128906 288.019531 269.699219 288.019531 269.699219 286.398438 C 269.699219 284.777344 272.128906 284.777344 272.128906 286.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.464844 283.539062 C 311.464844 285.160156 309.035156 285.160156 309.035156 283.539062 C 309.035156 281.917969 311.464844 281.917969 311.464844 283.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.660156 287.238281 C 183.660156 288.855469 181.230469 288.855469 181.230469 287.238281 C 181.230469 285.617188 183.660156 285.617188 183.660156 287.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.15625 263.03125 C 268.15625 264.652344 265.726562 264.652344 265.726562 263.03125 C 265.726562 261.414062 268.15625 261.414062 268.15625 263.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.992188 292.074219 C 247.992188 293.691406 245.5625 293.691406 245.5625 292.074219 C 245.5625 290.453125 247.992188 290.453125 247.992188 292.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.996094 323.253906 C 203.996094 324.875 201.566406 324.875 201.566406 323.253906 C 201.566406 321.632812 203.996094 321.632812 203.996094 323.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.394531 70.910156 L 180.03125 73.746094 L 176.757812 73.746094 Z M 178.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.375 91.5 C 200.375 93.121094 197.945312 93.121094 197.945312 91.5 C 197.945312 89.882812 200.375 89.882812 200.375 91.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.585938 215.175781 C 270.585938 216.796875 268.15625 216.796875 268.15625 215.175781 C 268.15625 213.554688 270.585938 213.554688 270.585938 215.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.808594 229.582031 C 279.808594 231.203125 277.378906 231.203125 277.378906 229.582031 C 277.378906 227.960938 279.808594 227.960938 279.808594 229.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.136719 225.984375 C 247.136719 227.605469 244.703125 227.605469 244.703125 225.984375 C 244.703125 224.363281 247.136719 224.363281 247.136719 225.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.136719 216.011719 C 280.136719 217.632812 277.707031 217.632812 277.707031 216.011719 C 277.707031 214.394531 280.136719 214.394531 280.136719 216.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.441406 223.359375 C 270.441406 224.980469 268.011719 224.980469 268.011719 223.359375 C 268.011719 221.742188 270.441406 221.742188 270.441406 223.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.449219 248.605469 C 219.449219 250.226562 217.019531 250.226562 217.019531 248.605469 C 217.019531 246.984375 219.449219 246.984375 219.449219 248.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.78125 179.4375 C 146.78125 181.058594 144.351562 181.058594 144.351562 179.4375 C 144.351562 177.816406 146.78125 177.816406 146.78125 179.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.683594 239.453125 C 237.683594 241.074219 235.253906 241.074219 235.253906 239.453125 C 235.253906 237.835938 237.683594 237.835938 237.683594 239.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.699219 192.503906 C 206.699219 194.125 204.265625 194.125 204.265625 192.503906 C 204.265625 190.882812 206.699219 190.882812 206.699219 192.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.703125 183.3125 C 208.703125 184.933594 206.273438 184.933594 206.273438 183.3125 C 206.273438 181.691406 208.703125 181.691406 208.703125 183.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.78125 160.671875 C 196.78125 162.289062 194.351562 162.289062 194.351562 160.671875 C 194.351562 159.050781 196.78125 159.050781 196.78125 160.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.605469 184.117188 C 288.605469 185.734375 286.175781 185.734375 286.175781 184.117188 C 286.175781 182.496094 288.605469 182.496094 288.605469 184.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.472656 294.492188 C 249.472656 296.113281 247.042969 296.113281 247.042969 294.492188 C 247.042969 292.875 249.472656 292.875 249.472656 294.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.203125 274.960938 C 286.203125 276.578125 283.769531 276.578125 283.769531 274.960938 C 283.769531 273.339844 286.203125 273.339844 286.203125 274.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.238281 253.332031 C 338.238281 254.953125 335.808594 254.953125 335.808594 253.332031 C 335.808594 251.710938 338.238281 251.710938 338.238281 253.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.0625 258.941406 C 264.0625 260.558594 261.632812 260.558594 261.632812 258.941406 C 261.632812 257.320312 264.0625 257.320312 264.0625 258.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.566406 70.910156 L 131.203125 73.746094 L 127.929688 73.746094 Z M 129.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.300781 342.859375 C 168.300781 344.480469 165.871094 344.480469 165.871094 342.859375 C 165.871094 341.242188 168.300781 341.242188 168.300781 342.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.914062 243.777344 C 150.914062 245.394531 148.484375 245.394531 148.484375 243.777344 C 148.484375 242.15625 150.914062 242.15625 150.914062 243.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.222656 205.03125 C 165.222656 206.652344 162.792969 206.652344 162.792969 205.03125 C 162.792969 203.410156 165.222656 203.410156 165.222656 205.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.027344 250.105469 C 297.027344 251.726562 294.597656 251.726562 294.597656 250.105469 C 294.597656 248.484375 297.027344 248.484375 297.027344 250.105469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.878906 418.691406 L 222.515625 415.855469 L 219.242188 415.855469 Z M 220.878906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.933594 222.347656 C 228.933594 223.964844 226.5 223.964844 226.5 222.347656 C 226.5 220.726562 228.933594 220.726562 228.933594 222.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.359375 70.910156 L 130.996094 73.746094 L 127.722656 73.746094 Z M 129.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.351562 260.296875 C 262.351562 261.917969 259.921875 261.917969 259.921875 260.296875 C 259.921875 258.679688 262.351562 258.679688 262.351562 260.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.628906 144.839844 C 192.628906 146.457031 190.199219 146.457031 190.199219 144.839844 C 190.199219 143.21875 192.628906 143.21875 192.628906 144.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.757812 174.78125 C 253.757812 176.398438 251.328125 176.398438 251.328125 174.78125 C 251.328125 173.160156 253.757812 173.160156 253.757812 174.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.898438 227.53125 C 168.898438 229.152344 166.46875 229.152344 166.46875 227.53125 C 166.46875 225.910156 168.898438 225.910156 168.898438 227.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.722656 286.882812 C 214.722656 288.503906 212.292969 288.503906 212.292969 286.882812 C 212.292969 285.261719 214.722656 285.261719 214.722656 286.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.949219 274.453125 C 301.949219 276.074219 299.519531 276.074219 299.519531 274.453125 C 299.519531 272.832031 301.949219 272.832031 301.949219 274.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.914062 272.363281 C 249.914062 273.984375 247.484375 273.984375 247.484375 272.363281 C 247.484375 270.742188 249.914062 270.742188 249.914062 272.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.921875 281.355469 C 285.921875 282.976562 283.492188 282.976562 283.492188 281.355469 C 283.492188 279.738281 285.921875 279.738281 285.921875 281.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.148438 290.351562 C 277.148438 291.972656 274.71875 291.972656 274.71875 290.351562 C 274.71875 288.730469 277.148438 288.730469 277.148438 290.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.222656 286.582031 C 209.222656 288.203125 206.792969 288.203125 206.792969 286.582031 C 206.792969 284.964844 209.222656 284.964844 209.222656 286.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.945312 241.859375 C 310.945312 243.480469 308.515625 243.480469 308.515625 241.859375 C 308.515625 240.238281 310.945312 240.238281 310.945312 241.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.269531 311.738281 C 271.269531 313.359375 268.839844 313.359375 268.839844 311.738281 C 268.839844 310.117188 271.269531 310.117188 271.269531 311.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.691406 227.632812 C 148.691406 229.25 146.261719 229.25 146.261719 227.632812 C 146.261719 226.011719 148.691406 226.011719 148.691406 227.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.328125 70.910156 L 240.964844 73.746094 L 237.691406 73.746094 Z M 239.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.875 237.679688 C 277.875 239.300781 275.445312 239.300781 275.445312 237.679688 C 275.445312 236.058594 277.875 236.058594 277.875 237.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.730469 259.410156 C 272.730469 261.03125 270.300781 261.03125 270.300781 259.410156 C 270.300781 257.789062 272.730469 257.789062 272.730469 259.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.328125 238.445312 C 227.328125 240.066406 224.898438 240.066406 224.898438 238.445312 C 224.898438 236.824219 227.328125 236.824219 227.328125 238.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.105469 244.949219 C 207.105469 246.570312 204.675781 246.570312 204.675781 244.949219 C 204.675781 243.332031 207.105469 243.332031 207.105469 244.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.347656 243.023438 C 206.347656 244.644531 203.917969 244.644531 203.917969 243.023438 C 203.917969 241.402344 206.347656 241.402344 206.347656 243.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.953125 284.710938 C 174.953125 286.332031 172.523438 286.332031 172.523438 284.710938 C 172.523438 283.09375 174.953125 283.09375 174.953125 284.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.375 152.796875 C 315.375 154.417969 312.945312 154.417969 312.945312 152.796875 C 312.945312 151.175781 315.375 151.175781 315.375 152.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.082031 241.015625 C 302.082031 242.636719 299.652344 242.636719 299.652344 241.015625 C 299.652344 239.394531 302.082031 239.394531 302.082031 241.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.804688 151.632812 C 130.804688 153.25 128.375 153.25 128.375 151.632812 C 128.375 150.011719 130.804688 150.011719 130.804688 151.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.8125 70.910156 L 252.449219 73.746094 L 249.175781 73.746094 Z M 250.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.679688 118.789062 C 283.679688 120.410156 281.25 120.410156 281.25 118.789062 C 281.25 117.167969 283.679688 117.167969 283.679688 118.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.246094 186.546875 C 258.246094 188.167969 255.816406 188.167969 255.816406 186.546875 C 255.816406 184.925781 258.246094 184.925781 258.246094 186.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.539062 250.605469 C 246.539062 252.226562 244.109375 252.226562 244.109375 250.605469 C 244.109375 248.988281 246.539062 248.988281 246.539062 250.605469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.40625 70.910156 L 208.042969 73.746094 L 204.769531 73.746094 Z M 206.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.714844 214.390625 C 244.714844 216.007812 242.285156 216.007812 242.285156 214.390625 C 242.285156 212.769531 244.714844 212.769531 244.714844 214.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.457031 190.207031 C 227.457031 191.828125 225.027344 191.828125 225.027344 190.207031 C 225.027344 188.589844 227.457031 188.589844 227.457031 190.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.617188 251.84375 C 201.617188 253.460938 199.1875 253.460938 199.1875 251.84375 C 199.1875 250.222656 201.617188 250.222656 201.617188 251.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.082031 296.773438 C 261.082031 298.394531 258.648438 298.394531 258.648438 296.773438 C 258.648438 295.15625 261.082031 295.15625 261.082031 296.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.726562 309.285156 C 201.726562 310.90625 199.296875 310.90625 199.296875 309.285156 C 199.296875 307.667969 201.726562 307.667969 201.726562 309.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.109375 254.1875 C 212.109375 255.804688 209.679688 255.804688 209.679688 254.1875 C 209.679688 252.566406 212.109375 252.566406 212.109375 254.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.503906 256.203125 C 300.503906 257.824219 298.070312 257.824219 298.070312 256.203125 C 298.070312 254.582031 300.503906 254.582031 300.503906 256.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.71875 326.011719 C 244.71875 327.632812 242.289062 327.632812 242.289062 326.011719 C 242.289062 324.390625 244.71875 324.390625 244.71875 326.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.230469 291.371094 C 208.230469 292.992188 205.800781 292.992188 205.800781 291.371094 C 205.800781 289.753906 208.230469 289.753906 208.230469 291.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.058594 194.574219 C 297.058594 196.195312 294.628906 196.195312 294.628906 194.574219 C 294.628906 192.953125 297.058594 192.953125 297.058594 194.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.710938 268.054688 C 188.710938 269.675781 186.28125 269.675781 186.28125 268.054688 C 186.28125 266.433594 188.710938 266.433594 188.710938 268.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.90625 150.183594 C 277.90625 151.800781 275.476562 151.800781 275.476562 150.183594 C 275.476562 148.5625 277.90625 148.5625 277.90625 150.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.828125 173.269531 C 111.828125 174.890625 109.398438 174.890625 109.398438 173.269531 C 109.398438 171.648438 111.828125 171.648438 111.828125 173.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.367188 279.347656 C 205.367188 280.96875 202.9375 280.96875 202.9375 279.347656 C 202.9375 277.730469 205.367188 277.730469 205.367188 279.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.074219 286.773438 C 249.074219 288.394531 246.644531 288.394531 246.644531 286.773438 C 246.644531 285.152344 249.074219 285.152344 249.074219 286.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.886719 255.878906 C 271.886719 257.496094 269.457031 257.496094 269.457031 255.878906 C 269.457031 254.257812 271.886719 254.257812 271.886719 255.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.683594 271.332031 C 248.683594 272.953125 246.253906 272.953125 246.253906 271.332031 C 246.253906 269.710938 248.683594 269.710938 248.683594 271.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.367188 240.402344 C 287.367188 242.019531 284.933594 242.019531 284.933594 240.402344 C 284.933594 238.78125 287.367188 238.78125 287.367188 240.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.441406 90.542969 C 124.441406 92.164062 122.011719 92.164062 122.011719 90.542969 C 122.011719 88.921875 124.441406 88.921875 124.441406 90.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.273438 287.9375 C 254.273438 289.558594 251.84375 289.558594 251.84375 287.9375 C 251.84375 286.320312 254.273438 286.320312 254.273438 287.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.972656 235.378906 C 301.972656 236.996094 299.542969 236.996094 299.542969 235.378906 C 299.542969 233.757812 301.972656 233.757812 301.972656 235.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.273438 254.753906 C 169.273438 256.375 166.84375 256.375 166.84375 254.753906 C 166.84375 253.132812 169.273438 253.132812 169.273438 254.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.28125 167.789062 C 154.28125 169.410156 151.851562 169.410156 151.851562 167.789062 C 151.851562 166.167969 154.28125 166.167969 154.28125 167.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.660156 207.0625 C 289.660156 208.683594 287.226562 208.683594 287.226562 207.0625 C 287.226562 205.441406 289.660156 205.441406 289.660156 207.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.933594 70.910156 L 143.566406 73.746094 L 140.296875 73.746094 Z M 141.933594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.664062 70.910156 L 223.300781 73.746094 L 220.027344 73.746094 Z M 221.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.824219 279.78125 C 241.824219 281.402344 239.394531 281.402344 239.394531 279.78125 C 239.394531 278.160156 241.824219 278.160156 241.824219 279.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.929688 70.910156 L 263.566406 73.746094 L 260.292969 73.746094 Z M 261.929688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.960938 418.691406 L 244.59375 415.855469 L 241.324219 415.855469 Z M 242.960938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.390625 94.710938 C 141.390625 96.332031 138.960938 96.332031 138.960938 94.710938 C 138.960938 93.089844 141.390625 93.089844 141.390625 94.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.441406 272.765625 C 215.441406 274.386719 213.011719 274.386719 213.011719 272.765625 C 213.011719 271.148438 215.441406 271.148438 215.441406 272.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.355469 150.628906 C 182.355469 152.25 179.925781 152.25 179.925781 150.628906 C 179.925781 149.011719 182.355469 149.011719 182.355469 150.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.597656 70.910156 L 234.234375 73.746094 L 230.960938 73.746094 Z M 232.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.921875 231.132812 C 208.921875 232.753906 206.492188 232.753906 206.492188 231.132812 C 206.492188 229.511719 208.921875 229.511719 208.921875 231.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.597656 286.074219 C 306.597656 287.695312 304.167969 287.695312 304.167969 286.074219 C 304.167969 284.453125 306.597656 284.453125 306.597656 286.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.328125 239.585938 C 299.328125 241.207031 296.898438 241.207031 296.898438 239.585938 C 296.898438 237.964844 299.328125 237.964844 299.328125 239.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.207031 279.304688 C 249.207031 280.925781 246.777344 280.925781 246.777344 279.304688 C 246.777344 277.6875 249.207031 277.6875 249.207031 279.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 357.660156 262.164062 C 357.660156 263.78125 355.230469 263.78125 355.230469 262.164062 C 355.230469 260.542969 357.660156 260.542969 357.660156 262.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.054688 70.910156 L 143.691406 73.746094 L 140.417969 73.746094 Z M 142.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.488281 249.136719 C 297.488281 250.757812 295.058594 250.757812 295.058594 249.136719 C 295.058594 247.519531 297.488281 247.519531 297.488281 249.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.058594 304.773438 C 316.058594 306.394531 313.628906 306.394531 313.628906 304.773438 C 313.628906 303.152344 316.058594 303.152344 316.058594 304.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.339844 285.757812 C 339.339844 287.375 336.910156 287.375 336.910156 285.757812 C 336.910156 284.136719 339.339844 284.136719 339.339844 285.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.503906 327.808594 C 276.503906 329.429688 274.074219 329.429688 274.074219 327.808594 C 274.074219 326.1875 276.503906 326.1875 276.503906 327.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.847656 127.578125 C 116.847656 129.199219 114.417969 129.199219 114.417969 127.578125 C 114.417969 125.960938 116.847656 125.960938 116.847656 127.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.144531 301.175781 C 263.144531 302.796875 260.714844 302.796875 260.714844 301.175781 C 260.714844 299.554688 263.144531 299.554688 263.144531 301.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.648438 108.523438 C 244.648438 110.144531 242.21875 110.144531 242.21875 108.523438 C 242.21875 106.902344 244.648438 106.902344 244.648438 108.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.078125 182.167969 C 259.078125 183.789062 256.648438 183.789062 256.648438 182.167969 C 256.648438 180.550781 259.078125 180.550781 259.078125 182.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.890625 309.453125 C 280.890625 311.070312 278.460938 311.070312 278.460938 309.453125 C 278.460938 307.832031 280.890625 307.832031 280.890625 309.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.664062 283.144531 C 270.664062 284.765625 268.234375 284.765625 268.234375 283.144531 C 268.234375 281.527344 270.664062 281.527344 270.664062 283.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.789062 261.597656 C 126.789062 263.21875 124.359375 263.21875 124.359375 261.597656 C 124.359375 259.980469 126.789062 259.980469 126.789062 261.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.007812 319.792969 C 241.007812 321.414062 238.578125 321.414062 238.578125 319.792969 C 238.578125 318.175781 241.007812 318.175781 241.007812 319.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.734375 337.578125 C 288.734375 339.199219 286.304688 339.199219 286.304688 337.578125 C 286.304688 335.960938 288.734375 335.960938 288.734375 337.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.589844 251.539062 C 208.589844 253.15625 206.15625 253.15625 206.15625 251.539062 C 206.15625 249.917969 208.589844 249.917969 208.589844 251.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.214844 392.527344 C 247.214844 394.148438 244.78125 394.148438 244.78125 392.527344 C 244.78125 390.90625 247.214844 390.90625 247.214844 392.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.722656 331.789062 C 253.722656 333.410156 251.292969 333.410156 251.292969 331.789062 C 251.292969 330.167969 253.722656 330.167969 253.722656 331.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.734375 303.945312 C 257.734375 305.5625 255.304688 305.5625 255.304688 303.945312 C 255.304688 302.324219 257.734375 302.324219 257.734375 303.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.121094 204.863281 C 273.121094 206.484375 270.691406 206.484375 270.691406 204.863281 C 270.691406 203.242188 273.121094 203.242188 273.121094 204.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.871094 202.457031 C 263.871094 204.078125 261.441406 204.078125 261.441406 202.457031 C 261.441406 200.835938 263.871094 200.835938 263.871094 202.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.875 418.691406 L 153.511719 415.855469 L 150.238281 415.855469 Z M 151.875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.613281 315.054688 C 235.613281 316.675781 233.183594 316.675781 233.183594 315.054688 C 233.183594 313.433594 235.613281 313.433594 235.613281 315.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.230469 268.253906 C 271.230469 269.871094 268.800781 269.871094 268.800781 268.253906 C 268.800781 266.632812 271.230469 266.632812 271.230469 268.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.019531 321.054688 C 251.019531 322.675781 248.589844 322.675781 248.589844 321.054688 C 248.589844 319.433594 251.019531 319.433594 251.019531 321.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.800781 258.351562 C 286.800781 259.972656 284.371094 259.972656 284.371094 258.351562 C 284.371094 256.734375 286.800781 256.734375 286.800781 258.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 179.640625 410.769531 C 179.640625 412.390625 177.210938 412.390625 177.210938 410.769531 C 177.210938 409.152344 179.640625 409.152344 179.640625 410.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.667969 253.734375 C 335.667969 255.355469 333.238281 255.355469 333.238281 253.734375 C 333.238281 252.113281 335.667969 252.113281 335.667969 253.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.570312 333.324219 C 233.570312 334.945312 231.140625 334.945312 231.140625 333.324219 C 231.140625 331.707031 233.570312 331.707031 233.570312 333.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.148438 118.742188 C 245.148438 120.359375 242.71875 120.359375 242.71875 118.742188 C 242.71875 117.121094 245.148438 117.121094 245.148438 118.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.550781 70.910156 L 233.1875 73.746094 L 229.917969 73.746094 Z M 231.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.648438 279.269531 C 256.648438 280.890625 254.21875 280.890625 254.21875 279.269531 C 254.21875 277.648438 256.648438 277.648438 256.648438 279.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.492188 285.15625 C 205.492188 286.777344 203.0625 286.777344 203.0625 285.15625 C 203.0625 283.539062 205.492188 283.539062 205.492188 285.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.890625 267.710938 C 275.890625 269.332031 273.460938 269.332031 273.460938 267.710938 C 273.460938 266.089844 275.890625 266.089844 275.890625 267.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.488281 207.011719 C 273.488281 208.632812 271.058594 208.632812 271.058594 207.011719 C 271.058594 205.394531 273.488281 205.394531 273.488281 207.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.523438 402 C 281.523438 403.617188 279.09375 403.617188 279.09375 402 C 279.09375 400.378906 281.523438 400.378906 281.523438 402 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.371094 256.425781 C 232.371094 258.046875 229.9375 258.046875 229.9375 256.425781 C 229.9375 254.804688 232.371094 254.804688 232.371094 256.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251 264.765625 C 251 266.386719 248.566406 266.386719 248.566406 264.765625 C 248.566406 263.144531 251 263.144531 251 264.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.820312 346.996094 C 181.820312 348.613281 179.390625 348.613281 179.390625 346.996094 C 179.390625 345.375 181.820312 345.375 181.820312 346.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.578125 359.359375 C 229.578125 360.980469 227.148438 360.980469 227.148438 359.359375 C 227.148438 357.738281 229.578125 357.738281 229.578125 359.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.632812 166.867188 C 316.632812 168.484375 314.203125 168.484375 314.203125 166.867188 C 314.203125 165.246094 316.632812 165.246094 316.632812 166.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.566406 373.132812 C 299.566406 374.75 297.136719 374.75 297.136719 373.132812 C 297.136719 371.511719 299.566406 371.511719 299.566406 373.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.96875 253.992188 C 252.96875 255.613281 250.539062 255.613281 250.539062 253.992188 C 250.539062 252.371094 252.96875 252.371094 252.96875 253.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.09375 211.230469 C 141.09375 212.847656 138.664062 212.847656 138.664062 211.230469 C 138.664062 209.609375 141.09375 209.609375 141.09375 211.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.554688 248.132812 C 222.554688 249.75 220.125 249.75 220.125 248.132812 C 220.125 246.511719 222.554688 246.511719 222.554688 248.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.722656 277.046875 C 241.722656 278.664062 239.292969 278.664062 239.292969 277.046875 C 239.292969 275.425781 241.722656 275.425781 241.722656 277.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.839844 257.109375 C 297.839844 258.730469 295.410156 258.730469 295.410156 257.109375 C 295.410156 255.492188 297.839844 255.492188 297.839844 257.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.316406 175.097656 C 296.316406 176.714844 293.886719 176.714844 293.886719 175.097656 C 293.886719 173.476562 296.316406 173.476562 296.316406 175.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.613281 245.515625 C 328.613281 247.136719 326.183594 247.136719 326.183594 245.515625 C 326.183594 243.894531 328.613281 243.894531 328.613281 245.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.179688 297.261719 C 278.179688 298.882812 275.75 298.882812 275.75 297.261719 C 275.75 295.644531 278.179688 295.644531 278.179688 297.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.453125 278.183594 C 294.453125 279.804688 292.023438 279.804688 292.023438 278.183594 C 292.023438 276.5625 294.453125 276.5625 294.453125 278.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.960938 254.675781 C 310.960938 256.296875 308.53125 256.296875 308.53125 254.675781 C 308.53125 253.054688 310.960938 253.054688 310.960938 254.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.128906 230.097656 C 278.128906 231.71875 275.699219 231.71875 275.699219 230.097656 C 275.699219 228.480469 278.128906 228.480469 278.128906 230.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.972656 319.859375 C 336.972656 321.476562 334.542969 321.476562 334.542969 319.859375 C 334.542969 318.238281 336.972656 318.238281 336.972656 319.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.089844 224.386719 C 323.089844 226.003906 320.65625 226.003906 320.65625 224.386719 C 320.65625 222.765625 323.089844 222.765625 323.089844 224.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.996094 266.9375 C 324.996094 268.554688 322.566406 268.554688 322.566406 266.9375 C 322.566406 265.316406 324.996094 265.316406 324.996094 266.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.210938 207.710938 C 300.210938 209.332031 297.78125 209.332031 297.78125 207.710938 C 297.78125 206.089844 300.210938 206.089844 300.210938 207.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.976562 256.308594 C 260.976562 257.929688 258.546875 257.929688 258.546875 256.308594 C 258.546875 254.691406 260.976562 254.691406 260.976562 256.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.882812 235.730469 C 297.882812 237.347656 295.453125 237.347656 295.453125 235.730469 C 295.453125 234.109375 297.882812 234.109375 297.882812 235.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.636719 237.894531 C 256.636719 239.515625 254.207031 239.515625 254.207031 237.894531 C 254.207031 236.277344 256.636719 236.277344 256.636719 237.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.210938 236.816406 C 233.210938 238.433594 230.78125 238.433594 230.78125 236.816406 C 230.78125 235.195312 233.210938 235.195312 233.210938 236.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.667969 242.125 C 294.667969 243.746094 292.238281 243.746094 292.238281 242.125 C 292.238281 240.503906 294.667969 240.503906 294.667969 242.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.160156 246.351562 C 142.160156 247.96875 139.730469 247.96875 139.730469 246.351562 C 139.730469 244.730469 142.160156 244.730469 142.160156 246.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.839844 285.957031 C 291.839844 287.578125 289.410156 287.578125 289.410156 285.957031 C 289.410156 284.335938 291.839844 284.335938 291.839844 285.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.84375 260.511719 C 299.84375 262.132812 297.414062 262.132812 297.414062 260.511719 C 297.414062 258.890625 299.84375 258.890625 299.84375 260.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 355.546875 267.542969 C 355.546875 269.164062 353.117188 269.164062 353.117188 267.542969 C 353.117188 265.921875 355.546875 265.921875 355.546875 267.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.597656 306.617188 C 231.597656 308.238281 229.164062 308.238281 229.164062 306.617188 C 229.164062 305 231.597656 305 231.597656 306.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.503906 316.410156 C 256.503906 318.027344 254.074219 318.027344 254.074219 316.410156 C 254.074219 314.789062 256.503906 314.789062 256.503906 316.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.746094 371.1875 C 282.746094 372.808594 280.316406 372.808594 280.316406 371.1875 C 280.316406 369.566406 282.746094 369.566406 282.746094 371.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.242188 352.476562 C 321.242188 354.097656 318.8125 354.097656 318.8125 352.476562 C 318.8125 350.859375 321.242188 350.859375 321.242188 352.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.816406 70.910156 L 215.453125 73.746094 L 212.179688 73.746094 Z M 213.816406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.910156 70.910156 L 128.546875 73.746094 L 125.273438 73.746094 Z M 126.910156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.035156 70.910156 L 130.671875 73.746094 L 127.398438 73.746094 Z M 129.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.234375 287.410156 C 275.234375 289.03125 272.804688 289.03125 272.804688 287.410156 C 272.804688 285.789062 275.234375 285.789062 275.234375 287.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.742188 70.910156 L 136.378906 73.746094 L 133.105469 73.746094 Z M 134.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.925781 203.902344 C 300.925781 205.523438 298.496094 205.523438 298.496094 203.902344 C 298.496094 202.285156 300.925781 202.285156 300.925781 203.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.800781 229.414062 C 290.800781 231.035156 288.371094 231.035156 288.371094 229.414062 C 288.371094 227.796875 290.800781 227.796875 290.800781 229.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.964844 179.210938 C 260.964844 180.832031 258.535156 180.832031 258.535156 179.210938 C 258.535156 177.589844 260.964844 177.589844 260.964844 179.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.257812 350.449219 C 307.257812 352.070312 304.828125 352.070312 304.828125 350.449219 C 304.828125 348.832031 307.257812 348.832031 307.257812 350.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.191406 360.523438 C 260.191406 362.144531 257.761719 362.144531 257.761719 360.523438 C 257.761719 358.902344 260.191406 358.902344 260.191406 360.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.945312 375.519531 C 271.945312 377.140625 269.515625 377.140625 269.515625 375.519531 C 269.515625 373.898438 271.945312 373.898438 271.945312 375.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.90625 319.890625 C 268.90625 321.507812 266.476562 321.507812 266.476562 319.890625 C 266.476562 318.269531 268.90625 318.269531 268.90625 319.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.238281 395.710938 C 262.238281 397.332031 259.808594 397.332031 259.808594 395.710938 C 259.808594 394.09375 262.238281 394.09375 262.238281 395.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.808594 418.691406 L 184.445312 415.855469 L 181.175781 415.855469 Z M 182.808594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.703125 380.019531 C 294.703125 381.636719 292.273438 381.636719 292.273438 380.019531 C 292.273438 378.398438 294.703125 378.398438 294.703125 380.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.285156 364.195312 C 279.285156 365.816406 276.855469 365.816406 276.855469 364.195312 C 276.855469 362.574219 279.285156 362.574219 279.285156 364.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.863281 154.023438 C 286.863281 155.644531 284.433594 155.644531 284.433594 154.023438 C 284.433594 152.402344 286.863281 152.402344 286.863281 154.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.703125 178.109375 C 279.703125 179.730469 277.273438 179.730469 277.273438 178.109375 C 277.273438 176.488281 279.703125 176.488281 279.703125 178.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.113281 183.257812 C 288.113281 184.878906 285.683594 184.878906 285.683594 183.257812 C 285.683594 181.640625 288.113281 181.640625 288.113281 183.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.816406 301.242188 C 263.816406 302.859375 261.386719 302.859375 261.386719 301.242188 C 261.386719 299.621094 263.816406 299.621094 263.816406 301.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.257812 317.4375 C 234.257812 319.058594 231.828125 319.058594 231.828125 317.4375 C 231.828125 315.816406 234.257812 315.816406 234.257812 317.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.945312 240.695312 C 148.945312 242.316406 146.515625 242.316406 146.515625 240.695312 C 146.515625 239.074219 148.945312 239.074219 148.945312 240.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.824219 267.558594 C 281.824219 269.179688 279.394531 269.179688 279.394531 267.558594 C 279.394531 265.941406 281.824219 265.941406 281.824219 267.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.648438 214.128906 C 218.648438 215.746094 216.21875 215.746094 216.21875 214.128906 C 216.21875 212.507812 218.648438 212.507812 218.648438 214.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.46875 265.054688 C 242.46875 266.675781 240.039062 266.675781 240.039062 265.054688 C 240.039062 263.4375 242.46875 263.4375 242.46875 265.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 372.941406 236.652344 C 372.941406 238.269531 370.507812 238.269531 370.507812 236.652344 C 370.507812 235.03125 372.941406 235.03125 372.941406 236.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.835938 125.03125 C 260.835938 126.652344 258.40625 126.652344 258.40625 125.03125 C 258.40625 123.414062 260.835938 123.414062 260.835938 125.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.464844 129.269531 C 200.464844 130.890625 198.035156 130.890625 198.035156 129.269531 C 198.035156 127.648438 200.464844 127.648438 200.464844 129.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.289062 152.273438 C 263.289062 153.894531 260.859375 153.894531 260.859375 152.273438 C 260.859375 150.652344 263.289062 150.652344 263.289062 152.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.371094 70.910156 L 159.007812 73.746094 L 155.734375 73.746094 Z M 157.371094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.351562 70.910156 L 156.988281 73.746094 L 153.714844 73.746094 Z M 155.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.433594 223.375 C 152.433594 224.992188 150.003906 224.992188 150.003906 223.375 C 150.003906 221.753906 152.433594 221.753906 152.433594 223.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.980469 228.832031 C 258.980469 230.453125 256.550781 230.453125 256.550781 228.832031 C 256.550781 227.214844 258.980469 227.214844 258.980469 228.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.570312 296.460938 C 274.570312 298.082031 272.140625 298.082031 272.140625 296.460938 C 272.140625 294.839844 274.570312 294.839844 274.570312 296.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.1875 146 C 214.1875 147.621094 211.757812 147.621094 211.757812 146 C 211.757812 144.378906 214.1875 144.378906 214.1875 146 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.15625 70.910156 L 252.792969 73.746094 L 249.519531 73.746094 Z M 251.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 349.945312 200.488281 C 349.945312 202.105469 347.515625 202.105469 347.515625 200.488281 C 347.515625 198.867188 349.945312 198.867188 349.945312 200.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.503906 300.566406 C 182.503906 302.1875 180.074219 302.1875 180.074219 300.566406 C 180.074219 298.949219 182.503906 298.949219 182.503906 300.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.3125 377.855469 C 120.3125 379.472656 117.882812 379.472656 117.882812 377.855469 C 117.882812 376.234375 120.3125 376.234375 120.3125 377.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.246094 418.691406 L 251.882812 415.855469 L 248.613281 415.855469 Z M 250.246094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.210938 226.664062 C 313.210938 228.28125 310.78125 228.28125 310.78125 226.664062 C 310.78125 225.042969 313.210938 225.042969 313.210938 226.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.933594 324.164062 C 287.933594 325.785156 285.503906 325.785156 285.503906 324.164062 C 285.503906 322.542969 287.933594 322.542969 287.933594 324.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.921875 283.242188 C 245.921875 284.863281 243.492188 284.863281 243.492188 283.242188 C 243.492188 281.621094 245.921875 281.621094 245.921875 283.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.886719 285.738281 C 231.886719 287.359375 229.457031 287.359375 229.457031 285.738281 C 229.457031 284.117188 231.886719 284.117188 231.886719 285.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.480469 354.5625 C 129.480469 356.183594 127.050781 356.183594 127.050781 354.5625 C 127.050781 352.941406 129.480469 352.941406 129.480469 354.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.246094 249.429688 C 116.246094 251.046875 113.816406 251.046875 113.816406 249.429688 C 113.816406 247.808594 116.246094 247.808594 116.246094 249.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.007812 141.21875 C 234.007812 142.839844 231.578125 142.839844 231.578125 141.21875 C 231.578125 139.597656 234.007812 139.597656 234.007812 141.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 409.410156 83.851562 C 409.410156 85.472656 406.980469 85.472656 406.980469 83.851562 C 406.980469 82.230469 409.410156 82.230469 409.410156 83.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.371094 198.835938 C 249.371094 200.457031 246.941406 200.457031 246.941406 198.835938 C 246.941406 197.21875 249.371094 197.21875 249.371094 198.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.808594 418.691406 L 241.445312 415.855469 L 238.171875 415.855469 Z M 239.808594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.238281 116.546875 C 119.238281 118.167969 116.808594 118.167969 116.808594 116.546875 C 116.808594 114.925781 119.238281 114.925781 119.238281 116.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.644531 308.152344 C 268.644531 309.773438 266.214844 309.773438 266.214844 308.152344 C 266.214844 306.535156 268.644531 306.535156 268.644531 308.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.527344 260.285156 C 265.527344 261.90625 263.097656 261.90625 263.097656 260.285156 C 263.097656 258.664062 265.527344 258.664062 265.527344 260.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.605469 262.941406 C 227.605469 264.5625 225.175781 264.5625 225.175781 262.941406 C 225.175781 261.324219 227.605469 261.324219 227.605469 262.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.214844 179.074219 C 227.214844 180.695312 224.785156 180.695312 224.785156 179.074219 C 224.785156 177.453125 227.214844 177.453125 227.214844 179.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.273438 382.414062 C 299.273438 384.035156 296.84375 384.035156 296.84375 382.414062 C 296.84375 380.792969 299.273438 380.792969 299.273438 382.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.011719 333.9375 C 290.011719 335.558594 287.582031 335.558594 287.582031 333.9375 C 287.582031 332.320312 290.011719 332.320312 290.011719 333.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.460938 418.691406 L 255.097656 415.855469 L 251.824219 415.855469 Z M 253.460938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.007812 70.910156 L 156.644531 73.746094 L 153.371094 73.746094 Z M 155.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.492188 219.265625 C 217.492188 220.886719 215.0625 220.886719 215.0625 219.265625 C 215.0625 217.648438 217.492188 217.648438 217.492188 219.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.035156 70.910156 L 254.671875 73.746094 L 251.398438 73.746094 Z M 253.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.015625 114.882812 C 243.015625 116.503906 240.585938 116.503906 240.585938 114.882812 C 240.585938 113.261719 243.015625 113.261719 243.015625 114.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.460938 418.691406 L 121.097656 415.855469 L 117.824219 415.855469 Z M 119.460938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.890625 70.910156 L 127.527344 73.746094 L 124.253906 73.746094 Z M 125.890625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.144531 70.910156 L 173.78125 73.746094 L 170.511719 73.746094 Z M 172.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.15625 367.585938 C 197.15625 369.203125 194.726562 369.203125 194.726562 367.585938 C 194.726562 365.964844 197.15625 365.964844 197.15625 367.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.03125 280.289062 C 287.03125 281.910156 284.601562 281.910156 284.601562 280.289062 C 284.601562 278.667969 287.03125 278.667969 287.03125 280.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.164062 239.160156 C 237.164062 240.78125 234.734375 240.78125 234.734375 239.160156 C 234.734375 237.539062 237.164062 237.539062 237.164062 239.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.539062 418.691406 L 283.175781 415.855469 L 279.902344 415.855469 Z M 281.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.945312 272.441406 C 274.945312 274.058594 272.515625 274.058594 272.515625 272.441406 C 272.515625 270.820312 274.945312 270.820312 274.945312 272.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.242188 309.519531 C 269.242188 311.140625 266.8125 311.140625 266.8125 309.519531 C 266.8125 307.902344 269.242188 307.902344 269.242188 309.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.121094 70.910156 L 186.757812 73.746094 L 183.484375 73.746094 Z M 185.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.261719 335.871094 C 181.261719 337.492188 178.832031 337.492188 178.832031 335.871094 C 178.832031 334.253906 181.261719 334.253906 181.261719 335.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.171875 70.910156 L 289.808594 73.746094 L 286.539062 73.746094 Z M 288.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.304688 166.367188 C 159.304688 167.988281 156.875 167.988281 156.875 166.367188 C 156.875 164.75 159.304688 164.75 159.304688 166.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.035156 287.714844 C 283.035156 289.335938 280.605469 289.335938 280.605469 287.714844 C 280.605469 286.097656 283.035156 286.097656 283.035156 287.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.335938 209.625 C 288.335938 211.242188 285.90625 211.242188 285.90625 209.625 C 285.90625 208.003906 288.335938 208.003906 288.335938 209.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.382812 346.582031 C 232.382812 348.203125 229.953125 348.203125 229.953125 346.582031 C 229.953125 344.964844 232.382812 344.964844 232.382812 346.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.136719 203.871094 C 254.136719 205.488281 251.703125 205.488281 251.703125 203.871094 C 251.703125 202.25 254.136719 202.25 254.136719 203.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.734375 277.867188 C 350.734375 279.488281 348.304688 279.488281 348.304688 277.867188 C 348.304688 276.246094 350.734375 276.246094 350.734375 277.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.019531 286.480469 C 193.019531 288.101562 190.589844 288.101562 190.589844 286.480469 C 190.589844 284.859375 193.019531 284.859375 193.019531 286.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.863281 113.644531 C 252.863281 115.265625 250.433594 115.265625 250.433594 113.644531 C 250.433594 112.023438 252.863281 112.023438 252.863281 113.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.226562 256.707031 C 237.226562 258.324219 234.796875 258.324219 234.796875 256.707031 C 234.796875 255.085938 237.226562 255.085938 237.226562 256.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.8125 193.527344 C 206.8125 195.148438 204.378906 195.148438 204.378906 193.527344 C 204.378906 191.90625 206.8125 191.90625 206.8125 193.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.082031 177.589844 C 275.082031 179.210938 272.652344 179.210938 272.652344 177.589844 C 272.652344 175.96875 275.082031 175.96875 275.082031 177.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.769531 185.007812 C 298.769531 186.625 296.339844 186.625 296.339844 185.007812 C 296.339844 183.386719 298.769531 183.386719 298.769531 185.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.808594 70.910156 L 188.445312 73.746094 L 185.171875 73.746094 Z M 186.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.5 325.707031 C 286.5 327.324219 284.070312 327.324219 284.070312 325.707031 C 284.070312 324.085938 286.5 324.085938 286.5 325.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.515625 172.699219 C 278.515625 174.320312 276.085938 174.320312 276.085938 172.699219 C 276.085938 171.078125 278.515625 171.078125 278.515625 172.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.128906 159.046875 C 298.128906 160.667969 295.699219 160.667969 295.699219 159.046875 C 295.699219 157.429688 298.128906 157.429688 298.128906 159.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.511719 70.910156 L 152.148438 73.746094 L 148.875 73.746094 Z M 150.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.972656 189.824219 C 108.972656 191.445312 106.542969 191.445312 106.542969 189.824219 C 106.542969 188.203125 108.972656 188.203125 108.972656 189.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191 342.648438 C 191 344.269531 188.570312 344.269531 188.570312 342.648438 C 188.570312 341.027344 191 341.027344 191 342.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.292969 393.800781 C 211.292969 395.421875 208.863281 395.421875 208.863281 393.800781 C 208.863281 392.179688 211.292969 392.179688 211.292969 393.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.867188 251.195312 C 274.867188 252.8125 272.4375 252.8125 272.4375 251.195312 C 272.4375 249.574219 274.867188 249.574219 274.867188 251.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.964844 299.984375 C 195.964844 301.605469 193.535156 301.605469 193.535156 299.984375 C 193.535156 298.363281 195.964844 298.363281 195.964844 299.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.050781 240.769531 C 213.050781 242.390625 210.621094 242.390625 210.621094 240.769531 C 210.621094 239.148438 213.050781 239.148438 213.050781 240.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.8125 418.691406 L 298.449219 415.855469 L 295.175781 415.855469 Z M 296.8125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.097656 138.457031 C 265.097656 140.078125 262.664062 140.078125 262.664062 138.457031 C 262.664062 136.839844 265.097656 136.839844 265.097656 138.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.761719 365.898438 C 134.761719 367.515625 132.332031 367.515625 132.332031 365.898438 C 132.332031 364.277344 134.761719 364.277344 134.761719 365.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.824219 223.578125 C 143.824219 225.199219 141.394531 225.199219 141.394531 223.578125 C 141.394531 221.957031 143.824219 221.957031 143.824219 223.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 368.847656 233.144531 C 368.847656 234.761719 366.414062 234.761719 366.414062 233.144531 C 366.414062 231.523438 368.847656 231.523438 368.847656 233.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.128906 217.933594 C 321.128906 219.554688 318.699219 219.554688 318.699219 217.933594 C 318.699219 216.3125 321.128906 216.3125 321.128906 217.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.328125 238.480469 C 297.328125 240.097656 294.898438 240.097656 294.898438 238.480469 C 294.898438 236.859375 297.328125 236.859375 297.328125 238.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.398438 292.847656 C 288.398438 294.464844 285.96875 294.464844 285.96875 292.847656 C 285.96875 291.226562 288.398438 291.226562 288.398438 292.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.347656 272.011719 C 328.347656 273.632812 325.917969 273.632812 325.917969 272.011719 C 325.917969 270.390625 328.347656 270.390625 328.347656 272.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.394531 70.910156 L 122.027344 73.746094 L 118.757812 73.746094 Z M 120.394531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.96875 70.910156 L 166.605469 73.746094 L 163.332031 73.746094 Z M 164.96875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.652344 70.910156 L 231.289062 73.746094 L 228.015625 73.746094 Z M 229.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.332031 405.992188 C 198.332031 407.613281 195.902344 407.613281 195.902344 405.992188 C 195.902344 404.371094 198.332031 404.371094 198.332031 405.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.242188 321.6875 C 204.242188 323.308594 201.8125 323.308594 201.8125 321.6875 C 201.8125 320.066406 204.242188 320.066406 204.242188 321.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.371094 337.652344 C 242.371094 339.273438 239.941406 339.273438 239.941406 337.652344 C 239.941406 336.03125 242.371094 336.03125 242.371094 337.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.753906 141.097656 C 114.753906 142.714844 112.324219 142.714844 112.324219 141.097656 C 112.324219 139.476562 114.753906 139.476562 114.753906 141.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.214844 268.609375 C 286.214844 270.230469 283.785156 270.230469 283.785156 268.609375 C 283.785156 266.988281 286.214844 266.988281 286.214844 268.609375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.050781 70.910156 L 254.6875 73.746094 L 251.414062 73.746094 Z M 253.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.8125 70.910156 L 148.449219 73.746094 L 145.175781 73.746094 Z M 146.8125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.628906 70.910156 L 238.265625 73.746094 L 234.992188 73.746094 Z M 236.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.113281 139.757812 C 247.113281 141.378906 244.683594 141.378906 244.683594 139.757812 C 244.683594 138.136719 247.113281 138.136719 247.113281 139.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.296875 198.960938 C 243.296875 200.578125 240.867188 200.578125 240.867188 198.960938 C 240.867188 197.339844 243.296875 197.339844 243.296875 198.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.824219 295.054688 C 271.824219 296.675781 269.394531 296.675781 269.394531 295.054688 C 269.394531 293.433594 271.824219 293.433594 271.824219 295.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.355469 220.5 C 314.355469 222.117188 311.925781 222.117188 311.925781 220.5 C 311.925781 218.878906 314.355469 218.878906 314.355469 220.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.207031 70.910156 L 178.84375 73.746094 L 175.570312 73.746094 Z M 177.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.589844 107.289062 C 273.589844 108.90625 271.160156 108.90625 271.160156 107.289062 C 271.160156 105.667969 273.589844 105.667969 273.589844 107.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.578125 70.910156 L 297.214844 73.746094 L 293.941406 73.746094 Z M 295.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.597656 70.910156 L 205.234375 73.746094 L 201.960938 73.746094 Z M 203.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.308594 250.933594 C 128.308594 252.550781 125.878906 252.550781 125.878906 250.933594 C 125.878906 249.3125 128.308594 249.3125 128.308594 250.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.59375 242.113281 C 320.59375 243.730469 318.164062 243.730469 318.164062 242.113281 C 318.164062 240.492188 320.59375 240.492188 320.59375 242.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.59375 274.835938 C 282.59375 276.453125 280.164062 276.453125 280.164062 274.835938 C 280.164062 273.214844 282.59375 273.214844 282.59375 274.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.023438 260.980469 C 289.023438 262.601562 286.59375 262.601562 286.59375 260.980469 C 286.59375 259.359375 289.023438 259.359375 289.023438 260.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.808594 332.445312 C 257.808594 334.066406 255.378906 334.066406 255.378906 332.445312 C 255.378906 330.824219 257.808594 330.824219 257.808594 332.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.136719 223.636719 C 201.136719 225.257812 198.707031 225.257812 198.707031 223.636719 C 198.707031 222.015625 201.136719 222.015625 201.136719 223.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.347656 283.070312 C 277.347656 284.691406 274.917969 284.691406 274.917969 283.070312 C 274.917969 281.449219 277.347656 281.449219 277.347656 283.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.105469 264.148438 C 263.105469 265.769531 260.675781 265.769531 260.675781 264.148438 C 260.675781 262.527344 263.105469 262.527344 263.105469 264.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.878906 70.910156 L 201.515625 73.746094 L 198.242188 73.746094 Z M 199.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.847656 316.246094 C 252.847656 317.863281 250.417969 317.863281 250.417969 316.246094 C 250.417969 314.625 252.847656 314.625 252.847656 316.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.695312 165.835938 C 128.695312 167.457031 126.265625 167.457031 126.265625 165.835938 C 126.265625 164.21875 128.695312 164.21875 128.695312 165.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.648438 267.789062 C 275.648438 269.410156 273.21875 269.410156 273.21875 267.789062 C 273.21875 266.171875 275.648438 266.171875 275.648438 267.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.46875 320.964844 C 250.46875 322.585938 248.039062 322.585938 248.039062 320.964844 C 248.039062 319.34375 250.46875 319.34375 250.46875 320.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.226562 304.699219 C 202.226562 306.320312 199.796875 306.320312 199.796875 304.699219 C 199.796875 303.078125 202.226562 303.078125 202.226562 304.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.378906 242.277344 C 216.378906 243.898438 213.949219 243.898438 213.949219 242.277344 C 213.949219 240.65625 216.378906 240.65625 216.378906 242.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.160156 278.714844 C 226.160156 280.335938 223.730469 280.335938 223.730469 278.714844 C 223.730469 277.09375 226.160156 277.09375 226.160156 278.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.433594 296.386719 C 260.433594 298.007812 258.003906 298.007812 258.003906 296.386719 C 258.003906 294.769531 260.433594 294.769531 260.433594 296.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.785156 149.363281 C 235.785156 150.984375 233.355469 150.984375 233.355469 149.363281 C 233.355469 147.742188 235.785156 147.742188 235.785156 149.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.234375 216.457031 C 327.234375 218.078125 324.804688 218.078125 324.804688 216.457031 C 324.804688 214.835938 327.234375 214.835938 327.234375 216.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.722656 240.054688 C 291.722656 241.675781 289.292969 241.675781 289.292969 240.054688 C 289.292969 238.4375 291.722656 238.4375 291.722656 240.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.683594 205.925781 C 324.683594 207.542969 322.253906 207.542969 322.253906 205.925781 C 322.253906 204.304688 324.683594 204.304688 324.683594 205.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.605469 99.746094 C 169.605469 101.367188 167.175781 101.367188 167.175781 99.746094 C 167.175781 98.128906 169.605469 98.128906 169.605469 99.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.5625 167.023438 C 314.5625 168.644531 312.132812 168.644531 312.132812 167.023438 C 312.132812 165.402344 314.5625 165.402344 314.5625 167.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.382812 168.246094 C 279.382812 169.863281 276.953125 169.863281 276.953125 168.246094 C 276.953125 166.625 279.382812 166.625 279.382812 168.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.925781 331.714844 C 252.925781 333.332031 250.496094 333.332031 250.496094 331.714844 C 250.496094 330.09375 252.925781 330.09375 252.925781 331.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.03125 273.859375 C 201.03125 275.480469 198.601562 275.480469 198.601562 273.859375 C 198.601562 272.242188 201.03125 272.242188 201.03125 273.859375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.707031 70.910156 L 196.34375 73.746094 L 193.070312 73.746094 Z M 194.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.527344 298.605469 C 290.527344 300.222656 288.097656 300.222656 288.097656 298.605469 C 288.097656 296.984375 290.527344 296.984375 290.527344 298.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.097656 291.117188 C 173.097656 292.734375 170.667969 292.734375 170.667969 291.117188 C 170.667969 289.496094 173.097656 289.496094 173.097656 291.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.695312 70.910156 L 284.332031 73.746094 L 281.058594 73.746094 Z M 282.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.414062 251.671875 C 272.414062 253.292969 269.984375 253.292969 269.984375 251.671875 C 269.984375 250.054688 272.414062 250.054688 272.414062 251.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.949219 159.539062 C 305.949219 161.160156 303.519531 161.160156 303.519531 159.539062 C 303.519531 157.917969 305.949219 157.917969 305.949219 159.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.398438 261.886719 C 232.398438 263.507812 229.96875 263.507812 229.96875 261.886719 C 229.96875 260.269531 232.398438 260.269531 232.398438 261.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.613281 273.945312 C 270.613281 275.5625 268.183594 275.5625 268.183594 273.945312 C 268.183594 272.324219 270.613281 272.324219 270.613281 273.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.304688 287.25 C 273.304688 288.871094 270.875 288.871094 270.875 287.25 C 270.875 285.628906 273.304688 285.628906 273.304688 287.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 376.003906 217.296875 C 376.003906 218.917969 373.574219 218.917969 373.574219 217.296875 C 373.574219 215.675781 376.003906 215.675781 376.003906 217.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.324219 70.910156 L 148.960938 73.746094 L 145.6875 73.746094 Z M 147.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.65625 70.910156 L 145.292969 73.746094 L 142.019531 73.746094 Z M 143.65625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.273438 139.527344 C 260.273438 141.148438 257.84375 141.148438 257.84375 139.527344 C 257.84375 137.90625 260.273438 137.90625 260.273438 139.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.453125 297.058594 C 298.453125 298.675781 296.023438 298.675781 296.023438 297.058594 C 296.023438 295.4375 298.453125 295.4375 298.453125 297.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.914062 90.90625 C 175.914062 92.523438 173.484375 92.523438 173.484375 90.90625 C 173.484375 89.285156 175.914062 89.285156 175.914062 90.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.914062 155.695312 C 149.914062 157.3125 147.484375 157.3125 147.484375 155.695312 C 147.484375 154.074219 149.914062 154.074219 149.914062 155.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.550781 70.910156 L 149.1875 73.746094 L 145.914062 73.746094 Z M 147.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.675781 195.082031 C 212.675781 196.703125 210.246094 196.703125 210.246094 195.082031 C 210.246094 193.460938 212.675781 193.460938 212.675781 195.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.53125 273.707031 C 165.53125 275.328125 163.097656 275.328125 163.097656 273.707031 C 163.097656 272.085938 165.53125 272.085938 165.53125 273.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.246094 192.765625 C 269.246094 194.382812 266.816406 194.382812 266.816406 192.765625 C 266.816406 191.144531 269.246094 191.144531 269.246094 192.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.109375 256.710938 C 253.109375 258.332031 250.679688 258.332031 250.679688 256.710938 C 250.679688 255.089844 253.109375 255.089844 253.109375 256.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.4375 301.9375 C 286.4375 303.558594 284.003906 303.558594 284.003906 301.9375 C 284.003906 300.316406 286.4375 300.316406 286.4375 301.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.183594 215.550781 C 222.183594 217.167969 219.753906 217.167969 219.753906 215.550781 C 219.753906 213.929688 222.183594 213.929688 222.183594 215.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.894531 289.082031 C 223.894531 290.703125 221.464844 290.703125 221.464844 289.082031 C 221.464844 287.460938 223.894531 287.460938 223.894531 289.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.097656 418.691406 L 143.734375 415.855469 L 140.460938 415.855469 Z M 142.097656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.085938 323.496094 C 263.085938 325.117188 260.65625 325.117188 260.65625 323.496094 C 260.65625 321.875 263.085938 321.875 263.085938 323.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.574219 350.296875 C 227.574219 351.917969 225.144531 351.917969 225.144531 350.296875 C 225.144531 348.679688 227.574219 348.679688 227.574219 350.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.34375 256.894531 C 259.34375 258.515625 256.914062 258.515625 256.914062 256.894531 C 256.914062 255.277344 259.34375 255.277344 259.34375 256.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.746094 418.691406 L 265.378906 415.855469 L 262.109375 415.855469 Z M 263.746094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.800781 263.703125 C 301.800781 265.324219 299.371094 265.324219 299.371094 263.703125 C 299.371094 262.085938 301.800781 262.085938 301.800781 263.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.789062 70.910156 L 207.425781 73.746094 L 204.15625 73.746094 Z M 205.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.472656 193.632812 C 162.472656 195.253906 160.042969 195.253906 160.042969 193.632812 C 160.042969 192.011719 162.472656 192.011719 162.472656 193.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.710938 70.910156 L 195.347656 73.746094 L 192.074219 73.746094 Z M 193.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.917969 176.273438 C 193.917969 177.894531 191.488281 177.894531 191.488281 176.273438 C 191.488281 174.652344 193.917969 174.652344 193.917969 176.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.816406 70.910156 L 243.449219 73.746094 L 240.179688 73.746094 Z M 241.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.113281 217.128906 C 264.113281 218.746094 261.679688 218.746094 261.679688 217.128906 C 261.679688 215.507812 264.113281 215.507812 264.113281 217.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.835938 70.910156 L 179.472656 73.746094 L 176.199219 73.746094 Z M 177.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.375 160.925781 C 290.375 162.546875 287.945312 162.546875 287.945312 160.925781 C 287.945312 159.304688 290.375 159.304688 290.375 160.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.3125 308.730469 C 298.3125 310.347656 295.882812 310.347656 295.882812 308.730469 C 295.882812 307.109375 298.3125 307.109375 298.3125 308.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.808594 70.910156 L 242.441406 73.746094 L 239.171875 73.746094 Z M 240.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.96875 212.683594 C 277.96875 214.304688 275.539062 214.304688 275.539062 212.683594 C 275.539062 211.066406 277.96875 211.066406 277.96875 212.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.078125 254.507812 C 284.078125 256.128906 281.648438 256.128906 281.648438 254.507812 C 281.648438 252.886719 284.078125 252.886719 284.078125 254.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.472656 372.429688 C 235.472656 374.046875 233.042969 374.046875 233.042969 372.429688 C 233.042969 370.808594 235.472656 370.808594 235.472656 372.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.867188 221.449219 C 288.867188 223.066406 286.4375 223.066406 286.4375 221.449219 C 286.4375 219.828125 288.867188 219.828125 288.867188 221.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 369.785156 236.507812 C 369.785156 238.128906 367.355469 238.128906 367.355469 236.507812 C 367.355469 234.886719 369.785156 234.886719 369.785156 236.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.011719 241.222656 C 258.011719 242.839844 255.578125 242.839844 255.578125 241.222656 C 255.578125 239.601562 258.011719 239.601562 258.011719 241.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.816406 191.105469 C 126.816406 192.722656 124.386719 192.722656 124.386719 191.105469 C 124.386719 189.484375 126.816406 189.484375 126.816406 191.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.449219 256.457031 C 248.449219 258.078125 246.019531 258.078125 246.019531 256.457031 C 246.019531 254.839844 248.449219 254.839844 248.449219 256.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.792969 203.1875 C 184.792969 204.804688 182.363281 204.804688 182.363281 203.1875 C 182.363281 201.566406 184.792969 201.566406 184.792969 203.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.359375 178.261719 C 209.359375 179.882812 206.929688 179.882812 206.929688 178.261719 C 206.929688 176.644531 209.359375 176.644531 209.359375 178.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.742188 418.691406 L 314.378906 415.855469 L 311.105469 415.855469 Z M 312.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.347656 259.222656 C 267.347656 260.84375 264.917969 260.84375 264.917969 259.222656 C 264.917969 257.605469 267.347656 257.605469 267.347656 259.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.085938 165.171875 C 167.085938 166.792969 164.65625 166.792969 164.65625 165.171875 C 164.65625 163.554688 167.085938 163.554688 167.085938 165.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.175781 270.808594 C 281.175781 272.429688 278.746094 272.429688 278.746094 270.808594 C 278.746094 269.1875 281.175781 269.1875 281.175781 270.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.171875 225.273438 C 178.171875 226.890625 175.742188 226.890625 175.742188 225.273438 C 175.742188 223.652344 178.171875 223.652344 178.171875 225.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.382812 241.109375 C 278.382812 242.730469 275.953125 242.730469 275.953125 241.109375 C 275.953125 239.488281 278.382812 239.488281 278.382812 241.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.179688 70.910156 L 210.816406 73.746094 L 207.542969 73.746094 Z M 209.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.4375 320.359375 C 227.4375 321.980469 225.007812 321.980469 225.007812 320.359375 C 225.007812 318.742188 227.4375 318.742188 227.4375 320.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.539062 288.40625 C 246.539062 290.027344 244.109375 290.027344 244.109375 288.40625 C 244.109375 286.785156 246.539062 286.785156 246.539062 288.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.796875 242.765625 C 279.796875 244.382812 277.367188 244.382812 277.367188 242.765625 C 277.367188 241.144531 279.796875 241.144531 279.796875 242.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.339844 70.910156 L 183.976562 73.746094 L 180.703125 73.746094 Z M 182.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.082031 393.894531 C 136.082031 395.511719 133.652344 395.511719 133.652344 393.894531 C 133.652344 392.273438 136.082031 392.273438 136.082031 393.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.773438 323.414062 C 220.773438 325.035156 218.34375 325.035156 218.34375 323.414062 C 218.34375 321.792969 220.773438 321.792969 220.773438 323.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.261719 297.359375 C 253.261719 298.980469 250.832031 298.980469 250.832031 297.359375 C 250.832031 295.738281 253.261719 295.738281 253.261719 297.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.113281 85.953125 C 171.113281 87.570312 168.683594 87.570312 168.683594 85.953125 C 168.683594 84.332031 171.113281 84.332031 171.113281 85.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.566406 180.375 C 265.566406 181.996094 263.136719 181.996094 263.136719 180.375 C 263.136719 178.753906 265.566406 178.753906 265.566406 180.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.308594 202.332031 C 277.308594 203.953125 274.878906 203.953125 274.878906 202.332031 C 274.878906 200.714844 277.308594 200.714844 277.308594 202.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.136719 192.011719 C 245.136719 193.632812 242.707031 193.632812 242.707031 192.011719 C 242.707031 190.390625 245.136719 190.390625 245.136719 192.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.363281 70.910156 L 235 73.746094 L 231.726562 73.746094 Z M 233.363281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.261719 292.578125 C 157.261719 294.195312 154.832031 294.195312 154.832031 292.578125 C 154.832031 290.957031 157.261719 290.957031 157.261719 292.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.046875 418.691406 L 140.683594 415.855469 L 137.410156 415.855469 Z M 139.046875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.707031 291.515625 C 179.707031 293.132812 177.277344 293.132812 177.277344 291.515625 C 177.277344 289.894531 179.707031 289.894531 179.707031 291.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.054688 70.910156 L 146.691406 73.746094 L 143.417969 73.746094 Z M 145.054688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.660156 70.910156 L 182.296875 73.746094 L 179.023438 73.746094 Z M 180.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.730469 179.121094 C 256.730469 180.742188 254.296875 180.742188 254.296875 179.121094 C 254.296875 177.503906 256.730469 177.503906 256.730469 179.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.601562 355.277344 C 261.601562 356.898438 259.171875 356.898438 259.171875 355.277344 C 259.171875 353.65625 261.601562 353.65625 261.601562 355.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.722656 262.695312 C 338.722656 264.316406 336.292969 264.316406 336.292969 262.695312 C 336.292969 261.078125 338.722656 261.078125 338.722656 262.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.625 277.171875 C 262.625 278.792969 260.195312 278.792969 260.195312 277.171875 C 260.195312 275.550781 262.625 275.550781 262.625 277.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.234375 164.09375 C 240.234375 165.710938 237.804688 165.710938 237.804688 164.09375 C 237.804688 162.472656 240.234375 162.472656 240.234375 164.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.371094 215.332031 C 343.371094 216.949219 340.941406 216.949219 340.941406 215.332031 C 340.941406 213.710938 343.371094 213.710938 343.371094 215.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.484375 315.167969 C 200.484375 316.789062 198.050781 316.789062 198.050781 315.167969 C 198.050781 313.550781 200.484375 313.550781 200.484375 315.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.074219 207.71875 C 167.074219 209.335938 164.644531 209.335938 164.644531 207.71875 C 164.644531 206.097656 167.074219 206.097656 167.074219 207.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.835938 193.957031 C 150.835938 195.578125 148.40625 195.578125 148.40625 193.957031 C 148.40625 192.339844 150.835938 192.339844 150.835938 193.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.820312 220.546875 C 282.820312 222.167969 280.390625 222.167969 280.390625 220.546875 C 280.390625 218.925781 282.820312 218.925781 282.820312 220.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.128906 88.933594 C 302.128906 90.554688 299.699219 90.554688 299.699219 88.933594 C 299.699219 87.3125 302.128906 87.3125 302.128906 88.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.46875 279.273438 C 252.46875 280.894531 250.039062 280.894531 250.039062 279.273438 C 250.039062 277.65625 252.46875 277.65625 252.46875 279.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.285156 245.277344 C 291.285156 246.898438 288.855469 246.898438 288.855469 245.277344 C 288.855469 243.65625 291.285156 243.65625 291.285156 245.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.105469 270.464844 C 279.105469 272.085938 276.675781 272.085938 276.675781 270.464844 C 276.675781 268.84375 279.105469 268.84375 279.105469 270.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.339844 197.328125 C 256.339844 198.945312 253.910156 198.945312 253.910156 197.328125 C 253.910156 195.707031 256.339844 195.707031 256.339844 197.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.652344 188.882812 C 265.652344 190.5 263.222656 190.5 263.222656 188.882812 C 263.222656 187.261719 265.652344 187.261719 265.652344 188.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.835938 193.664062 C 287.835938 195.285156 285.40625 195.285156 285.40625 193.664062 C 285.40625 192.042969 287.835938 192.042969 287.835938 193.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.695312 151.304688 C 228.695312 152.921875 226.265625 152.921875 226.265625 151.304688 C 226.265625 149.683594 228.695312 149.683594 228.695312 151.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.417969 120.144531 C 260.417969 121.761719 257.988281 121.761719 257.988281 120.144531 C 257.988281 118.523438 260.417969 118.523438 260.417969 120.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.601562 174.097656 C 230.601562 175.71875 228.171875 175.71875 228.171875 174.097656 C 228.171875 172.480469 230.601562 172.480469 230.601562 174.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.394531 300.03125 C 159.394531 301.652344 156.964844 301.652344 156.964844 300.03125 C 156.964844 298.414062 159.394531 298.414062 159.394531 300.03125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.171875 70.910156 L 303.808594 73.746094 L 300.535156 73.746094 Z M 302.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.992188 220.4375 C 267.992188 222.058594 265.5625 222.058594 265.5625 220.4375 C 265.5625 218.816406 267.992188 218.816406 267.992188 220.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.859375 300.210938 C 253.859375 301.828125 251.429688 301.828125 251.429688 300.210938 C 251.429688 298.589844 253.859375 298.589844 253.859375 300.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.105469 289.382812 C 260.105469 291.003906 257.675781 291.003906 257.675781 289.382812 C 257.675781 287.761719 260.105469 287.761719 260.105469 289.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.21875 327.03125 C 222.21875 328.652344 219.789062 328.652344 219.789062 327.03125 C 219.789062 325.414062 222.21875 325.414062 222.21875 327.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.753906 309.878906 C 209.753906 311.5 207.324219 311.5 207.324219 309.878906 C 207.324219 308.261719 209.753906 308.261719 209.753906 309.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.078125 70.910156 L 168.714844 73.746094 L 165.441406 73.746094 Z M 167.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.996094 337.589844 C 183.996094 339.207031 181.566406 339.207031 181.566406 337.589844 C 181.566406 335.96875 183.996094 335.96875 183.996094 337.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.515625 377.902344 C 304.515625 379.523438 302.082031 379.523438 302.082031 377.902344 C 302.082031 376.28125 304.515625 376.28125 304.515625 377.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.292969 266.753906 C 284.292969 268.375 281.863281 268.375 281.863281 266.753906 C 281.863281 265.136719 284.292969 265.136719 284.292969 266.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.445312 285.117188 C 254.445312 286.738281 252.015625 286.738281 252.015625 285.117188 C 252.015625 283.496094 254.445312 283.496094 254.445312 285.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.332031 247.988281 C 272.332031 249.609375 269.902344 249.609375 269.902344 247.988281 C 269.902344 246.371094 272.332031 246.371094 272.332031 247.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.351562 127.347656 C 147.351562 128.96875 144.921875 128.96875 144.921875 127.347656 C 144.921875 125.726562 147.351562 125.726562 147.351562 127.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.652344 418.691406 L 193.285156 415.855469 L 190.015625 415.855469 Z M 191.652344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.042969 132.714844 C 339.042969 134.335938 336.613281 134.335938 336.613281 132.714844 C 336.613281 131.097656 339.042969 131.097656 339.042969 132.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.421875 117.425781 C 211.421875 119.046875 208.992188 119.046875 208.992188 117.425781 C 208.992188 115.804688 211.421875 115.804688 211.421875 117.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.886719 247.726562 C 275.886719 249.347656 273.457031 249.347656 273.457031 247.726562 C 273.457031 246.105469 275.886719 246.105469 275.886719 247.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.277344 271.199219 C 310.277344 272.820312 307.847656 272.820312 307.847656 271.199219 C 307.847656 269.578125 310.277344 269.578125 310.277344 271.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.984375 148.261719 C 179.984375 149.882812 177.554688 149.882812 177.554688 148.261719 C 177.554688 146.640625 179.984375 146.640625 179.984375 148.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.398438 262.34375 C 239.398438 263.964844 236.96875 263.964844 236.96875 262.34375 C 236.96875 260.726562 239.398438 260.726562 239.398438 262.34375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.414062 70.910156 L 124.050781 73.746094 L 120.78125 73.746094 Z M 122.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.472656 127.9375 C 172.472656 129.558594 170.042969 129.558594 170.042969 127.9375 C 170.042969 126.320312 172.472656 126.320312 172.472656 127.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.183594 271.09375 C 207.183594 272.714844 204.75 272.714844 204.75 271.09375 C 204.75 269.476562 207.183594 269.476562 207.183594 271.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.898438 418.691406 L 134.535156 415.855469 L 131.261719 415.855469 Z M 132.898438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.730469 141.078125 C 162.730469 142.699219 160.300781 142.699219 160.300781 141.078125 C 160.300781 139.460938 162.730469 139.460938 162.730469 141.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.296875 418.691406 L 255.933594 415.855469 L 252.660156 415.855469 Z M 254.296875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.578125 317.242188 C 242.578125 318.863281 240.148438 318.863281 240.148438 317.242188 C 240.148438 315.625 242.578125 315.625 242.578125 317.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.339844 343.523438 C 266.339844 345.144531 263.910156 345.144531 263.910156 343.523438 C 263.910156 341.90625 266.339844 341.90625 266.339844 343.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.722656 211.25 C 250.722656 212.867188 248.292969 212.867188 248.292969 211.25 C 248.292969 209.628906 250.722656 209.628906 250.722656 211.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.574219 289.53125 C 237.574219 291.152344 235.144531 291.152344 235.144531 289.53125 C 235.144531 287.910156 237.574219 287.910156 237.574219 289.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.285156 275.878906 C 194.285156 277.5 191.855469 277.5 191.855469 275.878906 C 191.855469 274.261719 194.285156 274.261719 194.285156 275.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.386719 233.132812 C 250.386719 234.753906 247.957031 234.753906 247.957031 233.132812 C 247.957031 231.511719 250.386719 231.511719 250.386719 233.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.679688 272.070312 C 276.679688 273.691406 274.25 273.691406 274.25 272.070312 C 274.25 270.449219 276.679688 270.449219 276.679688 272.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.773438 266.246094 C 116.773438 267.867188 114.34375 267.867188 114.34375 266.246094 C 114.34375 264.628906 116.773438 264.628906 116.773438 266.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.882812 263.050781 C 251.882812 264.667969 249.453125 264.667969 249.453125 263.050781 C 249.453125 261.429688 251.882812 261.429688 251.882812 263.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.480469 270.136719 C 297.480469 271.757812 295.050781 271.757812 295.050781 270.136719 C 295.050781 268.519531 297.480469 268.519531 297.480469 270.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.886719 290.359375 C 273.886719 291.980469 271.457031 291.980469 271.457031 290.359375 C 271.457031 288.742188 273.886719 288.742188 273.886719 290.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.539062 248.222656 C 253.539062 249.84375 251.109375 249.84375 251.109375 248.222656 C 251.109375 246.601562 253.539062 246.601562 253.539062 248.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.007812 321.203125 C 138.007812 322.820312 135.578125 322.820312 135.578125 321.203125 C 135.578125 319.582031 138.007812 319.582031 138.007812 321.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.410156 304.753906 C 295.410156 306.371094 292.980469 306.371094 292.980469 304.753906 C 292.980469 303.132812 295.410156 303.132812 295.410156 304.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.039062 259.785156 C 313.039062 261.402344 310.609375 261.402344 310.609375 259.785156 C 310.609375 258.164062 313.039062 258.164062 313.039062 259.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.789062 250.777344 C 235.789062 252.398438 233.359375 252.398438 233.359375 250.777344 C 233.359375 249.15625 235.789062 249.15625 235.789062 250.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.988281 155.074219 C 262.988281 156.695312 260.558594 156.695312 260.558594 155.074219 C 260.558594 153.457031 262.988281 153.457031 262.988281 155.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.84375 123.292969 C 232.84375 124.914062 230.410156 124.914062 230.410156 123.292969 C 230.410156 121.671875 232.84375 121.671875 232.84375 123.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.03125 283.335938 C 281.03125 284.957031 278.601562 284.957031 278.601562 283.335938 C 278.601562 281.714844 281.03125 281.714844 281.03125 283.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.636719 146.148438 C 141.636719 147.769531 139.207031 147.769531 139.207031 146.148438 C 139.207031 144.527344 141.636719 144.527344 141.636719 146.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.289062 418.691406 L 173.925781 415.855469 L 170.652344 415.855469 Z M 172.289062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.863281 316.25 C 228.863281 317.871094 226.433594 317.871094 226.433594 316.25 C 226.433594 314.628906 228.863281 314.628906 228.863281 316.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.664062 238.628906 C 291.664062 240.25 289.234375 240.25 289.234375 238.628906 C 289.234375 237.007812 291.664062 237.007812 291.664062 238.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.394531 360.757812 C 168.394531 362.378906 165.964844 362.378906 165.964844 360.757812 C 165.964844 359.140625 168.394531 359.140625 168.394531 360.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.054688 298.160156 C 217.054688 299.78125 214.625 299.78125 214.625 298.160156 C 214.625 296.542969 217.054688 296.542969 217.054688 298.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.292969 254.203125 C 203.292969 255.820312 200.863281 255.820312 200.863281 254.203125 C 200.863281 252.582031 203.292969 252.582031 203.292969 254.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.503906 266.183594 C 263.503906 267.804688 261.074219 267.804688 261.074219 266.183594 C 261.074219 264.5625 263.503906 264.5625 263.503906 266.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.570312 310.363281 C 286.570312 311.984375 284.140625 311.984375 284.140625 310.363281 C 284.140625 308.742188 286.570312 308.742188 286.570312 310.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.304688 418.691406 L 152.941406 415.855469 L 149.671875 415.855469 Z M 151.304688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.269531 70.910156 L 223.90625 73.746094 L 220.632812 73.746094 Z M 222.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.398438 87.242188 C 188.398438 88.863281 185.96875 88.863281 185.96875 87.242188 C 185.96875 85.621094 188.398438 85.621094 188.398438 87.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.089844 70.910156 L 215.726562 73.746094 L 212.453125 73.746094 Z M 214.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.566406 111.25 C 230.566406 112.871094 228.136719 112.871094 228.136719 111.25 C 228.136719 109.628906 230.566406 109.628906 230.566406 111.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.660156 127.210938 C 226.660156 128.828125 224.230469 128.828125 224.230469 127.210938 C 224.230469 125.589844 226.660156 125.589844 226.660156 127.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.566406 273.6875 C 219.566406 275.304688 217.136719 275.304688 217.136719 273.6875 C 217.136719 272.066406 219.566406 272.066406 219.566406 273.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.171875 322.1875 C 212.171875 323.808594 209.742188 323.808594 209.742188 322.1875 C 209.742188 320.566406 212.171875 320.566406 212.171875 322.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.726562 219.316406 C 260.726562 220.933594 258.296875 220.933594 258.296875 219.316406 C 258.296875 217.695312 260.726562 217.695312 260.726562 219.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.742188 230.617188 C 232.742188 232.238281 230.3125 232.238281 230.3125 230.617188 C 230.3125 228.996094 232.742188 228.996094 232.742188 230.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.015625 217.460938 C 174.015625 219.078125 171.585938 219.078125 171.585938 217.460938 C 171.585938 215.839844 174.015625 215.839844 174.015625 217.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.421875 70.910156 L 278.058594 73.746094 L 274.785156 73.746094 Z M 276.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.023438 238.519531 C 258.023438 240.140625 255.59375 240.140625 255.59375 238.519531 C 255.59375 236.898438 258.023438 236.898438 258.023438 238.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.671875 312.445312 C 255.671875 314.066406 253.242188 314.066406 253.242188 312.445312 C 253.242188 310.824219 255.671875 310.824219 255.671875 312.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.929688 70.910156 L 252.566406 73.746094 L 249.296875 73.746094 Z M 250.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.640625 196.066406 C 253.640625 197.683594 251.210938 197.683594 251.210938 196.066406 C 251.210938 194.445312 253.640625 194.445312 253.640625 196.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.949219 242.582031 C 288.949219 244.203125 286.519531 244.203125 286.519531 242.582031 C 286.519531 240.960938 288.949219 240.960938 288.949219 242.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.386719 204.71875 C 277.386719 206.339844 274.957031 206.339844 274.957031 204.71875 C 274.957031 203.097656 277.386719 203.097656 277.386719 204.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.503906 252.179688 C 267.503906 253.800781 265.070312 253.800781 265.070312 252.179688 C 265.070312 250.558594 267.503906 250.558594 267.503906 252.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.765625 246.417969 C 255.765625 248.035156 253.335938 248.035156 253.335938 246.417969 C 253.335938 244.796875 255.765625 244.796875 255.765625 246.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.542969 70.910156 L 226.179688 73.746094 L 222.90625 73.746094 Z M 224.542969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.804688 70.910156 L 271.441406 73.746094 L 268.167969 73.746094 Z M 269.804688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.96875 70.910156 L 228.605469 73.746094 L 225.332031 73.746094 Z M 226.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.320312 285.859375 C 289.320312 287.480469 286.890625 287.480469 286.890625 285.859375 C 286.890625 284.242188 289.320312 284.242188 289.320312 285.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.683594 297.75 C 190.683594 299.371094 188.253906 299.371094 188.253906 297.75 C 188.253906 296.132812 190.683594 296.132812 190.683594 297.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.332031 283.574219 C 266.332031 285.195312 263.902344 285.195312 263.902344 283.574219 C 263.902344 281.953125 266.332031 281.953125 266.332031 283.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.917969 418.691406 L 110.550781 415.855469 L 107.28125 415.855469 Z M 108.917969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.066406 217.398438 C 305.066406 219.015625 302.636719 219.015625 302.636719 217.398438 C 302.636719 215.777344 305.066406 215.777344 305.066406 217.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.367188 223.695312 C 293.367188 225.316406 290.933594 225.316406 290.933594 223.695312 C 290.933594 222.074219 293.367188 222.074219 293.367188 223.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.941406 108.085938 C 200.941406 109.707031 198.511719 109.707031 198.511719 108.085938 C 198.511719 106.464844 200.941406 106.464844 200.941406 108.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131 70.910156 L 132.636719 73.746094 L 129.363281 73.746094 Z M 131 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.207031 70.910156 L 135.84375 73.746094 L 132.570312 73.746094 Z M 134.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.511719 162.257812 C 274.511719 163.878906 272.082031 163.878906 272.082031 162.257812 C 272.082031 160.640625 274.511719 160.640625 274.511719 162.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.90625 188.738281 C 294.90625 190.355469 292.476562 190.355469 292.476562 188.738281 C 292.476562 187.117188 294.90625 187.117188 294.90625 188.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.957031 246.601562 C 273.957031 248.222656 271.527344 248.222656 271.527344 246.601562 C 271.527344 244.980469 273.957031 244.980469 273.957031 246.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.070312 223.746094 C 320.070312 225.367188 317.640625 225.367188 317.640625 223.746094 C 317.640625 222.128906 320.070312 222.128906 320.070312 223.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.414062 77.878906 C 196.414062 79.5 193.984375 79.5 193.984375 77.878906 C 193.984375 76.257812 196.414062 76.257812 196.414062 77.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.570312 220.226562 C 277.570312 221.847656 275.140625 221.847656 275.140625 220.226562 C 275.140625 218.605469 277.570312 218.605469 277.570312 220.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.445312 240.632812 C 282.445312 242.25 280.015625 242.25 280.015625 240.632812 C 280.015625 239.011719 282.445312 239.011719 282.445312 240.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.855469 332.050781 C 282.855469 333.671875 280.421875 333.671875 280.421875 332.050781 C 280.421875 330.433594 282.855469 330.433594 282.855469 332.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.632812 221.558594 C 334.632812 223.175781 332.203125 223.175781 332.203125 221.558594 C 332.203125 219.9375 334.632812 219.9375 334.632812 221.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.414062 262.804688 C 239.414062 264.425781 236.984375 264.425781 236.984375 262.804688 C 236.984375 261.183594 239.414062 261.183594 239.414062 262.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.089844 70.910156 L 212.726562 73.746094 L 209.453125 73.746094 Z M 211.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.203125 70.910156 L 143.839844 73.746094 L 140.566406 73.746094 Z M 142.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.925781 309.449219 C 262.925781 311.066406 260.496094 311.066406 260.496094 309.449219 C 260.496094 307.828125 262.925781 307.828125 262.925781 309.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.492188 279.433594 C 260.492188 281.054688 258.0625 281.054688 258.0625 279.433594 C 258.0625 277.8125 260.492188 277.8125 260.492188 279.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.835938 194.570312 C 251.835938 196.191406 249.40625 196.191406 249.40625 194.570312 C 249.40625 192.949219 251.835938 192.949219 251.835938 194.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.617188 70.910156 L 291.253906 73.746094 L 287.984375 73.746094 Z M 289.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.976562 257.984375 C 297.976562 259.601562 295.546875 259.601562 295.546875 257.984375 C 295.546875 256.363281 297.976562 256.363281 297.976562 257.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.875 262.445312 C 205.875 264.0625 203.441406 264.0625 203.441406 262.445312 C 203.441406 260.824219 205.875 260.824219 205.875 262.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.089844 379.46875 C 251.089844 381.089844 248.660156 381.089844 248.660156 379.46875 C 248.660156 377.847656 251.089844 377.847656 251.089844 379.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.421875 70.910156 L 149.058594 73.746094 L 145.785156 73.746094 Z M 147.421875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.894531 186.816406 C 255.894531 188.4375 253.464844 188.4375 253.464844 186.816406 C 253.464844 185.199219 255.894531 185.199219 255.894531 186.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.335938 404.222656 C 293.335938 405.84375 290.90625 405.84375 290.90625 404.222656 C 290.90625 402.601562 293.335938 402.601562 293.335938 404.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.328125 245.253906 C 251.328125 246.875 248.898438 246.875 248.898438 245.253906 C 248.898438 243.636719 251.328125 243.636719 251.328125 245.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.523438 220.746094 C 256.523438 222.367188 254.09375 222.367188 254.09375 220.746094 C 254.09375 219.128906 256.523438 219.128906 256.523438 220.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.460938 261.472656 C 282.460938 263.09375 280.03125 263.09375 280.03125 261.472656 C 280.03125 259.855469 282.460938 259.855469 282.460938 261.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.460938 125.800781 C 221.460938 127.421875 219.03125 127.421875 219.03125 125.800781 C 219.03125 124.179688 221.460938 124.179688 221.460938 125.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.375 418.691406 L 183.011719 415.855469 L 179.738281 415.855469 Z M 181.375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.332031 70.910156 L 133.96875 73.746094 L 130.695312 73.746094 Z M 132.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.054688 257.085938 C 243.054688 258.707031 240.625 258.707031 240.625 257.085938 C 240.625 255.46875 243.054688 255.46875 243.054688 257.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.292969 224.183594 C 319.292969 225.804688 316.863281 225.804688 316.863281 224.183594 C 316.863281 222.5625 319.292969 222.5625 319.292969 224.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.238281 286.226562 C 324.238281 287.84375 321.808594 287.84375 321.808594 286.226562 C 321.808594 284.605469 324.238281 284.605469 324.238281 286.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.179688 255.011719 C 276.179688 256.632812 273.75 256.632812 273.75 255.011719 C 273.75 253.390625 276.179688 253.390625 276.179688 255.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.679688 368.882812 C 322.679688 370.503906 320.25 370.503906 320.25 368.882812 C 320.25 367.265625 322.679688 367.265625 322.679688 368.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.148438 209.359375 C 265.148438 210.980469 262.71875 210.980469 262.71875 209.359375 C 262.71875 207.738281 265.148438 207.738281 265.148438 209.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.832031 222.375 C 259.832031 223.996094 257.402344 223.996094 257.402344 222.375 C 257.402344 220.753906 259.832031 220.753906 259.832031 222.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.675781 317.871094 C 340.675781 319.492188 338.242188 319.492188 338.242188 317.871094 C 338.242188 316.253906 340.675781 316.253906 340.675781 317.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.511719 233.121094 C 298.511719 234.742188 296.082031 234.742188 296.082031 233.121094 C 296.082031 231.503906 298.511719 231.503906 298.511719 233.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.164062 112.125 C 323.164062 113.746094 320.734375 113.746094 320.734375 112.125 C 320.734375 110.503906 323.164062 110.503906 323.164062 112.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.648438 272.488281 C 270.648438 274.105469 268.21875 274.105469 268.21875 272.488281 C 268.21875 270.867188 270.648438 270.867188 270.648438 272.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.515625 250.089844 C 267.515625 251.710938 265.085938 251.710938 265.085938 250.089844 C 265.085938 248.46875 267.515625 248.46875 267.515625 250.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.472656 317.382812 C 267.472656 319.003906 265.042969 319.003906 265.042969 317.382812 C 265.042969 315.761719 267.472656 315.761719 267.472656 317.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.613281 295.988281 C 277.613281 297.609375 275.179688 297.609375 275.179688 295.988281 C 275.179688 294.371094 277.613281 294.371094 277.613281 295.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.691406 70.910156 L 138.328125 73.746094 L 135.054688 73.746094 Z M 136.691406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.382812 70.910156 L 164.019531 73.746094 L 160.746094 73.746094 Z M 162.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.609375 297.699219 C 263.609375 299.320312 261.179688 299.320312 261.179688 297.699219 C 261.179688 296.082031 263.609375 296.082031 263.609375 297.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.859375 305.933594 C 275.859375 307.554688 273.429688 307.554688 273.429688 305.933594 C 273.429688 304.316406 275.859375 304.316406 275.859375 305.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.8125 295.90625 C 254.8125 297.523438 252.382812 297.523438 252.382812 295.90625 C 252.382812 294.285156 254.8125 294.285156 254.8125 295.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.097656 306.027344 C 124.097656 307.644531 121.664062 307.644531 121.664062 306.027344 C 121.664062 304.40625 124.097656 304.40625 124.097656 306.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.890625 311.726562 C 200.890625 313.34375 198.460938 313.34375 198.460938 311.726562 C 198.460938 310.105469 200.890625 310.105469 200.890625 311.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.910156 289.863281 C 209.910156 291.480469 207.480469 291.480469 207.480469 289.863281 C 207.480469 288.242188 209.910156 288.242188 209.910156 289.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.664062 307.390625 C 265.664062 309.007812 263.234375 309.007812 263.234375 307.390625 C 263.234375 305.769531 265.664062 305.769531 265.664062 307.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.472656 301.242188 C 255.472656 302.859375 253.042969 302.859375 253.042969 301.242188 C 253.042969 299.621094 255.472656 299.621094 255.472656 301.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 381.652344 306.140625 C 381.652344 307.757812 379.222656 307.757812 379.222656 306.140625 C 379.222656 304.519531 381.652344 304.519531 381.652344 306.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.558594 418.691406 L 205.195312 415.855469 L 201.921875 415.855469 Z M 203.558594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.402344 170.652344 C 299.402344 172.273438 296.972656 172.273438 296.972656 170.652344 C 296.972656 169.035156 299.402344 169.035156 299.402344 170.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.613281 183.324219 C 257.613281 184.941406 255.179688 184.941406 255.179688 183.324219 C 255.179688 181.703125 257.613281 181.703125 257.613281 183.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.136719 242.125 C 258.136719 243.746094 255.707031 243.746094 255.707031 242.125 C 255.707031 240.503906 258.136719 240.503906 258.136719 242.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.113281 221.734375 C 208.113281 223.355469 205.683594 223.355469 205.683594 221.734375 C 205.683594 220.117188 208.113281 220.117188 208.113281 221.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.015625 377.867188 C 118.015625 379.488281 115.585938 379.488281 115.585938 377.867188 C 115.585938 376.246094 118.015625 376.246094 118.015625 377.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.789062 317.769531 C 107.789062 319.390625 105.359375 319.390625 105.359375 317.769531 C 105.359375 316.148438 107.789062 316.148438 107.789062 317.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.601562 177.722656 C 224.601562 179.339844 222.171875 179.339844 222.171875 177.722656 C 222.171875 176.101562 224.601562 176.101562 224.601562 177.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.054688 316.175781 C 294.054688 317.796875 291.625 317.796875 291.625 316.175781 C 291.625 314.558594 294.054688 314.558594 294.054688 316.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.96875 418.691406 L 131.605469 415.855469 L 128.332031 415.855469 Z M 129.96875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.574219 227.625 C 346.574219 229.246094 344.144531 229.246094 344.144531 227.625 C 344.144531 226.003906 346.574219 226.003906 346.574219 227.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.160156 331.433594 C 295.160156 333.054688 292.730469 333.054688 292.730469 331.433594 C 292.730469 329.8125 295.160156 329.8125 295.160156 331.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.734375 321.273438 C 338.734375 322.894531 336.304688 322.894531 336.304688 321.273438 C 336.304688 319.65625 338.734375 319.65625 338.734375 321.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.539062 228.847656 C 259.539062 230.46875 257.109375 230.46875 257.109375 228.847656 C 257.109375 227.226562 259.539062 227.226562 259.539062 228.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.078125 152.527344 C 366.078125 154.148438 363.648438 154.148438 363.648438 152.527344 C 363.648438 150.910156 366.078125 150.910156 366.078125 152.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.847656 230.351562 C 248.847656 231.972656 246.417969 231.972656 246.417969 230.351562 C 246.417969 228.730469 248.847656 228.730469 248.847656 230.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.746094 243.710938 C 242.746094 245.332031 240.316406 245.332031 240.316406 243.710938 C 240.316406 242.089844 242.746094 242.089844 242.746094 243.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.148438 416.207031 C 210.148438 417.828125 207.71875 417.828125 207.71875 416.207031 C 207.71875 414.585938 210.148438 414.585938 210.148438 416.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.835938 203.019531 C 348.835938 204.640625 346.40625 204.640625 346.40625 203.019531 C 346.40625 201.402344 348.835938 201.402344 348.835938 203.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.644531 127.125 C 222.644531 128.746094 220.214844 128.746094 220.214844 127.125 C 220.214844 125.503906 222.644531 125.503906 222.644531 127.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.839844 308.542969 C 362.839844 310.164062 360.410156 310.164062 360.410156 308.542969 C 360.410156 306.925781 362.839844 306.925781 362.839844 308.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.523438 316.332031 C 278.523438 317.953125 276.09375 317.953125 276.09375 316.332031 C 276.09375 314.714844 278.523438 314.714844 278.523438 316.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.132812 149.675781 C 286.132812 151.292969 283.703125 151.292969 283.703125 149.675781 C 283.703125 148.054688 286.132812 148.054688 286.132812 149.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.152344 226.445312 C 282.152344 228.066406 279.722656 228.066406 279.722656 226.445312 C 279.722656 224.828125 282.152344 224.828125 282.152344 226.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.027344 260.128906 C 291.027344 261.75 288.597656 261.75 288.597656 260.128906 C 288.597656 258.507812 291.027344 258.507812 291.027344 260.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.421875 339.949219 C 216.421875 341.566406 213.992188 341.566406 213.992188 339.949219 C 213.992188 338.328125 216.421875 338.328125 216.421875 339.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.03125 168.28125 C 266.03125 169.902344 263.597656 169.902344 263.597656 168.28125 C 263.597656 166.660156 266.03125 166.660156 266.03125 168.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.34375 173.394531 C 296.34375 175.015625 293.914062 175.015625 293.914062 173.394531 C 293.914062 171.773438 296.34375 171.773438 296.34375 173.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.332031 224.558594 C 271.332031 226.175781 268.902344 226.175781 268.902344 224.558594 C 268.902344 222.9375 271.332031 222.9375 271.332031 224.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.488281 418.691406 L 261.125 415.855469 L 257.851562 415.855469 Z M 259.488281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.003906 418.691406 L 208.636719 415.855469 L 205.367188 415.855469 Z M 207.003906 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 341.660156 70.910156 L 343.296875 73.746094 L 340.023438 73.746094 Z M 341.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.425781 248.574219 C 166.425781 250.195312 163.996094 250.195312 163.996094 248.574219 C 163.996094 246.953125 166.425781 246.953125 166.425781 248.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.371094 330.71875 C 301.371094 332.339844 298.941406 332.339844 298.941406 330.71875 C 298.941406 329.097656 301.371094 329.097656 301.371094 330.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.527344 239.253906 C 267.527344 240.875 265.097656 240.875 265.097656 239.253906 C 265.097656 237.632812 267.527344 237.632812 267.527344 239.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.113281 227.054688 C 173.113281 228.675781 170.683594 228.675781 170.683594 227.054688 C 170.683594 225.433594 173.113281 225.433594 173.113281 227.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.269531 216.210938 C 250.269531 217.832031 247.839844 217.832031 247.839844 216.210938 C 247.839844 214.59375 250.269531 214.59375 250.269531 216.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.867188 220.339844 C 259.867188 221.960938 257.4375 221.960938 257.4375 220.339844 C 257.4375 218.71875 259.867188 218.71875 259.867188 220.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.066406 224.207031 C 256.066406 225.824219 253.636719 225.824219 253.636719 224.207031 C 253.636719 222.585938 256.066406 222.585938 256.066406 224.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.679688 116.570312 C 119.679688 118.1875 117.25 118.1875 117.25 116.570312 C 117.25 114.949219 119.679688 114.949219 119.679688 116.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.578125 70.910156 L 163.214844 73.746094 L 159.941406 73.746094 Z M 161.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.5 70.910156 L 294.136719 73.746094 L 290.863281 73.746094 Z M 292.5 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.335938 169.664062 C 320.335938 171.285156 317.90625 171.285156 317.90625 169.664062 C 317.90625 168.046875 320.335938 168.046875 320.335938 169.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.585938 70.910156 L 210.222656 73.746094 L 206.949219 73.746094 Z M 208.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.300781 91.449219 C 310.300781 93.070312 307.871094 93.070312 307.871094 91.449219 C 307.871094 89.828125 310.300781 89.828125 310.300781 91.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.445312 70.910156 L 256.082031 73.746094 L 252.808594 73.746094 Z M 254.445312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.953125 70.910156 L 271.589844 73.746094 L 268.316406 73.746094 Z M 269.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.332031 113.613281 C 247.332031 115.230469 244.902344 115.230469 244.902344 113.613281 C 244.902344 111.992188 247.332031 111.992188 247.332031 113.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.585938 240.511719 C 223.585938 242.132812 221.15625 242.132812 221.15625 240.511719 C 221.15625 238.890625 223.585938 238.890625 223.585938 240.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.316406 231.96875 C 227.316406 233.585938 224.886719 233.585938 224.886719 231.96875 C 224.886719 230.347656 227.316406 230.347656 227.316406 231.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.929688 222.550781 C 245.929688 224.171875 243.5 224.171875 243.5 222.550781 C 243.5 220.929688 245.929688 220.929688 245.929688 222.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.042969 215.5625 C 322.042969 217.183594 319.613281 217.183594 319.613281 215.5625 C 319.613281 213.941406 322.042969 213.941406 322.042969 215.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.246094 196.96875 C 200.246094 198.589844 197.816406 198.589844 197.816406 196.96875 C 197.816406 195.351562 200.246094 195.351562 200.246094 196.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.414062 146.011719 C 180.414062 147.628906 177.984375 147.628906 177.984375 146.011719 C 177.984375 144.390625 180.414062 144.390625 180.414062 146.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.558594 246.65625 C 310.558594 248.277344 308.125 248.277344 308.125 246.65625 C 308.125 245.035156 310.558594 245.035156 310.558594 246.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.183594 260.046875 C 284.183594 261.667969 281.753906 261.667969 281.753906 260.046875 C 281.753906 258.429688 284.183594 258.429688 284.183594 260.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.203125 266.214844 C 241.203125 267.835938 238.773438 267.835938 238.773438 266.214844 C 238.773438 264.59375 241.203125 264.59375 241.203125 266.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.203125 70.910156 L 279.839844 73.746094 L 276.566406 73.746094 Z M 278.203125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.976562 70.910156 L 253.613281 73.746094 L 250.34375 73.746094 Z M 251.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.042969 197.898438 C 278.042969 199.519531 275.613281 199.519531 275.613281 197.898438 C 275.613281 196.28125 278.042969 196.28125 278.042969 197.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.816406 194.304688 C 275.816406 195.925781 273.386719 195.925781 273.386719 194.304688 C 273.386719 192.683594 275.816406 192.683594 275.816406 194.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.007812 143.738281 C 296.007812 145.359375 293.578125 145.359375 293.578125 143.738281 C 293.578125 142.121094 296.007812 142.121094 296.007812 143.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.109375 160.574219 C 129.109375 162.191406 126.679688 162.191406 126.679688 160.574219 C 126.679688 158.953125 129.109375 158.953125 129.109375 160.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.457031 211.792969 C 236.457031 213.414062 234.027344 213.414062 234.027344 211.792969 C 234.027344 210.175781 236.457031 210.175781 236.457031 211.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.332031 207.90625 C 244.332031 209.527344 241.902344 209.527344 241.902344 207.90625 C 241.902344 206.285156 244.332031 206.285156 244.332031 207.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.101562 322.988281 C 289.101562 324.609375 286.671875 324.609375 286.671875 322.988281 C 286.671875 321.367188 289.101562 321.367188 289.101562 322.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.691406 286.96875 C 319.691406 288.585938 317.261719 288.585938 317.261719 286.96875 C 317.261719 285.347656 319.691406 285.347656 319.691406 286.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.648438 70.910156 L 128.285156 73.746094 L 125.011719 73.746094 Z M 126.648438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.722656 368.914062 C 294.722656 370.53125 292.292969 370.53125 292.292969 368.914062 C 292.292969 367.292969 294.722656 367.292969 294.722656 368.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.597656 323.519531 C 226.597656 325.140625 224.167969 325.140625 224.167969 323.519531 C 224.167969 321.898438 226.597656 321.898438 226.597656 323.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.933594 70.910156 L 137.570312 73.746094 L 134.296875 73.746094 Z M 135.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.40625 252.417969 C 251.40625 254.039062 248.972656 254.039062 248.972656 252.417969 C 248.972656 250.800781 251.40625 250.800781 251.40625 252.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.089844 297.742188 C 299.089844 299.363281 296.660156 299.363281 296.660156 297.742188 C 296.660156 296.125 299.089844 296.125 299.089844 297.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.761719 299.539062 C 285.761719 301.160156 283.332031 301.160156 283.332031 299.539062 C 283.332031 297.921875 285.761719 297.921875 285.761719 299.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.097656 295.867188 C 277.097656 297.488281 274.667969 297.488281 274.667969 295.867188 C 274.667969 294.246094 277.097656 294.246094 277.097656 295.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.011719 259.773438 C 308.011719 261.394531 305.582031 261.394531 305.582031 259.773438 C 305.582031 258.15625 308.011719 258.15625 308.011719 259.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.453125 70.910156 L 196.089844 73.746094 L 192.816406 73.746094 Z M 194.453125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.996094 215.90625 C 286.996094 217.527344 284.566406 217.527344 284.566406 215.90625 C 284.566406 214.285156 286.996094 214.285156 286.996094 215.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.886719 418.691406 L 279.523438 415.855469 L 276.25 415.855469 Z M 277.886719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.589844 250.066406 C 264.589844 251.6875 262.160156 251.6875 262.160156 250.066406 C 262.160156 248.445312 264.589844 248.445312 264.589844 250.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 295.742188 70.910156 L 297.378906 73.746094 L 294.105469 73.746094 Z M 295.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.910156 302.199219 C 163.910156 303.820312 161.480469 303.820312 161.480469 302.199219 C 161.480469 300.578125 163.910156 300.578125 163.910156 302.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.953125 275.214844 C 285.953125 276.835938 283.523438 276.835938 283.523438 275.214844 C 283.523438 273.59375 285.953125 273.59375 285.953125 275.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.28125 135.660156 C 210.28125 137.28125 207.851562 137.28125 207.851562 135.660156 C 207.851562 134.042969 210.28125 134.042969 210.28125 135.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.792969 247.355469 C 290.792969 248.976562 288.363281 248.976562 288.363281 247.355469 C 288.363281 245.734375 290.792969 245.734375 290.792969 247.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.113281 321.210938 C 275.113281 322.832031 272.679688 322.832031 272.679688 321.210938 C 272.679688 319.589844 275.113281 319.589844 275.113281 321.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.867188 233.285156 C 250.867188 234.90625 248.4375 234.90625 248.4375 233.285156 C 248.4375 231.667969 250.867188 231.667969 250.867188 233.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.230469 70.910156 L 170.867188 73.746094 L 167.59375 73.746094 Z M 169.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.5625 263.234375 C 343.5625 264.851562 341.132812 264.851562 341.132812 263.234375 C 341.132812 261.613281 343.5625 261.613281 343.5625 263.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.0625 197.660156 C 253.0625 199.28125 250.632812 199.28125 250.632812 197.660156 C 250.632812 196.039062 253.0625 196.039062 253.0625 197.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.6875 284.304688 C 255.6875 285.921875 253.257812 285.921875 253.257812 284.304688 C 253.257812 282.683594 255.6875 282.683594 255.6875 284.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.078125 279.882812 C 288.078125 281.503906 285.648438 281.503906 285.648438 279.882812 C 285.648438 278.265625 288.078125 278.265625 288.078125 279.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.851562 210.101562 C 296.851562 211.71875 294.421875 211.71875 294.421875 210.101562 C 294.421875 208.480469 296.851562 208.480469 296.851562 210.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.460938 255.796875 C 273.460938 257.417969 271.03125 257.417969 271.03125 255.796875 C 271.03125 254.175781 273.460938 254.175781 273.460938 255.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.410156 70.910156 L 234.046875 73.746094 L 230.773438 73.746094 Z M 232.410156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.867188 200.214844 C 253.867188 201.835938 251.4375 201.835938 251.4375 200.214844 C 251.4375 198.59375 253.867188 198.59375 253.867188 200.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.769531 331.859375 C 281.769531 333.480469 279.339844 333.480469 279.339844 331.859375 C 279.339844 330.238281 281.769531 330.238281 281.769531 331.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.628906 70.910156 L 218.265625 73.746094 L 214.992188 73.746094 Z M 216.628906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.871094 70.910156 L 216.507812 73.746094 L 213.234375 73.746094 Z M 214.871094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.40625 70.910156 L 239.042969 73.746094 L 235.769531 73.746094 Z M 237.40625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.039062 70.910156 L 298.675781 73.746094 L 295.402344 73.746094 Z M 297.039062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.886719 70.910156 L 245.523438 73.746094 L 242.25 73.746094 Z M 243.886719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.695312 127.988281 C 233.695312 129.609375 231.265625 129.609375 231.265625 127.988281 C 231.265625 126.367188 233.695312 126.367188 233.695312 127.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.140625 418.691406 L 349.777344 415.855469 L 346.503906 415.855469 Z M 348.140625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.992188 242.148438 C 317.992188 243.769531 315.5625 243.769531 315.5625 242.148438 C 315.5625 240.527344 317.992188 240.527344 317.992188 242.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.457031 186.253906 C 136.457031 187.875 134.027344 187.875 134.027344 186.253906 C 134.027344 184.636719 136.457031 184.636719 136.457031 186.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.464844 192.246094 C 235.464844 193.867188 233.035156 193.867188 233.035156 192.246094 C 233.035156 190.625 235.464844 190.625 235.464844 192.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 176.378906 78.308594 C 176.378906 79.929688 173.949219 79.929688 173.949219 78.308594 C 173.949219 76.691406 176.378906 76.691406 176.378906 78.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.988281 239.921875 C 279.988281 241.542969 277.558594 241.542969 277.558594 239.921875 C 277.558594 238.304688 279.988281 238.304688 279.988281 239.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.945312 242.796875 C 295.945312 244.414062 293.515625 244.414062 293.515625 242.796875 C 293.515625 241.175781 295.945312 241.175781 295.945312 242.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.261719 181.425781 C 269.261719 183.046875 266.832031 183.046875 266.832031 181.425781 C 266.832031 179.804688 269.261719 179.804688 269.261719 181.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.269531 289.277344 C 294.269531 290.898438 291.839844 290.898438 291.839844 289.277344 C 291.839844 287.65625 294.269531 287.65625 294.269531 289.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.214844 332.265625 C 234.214844 333.882812 231.785156 333.882812 231.785156 332.265625 C 231.785156 330.644531 234.214844 330.644531 234.214844 332.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.398438 298.738281 C 260.398438 300.355469 257.96875 300.355469 257.96875 298.738281 C 257.96875 297.117188 260.398438 297.117188 260.398438 298.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 315.839844 418.691406 L 317.476562 415.855469 L 314.203125 415.855469 Z M 315.839844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.578125 306.394531 C 180.578125 308.015625 178.148438 308.015625 178.148438 306.394531 C 178.148438 304.773438 180.578125 304.773438 180.578125 306.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.886719 379.800781 C 224.886719 381.417969 222.457031 381.417969 222.457031 379.800781 C 222.457031 378.179688 224.886719 378.179688 224.886719 379.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.777344 250.804688 C 274.777344 252.425781 272.347656 252.425781 272.347656 250.804688 C 272.347656 249.183594 274.777344 249.183594 274.777344 250.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.742188 70.910156 L 146.378906 73.746094 L 143.105469 73.746094 Z M 144.742188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.652344 85.304688 C 240.652344 86.925781 238.222656 86.925781 238.222656 85.304688 C 238.222656 83.6875 240.652344 83.6875 240.652344 85.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.921875 186.773438 C 230.921875 188.394531 228.492188 188.394531 228.492188 186.773438 C 228.492188 185.152344 230.921875 185.152344 230.921875 186.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.109375 282.457031 C 202.109375 284.074219 199.679688 284.074219 199.679688 282.457031 C 199.679688 280.835938 202.109375 280.835938 202.109375 282.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.726562 305.0625 C 257.726562 306.683594 255.296875 306.683594 255.296875 305.0625 C 255.296875 303.441406 257.726562 303.441406 257.726562 305.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.894531 326.90625 C 210.894531 328.527344 208.464844 328.527344 208.464844 326.90625 C 208.464844 325.289062 210.894531 325.289062 210.894531 326.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.40625 70.910156 L 243.042969 73.746094 L 239.773438 73.746094 Z M 241.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.527344 251.144531 C 252.527344 252.765625 250.097656 252.765625 250.097656 251.144531 C 250.097656 249.523438 252.527344 249.523438 252.527344 251.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.375 133.546875 C 263.375 135.167969 260.945312 135.167969 260.945312 133.546875 C 260.945312 131.925781 263.375 131.925781 263.375 133.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.265625 229.167969 C 252.265625 230.789062 249.835938 230.789062 249.835938 229.167969 C 249.835938 227.546875 252.265625 227.546875 252.265625 229.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.382812 154.449219 C 174.382812 156.070312 171.953125 156.070312 171.953125 154.449219 C 171.953125 152.832031 174.382812 152.832031 174.382812 154.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.945312 230.421875 C 284.945312 232.042969 282.515625 232.042969 282.515625 230.421875 C 282.515625 228.800781 284.945312 228.800781 284.945312 230.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.699219 233.410156 C 282.699219 235.03125 280.269531 235.03125 280.269531 233.410156 C 280.269531 231.789062 282.699219 231.789062 282.699219 233.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.988281 418.691406 L 146.625 415.855469 L 143.355469 415.855469 Z M 144.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.46875 290.191406 C 182.46875 291.8125 180.039062 291.8125 180.039062 290.191406 C 180.039062 288.570312 182.46875 288.570312 182.46875 290.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.882812 366.707031 C 152.882812 368.328125 150.453125 368.328125 150.453125 366.707031 C 150.453125 365.089844 152.882812 365.089844 152.882812 366.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.058594 70.910156 L 181.695312 73.746094 L 178.421875 73.746094 Z M 180.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.992188 244.425781 C 285.992188 246.046875 283.558594 246.046875 283.558594 244.425781 C 283.558594 242.808594 285.992188 242.808594 285.992188 244.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.242188 238.757812 C 281.242188 240.378906 278.8125 240.378906 278.8125 238.757812 C 278.8125 237.136719 281.242188 237.136719 281.242188 238.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.410156 242.230469 C 305.410156 243.851562 302.976562 243.851562 302.976562 242.230469 C 302.976562 240.613281 305.410156 240.613281 305.410156 242.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.472656 389.300781 C 138.472656 390.917969 136.042969 390.917969 136.042969 389.300781 C 136.042969 387.679688 138.472656 387.679688 138.472656 389.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.179688 318.09375 C 230.179688 319.714844 227.75 319.714844 227.75 318.09375 C 227.75 316.472656 230.179688 316.472656 230.179688 318.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.203125 272.917969 C 255.203125 274.539062 252.773438 274.539062 252.773438 272.917969 C 252.773438 271.296875 255.203125 271.296875 255.203125 272.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.054688 252.859375 C 273.054688 254.476562 270.625 254.476562 270.625 252.859375 C 270.625 251.238281 273.054688 251.238281 273.054688 252.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.371094 294.558594 C 331.371094 296.179688 328.9375 296.179688 328.9375 294.558594 C 328.9375 292.9375 331.371094 292.9375 331.371094 294.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.417969 289.179688 C 300.417969 290.800781 297.988281 290.800781 297.988281 289.179688 C 297.988281 287.5625 300.417969 287.5625 300.417969 289.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.382812 70.910156 L 227.019531 73.746094 L 223.746094 73.746094 Z M 225.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.222656 74.953125 C 205.222656 76.574219 202.792969 76.574219 202.792969 74.953125 C 202.792969 73.332031 205.222656 73.332031 205.222656 74.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.460938 323.464844 C 247.460938 325.082031 245.03125 325.082031 245.03125 323.464844 C 245.03125 321.84375 247.460938 321.84375 247.460938 323.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.925781 188.007812 C 278.925781 189.628906 276.492188 189.628906 276.492188 188.007812 C 276.492188 186.386719 278.925781 186.386719 278.925781 188.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.261719 310.195312 C 279.261719 311.816406 276.832031 311.816406 276.832031 310.195312 C 276.832031 308.574219 279.261719 308.574219 279.261719 310.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.714844 328.355469 C 282.714844 329.976562 280.285156 329.976562 280.285156 328.355469 C 280.285156 326.734375 282.714844 326.734375 282.714844 328.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.039062 317.769531 C 308.039062 319.390625 305.609375 319.390625 305.609375 317.769531 C 305.609375 316.152344 308.039062 316.152344 308.039062 317.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.3125 259.078125 C 298.3125 260.699219 295.882812 260.699219 295.882812 259.078125 C 295.882812 257.457031 298.3125 257.457031 298.3125 259.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.074219 219.746094 C 315.074219 221.363281 312.644531 221.363281 312.644531 219.746094 C 312.644531 218.125 315.074219 218.125 315.074219 219.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.84375 229.1875 C 274.84375 230.808594 272.414062 230.808594 272.414062 229.1875 C 272.414062 227.566406 274.84375 227.566406 274.84375 229.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.148438 332.976562 C 149.148438 334.59375 146.71875 334.59375 146.71875 332.976562 C 146.71875 331.355469 149.148438 331.355469 149.148438 332.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.960938 308.507812 C 294.960938 310.128906 292.53125 310.128906 292.53125 308.507812 C 292.53125 306.886719 294.960938 306.886719 294.960938 308.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.722656 367.035156 C 231.722656 368.65625 229.292969 368.65625 229.292969 367.035156 C 229.292969 365.417969 231.722656 365.417969 231.722656 367.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.839844 295.699219 C 298.839844 297.316406 296.410156 297.316406 296.410156 295.699219 C 296.410156 294.078125 298.839844 294.078125 298.839844 295.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.507812 265.445312 C 275.507812 267.0625 273.074219 267.0625 273.074219 265.445312 C 273.074219 263.824219 275.507812 263.824219 275.507812 265.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.140625 241.804688 C 261.140625 243.425781 258.710938 243.425781 258.710938 241.804688 C 258.710938 240.1875 261.140625 240.1875 261.140625 241.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.457031 330.90625 C 188.457031 332.527344 186.027344 332.527344 186.027344 330.90625 C 186.027344 329.285156 188.457031 329.285156 188.457031 330.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.554688 261.269531 C 256.554688 262.890625 254.125 262.890625 254.125 261.269531 C 254.125 259.652344 256.554688 259.652344 256.554688 261.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.203125 286.3125 C 237.203125 287.929688 234.773438 287.929688 234.773438 286.3125 C 234.773438 284.691406 237.203125 284.691406 237.203125 286.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.417969 220.058594 C 237.417969 221.679688 234.988281 221.679688 234.988281 220.058594 C 234.988281 218.4375 237.417969 218.4375 237.417969 220.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.789062 237.105469 C 255.789062 238.726562 253.355469 238.726562 253.355469 237.105469 C 253.355469 235.484375 255.789062 235.484375 255.789062 237.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.246094 286.660156 C 264.246094 288.28125 261.816406 288.28125 261.816406 286.660156 C 261.816406 285.039062 264.246094 285.039062 264.246094 286.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.285156 290.988281 C 245.285156 292.605469 242.851562 292.605469 242.851562 290.988281 C 242.851562 289.367188 245.285156 289.367188 245.285156 290.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.925781 70.910156 L 214.5625 73.746094 L 211.289062 73.746094 Z M 212.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.917969 262.613281 C 243.917969 264.234375 241.488281 264.234375 241.488281 262.613281 C 241.488281 260.992188 243.917969 260.992188 243.917969 262.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.160156 233.3125 C 226.160156 234.929688 223.730469 234.929688 223.730469 233.3125 C 223.730469 231.691406 226.160156 231.691406 226.160156 233.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.847656 271.074219 C 254.847656 272.695312 252.417969 272.695312 252.417969 271.074219 C 252.417969 269.453125 254.847656 269.453125 254.847656 271.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.738281 322.867188 C 283.738281 324.484375 281.308594 324.484375 281.308594 322.867188 C 281.308594 321.246094 283.738281 321.246094 283.738281 322.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313 268.800781 C 313 270.421875 310.570312 270.421875 310.570312 268.800781 C 310.570312 267.179688 313 267.179688 313 268.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.085938 250.808594 C 143.085938 252.429688 140.65625 252.429688 140.65625 250.808594 C 140.65625 249.1875 143.085938 249.1875 143.085938 250.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.234375 317.015625 C 275.234375 318.636719 272.804688 318.636719 272.804688 317.015625 C 272.804688 315.398438 275.234375 315.398438 275.234375 317.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.371094 205.683594 C 296.371094 207.304688 293.941406 207.304688 293.941406 205.683594 C 293.941406 204.066406 296.371094 204.066406 296.371094 205.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.316406 70.910156 L 149.953125 73.746094 L 146.679688 73.746094 Z M 148.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.773438 245.734375 C 248.773438 247.351562 246.34375 247.351562 246.34375 245.734375 C 246.34375 244.113281 248.773438 244.113281 248.773438 245.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.527344 241.730469 C 253.527344 243.351562 251.097656 243.351562 251.097656 241.730469 C 251.097656 240.113281 253.527344 240.113281 253.527344 241.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.773438 302.433594 C 313.773438 304.054688 311.339844 304.054688 311.339844 302.433594 C 311.339844 300.816406 313.773438 300.816406 313.773438 302.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.328125 149.671875 C 261.328125 151.289062 258.898438 151.289062 258.898438 149.671875 C 258.898438 148.050781 261.328125 148.050781 261.328125 149.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.933594 137.675781 C 151.933594 139.296875 149.503906 139.296875 149.503906 137.675781 C 149.503906 136.058594 151.933594 136.058594 151.933594 137.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.003906 70.910156 L 264.640625 73.746094 L 261.367188 73.746094 Z M 263.003906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.179688 70.910156 L 181.816406 73.746094 L 178.542969 73.746094 Z M 180.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.421875 265.140625 C 274.421875 266.761719 271.988281 266.761719 271.988281 265.140625 C 271.988281 263.519531 274.421875 263.519531 274.421875 265.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.054688 349.429688 C 305.054688 351.046875 302.625 351.046875 302.625 349.429688 C 302.625 347.808594 305.054688 347.808594 305.054688 349.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.203125 213.429688 C 278.203125 215.050781 275.773438 215.050781 275.773438 213.429688 C 275.773438 211.808594 278.203125 211.808594 278.203125 213.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.660156 70.910156 L 307.296875 73.746094 L 304.023438 73.746094 Z M 305.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.386719 132.289062 C 260.386719 133.910156 257.957031 133.910156 257.957031 132.289062 C 257.957031 130.667969 260.386719 130.667969 260.386719 132.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.621094 242.015625 C 254.621094 243.636719 252.191406 243.636719 252.191406 242.015625 C 252.191406 240.394531 254.621094 240.394531 254.621094 242.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.660156 418.691406 L 207.296875 415.855469 L 204.023438 415.855469 Z M 205.660156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.21875 70.910156 L 334.855469 73.746094 L 331.582031 73.746094 Z M 333.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.90625 141.734375 C 191.90625 143.355469 189.476562 143.355469 189.476562 141.734375 C 189.476562 140.113281 191.90625 140.113281 191.90625 141.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.164062 70.910156 L 232.800781 73.746094 L 229.527344 73.746094 Z M 231.164062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 180.53125 85.585938 C 180.53125 87.203125 178.101562 87.203125 178.101562 85.585938 C 178.101562 83.964844 180.53125 83.964844 180.53125 85.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.289062 273.597656 C 209.289062 275.21875 206.855469 275.21875 206.855469 273.597656 C 206.855469 271.980469 209.289062 271.980469 209.289062 273.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.023438 70.910156 L 244.660156 73.746094 L 241.386719 73.746094 Z M 243.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.402344 369.316406 C 318.402344 370.9375 315.96875 370.9375 315.96875 369.316406 C 315.96875 367.695312 318.402344 367.695312 318.402344 369.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.464844 380.011719 C 292.464844 381.632812 290.035156 381.632812 290.035156 380.011719 C 290.035156 378.390625 292.464844 378.390625 292.464844 380.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.375 279.15625 C 261.375 280.773438 258.945312 280.773438 258.945312 279.15625 C 258.945312 277.535156 261.375 277.535156 261.375 279.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.953125 200.738281 C 288.953125 202.359375 286.523438 202.359375 286.523438 200.738281 C 286.523438 199.117188 288.953125 199.117188 288.953125 200.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.125 398.292969 C 215.125 399.914062 212.695312 399.914062 212.695312 398.292969 C 212.695312 396.671875 215.125 396.671875 215.125 398.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.917969 232.703125 C 219.917969 234.320312 217.488281 234.320312 217.488281 232.703125 C 217.488281 231.082031 219.917969 231.082031 219.917969 232.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.265625 287.847656 C 242.265625 289.464844 239.835938 289.464844 239.835938 287.847656 C 239.835938 286.226562 242.265625 286.226562 242.265625 287.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.007812 70.910156 L 179.644531 73.746094 L 176.371094 73.746094 Z M 178.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.308594 328.191406 C 246.308594 329.8125 243.878906 329.8125 243.878906 328.191406 C 243.878906 326.570312 246.308594 326.570312 246.308594 328.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.40625 142.8125 C 258.40625 144.429688 255.976562 144.429688 255.976562 142.8125 C 255.976562 141.191406 258.40625 141.191406 258.40625 142.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.054688 221.757812 C 158.054688 223.375 155.621094 223.375 155.621094 221.757812 C 155.621094 220.136719 158.054688 220.136719 158.054688 221.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.910156 70.910156 L 209.546875 73.746094 L 206.273438 73.746094 Z M 207.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.585938 275.609375 C 290.585938 277.230469 288.15625 277.230469 288.15625 275.609375 C 288.15625 273.992188 290.585938 273.992188 290.585938 275.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.628906 167.675781 C 275.628906 169.296875 273.199219 169.296875 273.199219 167.675781 C 273.199219 166.058594 275.628906 166.058594 275.628906 167.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.429688 114.453125 C 236.429688 116.070312 234 116.070312 234 114.453125 C 234 112.832031 236.429688 112.832031 236.429688 114.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.753906 70.910156 L 223.390625 73.746094 L 220.117188 73.746094 Z M 221.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.566406 358.367188 C 292.566406 359.988281 290.136719 359.988281 290.136719 358.367188 C 290.136719 356.75 292.566406 356.75 292.566406 358.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.019531 135.070312 C 279.019531 136.691406 276.589844 136.691406 276.589844 135.070312 C 276.589844 133.449219 279.019531 133.449219 279.019531 135.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.648438 123.5625 C 272.648438 125.183594 270.21875 125.183594 270.21875 123.5625 C 270.21875 121.941406 272.648438 121.941406 272.648438 123.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.109375 218.503906 C 141.109375 220.125 138.679688 220.125 138.679688 218.503906 C 138.679688 216.882812 141.109375 216.882812 141.109375 218.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.882812 244.496094 C 228.882812 246.117188 226.453125 246.117188 226.453125 244.496094 C 226.453125 242.878906 228.882812 242.878906 228.882812 244.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.570312 258.519531 C 228.570312 260.140625 226.140625 260.140625 226.140625 258.519531 C 226.140625 256.902344 228.570312 256.902344 228.570312 258.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.921875 315.980469 C 236.921875 317.597656 234.492188 317.597656 234.492188 315.980469 C 234.492188 314.359375 236.921875 314.359375 236.921875 315.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.753906 288.449219 C 181.753906 290.066406 179.324219 290.066406 179.324219 288.449219 C 179.324219 286.828125 181.753906 286.828125 181.753906 288.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.933594 309.734375 C 209.933594 311.351562 207.503906 311.351562 207.503906 309.734375 C 207.503906 308.113281 209.933594 308.113281 209.933594 309.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.445312 295.425781 C 210.445312 297.046875 208.015625 297.046875 208.015625 295.425781 C 208.015625 293.804688 210.445312 293.804688 210.445312 295.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 409.847656 230.761719 C 409.847656 232.382812 407.417969 232.382812 407.417969 230.761719 C 407.417969 229.140625 409.847656 229.140625 409.847656 230.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.9375 259.144531 C 182.9375 260.761719 180.507812 260.761719 180.507812 259.144531 C 180.507812 257.523438 182.9375 257.523438 182.9375 259.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.839844 252.90625 C 191.839844 254.527344 189.410156 254.527344 189.410156 252.90625 C 189.410156 251.285156 191.839844 251.285156 191.839844 252.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.722656 358.421875 C 278.722656 360.042969 276.292969 360.042969 276.292969 358.421875 C 276.292969 356.800781 278.722656 356.800781 278.722656 358.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 367.308594 418.691406 L 368.945312 415.855469 L 365.671875 415.855469 Z M 367.308594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.515625 418.691406 L 147.152344 415.855469 L 143.878906 415.855469 Z M 145.515625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.933594 238.042969 C 161.933594 239.660156 159.503906 239.660156 159.503906 238.042969 C 159.503906 236.421875 161.933594 236.421875 161.933594 238.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.257812 268.601562 C 298.257812 270.222656 295.828125 270.222656 295.828125 268.601562 C 295.828125 266.984375 298.257812 266.984375 298.257812 268.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.820312 321.164062 C 288.820312 322.785156 286.390625 322.785156 286.390625 321.164062 C 286.390625 319.542969 288.820312 319.542969 288.820312 321.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.070312 164.929688 C 327.070312 166.550781 324.640625 166.550781 324.640625 164.929688 C 324.640625 163.3125 327.070312 163.3125 327.070312 164.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.535156 88.734375 C 287.535156 90.351562 285.105469 90.351562 285.105469 88.734375 C 285.105469 87.113281 287.535156 87.113281 287.535156 88.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238 114.707031 C 238 116.328125 235.570312 116.328125 235.570312 114.707031 C 235.570312 113.085938 238 113.085938 238 114.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.996094 102.398438 C 215.996094 104.019531 213.566406 104.019531 213.566406 102.398438 C 213.566406 100.777344 215.996094 100.777344 215.996094 102.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.59375 251.277344 C 298.59375 252.898438 296.164062 252.898438 296.164062 251.277344 C 296.164062 249.65625 298.59375 249.65625 298.59375 251.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.890625 148.160156 C 207.890625 149.78125 205.460938 149.78125 205.460938 148.160156 C 205.460938 146.539062 207.890625 146.539062 207.890625 148.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.621094 161.320312 C 292.621094 162.9375 290.191406 162.9375 290.191406 161.320312 C 290.191406 159.699219 292.621094 159.699219 292.621094 161.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.460938 223.851562 C 225.460938 225.472656 223.03125 225.472656 223.03125 223.851562 C 223.03125 222.234375 225.460938 222.234375 225.460938 223.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.820312 207.4375 C 290.820312 209.058594 288.390625 209.058594 288.390625 207.4375 C 288.390625 205.816406 290.820312 205.816406 290.820312 207.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.460938 269.640625 C 260.460938 271.261719 258.03125 271.261719 258.03125 269.640625 C 258.03125 268.023438 260.460938 268.023438 260.460938 269.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.851562 387.382812 C 184.851562 389 182.421875 389 182.421875 387.382812 C 182.421875 385.761719 184.851562 385.761719 184.851562 387.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.226562 242.863281 C 283.226562 244.484375 280.796875 244.484375 280.796875 242.863281 C 280.796875 241.242188 283.226562 241.242188 283.226562 242.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.960938 418.691406 L 288.597656 415.855469 L 285.328125 415.855469 Z M 286.960938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.9375 418.691406 L 125.574219 415.855469 L 122.300781 415.855469 Z M 123.9375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.601562 254.652344 C 327.601562 256.273438 325.171875 256.273438 325.171875 254.652344 C 325.171875 253.03125 327.601562 253.03125 327.601562 254.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.664062 304.222656 C 273.664062 305.84375 271.234375 305.84375 271.234375 304.222656 C 271.234375 302.601562 273.664062 302.601562 273.664062 304.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.511719 235.726562 C 243.511719 237.347656 241.082031 237.347656 241.082031 235.726562 C 241.082031 234.105469 243.511719 234.105469 243.511719 235.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.808594 290.777344 C 312.808594 292.398438 310.378906 292.398438 310.378906 290.777344 C 310.378906 289.15625 312.808594 289.15625 312.808594 290.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.195312 253.90625 C 233.195312 255.527344 230.761719 255.527344 230.761719 253.90625 C 230.761719 252.285156 233.195312 252.285156 233.195312 253.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.625 271.65625 C 305.625 273.277344 303.195312 273.277344 303.195312 271.65625 C 303.195312 270.035156 305.625 270.035156 305.625 271.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.519531 418.691406 L 166.152344 415.855469 L 162.882812 415.855469 Z M 164.519531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.984375 252.855469 C 211.984375 254.472656 209.554688 254.472656 209.554688 252.855469 C 209.554688 251.234375 211.984375 251.234375 211.984375 252.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.042969 306.136719 C 312.042969 307.753906 309.613281 307.753906 309.613281 306.136719 C 309.613281 304.515625 312.042969 304.515625 312.042969 306.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.40625 70.910156 L 134.042969 73.746094 L 130.769531 73.746094 Z M 132.40625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.761719 70.910156 L 221.398438 73.746094 L 218.125 73.746094 Z M 219.761719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.042969 241.386719 C 293.042969 243.007812 290.613281 243.007812 290.613281 241.386719 C 290.613281 239.769531 293.042969 239.769531 293.042969 241.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.691406 228.722656 C 345.691406 230.339844 343.261719 230.339844 343.261719 228.722656 C 343.261719 227.101562 345.691406 227.101562 345.691406 228.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.328125 269.597656 C 240.328125 271.21875 237.898438 271.21875 237.898438 269.597656 C 237.898438 267.976562 240.328125 267.976562 240.328125 269.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.96875 70.910156 L 177.605469 73.746094 L 174.332031 73.746094 Z M 175.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.695312 248.277344 C 265.695312 249.894531 263.265625 249.894531 263.265625 248.277344 C 263.265625 246.65625 265.695312 246.65625 265.695312 248.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.65625 170.824219 C 196.65625 172.441406 194.226562 172.441406 194.226562 170.824219 C 194.226562 169.203125 196.65625 169.203125 196.65625 170.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.90625 193.855469 C 169.90625 195.476562 167.476562 195.476562 167.476562 193.855469 C 167.476562 192.234375 169.90625 192.234375 169.90625 193.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.847656 258.515625 C 172.847656 260.136719 170.417969 260.136719 170.417969 258.515625 C 170.417969 256.898438 172.847656 256.898438 172.847656 258.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.441406 253.066406 C 278.441406 254.6875 276.011719 254.6875 276.011719 253.066406 C 276.011719 251.445312 278.441406 251.445312 278.441406 253.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.074219 192.941406 C 318.074219 194.5625 315.640625 194.5625 315.640625 192.941406 C 315.640625 191.324219 318.074219 191.324219 318.074219 192.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.097656 418.691406 L 260.734375 415.855469 L 257.464844 415.855469 Z M 259.097656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.242188 70.910156 L 260.875 73.746094 L 257.605469 73.746094 Z M 259.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.269531 248.460938 C 285.269531 250.082031 282.839844 250.082031 282.839844 248.460938 C 282.839844 246.839844 285.269531 246.839844 285.269531 248.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.484375 70.910156 L 162.121094 73.746094 L 158.847656 73.746094 Z M 160.484375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.789062 70.910156 L 233.425781 73.746094 L 230.152344 73.746094 Z M 231.789062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.535156 70.910156 L 280.171875 73.746094 L 276.898438 73.746094 Z M 278.535156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264 70.910156 L 265.636719 73.746094 L 262.363281 73.746094 Z M 264 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 379.023438 70.910156 L 380.660156 73.746094 L 377.386719 73.746094 Z M 379.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.578125 281.019531 C 196.578125 282.640625 194.148438 282.640625 194.148438 281.019531 C 194.148438 279.402344 196.578125 279.402344 196.578125 281.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.050781 226.667969 C 262.050781 228.285156 259.621094 228.285156 259.621094 226.667969 C 259.621094 225.046875 262.050781 225.046875 262.050781 226.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.445312 185.082031 C 223.445312 186.699219 221.015625 186.699219 221.015625 185.082031 C 221.015625 183.460938 223.445312 183.460938 223.445312 185.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.71875 178.785156 C 199.71875 180.40625 197.289062 180.40625 197.289062 178.785156 C 197.289062 177.167969 199.71875 177.167969 199.71875 178.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.410156 129.210938 C 260.410156 130.832031 257.980469 130.832031 257.980469 129.210938 C 257.980469 127.589844 260.410156 127.589844 260.410156 129.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.34375 70.910156 L 193.980469 73.746094 L 190.707031 73.746094 Z M 192.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.996094 238.519531 C 199.996094 240.140625 197.566406 240.140625 197.566406 238.519531 C 197.566406 236.898438 199.996094 236.898438 199.996094 238.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.597656 197.144531 C 220.597656 198.765625 218.167969 198.765625 218.167969 197.144531 C 218.167969 195.527344 220.597656 195.527344 220.597656 197.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.488281 164.058594 C 219.488281 165.679688 217.058594 165.679688 217.058594 164.058594 C 217.058594 162.441406 219.488281 162.441406 219.488281 164.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.863281 232.835938 C 155.863281 234.457031 153.433594 234.457031 153.433594 232.835938 C 153.433594 231.21875 155.863281 231.21875 155.863281 232.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.148438 399.375 C 152.148438 400.996094 149.71875 400.996094 149.71875 399.375 C 149.71875 397.757812 152.148438 397.757812 152.148438 399.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.515625 230.894531 C 238.515625 232.515625 236.082031 232.515625 236.082031 230.894531 C 236.082031 229.277344 238.515625 229.277344 238.515625 230.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.640625 332.066406 C 314.640625 333.6875 312.210938 333.6875 312.210938 332.066406 C 312.210938 330.449219 314.640625 330.449219 314.640625 332.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.9375 219.046875 C 174.9375 220.664062 172.503906 220.664062 172.503906 219.046875 C 172.503906 217.425781 174.9375 217.425781 174.9375 219.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.5 134.394531 C 244.5 136.015625 242.070312 136.015625 242.070312 134.394531 C 242.070312 132.773438 244.5 132.773438 244.5 134.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.320312 221.988281 C 251.320312 223.609375 248.886719 223.609375 248.886719 221.988281 C 248.886719 220.367188 251.320312 220.367188 251.320312 221.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.167969 223.320312 C 332.167969 224.941406 329.738281 224.941406 329.738281 223.320312 C 329.738281 221.699219 332.167969 221.699219 332.167969 223.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.925781 209.960938 C 201.925781 211.582031 199.496094 211.582031 199.496094 209.960938 C 199.496094 208.339844 201.925781 208.339844 201.925781 209.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.773438 172.636719 C 259.773438 174.257812 257.34375 174.257812 257.34375 172.636719 C 257.34375 171.019531 259.773438 171.019531 259.773438 172.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.238281 261 C 280.238281 262.617188 277.808594 262.617188 277.808594 261 C 277.808594 259.378906 280.238281 259.378906 280.238281 261 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.140625 385.386719 C 179.140625 387.007812 176.710938 387.007812 176.710938 385.386719 C 176.710938 383.765625 179.140625 383.765625 179.140625 385.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.859375 188.113281 C 188.859375 189.734375 186.429688 189.734375 186.429688 188.113281 C 186.429688 186.492188 188.859375 186.492188 188.859375 188.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.453125 180.996094 C 231.453125 182.613281 229.023438 182.613281 229.023438 180.996094 C 229.023438 179.375 231.453125 179.375 231.453125 180.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.589844 400.6875 C 286.589844 402.304688 284.160156 402.304688 284.160156 400.6875 C 284.160156 399.066406 286.589844 399.066406 286.589844 400.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.089844 293.992188 C 238.089844 295.609375 235.660156 295.609375 235.660156 293.992188 C 235.660156 292.371094 238.089844 292.371094 238.089844 293.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.359375 222.453125 C 318.359375 224.074219 315.929688 224.074219 315.929688 222.453125 C 315.929688 220.832031 318.359375 220.832031 318.359375 222.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.015625 236.746094 C 286.015625 238.367188 283.585938 238.367188 283.585938 236.746094 C 283.585938 235.125 286.015625 235.125 286.015625 236.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.398438 190.910156 C 309.398438 192.53125 306.96875 192.53125 306.96875 190.910156 C 306.96875 189.289062 309.398438 189.289062 309.398438 190.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.96875 246.363281 C 207.96875 247.984375 205.539062 247.984375 205.539062 246.363281 C 205.539062 244.746094 207.96875 244.746094 207.96875 246.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.117188 70.910156 L 268.75 73.746094 L 265.480469 73.746094 Z M 267.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.847656 325.6875 C 185.847656 327.308594 183.417969 327.308594 183.417969 325.6875 C 183.417969 324.066406 185.847656 324.066406 185.847656 325.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.421875 418.691406 L 269.058594 415.855469 L 265.785156 415.855469 Z M 267.421875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.164062 70.910156 L 215.800781 73.746094 L 212.53125 73.746094 Z M 214.164062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.929688 250.539062 C 254.929688 252.160156 252.5 252.160156 252.5 250.539062 C 252.5 248.917969 254.929688 248.917969 254.929688 250.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.902344 306.332031 C 280.902344 307.953125 278.46875 307.953125 278.46875 306.332031 C 278.46875 304.710938 280.902344 304.710938 280.902344 306.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.601562 332.179688 C 308.601562 333.800781 306.171875 333.800781 306.171875 332.179688 C 306.171875 330.5625 308.601562 330.5625 308.601562 332.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.988281 283.808594 C 178.988281 285.429688 176.558594 285.429688 176.558594 283.808594 C 176.558594 282.1875 178.988281 282.1875 178.988281 283.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.054688 247.054688 C 131.054688 248.675781 128.625 248.675781 128.625 247.054688 C 128.625 245.433594 131.054688 245.433594 131.054688 247.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.90625 205.046875 C 258.90625 206.664062 256.476562 206.664062 256.476562 205.046875 C 256.476562 203.425781 258.90625 203.425781 258.90625 205.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.617188 243.878906 C 220.617188 245.5 218.1875 245.5 218.1875 243.878906 C 218.1875 242.257812 220.617188 242.257812 220.617188 243.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.292969 245.015625 C 268.292969 246.636719 265.863281 246.636719 265.863281 245.015625 C 265.863281 243.398438 268.292969 243.398438 268.292969 245.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.71875 263.03125 C 178.71875 264.652344 176.289062 264.652344 176.289062 263.03125 C 176.289062 261.414062 178.71875 261.414062 178.71875 263.03125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.855469 418.691406 L 138.492188 415.855469 L 135.21875 415.855469 Z M 136.855469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.652344 259.164062 C 239.652344 260.785156 237.222656 260.785156 237.222656 259.164062 C 237.222656 257.542969 239.652344 257.542969 239.652344 259.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.101562 226.898438 C 300.101562 228.519531 297.671875 228.519531 297.671875 226.898438 C 297.671875 225.277344 300.101562 225.277344 300.101562 226.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.167969 301.027344 C 332.167969 302.644531 329.734375 302.644531 329.734375 301.027344 C 329.734375 299.40625 332.167969 299.40625 332.167969 301.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.402344 332.265625 C 221.402344 333.886719 218.972656 333.886719 218.972656 332.265625 C 218.972656 330.644531 221.402344 330.644531 221.402344 332.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.636719 221.175781 C 132.636719 222.796875 130.207031 222.796875 130.207031 221.175781 C 130.207031 219.554688 132.636719 219.554688 132.636719 221.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.542969 152.875 C 236.542969 154.496094 234.113281 154.496094 234.113281 152.875 C 234.113281 151.253906 236.542969 151.253906 236.542969 152.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.25 283.078125 C 293.25 284.699219 290.820312 284.699219 290.820312 283.078125 C 290.820312 281.457031 293.25 281.457031 293.25 283.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.699219 70.910156 L 252.335938 73.746094 L 249.0625 73.746094 Z M 250.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.394531 414.605469 C 126.394531 416.226562 123.960938 416.226562 123.960938 414.605469 C 123.960938 412.988281 126.394531 412.988281 126.394531 414.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.402344 159.210938 C 167.402344 160.832031 164.972656 160.832031 164.972656 159.210938 C 164.972656 157.59375 167.402344 157.59375 167.402344 159.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.707031 70.910156 L 186.34375 73.746094 L 183.070312 73.746094 Z M 184.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.992188 278.757812 C 220.992188 280.378906 218.5625 280.378906 218.5625 278.757812 C 218.5625 277.136719 220.992188 277.136719 220.992188 278.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.773438 263.921875 C 290.773438 265.542969 288.34375 265.542969 288.34375 263.921875 C 288.34375 262.304688 290.773438 262.304688 290.773438 263.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.082031 121.886719 C 147.082031 123.507812 144.648438 123.507812 144.648438 121.886719 C 144.648438 120.269531 147.082031 120.269531 147.082031 121.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.503906 231.59375 C 294.503906 233.214844 292.074219 233.214844 292.074219 231.59375 C 292.074219 229.972656 294.503906 229.972656 294.503906 231.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.589844 70.910156 L 171.226562 73.746094 L 167.953125 73.746094 Z M 169.589844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.308594 70.910156 L 198.945312 73.746094 L 195.671875 73.746094 Z M 197.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.308594 205.714844 C 147.308594 207.332031 144.878906 207.332031 144.878906 205.714844 C 144.878906 204.09375 147.308594 204.09375 147.308594 205.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.707031 157.816406 C 164.707031 159.4375 162.277344 159.4375 162.277344 157.816406 C 162.277344 156.195312 164.707031 156.195312 164.707031 157.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.382812 70.910156 L 190.019531 73.746094 L 186.746094 73.746094 Z M 188.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.867188 119.226562 C 275.867188 120.84375 273.4375 120.84375 273.4375 119.226562 C 273.4375 117.605469 275.867188 117.605469 275.867188 119.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.441406 211.554688 C 275.441406 213.171875 273.011719 213.171875 273.011719 211.554688 C 273.011719 209.933594 275.441406 209.933594 275.441406 211.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.480469 151.417969 C 261.480469 153.039062 259.050781 153.039062 259.050781 151.417969 C 259.050781 149.800781 261.480469 149.800781 261.480469 151.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.875 130.6875 C 282.875 132.308594 280.445312 132.308594 280.445312 130.6875 C 280.445312 129.070312 282.875 129.070312 282.875 130.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.746094 70.910156 L 291.378906 73.746094 L 288.109375 73.746094 Z M 289.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.480469 281.171875 C 278.480469 282.792969 276.050781 282.792969 276.050781 281.171875 C 276.050781 279.550781 278.480469 279.550781 278.480469 281.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.773438 221.871094 C 283.773438 223.488281 281.34375 223.488281 281.34375 221.871094 C 281.34375 220.25 283.773438 220.25 283.773438 221.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.941406 329.242188 C 296.941406 330.859375 294.511719 330.859375 294.511719 329.242188 C 294.511719 327.621094 296.941406 327.621094 296.941406 329.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.820312 280.839844 C 320.820312 282.460938 318.390625 282.460938 318.390625 280.839844 C 318.390625 279.222656 320.820312 279.222656 320.820312 280.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.230469 254.21875 C 298.230469 255.839844 295.800781 255.839844 295.800781 254.21875 C 295.800781 252.597656 298.230469 252.597656 298.230469 254.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.28125 70.910156 L 195.917969 73.746094 L 192.644531 73.746094 Z M 194.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 362.972656 261.941406 C 362.972656 263.5625 360.542969 263.5625 360.542969 261.941406 C 360.542969 260.324219 362.972656 260.324219 362.972656 261.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.011719 272.273438 C 225.011719 273.894531 222.582031 273.894531 222.582031 272.273438 C 222.582031 270.65625 225.011719 270.65625 225.011719 272.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.421875 262.5 C 261.421875 264.117188 258.992188 264.117188 258.992188 262.5 C 258.992188 260.878906 261.421875 260.878906 261.421875 262.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.046875 247.296875 C 291.046875 248.914062 288.617188 248.914062 288.617188 247.296875 C 288.617188 245.675781 291.046875 245.675781 291.046875 247.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.539062 173.207031 C 311.539062 174.828125 309.109375 174.828125 309.109375 173.207031 C 309.109375 171.585938 311.539062 171.585938 311.539062 173.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.398438 270.617188 C 216.398438 272.234375 213.96875 272.234375 213.96875 270.617188 C 213.96875 268.996094 216.398438 268.996094 216.398438 270.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.132812 215.160156 C 272.132812 216.777344 269.703125 216.777344 269.703125 215.160156 C 269.703125 213.539062 272.132812 213.539062 272.132812 215.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.378906 304.164062 C 224.378906 305.78125 221.949219 305.78125 221.949219 304.164062 C 221.949219 302.542969 224.378906 302.542969 224.378906 304.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.296875 239.558594 C 207.296875 241.179688 204.867188 241.179688 204.867188 239.558594 C 204.867188 237.9375 207.296875 237.9375 207.296875 239.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.402344 70.910156 L 155.039062 73.746094 L 151.765625 73.746094 Z M 153.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.890625 230.511719 C 273.890625 232.132812 271.460938 232.132812 271.460938 230.511719 C 271.460938 228.890625 273.890625 228.890625 273.890625 230.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 382.164062 418.691406 L 383.800781 415.855469 L 380.527344 415.855469 Z M 382.164062 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.9375 418.691406 L 157.574219 415.855469 L 154.300781 415.855469 Z M 155.9375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.484375 199.558594 C 144.484375 201.179688 142.054688 201.179688 142.054688 199.558594 C 142.054688 197.9375 144.484375 197.9375 144.484375 199.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.851562 224.488281 C 196.851562 226.109375 194.421875 226.109375 194.421875 224.488281 C 194.421875 222.871094 196.851562 222.871094 196.851562 224.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.15625 88.621094 C 304.15625 90.242188 301.726562 90.242188 301.726562 88.621094 C 301.726562 87 304.15625 87 304.15625 88.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.472656 87.238281 C 188.472656 88.855469 186.042969 88.855469 186.042969 87.238281 C 186.042969 85.617188 188.472656 85.617188 188.472656 87.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.195312 70.910156 L 214.832031 73.746094 L 211.558594 73.746094 Z M 213.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.769531 144.785156 C 229.769531 146.40625 227.339844 146.40625 227.339844 144.785156 C 227.339844 143.167969 229.769531 143.167969 229.769531 144.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.785156 165.261719 C 154.785156 166.882812 152.355469 166.882812 152.355469 165.261719 C 152.355469 163.644531 154.785156 163.644531 154.785156 165.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.136719 299.570312 C 203.136719 301.191406 200.707031 301.191406 200.707031 299.570312 C 200.707031 297.953125 203.136719 297.953125 203.136719 299.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.816406 283.511719 C 286.816406 285.132812 284.386719 285.132812 284.386719 283.511719 C 284.386719 281.890625 286.816406 281.890625 286.816406 283.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.128906 175.347656 C 272.128906 176.96875 269.699219 176.96875 269.699219 175.347656 C 269.699219 173.726562 272.128906 173.726562 272.128906 175.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.9375 295.960938 C 278.9375 297.582031 276.507812 297.582031 276.507812 295.960938 C 276.507812 294.339844 278.9375 294.339844 278.9375 295.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.203125 196.652344 C 226.203125 198.269531 223.773438 198.269531 223.773438 196.652344 C 223.773438 195.03125 226.203125 195.03125 226.203125 196.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.511719 313.1875 C 274.511719 314.808594 272.082031 314.808594 272.082031 313.1875 C 272.082031 311.570312 274.511719 311.570312 274.511719 313.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.578125 257.445312 C 260.578125 259.066406 258.148438 259.066406 258.148438 257.445312 C 258.148438 255.828125 260.578125 255.828125 260.578125 257.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.613281 270.183594 C 212.613281 271.804688 210.183594 271.804688 210.183594 270.183594 C 210.183594 268.566406 212.613281 268.566406 212.613281 270.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.375 282.503906 C 225.375 284.125 222.945312 284.125 222.945312 282.503906 C 222.945312 280.882812 225.375 280.882812 225.375 282.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.386719 258.203125 C 313.386719 259.824219 310.957031 259.824219 310.957031 258.203125 C 310.957031 256.582031 313.386719 256.582031 313.386719 258.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.816406 292.21875 C 203.816406 293.839844 201.386719 293.839844 201.386719 292.21875 C 201.386719 290.597656 203.816406 290.597656 203.816406 292.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.40625 281.984375 C 211.40625 283.605469 208.976562 283.605469 208.976562 281.984375 C 208.976562 280.363281 211.40625 280.363281 211.40625 281.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.601562 280.382812 C 292.601562 282 290.171875 282 290.171875 280.382812 C 290.171875 278.761719 292.601562 278.761719 292.601562 280.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.941406 302.726562 C 319.941406 304.347656 317.511719 304.347656 317.511719 302.726562 C 317.511719 301.109375 319.941406 301.109375 319.941406 302.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.542969 127.667969 C 238.542969 129.289062 236.113281 129.289062 236.113281 127.667969 C 236.113281 126.050781 238.542969 126.050781 238.542969 127.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.59375 350.761719 C 287.59375 352.382812 285.164062 352.382812 285.164062 350.761719 C 285.164062 349.140625 287.59375 349.140625 287.59375 350.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.078125 265.832031 C 267.078125 267.453125 264.648438 267.453125 264.648438 265.832031 C 264.648438 264.210938 267.078125 264.210938 267.078125 265.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.300781 70.910156 L 302.9375 73.746094 L 299.667969 73.746094 Z M 301.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.679688 70.910156 L 219.316406 73.746094 L 216.042969 73.746094 Z M 217.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.082031 208.964844 C 310.082031 210.585938 307.652344 210.585938 307.652344 208.964844 C 307.652344 207.34375 310.082031 207.34375 310.082031 208.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.402344 222.511719 C 290.402344 224.132812 287.972656 224.132812 287.972656 222.511719 C 287.972656 220.890625 290.402344 220.890625 290.402344 222.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.699219 70.910156 L 152.335938 73.746094 L 149.0625 73.746094 Z M 150.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.226562 273.183594 C 231.226562 274.804688 228.796875 274.804688 228.796875 273.183594 C 228.796875 271.566406 231.226562 271.566406 231.226562 273.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.089844 70.910156 L 163.726562 73.746094 L 160.453125 73.746094 Z M 162.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.246094 262.261719 C 224.246094 263.878906 221.816406 263.878906 221.816406 262.261719 C 221.816406 260.640625 224.246094 260.640625 224.246094 262.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.546875 101.195312 C 271.546875 102.816406 269.117188 102.816406 269.117188 101.195312 C 269.117188 99.574219 271.546875 99.574219 271.546875 101.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.15625 243.59375 C 210.15625 245.214844 207.722656 245.214844 207.722656 243.59375 C 207.722656 241.972656 210.15625 241.972656 210.15625 243.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.464844 191.261719 C 282.464844 192.882812 280.035156 192.882812 280.035156 191.261719 C 280.035156 189.640625 282.464844 189.640625 282.464844 191.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.578125 360.621094 C 223.578125 362.242188 221.148438 362.242188 221.148438 360.621094 C 221.148438 359.003906 223.578125 359.003906 223.578125 360.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.894531 118.613281 C 191.894531 120.230469 189.464844 120.230469 189.464844 118.613281 C 189.464844 116.992188 191.894531 116.992188 191.894531 118.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.886719 245.054688 C 128.886719 246.671875 126.457031 246.671875 126.457031 245.054688 C 126.457031 243.433594 128.886719 243.433594 128.886719 245.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.347656 70.910156 L 199.984375 73.746094 L 196.710938 73.746094 Z M 198.347656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.464844 70.910156 L 224.101562 73.746094 L 220.832031 73.746094 Z M 222.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.378906 246.621094 C 132.378906 248.242188 129.949219 248.242188 129.949219 246.621094 C 129.949219 245.003906 132.378906 245.003906 132.378906 246.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.410156 298.808594 C 122.410156 300.429688 119.980469 300.429688 119.980469 298.808594 C 119.980469 297.191406 122.410156 297.191406 122.410156 298.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.792969 204.472656 C 296.792969 206.09375 294.363281 206.09375 294.363281 204.472656 C 294.363281 202.851562 296.792969 202.851562 296.792969 204.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.265625 262.417969 C 257.265625 264.039062 254.835938 264.039062 254.835938 262.417969 C 254.835938 260.796875 257.265625 260.796875 257.265625 262.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.164062 188.015625 C 237.164062 189.632812 234.734375 189.632812 234.734375 188.015625 C 234.734375 186.394531 237.164062 186.394531 237.164062 188.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.171875 240.53125 C 304.171875 242.152344 301.742188 242.152344 301.742188 240.53125 C 301.742188 238.914062 304.171875 238.914062 304.171875 240.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.253906 97.898438 C 173.253906 99.515625 170.824219 99.515625 170.824219 97.898438 C 170.824219 96.277344 173.253906 96.277344 173.253906 97.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.921875 187.308594 C 279.921875 188.929688 277.492188 188.929688 277.492188 187.308594 C 277.492188 185.6875 279.921875 185.6875 279.921875 187.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.480469 209.191406 C 313.480469 210.808594 311.050781 210.808594 311.050781 209.191406 C 311.050781 207.570312 313.480469 207.570312 313.480469 209.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.6875 70.910156 L 315.324219 73.746094 L 312.050781 73.746094 Z M 313.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.875 304.625 C 255.875 306.246094 253.445312 306.246094 253.445312 304.625 C 253.445312 303.003906 255.875 303.003906 255.875 304.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.261719 270.671875 C 246.261719 272.292969 243.832031 272.292969 243.832031 270.671875 C 243.832031 269.050781 246.261719 269.050781 246.261719 270.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 390.726562 143.269531 C 390.726562 144.890625 388.296875 144.890625 388.296875 143.269531 C 388.296875 141.648438 390.726562 141.648438 390.726562 143.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.675781 92.441406 C 235.675781 94.0625 233.246094 94.0625 233.246094 92.441406 C 233.246094 90.820312 235.675781 90.820312 235.675781 92.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 384.046875 262.371094 C 384.046875 263.988281 381.617188 263.988281 381.617188 262.371094 C 381.617188 260.75 384.046875 260.75 384.046875 262.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.050781 211.191406 C 241.050781 212.8125 238.617188 212.8125 238.617188 211.191406 C 238.617188 209.574219 241.050781 209.574219 241.050781 211.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.511719 324.285156 C 159.511719 325.902344 157.082031 325.902344 157.082031 324.285156 C 157.082031 322.664062 159.511719 322.664062 159.511719 324.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.980469 70.910156 L 232.617188 73.746094 L 229.34375 73.746094 Z M 230.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.753906 116.027344 C 236.753906 117.648438 234.324219 117.648438 234.324219 116.027344 C 234.324219 114.40625 236.753906 114.40625 236.753906 116.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.410156 84.378906 C 172.410156 85.996094 169.980469 85.996094 169.980469 84.378906 C 169.980469 82.757812 172.410156 82.757812 172.410156 84.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 116.433594 418.691406 L 118.070312 415.855469 L 114.796875 415.855469 Z M 116.433594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.332031 234.125 C 277.332031 235.742188 274.902344 235.742188 274.902344 234.125 C 274.902344 232.503906 277.332031 232.503906 277.332031 234.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.9375 245.324219 C 211.9375 246.945312 209.507812 246.945312 209.507812 245.324219 C 209.507812 243.707031 211.9375 243.707031 211.9375 245.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.277344 242.429688 C 233.277344 244.046875 230.847656 244.046875 230.847656 242.429688 C 230.847656 240.808594 233.277344 240.808594 233.277344 242.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.441406 160.164062 C 164.441406 161.785156 162.011719 161.785156 162.011719 160.164062 C 162.011719 158.542969 164.441406 158.542969 164.441406 160.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.648438 218.667969 C 295.648438 220.289062 293.21875 220.289062 293.21875 218.667969 C 293.21875 217.050781 295.648438 217.050781 295.648438 218.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.296875 118.988281 C 250.296875 120.609375 247.867188 120.609375 247.867188 118.988281 C 247.867188 117.367188 250.296875 117.367188 250.296875 118.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.101562 265.742188 C 256.101562 267.363281 253.671875 267.363281 253.671875 265.742188 C 253.671875 264.121094 256.101562 264.121094 256.101562 265.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 372.464844 84.691406 C 372.464844 86.3125 370.035156 86.3125 370.035156 84.691406 C 370.035156 83.074219 372.464844 83.074219 372.464844 84.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.136719 248.492188 C 280.136719 250.113281 277.707031 250.113281 277.707031 248.492188 C 277.707031 246.871094 280.136719 246.871094 280.136719 248.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.339844 222.660156 C 276.339844 224.28125 273.910156 224.28125 273.910156 222.660156 C 273.910156 221.042969 276.339844 221.042969 276.339844 222.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.484375 237.738281 C 268.484375 239.359375 266.054688 239.359375 266.054688 237.738281 C 266.054688 236.121094 268.484375 236.121094 268.484375 237.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.667969 209.636719 C 149.667969 211.257812 147.238281 211.257812 147.238281 209.636719 C 147.238281 208.015625 149.667969 208.015625 149.667969 209.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.050781 122.867188 C 227.050781 124.488281 224.621094 124.488281 224.621094 122.867188 C 224.621094 121.246094 227.050781 121.246094 227.050781 122.867188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.015625 70.910156 L 184.652344 73.746094 L 181.378906 73.746094 Z M 183.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.316406 235.582031 C 178.316406 237.203125 175.886719 237.203125 175.886719 235.582031 C 175.886719 233.960938 178.316406 233.960938 178.316406 235.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.859375 215.71875 C 223.859375 217.335938 221.429688 217.335938 221.429688 215.71875 C 221.429688 214.097656 223.859375 214.097656 223.859375 215.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.269531 173.867188 C 201.269531 175.488281 198.839844 175.488281 198.839844 173.867188 C 198.839844 172.25 201.269531 172.25 201.269531 173.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.855469 86.410156 C 176.855469 88.03125 174.425781 88.03125 174.425781 86.410156 C 174.425781 84.792969 176.855469 84.792969 176.855469 86.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.859375 142.6875 C 189.859375 144.304688 187.429688 144.304688 187.429688 142.6875 C 187.429688 141.066406 189.859375 141.066406 189.859375 142.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.707031 258.628906 C 212.707031 260.25 210.277344 260.25 210.277344 258.628906 C 210.277344 257.011719 212.707031 257.011719 212.707031 258.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.652344 280.371094 C 220.652344 281.992188 218.21875 281.992188 218.21875 280.371094 C 218.21875 278.75 220.652344 278.75 220.652344 280.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.90625 285.300781 C 293.90625 286.921875 291.476562 286.921875 291.476562 285.300781 C 291.476562 283.683594 293.90625 283.683594 293.90625 285.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.136719 294.464844 C 337.136719 296.085938 334.707031 296.085938 334.707031 294.464844 C 334.707031 292.84375 337.136719 292.84375 337.136719 294.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.074219 332.941406 C 149.074219 334.558594 146.644531 334.558594 146.644531 332.941406 C 146.644531 331.320312 149.074219 331.320312 149.074219 332.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.117188 265.503906 C 223.117188 267.125 220.6875 267.125 220.6875 265.503906 C 220.6875 263.886719 223.117188 263.886719 223.117188 265.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.0625 189.980469 C 323.0625 191.601562 320.632812 191.601562 320.632812 189.980469 C 320.632812 188.363281 323.0625 188.363281 323.0625 189.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.152344 267.023438 C 250.152344 268.640625 247.722656 268.640625 247.722656 267.023438 C 247.722656 265.402344 250.152344 265.402344 250.152344 267.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.976562 147.25 C 247.976562 148.871094 245.546875 148.871094 245.546875 147.25 C 245.546875 145.628906 247.976562 145.628906 247.976562 147.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.464844 128.480469 C 229.464844 130.101562 227.03125 130.101562 227.03125 128.480469 C 227.03125 126.863281 229.464844 126.863281 229.464844 128.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.585938 190.679688 C 168.585938 192.300781 166.15625 192.300781 166.15625 190.679688 C 166.15625 189.058594 168.585938 189.058594 168.585938 190.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.796875 70.910156 L 162.433594 73.746094 L 159.160156 73.746094 Z M 160.796875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.183594 239.023438 C 315.183594 240.644531 312.753906 240.644531 312.753906 239.023438 C 312.753906 237.402344 315.183594 237.402344 315.183594 239.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.101562 179.574219 C 323.101562 181.195312 320.671875 181.195312 320.671875 179.574219 C 320.671875 177.953125 323.101562 177.953125 323.101562 179.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.855469 219.855469 C 255.855469 221.472656 253.425781 221.472656 253.425781 219.855469 C 253.425781 218.234375 255.855469 218.234375 255.855469 219.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.386719 196.347656 C 175.386719 197.96875 172.957031 197.96875 172.957031 196.347656 C 172.957031 194.726562 175.386719 194.726562 175.386719 196.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.371094 177.691406 C 217.371094 179.3125 214.941406 179.3125 214.941406 177.691406 C 214.941406 176.074219 217.371094 176.074219 217.371094 177.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.863281 144.480469 C 227.863281 146.097656 225.433594 146.097656 225.433594 144.480469 C 225.433594 142.859375 227.863281 142.859375 227.863281 144.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.148438 346.699219 C 157.148438 348.320312 154.71875 348.320312 154.71875 346.699219 C 154.71875 345.078125 157.148438 345.078125 157.148438 346.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.144531 293.179688 C 263.144531 294.796875 260.714844 294.796875 260.714844 293.179688 C 260.714844 291.558594 263.144531 291.558594 263.144531 293.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.5625 317.96875 C 157.5625 319.585938 155.132812 319.585938 155.132812 317.96875 C 155.132812 316.347656 157.5625 316.347656 157.5625 317.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.210938 253.570312 C 297.210938 255.191406 294.78125 255.191406 294.78125 253.570312 C 294.78125 251.953125 297.210938 251.953125 297.210938 253.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215 390.609375 C 215 392.226562 212.570312 392.226562 212.570312 390.609375 C 212.570312 388.988281 215 388.988281 215 390.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.910156 404.207031 C 201.910156 405.828125 199.480469 405.828125 199.480469 404.207031 C 199.480469 402.585938 201.910156 402.585938 201.910156 404.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.441406 138.539062 C 196.441406 140.160156 194.011719 140.160156 194.011719 138.539062 C 194.011719 136.921875 196.441406 136.921875 196.441406 138.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.175781 152.253906 C 290.175781 153.871094 287.746094 153.871094 287.746094 152.253906 C 287.746094 150.632812 290.175781 150.632812 290.175781 152.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.492188 166.886719 C 275.492188 168.503906 273.0625 168.503906 273.0625 166.886719 C 273.0625 165.265625 275.492188 165.265625 275.492188 166.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.832031 120.429688 C 240.832031 122.046875 238.402344 122.046875 238.402344 120.429688 C 238.402344 118.808594 240.832031 118.808594 240.832031 120.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.621094 217.4375 C 277.621094 219.058594 275.191406 219.058594 275.191406 217.4375 C 275.191406 215.816406 277.621094 215.816406 277.621094 217.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.953125 126.5625 C 153.953125 128.183594 151.523438 128.183594 151.523438 126.5625 C 151.523438 124.941406 153.953125 124.941406 153.953125 126.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.296875 114.9375 C 259.296875 116.558594 256.867188 116.558594 256.867188 114.9375 C 256.867188 113.320312 259.296875 113.320312 259.296875 114.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.492188 246.097656 C 253.492188 247.71875 251.0625 247.71875 251.0625 246.097656 C 251.0625 244.480469 253.492188 244.480469 253.492188 246.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.90625 278.054688 C 185.90625 279.675781 183.476562 279.675781 183.476562 278.054688 C 183.476562 276.433594 185.90625 276.433594 185.90625 278.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.457031 268.976562 C 268.457031 270.597656 266.023438 270.597656 266.023438 268.976562 C 266.023438 267.359375 268.457031 267.359375 268.457031 268.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.085938 70.910156 L 279.722656 73.746094 L 276.449219 73.746094 Z M 278.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.539062 272.53125 C 234.539062 274.148438 232.109375 274.148438 232.109375 272.53125 C 232.109375 270.910156 234.539062 270.910156 234.539062 272.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.71875 339.996094 C 267.71875 341.617188 265.289062 341.617188 265.289062 339.996094 C 265.289062 338.375 267.71875 338.375 267.71875 339.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.519531 155.359375 C 230.519531 156.976562 228.089844 156.976562 228.089844 155.359375 C 228.089844 153.738281 230.519531 153.738281 230.519531 155.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.898438 84.488281 C 273.898438 86.109375 271.46875 86.109375 271.46875 84.488281 C 271.46875 82.867188 273.898438 82.867188 273.898438 84.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.800781 221.28125 C 245.800781 222.902344 243.371094 222.902344 243.371094 221.28125 C 243.371094 219.664062 245.800781 219.664062 245.800781 221.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.929688 418.691406 L 225.566406 415.855469 L 222.292969 415.855469 Z M 223.929688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.535156 70.910156 L 159.171875 73.746094 L 155.902344 73.746094 Z M 157.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.210938 385.355469 C 307.210938 386.972656 304.777344 386.972656 304.777344 385.355469 C 304.777344 383.734375 307.210938 383.734375 307.210938 385.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.722656 364.082031 C 241.722656 365.699219 239.292969 365.699219 239.292969 364.082031 C 239.292969 362.460938 241.722656 362.460938 241.722656 364.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.347656 207.339844 C 233.347656 208.960938 230.917969 208.960938 230.917969 207.339844 C 230.917969 205.722656 233.347656 205.722656 233.347656 207.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.738281 108.132812 C 215.738281 109.753906 213.308594 109.753906 213.308594 108.132812 C 213.308594 106.511719 215.738281 106.511719 215.738281 108.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 341.574219 230.480469 C 341.574219 232.101562 339.144531 232.101562 339.144531 230.480469 C 339.144531 228.859375 341.574219 228.859375 341.574219 230.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.300781 70.910156 L 209.9375 73.746094 L 206.664062 73.746094 Z M 208.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.507812 70.910156 L 210.144531 73.746094 L 206.871094 73.746094 Z M 208.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.605469 156.453125 C 285.605469 158.074219 283.175781 158.074219 283.175781 156.453125 C 283.175781 154.835938 285.605469 154.835938 285.605469 156.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.335938 227.363281 C 292.335938 228.984375 289.90625 228.984375 289.90625 227.363281 C 289.90625 225.742188 292.335938 225.742188 292.335938 227.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.046875 181.003906 C 267.046875 182.621094 264.617188 182.621094 264.617188 181.003906 C 264.617188 179.382812 267.046875 179.382812 267.046875 181.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.507812 226.125 C 236.507812 227.746094 234.078125 227.746094 234.078125 226.125 C 234.078125 224.507812 236.507812 224.507812 236.507812 226.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.25 242.863281 C 225.25 244.484375 222.820312 244.484375 222.820312 242.863281 C 222.820312 241.246094 225.25 241.246094 225.25 242.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.460938 70.910156 L 132.09375 73.746094 L 128.824219 73.746094 Z M 130.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.957031 220.839844 C 247.957031 222.457031 245.527344 222.457031 245.527344 220.839844 C 245.527344 219.21875 247.957031 219.21875 247.957031 220.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 182.105469 73.914062 C 182.105469 75.535156 179.671875 75.535156 179.671875 73.914062 C 179.671875 72.292969 182.105469 72.292969 182.105469 73.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.046875 124.667969 C 313.046875 126.289062 310.617188 126.289062 310.617188 124.667969 C 310.617188 123.050781 313.046875 123.050781 313.046875 124.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.054688 249.1875 C 293.054688 250.804688 290.625 250.804688 290.625 249.1875 C 290.625 247.566406 293.054688 247.566406 293.054688 249.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 360.105469 252.605469 C 360.105469 254.226562 357.675781 254.226562 357.675781 252.605469 C 357.675781 250.984375 360.105469 250.984375 360.105469 252.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.929688 202.390625 C 246.929688 204.011719 244.5 204.011719 244.5 202.390625 C 244.5 200.769531 246.929688 200.769531 246.929688 202.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.175781 235.136719 C 183.175781 236.757812 180.742188 236.757812 180.742188 235.136719 C 180.742188 233.519531 183.175781 233.519531 183.175781 235.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.441406 70.910156 L 192.078125 73.746094 L 188.804688 73.746094 Z M 190.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.121094 224.503906 C 254.121094 226.121094 251.691406 226.121094 251.691406 224.503906 C 251.691406 222.882812 254.121094 222.882812 254.121094 224.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.363281 266.773438 C 275.363281 268.394531 272.933594 268.394531 272.933594 266.773438 C 272.933594 265.15625 275.363281 265.15625 275.363281 266.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.027344 228.171875 C 315.027344 229.789062 312.597656 229.789062 312.597656 228.171875 C 312.597656 226.550781 315.027344 226.550781 315.027344 228.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.046875 253.273438 C 230.046875 254.894531 227.617188 254.894531 227.617188 253.273438 C 227.617188 251.65625 230.046875 251.65625 230.046875 253.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.386719 281.679688 C 173.386719 283.296875 170.957031 283.296875 170.957031 281.679688 C 170.957031 280.058594 173.386719 280.058594 173.386719 281.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.683594 303.300781 C 177.683594 304.921875 175.253906 304.921875 175.253906 303.300781 C 175.253906 301.683594 177.683594 301.683594 177.683594 303.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.039062 254.410156 C 205.039062 256.03125 202.609375 256.03125 202.609375 254.410156 C 202.609375 252.789062 205.039062 252.789062 205.039062 254.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.46875 233.023438 C 218.46875 234.640625 216.039062 234.640625 216.039062 233.023438 C 216.039062 231.402344 218.46875 231.402344 218.46875 233.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.019531 285.234375 C 198.019531 286.855469 195.589844 286.855469 195.589844 285.234375 C 195.589844 283.617188 198.019531 283.617188 198.019531 285.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.089844 284.273438 C 224.089844 285.894531 221.660156 285.894531 221.660156 284.273438 C 221.660156 282.652344 224.089844 282.652344 224.089844 284.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.683594 248.175781 C 304.683594 249.796875 302.253906 249.796875 302.253906 248.175781 C 302.253906 246.554688 304.683594 246.554688 304.683594 248.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.054688 218.097656 C 319.054688 219.71875 316.625 219.71875 316.625 218.097656 C 316.625 216.480469 319.054688 216.480469 319.054688 218.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.5625 154.796875 C 253.5625 156.417969 251.132812 156.417969 251.132812 154.796875 C 251.132812 153.175781 253.5625 153.175781 253.5625 154.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.132812 190.992188 C 272.132812 192.613281 269.703125 192.613281 269.703125 190.992188 C 269.703125 189.371094 272.132812 189.371094 272.132812 190.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.554688 297.257812 C 224.554688 298.878906 222.125 298.878906 222.125 297.257812 C 222.125 295.640625 224.554688 295.640625 224.554688 297.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.078125 124.578125 C 146.078125 126.199219 143.648438 126.199219 143.648438 124.578125 C 143.648438 122.960938 146.078125 122.960938 146.078125 124.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 381.898438 245.160156 C 381.898438 246.78125 379.46875 246.78125 379.46875 245.160156 C 379.46875 243.539062 381.898438 243.539062 381.898438 245.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.09375 203.421875 C 269.09375 205.042969 266.664062 205.042969 266.664062 203.421875 C 266.664062 201.800781 269.09375 201.800781 269.09375 203.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125 190.742188 C 125 192.359375 122.570312 192.359375 122.570312 190.742188 C 122.570312 189.121094 125 189.121094 125 190.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.261719 253.921875 C 262.261719 255.542969 259.832031 255.542969 259.832031 253.921875 C 259.832031 252.304688 262.261719 252.304688 262.261719 253.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.972656 283.722656 C 318.972656 285.339844 316.542969 285.339844 316.542969 283.722656 C 316.542969 282.101562 318.972656 282.101562 318.972656 283.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 188.597656 373.242188 C 188.597656 374.863281 186.164062 374.863281 186.164062 373.242188 C 186.164062 371.621094 188.597656 371.621094 188.597656 373.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.878906 70.910156 L 221.515625 73.746094 L 218.242188 73.746094 Z M 219.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.222656 290.210938 C 264.222656 291.832031 261.792969 291.832031 261.792969 290.210938 C 261.792969 288.59375 264.222656 288.59375 264.222656 290.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.53125 313.480469 C 260.53125 315.097656 258.101562 315.097656 258.101562 313.480469 C 258.101562 311.859375 260.53125 311.859375 260.53125 313.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.980469 162.683594 C 237.980469 164.304688 235.550781 164.304688 235.550781 162.683594 C 235.550781 161.0625 237.980469 161.0625 237.980469 162.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.726562 350.617188 C 190.726562 352.238281 188.296875 352.238281 188.296875 350.617188 C 188.296875 348.996094 190.726562 348.996094 190.726562 350.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.964844 263.777344 C 143.964844 265.398438 141.535156 265.398438 141.535156 263.777344 C 141.535156 262.160156 143.964844 262.160156 143.964844 263.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.003906 352.230469 C 246.003906 353.847656 243.574219 353.847656 243.574219 352.230469 C 243.574219 350.609375 246.003906 350.609375 246.003906 352.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.699219 158.835938 C 267.699219 160.457031 265.269531 160.457031 265.269531 158.835938 C 265.269531 157.21875 267.699219 157.21875 267.699219 158.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.3125 113.40625 C 251.3125 115.023438 248.878906 115.023438 248.878906 113.40625 C 248.878906 111.785156 251.3125 111.785156 251.3125 113.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.691406 252.347656 C 290.691406 253.96875 288.261719 253.96875 288.261719 252.347656 C 288.261719 250.726562 290.691406 250.726562 290.691406 252.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.675781 224.25 C 174.675781 225.867188 172.246094 225.867188 172.246094 224.25 C 172.246094 222.628906 174.675781 222.628906 174.675781 224.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.691406 213.371094 C 258.691406 214.988281 256.261719 214.988281 256.261719 213.371094 C 256.261719 211.75 258.691406 211.75 258.691406 213.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.167969 289.964844 C 223.167969 291.585938 220.738281 291.585938 220.738281 289.964844 C 220.738281 288.347656 223.167969 288.347656 223.167969 289.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.167969 268.570312 C 209.167969 270.1875 206.738281 270.1875 206.738281 268.570312 C 206.738281 266.949219 209.167969 266.949219 209.167969 268.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.960938 241.5 C 259.960938 243.117188 257.53125 243.117188 257.53125 241.5 C 257.53125 239.878906 259.960938 239.878906 259.960938 241.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.484375 127.296875 C 304.484375 128.917969 302.054688 128.917969 302.054688 127.296875 C 302.054688 125.675781 304.484375 125.675781 304.484375 127.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.085938 70.910156 L 279.722656 73.746094 L 276.453125 73.746094 Z M 278.085938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.007812 317.464844 C 250.007812 319.085938 247.578125 319.085938 247.578125 317.464844 C 247.578125 315.84375 250.007812 315.84375 250.007812 317.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.921875 282.261719 C 134.921875 283.882812 132.492188 283.882812 132.492188 282.261719 C 132.492188 280.644531 134.921875 280.644531 134.921875 282.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.324219 166.835938 C 293.324219 168.453125 290.894531 168.453125 290.894531 166.835938 C 290.894531 165.214844 293.324219 165.214844 293.324219 166.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.023438 381.117188 C 237.023438 382.738281 234.589844 382.738281 234.589844 381.117188 C 234.589844 379.496094 237.023438 379.496094 237.023438 381.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.597656 246.324219 C 305.597656 247.945312 303.167969 247.945312 303.167969 246.324219 C 303.167969 244.703125 305.597656 244.703125 305.597656 246.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.886719 293.183594 C 311.886719 294.800781 309.457031 294.800781 309.457031 293.183594 C 309.457031 291.5625 311.886719 291.5625 311.886719 293.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.339844 295.117188 C 203.339844 296.738281 200.910156 296.738281 200.910156 295.117188 C 200.910156 293.496094 203.339844 293.496094 203.339844 295.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.476562 293.019531 C 233.476562 294.636719 231.046875 294.636719 231.046875 293.019531 C 231.046875 291.398438 233.476562 291.398438 233.476562 293.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.257812 277.609375 C 217.257812 279.226562 214.828125 279.226562 214.828125 277.609375 C 214.828125 275.988281 217.257812 275.988281 217.257812 277.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.09375 275.667969 C 249.09375 277.289062 246.664062 277.289062 246.664062 275.667969 C 246.664062 274.046875 249.09375 274.046875 249.09375 275.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.855469 165.882812 C 267.855469 167.503906 265.421875 167.503906 265.421875 165.882812 C 265.421875 164.265625 267.855469 164.265625 267.855469 165.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.863281 149.195312 C 248.863281 150.816406 246.433594 150.816406 246.433594 149.195312 C 246.433594 147.574219 248.863281 147.574219 248.863281 149.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.078125 220.484375 C 244.078125 222.105469 241.648438 222.105469 241.648438 220.484375 C 241.648438 218.863281 244.078125 218.863281 244.078125 220.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.90625 110.175781 C 291.90625 111.796875 289.472656 111.796875 289.472656 110.175781 C 289.472656 108.558594 291.90625 108.558594 291.90625 110.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.371094 377.179688 C 257.371094 378.800781 254.9375 378.800781 254.9375 377.179688 C 254.9375 375.5625 257.371094 375.5625 257.371094 377.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.558594 366.59375 C 267.558594 368.214844 265.128906 368.214844 265.128906 366.59375 C 265.128906 364.976562 267.558594 364.976562 267.558594 366.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.089844 343.847656 C 305.089844 345.46875 302.660156 345.46875 302.660156 343.847656 C 302.660156 342.226562 305.089844 342.226562 305.089844 343.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.175781 250.597656 C 331.175781 252.21875 328.746094 252.21875 328.746094 250.597656 C 328.746094 248.976562 331.175781 248.976562 331.175781 250.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.601562 267.636719 C 224.601562 269.257812 222.171875 269.257812 222.171875 267.636719 C 222.171875 266.015625 224.601562 266.015625 224.601562 267.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.109375 200.960938 C 270.109375 202.582031 267.679688 202.582031 267.679688 200.960938 C 267.679688 199.34375 270.109375 199.34375 270.109375 200.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.148438 204.292969 C 281.148438 205.910156 278.71875 205.910156 278.71875 204.292969 C 278.71875 202.671875 281.148438 202.671875 281.148438 204.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.285156 290.050781 C 282.285156 291.671875 279.855469 291.671875 279.855469 290.050781 C 279.855469 288.433594 282.285156 288.433594 282.285156 290.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.566406 125.078125 C 190.566406 126.695312 188.136719 126.695312 188.136719 125.078125 C 188.136719 123.457031 190.566406 123.457031 190.566406 125.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.316406 322.851562 C 185.316406 324.472656 182.882812 324.472656 182.882812 322.851562 C 182.882812 321.234375 185.316406 321.234375 185.316406 322.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.320312 202.316406 C 236.320312 203.933594 233.890625 203.933594 233.890625 202.316406 C 233.890625 200.695312 236.320312 200.695312 236.320312 202.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 403.847656 217.296875 C 403.847656 218.917969 401.417969 218.917969 401.417969 217.296875 C 401.417969 215.675781 403.847656 215.675781 403.847656 217.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.886719 231.632812 C 263.886719 233.253906 261.457031 233.253906 261.457031 231.632812 C 261.457031 230.015625 263.886719 230.015625 263.886719 231.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.066406 369.300781 C 306.066406 370.917969 303.636719 370.917969 303.636719 369.300781 C 303.636719 367.679688 306.066406 367.679688 306.066406 369.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.484375 209.601562 C 246.484375 211.222656 244.054688 211.222656 244.054688 209.601562 C 244.054688 207.980469 246.484375 207.980469 246.484375 209.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.066406 177.34375 C 253.066406 178.964844 250.636719 178.964844 250.636719 177.34375 C 250.636719 175.722656 253.066406 175.722656 253.066406 177.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.769531 284.683594 C 276.769531 286.300781 274.339844 286.300781 274.339844 284.683594 C 274.339844 283.0625 276.769531 283.0625 276.769531 284.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.339844 346.636719 C 241.339844 348.257812 238.910156 348.257812 238.910156 346.636719 C 238.910156 345.015625 241.339844 345.015625 241.339844 346.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.78125 355.511719 C 195.78125 357.128906 193.351562 357.128906 193.351562 355.511719 C 193.351562 353.890625 195.78125 353.890625 195.78125 355.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.667969 70.910156 L 148.304688 73.746094 L 145.03125 73.746094 Z M 146.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.632812 302.355469 C 314.632812 303.976562 312.203125 303.976562 312.203125 302.355469 C 312.203125 300.738281 314.632812 300.738281 314.632812 302.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.152344 418.691406 L 243.789062 415.855469 L 240.515625 415.855469 Z M 242.152344 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.898438 418.691406 L 228.535156 415.855469 L 225.261719 415.855469 Z M 226.898438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.019531 258.597656 C 269.019531 260.21875 266.589844 260.21875 266.589844 258.597656 C 266.589844 256.976562 269.019531 256.976562 269.019531 258.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.277344 381.882812 C 268.277344 383.5 265.847656 383.5 265.847656 381.882812 C 265.847656 380.261719 268.277344 380.261719 268.277344 381.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.59375 70.910156 L 187.230469 73.746094 L 183.957031 73.746094 Z M 185.59375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.332031 70.910156 L 182.96875 73.746094 L 179.695312 73.746094 Z M 181.332031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.660156 70.910156 L 138.292969 73.746094 L 135.023438 73.746094 Z M 136.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.246094 242.398438 C 277.246094 244.019531 274.816406 244.019531 274.816406 242.398438 C 274.816406 240.777344 277.246094 240.777344 277.246094 242.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.359375 244.199219 C 247.359375 245.820312 244.925781 245.820312 244.925781 244.199219 C 244.925781 242.578125 247.359375 242.578125 247.359375 244.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.417969 295.859375 C 328.417969 297.480469 325.988281 297.480469 325.988281 295.859375 C 325.988281 294.242188 328.417969 294.242188 328.417969 295.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.546875 344.261719 C 284.546875 345.882812 282.117188 345.882812 282.117188 344.261719 C 282.117188 342.640625 284.546875 342.640625 284.546875 344.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.402344 70.910156 L 223.039062 73.746094 L 219.769531 73.746094 Z M 221.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.3125 324.464844 C 303.3125 326.085938 300.882812 326.085938 300.882812 324.464844 C 300.882812 322.847656 303.3125 322.847656 303.3125 324.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.097656 205.003906 C 276.097656 206.625 273.667969 206.625 273.667969 205.003906 C 273.667969 203.382812 276.097656 203.382812 276.097656 205.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.425781 123.191406 C 184.425781 124.808594 181.996094 124.808594 181.996094 123.191406 C 181.996094 121.570312 184.425781 121.570312 184.425781 123.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.410156 248.8125 C 243.410156 250.433594 240.980469 250.433594 240.980469 248.8125 C 240.980469 247.191406 243.410156 247.191406 243.410156 248.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.734375 228.488281 C 311.734375 230.105469 309.304688 230.105469 309.304688 228.488281 C 309.304688 226.867188 311.734375 226.867188 311.734375 228.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.515625 260.441406 C 222.515625 262.0625 220.085938 262.0625 220.085938 260.441406 C 220.085938 258.820312 222.515625 258.820312 222.515625 260.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.636719 257.503906 C 202.636719 259.125 200.207031 259.125 200.207031 257.503906 C 200.207031 255.882812 202.636719 255.882812 202.636719 257.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.585938 287.640625 C 239.585938 289.261719 237.15625 289.261719 237.15625 287.640625 C 237.15625 286.019531 239.585938 286.019531 239.585938 287.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.027344 102.6875 C 157.027344 104.308594 154.597656 104.308594 154.597656 102.6875 C 154.597656 101.066406 157.027344 101.066406 157.027344 102.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.914062 329.273438 C 188.914062 330.894531 186.484375 330.894531 186.484375 329.273438 C 186.484375 327.65625 188.914062 327.65625 188.914062 329.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.457031 410.503906 C 324.457031 412.125 322.027344 412.125 322.027344 410.503906 C 322.027344 408.882812 324.457031 408.882812 324.457031 410.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.617188 147.699219 C 242.617188 149.320312 240.1875 149.320312 240.1875 147.699219 C 240.1875 146.078125 242.617188 146.078125 242.617188 147.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.164062 139.3125 C 219.164062 140.933594 216.734375 140.933594 216.734375 139.3125 C 216.734375 137.691406 219.164062 137.691406 219.164062 139.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.492188 70.910156 L 265.128906 73.746094 L 261.855469 73.746094 Z M 263.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.222656 205.464844 C 278.222656 207.085938 275.792969 207.085938 275.792969 205.464844 C 275.792969 203.847656 278.222656 203.847656 278.222656 205.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.066406 269.097656 C 265.066406 270.71875 262.632812 270.71875 262.632812 269.097656 C 262.632812 267.480469 265.066406 267.480469 265.066406 269.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.460938 98.621094 C 140.460938 100.242188 138.03125 100.242188 138.03125 98.621094 C 138.03125 97.003906 140.460938 97.003906 140.460938 98.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.300781 145.519531 C 166.300781 147.140625 163.871094 147.140625 163.871094 145.519531 C 163.871094 143.898438 166.300781 143.898438 166.300781 145.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.558594 110.980469 C 272.558594 112.601562 270.128906 112.601562 270.128906 110.980469 C 270.128906 109.363281 272.558594 109.363281 272.558594 110.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.320312 177.457031 C 221.320312 179.074219 218.890625 179.074219 218.890625 177.457031 C 218.890625 175.835938 221.320312 175.835938 221.320312 177.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.964844 219.953125 C 310.964844 221.574219 308.535156 221.574219 308.535156 219.953125 C 308.535156 218.332031 310.964844 218.332031 310.964844 219.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.234375 188.246094 C 275.234375 189.867188 272.804688 189.867188 272.804688 188.246094 C 272.804688 186.625 275.234375 186.625 275.234375 188.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.1875 244.839844 C 120.1875 246.460938 117.757812 246.460938 117.757812 244.839844 C 117.757812 243.222656 120.1875 243.222656 120.1875 244.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.933594 248.964844 C 321.933594 250.585938 319.503906 250.585938 319.503906 248.964844 C 319.503906 247.347656 321.933594 247.347656 321.933594 248.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.117188 183.351562 C 137.117188 184.972656 134.6875 184.972656 134.6875 183.351562 C 134.6875 181.730469 137.117188 181.730469 137.117188 183.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.023438 161.789062 C 232.023438 163.410156 229.59375 163.410156 229.59375 161.789062 C 229.59375 160.167969 232.023438 160.167969 232.023438 161.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.558594 281 C 156.558594 282.617188 154.125 282.617188 154.125 281 C 154.125 279.378906 156.558594 279.378906 156.558594 281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.132812 270.640625 C 215.132812 272.261719 212.703125 272.261719 212.703125 270.640625 C 212.703125 269.019531 215.132812 269.019531 215.132812 270.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.832031 269.457031 C 246.832031 271.078125 244.398438 271.078125 244.398438 269.457031 C 244.398438 267.835938 246.832031 267.835938 246.832031 269.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.433594 160.972656 C 176.433594 162.59375 174.003906 162.59375 174.003906 160.972656 C 174.003906 159.351562 176.433594 159.351562 176.433594 160.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.15625 203.382812 C 203.15625 205.003906 200.726562 205.003906 200.726562 203.382812 C 200.726562 201.761719 203.15625 201.761719 203.15625 203.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 348.308594 185.707031 C 348.308594 187.328125 345.878906 187.328125 345.878906 185.707031 C 345.878906 184.085938 348.308594 184.085938 348.308594 185.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.992188 160.917969 C 208.992188 162.535156 206.5625 162.535156 206.5625 160.917969 C 206.5625 159.296875 208.992188 159.296875 208.992188 160.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.984375 70.910156 L 292.621094 73.746094 L 289.351562 73.746094 Z M 290.984375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.992188 70.910156 L 202.628906 73.746094 L 199.355469 73.746094 Z M 200.992188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.554688 314.082031 C 197.554688 315.703125 195.121094 315.703125 195.121094 314.082031 C 195.121094 312.464844 197.554688 312.464844 197.554688 314.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.742188 308.554688 C 218.742188 310.175781 216.3125 310.175781 216.3125 308.554688 C 216.3125 306.933594 218.742188 306.933594 218.742188 308.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.988281 295.617188 C 309.988281 297.238281 307.558594 297.238281 307.558594 295.617188 C 307.558594 293.996094 309.988281 293.996094 309.988281 295.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.566406 70.910156 L 276.203125 73.746094 L 272.929688 73.746094 Z M 274.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.460938 357.535156 C 277.460938 359.15625 275.03125 359.15625 275.03125 357.535156 C 275.03125 355.914062 277.460938 355.914062 277.460938 357.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.34375 203.929688 C 297.34375 205.550781 294.914062 205.550781 294.914062 203.929688 C 294.914062 202.308594 297.34375 202.308594 297.34375 203.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.207031 301.632812 C 259.207031 303.253906 256.777344 303.253906 256.777344 301.632812 C 256.777344 300.015625 259.207031 300.015625 259.207031 301.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.902344 321.378906 C 239.902344 323 237.472656 323 237.472656 321.378906 C 237.472656 319.757812 239.902344 319.757812 239.902344 321.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.949219 171.28125 C 224.949219 172.898438 222.519531 172.898438 222.519531 171.28125 C 222.519531 169.660156 224.949219 169.660156 224.949219 171.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.460938 70.910156 L 129.097656 73.746094 L 125.824219 73.746094 Z M 127.460938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.351562 70.910156 L 282.988281 73.746094 L 279.714844 73.746094 Z M 281.351562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.121094 227.863281 C 225.121094 229.480469 222.691406 229.480469 222.691406 227.863281 C 222.691406 226.242188 225.121094 226.242188 225.121094 227.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.398438 122.003906 C 307.398438 123.621094 304.96875 123.621094 304.96875 122.003906 C 304.96875 120.382812 307.398438 120.382812 307.398438 122.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.792969 242.730469 C 279.792969 244.351562 277.363281 244.351562 277.363281 242.730469 C 277.363281 241.113281 279.792969 241.113281 279.792969 242.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.371094 264.316406 C 312.371094 265.9375 309.941406 265.9375 309.941406 264.316406 C 309.941406 262.699219 312.371094 262.699219 312.371094 264.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.765625 359.929688 C 292.765625 361.550781 290.335938 361.550781 290.335938 359.929688 C 290.335938 358.308594 292.765625 358.308594 292.765625 359.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.546875 214.582031 C 254.546875 216.199219 252.117188 216.199219 252.117188 214.582031 C 252.117188 212.960938 254.546875 212.960938 254.546875 214.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.464844 223.710938 C 244.464844 225.332031 242.035156 225.332031 242.035156 223.710938 C 242.035156 222.09375 244.464844 222.09375 244.464844 223.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.128906 362.445312 C 285.128906 364.066406 282.699219 364.066406 282.699219 362.445312 C 282.699219 360.824219 285.128906 360.824219 285.128906 362.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.003906 208.816406 C 278.003906 210.433594 275.574219 210.433594 275.574219 208.816406 C 275.574219 207.195312 278.003906 207.195312 278.003906 208.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.792969 182.46875 C 322.792969 184.089844 320.359375 184.089844 320.359375 182.46875 C 320.359375 180.847656 322.792969 180.847656 322.792969 182.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.203125 414.878906 C 227.203125 416.5 224.773438 416.5 224.773438 414.878906 C 224.773438 413.261719 227.203125 413.261719 227.203125 414.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.601562 272.367188 C 157.601562 273.988281 155.171875 273.988281 155.171875 272.367188 C 155.171875 270.746094 157.601562 270.746094 157.601562 272.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.074219 174.679688 C 190.074219 176.300781 187.644531 176.300781 187.644531 174.679688 C 187.644531 173.058594 190.074219 173.058594 190.074219 174.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.453125 231.09375 C 172.453125 232.714844 170.023438 232.714844 170.023438 231.09375 C 170.023438 229.476562 172.453125 229.476562 172.453125 231.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.117188 248.820312 C 277.117188 250.4375 274.6875 250.4375 274.6875 248.820312 C 274.6875 247.199219 277.117188 247.199219 277.117188 248.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.613281 204.855469 C 272.613281 206.472656 270.183594 206.472656 270.183594 204.855469 C 270.183594 203.234375 272.613281 203.234375 272.613281 204.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.042969 215.988281 C 180.042969 217.605469 177.613281 217.605469 177.613281 215.988281 C 177.613281 214.367188 180.042969 214.367188 180.042969 215.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.867188 306.765625 C 240.867188 308.386719 238.4375 308.386719 238.4375 306.765625 C 238.4375 305.144531 240.867188 305.144531 240.867188 306.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.078125 418.691406 L 202.714844 415.855469 L 199.441406 415.855469 Z M 201.078125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.421875 171.550781 C 291.421875 173.171875 288.992188 173.171875 288.992188 171.550781 C 288.992188 169.933594 291.421875 169.933594 291.421875 171.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.058594 293.152344 C 289.058594 294.773438 286.628906 294.773438 286.628906 293.152344 C 286.628906 291.53125 289.058594 291.53125 289.058594 293.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.203125 85.023438 C 228.203125 86.640625 225.773438 86.640625 225.773438 85.023438 C 225.773438 83.402344 228.203125 83.402344 228.203125 85.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.960938 144.769531 C 286.960938 146.390625 284.53125 146.390625 284.53125 144.769531 C 284.53125 143.152344 286.960938 143.152344 286.960938 144.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.972656 242.007812 C 218.972656 243.628906 216.542969 243.628906 216.542969 242.007812 C 216.542969 240.390625 218.972656 240.390625 218.972656 242.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.878906 284.613281 C 193.878906 286.234375 191.449219 286.234375 191.449219 284.613281 C 191.449219 282.992188 193.878906 282.992188 193.878906 284.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.023438 240.527344 C 305.023438 242.148438 302.59375 242.148438 302.59375 240.527344 C 302.59375 238.910156 305.023438 238.910156 305.023438 240.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.066406 352.523438 C 275.066406 354.144531 272.636719 354.144531 272.636719 352.523438 C 272.636719 350.902344 275.066406 350.902344 275.066406 352.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.738281 70.910156 L 145.375 73.746094 L 142.101562 73.746094 Z M 143.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.660156 239.085938 C 269.660156 240.707031 267.230469 240.707031 267.230469 239.085938 C 267.230469 237.464844 269.660156 237.464844 269.660156 239.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.910156 239.941406 C 245.910156 241.5625 243.480469 241.5625 243.480469 239.941406 C 243.480469 238.320312 245.910156 238.320312 245.910156 239.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.386719 317.984375 C 217.386719 319.605469 214.957031 319.605469 214.957031 317.984375 C 214.957031 316.363281 217.386719 316.363281 217.386719 317.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.625 70.910156 L 220.257812 73.746094 L 216.988281 73.746094 Z M 218.625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.058594 70.910156 L 185.691406 73.746094 L 182.421875 73.746094 Z M 184.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.9375 70.910156 L 232.574219 73.746094 L 229.300781 73.746094 Z M 230.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.761719 257.867188 C 266.761719 259.484375 264.332031 259.484375 264.332031 257.867188 C 264.332031 256.246094 266.761719 256.246094 266.761719 257.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.660156 286.066406 C 271.660156 287.6875 269.230469 287.6875 269.230469 286.066406 C 269.230469 284.449219 271.660156 284.449219 271.660156 286.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.652344 268.289062 C 230.652344 269.910156 228.222656 269.910156 228.222656 268.289062 C 228.222656 266.671875 230.652344 266.671875 230.652344 268.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.976562 251.367188 C 222.976562 252.988281 220.546875 252.988281 220.546875 251.367188 C 220.546875 249.746094 222.976562 249.746094 222.976562 251.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.753906 209.082031 C 229.753906 210.703125 227.324219 210.703125 227.324219 209.082031 C 227.324219 207.464844 229.753906 207.464844 229.753906 209.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.417969 209.925781 C 206.417969 211.546875 203.988281 211.546875 203.988281 209.925781 C 203.988281 208.304688 206.417969 208.304688 206.417969 209.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.777344 169.601562 C 345.777344 171.222656 343.347656 171.222656 343.347656 169.601562 C 343.347656 167.984375 345.777344 167.984375 345.777344 169.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.351562 339.695312 C 113.351562 341.316406 110.921875 341.316406 110.921875 339.695312 C 110.921875 338.078125 113.351562 338.078125 113.351562 339.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.808594 242.367188 C 286.808594 243.988281 284.378906 243.988281 284.378906 242.367188 C 284.378906 240.746094 286.808594 240.746094 286.808594 242.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.140625 70.910156 L 255.777344 73.746094 L 252.503906 73.746094 Z M 254.140625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.550781 70.910156 L 240.1875 73.746094 L 236.914062 73.746094 Z M 238.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.699219 70.910156 L 209.335938 73.746094 L 206.0625 73.746094 Z M 207.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.925781 275.707031 C 271.925781 277.324219 269.496094 277.324219 269.496094 275.707031 C 269.496094 274.085938 271.925781 274.085938 271.925781 275.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.835938 268.519531 C 261.835938 270.136719 259.40625 270.136719 259.40625 268.519531 C 259.40625 266.898438 261.835938 266.898438 261.835938 268.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.359375 418.691406 L 133.996094 415.855469 L 130.722656 415.855469 Z M 132.359375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.878906 182.070312 C 257.878906 183.691406 255.449219 183.691406 255.449219 182.070312 C 255.449219 180.449219 257.878906 180.449219 257.878906 182.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.535156 231.804688 C 310.535156 233.425781 308.105469 233.425781 308.105469 231.804688 C 308.105469 230.183594 310.535156 230.183594 310.535156 231.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.03125 74.210938 C 260.03125 75.832031 257.601562 75.832031 257.601562 74.210938 C 257.601562 72.589844 260.03125 72.589844 260.03125 74.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.859375 266.445312 C 317.859375 268.066406 315.429688 268.066406 315.429688 266.445312 C 315.429688 264.824219 317.859375 264.824219 317.859375 266.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.144531 70.910156 L 142.78125 73.746094 L 139.507812 73.746094 Z M 141.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.023438 226.253906 C 249.023438 227.875 246.59375 227.875 246.59375 226.253906 C 246.59375 224.632812 249.023438 224.632812 249.023438 226.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.847656 267.039062 C 221.847656 268.660156 219.417969 268.660156 219.417969 267.039062 C 219.417969 265.421875 221.847656 265.421875 221.847656 267.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.992188 278.328125 C 225.992188 279.949219 223.5625 279.949219 223.5625 278.328125 C 223.5625 276.707031 225.992188 276.707031 225.992188 278.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.378906 111.972656 C 251.378906 113.589844 248.949219 113.589844 248.949219 111.972656 C 248.949219 110.351562 251.378906 110.351562 251.378906 111.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.203125 309.164062 C 232.203125 310.785156 229.769531 310.785156 229.769531 309.164062 C 229.769531 307.542969 232.203125 307.542969 232.203125 309.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.527344 351.484375 C 308.527344 353.101562 306.097656 353.101562 306.097656 351.484375 C 306.097656 349.863281 308.527344 349.863281 308.527344 351.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.980469 240.3125 C 163.980469 241.933594 161.550781 241.933594 161.550781 240.3125 C 161.550781 238.695312 163.980469 238.695312 163.980469 240.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.332031 70.910156 L 133.96875 73.746094 L 130.695312 73.746094 Z M 132.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.050781 200.800781 C 289.050781 202.421875 286.621094 202.421875 286.621094 200.800781 C 286.621094 199.183594 289.050781 199.183594 289.050781 200.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.253906 306.1875 C 257.253906 307.804688 254.824219 307.804688 254.824219 306.1875 C 254.824219 304.566406 257.253906 304.566406 257.253906 306.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.171875 243.546875 C 283.171875 245.164062 280.742188 245.164062 280.742188 243.546875 C 280.742188 241.925781 283.171875 241.925781 283.171875 243.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.925781 250.402344 C 204.925781 252.023438 202.496094 252.023438 202.496094 250.402344 C 202.496094 248.785156 204.925781 248.785156 204.925781 250.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.769531 236.722656 C 320.769531 238.339844 318.339844 238.339844 318.339844 236.722656 C 318.339844 235.101562 320.769531 235.101562 320.769531 236.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.535156 201.828125 C 265.535156 203.449219 263.105469 203.449219 263.105469 201.828125 C 263.105469 200.207031 265.535156 200.207031 265.535156 201.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.015625 279.152344 C 285.015625 280.773438 282.585938 280.773438 282.585938 279.152344 C 282.585938 277.53125 285.015625 277.53125 285.015625 279.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.585938 341.121094 C 239.585938 342.742188 237.15625 342.742188 237.15625 341.121094 C 237.15625 339.5 239.585938 339.5 239.585938 341.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.152344 196.105469 C 124.152344 197.722656 121.722656 197.722656 121.722656 196.105469 C 121.722656 194.484375 124.152344 194.484375 124.152344 196.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.984375 263.785156 C 194.984375 265.40625 192.550781 265.40625 192.550781 263.785156 C 192.550781 262.164062 194.984375 262.164062 194.984375 263.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.703125 182.222656 C 170.703125 183.839844 168.273438 183.839844 168.273438 182.222656 C 168.273438 180.601562 170.703125 180.601562 170.703125 182.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.507812 70.910156 L 279.144531 73.746094 L 275.875 73.746094 Z M 277.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.300781 152.238281 C 250.300781 153.859375 247.871094 153.859375 247.871094 152.238281 C 247.871094 150.617188 250.300781 150.617188 250.300781 152.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.726562 246.746094 C 253.726562 248.367188 251.296875 248.367188 251.296875 246.746094 C 251.296875 245.125 253.726562 245.125 253.726562 246.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.667969 273.832031 C 237.667969 275.449219 235.238281 275.449219 235.238281 273.832031 C 235.238281 272.210938 237.667969 272.210938 237.667969 273.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.378906 70.910156 L 252.015625 73.746094 L 248.742188 73.746094 Z M 250.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.152344 208.976562 C 157.152344 210.59375 154.71875 210.59375 154.71875 208.976562 C 154.71875 207.355469 157.152344 207.355469 157.152344 208.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.820312 351.128906 C 200.820312 352.75 198.390625 352.75 198.390625 351.128906 C 198.390625 349.507812 200.820312 349.507812 200.820312 351.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.523438 292.660156 C 255.523438 294.277344 253.09375 294.277344 253.09375 292.660156 C 253.09375 291.039062 255.523438 291.039062 255.523438 292.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.953125 311.316406 C 251.953125 312.9375 249.523438 312.9375 249.523438 311.316406 C 249.523438 309.695312 251.953125 309.695312 251.953125 311.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.003906 70.910156 L 230.640625 73.746094 L 227.367188 73.746094 Z M 229.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.882812 174.730469 C 258.882812 176.351562 256.453125 176.351562 256.453125 174.730469 C 256.453125 173.113281 258.882812 173.113281 258.882812 174.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.910156 327.5 C 294.910156 329.121094 292.480469 329.121094 292.480469 327.5 C 292.480469 325.878906 294.910156 325.878906 294.910156 327.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.863281 395.359375 C 235.863281 396.976562 233.433594 396.976562 233.433594 395.359375 C 233.433594 393.738281 235.863281 393.738281 235.863281 395.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.851562 304.601562 C 236.851562 306.222656 234.421875 306.222656 234.421875 304.601562 C 234.421875 302.980469 236.851562 302.980469 236.851562 304.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.472656 275.722656 C 289.472656 277.339844 287.042969 277.339844 287.042969 275.722656 C 287.042969 274.101562 289.472656 274.101562 289.472656 275.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.417969 256.339844 C 295.417969 257.957031 292.988281 257.957031 292.988281 256.339844 C 292.988281 254.71875 295.417969 254.71875 295.417969 256.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.707031 362.195312 C 237.707031 363.816406 235.277344 363.816406 235.277344 362.195312 C 235.277344 360.578125 237.707031 360.578125 237.707031 362.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.097656 329.429688 C 244.097656 331.050781 241.667969 331.050781 241.667969 329.429688 C 241.667969 327.8125 244.097656 327.8125 244.097656 329.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.832031 343.804688 C 236.832031 345.425781 234.402344 345.425781 234.402344 343.804688 C 234.402344 342.183594 236.832031 342.183594 236.832031 343.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.222656 325.984375 C 303.222656 327.601562 300.789062 327.601562 300.789062 325.984375 C 300.789062 324.363281 303.222656 324.363281 303.222656 325.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.15625 238.222656 C 226.15625 239.84375 223.726562 239.84375 223.726562 238.222656 C 223.726562 236.605469 226.15625 236.605469 226.15625 238.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.925781 206.679688 C 258.925781 208.296875 256.496094 208.296875 256.496094 206.679688 C 256.496094 205.058594 258.925781 205.058594 258.925781 206.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.679688 196.222656 C 149.679688 197.84375 147.25 197.84375 147.25 196.222656 C 147.25 194.601562 149.679688 194.601562 149.679688 196.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.609375 171.832031 C 176.609375 173.453125 174.179688 173.453125 174.179688 171.832031 C 174.179688 170.210938 176.609375 170.210938 176.609375 171.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.105469 414.527344 C 192.105469 416.148438 189.675781 416.148438 189.675781 414.527344 C 189.675781 412.910156 192.105469 412.910156 192.105469 414.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.492188 418.691406 L 216.128906 415.855469 L 212.855469 415.855469 Z M 214.492188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.636719 283.6875 C 216.636719 285.304688 214.207031 285.304688 214.207031 283.6875 C 214.207031 282.066406 216.636719 282.066406 216.636719 283.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.652344 234.492188 C 199.652344 236.113281 197.222656 236.113281 197.222656 234.492188 C 197.222656 232.875 199.652344 232.875 199.652344 234.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.332031 281.796875 C 255.332031 283.417969 252.902344 283.417969 252.902344 281.796875 C 252.902344 280.179688 255.332031 280.179688 255.332031 281.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.664062 234.738281 C 312.664062 236.359375 310.234375 236.359375 310.234375 234.738281 C 310.234375 233.117188 312.664062 233.117188 312.664062 234.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.1875 320.007812 C 214.1875 321.625 211.757812 321.625 211.757812 320.007812 C 211.757812 318.386719 214.1875 318.386719 214.1875 320.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.300781 385.574219 C 139.300781 387.191406 136.871094 387.191406 136.871094 385.574219 C 136.871094 383.953125 139.300781 383.953125 139.300781 385.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.34375 158.40625 C 239.34375 160.023438 236.914062 160.023438 236.914062 158.40625 C 236.914062 156.785156 239.34375 156.785156 239.34375 158.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.832031 172.070312 C 287.832031 173.691406 285.402344 173.691406 285.402344 172.070312 C 285.402344 170.453125 287.832031 170.453125 287.832031 172.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.871094 339.59375 C 114.871094 341.214844 112.441406 341.214844 112.441406 339.59375 C 112.441406 337.972656 114.871094 337.972656 114.871094 339.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.085938 264 C 116.085938 265.617188 113.65625 265.617188 113.65625 264 C 113.65625 262.378906 116.085938 262.378906 116.085938 264 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.101562 269.398438 C 292.101562 271.019531 289.671875 271.019531 289.671875 269.398438 C 289.671875 267.777344 292.101562 267.777344 292.101562 269.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.277344 70.910156 L 303.910156 73.746094 L 300.640625 73.746094 Z M 302.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.875 212.285156 C 133.875 213.902344 131.445312 213.902344 131.445312 212.285156 C 131.445312 210.664062 133.875 210.664062 133.875 212.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.558594 259.800781 C 272.558594 261.421875 270.128906 261.421875 270.128906 259.800781 C 270.128906 258.183594 272.558594 258.183594 272.558594 259.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.746094 256.554688 C 278.746094 258.175781 276.316406 258.175781 276.316406 256.554688 C 276.316406 254.933594 278.746094 254.933594 278.746094 256.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.378906 249.074219 C 247.378906 250.691406 244.949219 250.691406 244.949219 249.074219 C 244.949219 247.453125 247.378906 247.453125 247.378906 249.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.554688 153.699219 C 291.554688 155.320312 289.125 155.320312 289.125 153.699219 C 289.125 152.078125 291.554688 152.078125 291.554688 153.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.617188 70.910156 L 180.253906 73.746094 L 176.984375 73.746094 Z M 178.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.320312 155.964844 C 273.320312 157.585938 270.890625 157.585938 270.890625 155.964844 C 270.890625 154.347656 273.320312 154.347656 273.320312 155.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.597656 70.910156 L 213.234375 73.746094 L 209.960938 73.746094 Z M 211.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.777344 228.042969 C 144.777344 229.664062 142.34375 229.664062 142.34375 228.042969 C 142.34375 226.421875 144.777344 226.421875 144.777344 228.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 365.988281 176.050781 C 365.988281 177.667969 363.558594 177.667969 363.558594 176.050781 C 363.558594 174.429688 365.988281 174.429688 365.988281 176.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.976562 219.242188 C 291.976562 220.863281 289.546875 220.863281 289.546875 219.242188 C 289.546875 217.621094 291.976562 217.621094 291.976562 219.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.9375 212.949219 C 257.9375 214.570312 255.503906 214.570312 255.503906 212.949219 C 255.503906 211.328125 257.9375 211.328125 257.9375 212.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.3125 238.902344 C 175.3125 240.523438 172.882812 240.523438 172.882812 238.902344 C 172.882812 237.28125 175.3125 237.28125 175.3125 238.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.976562 222.859375 C 204.976562 224.480469 202.546875 224.480469 202.546875 222.859375 C 202.546875 221.238281 204.976562 221.238281 204.976562 222.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.285156 255.558594 C 265.285156 257.175781 262.855469 257.175781 262.855469 255.558594 C 262.855469 253.9375 265.285156 253.9375 265.285156 255.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.347656 150.148438 C 212.347656 151.769531 209.917969 151.769531 209.917969 150.148438 C 209.917969 148.53125 212.347656 148.53125 212.347656 150.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.554688 85.148438 C 204.554688 86.769531 202.125 86.769531 202.125 85.148438 C 202.125 83.53125 204.554688 83.53125 204.554688 85.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.308594 166.125 C 163.308594 167.746094 160.878906 167.746094 160.878906 166.125 C 160.878906 164.503906 163.308594 164.503906 163.308594 166.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.402344 185.019531 C 280.402344 186.640625 277.972656 186.640625 277.972656 185.019531 C 277.972656 183.398438 280.402344 183.398438 280.402344 185.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.820312 314.148438 C 287.820312 315.765625 285.390625 315.765625 285.390625 314.148438 C 285.390625 312.527344 287.820312 312.527344 287.820312 314.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.992188 268.140625 C 228.992188 269.761719 226.5625 269.761719 226.5625 268.140625 C 226.5625 266.523438 228.992188 266.523438 228.992188 268.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.980469 288.816406 C 193.980469 290.433594 191.550781 290.433594 191.550781 288.816406 C 191.550781 287.195312 193.980469 287.195312 193.980469 288.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.6875 298.105469 C 247.6875 299.722656 245.257812 299.722656 245.257812 298.105469 C 245.257812 296.484375 247.6875 296.484375 247.6875 298.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.1875 282.96875 C 266.1875 284.589844 263.757812 284.589844 263.757812 282.96875 C 263.757812 281.347656 266.1875 281.347656 266.1875 282.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.675781 286.113281 C 296.675781 287.730469 294.242188 287.730469 294.242188 286.113281 C 294.242188 284.492188 296.675781 284.492188 296.675781 286.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.902344 228.980469 C 290.902344 230.597656 288.472656 230.597656 288.472656 228.980469 C 288.472656 227.359375 290.902344 227.359375 290.902344 228.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.191406 230.386719 C 327.191406 232.007812 324.757812 232.007812 324.757812 230.386719 C 324.757812 228.765625 327.191406 228.765625 327.191406 230.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.957031 202.21875 C 263.957031 203.839844 261.527344 203.839844 261.527344 202.21875 C 261.527344 200.601562 263.957031 200.601562 263.957031 202.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.652344 288.207031 C 202.652344 289.824219 200.222656 289.824219 200.222656 288.207031 C 200.222656 286.585938 202.652344 286.585938 202.652344 288.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.53125 216.023438 C 217.53125 217.640625 215.101562 217.640625 215.101562 216.023438 C 215.101562 214.402344 217.53125 214.402344 217.53125 216.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.855469 165.246094 C 259.855469 166.867188 257.425781 166.867188 257.425781 165.246094 C 257.425781 163.625 259.855469 163.625 259.855469 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.875 238.785156 C 337.875 240.40625 335.445312 240.40625 335.445312 238.785156 C 335.445312 237.164062 337.875 237.164062 337.875 238.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.535156 284.210938 C 311.535156 285.828125 309.105469 285.828125 309.105469 284.210938 C 309.105469 282.589844 311.535156 282.589844 311.535156 284.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.878906 174.902344 C 273.878906 176.523438 271.449219 176.523438 271.449219 174.902344 C 271.449219 173.28125 273.878906 173.28125 273.878906 174.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.4375 251.46875 C 276.4375 253.089844 274.007812 253.089844 274.007812 251.46875 C 274.007812 249.851562 276.4375 249.851562 276.4375 251.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.402344 70.910156 L 218.039062 73.746094 L 214.765625 73.746094 Z M 216.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.648438 296.992188 C 313.648438 298.613281 311.21875 298.613281 311.21875 296.992188 C 311.21875 295.375 313.648438 295.375 313.648438 296.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.597656 250.113281 C 277.597656 251.734375 275.167969 251.734375 275.167969 250.113281 C 275.167969 248.492188 277.597656 248.492188 277.597656 250.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.726562 70.910156 L 229.363281 73.746094 L 226.089844 73.746094 Z M 227.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.984375 268.609375 C 243.984375 270.230469 241.550781 270.230469 241.550781 268.609375 C 241.550781 266.988281 243.984375 266.988281 243.984375 268.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.425781 77.890625 C 250.425781 79.511719 247.996094 79.511719 247.996094 77.890625 C 247.996094 76.269531 250.425781 76.269531 250.425781 77.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.273438 89.039062 C 273.273438 90.660156 270.84375 90.660156 270.84375 89.039062 C 270.84375 87.417969 273.273438 87.417969 273.273438 89.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.867188 170.523438 C 253.867188 172.144531 251.4375 172.144531 251.4375 170.523438 C 251.4375 168.90625 253.867188 168.90625 253.867188 170.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.328125 103.65625 C 138.328125 105.273438 135.898438 105.273438 135.898438 103.65625 C 135.898438 102.035156 138.328125 102.035156 138.328125 103.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.703125 70.910156 L 160.339844 73.746094 L 157.066406 73.746094 Z M 158.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.996094 403.175781 C 225.996094 404.796875 223.566406 404.796875 223.566406 403.175781 C 223.566406 401.554688 225.996094 401.554688 225.996094 403.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.261719 212.710938 C 293.261719 214.332031 290.828125 214.332031 290.828125 212.710938 C 290.828125 211.09375 293.261719 211.09375 293.261719 212.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.414062 251.238281 C 245.414062 252.855469 242.984375 252.855469 242.984375 251.238281 C 242.984375 249.617188 245.414062 249.617188 245.414062 251.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.164062 70.910156 L 171.800781 73.746094 L 168.527344 73.746094 Z M 170.164062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.785156 292.113281 C 269.785156 293.734375 267.355469 293.734375 267.355469 292.113281 C 267.355469 290.492188 269.785156 290.492188 269.785156 292.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.941406 227.472656 C 183.941406 229.09375 181.511719 229.09375 181.511719 227.472656 C 181.511719 225.855469 183.941406 225.855469 183.941406 227.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.753906 244.75 C 229.753906 246.367188 227.324219 246.367188 227.324219 244.75 C 227.324219 243.128906 229.753906 243.128906 229.753906 244.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.957031 183.496094 C 293.957031 185.117188 291.527344 185.117188 291.527344 183.496094 C 291.527344 181.878906 293.957031 181.878906 293.957031 183.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.292969 70.910156 L 180.929688 73.746094 L 177.65625 73.746094 Z M 179.292969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.304688 70.910156 L 155.941406 73.746094 L 152.667969 73.746094 Z M 154.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.359375 228.390625 C 150.359375 230.011719 147.929688 230.011719 147.929688 228.390625 C 147.929688 226.769531 150.359375 226.769531 150.359375 228.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.183594 397.164062 C 189.183594 398.78125 186.753906 398.78125 186.753906 397.164062 C 186.753906 395.542969 189.183594 395.542969 189.183594 397.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.761719 338.265625 C 190.761719 339.886719 188.332031 339.886719 188.332031 338.265625 C 188.332031 336.648438 190.761719 336.648438 190.761719 338.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.742188 418.691406 L 278.378906 415.855469 L 275.105469 415.855469 Z M 276.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.425781 98.316406 C 229.425781 99.9375 226.996094 99.9375 226.996094 98.316406 C 226.996094 96.699219 229.425781 96.699219 229.425781 98.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.089844 98.203125 C 279.089844 99.820312 276.660156 99.820312 276.660156 98.203125 C 276.660156 96.582031 279.089844 96.582031 279.089844 98.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.136719 214.589844 C 297.136719 216.210938 294.707031 216.210938 294.707031 214.589844 C 294.707031 212.972656 297.136719 212.972656 297.136719 214.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.75 197.65625 C 245.75 199.273438 243.320312 199.273438 243.320312 197.65625 C 243.320312 196.035156 245.75 196.035156 245.75 197.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.398438 271.226562 C 222.398438 272.847656 219.96875 272.847656 219.96875 271.226562 C 219.96875 269.609375 222.398438 269.609375 222.398438 271.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.5625 217.972656 C 330.5625 219.59375 328.132812 219.59375 328.132812 217.972656 C 328.132812 216.351562 330.5625 216.351562 330.5625 217.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.261719 256.230469 C 266.261719 257.851562 263.832031 257.851562 263.832031 256.230469 C 263.832031 254.613281 266.261719 254.613281 266.261719 256.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.273438 264.707031 C 199.273438 266.324219 196.84375 266.324219 196.84375 264.707031 C 196.84375 263.085938 199.273438 263.085938 199.273438 264.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.5625 257.378906 C 274.5625 259 272.128906 259 272.128906 257.378906 C 272.128906 255.761719 274.5625 255.761719 274.5625 257.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.453125 165.785156 C 185.453125 167.40625 183.023438 167.40625 183.023438 165.785156 C 183.023438 164.164062 185.453125 164.164062 185.453125 165.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.03125 221.71875 C 208.03125 223.339844 205.601562 223.339844 205.601562 221.71875 C 205.601562 220.097656 208.03125 220.097656 208.03125 221.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.839844 115.511719 C 179.839844 117.132812 177.410156 117.132812 177.410156 115.511719 C 177.410156 113.894531 179.839844 113.894531 179.839844 115.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.34375 229.980469 C 273.34375 231.601562 270.914062 231.601562 270.914062 229.980469 C 270.914062 228.363281 273.34375 228.363281 273.34375 229.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 341.792969 275.152344 C 341.792969 276.773438 339.363281 276.773438 339.363281 275.152344 C 339.363281 273.53125 341.792969 273.53125 341.792969 275.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.144531 143.089844 C 240.144531 144.707031 237.714844 144.707031 237.714844 143.089844 C 237.714844 141.46875 240.144531 141.46875 240.144531 143.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.1875 180.433594 C 316.1875 182.050781 313.757812 182.050781 313.757812 180.433594 C 313.757812 178.8125 316.1875 178.8125 316.1875 180.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.796875 221.0625 C 300.796875 222.683594 298.367188 222.683594 298.367188 221.0625 C 298.367188 219.441406 300.796875 219.441406 300.796875 221.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.992188 70.910156 L 293.628906 73.746094 L 290.355469 73.746094 Z M 291.992188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.414062 70.910156 L 254.050781 73.746094 L 250.777344 73.746094 Z M 252.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.367188 325.777344 C 137.367188 327.398438 134.9375 327.398438 134.9375 325.777344 C 134.9375 324.160156 137.367188 324.160156 137.367188 325.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.160156 201.109375 C 284.160156 202.730469 281.730469 202.730469 281.730469 201.109375 C 281.730469 199.488281 284.160156 199.488281 284.160156 201.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 391.566406 148.9375 C 391.566406 150.554688 389.132812 150.554688 389.132812 148.9375 C 389.132812 147.316406 391.566406 147.316406 391.566406 148.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.246094 268.261719 C 259.246094 269.882812 256.816406 269.882812 256.816406 268.261719 C 256.816406 266.640625 259.246094 266.640625 259.246094 268.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.136719 296.785156 C 275.136719 298.40625 272.703125 298.40625 272.703125 296.785156 C 272.703125 295.167969 275.136719 295.167969 275.136719 296.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.441406 192.28125 C 159.441406 193.898438 157.011719 193.898438 157.011719 192.28125 C 157.011719 190.660156 159.441406 190.660156 159.441406 192.28125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.90625 418.691406 L 231.542969 415.855469 L 228.269531 415.855469 Z M 229.90625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.988281 418.691406 L 184.625 415.855469 L 181.351562 415.855469 Z M 182.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.167969 251.863281 C 294.167969 253.480469 291.738281 253.480469 291.738281 251.863281 C 291.738281 250.242188 294.167969 250.242188 294.167969 251.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.867188 214.464844 C 200.867188 216.085938 198.4375 216.085938 198.4375 214.464844 C 198.4375 212.847656 200.867188 212.847656 200.867188 214.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.6875 208.40625 C 209.6875 210.027344 207.257812 210.027344 207.257812 208.40625 C 207.257812 206.785156 209.6875 206.785156 209.6875 208.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.414062 158.972656 C 253.414062 160.59375 250.984375 160.59375 250.984375 158.972656 C 250.984375 157.355469 253.414062 157.355469 253.414062 158.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.996094 277.238281 C 287.996094 278.859375 285.566406 278.859375 285.566406 277.238281 C 285.566406 275.621094 287.996094 275.621094 287.996094 277.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.035156 418.691406 L 120.671875 415.855469 L 117.398438 415.855469 Z M 119.035156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.886719 199.160156 C 270.886719 200.78125 268.457031 200.78125 268.457031 199.160156 C 268.457031 197.539062 270.886719 197.539062 270.886719 199.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.789062 192.660156 C 281.789062 194.28125 279.359375 194.28125 279.359375 192.660156 C 279.359375 191.042969 281.789062 191.042969 281.789062 192.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.988281 404.507812 C 257.988281 406.128906 255.558594 406.128906 255.558594 404.507812 C 255.558594 402.886719 257.988281 402.886719 257.988281 404.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.023438 297.714844 C 269.023438 299.335938 266.59375 299.335938 266.59375 297.714844 C 266.59375 296.097656 269.023438 296.097656 269.023438 297.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.957031 281.136719 C 310.957031 282.757812 308.527344 282.757812 308.527344 281.136719 C 308.527344 279.515625 310.957031 279.515625 310.957031 281.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.628906 156.070312 C 302.628906 157.691406 300.199219 157.691406 300.199219 156.070312 C 300.199219 154.453125 302.628906 154.453125 302.628906 156.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.40625 256.816406 C 271.40625 258.4375 268.976562 258.4375 268.976562 256.816406 C 268.976562 255.199219 271.40625 255.199219 271.40625 256.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.53125 319.117188 C 220.53125 320.738281 218.101562 320.738281 218.101562 319.117188 C 218.101562 317.496094 220.53125 317.496094 220.53125 319.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.363281 94.007812 C 262.363281 95.628906 259.933594 95.628906 259.933594 94.007812 C 259.933594 92.390625 262.363281 92.390625 262.363281 94.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.578125 157.085938 C 305.578125 158.707031 303.148438 158.707031 303.148438 157.085938 C 303.148438 155.464844 305.578125 155.464844 305.578125 157.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.476562 70.910156 L 150.113281 73.746094 L 146.839844 73.746094 Z M 148.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.351562 255.304688 C 238.351562 256.921875 235.921875 256.921875 235.921875 255.304688 C 235.921875 253.683594 238.351562 253.683594 238.351562 255.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.0625 285.757812 C 215.0625 287.378906 212.632812 287.378906 212.632812 285.757812 C 212.632812 284.140625 215.0625 284.140625 215.0625 285.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.035156 275.203125 C 146.035156 276.824219 143.601562 276.824219 143.601562 275.203125 C 143.601562 273.582031 146.035156 273.582031 146.035156 275.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.414062 86.882812 C 124.414062 88.5 121.984375 88.5 121.984375 86.882812 C 121.984375 85.261719 124.414062 85.261719 124.414062 86.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.859375 286.703125 C 290.859375 288.320312 288.429688 288.320312 288.429688 286.703125 C 288.429688 285.082031 290.859375 285.082031 290.859375 286.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.894531 307.949219 C 260.894531 309.570312 258.464844 309.570312 258.464844 307.949219 C 258.464844 306.328125 260.894531 306.328125 260.894531 307.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.222656 279.660156 C 292.222656 281.28125 289.792969 281.28125 289.792969 279.660156 C 289.792969 278.039062 292.222656 278.039062 292.222656 279.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.886719 252.46875 C 313.886719 254.089844 311.457031 254.089844 311.457031 252.46875 C 311.457031 250.851562 313.886719 250.851562 313.886719 252.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.464844 247.953125 C 203.464844 249.574219 201.035156 249.574219 201.035156 247.953125 C 201.035156 246.335938 203.464844 246.335938 203.464844 247.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.246094 256.734375 C 261.246094 258.355469 258.816406 258.355469 258.816406 256.734375 C 258.816406 255.113281 261.246094 255.113281 261.246094 256.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.167969 230.363281 C 265.167969 231.980469 262.738281 231.980469 262.738281 230.363281 C 262.738281 228.742188 265.167969 228.742188 265.167969 230.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.523438 258.433594 C 282.523438 260.054688 280.09375 260.054688 280.09375 258.433594 C 280.09375 256.816406 282.523438 256.816406 282.523438 258.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.613281 248.617188 C 265.613281 250.238281 263.183594 250.238281 263.183594 248.617188 C 263.183594 246.996094 265.613281 246.996094 265.613281 248.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.898438 70.910156 L 225.535156 73.746094 L 222.265625 73.746094 Z M 223.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.640625 260.277344 C 272.640625 261.898438 270.210938 261.898438 270.210938 260.277344 C 270.210938 258.65625 272.640625 258.65625 272.640625 260.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.195312 418.691406 L 180.832031 415.855469 L 177.558594 415.855469 Z M 179.195312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.003906 273.390625 C 261.003906 275.011719 258.570312 275.011719 258.570312 273.390625 C 258.570312 271.769531 261.003906 271.769531 261.003906 273.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.871094 290.246094 C 251.871094 291.863281 249.441406 291.863281 249.441406 290.246094 C 249.441406 288.625 251.871094 288.625 251.871094 290.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.742188 240.355469 C 293.742188 241.976562 291.3125 241.976562 291.3125 240.355469 C 291.3125 238.734375 293.742188 238.734375 293.742188 240.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.152344 280.125 C 285.152344 281.746094 282.722656 281.746094 282.722656 280.125 C 282.722656 278.507812 285.152344 278.507812 285.152344 280.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.058594 251.46875 C 273.058594 253.089844 270.628906 253.089844 270.628906 251.46875 C 270.628906 249.851562 273.058594 249.851562 273.058594 251.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.109375 272.914062 C 260.109375 274.535156 257.679688 274.535156 257.679688 272.914062 C 257.679688 271.296875 260.109375 271.296875 260.109375 272.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.15625 329.160156 C 275.15625 330.78125 272.726562 330.78125 272.726562 329.160156 C 272.726562 327.539062 275.15625 327.539062 275.15625 329.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.105469 297.886719 C 294.105469 299.507812 291.675781 299.507812 291.675781 297.886719 C 291.675781 296.269531 294.105469 296.269531 294.105469 297.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.074219 207.632812 C 277.074219 209.253906 274.644531 209.253906 274.644531 207.632812 C 274.644531 206.011719 277.074219 206.011719 277.074219 207.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.382812 231.613281 C 264.382812 233.234375 261.953125 233.234375 261.953125 231.613281 C 261.953125 229.992188 264.382812 229.992188 264.382812 231.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.828125 277.746094 C 199.828125 279.363281 197.398438 279.363281 197.398438 277.746094 C 197.398438 276.125 199.828125 276.125 199.828125 277.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.578125 250.5 C 257.578125 252.121094 255.148438 252.121094 255.148438 250.5 C 255.148438 248.882812 257.578125 248.882812 257.578125 250.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.398438 70.910156 L 205.035156 73.746094 L 201.761719 73.746094 Z M 203.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.199219 277.621094 C 255.199219 279.242188 252.769531 279.242188 252.769531 277.621094 C 252.769531 276 255.199219 276 255.199219 277.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.085938 95.976562 C 214.085938 97.597656 211.65625 97.597656 211.65625 95.976562 C 211.65625 94.359375 214.085938 94.359375 214.085938 95.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.5625 418.691406 L 135.199219 415.855469 L 131.925781 415.855469 Z M 133.5625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.597656 70.910156 L 136.234375 73.746094 L 132.960938 73.746094 Z M 134.597656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.78125 70.910156 L 169.417969 73.746094 L 166.144531 73.746094 Z M 167.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.226562 238.234375 C 203.226562 239.855469 200.796875 239.855469 200.796875 238.234375 C 200.796875 236.613281 203.226562 236.613281 203.226562 238.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.730469 289.734375 C 296.730469 291.351562 294.300781 291.351562 294.300781 289.734375 C 294.300781 288.113281 296.730469 288.113281 296.730469 289.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.285156 281.476562 C 251.285156 283.09375 248.855469 283.09375 248.855469 281.476562 C 248.855469 279.855469 251.285156 279.855469 251.285156 281.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.140625 283.929688 C 337.140625 285.546875 334.710938 285.546875 334.710938 283.929688 C 334.710938 282.308594 337.140625 282.308594 337.140625 283.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.445312 277.890625 C 319.445312 279.511719 317.015625 279.511719 317.015625 277.890625 C 317.015625 276.269531 319.445312 276.269531 319.445312 277.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.246094 249.429688 C 116.246094 251.046875 113.816406 251.046875 113.816406 249.429688 C 113.816406 247.808594 116.246094 247.808594 116.246094 249.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.949219 284.863281 C 316.949219 286.484375 314.519531 286.484375 314.519531 284.863281 C 314.519531 283.246094 316.949219 283.246094 316.949219 284.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.421875 292.195312 C 243.421875 293.816406 240.988281 293.816406 240.988281 292.195312 C 240.988281 290.578125 243.421875 290.578125 243.421875 292.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.707031 260.855469 C 161.707031 262.472656 159.277344 262.472656 159.277344 260.855469 C 159.277344 259.234375 161.707031 259.234375 161.707031 260.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.390625 70.910156 L 158.027344 73.746094 L 154.753906 73.746094 Z M 156.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.222656 119.503906 C 203.222656 121.125 200.792969 121.125 200.792969 119.503906 C 200.792969 117.886719 203.222656 117.886719 203.222656 119.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.226562 418.691406 L 328.863281 415.855469 L 325.589844 415.855469 Z M 327.226562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.085938 128.214844 C 117.085938 129.835938 114.652344 129.835938 114.652344 128.214844 C 114.652344 126.59375 117.085938 126.59375 117.085938 128.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.910156 286.316406 C 198.910156 287.9375 196.480469 287.9375 196.480469 286.316406 C 196.480469 284.695312 198.910156 284.695312 198.910156 286.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.652344 318.152344 C 214.652344 319.769531 212.222656 319.769531 212.222656 318.152344 C 212.222656 316.53125 214.652344 316.53125 214.652344 318.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.089844 324.074219 C 286.089844 325.695312 283.660156 325.695312 283.660156 324.074219 C 283.660156 322.453125 286.089844 322.453125 286.089844 324.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.261719 70.910156 L 188.894531 73.746094 L 185.625 73.746094 Z M 187.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.945312 243.402344 C 307.945312 245.023438 305.515625 245.023438 305.515625 243.402344 C 305.515625 241.78125 307.945312 241.78125 307.945312 243.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.289062 418.691406 L 295.925781 415.855469 L 292.652344 415.855469 Z M 294.289062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.859375 412.300781 C 245.859375 413.921875 243.429688 413.921875 243.429688 412.300781 C 243.429688 410.679688 245.859375 410.679688 245.859375 412.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.976562 255.601562 C 308.976562 257.222656 306.546875 257.222656 306.546875 255.601562 C 306.546875 253.980469 308.976562 253.980469 308.976562 255.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.273438 220.386719 C 271.273438 222.007812 268.84375 222.007812 268.84375 220.386719 C 268.84375 218.765625 271.273438 218.765625 271.273438 220.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.867188 418.691406 L 152.503906 415.855469 L 149.230469 415.855469 Z M 150.867188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.1875 99.195312 C 233.1875 100.816406 230.757812 100.816406 230.757812 99.195312 C 230.757812 97.574219 233.1875 97.574219 233.1875 99.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.890625 70.910156 L 229.527344 73.746094 L 226.253906 73.746094 Z M 227.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.234375 316.691406 C 290.234375 318.3125 287.804688 318.3125 287.804688 316.691406 C 287.804688 315.074219 290.234375 315.074219 290.234375 316.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.773438 320.6875 C 303.773438 322.308594 301.339844 322.308594 301.339844 320.6875 C 301.339844 319.070312 303.773438 319.070312 303.773438 320.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.332031 70.910156 L 191.96875 73.746094 L 188.695312 73.746094 Z M 190.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.894531 331.480469 C 321.894531 333.101562 319.464844 333.101562 319.464844 331.480469 C 319.464844 329.863281 321.894531 329.863281 321.894531 331.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.683594 297.449219 C 224.683594 299.070312 222.253906 299.070312 222.253906 297.449219 C 222.253906 295.828125 224.683594 295.828125 224.683594 297.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.457031 320.332031 C 266.457031 321.949219 264.027344 321.949219 264.027344 320.332031 C 264.027344 318.710938 266.457031 318.710938 266.457031 320.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 368.078125 268.882812 C 368.078125 270.503906 365.644531 270.503906 365.644531 268.882812 C 365.644531 267.265625 368.078125 267.265625 368.078125 268.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.375 203.507812 C 274.375 205.125 271.941406 205.125 271.941406 203.507812 C 271.941406 201.886719 274.375 201.886719 274.375 203.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.007812 232.558594 C 257.007812 234.179688 254.578125 234.179688 254.578125 232.558594 C 254.578125 230.9375 257.007812 230.9375 257.007812 232.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.164062 90.558594 C 123.164062 92.179688 120.734375 92.179688 120.734375 90.558594 C 120.734375 88.941406 123.164062 88.941406 123.164062 90.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.65625 167.671875 C 294.65625 169.292969 292.226562 169.292969 292.226562 167.671875 C 292.226562 166.050781 294.65625 166.050781 294.65625 167.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.453125 269.941406 C 257.453125 271.5625 255.023438 271.5625 255.023438 269.941406 C 255.023438 268.320312 257.453125 268.320312 257.453125 269.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.679688 282.480469 C 252.679688 284.101562 250.25 284.101562 250.25 282.480469 C 250.25 280.859375 252.679688 280.859375 252.679688 282.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.847656 245.867188 C 262.847656 247.488281 260.417969 247.488281 260.417969 245.867188 C 260.417969 244.246094 262.847656 244.246094 262.847656 245.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.285156 269.921875 C 284.285156 271.542969 281.855469 271.542969 281.855469 269.921875 C 281.855469 268.300781 284.285156 268.300781 284.285156 269.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.722656 309.738281 C 232.722656 311.359375 230.289062 311.359375 230.289062 309.738281 C 230.289062 308.117188 232.722656 308.117188 232.722656 309.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.425781 224.65625 C 301.425781 226.277344 298.996094 226.277344 298.996094 224.65625 C 298.996094 223.035156 301.425781 223.035156 301.425781 224.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.714844 190.132812 C 297.714844 191.753906 295.285156 191.753906 295.285156 190.132812 C 295.285156 188.511719 297.714844 188.511719 297.714844 190.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.464844 149.480469 C 197.464844 151.101562 195.03125 151.101562 195.03125 149.480469 C 195.03125 147.859375 197.464844 147.859375 197.464844 149.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.140625 127.296875 C 179.140625 128.917969 176.707031 128.917969 176.707031 127.296875 C 176.707031 125.675781 179.140625 125.675781 179.140625 127.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.804688 106.730469 C 309.804688 108.351562 307.375 108.351562 307.375 106.730469 C 307.375 105.113281 309.804688 105.113281 309.804688 106.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.371094 70.910156 L 278.003906 73.746094 L 274.734375 73.746094 Z M 276.371094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.484375 325.535156 C 251.484375 327.15625 249.054688 327.15625 249.054688 325.535156 C 249.054688 323.917969 251.484375 323.917969 251.484375 325.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.296875 232.738281 C 233.296875 234.359375 230.867188 234.359375 230.867188 232.738281 C 230.867188 231.117188 233.296875 231.117188 233.296875 232.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.910156 85.394531 C 270.910156 87.015625 268.480469 87.015625 268.480469 85.394531 C 268.480469 83.773438 270.910156 83.773438 270.910156 85.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.273438 70.910156 L 225.910156 73.746094 L 222.640625 73.746094 Z M 224.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.746094 205.707031 C 175.746094 207.328125 173.316406 207.328125 173.316406 205.707031 C 173.316406 204.089844 175.746094 204.089844 175.746094 205.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.390625 265.210938 C 325.390625 266.832031 322.960938 266.832031 322.960938 265.210938 C 322.960938 263.589844 325.390625 263.589844 325.390625 265.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.390625 253.40625 C 278.390625 255.023438 275.960938 255.023438 275.960938 253.40625 C 275.960938 251.785156 278.390625 251.785156 278.390625 253.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.855469 295.039062 C 163.855469 296.660156 161.425781 296.660156 161.425781 295.039062 C 161.425781 293.421875 163.855469 293.421875 163.855469 295.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.367188 294.789062 C 297.367188 296.410156 294.9375 296.410156 294.9375 294.789062 C 294.9375 293.171875 297.367188 293.171875 297.367188 294.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 276.734375 418.691406 L 278.371094 415.855469 L 275.097656 415.855469 Z M 276.734375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.0625 418.691406 L 158.699219 415.855469 L 155.425781 415.855469 Z M 157.0625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 368.058594 418.691406 L 369.695312 415.855469 L 366.421875 415.855469 Z M 368.058594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.796875 216.703125 C 277.796875 218.324219 275.367188 218.324219 275.367188 216.703125 C 275.367188 215.085938 277.796875 215.085938 277.796875 216.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.8125 418.691406 L 263.449219 415.855469 L 260.175781 415.855469 Z M 261.8125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 334.917969 249.332031 C 334.917969 250.949219 332.488281 250.949219 332.488281 249.332031 C 332.488281 247.710938 334.917969 247.710938 334.917969 249.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.40625 129.609375 C 244.40625 131.230469 241.976562 131.230469 241.976562 129.609375 C 241.976562 127.988281 244.40625 127.988281 244.40625 129.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.070312 220.265625 C 241.070312 221.886719 238.640625 221.886719 238.640625 220.265625 C 238.640625 218.648438 241.070312 218.648438 241.070312 220.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.175781 264.421875 C 304.175781 266.042969 301.746094 266.042969 301.746094 264.421875 C 301.746094 262.800781 304.175781 262.800781 304.175781 264.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.566406 119.136719 C 189.566406 120.753906 187.136719 120.753906 187.136719 119.136719 C 187.136719 117.515625 189.566406 117.515625 189.566406 119.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.035156 142.765625 C 251.035156 144.382812 248.605469 144.382812 248.605469 142.765625 C 248.605469 141.144531 251.035156 141.144531 251.035156 142.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.722656 285.429688 C 239.722656 287.050781 237.292969 287.050781 237.292969 285.429688 C 237.292969 283.808594 239.722656 283.808594 239.722656 285.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.984375 307.429688 C 277.984375 309.050781 275.554688 309.050781 275.554688 307.429688 C 275.554688 305.808594 277.984375 305.808594 277.984375 307.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.304688 261.21875 C 264.304688 262.839844 261.875 262.839844 261.875 261.21875 C 261.875 259.601562 264.304688 259.601562 264.304688 261.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.945312 232.515625 C 282.945312 234.132812 280.515625 234.132812 280.515625 232.515625 C 280.515625 230.894531 282.945312 230.894531 282.945312 232.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.15625 250.980469 C 217.15625 252.597656 214.726562 252.597656 214.726562 250.980469 C 214.726562 249.359375 217.15625 249.359375 217.15625 250.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.417969 250.671875 C 242.417969 252.289062 239.988281 252.289062 239.988281 250.671875 C 239.988281 249.050781 242.417969 249.050781 242.417969 250.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 340.757812 331.511719 C 340.757812 333.128906 338.328125 333.128906 338.328125 331.511719 C 338.328125 329.890625 340.757812 329.890625 340.757812 331.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.304688 262.941406 C 282.304688 264.558594 279.875 264.558594 279.875 262.941406 C 279.875 261.320312 282.304688 261.320312 282.304688 262.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.398438 70.910156 L 228.035156 73.746094 L 224.761719 73.746094 Z M 226.398438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.53125 70.910156 L 198.167969 73.746094 L 194.894531 73.746094 Z M 196.53125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.558594 272.621094 C 253.558594 274.242188 251.125 274.242188 251.125 272.621094 C 251.125 271.003906 253.558594 271.003906 253.558594 272.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.734375 418.691406 L 149.371094 415.855469 L 146.097656 415.855469 Z M 147.734375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.921875 235.175781 C 248.921875 236.796875 246.492188 236.796875 246.492188 235.175781 C 246.492188 233.554688 248.921875 233.554688 248.921875 235.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.011719 263.347656 C 295.011719 264.96875 292.582031 264.96875 292.582031 263.347656 C 292.582031 261.726562 295.011719 261.726562 295.011719 263.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.023438 70.910156 L 261.65625 73.746094 L 258.386719 73.746094 Z M 260.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.554688 145.453125 C 152.554688 147.074219 150.125 147.074219 150.125 145.453125 C 150.125 143.835938 152.554688 143.835938 152.554688 145.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.261719 242.9375 C 280.261719 244.558594 277.832031 244.558594 277.832031 242.9375 C 277.832031 241.316406 280.261719 241.316406 280.261719 242.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.203125 191.410156 C 249.203125 193.03125 246.773438 193.03125 246.773438 191.410156 C 246.773438 189.789062 249.203125 189.789062 249.203125 191.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.203125 418.691406 L 318.839844 415.855469 L 315.566406 415.855469 Z M 317.203125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.632812 299.0625 C 301.632812 300.679688 299.203125 300.679688 299.203125 299.0625 C 299.203125 297.441406 301.632812 297.441406 301.632812 299.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.679688 233.429688 C 215.679688 235.050781 213.25 235.050781 213.25 233.429688 C 213.25 231.8125 215.679688 231.8125 215.679688 233.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.425781 203.660156 C 238.425781 205.28125 235.996094 205.28125 235.996094 203.660156 C 235.996094 202.039062 238.425781 202.039062 238.425781 203.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.238281 193.378906 C 235.238281 195 232.808594 195 232.808594 193.378906 C 232.808594 191.757812 235.238281 191.757812 235.238281 193.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.214844 217.914062 C 322.214844 219.535156 319.785156 219.535156 319.785156 217.914062 C 319.785156 216.292969 322.214844 216.292969 322.214844 217.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.609375 297.429688 C 245.609375 299.046875 243.179688 299.046875 243.179688 297.429688 C 243.179688 295.808594 245.609375 295.808594 245.609375 297.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.679688 257.734375 C 275.679688 259.355469 273.25 259.355469 273.25 257.734375 C 273.25 256.117188 275.679688 256.117188 275.679688 257.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.570312 149.398438 C 256.570312 151.019531 254.140625 151.019531 254.140625 149.398438 C 254.140625 147.777344 256.570312 147.777344 256.570312 149.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.953125 226.976562 C 238.953125 228.59375 236.523438 228.59375 236.523438 226.976562 C 236.523438 225.355469 238.953125 225.355469 238.953125 226.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.929688 228.644531 C 331.929688 230.265625 329.5 230.265625 329.5 228.644531 C 329.5 227.023438 331.929688 227.023438 331.929688 228.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.121094 213.472656 C 272.121094 215.09375 269.691406 215.09375 269.691406 213.472656 C 269.691406 211.855469 272.121094 211.855469 272.121094 213.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.222656 269.324219 C 236.222656 270.945312 233.792969 270.945312 233.792969 269.324219 C 233.792969 267.703125 236.222656 267.703125 236.222656 269.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.855469 295.011719 C 224.855469 296.628906 222.425781 296.628906 222.425781 295.011719 C 222.425781 293.390625 224.855469 293.390625 224.855469 295.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.007812 329.632812 C 281.007812 331.253906 278.578125 331.253906 278.578125 329.632812 C 278.578125 328.015625 281.007812 328.015625 281.007812 329.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.710938 70.910156 L 234.347656 73.746094 L 231.078125 73.746094 Z M 232.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.609375 252.671875 C 269.609375 254.289062 267.179688 254.289062 267.179688 252.671875 C 267.179688 251.050781 269.609375 251.050781 269.609375 252.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.539062 222.222656 C 283.539062 223.84375 281.109375 223.84375 281.109375 222.222656 C 281.109375 220.605469 283.539062 220.605469 283.539062 222.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.171875 231.738281 C 259.171875 233.359375 256.742188 233.359375 256.742188 231.738281 C 256.742188 230.117188 259.171875 230.117188 259.171875 231.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.839844 339.636719 C 128.839844 341.257812 126.410156 341.257812 126.410156 339.636719 C 126.410156 338.019531 128.839844 338.019531 128.839844 339.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.050781 95.4375 C 122.050781 97.058594 119.621094 97.058594 119.621094 95.4375 C 119.621094 93.820312 122.050781 93.820312 122.050781 95.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.222656 141.136719 C 114.222656 142.757812 111.792969 142.757812 111.792969 141.136719 C 111.792969 139.519531 114.222656 139.519531 114.222656 141.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.640625 93.199219 C 152.640625 94.820312 150.210938 94.820312 150.210938 93.199219 C 150.210938 91.578125 152.640625 91.578125 152.640625 93.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.414062 368.203125 C 133.414062 369.824219 130.984375 369.824219 130.984375 368.203125 C 130.984375 366.582031 133.414062 366.582031 133.414062 368.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.644531 280.652344 C 225.644531 282.269531 223.214844 282.269531 223.214844 280.652344 C 223.214844 279.03125 225.644531 279.03125 225.644531 280.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.148438 287.554688 C 223.148438 289.175781 220.71875 289.175781 220.71875 287.554688 C 220.71875 285.933594 223.148438 285.933594 223.148438 287.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.816406 294.488281 C 258.816406 296.109375 256.386719 296.109375 256.386719 294.488281 C 256.386719 292.871094 258.816406 292.871094 258.816406 294.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.050781 296.214844 C 270.050781 297.835938 267.617188 297.835938 267.617188 296.214844 C 267.617188 294.59375 270.050781 294.59375 270.050781 296.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.671875 336.683594 C 281.671875 338.304688 279.242188 338.304688 279.242188 336.683594 C 279.242188 335.0625 281.671875 335.0625 281.671875 336.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.542969 404.800781 C 297.542969 406.417969 295.113281 406.417969 295.113281 404.800781 C 295.113281 403.179688 297.542969 403.179688 297.542969 404.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.160156 418.691406 L 256.796875 415.855469 L 253.523438 415.855469 Z M 255.160156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.171875 228.464844 C 251.171875 230.082031 248.742188 230.082031 248.742188 228.464844 C 248.742188 226.84375 251.171875 226.84375 251.171875 228.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.140625 204.878906 C 172.140625 206.5 169.710938 206.5 169.710938 204.878906 C 169.710938 203.257812 172.140625 203.257812 172.140625 204.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.113281 251.515625 C 286.113281 253.136719 283.683594 253.136719 283.683594 251.515625 C 283.683594 249.898438 286.113281 249.898438 286.113281 251.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.261719 295.769531 C 271.261719 297.386719 268.832031 297.386719 268.832031 295.769531 C 268.832031 294.148438 271.261719 294.148438 271.261719 295.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.996094 345.425781 C 301.996094 347.042969 299.566406 347.042969 299.566406 345.425781 C 299.566406 343.804688 301.996094 343.804688 301.996094 345.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.308594 70.910156 L 258.945312 73.746094 L 255.671875 73.746094 Z M 257.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.03125 186.613281 C 259.03125 188.230469 256.601562 188.230469 256.601562 186.613281 C 256.601562 184.992188 259.03125 184.992188 259.03125 186.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.234375 252.671875 C 319.234375 254.289062 316.804688 254.289062 316.804688 252.671875 C 316.804688 251.050781 319.234375 251.050781 319.234375 252.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.527344 70.910156 L 288.164062 73.746094 L 284.890625 73.746094 Z M 286.527344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.261719 244.632812 C 251.261719 246.253906 248.832031 246.253906 248.832031 244.632812 C 248.832031 243.015625 251.261719 243.015625 251.261719 244.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.175781 298.304688 C 223.175781 299.925781 220.746094 299.925781 220.746094 298.304688 C 220.746094 296.6875 223.175781 296.6875 223.175781 298.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.613281 329.105469 C 302.613281 330.726562 300.183594 330.726562 300.183594 329.105469 C 300.183594 327.484375 302.613281 327.484375 302.613281 329.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.78125 199.554688 C 278.78125 201.175781 276.351562 201.175781 276.351562 199.554688 C 276.351562 197.933594 278.78125 197.933594 278.78125 199.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.730469 149.253906 C 289.730469 150.875 287.300781 150.875 287.300781 149.253906 C 287.300781 147.636719 289.730469 147.636719 289.730469 149.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.089844 201.601562 C 285.089844 203.222656 282.660156 203.222656 282.660156 201.601562 C 282.660156 199.980469 285.089844 199.980469 285.089844 201.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.21875 105.53125 C 218.21875 107.152344 215.789062 107.152344 215.789062 105.53125 C 215.789062 103.910156 218.21875 103.910156 218.21875 105.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.246094 125.871094 C 278.246094 127.492188 275.816406 127.492188 275.816406 125.871094 C 275.816406 124.25 278.246094 124.25 278.246094 125.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.585938 385.378906 C 297.585938 386.996094 295.15625 386.996094 295.15625 385.378906 C 295.15625 383.757812 297.585938 383.757812 297.585938 385.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.734375 383.503906 C 287.734375 385.121094 285.304688 385.121094 285.304688 383.503906 C 285.304688 381.882812 287.734375 381.882812 287.734375 383.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.425781 418.691406 L 350.0625 415.855469 L 346.792969 415.855469 Z M 348.425781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.042969 276.21875 C 220.042969 277.839844 217.613281 277.839844 217.613281 276.21875 C 217.613281 274.597656 220.042969 274.597656 220.042969 276.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.328125 275.40625 C 316.328125 277.023438 313.898438 277.023438 313.898438 275.40625 C 313.898438 273.785156 316.328125 273.785156 316.328125 275.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.675781 273.601562 C 257.675781 275.21875 255.246094 275.21875 255.246094 273.601562 C 255.246094 271.980469 257.675781 271.980469 257.675781 273.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.578125 70.910156 L 133.214844 73.746094 L 129.941406 73.746094 Z M 131.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.195312 70.910156 L 257.832031 73.746094 L 254.558594 73.746094 Z M 256.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.679688 228.382812 C 189.679688 230.003906 187.25 230.003906 187.25 228.382812 C 187.25 226.765625 189.679688 226.765625 189.679688 228.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.476562 124.34375 C 313.476562 125.960938 311.046875 125.960938 311.046875 124.34375 C 311.046875 122.722656 313.476562 122.722656 313.476562 124.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.894531 273.53125 C 243.894531 275.152344 241.464844 275.152344 241.464844 273.53125 C 241.464844 271.914062 243.894531 271.914062 243.894531 273.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.226562 267.332031 C 269.226562 268.953125 266.796875 268.953125 266.796875 267.332031 C 266.796875 265.714844 269.226562 265.714844 269.226562 267.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.855469 245.441406 C 241.855469 247.0625 239.425781 247.0625 239.425781 245.441406 C 239.425781 243.820312 241.855469 243.820312 241.855469 245.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.140625 83.492188 C 329.140625 85.113281 326.710938 85.113281 326.710938 83.492188 C 326.710938 81.871094 329.140625 81.871094 329.140625 83.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.152344 186.4375 C 233.152344 188.054688 230.722656 188.054688 230.722656 186.4375 C 230.722656 184.816406 233.152344 184.816406 233.152344 186.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.207031 79.992188 C 220.207031 81.609375 217.777344 81.609375 217.777344 79.992188 C 217.777344 78.371094 220.207031 78.371094 220.207031 79.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.953125 260.578125 C 253.953125 262.195312 251.519531 262.195312 251.519531 260.578125 C 251.519531 258.957031 253.953125 258.957031 253.953125 260.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.679688 225.179688 C 255.679688 226.800781 253.25 226.800781 253.25 225.179688 C 253.25 223.558594 255.679688 223.558594 255.679688 225.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.488281 70.910156 L 261.125 73.746094 L 257.855469 73.746094 Z M 259.488281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.546875 104.992188 C 138.546875 106.613281 136.117188 106.613281 136.117188 104.992188 C 136.117188 103.371094 138.546875 103.371094 138.546875 104.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.164062 175.261719 C 146.164062 176.882812 143.734375 176.882812 143.734375 175.261719 C 143.734375 173.640625 146.164062 173.640625 146.164062 175.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.03125 356.808594 C 317.03125 358.429688 314.601562 358.429688 314.601562 356.808594 C 314.601562 355.1875 317.03125 355.1875 317.03125 356.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.507812 255.46875 C 226.507812 257.089844 224.078125 257.089844 224.078125 255.46875 C 224.078125 253.851562 226.507812 253.851562 226.507812 255.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.363281 275.609375 C 301.363281 277.230469 298.933594 277.230469 298.933594 275.609375 C 298.933594 273.988281 301.363281 273.988281 301.363281 275.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.054688 267.207031 C 305.054688 268.828125 302.625 268.828125 302.625 267.207031 C 302.625 265.585938 305.054688 265.585938 305.054688 267.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.199219 77.386719 C 207.199219 79.007812 204.769531 79.007812 204.769531 77.386719 C 204.769531 75.765625 207.199219 75.765625 207.199219 77.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.367188 242.707031 C 234.367188 244.324219 231.9375 244.324219 231.9375 242.707031 C 231.9375 241.085938 234.367188 241.085938 234.367188 242.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.035156 270.285156 C 330.035156 271.90625 327.605469 271.90625 327.605469 270.285156 C 327.605469 268.664062 330.035156 268.664062 330.035156 270.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.910156 152.484375 C 306.910156 154.105469 304.476562 154.105469 304.476562 152.484375 C 304.476562 150.867188 306.910156 150.867188 306.910156 152.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.574219 163.414062 C 266.574219 165.03125 264.144531 165.03125 264.144531 163.414062 C 264.144531 161.792969 266.574219 161.792969 266.574219 163.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.308594 70.910156 L 215.945312 73.746094 L 212.671875 73.746094 Z M 214.308594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.246094 70.910156 L 207.882812 73.746094 L 204.613281 73.746094 Z M 206.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.429688 170.65625 C 158.429688 172.273438 156 172.273438 156 170.65625 C 156 169.035156 158.429688 169.035156 158.429688 170.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.335938 171.292969 C 268.335938 172.914062 265.90625 172.914062 265.90625 171.292969 C 265.90625 169.671875 268.335938 169.671875 268.335938 171.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.503906 70.910156 L 182.140625 73.746094 L 178.867188 73.746094 Z M 180.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.441406 317.320312 C 174.441406 318.9375 172.011719 318.9375 172.011719 317.320312 C 172.011719 315.699219 174.441406 315.699219 174.441406 317.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.066406 305.039062 C 259.066406 306.660156 256.636719 306.660156 256.636719 305.039062 C 256.636719 303.417969 259.066406 303.417969 259.066406 305.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.894531 204.777344 C 279.894531 206.398438 277.464844 206.398438 277.464844 204.777344 C 277.464844 203.15625 279.894531 203.15625 279.894531 204.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.1875 229.644531 C 290.1875 231.261719 287.757812 231.261719 287.757812 229.644531 C 287.757812 228.023438 290.1875 228.023438 290.1875 229.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.882812 267.886719 C 233.882812 269.507812 231.453125 269.507812 231.453125 267.886719 C 231.453125 266.269531 233.882812 266.269531 233.882812 267.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.960938 297.773438 C 293.960938 299.390625 291.53125 299.390625 291.53125 297.773438 C 291.53125 296.152344 293.960938 296.152344 293.960938 297.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.667969 116.363281 C 269.667969 117.984375 267.238281 117.984375 267.238281 116.363281 C 267.238281 114.742188 269.667969 114.742188 269.667969 116.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.734375 180.605469 C 210.734375 182.222656 208.304688 182.222656 208.304688 180.605469 C 208.304688 178.984375 210.734375 178.984375 210.734375 180.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.125 170.667969 C 289.125 172.289062 286.695312 172.289062 286.695312 170.667969 C 286.695312 169.050781 289.125 169.050781 289.125 170.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.472656 278.339844 C 275.472656 279.960938 273.042969 279.960938 273.042969 278.339844 C 273.042969 276.722656 275.472656 276.722656 275.472656 278.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.917969 207.210938 C 268.917969 208.832031 266.488281 208.832031 266.488281 207.210938 C 266.488281 205.59375 268.917969 205.59375 268.917969 207.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.800781 204.125 C 218.800781 205.746094 216.371094 205.746094 216.371094 204.125 C 216.371094 202.503906 218.800781 202.503906 218.800781 204.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.191406 216.800781 C 306.191406 218.421875 303.761719 218.421875 303.761719 216.800781 C 303.761719 215.179688 306.191406 215.179688 306.191406 216.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.609375 198.734375 C 275.609375 200.351562 273.179688 200.351562 273.179688 198.734375 C 273.179688 197.113281 275.609375 197.113281 275.609375 198.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.191406 297.1875 C 165.191406 298.808594 162.761719 298.808594 162.761719 297.1875 C 162.761719 295.566406 165.191406 295.566406 165.191406 297.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.761719 239.921875 C 226.761719 241.542969 224.332031 241.542969 224.332031 239.921875 C 224.332031 238.300781 226.761719 238.300781 226.761719 239.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.914062 170.730469 C 300.914062 172.351562 298.484375 172.351562 298.484375 170.730469 C 298.484375 169.109375 300.914062 169.109375 300.914062 170.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.90625 116.710938 C 291.90625 118.332031 289.476562 118.332031 289.476562 116.710938 C 289.476562 115.09375 291.90625 115.09375 291.90625 116.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 412.957031 178.414062 C 412.957031 180.035156 410.527344 180.035156 410.527344 178.414062 C 410.527344 176.796875 412.957031 176.796875 412.957031 178.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.878906 257.152344 C 313.878906 258.773438 311.449219 258.773438 311.449219 257.152344 C 311.449219 255.535156 313.878906 255.535156 313.878906 257.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.652344 293.195312 C 280.652344 294.816406 278.222656 294.816406 278.222656 293.195312 C 278.222656 291.574219 280.652344 291.574219 280.652344 293.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.828125 278.066406 C 223.828125 279.6875 221.398438 279.6875 221.398438 278.066406 C 221.398438 276.445312 223.828125 276.445312 223.828125 278.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.890625 249.742188 C 268.890625 251.363281 266.460938 251.363281 266.460938 249.742188 C 266.460938 248.125 268.890625 248.125 268.890625 249.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.21875 278.519531 C 273.21875 280.140625 270.785156 280.140625 270.785156 278.519531 C 270.785156 276.902344 273.21875 276.902344 273.21875 278.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.253906 250.328125 C 228.253906 251.945312 225.824219 251.945312 225.824219 250.328125 C 225.824219 248.707031 228.253906 248.707031 228.253906 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.015625 230.632812 C 233.015625 232.253906 230.585938 232.253906 230.585938 230.632812 C 230.585938 229.015625 233.015625 229.015625 233.015625 230.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.429688 309.089844 C 149.429688 310.710938 146.996094 310.710938 146.996094 309.089844 C 146.996094 307.46875 149.429688 307.46875 149.429688 309.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.933594 214.335938 C 238.933594 215.957031 236.503906 215.957031 236.503906 214.335938 C 236.503906 212.714844 238.933594 212.714844 238.933594 214.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.386719 283.003906 C 314.386719 284.621094 311.957031 284.621094 311.957031 283.003906 C 311.957031 281.382812 314.386719 281.382812 314.386719 283.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.265625 285.117188 C 286.265625 286.734375 283.835938 286.734375 283.835938 285.117188 C 283.835938 283.496094 286.265625 283.496094 286.265625 285.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.964844 70.910156 L 280.601562 73.746094 L 277.328125 73.746094 Z M 278.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.820312 244.390625 C 281.820312 246.007812 279.390625 246.007812 279.390625 244.390625 C 279.390625 242.769531 281.820312 242.769531 281.820312 244.390625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.082031 70.910156 L 154.71875 73.746094 L 151.449219 73.746094 Z M 153.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.710938 283.804688 C 310.710938 285.425781 308.28125 285.425781 308.28125 283.804688 C 308.28125 282.183594 310.710938 282.183594 310.710938 283.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.261719 208.558594 C 249.261719 210.179688 246.832031 210.179688 246.832031 208.558594 C 246.832031 206.941406 249.261719 206.941406 249.261719 208.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.722656 292.160156 C 299.722656 293.78125 297.292969 293.78125 297.292969 292.160156 C 297.292969 290.539062 299.722656 290.539062 299.722656 292.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.566406 252.402344 C 278.566406 254.023438 276.136719 254.023438 276.136719 252.402344 C 276.136719 250.78125 278.566406 250.78125 278.566406 252.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.324219 209.460938 C 295.324219 211.078125 292.890625 211.078125 292.890625 209.460938 C 292.890625 207.839844 295.324219 207.839844 295.324219 209.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.710938 251.847656 C 301.710938 253.46875 299.28125 253.46875 299.28125 251.847656 C 299.28125 250.230469 301.710938 250.230469 301.710938 251.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.4375 262.460938 C 250.4375 264.082031 248.007812 264.082031 248.007812 262.460938 C 248.007812 260.839844 250.4375 260.839844 250.4375 262.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.058594 260.789062 C 251.058594 262.40625 248.628906 262.40625 248.628906 260.789062 C 248.628906 259.167969 251.058594 259.167969 251.058594 260.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.523438 274.074219 C 258.523438 275.695312 256.09375 275.695312 256.09375 274.074219 C 256.09375 272.457031 258.523438 272.457031 258.523438 274.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.582031 70.910156 L 185.21875 73.746094 L 181.945312 73.746094 Z M 183.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.765625 70.910156 L 269.402344 73.746094 L 266.128906 73.746094 Z M 267.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.234375 262.222656 C 242.234375 263.839844 239.804688 263.839844 239.804688 262.222656 C 239.804688 260.601562 242.234375 260.601562 242.234375 262.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.441406 70.910156 L 150.078125 73.746094 L 146.804688 73.746094 Z M 148.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.375 156.28125 C 295.375 157.898438 292.945312 157.898438 292.945312 156.28125 C 292.945312 154.660156 295.375 154.660156 295.375 156.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.921875 226.132812 C 270.921875 227.753906 268.492188 227.753906 268.492188 226.132812 C 268.492188 224.515625 270.921875 224.515625 270.921875 226.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.59375 70.910156 L 166.230469 73.746094 L 162.957031 73.746094 Z M 164.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.5625 338.515625 C 284.5625 340.132812 282.132812 340.132812 282.132812 338.515625 C 282.132812 336.894531 284.5625 336.894531 284.5625 338.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 333.066406 70.910156 L 334.699219 73.746094 L 331.429688 73.746094 Z M 333.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.375 149.757812 C 296.375 151.378906 293.945312 151.378906 293.945312 149.757812 C 293.945312 148.136719 296.375 148.136719 296.375 149.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.875 166.078125 C 265.875 167.699219 263.441406 167.699219 263.441406 166.078125 C 263.441406 164.457031 265.875 164.457031 265.875 166.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.199219 249.664062 C 311.199219 251.285156 308.769531 251.285156 308.769531 249.664062 C 308.769531 248.046875 311.199219 248.046875 311.199219 249.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.269531 360.828125 C 356.269531 362.445312 353.839844 362.445312 353.839844 360.828125 C 353.839844 359.207031 356.269531 359.207031 356.269531 360.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.535156 70.910156 L 179.171875 73.746094 L 175.898438 73.746094 Z M 177.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.375 200.835938 C 331.375 202.457031 328.945312 202.457031 328.945312 200.835938 C 328.945312 199.214844 331.375 199.214844 331.375 200.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.707031 70.910156 L 284.34375 73.746094 L 281.070312 73.746094 Z M 282.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.175781 163.085938 C 286.175781 164.707031 283.742188 164.707031 283.742188 163.085938 C 283.742188 161.46875 286.175781 161.46875 286.175781 163.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.800781 257.605469 C 225.800781 259.226562 223.371094 259.226562 223.371094 257.605469 C 223.371094 255.984375 225.800781 255.984375 225.800781 257.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.140625 248.535156 C 221.140625 250.15625 218.707031 250.15625 218.707031 248.535156 C 218.707031 246.914062 221.140625 246.914062 221.140625 248.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.796875 247.046875 C 206.796875 248.667969 204.367188 248.667969 204.367188 247.046875 C 204.367188 245.429688 206.796875 245.429688 206.796875 247.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.738281 227.085938 C 218.738281 228.707031 216.304688 228.707031 216.304688 227.085938 C 216.304688 225.464844 218.738281 225.464844 218.738281 227.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.851562 418.691406 L 300.488281 415.855469 L 297.214844 415.855469 Z M 298.851562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.949219 282.3125 C 230.949219 283.933594 228.519531 283.933594 228.519531 282.3125 C 228.519531 280.695312 230.949219 280.695312 230.949219 282.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.089844 134.449219 C 236.089844 136.070312 233.660156 136.070312 233.660156 134.449219 C 233.660156 132.832031 236.089844 132.832031 236.089844 134.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.089844 133.429688 C 279.089844 135.046875 276.660156 135.046875 276.660156 133.429688 C 276.660156 131.808594 279.089844 131.808594 279.089844 133.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.230469 255.4375 C 176.230469 257.058594 173.800781 257.058594 173.800781 255.4375 C 173.800781 253.820312 176.230469 253.820312 176.230469 255.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.25 70.910156 L 255.886719 73.746094 L 252.613281 73.746094 Z M 254.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.640625 225.832031 C 298.640625 227.453125 296.207031 227.453125 296.207031 225.832031 C 296.207031 224.210938 298.640625 224.210938 298.640625 225.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.582031 259.722656 C 115.582031 261.34375 113.152344 261.34375 113.152344 259.722656 C 113.152344 258.105469 115.582031 258.105469 115.582031 259.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.597656 245.253906 C 153.597656 246.875 151.167969 246.875 151.167969 245.253906 C 151.167969 243.636719 153.597656 243.636719 153.597656 245.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.300781 70.910156 L 229.933594 73.746094 L 226.664062 73.746094 Z M 228.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.378906 70.910156 L 243.015625 73.746094 L 239.742188 73.746094 Z M 241.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.910156 290.980469 C 222.910156 292.601562 220.480469 292.601562 220.480469 290.980469 C 220.480469 289.359375 222.910156 289.359375 222.910156 290.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.113281 270.808594 C 273.113281 272.429688 270.683594 272.429688 270.683594 270.808594 C 270.683594 269.1875 273.113281 269.1875 273.113281 270.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.128906 96.027344 C 210.128906 97.648438 207.699219 97.648438 207.699219 96.027344 C 207.699219 94.40625 210.128906 94.40625 210.128906 96.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.269531 70.910156 L 144.90625 73.746094 L 141.632812 73.746094 Z M 143.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.996094 274.039062 C 241.996094 275.660156 239.566406 275.660156 239.566406 274.039062 C 239.566406 272.421875 241.996094 272.421875 241.996094 274.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.816406 198.054688 C 268.816406 199.675781 266.386719 199.675781 266.386719 198.054688 C 266.386719 196.433594 268.816406 196.433594 268.816406 198.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.433594 262.042969 C 220.433594 263.664062 218.003906 263.664062 218.003906 262.042969 C 218.003906 260.421875 220.433594 260.421875 220.433594 262.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.863281 275.894531 C 187.863281 277.515625 185.433594 277.515625 185.433594 275.894531 C 185.433594 274.277344 187.863281 274.277344 187.863281 275.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.894531 283.984375 C 264.894531 285.605469 262.464844 285.605469 262.464844 283.984375 C 262.464844 282.363281 264.894531 282.363281 264.894531 283.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.542969 256.730469 C 309.542969 258.351562 307.113281 258.351562 307.113281 256.730469 C 307.113281 255.113281 309.542969 255.113281 309.542969 256.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.480469 99.75 C 122.480469 101.371094 120.050781 101.371094 120.050781 99.75 C 120.050781 98.128906 122.480469 98.128906 122.480469 99.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.011719 244.75 C 310.011719 246.371094 307.582031 246.371094 307.582031 244.75 C 307.582031 243.128906 310.011719 243.128906 310.011719 244.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.769531 313.941406 C 221.769531 315.5625 219.339844 315.5625 219.339844 313.941406 C 219.339844 312.324219 221.769531 312.324219 221.769531 313.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.160156 198.0625 C 325.160156 199.683594 322.730469 199.683594 322.730469 198.0625 C 322.730469 196.445312 325.160156 196.445312 325.160156 198.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.160156 247.160156 C 308.160156 248.78125 305.730469 248.78125 305.730469 247.160156 C 305.730469 245.539062 308.160156 245.539062 308.160156 247.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.132812 266.066406 C 285.132812 267.6875 282.703125 267.6875 282.703125 266.066406 C 282.703125 264.445312 285.132812 264.445312 285.132812 266.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.464844 288.324219 C 282.464844 289.945312 280.035156 289.945312 280.035156 288.324219 C 280.035156 286.703125 282.464844 286.703125 282.464844 288.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.476562 182.09375 C 305.476562 183.714844 303.042969 183.714844 303.042969 182.09375 C 303.042969 180.472656 305.476562 180.472656 305.476562 182.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.394531 238.714844 C 298.394531 240.335938 295.964844 240.335938 295.964844 238.714844 C 295.964844 237.097656 298.394531 237.097656 298.394531 238.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.855469 206.683594 C 279.855469 208.304688 277.425781 208.304688 277.425781 206.683594 C 277.425781 205.066406 279.855469 205.066406 279.855469 206.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.164062 310.09375 C 244.164062 311.710938 241.734375 311.710938 241.734375 310.09375 C 241.734375 308.472656 244.164062 308.472656 244.164062 310.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.546875 70.910156 L 239.183594 73.746094 L 235.910156 73.746094 Z M 237.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.300781 353.519531 C 256.300781 355.140625 253.871094 355.140625 253.871094 353.519531 C 253.871094 351.898438 256.300781 351.898438 256.300781 353.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.519531 418.691406 L 291.15625 415.855469 L 287.882812 415.855469 Z M 289.519531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.898438 70.910156 L 215.535156 73.746094 L 212.261719 73.746094 Z M 213.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.929688 260.347656 C 335.929688 261.964844 333.5 261.964844 333.5 260.347656 C 333.5 258.726562 335.929688 258.726562 335.929688 260.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.957031 251.988281 C 213.957031 253.609375 211.523438 253.609375 211.523438 251.988281 C 211.523438 250.367188 213.957031 250.367188 213.957031 251.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.625 178.746094 C 269.625 180.367188 267.195312 180.367188 267.195312 178.746094 C 267.195312 177.125 269.625 177.125 269.625 178.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.863281 209.019531 C 204.863281 210.640625 202.433594 210.640625 202.433594 209.019531 C 202.433594 207.398438 204.863281 207.398438 204.863281 209.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.179688 326.71875 C 273.179688 328.339844 270.75 328.339844 270.75 326.71875 C 270.75 325.097656 273.179688 325.097656 273.179688 326.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.097656 372.546875 C 297.097656 374.167969 294.664062 374.167969 294.664062 372.546875 C 294.664062 370.925781 297.097656 370.925781 297.097656 372.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 402.84375 139.386719 C 402.84375 141.007812 400.414062 141.007812 400.414062 139.386719 C 400.414062 137.765625 402.84375 137.765625 402.84375 139.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.144531 242.675781 C 249.144531 244.296875 246.714844 244.296875 246.714844 242.675781 C 246.714844 241.058594 249.144531 241.058594 249.144531 242.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.550781 418.691406 L 238.1875 415.855469 L 234.914062 415.855469 Z M 236.550781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.644531 125.859375 C 242.644531 127.476562 240.214844 127.476562 240.214844 125.859375 C 240.214844 124.238281 242.644531 124.238281 242.644531 125.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.300781 262.511719 C 280.300781 264.132812 277.871094 264.132812 277.871094 262.511719 C 277.871094 260.890625 280.300781 260.890625 280.300781 262.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.507812 276.324219 C 280.507812 277.945312 278.074219 277.945312 278.074219 276.324219 C 278.074219 274.703125 280.507812 274.703125 280.507812 276.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.125 272.152344 C 163.125 273.769531 160.695312 273.769531 160.695312 272.152344 C 160.695312 270.53125 163.125 270.53125 163.125 272.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.921875 296.453125 C 148.921875 298.074219 146.492188 298.074219 146.492188 296.453125 C 146.492188 294.835938 148.921875 294.835938 148.921875 296.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.296875 70.910156 L 234.933594 73.746094 L 231.660156 73.746094 Z M 233.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.320312 260.671875 C 296.320312 262.292969 293.886719 262.292969 293.886719 260.671875 C 293.886719 259.050781 296.320312 259.050781 296.320312 260.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.472656 260.460938 C 264.472656 262.082031 262.042969 262.082031 262.042969 260.460938 C 262.042969 258.839844 264.472656 258.839844 264.472656 260.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.316406 196.726562 C 155.316406 198.34375 152.886719 198.34375 152.886719 196.726562 C 152.886719 195.105469 155.316406 195.105469 155.316406 196.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.410156 240.851562 C 319.410156 242.472656 316.980469 242.472656 316.980469 240.851562 C 316.980469 239.230469 319.410156 239.230469 319.410156 240.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.605469 249.742188 C 274.605469 251.359375 272.171875 251.359375 272.171875 249.742188 C 272.171875 248.121094 274.605469 248.121094 274.605469 249.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.28125 307.097656 C 269.28125 308.71875 266.851562 308.71875 266.851562 307.097656 C 266.851562 305.476562 269.28125 305.476562 269.28125 307.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.335938 70.910156 L 151.972656 73.746094 L 148.699219 73.746094 Z M 150.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.289062 250.699219 C 178.289062 252.320312 175.859375 252.320312 175.859375 250.699219 C 175.859375 249.078125 178.289062 249.078125 178.289062 250.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.308594 285.386719 C 281.308594 287.007812 278.878906 287.007812 278.878906 285.386719 C 278.878906 283.765625 281.308594 283.765625 281.308594 285.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.417969 70.910156 L 266.054688 73.746094 L 262.78125 73.746094 Z M 264.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.417969 344.546875 C 272.417969 346.167969 269.988281 346.167969 269.988281 344.546875 C 269.988281 342.925781 272.417969 342.925781 272.417969 344.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.195312 236.046875 C 276.195312 237.667969 273.765625 237.667969 273.765625 236.046875 C 273.765625 234.425781 276.195312 234.425781 276.195312 236.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.613281 278.335938 C 268.613281 279.953125 266.183594 279.953125 266.183594 278.335938 C 266.183594 276.714844 268.613281 276.714844 268.613281 278.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.683594 99.859375 C 295.683594 101.480469 293.253906 101.480469 293.253906 99.859375 C 293.253906 98.238281 295.683594 98.238281 295.683594 99.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.6875 175.34375 C 287.6875 176.964844 285.253906 176.964844 285.253906 175.34375 C 285.253906 173.726562 287.6875 173.726562 287.6875 175.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216 96.398438 C 216 98.015625 213.570312 98.015625 213.570312 96.398438 C 213.570312 94.777344 216 94.777344 216 96.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.621094 289.601562 C 233.621094 291.222656 231.1875 291.222656 231.1875 289.601562 C 231.1875 287.980469 233.621094 287.980469 233.621094 289.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.273438 240.964844 C 239.273438 242.585938 236.84375 242.585938 236.84375 240.964844 C 236.84375 239.347656 239.273438 239.347656 239.273438 240.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 363.75 302.691406 C 363.75 304.3125 361.320312 304.3125 361.320312 302.691406 C 361.320312 301.074219 363.75 301.074219 363.75 302.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.355469 222.265625 C 217.355469 223.886719 214.925781 223.886719 214.925781 222.265625 C 214.925781 220.648438 217.355469 220.648438 217.355469 222.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.375 218.0625 C 189.375 219.683594 186.945312 219.683594 186.945312 218.0625 C 186.945312 216.445312 189.375 216.445312 189.375 218.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.0625 174.640625 C 287.0625 176.261719 284.628906 176.261719 284.628906 174.640625 C 284.628906 173.019531 287.0625 173.019531 287.0625 174.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235 70.910156 L 236.636719 73.746094 L 233.363281 73.746094 Z M 235 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.53125 348.097656 C 279.53125 349.71875 277.101562 349.71875 277.101562 348.097656 C 277.101562 346.480469 279.53125 346.480469 279.53125 348.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.222656 418.691406 L 166.859375 415.855469 L 163.585938 415.855469 Z M 165.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.726562 383.542969 C 286.726562 385.164062 284.292969 385.164062 284.292969 383.542969 C 284.292969 381.921875 286.726562 381.921875 286.726562 383.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.371094 70.910156 L 153.007812 73.746094 L 149.734375 73.746094 Z M 151.371094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.074219 321.367188 C 249.074219 322.984375 246.644531 322.984375 246.644531 321.367188 C 246.644531 319.746094 249.074219 319.746094 249.074219 321.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.195312 100.667969 C 150.195312 102.285156 147.761719 102.285156 147.761719 100.667969 C 147.761719 99.046875 150.195312 99.046875 150.195312 100.667969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 243.132812 70.910156 L 244.769531 73.746094 L 241.5 73.746094 Z M 243.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.613281 250.347656 C 246.613281 251.964844 244.183594 251.964844 244.183594 250.347656 C 244.183594 248.726562 246.613281 248.726562 246.613281 250.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.253906 277.953125 C 195.253906 279.574219 192.824219 279.574219 192.824219 277.953125 C 192.824219 276.335938 195.253906 276.335938 195.253906 277.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.96875 70.910156 L 194.605469 73.746094 L 191.332031 73.746094 Z M 192.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.070312 288.273438 C 293.070312 289.894531 290.640625 289.894531 290.640625 288.273438 C 290.640625 286.652344 293.070312 286.652344 293.070312 288.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.167969 70.910156 L 256.804688 73.746094 L 253.53125 73.746094 Z M 255.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.859375 248.300781 C 251.859375 249.921875 249.429688 249.921875 249.429688 248.300781 C 249.429688 246.679688 251.859375 246.679688 251.859375 248.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.089844 76.417969 C 225.089844 78.035156 222.660156 78.035156 222.660156 76.417969 C 222.660156 74.796875 225.089844 74.796875 225.089844 76.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.105469 233.957031 C 301.105469 235.578125 298.675781 235.578125 298.675781 233.957031 C 298.675781 232.335938 301.105469 232.335938 301.105469 233.957031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.324219 248.183594 C 304.324219 249.804688 301.894531 249.804688 301.894531 248.183594 C 301.894531 246.566406 304.324219 246.566406 304.324219 248.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.550781 180.4375 C 226.550781 182.058594 224.121094 182.058594 224.121094 180.4375 C 224.121094 178.816406 226.550781 178.816406 226.550781 180.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.980469 304.441406 C 243.980469 306.0625 241.550781 306.0625 241.550781 304.441406 C 241.550781 302.820312 243.980469 302.820312 243.980469 304.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.03125 70.910156 L 281.667969 73.746094 L 278.394531 73.746094 Z M 280.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.871094 301.804688 C 257.871094 303.421875 255.441406 303.421875 255.441406 301.804688 C 255.441406 300.183594 257.871094 300.183594 257.871094 301.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.953125 274.292969 C 331.953125 275.914062 329.523438 275.914062 329.523438 274.292969 C 329.523438 272.675781 331.953125 272.675781 331.953125 274.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.988281 208.15625 C 321.988281 209.777344 319.558594 209.777344 319.558594 208.15625 C 319.558594 206.535156 321.988281 206.535156 321.988281 208.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.898438 236.667969 C 260.898438 238.289062 258.464844 238.289062 258.464844 236.667969 C 258.464844 235.046875 260.898438 235.046875 260.898438 236.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.414062 186.304688 C 283.414062 187.925781 280.984375 187.925781 280.984375 186.304688 C 280.984375 184.6875 283.414062 184.6875 283.414062 186.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.902344 230.320312 C 260.902344 231.941406 258.46875 231.941406 258.46875 230.320312 C 258.46875 228.699219 260.902344 228.699219 260.902344 230.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.597656 70.910156 L 145.234375 73.746094 L 141.960938 73.746094 Z M 143.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.148438 255.859375 C 221.148438 257.480469 218.71875 257.480469 218.71875 255.859375 C 218.71875 254.238281 221.148438 254.238281 221.148438 255.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.246094 242.039062 C 295.246094 243.660156 292.816406 243.660156 292.816406 242.039062 C 292.816406 240.417969 295.246094 240.417969 295.246094 242.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.132812 176.695312 C 260.132812 178.316406 257.703125 178.316406 257.703125 176.695312 C 257.703125 175.074219 260.132812 175.074219 260.132812 176.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.59375 70.910156 L 300.230469 73.746094 L 296.957031 73.746094 Z M 298.59375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.183594 70.910156 L 328.820312 73.746094 L 325.546875 73.746094 Z M 327.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.371094 347.59375 C 275.371094 349.214844 272.941406 349.214844 272.941406 347.59375 C 272.941406 345.976562 275.371094 345.976562 275.371094 347.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.328125 219.542969 C 202.328125 221.164062 199.898438 221.164062 199.898438 219.542969 C 199.898438 217.921875 202.328125 217.921875 202.328125 219.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 355.84375 249.738281 C 355.84375 251.359375 353.414062 251.359375 353.414062 249.738281 C 353.414062 248.121094 355.84375 248.121094 355.84375 249.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.679688 113.222656 C 265.679688 114.839844 263.25 114.839844 263.25 113.222656 C 263.25 111.601562 265.679688 111.601562 265.679688 113.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.367188 273.945312 C 266.367188 275.566406 263.9375 275.566406 263.9375 273.945312 C 263.9375 272.328125 266.367188 272.328125 266.367188 273.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.449219 280.746094 C 239.449219 282.363281 237.019531 282.363281 237.019531 280.746094 C 237.019531 279.125 239.449219 279.125 239.449219 280.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.785156 192.953125 C 278.785156 194.574219 276.355469 194.574219 276.355469 192.953125 C 276.355469 191.335938 278.785156 191.335938 278.785156 192.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.625 89.574219 C 223.625 91.195312 221.195312 91.195312 221.195312 89.574219 C 221.195312 87.957031 223.625 87.957031 223.625 89.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.164062 256.5625 C 274.164062 258.183594 271.734375 258.183594 271.734375 256.5625 C 271.734375 254.941406 274.164062 254.941406 274.164062 256.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.414062 122.527344 C 118.414062 124.148438 115.984375 124.148438 115.984375 122.527344 C 115.984375 120.90625 118.414062 120.90625 118.414062 122.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.542969 309.703125 C 304.542969 311.324219 302.113281 311.324219 302.113281 309.703125 C 302.113281 308.085938 304.542969 308.085938 304.542969 309.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.230469 404.132812 C 256.230469 405.753906 253.800781 405.753906 253.800781 404.132812 C 253.800781 402.511719 256.230469 402.511719 256.230469 404.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.929688 325.125 C 303.929688 326.746094 301.5 326.746094 301.5 325.125 C 301.5 323.503906 303.929688 323.503906 303.929688 325.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.832031 312.855469 C 122.832031 314.476562 120.402344 314.476562 120.402344 312.855469 C 120.402344 311.234375 122.832031 311.234375 122.832031 312.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.53125 222.039062 C 217.53125 223.660156 215.101562 223.660156 215.101562 222.039062 C 215.101562 220.421875 217.53125 220.421875 217.53125 222.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.589844 210.902344 C 273.589844 212.519531 271.160156 212.519531 271.160156 210.902344 C 271.160156 209.28125 273.589844 209.28125 273.589844 210.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.832031 261.523438 C 151.832031 263.140625 149.402344 263.140625 149.402344 261.523438 C 149.402344 259.902344 151.832031 259.902344 151.832031 261.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.578125 106.988281 C 238.578125 108.605469 236.148438 108.605469 236.148438 106.988281 C 236.148438 105.367188 238.578125 105.367188 238.578125 106.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.320312 179.332031 C 257.320312 180.953125 254.890625 180.953125 254.890625 179.332031 C 254.890625 177.714844 257.320312 177.714844 257.320312 179.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.945312 237.90625 C 332.945312 239.527344 330.511719 239.527344 330.511719 237.90625 C 330.511719 236.285156 332.945312 236.285156 332.945312 237.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.246094 182.542969 C 243.246094 184.160156 240.816406 184.160156 240.816406 182.542969 C 240.816406 180.921875 243.246094 180.921875 243.246094 182.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.050781 401.949219 C 311.050781 403.570312 308.617188 403.570312 308.617188 401.949219 C 308.617188 400.328125 311.050781 400.328125 311.050781 401.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.042969 137.730469 C 220.042969 139.347656 217.613281 139.347656 217.613281 137.730469 C 217.613281 136.109375 220.042969 136.109375 220.042969 137.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.410156 244.921875 C 306.410156 246.539062 303.980469 246.539062 303.980469 244.921875 C 303.980469 243.300781 306.410156 243.300781 306.410156 244.921875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.101562 70.910156 L 239.738281 73.746094 L 236.464844 73.746094 Z M 238.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.574219 285.726562 C 327.574219 287.347656 325.144531 287.347656 325.144531 285.726562 C 325.144531 284.109375 327.574219 284.109375 327.574219 285.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.550781 188.542969 C 337.550781 190.160156 335.121094 190.160156 335.121094 188.542969 C 335.121094 186.921875 337.550781 186.921875 337.550781 188.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.210938 418.691406 L 124.847656 415.855469 L 121.574219 415.855469 Z M 123.210938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.953125 418.691406 L 167.589844 415.855469 L 164.316406 415.855469 Z M 165.953125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.386719 146.019531 C 266.386719 147.636719 263.957031 147.636719 263.957031 146.019531 C 263.957031 144.398438 266.386719 144.398438 266.386719 146.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.894531 270.992188 C 235.894531 272.613281 233.464844 272.613281 233.464844 270.992188 C 233.464844 269.375 235.894531 269.375 235.894531 270.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.308594 124.726562 C 165.308594 126.34375 162.878906 126.34375 162.878906 124.726562 C 162.878906 123.105469 165.308594 123.105469 165.308594 124.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.292969 70.910156 L 133.929688 73.746094 L 130.65625 73.746094 Z M 132.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.648438 80.476562 C 273.648438 82.097656 271.21875 82.097656 271.21875 80.476562 C 271.21875 78.859375 273.648438 78.859375 273.648438 80.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.757812 153.277344 C 252.757812 154.898438 250.328125 154.898438 250.328125 153.277344 C 250.328125 151.660156 252.757812 151.660156 252.757812 153.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.207031 88.160156 C 194.207031 89.777344 191.777344 89.777344 191.777344 88.160156 C 191.777344 86.539062 194.207031 86.539062 194.207031 88.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.839844 133.15625 C 208.839844 134.777344 206.410156 134.777344 206.410156 133.15625 C 206.410156 131.539062 208.839844 131.539062 208.839844 133.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313 220.363281 C 313 221.984375 310.570312 221.984375 310.570312 220.363281 C 310.570312 218.742188 313 218.742188 313 220.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.390625 277.035156 C 277.390625 278.652344 274.960938 278.652344 274.960938 277.035156 C 274.960938 275.414062 277.390625 275.414062 277.390625 277.035156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237 70.910156 L 238.636719 73.746094 L 235.363281 73.746094 Z M 237 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.699219 70.910156 L 205.332031 73.746094 L 202.0625 73.746094 Z M 203.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.539062 179.980469 C 161.539062 181.601562 159.109375 181.601562 159.109375 179.980469 C 159.109375 178.363281 161.539062 178.363281 161.539062 179.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.25 70.910156 L 174.886719 73.746094 L 171.613281 73.746094 Z M 173.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.871094 278.417969 C 227.871094 280.039062 225.441406 280.039062 225.441406 278.417969 C 225.441406 276.800781 227.871094 276.800781 227.871094 278.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.089844 388.5625 C 290.089844 390.183594 287.660156 390.183594 287.660156 388.5625 C 287.660156 386.941406 290.089844 386.941406 290.089844 388.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.140625 354.363281 C 310.140625 355.980469 307.710938 355.980469 307.710938 354.363281 C 307.710938 352.742188 310.140625 352.742188 310.140625 354.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.910156 358.523438 C 232.910156 360.144531 230.480469 360.144531 230.480469 358.523438 C 230.480469 356.90625 232.910156 356.90625 232.910156 358.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.746094 70.910156 L 222.382812 73.746094 L 219.109375 73.746094 Z M 220.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.464844 256.664062 C 156.464844 258.28125 154.035156 258.28125 154.035156 256.664062 C 154.035156 255.042969 156.464844 255.042969 156.464844 256.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.285156 259.667969 C 331.285156 261.289062 328.855469 261.289062 328.855469 259.667969 C 328.855469 258.050781 331.285156 258.050781 331.285156 259.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.269531 248.855469 C 202.269531 250.476562 199.835938 250.476562 199.835938 248.855469 C 199.835938 247.238281 202.269531 247.238281 202.269531 248.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.105469 418.691406 L 259.742188 415.855469 L 256.46875 415.855469 Z M 258.105469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.574219 101.40625 C 174.574219 103.027344 172.140625 103.027344 172.140625 101.40625 C 172.140625 99.789062 174.574219 99.789062 174.574219 101.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 291.738281 70.910156 L 293.375 73.746094 L 290.101562 73.746094 Z M 291.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.652344 280.222656 C 269.652344 281.839844 267.222656 281.839844 267.222656 280.222656 C 267.222656 278.601562 269.652344 278.601562 269.652344 280.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.765625 378.023438 C 220.765625 379.644531 218.335938 379.644531 218.335938 378.023438 C 218.335938 376.402344 220.765625 376.402344 220.765625 378.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.113281 70.910156 L 119.75 73.746094 L 116.476562 73.746094 Z M 118.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.980469 296.152344 C 266.980469 297.769531 264.550781 297.769531 264.550781 296.152344 C 264.550781 294.53125 266.980469 294.53125 266.980469 296.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.035156 253.800781 C 178.035156 255.417969 175.605469 255.417969 175.605469 253.800781 C 175.605469 252.179688 178.035156 252.179688 178.035156 253.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.636719 196.332031 C 197.636719 197.949219 195.207031 197.949219 195.207031 196.332031 C 195.207031 194.710938 197.636719 194.710938 197.636719 196.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.671875 150.769531 C 302.671875 152.390625 300.242188 152.390625 300.242188 150.769531 C 300.242188 149.152344 302.671875 149.152344 302.671875 150.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.234375 70.910156 L 205.871094 73.746094 L 202.597656 73.746094 Z M 204.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.386719 70.910156 L 249.023438 73.746094 L 245.75 73.746094 Z M 247.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.808594 347.824219 C 277.808594 349.441406 275.378906 349.441406 275.378906 347.824219 C 275.378906 346.203125 277.808594 346.203125 277.808594 347.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.246094 70.910156 L 148.882812 73.746094 L 145.609375 73.746094 Z M 147.246094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.214844 205.171875 C 267.214844 206.792969 264.785156 206.792969 264.785156 205.171875 C 264.785156 203.550781 267.214844 203.550781 267.214844 205.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.664062 70.910156 L 216.300781 73.746094 L 213.027344 73.746094 Z M 214.664062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.550781 70.910156 L 228.1875 73.746094 L 224.914062 73.746094 Z M 226.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.191406 70.910156 L 196.828125 73.746094 L 193.554688 73.746094 Z M 195.191406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.898438 253.222656 C 247.898438 254.84375 245.46875 254.84375 245.46875 253.222656 C 245.46875 251.601562 247.898438 251.601562 247.898438 253.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.371094 280.574219 C 234.371094 282.195312 231.941406 282.195312 231.941406 280.574219 C 231.941406 278.957031 234.371094 278.957031 234.371094 280.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.679688 268.621094 C 199.679688 270.242188 197.25 270.242188 197.25 268.621094 C 197.25 267.003906 199.679688 267.003906 199.679688 268.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.265625 226.832031 C 286.265625 228.449219 283.835938 228.449219 283.835938 226.832031 C 283.835938 225.210938 286.265625 225.210938 286.265625 226.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.742188 292.183594 C 246.742188 293.800781 244.3125 293.800781 244.3125 292.183594 C 244.3125 290.5625 246.742188 290.5625 246.742188 292.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.070312 238.457031 C 248.070312 240.074219 245.640625 240.074219 245.640625 238.457031 C 245.640625 236.835938 248.070312 236.835938 248.070312 238.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.230469 70.910156 L 168.867188 73.746094 L 165.59375 73.746094 Z M 167.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.789062 145.539062 C 256.789062 147.160156 254.355469 147.160156 254.355469 145.539062 C 254.355469 143.917969 256.789062 143.917969 256.789062 145.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.851562 87.3125 C 123.851562 88.929688 121.421875 88.929688 121.421875 87.3125 C 121.421875 85.691406 123.851562 85.691406 123.851562 87.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.703125 197.628906 C 215.703125 199.246094 213.273438 199.246094 213.273438 197.628906 C 213.273438 196.007812 215.703125 196.007812 215.703125 197.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.992188 256.75 C 282.992188 258.367188 280.558594 258.367188 280.558594 256.75 C 280.558594 255.128906 282.992188 255.128906 282.992188 256.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.589844 70.910156 L 238.226562 73.746094 L 234.953125 73.746094 Z M 236.589844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.558594 70.910156 L 190.191406 73.746094 L 186.921875 73.746094 Z M 188.558594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.210938 70.910156 L 223.847656 73.746094 L 220.574219 73.746094 Z M 222.210938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.320312 193.296875 C 285.320312 194.917969 282.890625 194.917969 282.890625 193.296875 C 282.890625 191.679688 285.320312 191.679688 285.320312 193.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.324219 302.320312 C 227.324219 303.9375 224.894531 303.9375 224.894531 302.320312 C 224.894531 300.699219 227.324219 300.699219 227.324219 302.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.882812 288.636719 C 304.882812 290.257812 302.453125 290.257812 302.453125 288.636719 C 302.453125 287.019531 304.882812 287.019531 304.882812 288.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.242188 70.910156 L 220.878906 73.746094 L 217.609375 73.746094 Z M 219.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.820312 286.089844 C 330.820312 287.710938 328.390625 287.710938 328.390625 286.089844 C 328.390625 284.46875 330.820312 284.46875 330.820312 286.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.515625 110.523438 C 319.515625 112.144531 317.085938 112.144531 317.085938 110.523438 C 317.085938 108.90625 319.515625 108.90625 319.515625 110.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.667969 70.910156 L 200.304688 73.746094 L 197.035156 73.746094 Z M 198.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.492188 97.164062 C 216.492188 98.785156 214.0625 98.785156 214.0625 97.164062 C 214.0625 95.542969 216.492188 95.542969 216.492188 97.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.308594 70.910156 L 226.945312 73.746094 L 223.671875 73.746094 Z M 225.308594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.738281 70.910156 L 191.375 73.746094 L 188.101562 73.746094 Z M 189.738281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.3125 70.910156 L 203.949219 73.746094 L 200.675781 73.746094 Z M 202.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.03125 70.910156 L 289.667969 73.746094 L 286.394531 73.746094 Z M 288.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.3125 168.648438 C 270.3125 170.269531 267.882812 170.269531 267.882812 168.648438 C 267.882812 167.03125 270.3125 167.03125 270.3125 168.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.011719 70.910156 L 184.648438 73.746094 L 181.375 73.746094 Z M 183.011719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.484375 70.910156 L 241.121094 73.746094 L 237.847656 73.746094 Z M 239.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.804688 236.148438 C 240.804688 237.769531 238.375 237.769531 238.375 236.148438 C 238.375 234.527344 240.804688 234.527344 240.804688 236.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.035156 70.910156 L 170.671875 73.746094 L 167.398438 73.746094 Z M 169.035156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.40625 202.308594 C 251.40625 203.929688 248.976562 203.929688 248.976562 202.308594 C 248.976562 200.6875 251.40625 200.6875 251.40625 202.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.132812 149.59375 C 254.132812 151.214844 251.703125 151.214844 251.703125 149.59375 C 251.703125 147.976562 254.132812 147.976562 254.132812 149.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.824219 372.429688 C 217.824219 374.046875 215.394531 374.046875 215.394531 372.429688 C 215.394531 370.808594 217.824219 370.808594 217.824219 372.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.128906 324.8125 C 216.128906 326.433594 213.699219 326.433594 213.699219 324.8125 C 213.699219 323.191406 216.128906 323.191406 216.128906 324.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.394531 70.910156 L 252.03125 73.746094 L 248.757812 73.746094 Z M 250.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.605469 219.96875 C 301.605469 221.589844 299.175781 221.589844 299.175781 219.96875 C 299.175781 218.347656 301.605469 218.347656 301.605469 219.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.171875 246.519531 C 217.171875 248.140625 214.742188 248.140625 214.742188 246.519531 C 214.742188 244.898438 217.171875 244.898438 217.171875 246.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.519531 276.195312 C 205.519531 277.816406 203.089844 277.816406 203.089844 276.195312 C 203.089844 274.578125 205.519531 274.578125 205.519531 276.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.082031 293.949219 C 269.082031 295.570312 266.652344 295.570312 266.652344 293.949219 C 266.652344 292.328125 269.082031 292.328125 269.082031 293.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.296875 288.339844 C 308.296875 289.960938 305.867188 289.960938 305.867188 288.339844 C 305.867188 286.722656 308.296875 286.722656 308.296875 288.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.726562 170.472656 C 272.726562 172.09375 270.296875 172.09375 270.296875 170.472656 C 270.296875 168.855469 272.726562 168.855469 272.726562 170.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.832031 220.699219 C 186.832031 222.320312 184.402344 222.320312 184.402344 220.699219 C 184.402344 219.078125 186.832031 219.078125 186.832031 220.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.730469 162.492188 C 289.730469 164.113281 287.300781 164.113281 287.300781 162.492188 C 287.300781 160.875 289.730469 160.875 289.730469 162.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.484375 140 C 221.484375 141.621094 219.054688 141.621094 219.054688 140 C 219.054688 138.378906 221.484375 138.378906 221.484375 140 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.679688 175.175781 C 153.679688 176.796875 151.25 176.796875 151.25 175.175781 C 151.25 173.558594 153.679688 173.558594 153.679688 175.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.535156 195.378906 C 251.535156 196.996094 249.105469 196.996094 249.105469 195.378906 C 249.105469 193.757812 251.535156 193.757812 251.535156 195.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.515625 364.324219 C 333.515625 365.941406 331.085938 365.941406 331.085938 364.324219 C 331.085938 362.703125 333.515625 362.703125 333.515625 364.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.863281 159.15625 C 192.863281 160.777344 190.433594 160.777344 190.433594 159.15625 C 190.433594 157.535156 192.863281 157.535156 192.863281 159.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.113281 279.039062 C 258.113281 280.65625 255.683594 280.65625 255.683594 279.039062 C 255.683594 277.417969 258.113281 277.417969 258.113281 279.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.964844 116.058594 C 239.964844 117.679688 237.535156 117.679688 237.535156 116.058594 C 237.535156 114.441406 239.964844 114.441406 239.964844 116.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.535156 210.714844 C 272.535156 212.335938 270.105469 212.335938 270.105469 210.714844 C 270.105469 209.097656 272.535156 209.097656 272.535156 210.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.148438 85.597656 C 163.148438 87.21875 160.71875 87.21875 160.71875 85.597656 C 160.71875 83.980469 163.148438 83.980469 163.148438 85.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.289062 210.4375 C 285.289062 212.058594 282.859375 212.058594 282.859375 210.4375 C 282.859375 208.816406 285.289062 208.816406 285.289062 210.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.117188 89.75 C 258.117188 91.371094 255.6875 91.371094 255.6875 89.75 C 255.6875 88.128906 258.117188 88.128906 258.117188 89.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.773438 239.453125 C 311.773438 241.074219 309.34375 241.074219 309.34375 239.453125 C 309.34375 237.832031 311.773438 237.832031 311.773438 239.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.515625 243 C 288.515625 244.621094 286.085938 244.621094 286.085938 243 C 286.085938 241.378906 288.515625 241.378906 288.515625 243 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.785156 276.359375 C 270.785156 277.980469 268.355469 277.980469 268.355469 276.359375 C 268.355469 274.742188 270.785156 274.742188 270.785156 276.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.171875 346.878906 C 276.171875 348.5 273.742188 348.5 273.742188 346.878906 C 273.742188 345.257812 276.171875 345.257812 276.171875 346.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.164062 273.554688 C 275.164062 275.175781 272.730469 275.175781 272.730469 273.554688 C 272.730469 271.933594 275.164062 271.933594 275.164062 273.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.902344 264.339844 C 270.902344 265.957031 268.472656 265.957031 268.472656 264.339844 C 268.472656 262.71875 270.902344 262.71875 270.902344 264.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.160156 252.324219 C 241.160156 253.945312 238.730469 253.945312 238.730469 252.324219 C 238.730469 250.707031 241.160156 250.707031 241.160156 252.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.949219 418.691406 L 328.585938 415.855469 L 325.3125 415.855469 Z M 326.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.382812 330.613281 C 297.382812 332.230469 294.953125 332.230469 294.953125 330.613281 C 294.953125 328.992188 297.382812 328.992188 297.382812 330.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.84375 70.910156 L 169.480469 73.746094 L 166.207031 73.746094 Z M 167.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.898438 265.929688 C 314.898438 267.550781 312.464844 267.550781 312.464844 265.929688 C 312.464844 264.3125 314.898438 264.3125 314.898438 265.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.5 263.257812 C 246.5 264.878906 244.070312 264.878906 244.070312 263.257812 C 244.070312 261.636719 246.5 261.636719 246.5 263.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.3125 418.691406 L 349.949219 415.855469 L 346.675781 415.855469 Z M 348.3125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.269531 234.355469 C 154.269531 235.976562 151.835938 235.976562 151.835938 234.355469 C 151.835938 232.738281 154.269531 232.738281 154.269531 234.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.738281 186.332031 C 265.738281 187.949219 263.308594 187.949219 263.308594 186.332031 C 263.308594 184.710938 265.738281 184.710938 265.738281 186.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.128906 288.105469 C 330.128906 289.726562 327.699219 289.726562 327.699219 288.105469 C 327.699219 286.488281 330.128906 286.488281 330.128906 288.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.675781 258.027344 C 267.675781 259.648438 265.246094 259.648438 265.246094 258.027344 C 265.246094 256.40625 267.675781 256.40625 267.675781 258.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.972656 165.335938 C 221.972656 166.957031 219.542969 166.957031 219.542969 165.335938 C 219.542969 163.714844 221.972656 163.714844 221.972656 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.507812 257.667969 C 297.507812 259.289062 295.078125 259.289062 295.078125 257.667969 C 295.078125 256.046875 297.507812 256.046875 297.507812 257.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.148438 123.953125 C 294.148438 125.570312 291.71875 125.570312 291.71875 123.953125 C 291.71875 122.332031 294.148438 122.332031 294.148438 123.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.425781 223.9375 C 238.425781 225.558594 235.996094 225.558594 235.996094 223.9375 C 235.996094 222.316406 238.425781 222.316406 238.425781 223.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.71875 70.910156 L 233.355469 73.746094 L 230.082031 73.746094 Z M 231.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.484375 252.382812 C 279.484375 254.003906 277.054688 254.003906 277.054688 252.382812 C 277.054688 250.765625 279.484375 250.765625 279.484375 252.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.535156 237.449219 C 273.535156 239.070312 271.105469 239.070312 271.105469 237.449219 C 271.105469 235.832031 273.535156 235.832031 273.535156 237.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.792969 270.789062 C 196.792969 272.40625 194.363281 272.40625 194.363281 270.789062 C 194.363281 269.167969 196.792969 269.167969 196.792969 270.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.015625 301.703125 C 238.015625 303.324219 235.585938 303.324219 235.585938 301.703125 C 235.585938 300.082031 238.015625 300.082031 238.015625 301.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.867188 365.171875 C 266.867188 366.792969 264.4375 366.792969 264.4375 365.171875 C 264.4375 363.554688 266.867188 363.554688 266.867188 365.171875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.636719 418.691406 L 212.273438 415.855469 L 209 415.855469 Z M 210.636719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.691406 256.894531 C 249.691406 258.511719 247.261719 258.511719 247.261719 256.894531 C 247.261719 255.273438 249.691406 255.273438 249.691406 256.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.03125 70.910156 L 165.664062 73.746094 L 162.394531 73.746094 Z M 164.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.417969 317.425781 C 304.417969 319.046875 301.988281 319.046875 301.988281 317.425781 C 301.988281 315.808594 304.417969 315.808594 304.417969 317.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.652344 259.457031 C 293.652344 261.078125 291.222656 261.078125 291.222656 259.457031 C 291.222656 257.835938 293.652344 257.835938 293.652344 259.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.890625 305.808594 C 279.890625 307.429688 277.460938 307.429688 277.460938 305.808594 C 277.460938 304.191406 279.890625 304.191406 279.890625 305.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.679688 265.050781 C 260.679688 266.667969 258.25 266.667969 258.25 265.050781 C 258.25 263.429688 260.679688 263.429688 260.679688 265.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.691406 232.355469 C 274.691406 233.976562 272.261719 233.976562 272.261719 232.355469 C 272.261719 230.734375 274.691406 230.734375 274.691406 232.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.800781 70.910156 L 249.4375 73.746094 L 246.167969 73.746094 Z M 247.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.90625 86.671875 C 226.90625 88.292969 224.476562 88.292969 224.476562 86.671875 C 224.476562 85.050781 226.90625 85.050781 226.90625 86.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.308594 295.539062 C 317.308594 297.160156 314.878906 297.160156 314.878906 295.539062 C 314.878906 293.917969 317.308594 293.917969 317.308594 295.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.222656 271.195312 C 301.222656 272.816406 298.792969 272.816406 298.792969 271.195312 C 298.792969 269.574219 301.222656 269.574219 301.222656 271.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 334.105469 370.714844 C 334.105469 372.335938 331.675781 372.335938 331.675781 370.714844 C 331.675781 369.097656 334.105469 369.097656 334.105469 370.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.574219 269.652344 C 166.574219 271.269531 164.144531 271.269531 164.144531 269.652344 C 164.144531 268.03125 166.574219 268.03125 166.574219 269.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.429688 188.859375 C 279.429688 190.476562 277 190.476562 277 188.859375 C 277 187.238281 279.429688 187.238281 279.429688 188.859375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.953125 70.910156 L 229.589844 73.746094 L 226.316406 73.746094 Z M 227.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.675781 286.519531 C 264.675781 288.140625 262.246094 288.140625 262.246094 286.519531 C 262.246094 284.898438 264.675781 284.898438 264.675781 286.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.976562 122.859375 C 232.976562 124.480469 230.546875 124.480469 230.546875 122.859375 C 230.546875 121.242188 232.976562 121.242188 232.976562 122.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.902344 212.90625 C 280.902344 214.527344 278.472656 214.527344 278.472656 212.90625 C 278.472656 211.285156 280.902344 211.285156 280.902344 212.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.71875 70.910156 L 128.355469 73.746094 L 125.085938 73.746094 Z M 126.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.71875 237.855469 C 274.71875 239.476562 272.289062 239.476562 272.289062 237.855469 C 272.289062 236.234375 274.71875 236.234375 274.71875 237.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.484375 387.472656 C 271.484375 389.09375 269.054688 389.09375 269.054688 387.472656 C 269.054688 385.851562 271.484375 385.851562 271.484375 387.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.960938 180.347656 C 211.960938 181.964844 209.53125 181.964844 209.53125 180.347656 C 209.53125 178.726562 211.960938 178.726562 211.960938 180.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.554688 347.542969 C 167.554688 349.164062 165.125 349.164062 165.125 347.542969 C 165.125 345.925781 167.554688 345.925781 167.554688 347.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.824219 265.609375 C 330.824219 267.226562 328.394531 267.226562 328.394531 265.609375 C 328.394531 263.988281 330.824219 263.988281 330.824219 265.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.550781 185.191406 C 202.550781 186.8125 200.121094 186.8125 200.121094 185.191406 C 200.121094 183.574219 202.550781 183.574219 202.550781 185.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.332031 178.789062 C 239.332031 180.410156 236.902344 180.410156 236.902344 178.789062 C 236.902344 177.171875 239.332031 177.171875 239.332031 178.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.683594 266.515625 C 268.683594 268.136719 266.253906 268.136719 266.253906 266.515625 C 266.253906 264.898438 268.683594 264.898438 268.683594 266.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.640625 70.910156 L 277.277344 73.746094 L 274.003906 73.746094 Z M 275.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.554688 265.824219 C 211.554688 267.445312 209.125 267.445312 209.125 265.824219 C 209.125 264.207031 211.554688 264.207031 211.554688 265.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.351562 236.234375 C 271.351562 237.855469 268.921875 237.855469 268.921875 236.234375 C 268.921875 234.617188 271.351562 234.617188 271.351562 236.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.894531 215.027344 C 258.894531 216.648438 256.464844 216.648438 256.464844 215.027344 C 256.464844 213.40625 258.894531 213.40625 258.894531 215.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.984375 278.183594 C 279.984375 279.804688 277.554688 279.804688 277.554688 278.183594 C 277.554688 276.566406 279.984375 276.566406 279.984375 278.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.269531 70.910156 L 265.90625 73.746094 L 262.632812 73.746094 Z M 264.269531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.109375 242.59375 C 324.109375 244.210938 321.679688 244.210938 321.679688 242.59375 C 321.679688 240.972656 324.109375 240.972656 324.109375 242.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.34375 298.101562 C 205.34375 299.722656 202.914062 299.722656 202.914062 298.101562 C 202.914062 296.480469 205.34375 296.480469 205.34375 298.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.332031 70.910156 L 235.96875 73.746094 L 232.695312 73.746094 Z M 234.332031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.71875 137.371094 C 284.71875 138.992188 282.289062 138.992188 282.289062 137.371094 C 282.289062 135.75 284.71875 135.75 284.71875 137.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.46875 238.628906 C 283.46875 240.25 281.039062 240.25 281.039062 238.628906 C 281.039062 237.007812 283.46875 237.007812 283.46875 238.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.480469 125.550781 C 224.480469 127.171875 222.050781 127.171875 222.050781 125.550781 C 222.050781 123.929688 224.480469 123.929688 224.480469 125.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.867188 308.28125 C 278.867188 309.902344 276.4375 309.902344 276.4375 308.28125 C 276.4375 306.660156 278.867188 306.660156 278.867188 308.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.71875 70.910156 L 266.355469 73.746094 L 263.082031 73.746094 Z M 264.71875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.042969 418.691406 L 192.679688 415.855469 L 189.410156 415.855469 Z M 191.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.777344 161.046875 C 248.777344 162.667969 246.347656 162.667969 246.347656 161.046875 C 246.347656 159.425781 248.777344 159.425781 248.777344 161.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.191406 302.128906 C 282.191406 303.746094 279.757812 303.746094 279.757812 302.128906 C 279.757812 300.507812 282.191406 300.507812 282.191406 302.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.078125 175.777344 C 246.078125 177.398438 243.648438 177.398438 243.648438 175.777344 C 243.648438 174.15625 246.078125 174.15625 246.078125 175.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.945312 216.988281 C 284.945312 218.605469 282.515625 218.605469 282.515625 216.988281 C 282.515625 215.367188 284.945312 215.367188 284.945312 216.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.6875 288.394531 C 264.6875 290.015625 262.257812 290.015625 262.257812 288.394531 C 262.257812 286.777344 264.6875 286.777344 264.6875 288.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.757812 70.910156 L 146.394531 73.746094 L 143.121094 73.746094 Z M 144.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.871094 386.585938 C 329.871094 388.203125 327.441406 388.203125 327.441406 386.585938 C 327.441406 384.964844 329.871094 384.964844 329.871094 386.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.84375 70.910156 L 146.480469 73.746094 L 143.207031 73.746094 Z M 144.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.75 244.796875 C 253.75 246.417969 251.320312 246.417969 251.320312 244.796875 C 251.320312 243.175781 253.75 243.175781 253.75 244.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.917969 210.683594 C 287.917969 212.300781 285.488281 212.300781 285.488281 210.683594 C 285.488281 209.0625 287.917969 209.0625 287.917969 210.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.261719 223.386719 C 294.261719 225.007812 291.832031 225.007812 291.832031 223.386719 C 291.832031 221.765625 294.261719 221.765625 294.261719 223.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.820312 311.496094 C 168.820312 313.117188 166.390625 313.117188 166.390625 311.496094 C 166.390625 309.878906 168.820312 309.878906 168.820312 311.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.558594 215.539062 C 292.558594 217.160156 290.125 217.160156 290.125 215.539062 C 290.125 213.917969 292.558594 213.917969 292.558594 215.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.125 354.714844 C 200.125 356.335938 197.695312 356.335938 197.695312 354.714844 C 197.695312 353.097656 200.125 353.097656 200.125 354.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.597656 303.925781 C 291.597656 305.546875 289.167969 305.546875 289.167969 303.925781 C 289.167969 302.304688 291.597656 302.304688 291.597656 303.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.238281 70.910156 L 191.875 73.746094 L 188.601562 73.746094 Z M 190.238281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.621094 291.507812 C 277.621094 293.128906 275.1875 293.128906 275.1875 291.507812 C 275.1875 289.886719 277.621094 289.886719 277.621094 291.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.640625 173.523438 C 271.640625 175.144531 269.210938 175.144531 269.210938 173.523438 C 269.210938 171.902344 271.640625 171.902344 271.640625 173.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.277344 70.910156 L 133.914062 73.746094 L 130.640625 73.746094 Z M 132.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.527344 265.214844 C 239.527344 266.835938 237.097656 266.835938 237.097656 265.214844 C 237.097656 263.59375 239.527344 263.59375 239.527344 265.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.96875 280.550781 C 291.96875 282.167969 289.539062 282.167969 289.539062 280.550781 C 289.539062 278.929688 291.96875 278.929688 291.96875 280.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.6875 70.910156 L 231.324219 73.746094 L 228.050781 73.746094 Z M 229.6875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.351562 418.691406 L 150.988281 415.855469 L 147.714844 415.855469 Z M 149.351562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.4375 335.121094 C 291.4375 336.742188 289.007812 336.742188 289.007812 335.121094 C 289.007812 333.5 291.4375 333.5 291.4375 335.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.71875 154.429688 C 213.71875 156.050781 211.289062 156.050781 211.289062 154.429688 C 211.289062 152.8125 213.71875 152.8125 213.71875 154.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.386719 116.515625 C 270.386719 118.136719 267.957031 118.136719 267.957031 116.515625 C 267.957031 114.898438 270.386719 114.898438 270.386719 116.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.726562 343.332031 C 160.726562 344.953125 158.296875 344.953125 158.296875 343.332031 C 158.296875 341.710938 160.726562 341.710938 160.726562 343.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.441406 352.585938 C 152.441406 354.207031 150.011719 354.207031 150.011719 352.585938 C 150.011719 350.964844 152.441406 350.964844 152.441406 352.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.605469 269.917969 C 262.605469 271.539062 260.175781 271.539062 260.175781 269.917969 C 260.175781 268.300781 262.605469 268.300781 262.605469 269.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.5625 326.625 C 263.5625 328.246094 261.132812 328.246094 261.132812 326.625 C 261.132812 325.007812 263.5625 325.007812 263.5625 326.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.480469 244.558594 C 294.480469 246.179688 292.050781 246.179688 292.050781 244.558594 C 292.050781 242.941406 294.480469 242.941406 294.480469 244.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.574219 223.789062 C 206.574219 225.410156 204.144531 225.410156 204.144531 223.789062 C 204.144531 222.171875 206.574219 222.171875 206.574219 223.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.648438 263.699219 C 287.648438 265.320312 285.21875 265.320312 285.21875 263.699219 C 285.21875 262.082031 287.648438 262.082031 287.648438 263.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.988281 304.832031 C 239.988281 306.453125 237.558594 306.453125 237.558594 304.832031 C 237.558594 303.210938 239.988281 303.210938 239.988281 304.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.921875 345.863281 C 231.921875 347.484375 229.492188 347.484375 229.492188 345.863281 C 229.492188 344.246094 231.921875 344.246094 231.921875 345.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.96875 70.910156 L 215.605469 73.746094 L 212.335938 73.746094 Z M 213.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.960938 247.636719 C 272.960938 249.253906 270.53125 249.253906 270.53125 247.636719 C 270.53125 246.015625 272.960938 246.015625 272.960938 247.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.941406 247.210938 C 258.941406 248.828125 256.511719 248.828125 256.511719 247.210938 C 256.511719 245.589844 258.941406 245.589844 258.941406 247.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.992188 266.816406 C 279.992188 268.433594 277.5625 268.433594 277.5625 266.816406 C 277.5625 265.195312 279.992188 265.195312 279.992188 266.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.878906 245.09375 C 301.878906 246.710938 299.449219 246.710938 299.449219 245.09375 C 299.449219 243.472656 301.878906 243.472656 301.878906 245.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.933594 160.414062 C 158.933594 162.035156 156.503906 162.035156 156.503906 160.414062 C 156.503906 158.796875 158.933594 158.796875 158.933594 160.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.953125 90.859375 C 234.953125 92.480469 232.523438 92.480469 232.523438 90.859375 C 232.523438 89.238281 234.953125 89.238281 234.953125 90.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.117188 249.765625 C 259.117188 251.386719 256.6875 251.386719 256.6875 249.765625 C 256.6875 248.144531 259.117188 248.144531 259.117188 249.765625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 254.261719 70.910156 L 255.898438 73.746094 L 252.625 73.746094 Z M 254.261719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.265625 70.910156 L 221.902344 73.746094 L 218.628906 73.746094 Z M 220.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.609375 203.296875 C 234.609375 204.917969 232.179688 204.917969 232.179688 203.296875 C 232.179688 201.675781 234.609375 201.675781 234.609375 203.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.5625 257.542969 C 245.5625 259.164062 243.132812 259.164062 243.132812 257.542969 C 243.132812 255.921875 245.5625 255.921875 245.5625 257.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.050781 264.164062 C 271.050781 265.785156 268.621094 265.785156 268.621094 264.164062 C 268.621094 262.542969 271.050781 262.542969 271.050781 264.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.941406 212.820312 C 271.941406 214.4375 269.511719 214.4375 269.511719 212.820312 C 269.511719 211.199219 271.941406 211.199219 271.941406 212.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.496094 319.007812 C 291.496094 320.628906 289.066406 320.628906 289.066406 319.007812 C 289.066406 317.386719 291.496094 317.386719 291.496094 319.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.839844 130.691406 C 270.839844 132.308594 268.410156 132.308594 268.410156 130.691406 C 268.410156 129.070312 270.839844 129.070312 270.839844 130.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.453125 146.597656 C 253.453125 148.214844 251.023438 148.214844 251.023438 146.597656 C 251.023438 144.976562 253.453125 144.976562 253.453125 146.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.511719 70.910156 L 251.148438 73.746094 L 247.875 73.746094 Z M 249.511719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.554688 70.910156 L 147.191406 73.746094 L 143.917969 73.746094 Z M 145.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.144531 390.261719 C 366.144531 391.882812 363.714844 391.882812 363.714844 390.261719 C 363.714844 388.640625 366.144531 388.640625 366.144531 390.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.988281 321.558594 C 318.988281 323.179688 316.558594 323.179688 316.558594 321.558594 C 316.558594 319.941406 318.988281 319.941406 318.988281 321.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.109375 150.355469 C 266.109375 151.972656 263.679688 151.972656 263.679688 150.355469 C 263.679688 148.734375 266.109375 148.734375 266.109375 150.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.242188 307.742188 C 143.242188 309.363281 140.8125 309.363281 140.8125 307.742188 C 140.8125 306.125 143.242188 306.125 143.242188 307.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.875 297.800781 C 243.875 299.421875 241.445312 299.421875 241.445312 297.800781 C 241.445312 296.179688 243.875 296.179688 243.875 297.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.785156 259.46875 C 328.785156 261.089844 326.355469 261.089844 326.355469 259.46875 C 326.355469 257.851562 328.785156 257.851562 328.785156 259.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.269531 268.941406 C 273.269531 270.558594 270.835938 270.558594 270.835938 268.941406 C 270.835938 267.320312 273.269531 267.320312 273.269531 268.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.992188 229.207031 C 261.992188 230.828125 259.5625 230.828125 259.5625 229.207031 C 259.5625 227.585938 261.992188 227.585938 261.992188 229.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.015625 377.867188 C 118.015625 379.488281 115.585938 379.488281 115.585938 377.867188 C 115.585938 376.246094 118.015625 376.246094 118.015625 377.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.355469 225.230469 C 191.355469 226.851562 188.925781 226.851562 188.925781 225.230469 C 188.925781 223.613281 191.355469 223.613281 191.355469 225.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.929688 229.546875 C 236.929688 231.167969 234.5 231.167969 234.5 229.546875 C 234.5 227.925781 236.929688 227.925781 236.929688 229.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.1875 288.332031 C 299.1875 289.953125 296.757812 289.953125 296.757812 288.332031 C 296.757812 286.710938 299.1875 286.710938 299.1875 288.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.324219 302.992188 C 244.324219 304.613281 241.890625 304.613281 241.890625 302.992188 C 241.890625 301.371094 244.324219 301.371094 244.324219 302.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.824219 70.910156 L 168.460938 73.746094 L 165.191406 73.746094 Z M 166.824219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.859375 204.085938 C 296.859375 205.707031 294.429688 205.707031 294.429688 204.085938 C 294.429688 202.46875 296.859375 202.46875 296.859375 204.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.503906 184.542969 C 261.503906 186.164062 259.074219 186.164062 259.074219 184.542969 C 259.074219 182.921875 261.503906 182.921875 261.503906 184.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.886719 418.691406 L 132.523438 415.855469 L 129.25 415.855469 Z M 130.886719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 384.789062 228.097656 C 384.789062 229.71875 382.359375 229.71875 382.359375 228.097656 C 382.359375 226.480469 384.789062 226.480469 384.789062 228.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.203125 70.910156 L 238.839844 73.746094 L 235.566406 73.746094 Z M 237.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.308594 242.164062 C 298.308594 243.78125 295.878906 243.78125 295.878906 242.164062 C 295.878906 240.542969 298.308594 240.542969 298.308594 242.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.859375 418.691406 L 279.496094 415.855469 L 276.222656 415.855469 Z M 277.859375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.058594 326.949219 C 322.058594 328.570312 319.628906 328.570312 319.628906 326.949219 C 319.628906 325.328125 322.058594 325.328125 322.058594 326.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.648438 209.351562 C 281.648438 210.972656 279.21875 210.972656 279.21875 209.351562 C 279.21875 207.730469 281.648438 207.730469 281.648438 209.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.125 70.910156 L 216.761719 73.746094 L 213.488281 73.746094 Z M 215.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.851562 308.226562 C 233.851562 309.847656 231.421875 309.847656 231.421875 308.226562 C 231.421875 306.609375 233.851562 306.609375 233.851562 308.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.632812 254.195312 C 309.632812 255.8125 307.203125 255.8125 307.203125 254.195312 C 307.203125 252.574219 309.632812 252.574219 309.632812 254.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.75 227.71875 C 284.75 229.335938 282.320312 229.335938 282.320312 227.71875 C 282.320312 226.097656 284.75 226.097656 284.75 227.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.214844 250.125 C 277.214844 251.746094 274.785156 251.746094 274.785156 250.125 C 274.785156 248.503906 277.214844 248.503906 277.214844 250.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.820312 150.601562 C 328.820312 152.21875 326.386719 152.21875 326.386719 150.601562 C 326.386719 148.980469 328.820312 148.980469 328.820312 150.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.363281 90.988281 C 330.363281 92.605469 327.933594 92.605469 327.933594 90.988281 C 327.933594 89.367188 330.363281 89.367188 330.363281 90.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.136719 233.832031 C 308.136719 235.453125 305.707031 235.453125 305.707031 233.832031 C 305.707031 232.210938 308.136719 232.210938 308.136719 233.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.292969 70.910156 L 156.929688 73.746094 L 153.660156 73.746094 Z M 155.292969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.738281 251.570312 C 254.738281 253.191406 252.308594 253.191406 252.308594 251.570312 C 252.308594 249.949219 254.738281 249.949219 254.738281 251.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.496094 248.179688 C 297.496094 249.800781 295.066406 249.800781 295.066406 248.179688 C 295.066406 246.5625 297.496094 246.5625 297.496094 248.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.980469 70.910156 L 190.617188 73.746094 L 187.34375 73.746094 Z M 188.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.941406 133.628906 C 115.941406 135.25 113.511719 135.25 113.511719 133.628906 C 113.511719 132.011719 115.941406 132.011719 115.941406 133.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.652344 119.035156 C 201.652344 120.65625 199.222656 120.65625 199.222656 119.035156 C 199.222656 117.417969 201.652344 117.417969 201.652344 119.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.402344 105.25 C 257.402344 106.867188 254.972656 106.867188 254.972656 105.25 C 254.972656 103.628906 257.402344 103.628906 257.402344 105.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.5 269.277344 C 207.5 270.894531 205.070312 270.894531 205.070312 269.277344 C 205.070312 267.65625 207.5 267.65625 207.5 269.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.636719 137.785156 C 331.636719 139.40625 329.207031 139.40625 329.207031 137.785156 C 329.207031 136.164062 331.636719 136.164062 331.636719 137.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.492188 310.109375 C 192.492188 311.726562 190.0625 311.726562 190.0625 310.109375 C 190.0625 308.488281 192.492188 308.488281 192.492188 310.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.816406 317.175781 C 220.816406 318.796875 218.386719 318.796875 218.386719 317.175781 C 218.386719 315.554688 220.816406 315.554688 220.816406 317.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.089844 228.972656 C 185.089844 230.59375 182.660156 230.59375 182.660156 228.972656 C 182.660156 227.351562 185.089844 227.351562 185.089844 228.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.238281 305.507812 C 187.238281 307.128906 184.808594 307.128906 184.808594 305.507812 C 184.808594 303.890625 187.238281 303.890625 187.238281 305.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.675781 230.550781 C 269.675781 232.171875 267.246094 232.171875 267.246094 230.550781 C 267.246094 228.929688 269.675781 228.929688 269.675781 230.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.214844 135.046875 C 202.214844 136.667969 199.785156 136.667969 199.785156 135.046875 C 199.785156 133.425781 202.214844 133.425781 202.214844 135.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.003906 156.304688 C 242.003906 157.925781 239.574219 157.925781 239.574219 156.304688 C 239.574219 154.6875 242.003906 154.6875 242.003906 156.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.929688 70.910156 L 126.566406 73.746094 L 123.292969 73.746094 Z M 124.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.34375 251.675781 C 275.34375 253.296875 272.914062 253.296875 272.914062 251.675781 C 272.914062 250.054688 275.34375 250.054688 275.34375 251.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.339844 253.339844 C 169.339844 254.957031 166.910156 254.957031 166.910156 253.339844 C 166.910156 251.71875 169.339844 251.71875 169.339844 253.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.832031 269.046875 C 220.832031 270.664062 218.398438 270.664062 218.398438 269.046875 C 218.398438 267.425781 220.832031 267.425781 220.832031 269.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.953125 265.84375 C 255.953125 267.460938 253.523438 267.460938 253.523438 265.84375 C 253.523438 264.222656 255.953125 264.222656 255.953125 265.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.636719 221.164062 C 176.636719 222.78125 174.207031 222.78125 174.207031 221.164062 C 174.207031 219.542969 176.636719 219.542969 176.636719 221.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.808594 221.605469 C 246.808594 223.226562 244.375 223.226562 244.375 221.605469 C 244.375 219.984375 246.808594 219.984375 246.808594 221.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.789062 293.988281 C 267.789062 295.609375 265.355469 295.609375 265.355469 293.988281 C 265.355469 292.367188 267.789062 292.367188 267.789062 293.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.207031 150.734375 C 227.207031 152.355469 224.777344 152.355469 224.777344 150.734375 C 224.777344 149.117188 227.207031 149.117188 227.207031 150.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.566406 268.363281 C 273.566406 269.984375 271.136719 269.984375 271.136719 268.363281 C 271.136719 266.746094 273.566406 266.746094 273.566406 268.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.125 253.273438 C 195.125 254.894531 192.695312 254.894531 192.695312 253.273438 C 192.695312 251.65625 195.125 251.65625 195.125 253.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.757812 232.460938 C 244.757812 234.078125 242.328125 234.078125 242.328125 232.460938 C 242.328125 230.839844 244.757812 230.839844 244.757812 232.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.648438 228.171875 C 315.648438 229.792969 313.21875 229.792969 313.21875 228.171875 C 313.21875 226.550781 315.648438 226.550781 315.648438 228.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.539062 246.769531 C 283.539062 248.390625 281.105469 248.390625 281.105469 246.769531 C 281.105469 245.152344 283.539062 245.152344 283.539062 246.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.320312 254.046875 C 263.320312 255.664062 260.890625 255.664062 260.890625 254.046875 C 260.890625 252.425781 263.320312 252.425781 263.320312 254.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.152344 161.5625 C 255.152344 163.179688 252.722656 163.179688 252.722656 161.5625 C 252.722656 159.941406 255.152344 159.941406 255.152344 161.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.996094 275.566406 C 275.996094 277.1875 273.566406 277.1875 273.566406 275.566406 C 273.566406 273.945312 275.996094 273.945312 275.996094 275.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.554688 70.910156 L 128.191406 73.746094 L 124.917969 73.746094 Z M 126.554688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.890625 70.910156 L 127.527344 73.746094 L 124.253906 73.746094 Z M 125.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.929688 266.183594 C 281.929688 267.800781 279.5 267.800781 279.5 266.183594 C 279.5 264.5625 281.929688 264.5625 281.929688 266.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.464844 255.527344 C 284.464844 257.148438 282.035156 257.148438 282.035156 255.527344 C 282.035156 253.90625 284.464844 253.90625 284.464844 255.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.171875 302.03125 C 306.171875 303.652344 303.742188 303.652344 303.742188 302.03125 C 303.742188 300.410156 306.171875 300.410156 306.171875 302.03125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.964844 70.910156 L 254.601562 73.746094 L 251.328125 73.746094 Z M 252.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.300781 206.128906 C 306.300781 207.75 303.867188 207.75 303.867188 206.128906 C 303.867188 204.511719 306.300781 204.511719 306.300781 206.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.984375 285.203125 C 314.984375 286.824219 312.554688 286.824219 312.554688 285.203125 C 312.554688 283.582031 314.984375 283.582031 314.984375 285.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.246094 244.457031 C 185.246094 246.074219 182.816406 246.074219 182.816406 244.457031 C 182.816406 242.835938 185.246094 242.835938 185.246094 244.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.117188 150.738281 C 257.117188 152.359375 254.6875 152.359375 254.6875 150.738281 C 254.6875 149.121094 257.117188 149.121094 257.117188 150.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.871094 165.835938 C 247.871094 167.453125 245.4375 167.453125 245.4375 165.835938 C 245.4375 164.214844 247.871094 164.214844 247.871094 165.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.03125 151.472656 C 262.03125 153.09375 259.597656 153.09375 259.597656 151.472656 C 259.597656 149.851562 262.03125 149.851562 262.03125 151.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.445312 206.027344 C 290.445312 207.644531 288.015625 207.644531 288.015625 206.027344 C 288.015625 204.40625 290.445312 204.40625 290.445312 206.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.757812 193.492188 C 310.757812 195.113281 308.328125 195.113281 308.328125 193.492188 C 308.328125 191.875 310.757812 191.875 310.757812 193.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.875 211.492188 C 239.875 213.109375 237.445312 213.109375 237.445312 211.492188 C 237.445312 209.871094 239.875 209.871094 239.875 211.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.460938 70.910156 L 137.097656 73.746094 L 133.824219 73.746094 Z M 135.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.484375 255.746094 C 262.484375 257.367188 260.054688 257.367188 260.054688 255.746094 C 260.054688 254.125 262.484375 254.125 262.484375 255.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.8125 131.320312 C 238.8125 132.941406 236.382812 132.941406 236.382812 131.320312 C 236.382812 129.699219 238.8125 129.699219 238.8125 131.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.765625 189.023438 C 165.765625 190.644531 163.332031 190.644531 163.332031 189.023438 C 163.332031 187.402344 165.765625 187.402344 165.765625 189.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.34375 268.046875 C 295.34375 269.667969 292.914062 269.667969 292.914062 268.046875 C 292.914062 266.425781 295.34375 266.425781 295.34375 268.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.753906 70.910156 L 291.390625 73.746094 L 288.117188 73.746094 Z M 289.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.4375 204.363281 C 205.4375 205.980469 203.007812 205.980469 203.007812 204.363281 C 203.007812 202.742188 205.4375 202.742188 205.4375 204.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.457031 241.730469 C 225.457031 243.351562 223.027344 243.351562 223.027344 241.730469 C 223.027344 240.109375 225.457031 240.109375 225.457031 241.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.402344 238.738281 C 285.402344 240.359375 282.96875 240.359375 282.96875 238.738281 C 282.96875 237.117188 285.402344 237.117188 285.402344 238.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.796875 296.996094 C 318.796875 298.617188 316.363281 298.617188 316.363281 296.996094 C 316.363281 295.378906 318.796875 295.378906 318.796875 296.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.820312 224.902344 C 329.820312 226.523438 327.390625 226.523438 327.390625 224.902344 C 327.390625 223.285156 329.820312 223.285156 329.820312 224.902344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.578125 70.910156 L 306.214844 73.746094 L 302.941406 73.746094 Z M 304.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.613281 418.691406 L 265.25 415.855469 L 261.976562 415.855469 Z M 263.613281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.441406 70.910156 L 215.078125 73.746094 L 211.804688 73.746094 Z M 213.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.324219 309.65625 C 292.324219 311.277344 289.894531 311.277344 289.894531 309.65625 C 289.894531 308.035156 292.324219 308.035156 292.324219 309.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.4375 130.847656 C 251.4375 132.464844 249.007812 132.464844 249.007812 130.847656 C 249.007812 129.226562 251.4375 129.226562 251.4375 130.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.710938 352.679688 C 225.710938 354.296875 223.28125 354.296875 223.28125 352.679688 C 223.28125 351.058594 225.710938 351.058594 225.710938 352.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.609375 256.601562 C 276.609375 258.222656 274.179688 258.222656 274.179688 256.601562 C 274.179688 254.984375 276.609375 254.984375 276.609375 256.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.46875 184.796875 C 215.46875 186.417969 213.039062 186.417969 213.039062 184.796875 C 213.039062 183.175781 215.46875 183.175781 215.46875 184.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.734375 265.960938 C 185.734375 267.582031 183.304688 267.582031 183.304688 265.960938 C 183.304688 264.34375 185.734375 264.34375 185.734375 265.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.457031 337.691406 C 223.457031 339.3125 221.027344 339.3125 221.027344 337.691406 C 221.027344 336.074219 223.457031 336.074219 223.457031 337.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.566406 199.523438 C 217.566406 201.140625 215.136719 201.140625 215.136719 199.523438 C 215.136719 197.902344 217.566406 197.902344 217.566406 199.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.539062 101.167969 C 213.539062 102.789062 211.109375 102.789062 211.109375 101.167969 C 211.109375 99.546875 213.539062 99.546875 213.539062 101.167969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.996094 418.691406 L 143.628906 415.855469 L 140.359375 415.855469 Z M 141.996094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.84375 292.570312 C 227.84375 294.191406 225.414062 294.191406 225.414062 292.570312 C 225.414062 290.953125 227.84375 290.953125 227.84375 292.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.78125 159.917969 C 257.78125 161.539062 255.351562 161.539062 255.351562 159.917969 C 255.351562 158.300781 257.78125 158.300781 257.78125 159.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.273438 70.910156 L 197.910156 73.746094 L 194.636719 73.746094 Z M 196.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.382812 230.667969 C 250.382812 232.285156 247.953125 232.285156 247.953125 230.667969 C 247.953125 229.046875 250.382812 229.046875 250.382812 230.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.875 90.28125 C 264.875 91.902344 262.445312 91.902344 262.445312 90.28125 C 262.445312 88.660156 264.875 88.660156 264.875 90.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.730469 83.953125 C 267.730469 85.574219 265.300781 85.574219 265.300781 83.953125 C 265.300781 82.335938 267.730469 82.335938 267.730469 83.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.546875 152.660156 C 131.546875 154.28125 129.117188 154.28125 129.117188 152.660156 C 129.117188 151.039062 131.546875 151.039062 131.546875 152.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.078125 70.910156 L 210.714844 73.746094 L 207.441406 73.746094 Z M 209.078125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.894531 70.910156 L 248.53125 73.746094 L 245.257812 73.746094 Z M 246.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.503906 187.578125 C 227.503906 189.199219 225.070312 189.199219 225.070312 187.578125 C 225.070312 185.960938 227.503906 185.960938 227.503906 187.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.457031 296.855469 C 192.457031 298.472656 190.027344 298.472656 190.027344 296.855469 C 190.027344 295.234375 192.457031 295.234375 192.457031 296.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.925781 319.5625 C 304.925781 321.183594 302.496094 321.183594 302.496094 319.5625 C 302.496094 317.941406 304.925781 317.941406 304.925781 319.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.460938 318.347656 C 238.460938 319.96875 236.03125 319.96875 236.03125 318.347656 C 236.03125 316.730469 238.460938 316.730469 238.460938 318.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.488281 213.78125 C 339.488281 215.398438 337.058594 215.398438 337.058594 213.78125 C 337.058594 212.160156 339.488281 212.160156 339.488281 213.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.917969 109.882812 C 208.917969 111.503906 206.488281 111.503906 206.488281 109.882812 C 206.488281 108.265625 208.917969 108.265625 208.917969 109.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.785156 70.910156 L 189.421875 73.746094 L 186.148438 73.746094 Z M 187.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.734375 137.804688 C 284.734375 139.425781 282.304688 139.425781 282.304688 137.804688 C 282.304688 136.183594 284.734375 136.183594 284.734375 137.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.125 172.511719 C 112.125 174.132812 109.695312 174.132812 109.695312 172.511719 C 109.695312 170.890625 112.125 170.890625 112.125 172.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.945312 249.542969 C 316.945312 251.164062 314.515625 251.164062 314.515625 249.542969 C 314.515625 247.921875 316.945312 247.921875 316.945312 249.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.917969 399.710938 C 204.917969 401.332031 202.488281 401.332031 202.488281 399.710938 C 202.488281 398.09375 204.917969 398.09375 204.917969 399.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.710938 316.144531 C 279.710938 317.761719 277.28125 317.761719 277.28125 316.144531 C 277.28125 314.523438 279.710938 314.523438 279.710938 316.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.777344 225.957031 C 283.777344 227.578125 281.347656 227.578125 281.347656 225.957031 C 281.347656 224.335938 283.777344 224.335938 283.777344 225.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.835938 293.796875 C 138.835938 295.417969 136.40625 295.417969 136.40625 293.796875 C 136.40625 292.179688 138.835938 292.179688 138.835938 293.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.871094 345.667969 C 309.871094 347.289062 307.441406 347.289062 307.441406 345.667969 C 307.441406 344.046875 309.871094 344.046875 309.871094 345.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.867188 191.472656 C 275.867188 193.089844 273.4375 193.089844 273.4375 191.472656 C 273.4375 189.851562 275.867188 189.851562 275.867188 191.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.933594 268.324219 C 283.933594 269.945312 281.503906 269.945312 281.503906 268.324219 C 281.503906 266.707031 283.933594 266.707031 283.933594 268.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.773438 70.910156 L 143.40625 73.746094 L 140.136719 73.746094 Z M 141.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.835938 278.214844 C 279.835938 279.835938 277.40625 279.835938 277.40625 278.214844 C 277.40625 276.597656 279.835938 276.597656 279.835938 278.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.464844 70.910156 L 191.101562 73.746094 L 187.828125 73.746094 Z M 189.464844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.429688 177.058594 C 324.429688 178.679688 321.996094 178.679688 321.996094 177.058594 C 321.996094 175.441406 324.429688 175.441406 324.429688 177.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.4375 211.78125 C 239.4375 213.402344 237.007812 213.402344 237.007812 211.78125 C 237.007812 210.160156 239.4375 210.160156 239.4375 211.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.519531 197.988281 C 158.519531 199.609375 156.089844 199.609375 156.089844 197.988281 C 156.089844 196.367188 158.519531 196.367188 158.519531 197.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.289062 70.910156 L 225.925781 73.746094 L 222.652344 73.746094 Z M 224.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.980469 70.910156 L 270.617188 73.746094 L 267.34375 73.746094 Z M 268.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.003906 220.925781 C 285.003906 222.546875 282.574219 222.546875 282.574219 220.925781 C 282.574219 219.304688 285.003906 219.304688 285.003906 220.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.804688 373.1875 C 278.804688 374.808594 276.375 374.808594 276.375 373.1875 C 276.375 371.570312 278.804688 371.570312 278.804688 373.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.609375 409.941406 C 267.609375 411.558594 265.179688 411.558594 265.179688 409.941406 C 265.179688 408.320312 267.609375 408.320312 267.609375 409.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.175781 257.339844 C 207.175781 258.957031 204.746094 258.957031 204.746094 257.339844 C 204.746094 255.71875 207.175781 255.71875 207.175781 257.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.226562 70.910156 L 290.863281 73.746094 L 287.589844 73.746094 Z M 289.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.078125 79.65625 C 264.078125 81.277344 261.648438 81.277344 261.648438 79.65625 C 261.648438 78.039062 264.078125 78.039062 264.078125 79.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.25 316.117188 C 279.25 317.738281 276.820312 317.738281 276.820312 316.117188 C 276.820312 314.496094 279.25 314.496094 279.25 316.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.023438 70.910156 L 285.660156 73.746094 L 282.386719 73.746094 Z M 284.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.746094 248.191406 C 299.746094 249.8125 297.316406 249.8125 297.316406 248.191406 C 297.316406 246.570312 299.746094 246.570312 299.746094 248.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 344.128906 70.910156 L 345.765625 73.746094 L 342.496094 73.746094 Z M 344.128906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 355.050781 70.910156 L 356.6875 73.746094 L 353.417969 73.746094 Z M 355.050781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.855469 70.910156 L 168.492188 73.746094 L 165.21875 73.746094 Z M 166.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.855469 291.457031 C 270.855469 293.074219 268.425781 293.074219 268.425781 291.457031 C 268.425781 289.835938 270.855469 289.835938 270.855469 291.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.574219 70.910156 L 295.207031 73.746094 L 291.9375 73.746094 Z M 293.574219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.792969 399.574219 C 308.792969 401.191406 306.363281 401.191406 306.363281 399.574219 C 306.363281 397.953125 308.792969 397.953125 308.792969 399.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.308594 226.328125 C 146.308594 227.949219 143.878906 227.949219 143.878906 226.328125 C 143.878906 224.710938 146.308594 224.710938 146.308594 226.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.609375 136.007812 C 162.609375 137.628906 160.179688 137.628906 160.179688 136.007812 C 160.179688 134.386719 162.609375 134.386719 162.609375 136.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.097656 97.820312 C 252.097656 99.441406 249.664062 99.441406 249.664062 97.820312 C 249.664062 96.203125 252.097656 96.203125 252.097656 97.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.503906 186.582031 C 255.503906 188.199219 253.074219 188.199219 253.074219 186.582031 C 253.074219 184.960938 255.503906 184.960938 255.503906 186.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.347656 276.570312 C 323.347656 278.191406 320.917969 278.191406 320.917969 276.570312 C 320.917969 274.949219 323.347656 274.949219 323.347656 276.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.335938 234.773438 C 255.335938 236.394531 252.90625 236.394531 252.90625 234.773438 C 252.90625 233.15625 255.335938 233.15625 255.335938 234.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.980469 181.488281 C 298.980469 183.105469 296.550781 183.105469 296.550781 181.488281 C 296.550781 179.867188 298.980469 179.867188 298.980469 181.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.777344 166.730469 C 182.777344 168.351562 180.347656 168.351562 180.347656 166.730469 C 180.347656 165.109375 182.777344 165.109375 182.777344 166.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.707031 294.152344 C 276.707031 295.773438 274.277344 295.773438 274.277344 294.152344 C 274.277344 292.535156 276.707031 292.535156 276.707031 294.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 346.261719 273.085938 C 346.261719 274.707031 343.832031 274.707031 343.832031 273.085938 C 343.832031 271.46875 346.261719 271.46875 346.261719 273.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.800781 134.429688 C 261.800781 136.050781 259.371094 136.050781 259.371094 134.429688 C 259.371094 132.8125 261.800781 132.8125 261.800781 134.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.070312 70.910156 L 199.707031 73.746094 L 196.433594 73.746094 Z M 198.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.335938 368.265625 C 208.335938 369.886719 205.90625 369.886719 205.90625 368.265625 C 205.90625 366.644531 208.335938 366.644531 208.335938 368.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.492188 241.328125 C 266.492188 242.945312 264.0625 242.945312 264.0625 241.328125 C 264.0625 239.707031 266.492188 239.707031 266.492188 241.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.191406 230.8125 C 291.191406 232.433594 288.761719 232.433594 288.761719 230.8125 C 288.761719 229.191406 291.191406 229.191406 291.191406 230.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.273438 70.910156 L 247.910156 73.746094 L 244.636719 73.746094 Z M 246.273438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.78125 70.910156 L 145.417969 73.746094 L 142.144531 73.746094 Z M 143.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.355469 249.269531 C 203.355469 250.890625 200.925781 250.890625 200.925781 249.269531 C 200.925781 247.648438 203.355469 247.648438 203.355469 249.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.34375 270.179688 C 314.34375 271.800781 311.914062 271.800781 311.914062 270.179688 C 311.914062 268.558594 314.34375 268.558594 314.34375 270.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.359375 243.625 C 304.359375 245.242188 301.925781 245.242188 301.925781 243.625 C 301.925781 242.003906 304.359375 242.003906 304.359375 243.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.191406 281.632812 C 290.191406 283.253906 287.757812 283.253906 287.757812 281.632812 C 287.757812 280.011719 290.191406 280.011719 290.191406 281.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.316406 244.507812 C 320.316406 246.128906 317.886719 246.128906 317.886719 244.507812 C 317.886719 242.886719 320.316406 242.886719 320.316406 244.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.550781 70.910156 L 160.1875 73.746094 L 156.914062 73.746094 Z M 158.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.804688 70.910156 L 160.441406 73.746094 L 157.167969 73.746094 Z M 158.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.878906 199.246094 C 316.878906 200.867188 314.449219 200.867188 314.449219 199.246094 C 314.449219 197.625 316.878906 197.625 316.878906 199.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.542969 291.839844 C 181.542969 293.460938 179.113281 293.460938 179.113281 291.839844 C 179.113281 290.21875 181.542969 290.21875 181.542969 291.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.214844 70.910156 L 196.847656 73.746094 L 193.578125 73.746094 Z M 195.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.667969 163.191406 C 154.667969 164.8125 152.238281 164.8125 152.238281 163.191406 C 152.238281 161.574219 154.667969 161.574219 154.667969 163.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.492188 321.613281 C 124.492188 323.234375 122.0625 323.234375 122.0625 321.613281 C 122.0625 319.996094 124.492188 319.996094 124.492188 321.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.785156 363.097656 C 192.785156 364.714844 190.355469 364.714844 190.355469 363.097656 C 190.355469 361.476562 192.785156 361.476562 192.785156 363.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.054688 262.644531 C 318.054688 264.265625 315.625 264.265625 315.625 262.644531 C 315.625 261.027344 318.054688 261.027344 318.054688 262.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.050781 271.71875 C 239.050781 273.339844 236.621094 273.339844 236.621094 271.71875 C 236.621094 270.101562 239.050781 270.101562 239.050781 271.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.582031 285.914062 C 247.582031 287.535156 245.152344 287.535156 245.152344 285.914062 C 245.152344 284.292969 247.582031 284.292969 247.582031 285.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.167969 265.730469 C 223.167969 267.351562 220.738281 267.351562 220.738281 265.730469 C 220.738281 264.113281 223.167969 264.113281 223.167969 265.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.542969 418.691406 L 165.179688 415.855469 L 161.90625 415.855469 Z M 163.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.832031 377.441406 C 212.832031 379.058594 210.398438 379.058594 210.398438 377.441406 C 210.398438 375.820312 212.832031 375.820312 212.832031 377.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.851562 70.910156 L 235.488281 73.746094 L 232.21875 73.746094 Z M 233.851562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.105469 202.792969 C 244.105469 204.410156 241.675781 204.410156 241.675781 202.792969 C 241.675781 201.171875 244.105469 201.171875 244.105469 202.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.042969 226.574219 C 230.042969 228.195312 227.613281 228.195312 227.613281 226.574219 C 227.613281 224.953125 230.042969 224.953125 230.042969 226.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.441406 249.054688 C 213.441406 250.671875 211.011719 250.671875 211.011719 249.054688 C 211.011719 247.433594 213.441406 247.433594 213.441406 249.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.945312 373.609375 C 192.945312 375.230469 190.515625 375.230469 190.515625 373.609375 C 190.515625 371.992188 192.945312 371.992188 192.945312 373.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.246094 195.003906 C 276.246094 196.621094 273.816406 196.621094 273.816406 195.003906 C 273.816406 193.382812 276.246094 193.382812 276.246094 195.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.570312 324.792969 C 110.570312 326.414062 108.140625 326.414062 108.140625 324.792969 C 108.140625 323.171875 110.570312 323.171875 110.570312 324.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.878906 418.691406 L 189.515625 415.855469 L 186.242188 415.855469 Z M 187.878906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.492188 299.058594 C 268.492188 300.679688 266.0625 300.679688 266.0625 299.058594 C 266.0625 297.441406 268.492188 297.441406 268.492188 299.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.394531 217.472656 C 133.394531 219.089844 130.964844 219.089844 130.964844 217.472656 C 130.964844 215.851562 133.394531 215.851562 133.394531 217.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.453125 346.816406 C 303.453125 348.4375 301.023438 348.4375 301.023438 346.816406 C 301.023438 345.199219 303.453125 345.199219 303.453125 346.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.3125 377.855469 C 120.3125 379.472656 117.882812 379.472656 117.882812 377.855469 C 117.882812 376.234375 120.3125 376.234375 120.3125 377.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.640625 70.910156 L 123.277344 73.746094 L 120.003906 73.746094 Z M 121.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.457031 70.910156 L 194.09375 73.746094 L 190.824219 73.746094 Z M 192.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.640625 219.179688 C 260.640625 220.800781 258.210938 220.800781 258.210938 219.179688 C 258.210938 217.558594 260.640625 217.558594 260.640625 219.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.878906 267.09375 C 315.878906 268.714844 313.449219 268.714844 313.449219 267.09375 C 313.449219 265.472656 315.878906 265.472656 315.878906 267.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.878906 294.652344 C 281.878906 296.273438 279.449219 296.273438 279.449219 294.652344 C 279.449219 293.03125 281.878906 293.03125 281.878906 294.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.480469 315.300781 C 250.480469 316.921875 248.050781 316.921875 248.050781 315.300781 C 248.050781 313.679688 250.480469 313.679688 250.480469 315.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.980469 285.085938 C 162.980469 286.707031 160.550781 286.707031 160.550781 285.085938 C 160.550781 283.464844 162.980469 283.464844 162.980469 285.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.5625 70.910156 L 264.199219 73.746094 L 260.925781 73.746094 Z M 262.5625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.597656 320.464844 C 288.597656 322.085938 286.167969 322.085938 286.167969 320.464844 C 286.167969 318.847656 288.597656 318.847656 288.597656 320.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.394531 278.085938 C 232.394531 279.707031 229.964844 279.707031 229.964844 278.085938 C 229.964844 276.46875 232.394531 276.46875 232.394531 278.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.484375 212.777344 C 132.484375 214.394531 130.054688 214.394531 130.054688 212.777344 C 130.054688 211.15625 132.484375 211.15625 132.484375 212.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.203125 222.621094 C 270.203125 224.242188 267.769531 224.242188 267.769531 222.621094 C 267.769531 221 270.203125 221 270.203125 222.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.578125 70.910156 L 275.210938 73.746094 L 271.941406 73.746094 Z M 273.578125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.917969 210.3125 C 284.917969 211.933594 282.488281 211.933594 282.488281 210.3125 C 282.488281 208.691406 284.917969 208.691406 284.917969 210.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.460938 348.664062 C 229.460938 350.285156 227.03125 350.285156 227.03125 348.664062 C 227.03125 347.042969 229.460938 347.042969 229.460938 348.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.105469 257.511719 C 259.105469 259.132812 256.675781 259.132812 256.675781 257.511719 C 256.675781 255.890625 259.105469 255.890625 259.105469 257.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.679688 161.246094 C 130.679688 162.867188 128.25 162.867188 128.25 161.246094 C 128.25 159.625 130.679688 159.625 130.679688 161.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.097656 70.910156 L 246.734375 73.746094 L 243.460938 73.746094 Z M 245.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.257812 364.6875 C 171.257812 366.308594 168.828125 366.308594 168.828125 364.6875 C 168.828125 363.070312 171.257812 363.070312 171.257812 364.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.597656 276.355469 C 140.597656 277.976562 138.167969 277.976562 138.167969 276.355469 C 138.167969 274.738281 140.597656 274.738281 140.597656 276.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 362.011719 222.144531 C 362.011719 223.761719 359.582031 223.761719 359.582031 222.144531 C 359.582031 220.523438 362.011719 220.523438 362.011719 222.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.519531 248.265625 C 200.519531 249.886719 198.089844 249.886719 198.089844 248.265625 C 198.089844 246.648438 200.519531 246.648438 200.519531 248.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.757812 402.871094 C 201.757812 404.492188 199.328125 404.492188 199.328125 402.871094 C 199.328125 401.253906 201.757812 401.253906 201.757812 402.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.984375 193.757812 C 185.984375 195.378906 183.554688 195.378906 183.554688 193.757812 C 183.554688 192.136719 185.984375 192.136719 185.984375 193.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.96875 70.910156 L 132.605469 73.746094 L 129.332031 73.746094 Z M 130.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.3125 283.597656 C 169.3125 285.21875 166.882812 285.21875 166.882812 283.597656 C 166.882812 281.976562 169.3125 281.976562 169.3125 283.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.8125 70.910156 L 196.449219 73.746094 L 193.175781 73.746094 Z M 194.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.089844 140.199219 C 254.089844 141.816406 251.660156 141.816406 251.660156 140.199219 C 251.660156 138.578125 254.089844 138.578125 254.089844 140.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.722656 237.207031 C 267.722656 238.828125 265.289062 238.828125 265.289062 237.207031 C 265.289062 235.589844 267.722656 235.589844 267.722656 237.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.964844 70.910156 L 230.601562 73.746094 L 227.328125 73.746094 Z M 228.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.867188 159.136719 C 295.867188 160.753906 293.4375 160.753906 293.4375 159.136719 C 293.4375 157.515625 295.867188 157.515625 295.867188 159.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.539062 254.984375 C 252.539062 256.605469 250.109375 256.605469 250.109375 254.984375 C 250.109375 253.363281 252.539062 253.363281 252.539062 254.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.226562 163.175781 C 229.226562 164.796875 226.796875 164.796875 226.796875 163.175781 C 226.796875 161.558594 229.226562 161.558594 229.226562 163.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.121094 151.855469 C 232.121094 153.476562 229.691406 153.476562 229.691406 151.855469 C 229.691406 150.238281 232.121094 150.238281 232.121094 151.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.566406 70.910156 L 202.203125 73.746094 L 198.933594 73.746094 Z M 200.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.914062 196.917969 C 136.914062 198.539062 134.484375 198.539062 134.484375 196.917969 C 134.484375 195.296875 136.914062 195.296875 136.914062 196.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.601562 275.753906 C 178.601562 277.375 176.171875 277.375 176.171875 275.753906 C 176.171875 274.132812 178.601562 274.132812 178.601562 275.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.183594 321.292969 C 260.183594 322.914062 257.753906 322.914062 257.753906 321.292969 C 257.753906 319.671875 260.183594 319.671875 260.183594 321.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.421875 306.132812 C 335.421875 307.753906 332.988281 307.753906 332.988281 306.132812 C 332.988281 304.511719 335.421875 304.511719 335.421875 306.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.160156 254.5625 C 265.160156 256.179688 262.730469 256.179688 262.730469 254.5625 C 262.730469 252.941406 265.160156 252.941406 265.160156 254.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.382812 70.910156 L 164.019531 73.746094 L 160.746094 73.746094 Z M 162.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 409.460938 418.691406 L 411.097656 415.855469 L 407.824219 415.855469 Z M 409.460938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.042969 418.691406 L 235.679688 415.855469 L 232.40625 415.855469 Z M 234.042969 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.644531 418.691406 L 298.28125 415.855469 L 295.007812 415.855469 Z M 296.644531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.414062 418.691406 L 318.050781 415.855469 L 314.777344 415.855469 Z M 316.414062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.527344 213.644531 C 251.527344 215.265625 249.097656 215.265625 249.097656 213.644531 C 249.097656 212.027344 251.527344 212.027344 251.527344 213.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.796875 248.402344 C 251.796875 250.019531 249.367188 250.019531 249.367188 248.402344 C 249.367188 246.78125 251.796875 246.78125 251.796875 248.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.609375 244.820312 C 246.609375 246.441406 244.179688 246.441406 244.179688 244.820312 C 244.179688 243.203125 246.609375 243.203125 246.609375 244.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.472656 293.347656 C 312.472656 294.96875 310.042969 294.96875 310.042969 293.347656 C 310.042969 291.726562 312.472656 291.726562 312.472656 293.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.886719 239.964844 C 271.886719 241.582031 269.457031 241.582031 269.457031 239.964844 C 269.457031 238.34375 271.886719 238.34375 271.886719 239.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.601562 161.6875 C 196.601562 163.304688 194.171875 163.304688 194.171875 161.6875 C 194.171875 160.066406 196.601562 160.066406 196.601562 161.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.195312 287.039062 C 307.195312 288.660156 304.765625 288.660156 304.765625 287.039062 C 304.765625 285.417969 307.195312 285.417969 307.195312 287.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.796875 149.398438 C 274.796875 151.019531 272.367188 151.019531 272.367188 149.398438 C 272.367188 147.777344 274.796875 147.777344 274.796875 149.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.40625 255.671875 C 316.40625 257.292969 313.976562 257.292969 313.976562 255.671875 C 313.976562 254.050781 316.40625 254.050781 316.40625 255.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.519531 198.09375 C 163.519531 199.710938 161.089844 199.710938 161.089844 198.09375 C 161.089844 196.472656 163.519531 196.472656 163.519531 198.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.597656 129.011719 C 181.597656 130.632812 179.167969 130.632812 179.167969 129.011719 C 179.167969 127.390625 181.597656 127.390625 181.597656 129.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.542969 249.441406 C 278.542969 251.0625 276.113281 251.0625 276.113281 249.441406 C 276.113281 247.824219 278.542969 247.824219 278.542969 249.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.144531 299.410156 C 253.144531 301.03125 250.714844 301.03125 250.714844 299.410156 C 250.714844 297.792969 253.144531 297.792969 253.144531 299.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.265625 301.964844 C 229.265625 303.585938 226.835938 303.585938 226.835938 301.964844 C 226.835938 300.347656 229.265625 300.347656 229.265625 301.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.339844 322.859375 C 216.339844 324.480469 213.90625 324.480469 213.90625 322.859375 C 213.90625 321.242188 216.339844 321.242188 216.339844 322.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.292969 193.046875 C 312.292969 194.667969 309.863281 194.667969 309.863281 193.046875 C 309.863281 191.425781 312.292969 191.425781 312.292969 193.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.210938 217.269531 C 189.210938 218.890625 186.78125 218.890625 186.78125 217.269531 C 186.78125 215.652344 189.210938 215.652344 189.210938 217.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.324219 279.289062 C 229.324219 280.910156 226.894531 280.910156 226.894531 279.289062 C 226.894531 277.667969 229.324219 277.667969 229.324219 279.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.5 247.773438 C 319.5 249.394531 317.070312 249.394531 317.070312 247.773438 C 317.070312 246.15625 319.5 246.15625 319.5 247.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.929688 283.347656 C 314.929688 284.96875 312.5 284.96875 312.5 283.347656 C 312.5 281.726562 314.929688 281.726562 314.929688 283.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.371094 161.179688 C 224.371094 162.800781 221.941406 162.800781 221.941406 161.179688 C 221.941406 159.558594 224.371094 159.558594 224.371094 161.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.589844 275.226562 C 285.589844 276.847656 283.160156 276.847656 283.160156 275.226562 C 283.160156 273.605469 285.589844 273.605469 285.589844 275.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.792969 248.855469 C 328.792969 250.476562 326.363281 250.476562 326.363281 248.855469 C 326.363281 247.234375 328.792969 247.234375 328.792969 248.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.835938 274.414062 C 277.835938 276.035156 275.40625 276.035156 275.40625 274.414062 C 275.40625 272.796875 277.835938 272.796875 277.835938 274.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.488281 245.496094 C 209.488281 247.117188 207.058594 247.117188 207.058594 245.496094 C 207.058594 243.878906 209.488281 243.878906 209.488281 245.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.953125 206.46875 C 237.953125 208.085938 235.523438 208.085938 235.523438 206.46875 C 235.523438 204.847656 237.953125 204.847656 237.953125 206.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.683594 269.199219 C 216.683594 270.820312 214.253906 270.820312 214.253906 269.199219 C 214.253906 267.578125 216.683594 267.578125 216.683594 269.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.28125 333.863281 C 295.28125 335.484375 292.851562 335.484375 292.851562 333.863281 C 292.851562 332.242188 295.28125 332.242188 295.28125 333.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.753906 70.910156 L 366.390625 73.746094 L 363.117188 73.746094 Z M 364.753906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.699219 249.730469 C 306.699219 251.351562 304.269531 251.351562 304.269531 249.730469 C 304.269531 248.109375 306.699219 248.109375 306.699219 249.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.589844 287.230469 C 303.589844 288.851562 301.160156 288.851562 301.160156 287.230469 C 301.160156 285.609375 303.589844 285.609375 303.589844 287.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.464844 227.789062 C 315.464844 229.410156 313.035156 229.410156 313.035156 227.789062 C 313.035156 226.167969 315.464844 226.167969 315.464844 227.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.59375 165.878906 C 277.59375 167.5 275.164062 167.5 275.164062 165.878906 C 275.164062 164.257812 277.59375 164.257812 277.59375 165.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.601562 264.148438 C 227.601562 265.769531 225.171875 265.769531 225.171875 264.148438 C 225.171875 262.527344 227.601562 262.527344 227.601562 264.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.753906 222.992188 C 290.753906 224.613281 288.324219 224.613281 288.324219 222.992188 C 288.324219 221.371094 290.753906 221.371094 290.753906 222.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.917969 253.992188 C 267.917969 255.613281 265.488281 255.613281 265.488281 253.992188 C 265.488281 252.371094 267.917969 252.371094 267.917969 253.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.570312 242.519531 C 274.570312 244.140625 272.140625 244.140625 272.140625 242.519531 C 272.140625 240.902344 274.570312 240.902344 274.570312 242.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.582031 70.910156 L 176.21875 73.746094 L 172.945312 73.746094 Z M 174.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.507812 70.910156 L 186.144531 73.746094 L 182.871094 73.746094 Z M 184.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.351562 260.820312 C 266.351562 262.441406 263.921875 262.441406 263.921875 260.820312 C 263.921875 259.199219 266.351562 259.199219 266.351562 260.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.0625 277.347656 C 301.0625 278.96875 298.632812 278.96875 298.632812 277.347656 C 298.632812 275.726562 301.0625 275.726562 301.0625 277.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.3125 129.398438 C 191.3125 131.019531 188.882812 131.019531 188.882812 129.398438 C 188.882812 127.777344 191.3125 127.777344 191.3125 129.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.847656 212.539062 C 270.847656 214.160156 268.417969 214.160156 268.417969 212.539062 C 268.417969 210.921875 270.847656 210.921875 270.847656 212.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.675781 278.761719 C 251.675781 280.382812 249.246094 280.382812 249.246094 278.761719 C 249.246094 277.144531 251.675781 277.144531 251.675781 278.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.5 276.949219 C 264.5 278.570312 262.070312 278.570312 262.070312 276.949219 C 262.070312 275.328125 264.5 275.328125 264.5 276.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.964844 241.6875 C 253.964844 243.308594 251.535156 243.308594 251.535156 241.6875 C 251.535156 240.066406 253.964844 240.066406 253.964844 241.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.996094 113.910156 C 280.996094 115.53125 278.566406 115.53125 278.566406 113.910156 C 278.566406 112.289062 280.996094 112.289062 280.996094 113.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.6875 217.167969 C 273.6875 218.789062 271.257812 218.789062 271.257812 217.167969 C 271.257812 215.546875 273.6875 215.546875 273.6875 217.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.488281 282.5 C 260.488281 284.121094 258.058594 284.121094 258.058594 282.5 C 258.058594 280.878906 260.488281 280.878906 260.488281 282.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.738281 252.175781 C 116.738281 253.796875 114.308594 253.796875 114.308594 252.175781 C 114.308594 250.554688 116.738281 250.554688 116.738281 252.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.601562 240.128906 C 149.601562 241.746094 147.171875 241.746094 147.171875 240.128906 C 147.171875 238.507812 149.601562 238.507812 149.601562 240.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.9375 322.476562 C 294.9375 324.097656 292.507812 324.097656 292.507812 322.476562 C 292.507812 320.855469 294.9375 320.855469 294.9375 322.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.359375 194.664062 C 252.359375 196.28125 249.929688 196.28125 249.929688 194.664062 C 249.929688 193.042969 252.359375 193.042969 252.359375 194.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.578125 257.6875 C 278.578125 259.308594 276.144531 259.308594 276.144531 257.6875 C 276.144531 256.066406 278.578125 256.066406 278.578125 257.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.308594 70.910156 L 153.945312 73.746094 L 150.671875 73.746094 Z M 152.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.082031 318.59375 C 144.082031 320.214844 141.652344 320.214844 141.652344 318.59375 C 141.652344 316.976562 144.082031 316.976562 144.082031 318.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.53125 211.816406 C 180.53125 213.4375 178.101562 213.4375 178.101562 211.816406 C 178.101562 210.195312 180.53125 210.195312 180.53125 211.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.132812 132.988281 C 266.132812 134.609375 263.703125 134.609375 263.703125 132.988281 C 263.703125 131.367188 266.132812 131.367188 266.132812 132.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.503906 257.5625 C 287.503906 259.183594 285.070312 259.183594 285.070312 257.5625 C 285.070312 255.941406 287.503906 255.941406 287.503906 257.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.503906 256.070312 C 254.503906 257.691406 252.074219 257.691406 252.074219 256.070312 C 252.074219 254.449219 254.503906 254.449219 254.503906 256.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.355469 308.679688 C 284.355469 310.296875 281.925781 310.296875 281.925781 308.679688 C 281.925781 307.058594 284.355469 307.058594 284.355469 308.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.125 281.875 C 287.125 283.496094 284.695312 283.496094 284.695312 281.875 C 284.695312 280.253906 287.125 280.253906 287.125 281.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.878906 230.109375 C 226.878906 231.726562 224.449219 231.726562 224.449219 230.109375 C 224.449219 228.488281 226.878906 228.488281 226.878906 230.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.925781 229.988281 C 278.925781 231.609375 276.496094 231.609375 276.496094 229.988281 C 276.496094 228.367188 278.925781 228.367188 278.925781 229.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.546875 273.453125 C 303.546875 275.074219 301.117188 275.074219 301.117188 273.453125 C 301.117188 271.835938 303.546875 271.835938 303.546875 273.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.808594 207.65625 C 212.808594 209.277344 210.378906 209.277344 210.378906 207.65625 C 210.378906 206.035156 212.808594 206.035156 212.808594 207.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.367188 200.828125 C 189.367188 202.449219 186.9375 202.449219 186.9375 200.828125 C 186.9375 199.207031 189.367188 199.207031 189.367188 200.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.65625 118.113281 C 324.65625 119.734375 322.226562 119.734375 322.226562 118.113281 C 322.226562 116.492188 324.65625 116.492188 324.65625 118.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.601562 237.214844 C 287.601562 238.832031 285.171875 238.832031 285.171875 237.214844 C 285.171875 235.59375 287.601562 235.59375 287.601562 237.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.882812 229.828125 C 284.882812 231.449219 282.453125 231.449219 282.453125 229.828125 C 282.453125 228.207031 284.882812 228.207031 284.882812 229.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.167969 70.910156 L 148.804688 73.746094 L 145.53125 73.746094 Z M 147.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.820312 214.378906 C 176.820312 216 174.390625 216 174.390625 214.378906 C 174.390625 212.761719 176.820312 212.761719 176.820312 214.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.761719 186.359375 C 260.761719 187.980469 258.332031 187.980469 258.332031 186.359375 C 258.332031 184.738281 260.761719 184.738281 260.761719 186.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.359375 260.816406 C 316.359375 262.4375 313.929688 262.4375 313.929688 260.816406 C 313.929688 259.195312 316.359375 259.195312 316.359375 260.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.074219 281.082031 C 270.074219 282.703125 267.644531 282.703125 267.644531 281.082031 C 267.644531 279.460938 270.074219 279.460938 270.074219 281.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.949219 207.832031 C 294.949219 209.453125 292.519531 209.453125 292.519531 207.832031 C 292.519531 206.210938 294.949219 206.210938 294.949219 207.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.703125 70.910156 L 231.339844 73.746094 L 228.066406 73.746094 Z M 229.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.152344 88.011719 C 245.152344 89.632812 242.722656 89.632812 242.722656 88.011719 C 242.722656 86.390625 245.152344 86.390625 245.152344 88.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.28125 223.84375 C 257.28125 225.460938 254.851562 225.460938 254.851562 223.84375 C 254.851562 222.222656 257.28125 222.222656 257.28125 223.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.621094 227.789062 C 281.621094 229.410156 279.191406 229.410156 279.191406 227.789062 C 279.191406 226.167969 281.621094 226.167969 281.621094 227.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.105469 394.425781 C 306.105469 396.046875 303.675781 396.046875 303.675781 394.425781 C 303.675781 392.804688 306.105469 392.804688 306.105469 394.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.652344 208.175781 C 250.652344 209.796875 248.222656 209.796875 248.222656 208.175781 C 248.222656 206.558594 250.652344 206.558594 250.652344 208.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.015625 244.347656 C 272.015625 245.96875 269.585938 245.96875 269.585938 244.347656 C 269.585938 242.726562 272.015625 242.726562 272.015625 244.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.910156 316.25 C 307.910156 317.867188 305.480469 317.867188 305.480469 316.25 C 305.480469 314.628906 307.910156 314.628906 307.910156 316.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.25 293.347656 C 265.25 294.96875 262.820312 294.96875 262.820312 293.347656 C 262.820312 291.726562 265.25 291.726562 265.25 293.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.558594 100.359375 C 139.558594 101.980469 137.128906 101.980469 137.128906 100.359375 C 137.128906 98.742188 139.558594 98.742188 139.558594 100.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.804688 70.910156 L 146.441406 73.746094 L 143.171875 73.746094 Z M 144.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.714844 70.910156 L 131.351562 73.746094 L 128.078125 73.746094 Z M 129.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.101562 231.0625 C 265.101562 232.683594 262.671875 232.683594 262.671875 231.0625 C 262.671875 229.445312 265.101562 229.445312 265.101562 231.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.507812 222.113281 C 241.507812 223.734375 239.074219 223.734375 239.074219 222.113281 C 239.074219 220.496094 241.507812 220.496094 241.507812 222.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.203125 218.089844 C 200.203125 219.710938 197.773438 219.710938 197.773438 218.089844 C 197.773438 216.472656 200.203125 216.472656 200.203125 218.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.894531 322.082031 C 220.894531 323.703125 218.464844 323.703125 218.464844 322.082031 C 218.464844 320.464844 220.894531 320.464844 220.894531 322.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.785156 235.226562 C 321.785156 236.847656 319.355469 236.847656 319.355469 235.226562 C 319.355469 233.609375 321.785156 233.609375 321.785156 235.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.179688 238.496094 C 212.179688 240.117188 209.75 240.117188 209.75 238.496094 C 209.75 236.875 212.179688 236.875 212.179688 238.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.078125 200.363281 C 123.078125 201.980469 120.648438 201.980469 120.648438 200.363281 C 120.648438 198.742188 123.078125 198.742188 123.078125 200.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.070312 334.160156 C 245.070312 335.78125 242.640625 335.78125 242.640625 334.160156 C 242.640625 332.542969 245.070312 332.542969 245.070312 334.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.59375 304.15625 C 238.59375 305.777344 236.164062 305.777344 236.164062 304.15625 C 236.164062 302.535156 238.59375 302.535156 238.59375 304.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.125 243.300781 C 314.125 244.917969 311.695312 244.917969 311.695312 243.300781 C 311.695312 241.679688 314.125 241.679688 314.125 243.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.277344 254.324219 C 267.277344 255.941406 264.847656 255.941406 264.847656 254.324219 C 264.847656 252.703125 267.277344 252.703125 267.277344 254.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.808594 286.917969 C 331.808594 288.535156 329.378906 288.535156 329.378906 286.917969 C 329.378906 285.296875 331.808594 285.296875 331.808594 286.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.199219 350.863281 C 135.199219 352.484375 132.769531 352.484375 132.769531 350.863281 C 132.769531 349.246094 135.199219 349.246094 135.199219 350.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.035156 293.125 C 185.035156 294.746094 182.605469 294.746094 182.605469 293.125 C 182.605469 291.503906 185.035156 291.503906 185.035156 293.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.582031 418.691406 L 265.214844 415.855469 L 261.945312 415.855469 Z M 263.582031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.09375 70.910156 L 168.730469 73.746094 L 165.457031 73.746094 Z M 167.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.5625 310.53125 C 272.5625 312.148438 270.132812 312.148438 270.132812 310.53125 C 270.132812 308.910156 272.5625 308.910156 272.5625 310.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.453125 238.519531 C 317.453125 240.140625 315.023438 240.140625 315.023438 238.519531 C 315.023438 236.902344 317.453125 236.902344 317.453125 238.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.207031 418.691406 L 147.84375 415.855469 L 144.570312 415.855469 Z M 146.207031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.835938 108.484375 C 280.835938 110.105469 278.40625 110.105469 278.40625 108.484375 C 278.40625 106.863281 280.835938 106.863281 280.835938 108.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.746094 401.125 C 295.746094 402.742188 293.316406 402.742188 293.316406 401.125 C 293.316406 399.503906 295.746094 399.503906 295.746094 401.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.25 137.839844 C 250.25 139.460938 247.820312 139.460938 247.820312 137.839844 C 247.820312 136.222656 250.25 136.222656 250.25 137.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.125 171.285156 C 238.125 172.902344 235.695312 172.902344 235.695312 171.285156 C 235.695312 169.664062 238.125 169.664062 238.125 171.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.679688 280.71875 C 250.679688 282.339844 248.25 282.339844 248.25 280.71875 C 248.25 279.097656 250.679688 279.097656 250.679688 280.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.730469 195.433594 C 278.730469 197.054688 276.300781 197.054688 276.300781 195.433594 C 276.300781 193.8125 278.730469 193.8125 278.730469 195.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.796875 257.082031 C 178.796875 258.703125 176.367188 258.703125 176.367188 257.082031 C 176.367188 255.460938 178.796875 255.460938 178.796875 257.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.230469 336.605469 C 212.230469 338.226562 209.800781 338.226562 209.800781 336.605469 C 209.800781 334.988281 212.230469 334.988281 212.230469 336.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.515625 267.285156 C 273.515625 268.90625 271.085938 268.90625 271.085938 267.285156 C 271.085938 265.667969 273.515625 265.667969 273.515625 267.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 180.148438 81.90625 C 180.148438 83.527344 177.71875 83.527344 177.71875 81.90625 C 177.71875 80.289062 180.148438 80.289062 180.148438 81.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.726562 270.378906 C 267.726562 272 265.296875 272 265.296875 270.378906 C 265.296875 268.757812 267.726562 268.757812 267.726562 270.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.039062 418.691406 L 263.675781 415.855469 L 260.402344 415.855469 Z M 262.039062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.652344 293.511719 C 301.652344 295.132812 299.222656 295.132812 299.222656 293.511719 C 299.222656 291.890625 301.652344 291.890625 301.652344 293.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.148438 336.582031 C 264.148438 338.199219 261.71875 338.199219 261.71875 336.582031 C 261.71875 334.960938 264.148438 334.960938 264.148438 336.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 404.914062 182.789062 C 404.914062 184.40625 402.484375 184.40625 402.484375 182.789062 C 402.484375 181.167969 404.914062 181.167969 404.914062 182.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.257812 70.910156 L 180.894531 73.746094 L 177.621094 73.746094 Z M 179.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.746094 341.558594 C 301.746094 343.179688 299.316406 343.179688 299.316406 341.558594 C 299.316406 339.941406 301.746094 339.941406 301.746094 341.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.996094 358.222656 C 248.996094 359.839844 246.566406 359.839844 246.566406 358.222656 C 246.566406 356.601562 248.996094 356.601562 248.996094 358.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.894531 320.5625 C 192.894531 322.183594 190.464844 322.183594 190.464844 320.5625 C 190.464844 318.945312 192.894531 318.945312 192.894531 320.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.210938 289.886719 C 248.210938 291.507812 245.78125 291.507812 245.78125 289.886719 C 245.78125 288.265625 248.210938 288.265625 248.210938 289.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.375 131.730469 C 295.375 133.347656 292.945312 133.347656 292.945312 131.730469 C 292.945312 130.109375 295.375 130.109375 295.375 131.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.433594 245.507812 C 245.433594 247.128906 243.003906 247.128906 243.003906 245.507812 C 243.003906 243.886719 245.433594 243.886719 245.433594 245.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.75 248.519531 C 220.75 250.136719 218.320312 250.136719 218.320312 248.519531 C 218.320312 246.898438 220.75 246.898438 220.75 248.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.804688 278.777344 C 188.804688 280.398438 186.375 280.398438 186.375 278.777344 C 186.375 277.15625 188.804688 277.15625 188.804688 278.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.234375 276.871094 C 265.234375 278.488281 262.804688 278.488281 262.804688 276.871094 C 262.804688 275.25 265.234375 275.25 265.234375 276.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.789062 235.765625 C 239.789062 237.382812 237.359375 237.382812 237.359375 235.765625 C 237.359375 234.144531 239.789062 234.144531 239.789062 235.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.308594 218.757812 C 246.308594 220.378906 243.878906 220.378906 243.878906 218.757812 C 243.878906 217.136719 246.308594 217.136719 246.308594 218.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.304688 236.71875 C 180.304688 238.339844 177.875 238.339844 177.875 236.71875 C 177.875 235.097656 180.304688 235.097656 180.304688 236.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.199219 281.015625 C 194.199219 282.632812 191.769531 282.632812 191.769531 281.015625 C 191.769531 279.394531 194.199219 279.394531 194.199219 281.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.523438 239.449219 C 292.523438 241.066406 290.09375 241.066406 290.09375 239.449219 C 290.09375 237.828125 292.523438 237.828125 292.523438 239.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.636719 238.851562 C 272.636719 240.472656 270.207031 240.472656 270.207031 238.851562 C 270.207031 237.234375 272.636719 237.234375 272.636719 238.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.75 264.460938 C 252.75 266.082031 250.320312 266.082031 250.320312 264.460938 C 250.320312 262.84375 252.75 262.84375 252.75 264.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 182.359375 86.550781 C 182.359375 88.167969 179.929688 88.167969 179.929688 86.550781 C 179.929688 84.929688 182.359375 84.929688 182.359375 86.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.832031 132.109375 C 285.832031 133.730469 283.402344 133.730469 283.402344 132.109375 C 283.402344 130.492188 285.832031 130.492188 285.832031 132.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 342.1875 310.578125 C 342.1875 312.199219 339.757812 312.199219 339.757812 310.578125 C 339.757812 308.957031 342.1875 308.957031 342.1875 310.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.929688 259.265625 C 252.929688 260.882812 250.5 260.882812 250.5 259.265625 C 250.5 257.644531 252.929688 257.644531 252.929688 259.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.375 263.875 C 163.375 265.496094 160.945312 265.496094 160.945312 263.875 C 160.945312 262.253906 163.375 262.253906 163.375 263.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 341.015625 303.34375 C 341.015625 304.964844 338.585938 304.964844 338.585938 303.34375 C 338.585938 301.726562 341.015625 301.726562 341.015625 303.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.457031 343.980469 C 256.457031 345.597656 254.027344 345.597656 254.027344 343.980469 C 254.027344 342.359375 256.457031 342.359375 256.457031 343.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.660156 328.914062 C 252.660156 330.535156 250.230469 330.535156 250.230469 328.914062 C 250.230469 327.292969 252.660156 327.292969 252.660156 328.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.542969 308.363281 C 261.542969 309.984375 259.113281 309.984375 259.113281 308.363281 C 259.113281 306.742188 261.542969 306.742188 261.542969 308.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.890625 418.691406 L 147.527344 415.855469 L 144.253906 415.855469 Z M 145.890625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.0625 317.5 C 262.0625 319.121094 259.632812 319.121094 259.632812 317.5 C 259.632812 315.878906 262.0625 315.878906 262.0625 317.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.425781 331.183594 C 242.425781 332.804688 239.996094 332.804688 239.996094 331.183594 C 239.996094 329.5625 242.425781 329.5625 242.425781 331.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.351562 261.109375 C 276.351562 262.730469 273.921875 262.730469 273.921875 261.109375 C 273.921875 259.492188 276.351562 259.492188 276.351562 261.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.042969 263.5625 C 176.042969 265.183594 173.613281 265.183594 173.613281 263.5625 C 173.613281 261.941406 176.042969 261.941406 176.042969 263.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.878906 147.007812 C 140.878906 148.628906 138.449219 148.628906 138.449219 147.007812 C 138.449219 145.386719 140.878906 145.386719 140.878906 147.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.65625 241.621094 C 270.65625 243.242188 268.222656 243.242188 268.222656 241.621094 C 268.222656 240.003906 270.65625 240.003906 270.65625 241.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.097656 217.019531 C 256.097656 218.640625 253.667969 218.640625 253.667969 217.019531 C 253.667969 215.398438 256.097656 215.398438 256.097656 217.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.0625 160.433594 C 249.0625 162.050781 246.632812 162.050781 246.632812 160.433594 C 246.632812 158.8125 249.0625 158.8125 249.0625 160.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.917969 235.210938 C 266.917969 236.832031 264.488281 236.832031 264.488281 235.210938 C 264.488281 233.589844 266.917969 233.589844 266.917969 235.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.289062 267.1875 C 215.289062 268.808594 212.859375 268.808594 212.859375 267.1875 C 212.859375 265.566406 215.289062 265.566406 215.289062 267.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.457031 238.648438 C 270.457031 240.269531 268.027344 240.269531 268.027344 238.648438 C 268.027344 237.03125 270.457031 237.03125 270.457031 238.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.839844 291.976562 C 281.839844 293.597656 279.410156 293.597656 279.410156 291.976562 C 279.410156 290.355469 281.839844 290.355469 281.839844 291.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.375 284.527344 C 164.375 286.144531 161.945312 286.144531 161.945312 284.527344 C 161.945312 282.90625 164.375 282.90625 164.375 284.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.042969 270.371094 C 180.042969 271.988281 177.613281 271.988281 177.613281 270.371094 C 177.613281 268.75 180.042969 268.75 180.042969 270.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.078125 259.800781 C 262.078125 261.421875 259.644531 261.421875 259.644531 259.800781 C 259.644531 258.183594 262.078125 258.183594 262.078125 259.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.808594 373.648438 C 275.808594 375.269531 273.378906 375.269531 273.378906 373.648438 C 273.378906 372.027344 275.808594 372.027344 275.808594 373.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.46875 275.984375 C 243.46875 277.601562 241.039062 277.601562 241.039062 275.984375 C 241.039062 274.363281 243.46875 274.363281 243.46875 275.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.730469 70.910156 L 117.367188 73.746094 L 114.09375 73.746094 Z M 115.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.121094 319.589844 C 124.121094 321.210938 121.691406 321.210938 121.691406 319.589844 C 121.691406 317.96875 124.121094 317.96875 124.121094 319.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.273438 199.980469 C 123.273438 201.601562 120.84375 201.601562 120.84375 199.980469 C 120.84375 198.363281 123.273438 198.363281 123.273438 199.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.253906 94.988281 C 122.253906 96.609375 119.824219 96.609375 119.824219 94.988281 C 119.824219 93.367188 122.253906 93.367188 122.253906 94.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 357.085938 270.363281 C 357.085938 271.980469 354.65625 271.980469 354.65625 270.363281 C 354.65625 268.742188 357.085938 268.742188 357.085938 270.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.378906 70.910156 L 267.015625 73.746094 L 263.742188 73.746094 Z M 265.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.121094 245.882812 C 288.121094 247.503906 285.691406 247.503906 285.691406 245.882812 C 285.691406 244.265625 288.121094 244.265625 288.121094 245.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.25 255.980469 C 295.25 257.601562 292.820312 257.601562 292.820312 255.980469 C 292.820312 254.359375 295.25 254.359375 295.25 255.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.578125 70.910156 L 138.214844 73.746094 L 134.941406 73.746094 Z M 136.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.59375 341.605469 C 139.59375 343.222656 137.164062 343.222656 137.164062 341.605469 C 137.164062 339.984375 139.59375 339.984375 139.59375 341.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.835938 295.492188 C 239.835938 297.113281 237.40625 297.113281 237.40625 295.492188 C 237.40625 293.875 239.835938 293.875 239.835938 295.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.117188 298.042969 C 265.117188 299.664062 262.6875 299.664062 262.6875 298.042969 C 262.6875 296.425781 265.117188 296.425781 265.117188 298.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.339844 230.101562 C 213.339844 231.71875 210.910156 231.71875 210.910156 230.101562 C 210.910156 228.480469 213.339844 228.480469 213.339844 230.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.394531 359.671875 C 198.394531 361.292969 195.964844 361.292969 195.964844 359.671875 C 195.964844 358.054688 198.394531 358.054688 198.394531 359.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.535156 275.292969 C 249.535156 276.914062 247.105469 276.914062 247.105469 275.292969 C 247.105469 273.671875 249.535156 273.671875 249.535156 275.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.519531 231.566406 C 264.519531 233.1875 262.089844 233.1875 262.089844 231.566406 C 262.089844 229.945312 264.519531 229.945312 264.519531 231.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.148438 267.503906 C 168.148438 269.121094 165.71875 269.121094 165.71875 267.503906 C 165.71875 265.882812 168.148438 265.882812 168.148438 267.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.777344 250.863281 C 248.777344 252.480469 246.347656 252.480469 246.347656 250.863281 C 246.347656 249.242188 248.777344 249.242188 248.777344 250.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.855469 70.910156 L 216.492188 73.746094 L 213.21875 73.746094 Z M 214.855469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.167969 130.066406 C 262.167969 131.6875 259.738281 131.6875 259.738281 130.066406 C 259.738281 128.445312 262.167969 128.445312 262.167969 130.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.761719 319.683594 C 269.761719 321.304688 267.332031 321.304688 267.332031 319.683594 C 267.332031 318.066406 269.761719 318.066406 269.761719 319.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.433594 233.167969 C 226.433594 234.789062 224.003906 234.789062 224.003906 233.167969 C 224.003906 231.546875 226.433594 231.546875 226.433594 233.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.328125 265.875 C 224.328125 267.496094 221.898438 267.496094 221.898438 265.875 C 221.898438 264.257812 224.328125 264.257812 224.328125 265.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.640625 214.019531 C 304.640625 215.640625 302.210938 215.640625 302.210938 214.019531 C 302.210938 212.402344 304.640625 212.402344 304.640625 214.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.027344 394.964844 C 289.027344 396.582031 286.597656 396.582031 286.597656 394.964844 C 286.597656 393.34375 289.027344 393.34375 289.027344 394.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.691406 418.691406 L 351.328125 415.855469 L 348.054688 415.855469 Z M 349.691406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 326.226562 418.691406 L 327.863281 415.855469 L 324.589844 415.855469 Z M 326.226562 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 364.511719 418.691406 L 366.148438 415.855469 L 362.878906 415.855469 Z M 364.511719 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 391.984375 418.691406 L 393.621094 415.855469 L 390.347656 415.855469 Z M 391.984375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.152344 300.40625 C 301.152344 302.027344 298.722656 302.027344 298.722656 300.40625 C 298.722656 298.785156 301.152344 298.785156 301.152344 300.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.726562 160.574219 C 226.726562 162.191406 224.296875 162.191406 224.296875 160.574219 C 224.296875 158.953125 226.726562 158.953125 226.726562 160.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.460938 70.910156 L 167.097656 73.746094 L 163.824219 73.746094 Z M 165.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.074219 75.234375 C 261.074219 76.855469 258.644531 76.855469 258.644531 75.234375 C 258.644531 73.617188 261.074219 73.617188 261.074219 75.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.738281 229.652344 C 243.738281 231.269531 241.308594 231.269531 241.308594 229.652344 C 241.308594 228.03125 243.738281 228.03125 243.738281 229.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.425781 294.121094 C 276.425781 295.742188 273.996094 295.742188 273.996094 294.121094 C 273.996094 292.5 276.425781 292.5 276.425781 294.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.511719 224.226562 C 225.511719 225.847656 223.082031 225.847656 223.082031 224.226562 C 223.082031 222.605469 225.511719 222.605469 225.511719 224.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.292969 418.691406 L 113.929688 415.855469 L 110.660156 415.855469 Z M 112.292969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.4375 319.5 C 168.4375 321.117188 166.007812 321.117188 166.007812 319.5 C 166.007812 317.878906 168.4375 317.878906 168.4375 319.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.152344 85.347656 C 259.152344 86.96875 256.722656 86.96875 256.722656 85.347656 C 256.722656 83.726562 259.152344 83.726562 259.152344 85.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.308594 200.292969 C 154.308594 201.914062 151.878906 201.914062 151.878906 200.292969 C 151.878906 198.671875 154.308594 198.671875 154.308594 200.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.546875 108.742188 C 224.546875 110.363281 222.117188 110.363281 222.117188 108.742188 C 222.117188 107.125 224.546875 107.125 224.546875 108.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.613281 108.941406 C 232.613281 110.5625 230.183594 110.5625 230.183594 108.941406 C 230.183594 107.324219 232.613281 107.324219 232.613281 108.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 369.09375 292.003906 C 369.09375 293.621094 366.664062 293.621094 366.664062 292.003906 C 366.664062 290.382812 369.09375 290.382812 369.09375 292.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.953125 266.507812 C 254.953125 268.128906 252.523438 268.128906 252.523438 266.507812 C 252.523438 264.886719 254.953125 264.886719 254.953125 266.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.578125 201.445312 C 264.578125 203.066406 262.144531 203.066406 262.144531 201.445312 C 262.144531 199.824219 264.578125 199.824219 264.578125 201.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.734375 70.910156 L 287.371094 73.746094 L 284.097656 73.746094 Z M 285.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.449219 301.019531 C 315.449219 302.636719 313.019531 302.636719 313.019531 301.019531 C 313.019531 299.398438 315.449219 299.398438 315.449219 301.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.027344 385.574219 C 248.027344 387.195312 245.597656 387.195312 245.597656 385.574219 C 245.597656 383.953125 248.027344 383.953125 248.027344 385.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.945312 408.488281 C 273.945312 410.109375 271.515625 410.109375 271.515625 408.488281 C 271.515625 406.871094 273.945312 406.871094 273.945312 408.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.089844 401.417969 C 267.089844 403.039062 264.660156 403.039062 264.660156 401.417969 C 264.660156 399.796875 267.089844 399.796875 267.089844 401.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.164062 341.449219 C 226.164062 343.066406 223.734375 343.066406 223.734375 341.449219 C 223.734375 339.828125 226.164062 339.828125 226.164062 341.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.15625 292.660156 C 241.15625 294.277344 238.722656 294.277344 238.722656 292.660156 C 238.722656 291.039062 241.15625 291.039062 241.15625 292.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.324219 224.503906 C 200.324219 226.125 197.894531 226.125 197.894531 224.503906 C 197.894531 222.882812 200.324219 222.882812 200.324219 224.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.207031 282.476562 C 197.207031 284.09375 194.777344 284.09375 194.777344 282.476562 C 194.777344 280.855469 197.207031 280.855469 197.207031 282.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.097656 167.035156 C 154.097656 168.65625 151.667969 168.65625 151.667969 167.035156 C 151.667969 165.414062 154.097656 165.414062 154.097656 167.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.449219 278.542969 C 228.449219 280.164062 226.019531 280.164062 226.019531 278.542969 C 226.019531 276.921875 228.449219 276.921875 228.449219 278.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.011719 311.585938 C 268.011719 313.207031 265.582031 313.207031 265.582031 311.585938 C 265.582031 309.96875 268.011719 309.96875 268.011719 311.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.691406 305.75 C 234.691406 307.371094 232.261719 307.371094 232.261719 305.75 C 232.261719 304.128906 234.691406 304.128906 234.691406 305.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.050781 228.949219 C 301.050781 230.570312 298.621094 230.570312 298.621094 228.949219 C 298.621094 227.332031 301.050781 227.332031 301.050781 228.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.789062 418.691406 L 191.425781 415.855469 L 188.152344 415.855469 Z M 189.789062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.765625 341.527344 C 218.765625 343.148438 216.335938 343.148438 216.335938 341.527344 C 216.335938 339.910156 218.765625 339.910156 218.765625 341.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.8125 243.96875 C 254.8125 245.589844 252.382812 245.589844 252.382812 243.96875 C 252.382812 242.351562 254.8125 242.351562 254.8125 243.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.546875 268.320312 C 212.546875 269.941406 210.117188 269.941406 210.117188 268.320312 C 210.117188 266.703125 212.546875 266.703125 212.546875 268.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.078125 294.394531 C 285.078125 296.015625 282.648438 296.015625 282.648438 294.394531 C 282.648438 292.773438 285.078125 292.773438 285.078125 294.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.941406 70.910156 L 266.578125 73.746094 L 263.304688 73.746094 Z M 264.941406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.640625 70.910156 L 285.277344 73.746094 L 282.003906 73.746094 Z M 283.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.257812 269.121094 C 117.257812 270.742188 114.828125 270.742188 114.828125 269.121094 C 114.828125 267.5 117.257812 267.5 117.257812 269.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.316406 138.570312 C 243.316406 140.191406 240.886719 140.191406 240.886719 138.570312 C 240.886719 136.949219 243.316406 136.949219 243.316406 138.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.96875 160.808594 C 219.96875 162.425781 217.539062 162.425781 217.539062 160.808594 C 217.539062 159.1875 219.96875 159.1875 219.96875 160.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.167969 203.855469 C 262.167969 205.472656 259.738281 205.472656 259.738281 203.855469 C 259.738281 202.234375 262.167969 202.234375 262.167969 203.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.632812 70.910156 L 144.269531 73.746094 L 141 73.746094 Z M 142.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.5 312.796875 C 178.5 314.417969 176.070312 314.417969 176.070312 312.796875 C 176.070312 311.179688 178.5 311.179688 178.5 312.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.167969 236.691406 C 201.167969 238.308594 198.738281 238.308594 198.738281 236.691406 C 198.738281 235.070312 201.167969 235.070312 201.167969 236.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.183594 168.46875 C 264.183594 170.089844 261.753906 170.089844 261.753906 168.46875 C 261.753906 166.847656 264.183594 166.847656 264.183594 168.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.308594 268.496094 C 266.308594 270.117188 263.878906 270.117188 263.878906 268.496094 C 263.878906 266.875 266.308594 266.875 266.308594 268.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.964844 274.917969 C 263.964844 276.539062 261.535156 276.539062 261.535156 274.917969 C 261.535156 273.296875 263.964844 273.296875 263.964844 274.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.644531 227.507812 C 221.644531 229.128906 219.210938 229.128906 219.210938 227.507812 C 219.210938 225.886719 221.644531 225.886719 221.644531 227.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.921875 300.496094 C 338.921875 302.117188 336.492188 302.117188 336.492188 300.496094 C 336.492188 298.875 338.921875 298.875 338.921875 300.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.253906 250.789062 C 183.253906 252.410156 180.824219 252.410156 180.824219 250.789062 C 180.824219 249.171875 183.253906 249.171875 183.253906 250.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.164062 229.710938 C 315.164062 231.328125 312.734375 231.328125 312.734375 229.710938 C 312.734375 228.089844 315.164062 228.089844 315.164062 229.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.976562 224.511719 C 256.976562 226.132812 254.546875 226.132812 254.546875 224.511719 C 254.546875 222.890625 256.976562 222.890625 256.976562 224.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.3125 157.375 C 240.3125 158.996094 237.882812 158.996094 237.882812 157.375 C 237.882812 155.753906 240.3125 155.753906 240.3125 157.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.828125 309.039062 C 263.828125 310.65625 261.398438 310.65625 261.398438 309.039062 C 261.398438 307.417969 263.828125 307.417969 263.828125 309.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.816406 274.195312 C 228.816406 275.816406 226.386719 275.816406 226.386719 274.195312 C 226.386719 272.574219 228.816406 272.574219 228.816406 274.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.917969 279.761719 C 132.917969 281.382812 130.488281 281.382812 130.488281 279.761719 C 130.488281 278.140625 132.917969 278.140625 132.917969 279.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.476562 103.046875 C 150.476562 104.664062 148.046875 104.664062 148.046875 103.046875 C 148.046875 101.425781 150.476562 101.425781 150.476562 103.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.832031 142.464844 C 252.832031 144.085938 250.402344 144.085938 250.402344 142.464844 C 250.402344 140.84375 252.832031 140.84375 252.832031 142.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.964844 70.910156 L 285.601562 73.746094 L 282.328125 73.746094 Z M 283.964844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.871094 418.691406 L 190.507812 415.855469 L 187.238281 415.855469 Z M 188.871094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.488281 129.746094 C 279.488281 131.367188 277.058594 131.367188 277.058594 129.746094 C 277.058594 128.128906 279.488281 128.128906 279.488281 129.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.566406 70.910156 L 159.203125 73.746094 L 155.929688 73.746094 Z M 157.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.894531 292.628906 C 224.894531 294.25 222.464844 294.25 222.464844 292.628906 C 222.464844 291.007812 224.894531 291.007812 224.894531 292.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.113281 264.59375 C 241.113281 266.214844 238.683594 266.214844 238.683594 264.59375 C 238.683594 262.976562 241.113281 262.976562 241.113281 264.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.722656 214.261719 C 228.722656 215.882812 226.289062 215.882812 226.289062 214.261719 C 226.289062 212.640625 228.722656 212.640625 228.722656 214.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.246094 298.046875 C 304.246094 299.667969 301.816406 299.667969 301.816406 298.046875 C 301.816406 296.429688 304.246094 296.429688 304.246094 298.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.539062 321.476562 C 233.539062 323.09375 231.109375 323.09375 231.109375 321.476562 C 231.109375 319.855469 233.539062 319.855469 233.539062 321.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.78125 70.910156 L 159.417969 73.746094 L 156.144531 73.746094 Z M 157.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 182.558594 412.304688 C 182.558594 413.925781 180.128906 413.925781 180.128906 412.304688 C 180.128906 410.6875 182.558594 410.6875 182.558594 412.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.839844 384.726562 C 271.839844 386.34375 269.410156 386.34375 269.410156 384.726562 C 269.410156 383.105469 271.839844 383.105469 271.839844 384.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.492188 260.953125 C 223.492188 262.570312 221.0625 262.570312 221.0625 260.953125 C 221.0625 259.332031 223.492188 259.332031 223.492188 260.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.527344 210 C 345.527344 211.621094 343.097656 211.621094 343.097656 210 C 343.097656 208.382812 345.527344 208.382812 345.527344 210 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.777344 241.777344 C 248.777344 243.398438 246.347656 243.398438 246.347656 241.777344 C 246.347656 240.160156 248.777344 240.160156 248.777344 241.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.546875 232.910156 C 234.546875 234.53125 232.117188 234.53125 232.117188 232.910156 C 232.117188 231.289062 234.546875 231.289062 234.546875 232.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.730469 70.910156 L 203.367188 73.746094 L 200.09375 73.746094 Z M 201.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.375 216.242188 C 272.375 217.863281 269.945312 217.863281 269.945312 216.242188 C 269.945312 214.625 272.375 214.625 272.375 216.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.707031 301.015625 C 258.707031 302.636719 256.277344 302.636719 256.277344 301.015625 C 256.277344 299.394531 258.707031 299.394531 258.707031 301.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.179688 201.378906 C 254.179688 203 251.75 203 251.75 201.378906 C 251.75 199.761719 254.179688 199.761719 254.179688 201.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.050781 325.085938 C 218.050781 326.707031 215.621094 326.707031 215.621094 325.085938 C 215.621094 323.464844 218.050781 323.464844 218.050781 325.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.339844 70.910156 L 144.976562 73.746094 L 141.707031 73.746094 Z M 143.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 301.828125 70.910156 L 303.464844 73.746094 L 300.191406 73.746094 Z M 301.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.941406 241.472656 C 238.941406 243.09375 236.511719 243.09375 236.511719 241.472656 C 236.511719 239.851562 238.941406 239.851562 238.941406 241.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.164062 285.929688 C 179.164062 287.550781 176.734375 287.550781 176.734375 285.929688 C 176.734375 284.308594 179.164062 284.308594 179.164062 285.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.390625 240.054688 C 231.390625 241.675781 228.960938 241.675781 228.960938 240.054688 C 228.960938 238.4375 231.390625 238.4375 231.390625 240.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.316406 156.78125 C 282.316406 158.398438 279.886719 158.398438 279.886719 156.78125 C 279.886719 155.160156 282.316406 155.160156 282.316406 156.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.058594 70.910156 L 266.695312 73.746094 L 263.421875 73.746094 Z M 265.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.664062 173.933594 C 268.664062 175.554688 266.234375 175.554688 266.234375 173.933594 C 266.234375 172.316406 268.664062 172.316406 268.664062 173.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279 257.121094 C 279 258.742188 276.570312 258.742188 276.570312 257.121094 C 276.570312 255.5 279 255.5 279 257.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.148438 182.449219 C 257.148438 184.070312 254.71875 184.070312 254.71875 182.449219 C 254.71875 180.828125 257.148438 180.828125 257.148438 182.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.96875 258.625 C 268.96875 260.246094 266.535156 260.246094 266.535156 258.625 C 266.535156 257.007812 268.96875 257.007812 268.96875 258.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.535156 266.976562 C 219.535156 268.597656 217.105469 268.597656 217.105469 266.976562 C 217.105469 265.355469 219.535156 265.355469 219.535156 266.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.53125 229.265625 C 275.53125 230.882812 273.101562 230.882812 273.101562 229.265625 C 273.101562 227.644531 275.53125 227.644531 275.53125 229.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.679688 70.910156 L 167.316406 73.746094 L 164.042969 73.746094 Z M 165.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.480469 307.316406 C 275.480469 308.933594 273.050781 308.933594 273.050781 307.316406 C 273.050781 305.695312 275.480469 305.695312 275.480469 307.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 365.171875 248.070312 C 365.171875 249.691406 362.742188 249.691406 362.742188 248.070312 C 362.742188 246.449219 365.171875 246.449219 365.171875 248.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.683594 231.882812 C 275.683594 233.503906 273.253906 233.503906 273.253906 231.882812 C 273.253906 230.261719 275.683594 230.261719 275.683594 231.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.410156 284.238281 C 275.410156 285.855469 272.980469 285.855469 272.980469 284.238281 C 272.980469 282.617188 275.410156 282.617188 275.410156 284.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.824219 254.765625 C 292.824219 256.386719 290.394531 256.386719 290.394531 254.765625 C 290.394531 253.144531 292.824219 253.144531 292.824219 254.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.644531 225.992188 C 270.644531 227.613281 268.214844 227.613281 268.214844 225.992188 C 268.214844 224.371094 270.644531 224.371094 270.644531 225.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.117188 221.332031 C 274.117188 222.953125 271.6875 222.953125 271.6875 221.332031 C 271.6875 219.714844 274.117188 219.714844 274.117188 221.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.222656 383.710938 C 255.222656 385.332031 252.792969 385.332031 252.792969 383.710938 C 252.792969 382.089844 255.222656 382.089844 255.222656 383.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.613281 70.910156 L 181.25 73.746094 L 177.976562 73.746094 Z M 179.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.496094 144.964844 C 143.496094 146.585938 141.066406 146.585938 141.066406 144.964844 C 141.066406 143.347656 143.496094 143.347656 143.496094 144.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.308594 70.910156 L 308.945312 73.746094 L 305.671875 73.746094 Z M 307.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.0625 178.394531 C 241.0625 180.015625 238.632812 180.015625 238.632812 178.394531 C 238.632812 176.777344 241.0625 176.777344 241.0625 178.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.472656 174.011719 C 260.472656 175.632812 258.042969 175.632812 258.042969 174.011719 C 258.042969 172.390625 260.472656 172.390625 260.472656 174.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.28125 218.453125 C 290.28125 220.070312 287.851562 220.070312 287.851562 218.453125 C 287.851562 216.832031 290.28125 216.832031 290.28125 218.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.355469 185.464844 C 267.355469 187.085938 264.925781 187.085938 264.925781 185.464844 C 264.925781 183.847656 267.355469 183.847656 267.355469 185.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.007812 256.714844 C 304.007812 258.335938 301.578125 258.335938 301.578125 256.714844 C 301.578125 255.097656 304.007812 255.097656 304.007812 256.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.441406 70.910156 L 160.078125 73.746094 L 156.804688 73.746094 Z M 158.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.34375 323.621094 C 264.34375 325.242188 261.914062 325.242188 261.914062 323.621094 C 261.914062 322 264.34375 322 264.34375 323.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.570312 324.792969 C 110.570312 326.414062 108.140625 326.414062 108.140625 324.792969 C 108.140625 323.171875 110.570312 323.171875 110.570312 324.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.863281 164.761719 C 260.863281 166.382812 258.433594 166.382812 258.433594 164.761719 C 258.433594 163.144531 260.863281 163.144531 260.863281 164.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.421875 278.140625 C 299.421875 279.757812 296.992188 279.757812 296.992188 278.140625 C 296.992188 276.519531 299.421875 276.519531 299.421875 278.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.59375 166.769531 C 199.59375 168.390625 197.164062 168.390625 197.164062 166.769531 C 197.164062 165.148438 199.59375 165.148438 199.59375 166.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 399.398438 201.847656 C 399.398438 203.46875 396.96875 203.46875 396.96875 201.847656 C 396.96875 200.230469 399.398438 200.230469 399.398438 201.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.5625 372.488281 C 214.5625 374.109375 212.132812 374.109375 212.132812 372.488281 C 212.132812 370.867188 214.5625 370.867188 214.5625 372.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.933594 291.738281 C 309.933594 293.355469 307.503906 293.355469 307.503906 291.738281 C 307.503906 290.117188 309.933594 290.117188 309.933594 291.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.261719 267.402344 C 245.261719 269.023438 242.832031 269.023438 242.832031 267.402344 C 242.832031 265.78125 245.261719 265.78125 245.261719 267.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.914062 70.910156 L 210.550781 73.746094 L 207.277344 73.746094 Z M 208.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.628906 70.910156 L 242.265625 73.746094 L 238.992188 73.746094 Z M 240.628906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.5 340.117188 C 273.5 341.734375 271.070312 341.734375 271.070312 340.117188 C 271.070312 338.496094 273.5 338.496094 273.5 340.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.269531 70.910156 L 270.90625 73.746094 L 267.632812 73.746094 Z M 269.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.785156 170.796875 C 221.785156 172.417969 219.355469 172.417969 219.355469 170.796875 C 219.355469 169.179688 221.785156 169.179688 221.785156 170.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.019531 161.839844 C 235.019531 163.460938 232.589844 163.460938 232.589844 161.839844 C 232.589844 160.222656 235.019531 160.222656 235.019531 161.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.203125 247.949219 C 226.203125 249.570312 223.773438 249.570312 223.773438 247.949219 C 223.773438 246.332031 226.203125 246.332031 226.203125 247.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.21875 234.832031 C 276.21875 236.453125 273.789062 236.453125 273.789062 234.832031 C 273.789062 233.210938 276.21875 233.210938 276.21875 234.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.273438 212.175781 C 271.273438 213.792969 268.84375 213.792969 268.84375 212.175781 C 268.84375 210.554688 271.273438 210.554688 271.273438 212.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.238281 250.070312 C 265.238281 251.691406 262.808594 251.691406 262.808594 250.070312 C 262.808594 248.449219 265.238281 248.449219 265.238281 250.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.328125 319.980469 C 179.328125 321.601562 176.898438 321.601562 176.898438 319.980469 C 176.898438 318.359375 179.328125 318.359375 179.328125 319.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.160156 326.074219 C 254.160156 327.695312 251.730469 327.695312 251.730469 326.074219 C 251.730469 324.453125 254.160156 324.453125 254.160156 326.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.105469 230.660156 C 213.105469 232.277344 210.675781 232.277344 210.675781 230.660156 C 210.675781 229.039062 213.105469 229.039062 213.105469 230.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.507812 267.5 C 290.507812 269.117188 288.078125 269.117188 288.078125 267.5 C 288.078125 265.878906 290.507812 265.878906 290.507812 267.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.886719 364.222656 C 224.886719 365.84375 222.457031 365.84375 222.457031 364.222656 C 222.457031 362.601562 224.886719 362.601562 224.886719 364.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.257812 327.257812 C 250.257812 328.875 247.828125 328.875 247.828125 327.257812 C 247.828125 325.636719 250.257812 325.636719 250.257812 327.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.007812 266.785156 C 265.007812 268.40625 262.578125 268.40625 262.578125 266.785156 C 262.578125 265.164062 265.007812 265.164062 265.007812 266.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.375 283.714844 C 304.375 285.335938 301.945312 285.335938 301.945312 283.714844 C 301.945312 282.09375 304.375 282.09375 304.375 283.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.339844 214.675781 C 242.339844 216.296875 239.910156 216.296875 239.910156 214.675781 C 239.910156 213.058594 242.339844 213.058594 242.339844 214.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.703125 182.648438 C 211.703125 184.265625 209.273438 184.265625 209.273438 182.648438 C 209.273438 181.027344 211.703125 181.027344 211.703125 182.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.640625 70.910156 L 144.273438 73.746094 L 141.003906 73.746094 Z M 142.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.226562 287.636719 C 264.226562 289.253906 261.796875 289.253906 261.796875 287.636719 C 261.796875 286.015625 264.226562 286.015625 264.226562 287.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.433594 335.902344 C 186.433594 337.519531 184.003906 337.519531 184.003906 335.902344 C 184.003906 334.28125 186.433594 334.28125 186.433594 335.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.332031 234.3125 C 265.332031 235.929688 262.902344 235.929688 262.902344 234.3125 C 262.902344 232.691406 265.332031 232.691406 265.332031 234.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.058594 247.089844 C 255.058594 248.710938 252.628906 248.710938 252.628906 247.089844 C 252.628906 245.46875 255.058594 245.46875 255.058594 247.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.214844 418.691406 L 177.851562 415.855469 L 174.578125 415.855469 Z M 176.214844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.738281 275.871094 C 230.738281 277.492188 228.304688 277.492188 228.304688 275.871094 C 228.304688 274.253906 230.738281 274.253906 230.738281 275.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.472656 155.554688 C 293.472656 157.175781 291.042969 157.175781 291.042969 155.554688 C 291.042969 153.9375 293.472656 153.9375 293.472656 155.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.816406 226.742188 C 289.816406 228.359375 287.386719 228.359375 287.386719 226.742188 C 287.386719 225.121094 289.816406 225.121094 289.816406 226.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.128906 316.617188 C 274.128906 318.238281 271.699219 318.238281 271.699219 316.617188 C 271.699219 315 274.128906 315 274.128906 316.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.675781 314.234375 C 276.675781 315.851562 274.242188 315.851562 274.242188 314.234375 C 274.242188 312.613281 276.675781 312.613281 276.675781 314.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.191406 256.167969 C 272.191406 257.785156 269.757812 257.785156 269.757812 256.167969 C 269.757812 254.546875 272.191406 254.546875 272.191406 256.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.351562 236.132812 C 295.351562 237.753906 292.921875 237.753906 292.921875 236.132812 C 292.921875 234.511719 295.351562 234.511719 295.351562 236.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.003906 262.160156 C 245.003906 263.777344 242.574219 263.777344 242.574219 262.160156 C 242.574219 260.539062 245.003906 260.539062 245.003906 262.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.058594 240.988281 C 222.058594 242.609375 219.628906 242.609375 219.628906 240.988281 C 219.628906 239.367188 222.058594 239.367188 222.058594 240.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.796875 259.371094 C 217.796875 260.992188 215.367188 260.992188 215.367188 259.371094 C 215.367188 257.75 217.796875 257.75 217.796875 259.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.113281 271.734375 C 241.113281 273.355469 238.683594 273.355469 238.683594 271.734375 C 238.683594 270.113281 241.113281 270.113281 241.113281 271.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.339844 251.226562 C 284.339844 252.84375 281.910156 252.84375 281.910156 251.226562 C 281.910156 249.605469 284.339844 249.605469 284.339844 251.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.460938 330.820312 C 263.460938 332.441406 261.03125 332.441406 261.03125 330.820312 C 261.03125 329.203125 263.460938 329.203125 263.460938 330.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.875 230.222656 C 315.875 231.84375 313.445312 231.84375 313.445312 230.222656 C 313.445312 228.601562 315.875 228.601562 315.875 230.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.65625 260.078125 C 261.65625 261.695312 259.226562 261.695312 259.226562 260.078125 C 259.226562 258.457031 261.65625 258.457031 261.65625 260.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.886719 279.183594 C 243.886719 280.804688 241.457031 280.804688 241.457031 279.183594 C 241.457031 277.566406 243.886719 277.566406 243.886719 279.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.554688 257.128906 C 282.554688 258.75 280.125 258.75 280.125 257.128906 C 280.125 255.507812 282.554688 255.507812 282.554688 257.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.25 275.476562 C 291.25 277.097656 288.820312 277.097656 288.820312 275.476562 C 288.820312 273.855469 291.25 273.855469 291.25 275.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.707031 177.457031 C 329.707031 179.078125 327.277344 179.078125 327.277344 177.457031 C 327.277344 175.839844 329.707031 175.839844 329.707031 177.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.308594 236.625 C 242.308594 238.246094 239.878906 238.246094 239.878906 236.625 C 239.878906 235.003906 242.308594 235.003906 242.308594 236.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.875 206.34375 C 250.875 207.960938 248.441406 207.960938 248.441406 206.34375 C 248.441406 204.722656 250.875 204.722656 250.875 206.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.597656 268.152344 C 299.597656 269.773438 297.167969 269.773438 297.167969 268.152344 C 297.167969 266.53125 299.597656 266.53125 299.597656 268.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.933594 275.128906 C 287.933594 276.75 285.503906 276.75 285.503906 275.128906 C 285.503906 273.507812 287.933594 273.507812 287.933594 275.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.023438 199.109375 C 265.023438 200.730469 262.59375 200.730469 262.59375 199.109375 C 262.59375 197.492188 265.023438 197.492188 265.023438 199.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.027344 200.582031 C 125.027344 202.203125 122.59375 202.203125 122.59375 200.582031 C 122.59375 198.960938 125.027344 198.960938 125.027344 200.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.382812 164.035156 C 275.382812 165.652344 272.949219 165.652344 272.949219 164.035156 C 272.949219 162.414062 275.382812 162.414062 275.382812 164.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.417969 226.96875 C 260.417969 228.585938 257.988281 228.585938 257.988281 226.96875 C 257.988281 225.347656 260.417969 225.347656 260.417969 226.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.382812 224.089844 C 249.382812 225.710938 246.953125 225.710938 246.953125 224.089844 C 246.953125 222.472656 249.382812 222.472656 249.382812 224.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.917969 279.761719 C 132.917969 281.382812 130.488281 281.382812 130.488281 279.761719 C 130.488281 278.140625 132.917969 278.140625 132.917969 279.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.105469 323.964844 C 222.105469 325.585938 219.675781 325.585938 219.675781 323.964844 C 219.675781 322.34375 222.105469 322.34375 222.105469 323.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.820312 302.554688 C 215.820312 304.175781 213.390625 304.175781 213.390625 302.554688 C 213.390625 300.933594 215.820312 300.933594 215.820312 302.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.347656 269.980469 C 258.347656 271.601562 255.917969 271.601562 255.917969 269.980469 C 255.917969 268.359375 258.347656 268.359375 258.347656 269.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.074219 171.125 C 273.074219 172.746094 270.644531 172.746094 270.644531 171.125 C 270.644531 169.507812 273.074219 169.507812 273.074219 171.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.546875 211.15625 C 271.546875 212.777344 269.117188 212.777344 269.117188 211.15625 C 269.117188 209.539062 271.546875 209.539062 271.546875 211.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.210938 212.347656 C 231.210938 213.96875 228.777344 213.96875 228.777344 212.347656 C 228.777344 210.730469 231.210938 210.730469 231.210938 212.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.796875 157.570312 C 128.796875 159.1875 126.367188 159.1875 126.367188 157.570312 C 126.367188 155.949219 128.796875 155.949219 128.796875 157.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.03125 359.722656 C 266.03125 361.34375 263.601562 361.34375 263.601562 359.722656 C 263.601562 358.101562 266.03125 358.101562 266.03125 359.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.101562 281.714844 C 208.101562 283.335938 205.671875 283.335938 205.671875 281.714844 C 205.671875 280.097656 208.101562 280.097656 208.101562 281.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.679688 264.328125 C 209.679688 265.949219 207.25 265.949219 207.25 264.328125 C 207.25 262.707031 209.679688 262.707031 209.679688 264.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.402344 253.644531 C 313.402344 255.265625 310.972656 255.265625 310.972656 253.644531 C 310.972656 252.027344 313.402344 252.027344 313.402344 253.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.824219 208.066406 C 299.824219 209.6875 297.394531 209.6875 297.394531 208.066406 C 297.394531 206.445312 299.824219 206.445312 299.824219 208.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.828125 70.910156 L 225.464844 73.746094 L 222.191406 73.746094 Z M 223.828125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.5 213.238281 C 266.5 214.859375 264.070312 214.859375 264.070312 213.238281 C 264.070312 211.621094 266.5 211.621094 266.5 213.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.886719 296.492188 C 285.886719 298.113281 283.457031 298.113281 283.457031 296.492188 C 283.457031 294.875 285.886719 294.875 285.886719 296.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.910156 171.90625 C 297.910156 173.523438 295.480469 173.523438 295.480469 171.90625 C 295.480469 170.285156 297.910156 170.285156 297.910156 171.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.691406 418.691406 L 230.328125 415.855469 L 227.054688 415.855469 Z M 228.691406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.476562 275.851562 C 275.476562 277.46875 273.046875 277.46875 273.046875 275.851562 C 273.046875 274.230469 275.476562 274.230469 275.476562 275.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.152344 322.125 C 285.152344 323.746094 282.722656 323.746094 282.722656 322.125 C 282.722656 320.507812 285.152344 320.507812 285.152344 322.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.984375 205.839844 C 326.984375 207.457031 324.554688 207.457031 324.554688 205.839844 C 324.554688 204.21875 326.984375 204.21875 326.984375 205.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.097656 265.183594 C 227.097656 266.804688 224.667969 266.804688 224.667969 265.183594 C 224.667969 263.566406 227.097656 263.566406 227.097656 265.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.613281 211.875 C 259.613281 213.496094 257.183594 213.496094 257.183594 211.875 C 257.183594 210.253906 259.613281 210.253906 259.613281 211.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.429688 233.804688 C 219.429688 235.425781 217 235.425781 217 233.804688 C 217 232.1875 219.429688 232.1875 219.429688 233.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.371094 225.933594 C 239.371094 227.554688 236.9375 227.554688 236.9375 225.933594 C 236.9375 224.3125 239.371094 224.3125 239.371094 225.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.371094 207.679688 C 231.371094 209.300781 228.941406 209.300781 228.941406 207.679688 C 228.941406 206.058594 231.371094 206.058594 231.371094 207.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.644531 175.136719 C 195.644531 176.753906 193.214844 176.753906 193.214844 175.136719 C 193.214844 173.515625 195.644531 173.515625 195.644531 175.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.949219 262.332031 C 305.949219 263.949219 303.519531 263.949219 303.519531 262.332031 C 303.519531 260.710938 305.949219 260.710938 305.949219 262.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.40625 356.839844 C 149.40625 358.460938 146.976562 358.460938 146.976562 356.839844 C 146.976562 355.21875 149.40625 355.21875 149.40625 356.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.410156 200.71875 C 232.410156 202.339844 229.980469 202.339844 229.980469 200.71875 C 229.980469 199.097656 232.410156 199.097656 232.410156 200.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.105469 119.511719 C 148.105469 121.132812 145.675781 121.132812 145.675781 119.511719 C 145.675781 117.890625 148.105469 117.890625 148.105469 119.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.640625 336.585938 C 270.640625 338.207031 268.210938 338.207031 268.210938 336.585938 C 268.210938 334.964844 270.640625 334.964844 270.640625 336.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.308594 266.214844 C 335.308594 267.835938 332.875 267.835938 332.875 266.214844 C 332.875 264.597656 335.308594 264.597656 335.308594 266.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.542969 313.175781 C 160.542969 314.796875 158.109375 314.796875 158.109375 313.175781 C 158.109375 311.554688 160.542969 311.554688 160.542969 313.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.953125 241.042969 C 292.953125 242.664062 290.523438 242.664062 290.523438 241.042969 C 290.523438 239.421875 292.953125 239.421875 292.953125 241.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 361.535156 193.082031 C 361.535156 194.703125 359.105469 194.703125 359.105469 193.082031 C 359.105469 191.464844 361.535156 191.464844 361.535156 193.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.617188 256.773438 C 282.617188 258.394531 280.1875 258.394531 280.1875 256.773438 C 280.1875 255.15625 282.617188 255.15625 282.617188 256.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.964844 192.859375 C 242.964844 194.480469 240.535156 194.480469 240.535156 192.859375 C 240.535156 191.242188 242.964844 191.242188 242.964844 192.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.082031 192.1875 C 234.082031 193.808594 231.652344 193.808594 231.652344 192.1875 C 231.652344 190.570312 234.082031 190.570312 234.082031 192.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.234375 172.050781 C 191.234375 173.671875 188.804688 173.671875 188.804688 172.050781 C 188.804688 170.433594 191.234375 170.433594 191.234375 172.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.417969 301.328125 C 322.417969 302.949219 319.988281 302.949219 319.988281 301.328125 C 319.988281 299.707031 322.417969 299.707031 322.417969 301.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.546875 271.984375 C 250.546875 273.605469 248.117188 273.605469 248.117188 271.984375 C 248.117188 270.363281 250.546875 270.363281 250.546875 271.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.308594 292.175781 C 309.308594 293.796875 306.878906 293.796875 306.878906 292.175781 C 306.878906 290.554688 309.308594 290.554688 309.308594 292.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.363281 295.226562 C 233.363281 296.847656 230.933594 296.847656 230.933594 295.226562 C 230.933594 293.605469 233.363281 293.605469 233.363281 295.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.4375 240.761719 C 163.4375 242.378906 161.007812 242.378906 161.007812 240.761719 C 161.007812 239.140625 163.4375 239.140625 163.4375 240.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.3125 318.554688 C 174.3125 320.175781 171.882812 320.175781 171.882812 318.554688 C 171.882812 316.933594 174.3125 316.933594 174.3125 318.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 386.710938 70.910156 L 388.347656 73.746094 L 385.074219 73.746094 Z M 386.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 389.09375 70.910156 L 390.730469 73.746094 L 387.457031 73.746094 Z M 389.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.71875 212.515625 C 235.71875 214.136719 233.289062 214.136719 233.289062 212.515625 C 233.289062 210.894531 235.71875 210.894531 235.71875 212.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.992188 324.117188 C 207.992188 325.738281 205.5625 325.738281 205.5625 324.117188 C 205.5625 322.496094 207.992188 322.496094 207.992188 324.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.878906 328.089844 C 222.878906 329.710938 220.449219 329.710938 220.449219 328.089844 C 220.449219 326.472656 222.878906 326.472656 222.878906 328.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.425781 358.828125 C 278.425781 360.449219 275.996094 360.449219 275.996094 358.828125 C 275.996094 357.207031 278.425781 357.207031 278.425781 358.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.238281 248.3125 C 308.238281 249.933594 305.808594 249.933594 305.808594 248.3125 C 305.808594 246.695312 308.238281 246.695312 308.238281 248.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.960938 70.910156 L 129.597656 73.746094 L 126.324219 73.746094 Z M 127.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.023438 236.082031 C 289.023438 237.703125 286.59375 237.703125 286.59375 236.082031 C 286.59375 234.460938 289.023438 234.460938 289.023438 236.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.851562 322.152344 C 152.851562 323.773438 150.421875 323.773438 150.421875 322.152344 C 150.421875 320.53125 152.851562 320.53125 152.851562 322.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.976562 151.570312 C 220.976562 153.191406 218.546875 153.191406 218.546875 151.570312 C 218.546875 149.953125 220.976562 149.953125 220.976562 151.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.21875 258.367188 C 294.21875 259.984375 291.785156 259.984375 291.785156 258.367188 C 291.785156 256.746094 294.21875 256.746094 294.21875 258.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.015625 241.359375 C 232.015625 242.976562 229.585938 242.976562 229.585938 241.359375 C 229.585938 239.738281 232.015625 239.738281 232.015625 241.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.851562 148.75 C 265.851562 150.371094 263.421875 150.371094 263.421875 148.75 C 263.421875 147.128906 265.851562 147.128906 265.851562 148.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.359375 207.96875 C 237.359375 209.585938 234.929688 209.585938 234.929688 207.96875 C 234.929688 206.347656 237.359375 206.347656 237.359375 207.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.695312 225.601562 C 256.695312 227.21875 254.265625 227.21875 254.265625 225.601562 C 254.265625 223.980469 256.695312 223.980469 256.695312 225.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.269531 70.910156 L 379.90625 73.746094 L 376.632812 73.746094 Z M 378.269531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.792969 70.910156 L 380.429688 73.746094 L 377.15625 73.746094 Z M 378.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.886719 211.738281 C 227.886719 213.359375 225.457031 213.359375 225.457031 211.738281 C 225.457031 210.121094 227.886719 210.121094 227.886719 211.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.121094 218.132812 C 208.121094 219.75 205.691406 219.75 205.691406 218.132812 C 205.691406 216.511719 208.121094 216.511719 208.121094 218.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.351562 202.3125 C 212.351562 203.933594 209.921875 203.933594 209.921875 202.3125 C 209.921875 200.695312 212.351562 200.695312 212.351562 202.3125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.570312 418.691406 L 263.207031 415.855469 L 259.933594 415.855469 Z M 261.570312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.34375 238.742188 C 244.34375 240.359375 241.914062 240.359375 241.914062 238.742188 C 241.914062 237.121094 244.34375 237.121094 244.34375 238.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.21875 293.753906 C 311.21875 295.371094 308.789062 295.371094 308.789062 293.753906 C 308.789062 292.132812 311.21875 292.132812 311.21875 293.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.554688 293.53125 C 323.554688 295.152344 321.125 295.152344 321.125 293.53125 C 321.125 291.914062 323.554688 291.914062 323.554688 293.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.476562 248.882812 C 264.476562 250.503906 262.046875 250.503906 262.046875 248.882812 C 262.046875 247.265625 264.476562 247.265625 264.476562 248.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.773438 178.449219 C 209.773438 180.070312 207.339844 180.070312 207.339844 178.449219 C 207.339844 176.828125 209.773438 176.828125 209.773438 178.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.003906 135.164062 C 163.003906 136.785156 160.574219 136.785156 160.574219 135.164062 C 160.574219 133.546875 163.003906 133.546875 163.003906 135.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.453125 164.902344 C 225.453125 166.519531 223.023438 166.519531 223.023438 164.902344 C 223.023438 163.28125 225.453125 163.28125 225.453125 164.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.367188 271.445312 C 292.367188 273.066406 289.9375 273.066406 289.9375 271.445312 C 289.9375 269.824219 292.367188 269.824219 292.367188 271.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.238281 324.746094 C 216.238281 326.363281 213.808594 326.363281 213.808594 324.746094 C 213.808594 323.125 216.238281 323.125 216.238281 324.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.1875 265.535156 C 178.1875 267.15625 175.753906 267.15625 175.753906 265.535156 C 175.753906 263.914062 178.1875 263.914062 178.1875 265.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.511719 291.933594 C 311.511719 293.550781 309.082031 293.550781 309.082031 291.933594 C 309.082031 290.3125 311.511719 290.3125 311.511719 291.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.1875 276.765625 C 258.1875 278.386719 255.757812 278.386719 255.757812 276.765625 C 255.757812 275.144531 258.1875 275.144531 258.1875 276.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.816406 283.472656 C 293.816406 285.09375 291.386719 285.09375 291.386719 283.472656 C 291.386719 281.855469 293.816406 281.855469 293.816406 283.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.367188 275.980469 C 311.367188 277.597656 308.9375 277.597656 308.9375 275.980469 C 308.9375 274.359375 311.367188 274.359375 311.367188 275.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.503906 220.5 C 257.503906 222.121094 255.074219 222.121094 255.074219 220.5 C 255.074219 218.878906 257.503906 218.878906 257.503906 220.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 130.089844 70.910156 L 131.726562 73.746094 L 128.453125 73.746094 Z M 130.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.066406 270.394531 C 294.066406 272.015625 291.636719 272.015625 291.636719 270.394531 C 291.636719 268.773438 294.066406 268.773438 294.066406 270.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.210938 268.664062 C 274.210938 270.285156 271.78125 270.285156 271.78125 268.664062 C 271.78125 267.042969 274.210938 267.042969 274.210938 268.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.617188 183.527344 C 242.617188 185.148438 240.1875 185.148438 240.1875 183.527344 C 240.1875 181.90625 242.617188 181.90625 242.617188 183.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.9375 70.910156 L 198.574219 73.746094 L 195.300781 73.746094 Z M 196.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.988281 250.445312 C 138.988281 252.0625 136.558594 252.0625 136.558594 250.445312 C 136.558594 248.824219 138.988281 248.824219 138.988281 250.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.851562 220.011719 C 282.851562 221.632812 280.421875 221.632812 280.421875 220.011719 C 280.421875 218.390625 282.851562 218.390625 282.851562 220.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.136719 200.007812 C 283.136719 201.628906 280.707031 201.628906 280.707031 200.007812 C 280.707031 198.386719 283.136719 198.386719 283.136719 200.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.800781 127.875 C 330.800781 129.492188 328.371094 129.492188 328.371094 127.875 C 328.371094 126.253906 330.800781 126.253906 330.800781 127.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.066406 205.96875 C 278.066406 207.585938 275.636719 207.585938 275.636719 205.96875 C 275.636719 204.347656 278.066406 204.347656 278.066406 205.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.457031 259.183594 C 278.457031 260.804688 276.027344 260.804688 276.027344 259.183594 C 276.027344 257.5625 278.457031 257.5625 278.457031 259.183594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.152344 70.910156 L 198.789062 73.746094 L 195.515625 73.746094 Z M 197.152344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.984375 268.808594 C 227.984375 270.429688 225.554688 270.429688 225.554688 268.808594 C 225.554688 267.1875 227.984375 267.1875 227.984375 268.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.035156 293.207031 C 234.035156 294.824219 231.605469 294.824219 231.605469 293.207031 C 231.605469 291.585938 234.035156 291.585938 234.035156 293.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.199219 70.910156 L 142.835938 73.746094 L 139.5625 73.746094 Z M 141.199219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.902344 264.363281 C 268.902344 265.984375 266.472656 265.984375 266.472656 264.363281 C 266.472656 262.742188 268.902344 262.742188 268.902344 264.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.539062 246.070312 C 256.539062 247.691406 254.109375 247.691406 254.109375 246.070312 C 254.109375 244.449219 256.539062 244.449219 256.539062 246.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.21875 214.273438 C 269.21875 215.894531 266.789062 215.894531 266.789062 214.273438 C 266.789062 212.652344 269.21875 212.652344 269.21875 214.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.398438 252.328125 C 203.398438 253.945312 200.96875 253.945312 200.96875 252.328125 C 200.96875 250.707031 203.398438 250.707031 203.398438 252.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.214844 279.21875 C 292.214844 280.835938 289.785156 280.835938 289.785156 279.21875 C 289.785156 277.597656 292.214844 277.597656 292.214844 279.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.511719 316.765625 C 221.511719 318.382812 219.082031 318.382812 219.082031 316.765625 C 219.082031 315.144531 221.511719 315.144531 221.511719 316.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.382812 204.945312 C 178.382812 206.566406 175.953125 206.566406 175.953125 204.945312 C 175.953125 203.328125 178.382812 203.328125 178.382812 204.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.632812 135.96875 C 205.632812 137.589844 203.203125 137.589844 203.203125 135.96875 C 203.203125 134.347656 205.632812 134.347656 205.632812 135.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.539062 216.867188 C 268.539062 218.488281 266.109375 218.488281 266.109375 216.867188 C 266.109375 215.25 268.539062 215.25 268.539062 216.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.539062 358.3125 C 301.539062 359.933594 299.109375 359.933594 299.109375 358.3125 C 299.109375 356.695312 301.539062 356.695312 301.539062 358.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.351562 116.710938 C 187.351562 118.332031 184.921875 118.332031 184.921875 116.710938 C 184.921875 115.089844 187.351562 115.089844 187.351562 116.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.363281 303.394531 C 229.363281 305.015625 226.929688 305.015625 226.929688 303.394531 C 226.929688 301.773438 229.363281 301.773438 229.363281 303.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.625 255.023438 C 321.625 256.640625 319.195312 256.640625 319.195312 255.023438 C 319.195312 253.402344 321.625 253.402344 321.625 255.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.589844 297.070312 C 180.589844 298.691406 178.160156 298.691406 178.160156 297.070312 C 178.160156 295.453125 180.589844 295.453125 180.589844 297.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.496094 249.894531 C 137.496094 251.515625 135.066406 251.515625 135.066406 249.894531 C 135.066406 248.273438 137.496094 248.273438 137.496094 249.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.816406 178.992188 C 127.816406 180.613281 125.386719 180.613281 125.386719 178.992188 C 125.386719 177.371094 127.816406 177.371094 127.816406 178.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.492188 203.578125 C 286.492188 205.199219 284.0625 205.199219 284.0625 203.578125 C 284.0625 201.957031 286.492188 201.957031 286.492188 203.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.230469 418.691406 L 130.867188 415.855469 L 127.59375 415.855469 Z M 129.230469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.40625 199.542969 C 220.40625 201.160156 217.976562 201.160156 217.976562 199.542969 C 217.976562 197.921875 220.40625 197.921875 220.40625 199.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.757812 338.941406 C 244.757812 340.558594 242.328125 340.558594 242.328125 338.941406 C 242.328125 337.320312 244.757812 337.320312 244.757812 338.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.703125 204.777344 C 274.703125 206.398438 272.273438 206.398438 272.273438 204.777344 C 272.273438 203.15625 274.703125 203.15625 274.703125 204.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.160156 231.636719 C 226.160156 233.257812 223.730469 233.257812 223.730469 231.636719 C 223.730469 230.019531 226.160156 230.019531 226.160156 231.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.808594 236.832031 C 249.808594 238.453125 247.378906 238.453125 247.378906 236.832031 C 247.378906 235.210938 249.808594 235.210938 249.808594 236.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.890625 264.019531 C 321.890625 265.640625 319.460938 265.640625 319.460938 264.019531 C 319.460938 262.398438 321.890625 262.398438 321.890625 264.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.453125 243.84375 C 264.453125 245.464844 262.023438 245.464844 262.023438 243.84375 C 262.023438 242.222656 264.453125 242.222656 264.453125 243.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.21875 196.355469 C 250.21875 197.976562 247.785156 197.976562 247.785156 196.355469 C 247.785156 194.738281 250.21875 194.738281 250.21875 196.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.722656 90.363281 C 195.722656 91.984375 193.292969 91.984375 193.292969 90.363281 C 193.292969 88.742188 195.722656 88.742188 195.722656 90.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.460938 190.046875 C 255.460938 191.667969 253.03125 191.667969 253.03125 190.046875 C 253.03125 188.429688 255.460938 188.429688 255.460938 190.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.625 256.886719 C 186.625 258.507812 184.195312 258.507812 184.195312 256.886719 C 184.195312 255.269531 186.625 255.269531 186.625 256.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.617188 277.148438 C 248.617188 278.769531 246.1875 278.769531 246.1875 277.148438 C 246.1875 275.53125 248.617188 275.53125 248.617188 277.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.589844 316.3125 C 271.589844 317.933594 269.160156 317.933594 269.160156 316.3125 C 269.160156 314.695312 271.589844 314.695312 271.589844 316.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.761719 316.800781 C 271.761719 318.421875 269.332031 318.421875 269.332031 316.800781 C 269.332031 315.183594 271.761719 315.183594 271.761719 316.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.113281 306.359375 C 241.113281 307.980469 238.683594 307.980469 238.683594 306.359375 C 238.683594 304.738281 241.113281 304.738281 241.113281 306.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.382812 254.828125 C 300.382812 256.449219 297.953125 256.449219 297.953125 254.828125 C 297.953125 253.210938 300.382812 253.210938 300.382812 254.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.378906 301.167969 C 293.378906 302.785156 290.949219 302.785156 290.949219 301.167969 C 290.949219 299.546875 293.378906 299.546875 293.378906 301.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.027344 269.296875 C 215.027344 270.914062 212.597656 270.914062 212.597656 269.296875 C 212.597656 267.675781 215.027344 267.675781 215.027344 269.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.59375 263.828125 C 272.59375 265.445312 270.164062 265.445312 270.164062 263.828125 C 270.164062 262.207031 272.59375 262.207031 272.59375 263.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.394531 204.617188 C 188.394531 206.234375 185.964844 206.234375 185.964844 204.617188 C 185.964844 202.996094 188.394531 202.996094 188.394531 204.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.726562 164.179688 C 158.726562 165.800781 156.296875 165.800781 156.296875 164.179688 C 156.296875 162.5625 158.726562 162.5625 158.726562 164.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.644531 271.492188 C 284.644531 273.113281 282.214844 273.113281 282.214844 271.492188 C 282.214844 269.871094 284.644531 269.871094 284.644531 271.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.742188 284.941406 C 282.742188 286.5625 280.3125 286.5625 280.3125 284.941406 C 280.3125 283.320312 282.742188 283.320312 282.742188 284.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.617188 113.09375 C 257.617188 114.714844 255.1875 114.714844 255.1875 113.09375 C 255.1875 111.472656 257.617188 111.472656 257.617188 113.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.128906 133.917969 C 278.128906 135.539062 275.699219 135.539062 275.699219 133.917969 C 275.699219 132.296875 278.128906 132.296875 278.128906 133.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.152344 115.289062 C 278.152344 116.910156 275.71875 116.910156 275.71875 115.289062 C 275.71875 113.667969 278.152344 113.667969 278.152344 115.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.214844 111.585938 C 297.214844 113.203125 294.785156 113.203125 294.785156 111.585938 C 294.785156 109.964844 297.214844 109.964844 297.214844 111.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.183594 326.125 C 128.183594 327.742188 125.753906 327.742188 125.753906 326.125 C 125.753906 324.503906 128.183594 324.503906 128.183594 326.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.648438 366.035156 C 241.648438 367.652344 239.214844 367.652344 239.214844 366.035156 C 239.214844 364.414062 241.648438 364.414062 241.648438 366.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.152344 193.53125 C 127.152344 195.152344 124.722656 195.152344 124.722656 193.53125 C 124.722656 191.914062 127.152344 191.914062 127.152344 193.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.316406 324.960938 C 245.316406 326.582031 242.886719 326.582031 242.886719 324.960938 C 242.886719 323.339844 245.316406 323.339844 245.316406 324.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.835938 289.082031 C 291.835938 290.703125 289.40625 290.703125 289.40625 289.082031 C 289.40625 287.460938 291.835938 287.460938 291.835938 289.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.390625 261.890625 C 277.390625 263.507812 274.960938 263.507812 274.960938 261.890625 C 274.960938 260.269531 277.390625 260.269531 277.390625 261.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.246094 256.492188 C 280.246094 258.109375 277.816406 258.109375 277.816406 256.492188 C 277.816406 254.871094 280.246094 254.871094 280.246094 256.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.523438 96.097656 C 345.523438 97.71875 343.089844 97.71875 343.089844 96.097656 C 343.089844 94.476562 345.523438 94.476562 345.523438 96.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.566406 160.867188 C 320.566406 162.488281 318.136719 162.488281 318.136719 160.867188 C 318.136719 159.246094 320.566406 159.246094 320.566406 160.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.566406 246.101562 C 272.566406 247.722656 270.136719 247.722656 270.136719 246.101562 C 270.136719 244.480469 272.566406 244.480469 272.566406 246.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.03125 187.601562 C 177.03125 189.222656 174.601562 189.222656 174.601562 187.601562 C 174.601562 185.980469 177.03125 185.980469 177.03125 187.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.472656 250.589844 C 128.472656 252.210938 126.042969 252.210938 126.042969 250.589844 C 126.042969 248.96875 128.472656 248.96875 128.472656 250.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.738281 293.984375 C 261.738281 295.605469 259.304688 295.605469 259.304688 293.984375 C 259.304688 292.367188 261.738281 292.367188 261.738281 293.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.53125 270.070312 C 231.53125 271.691406 229.101562 271.691406 229.101562 270.070312 C 229.101562 268.449219 231.53125 268.449219 231.53125 270.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.890625 70.910156 L 146.527344 73.746094 L 143.253906 73.746094 Z M 144.890625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.378906 259.824219 C 307.378906 261.445312 304.949219 261.445312 304.949219 259.824219 C 304.949219 258.203125 307.378906 258.203125 307.378906 259.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.097656 230.164062 C 164.097656 231.78125 161.667969 231.78125 161.667969 230.164062 C 161.667969 228.542969 164.097656 228.542969 164.097656 230.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.683594 240.300781 C 269.683594 241.921875 267.253906 241.921875 267.253906 240.300781 C 267.253906 238.683594 269.683594 238.683594 269.683594 240.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.285156 236.945312 C 246.285156 238.5625 243.855469 238.5625 243.855469 236.945312 C 243.855469 235.324219 246.285156 235.324219 246.285156 236.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.109375 70.910156 L 306.746094 73.746094 L 303.472656 73.746094 Z M 305.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.375 257.722656 C 258.375 259.34375 255.945312 259.34375 255.945312 257.722656 C 255.945312 256.101562 258.375 256.101562 258.375 257.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.496094 269.027344 C 243.496094 270.648438 241.066406 270.648438 241.066406 269.027344 C 241.066406 267.410156 243.496094 267.410156 243.496094 269.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.101562 236.769531 C 226.101562 238.390625 223.671875 238.390625 223.671875 236.769531 C 223.671875 235.152344 226.101562 235.152344 226.101562 236.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.4375 297.933594 C 124.4375 299.554688 122.007812 299.554688 122.007812 297.933594 C 122.007812 296.3125 124.4375 296.3125 124.4375 297.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.316406 382.628906 C 121.316406 384.25 118.886719 384.25 118.886719 382.628906 C 118.886719 381.011719 121.316406 381.011719 121.316406 382.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.367188 249.972656 C 201.367188 251.59375 198.9375 251.59375 198.9375 249.972656 C 198.9375 248.351562 201.367188 248.351562 201.367188 249.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.609375 235.476562 C 229.609375 237.097656 227.179688 237.097656 227.179688 235.476562 C 227.179688 233.855469 229.609375 233.855469 229.609375 235.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.628906 154.585938 C 162.628906 156.207031 160.199219 156.207031 160.199219 154.585938 C 160.199219 152.964844 162.628906 152.964844 162.628906 154.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.527344 207.636719 C 164.527344 209.257812 162.097656 209.257812 162.097656 207.636719 C 162.097656 206.015625 164.527344 206.015625 164.527344 207.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.699219 218.699219 C 151.699219 220.316406 149.269531 220.316406 149.269531 218.699219 C 149.269531 217.078125 151.699219 217.078125 151.699219 218.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.460938 286.523438 C 261.460938 288.140625 259.03125 288.140625 259.03125 286.523438 C 259.03125 284.902344 261.460938 284.902344 261.460938 286.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.601562 333.183594 C 254.601562 334.804688 252.171875 334.804688 252.171875 333.183594 C 252.171875 331.5625 254.601562 331.5625 254.601562 333.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.09375 233.113281 C 246.09375 234.730469 243.664062 234.730469 243.664062 233.113281 C 243.664062 231.492188 246.09375 231.492188 246.09375 233.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.105469 232.167969 C 243.105469 233.785156 240.675781 233.785156 240.675781 232.167969 C 240.675781 230.546875 243.105469 230.546875 243.105469 232.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.464844 268.171875 C 325.464844 269.789062 323.03125 269.789062 323.03125 268.171875 C 323.03125 266.550781 325.464844 266.550781 325.464844 268.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.125 145.074219 C 244.125 146.695312 241.695312 146.695312 241.695312 145.074219 C 241.695312 143.457031 244.125 143.457031 244.125 145.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.414062 70.910156 L 124.050781 73.746094 L 120.78125 73.746094 Z M 122.414062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.621094 70.910156 L 127.253906 73.746094 L 123.984375 73.746094 Z M 125.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.046875 270.976562 C 323.046875 272.597656 320.617188 272.597656 320.617188 270.976562 C 320.617188 269.359375 323.046875 269.359375 323.046875 270.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.808594 294.128906 C 205.808594 295.746094 203.378906 295.746094 203.378906 294.128906 C 203.378906 292.507812 205.808594 292.507812 205.808594 294.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.996094 70.910156 L 112.632812 73.746094 L 109.359375 73.746094 Z M 110.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.105469 99.839844 C 121.105469 101.460938 118.675781 101.460938 118.675781 99.839844 C 118.675781 98.222656 121.105469 98.222656 121.105469 99.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.886719 248.3125 C 314.886719 249.933594 312.457031 249.933594 312.457031 248.3125 C 312.457031 246.691406 314.886719 246.691406 314.886719 248.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.988281 222.839844 C 282.988281 224.457031 280.558594 224.457031 280.558594 222.839844 C 280.558594 221.21875 282.988281 221.21875 282.988281 222.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.4375 70.910156 L 289.074219 73.746094 L 285.800781 73.746094 Z M 287.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.296875 207.878906 C 323.296875 209.5 320.867188 209.5 320.867188 207.878906 C 320.867188 206.257812 323.296875 206.257812 323.296875 207.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.710938 70.910156 L 133.347656 73.746094 L 130.074219 73.746094 Z M 131.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.382812 299.460938 C 263.382812 301.078125 260.953125 301.078125 260.953125 299.460938 C 260.953125 297.839844 263.382812 297.839844 263.382812 299.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.121094 70.910156 L 122.757812 73.746094 L 119.484375 73.746094 Z M 121.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.765625 274.328125 C 188.765625 275.949219 186.332031 275.949219 186.332031 274.328125 C 186.332031 272.710938 188.765625 272.710938 188.765625 274.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.109375 218.066406 C 274.109375 219.6875 271.679688 219.6875 271.679688 218.066406 C 271.679688 216.445312 274.109375 216.445312 274.109375 218.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.539062 303.785156 C 256.539062 305.402344 254.109375 305.402344 254.109375 303.785156 C 254.109375 302.164062 256.539062 302.164062 256.539062 303.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.683594 70.910156 L 178.320312 73.746094 L 175.046875 73.746094 Z M 176.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.070312 129.617188 C 176.070312 131.238281 173.640625 131.238281 173.640625 129.617188 C 173.640625 127.996094 176.070312 127.996094 176.070312 129.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.226562 282.894531 C 302.226562 284.515625 299.796875 284.515625 299.796875 282.894531 C 299.796875 281.273438 302.226562 281.273438 302.226562 282.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.71875 132.492188 C 239.71875 134.113281 237.289062 134.113281 237.289062 132.492188 C 237.289062 130.871094 239.71875 130.871094 239.71875 132.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.65625 155.8125 C 307.65625 157.429688 305.226562 157.429688 305.226562 155.8125 C 305.226562 154.191406 307.65625 154.191406 307.65625 155.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.625 214.40625 C 255.625 216.027344 253.195312 216.027344 253.195312 214.40625 C 253.195312 212.789062 255.625 212.789062 255.625 214.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.398438 295.386719 C 266.398438 297.007812 263.96875 297.007812 263.96875 295.386719 C 263.96875 293.769531 266.398438 293.769531 266.398438 295.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.617188 250.328125 C 136.617188 251.945312 134.1875 251.945312 134.1875 250.328125 C 134.1875 248.707031 136.617188 248.707031 136.617188 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 324.605469 70.910156 L 326.242188 73.746094 L 322.96875 73.746094 Z M 324.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.441406 418.691406 L 244.078125 415.855469 L 240.804688 415.855469 Z M 242.441406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.699219 273.542969 C 278.699219 275.160156 276.269531 275.160156 276.269531 273.542969 C 276.269531 271.921875 278.699219 271.921875 278.699219 273.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.945312 292.722656 C 338.945312 294.339844 336.515625 294.339844 336.515625 292.722656 C 336.515625 291.101562 338.945312 291.101562 338.945312 292.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.433594 226.960938 C 225.433594 228.582031 223.003906 228.582031 223.003906 226.960938 C 223.003906 225.34375 225.433594 225.34375 225.433594 226.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.828125 207.855469 C 295.828125 209.476562 293.398438 209.476562 293.398438 207.855469 C 293.398438 206.234375 295.828125 206.234375 295.828125 207.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.746094 351.574219 C 234.746094 353.191406 232.316406 353.191406 232.316406 351.574219 C 232.316406 349.953125 234.746094 349.953125 234.746094 351.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.894531 82.71875 C 124.894531 84.339844 122.464844 84.339844 122.464844 82.71875 C 122.464844 81.097656 124.894531 81.097656 124.894531 82.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.433594 294.585938 C 298.433594 296.203125 296.003906 296.203125 296.003906 294.585938 C 296.003906 292.964844 298.433594 292.964844 298.433594 294.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.523438 70.910156 L 219.160156 73.746094 L 215.886719 73.746094 Z M 217.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.953125 252.046875 C 277.953125 253.667969 275.523438 253.667969 275.523438 252.046875 C 275.523438 250.425781 277.953125 250.425781 277.953125 252.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.976562 119.277344 C 220.976562 120.898438 218.546875 120.898438 218.546875 119.277344 C 218.546875 117.65625 220.976562 117.65625 220.976562 119.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.816406 70.910156 L 128.453125 73.746094 L 125.183594 73.746094 Z M 126.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.726562 285.460938 C 317.726562 287.082031 315.296875 287.082031 315.296875 285.460938 C 315.296875 283.84375 317.726562 283.84375 317.726562 285.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.996094 219.535156 C 301.996094 221.15625 299.566406 221.15625 299.566406 219.535156 C 299.566406 217.914062 301.996094 217.914062 301.996094 219.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.632812 232.566406 C 277.632812 234.183594 275.203125 234.183594 275.203125 232.566406 C 275.203125 230.945312 277.632812 230.945312 277.632812 232.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.117188 242.15625 C 286.117188 243.777344 283.6875 243.777344 283.6875 242.15625 C 283.6875 240.539062 286.117188 240.539062 286.117188 242.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.097656 111.472656 C 263.097656 113.089844 260.667969 113.089844 260.667969 111.472656 C 260.667969 109.851562 263.097656 109.851562 263.097656 111.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.1875 183.054688 C 287.1875 184.671875 284.757812 184.671875 284.757812 183.054688 C 284.757812 181.433594 287.1875 181.433594 287.1875 183.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.046875 73.550781 C 183.046875 75.171875 180.617188 75.171875 180.617188 73.550781 C 180.617188 71.929688 183.046875 71.929688 183.046875 73.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.84375 280.558594 C 246.84375 282.179688 244.414062 282.179688 244.414062 280.558594 C 244.414062 278.9375 246.84375 278.9375 246.84375 280.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.460938 279.863281 C 239.460938 281.484375 237.03125 281.484375 237.03125 279.863281 C 237.03125 278.242188 239.460938 278.242188 239.460938 279.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.925781 374.234375 C 266.925781 375.851562 264.496094 375.851562 264.496094 374.234375 C 264.496094 372.613281 266.925781 372.613281 266.925781 374.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.710938 373.257812 C 204.710938 374.875 202.28125 374.875 202.28125 373.257812 C 202.28125 371.636719 204.710938 371.636719 204.710938 373.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.515625 165.054688 C 259.515625 166.675781 257.085938 166.675781 257.085938 165.054688 C 257.085938 163.433594 259.515625 163.433594 259.515625 165.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.765625 191.632812 C 163.765625 193.253906 161.335938 193.253906 161.335938 191.632812 C 161.335938 190.015625 163.765625 190.015625 163.765625 191.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.550781 70.910156 L 127.1875 73.746094 L 123.914062 73.746094 Z M 125.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.859375 245.71875 C 318.859375 247.335938 316.429688 247.335938 316.429688 245.71875 C 316.429688 244.097656 318.859375 244.097656 318.859375 245.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.0625 220.238281 C 240.0625 221.859375 237.632812 221.859375 237.632812 220.238281 C 237.632812 218.617188 240.0625 218.617188 240.0625 220.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.6875 290.425781 C 291.6875 292.046875 289.257812 292.046875 289.257812 290.425781 C 289.257812 288.804688 291.6875 288.804688 291.6875 290.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.398438 173.226562 C 242.398438 174.847656 239.96875 174.847656 239.96875 173.226562 C 239.96875 171.609375 242.398438 171.609375 242.398438 173.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.800781 207.910156 C 274.800781 209.53125 272.371094 209.53125 272.371094 207.910156 C 272.371094 206.289062 274.800781 206.289062 274.800781 207.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.726562 184.398438 C 274.726562 186.015625 272.296875 186.015625 272.296875 184.398438 C 272.296875 182.777344 274.726562 182.777344 274.726562 184.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.933594 226.894531 C 268.933594 228.515625 266.503906 228.515625 266.503906 226.894531 C 266.503906 225.277344 268.933594 225.277344 268.933594 226.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.710938 260.5 C 276.710938 262.117188 274.28125 262.117188 274.28125 260.5 C 274.28125 258.878906 276.710938 258.878906 276.710938 260.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.160156 238.503906 C 278.160156 240.125 275.730469 240.125 275.730469 238.503906 C 275.730469 236.886719 278.160156 236.886719 278.160156 238.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.832031 278.648438 C 278.832031 280.269531 276.402344 280.269531 276.402344 278.648438 C 276.402344 277.03125 278.832031 277.03125 278.832031 278.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.023438 223.542969 C 316.023438 225.164062 313.59375 225.164062 313.59375 223.542969 C 313.59375 221.921875 316.023438 221.921875 316.023438 223.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.808594 396.800781 C 288.808594 398.421875 286.378906 398.421875 286.378906 396.800781 C 286.378906 395.179688 288.808594 395.179688 288.808594 396.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.164062 301.65625 C 263.164062 303.277344 260.734375 303.277344 260.734375 301.65625 C 260.734375 300.039062 263.164062 300.039062 263.164062 301.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.71875 284.660156 C 265.71875 286.28125 263.285156 286.28125 263.285156 284.660156 C 263.285156 283.039062 265.71875 283.039062 265.71875 284.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.0625 259.035156 C 225.0625 260.652344 222.632812 260.652344 222.632812 259.035156 C 222.632812 257.414062 225.0625 257.414062 225.0625 259.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.679688 193.230469 C 137.679688 194.851562 135.25 194.851562 135.25 193.230469 C 135.25 191.609375 137.679688 191.609375 137.679688 193.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.683594 298.816406 C 231.683594 300.4375 229.253906 300.4375 229.253906 298.816406 C 229.253906 297.195312 231.683594 297.195312 231.683594 298.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.46875 310.78125 C 304.46875 312.398438 302.039062 312.398438 302.039062 310.78125 C 302.039062 309.160156 304.46875 309.160156 304.46875 310.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.742188 259.398438 C 271.742188 261.015625 269.3125 261.015625 269.3125 259.398438 C 269.3125 257.777344 271.742188 257.777344 271.742188 259.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.984375 232.234375 C 191.984375 233.855469 189.554688 233.855469 189.554688 232.234375 C 189.554688 230.613281 191.984375 230.613281 191.984375 232.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.054688 241.816406 C 223.054688 243.4375 220.625 243.4375 220.625 241.816406 C 220.625 240.199219 223.054688 240.199219 223.054688 241.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.382812 237.527344 C 231.382812 239.148438 228.953125 239.148438 228.953125 237.527344 C 228.953125 235.90625 231.382812 235.90625 231.382812 237.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.4375 82.890625 C 125.4375 84.507812 123.003906 84.507812 123.003906 82.890625 C 123.003906 81.269531 125.4375 81.269531 125.4375 82.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.65625 174.839844 C 292.65625 176.460938 290.226562 176.460938 290.226562 174.839844 C 290.226562 173.21875 292.65625 173.21875 292.65625 174.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.1875 224.269531 C 282.1875 225.890625 279.757812 225.890625 279.757812 224.269531 C 279.757812 222.648438 282.1875 222.648438 282.1875 224.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.058594 273.90625 C 246.058594 275.527344 243.625 275.527344 243.625 273.90625 C 243.625 272.285156 246.058594 272.285156 246.058594 273.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.273438 303.539062 C 256.273438 305.160156 253.84375 305.160156 253.84375 303.539062 C 253.84375 301.917969 256.273438 301.917969 256.273438 303.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.863281 278.835938 C 254.863281 280.453125 252.433594 280.453125 252.433594 278.835938 C 252.433594 277.214844 254.863281 277.214844 254.863281 278.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.988281 257.53125 C 269.988281 259.152344 267.554688 259.152344 267.554688 257.53125 C 267.554688 255.914062 269.988281 255.914062 269.988281 257.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.347656 355.382812 C 300.347656 357.003906 297.917969 357.003906 297.917969 355.382812 C 297.917969 353.761719 300.347656 353.761719 300.347656 355.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.449219 359.722656 C 307.449219 361.34375 305.019531 361.34375 305.019531 359.722656 C 305.019531 358.101562 307.449219 358.101562 307.449219 359.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 359.042969 173.128906 C 359.042969 174.75 356.609375 174.75 356.609375 173.128906 C 356.609375 171.507812 359.042969 171.507812 359.042969 173.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.429688 198.398438 C 288.429688 200.015625 286 200.015625 286 198.398438 C 286 196.777344 288.429688 196.777344 288.429688 198.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 431.972656 188.597656 C 431.972656 190.214844 429.542969 190.214844 429.542969 188.597656 C 429.542969 186.976562 431.972656 186.976562 431.972656 188.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.375 333.515625 C 281.375 335.136719 278.945312 335.136719 278.945312 333.515625 C 278.945312 331.894531 281.375 331.894531 281.375 333.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.351562 298.65625 C 293.351562 300.277344 290.921875 300.277344 290.921875 298.65625 C 290.921875 297.035156 293.351562 297.035156 293.351562 298.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.019531 257.242188 C 164.019531 258.863281 161.589844 258.863281 161.589844 257.242188 C 161.589844 255.625 164.019531 255.625 164.019531 257.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.734375 298.765625 C 246.734375 300.386719 244.304688 300.386719 244.304688 298.765625 C 244.304688 297.148438 246.734375 297.148438 246.734375 298.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.863281 319.539062 C 292.863281 321.15625 290.433594 321.15625 290.433594 319.539062 C 290.433594 317.917969 292.863281 317.917969 292.863281 319.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.410156 249.550781 C 208.410156 251.171875 205.980469 251.171875 205.980469 249.550781 C 205.980469 247.929688 208.410156 247.929688 208.410156 249.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.988281 145.03125 C 289.988281 146.652344 287.558594 146.652344 287.558594 145.03125 C 287.558594 143.414062 289.988281 143.414062 289.988281 145.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.691406 234.746094 C 215.691406 236.367188 213.261719 236.367188 213.261719 234.746094 C 213.261719 233.125 215.691406 233.125 215.691406 234.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.648438 418.691406 L 152.285156 415.855469 L 149.011719 415.855469 Z M 150.648438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.167969 377.433594 C 149.167969 379.054688 146.734375 379.054688 146.734375 377.433594 C 146.734375 375.816406 149.167969 375.816406 149.167969 377.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.613281 329.199219 C 261.613281 330.816406 259.183594 330.816406 259.183594 329.199219 C 259.183594 327.578125 261.613281 327.578125 261.613281 329.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.265625 270.894531 C 278.265625 272.515625 275.835938 272.515625 275.835938 270.894531 C 275.835938 269.273438 278.265625 269.273438 278.265625 270.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.386719 286.355469 C 321.386719 287.976562 318.957031 287.976562 318.957031 286.355469 C 318.957031 284.734375 321.386719 284.734375 321.386719 286.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.074219 204.367188 C 267.074219 205.984375 264.644531 205.984375 264.644531 204.367188 C 264.644531 202.746094 267.074219 202.746094 267.074219 204.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.433594 220.066406 C 268.433594 221.6875 266.003906 221.6875 266.003906 220.066406 C 266.003906 218.445312 268.433594 218.445312 268.433594 220.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.832031 70.910156 L 250.464844 73.746094 L 247.195312 73.746094 Z M 248.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.003906 317.183594 C 220.003906 318.804688 217.570312 318.804688 217.570312 317.183594 C 217.570312 315.566406 220.003906 315.566406 220.003906 317.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.675781 273.460938 C 244.675781 275.078125 242.246094 275.078125 242.246094 273.460938 C 242.246094 271.839844 244.675781 271.839844 244.675781 273.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.433594 261.414062 C 223.433594 263.035156 221.003906 263.035156 221.003906 261.414062 C 221.003906 259.792969 223.433594 259.792969 223.433594 261.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.425781 311.882812 C 231.425781 313.503906 228.996094 313.503906 228.996094 311.882812 C 228.996094 310.261719 231.425781 310.261719 231.425781 311.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.40625 305.320312 C 216.40625 306.941406 213.976562 306.941406 213.976562 305.320312 C 213.976562 303.699219 216.40625 303.699219 216.40625 305.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.539062 316.355469 C 313.539062 317.972656 311.109375 317.972656 311.109375 316.355469 C 311.109375 314.734375 313.539062 314.734375 313.539062 316.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.347656 288.785156 C 263.347656 290.40625 260.917969 290.40625 260.917969 288.785156 C 260.917969 287.164062 263.347656 287.164062 263.347656 288.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.019531 159.457031 C 237.019531 161.078125 234.589844 161.078125 234.589844 159.457031 C 234.589844 157.835938 237.019531 157.835938 237.019531 159.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.265625 418.691406 L 141.902344 415.855469 L 138.632812 415.855469 Z M 140.265625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.863281 197.574219 C 284.863281 199.195312 282.433594 199.195312 282.433594 197.574219 C 282.433594 195.957031 284.863281 195.957031 284.863281 197.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.601562 322.523438 C 141.601562 324.140625 139.171875 324.140625 139.171875 322.523438 C 139.171875 320.902344 141.601562 320.902344 141.601562 322.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.6875 70.910156 L 141.324219 73.746094 L 138.050781 73.746094 Z M 139.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.859375 232.699219 C 260.859375 234.320312 258.429688 234.320312 258.429688 232.699219 C 258.429688 231.078125 260.859375 231.078125 260.859375 232.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.910156 325.199219 C 227.910156 326.820312 225.480469 326.820312 225.480469 325.199219 C 225.480469 323.578125 227.910156 323.578125 227.910156 325.199219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.015625 70.910156 L 222.652344 73.746094 L 219.378906 73.746094 Z M 221.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.105469 281.574219 C 270.105469 283.195312 267.675781 283.195312 267.675781 281.574219 C 267.675781 279.957031 270.105469 279.957031 270.105469 281.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.394531 248.519531 C 253.394531 250.140625 250.964844 250.140625 250.964844 248.519531 C 250.964844 246.902344 253.394531 246.902344 253.394531 248.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.425781 273.851562 C 199.425781 275.472656 196.996094 275.472656 196.996094 273.851562 C 196.996094 272.234375 199.425781 272.234375 199.425781 273.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.011719 317.203125 C 230.011719 318.824219 227.582031 318.824219 227.582031 317.203125 C 227.582031 315.582031 230.011719 315.582031 230.011719 317.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.085938 285.179688 C 277.085938 286.800781 274.65625 286.800781 274.65625 285.179688 C 274.65625 283.5625 277.085938 283.5625 277.085938 285.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.351562 210.445312 C 282.351562 212.0625 279.921875 212.0625 279.921875 210.445312 C 279.921875 208.824219 282.351562 208.824219 282.351562 210.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.761719 241.0625 C 260.761719 242.683594 258.332031 242.683594 258.332031 241.0625 C 258.332031 239.441406 260.761719 239.441406 260.761719 241.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.007812 312.28125 C 149.007812 313.898438 146.578125 313.898438 146.578125 312.28125 C 146.578125 310.660156 149.007812 310.660156 149.007812 312.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.191406 214.453125 C 290.191406 216.074219 287.761719 216.074219 287.761719 214.453125 C 287.761719 212.835938 290.191406 212.835938 290.191406 214.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.289062 327.804688 C 209.289062 329.421875 206.859375 329.421875 206.859375 327.804688 C 206.859375 326.183594 209.289062 326.183594 209.289062 327.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.394531 250.660156 C 259.394531 252.277344 256.960938 252.277344 256.960938 250.660156 C 256.960938 249.039062 259.394531 249.039062 259.394531 250.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.914062 240.007812 C 278.914062 241.628906 276.484375 241.628906 276.484375 240.007812 C 276.484375 238.390625 278.914062 238.390625 278.914062 240.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.105469 70.910156 L 218.742188 73.746094 L 215.46875 73.746094 Z M 217.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.757812 197.625 C 292.757812 199.246094 290.328125 199.246094 290.328125 197.625 C 290.328125 196.003906 292.757812 196.003906 292.757812 197.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.496094 369.6875 C 144.496094 371.304688 142.0625 371.304688 142.0625 369.6875 C 142.0625 368.066406 144.496094 368.066406 144.496094 369.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.433594 211.417969 C 253.433594 213.035156 251.003906 213.035156 251.003906 211.417969 C 251.003906 209.796875 253.433594 209.796875 253.433594 211.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.933594 199.101562 C 186.933594 200.722656 184.503906 200.722656 184.503906 199.101562 C 184.503906 197.480469 186.933594 197.480469 186.933594 199.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.964844 280.992188 C 286.964844 282.609375 284.535156 282.609375 284.535156 280.992188 C 284.535156 279.371094 286.964844 279.371094 286.964844 280.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.640625 418.691406 L 275.277344 415.855469 L 272.003906 415.855469 Z M 273.640625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.863281 70.910156 L 200.5 73.746094 L 197.226562 73.746094 Z M 198.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.566406 227.894531 C 288.566406 229.515625 286.136719 229.515625 286.136719 227.894531 C 286.136719 226.273438 288.566406 226.273438 288.566406 227.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 207.117188 103.714844 C 207.117188 105.335938 204.6875 105.335938 204.6875 103.714844 C 204.6875 102.09375 207.117188 102.09375 207.117188 103.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.777344 324.691406 C 151.777344 326.3125 149.347656 326.3125 149.347656 324.691406 C 149.347656 323.070312 151.777344 323.070312 151.777344 324.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.226562 253.367188 C 274.226562 254.988281 271.796875 254.988281 271.796875 253.367188 C 271.796875 251.746094 274.226562 251.746094 274.226562 253.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.449219 268.011719 C 250.449219 269.632812 248.019531 269.632812 248.019531 268.011719 C 248.019531 266.394531 250.449219 266.394531 250.449219 268.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.425781 262.910156 C 245.425781 264.53125 242.996094 264.53125 242.996094 262.910156 C 242.996094 261.289062 245.425781 261.289062 245.425781 262.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.734375 383.421875 C 197.734375 385.042969 195.304688 385.042969 195.304688 383.421875 C 195.304688 381.804688 197.734375 381.804688 197.734375 383.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.296875 283.609375 C 267.296875 285.230469 264.867188 285.230469 264.867188 283.609375 C 264.867188 281.988281 267.296875 281.988281 267.296875 283.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.234375 237.996094 C 213.234375 239.613281 210.804688 239.613281 210.804688 237.996094 C 210.804688 236.375 213.234375 236.375 213.234375 237.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.574219 293.414062 C 272.574219 295.035156 270.144531 295.035156 270.144531 293.414062 C 270.144531 291.796875 272.574219 291.796875 272.574219 293.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.550781 274.203125 C 199.550781 275.820312 197.121094 275.820312 197.121094 274.203125 C 197.121094 272.582031 199.550781 272.582031 199.550781 274.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.988281 290.523438 C 197.988281 292.140625 195.558594 292.140625 195.558594 290.523438 C 195.558594 288.902344 197.988281 288.902344 197.988281 290.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.0625 319.257812 C 205.0625 320.878906 202.632812 320.878906 202.632812 319.257812 C 202.632812 317.640625 205.0625 317.640625 205.0625 319.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.863281 304.765625 C 194.863281 306.382812 192.433594 306.382812 192.433594 304.765625 C 192.433594 303.144531 194.863281 303.144531 194.863281 304.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.550781 332.519531 C 160.550781 334.140625 158.121094 334.140625 158.121094 332.519531 C 158.121094 330.902344 160.550781 330.902344 160.550781 332.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.738281 276.941406 C 164.738281 278.558594 162.308594 278.558594 162.308594 276.941406 C 162.308594 275.320312 164.738281 275.320312 164.738281 276.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.902344 88.222656 C 252.902344 89.84375 250.472656 89.84375 250.472656 88.222656 C 250.472656 86.601562 252.902344 86.601562 252.902344 88.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.617188 281.613281 C 271.617188 283.234375 269.1875 283.234375 269.1875 281.613281 C 269.1875 279.996094 271.617188 279.996094 271.617188 281.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 360.355469 418.691406 L 361.992188 415.855469 L 358.71875 415.855469 Z M 360.355469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 308.265625 418.691406 L 309.902344 415.855469 L 306.628906 415.855469 Z M 308.265625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.585938 96.65625 C 305.585938 98.277344 303.152344 98.277344 303.152344 96.65625 C 303.152344 95.039062 305.585938 95.039062 305.585938 96.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.316406 275.390625 C 260.316406 277.007812 257.886719 277.007812 257.886719 275.390625 C 257.886719 273.769531 260.316406 273.769531 260.316406 275.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.421875 192.753906 C 255.421875 194.375 252.992188 194.375 252.992188 192.753906 C 252.992188 191.136719 255.421875 191.136719 255.421875 192.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.886719 295.855469 C 176.886719 297.476562 174.457031 297.476562 174.457031 295.855469 C 174.457031 294.234375 176.886719 294.234375 176.886719 295.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.398438 225.046875 C 263.398438 226.667969 260.96875 226.667969 260.96875 225.046875 C 260.96875 223.429688 263.398438 223.429688 263.398438 225.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.609375 249.628906 C 194.609375 251.25 192.179688 251.25 192.179688 249.628906 C 192.179688 248.011719 194.609375 248.011719 194.609375 249.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.570312 255.976562 C 218.570312 257.597656 216.140625 257.597656 216.140625 255.976562 C 216.140625 254.359375 218.570312 254.359375 218.570312 255.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.304688 290.191406 C 238.304688 291.8125 235.875 291.8125 235.875 290.191406 C 235.875 288.570312 238.304688 288.570312 238.304688 290.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.328125 279.363281 C 193.328125 280.980469 190.894531 280.980469 190.894531 279.363281 C 190.894531 277.742188 193.328125 277.742188 193.328125 279.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.296875 189.367188 C 272.296875 190.988281 269.867188 190.988281 269.867188 189.367188 C 269.867188 187.746094 272.296875 187.746094 272.296875 189.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.0625 332.515625 C 230.0625 334.136719 227.632812 334.136719 227.632812 332.515625 C 227.632812 330.894531 230.0625 330.894531 230.0625 332.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.988281 280.757812 C 230.988281 282.378906 228.558594 282.378906 228.558594 280.757812 C 228.558594 279.140625 230.988281 279.140625 230.988281 280.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.519531 351.605469 C 276.519531 353.226562 274.089844 353.226562 274.089844 351.605469 C 274.089844 349.984375 276.519531 349.984375 276.519531 351.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.804688 205.074219 C 294.804688 206.695312 292.371094 206.695312 292.371094 205.074219 C 292.371094 203.457031 294.804688 203.457031 294.804688 205.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.136719 70.910156 L 210.769531 73.746094 L 207.5 73.746094 Z M 209.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.765625 249.230469 C 201.765625 250.851562 199.335938 250.851562 199.335938 249.230469 C 199.335938 247.613281 201.765625 247.613281 201.765625 249.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.746094 418.691406 L 254.382812 415.855469 L 251.109375 415.855469 Z M 252.746094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.339844 274.988281 C 165.339844 276.609375 162.910156 276.609375 162.910156 274.988281 C 162.910156 273.367188 165.339844 273.367188 165.339844 274.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.191406 248.347656 C 169.191406 249.96875 166.761719 249.96875 166.761719 248.347656 C 166.761719 246.726562 169.191406 246.726562 169.191406 248.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.707031 298.636719 C 214.707031 300.257812 212.277344 300.257812 212.277344 298.636719 C 212.277344 297.015625 214.707031 297.015625 214.707031 298.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.398438 111.230469 C 177.398438 112.847656 174.96875 112.847656 174.96875 111.230469 C 174.96875 109.609375 177.398438 109.609375 177.398438 111.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.441406 268.253906 C 181.441406 269.875 179.011719 269.875 179.011719 268.253906 C 179.011719 266.632812 181.441406 266.632812 181.441406 268.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.933594 317.472656 C 226.933594 319.089844 224.503906 319.089844 224.503906 317.472656 C 224.503906 315.851562 226.933594 315.851562 226.933594 317.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.4375 246.625 C 301.4375 248.246094 299.007812 248.246094 299.007812 246.625 C 299.007812 245.007812 301.4375 245.007812 301.4375 246.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.730469 252.203125 C 266.730469 253.824219 264.300781 253.824219 264.300781 252.203125 C 264.300781 250.585938 266.730469 250.585938 266.730469 252.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.511719 322.773438 C 223.511719 324.390625 221.082031 324.390625 221.082031 322.773438 C 221.082031 321.152344 223.511719 321.152344 223.511719 322.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.292969 88.359375 C 142.292969 89.980469 139.863281 89.980469 139.863281 88.359375 C 139.863281 86.738281 142.292969 86.738281 142.292969 88.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.03125 296.222656 C 294.03125 297.84375 291.597656 297.84375 291.597656 296.222656 C 291.597656 294.601562 294.03125 294.601562 294.03125 296.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.03125 96.527344 C 141.03125 98.148438 138.601562 98.148438 138.601562 96.527344 C 138.601562 94.90625 141.03125 94.90625 141.03125 96.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.707031 418.691406 L 170.34375 415.855469 L 167.070312 415.855469 Z M 168.707031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 339.398438 234.789062 C 339.398438 236.410156 336.96875 236.410156 336.96875 234.789062 C 336.96875 233.167969 339.398438 233.167969 339.398438 234.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.941406 189.265625 C 155.941406 190.886719 153.511719 190.886719 153.511719 189.265625 C 153.511719 187.644531 155.941406 187.644531 155.941406 189.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.664062 70.910156 L 216.300781 73.746094 L 213.03125 73.746094 Z M 214.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.144531 297.976562 C 289.144531 299.597656 286.714844 299.597656 286.714844 297.976562 C 286.714844 296.359375 289.144531 296.359375 289.144531 297.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.507812 319.046875 C 268.507812 320.664062 266.078125 320.664062 266.078125 319.046875 C 266.078125 317.425781 268.507812 317.425781 268.507812 319.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.414062 173.726562 C 253.414062 175.347656 250.984375 175.347656 250.984375 173.726562 C 250.984375 172.105469 253.414062 172.105469 253.414062 173.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.757812 184.675781 C 237.757812 186.296875 235.328125 186.296875 235.328125 184.675781 C 235.328125 183.054688 237.757812 183.054688 237.757812 184.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 373.914062 298.023438 C 373.914062 299.640625 371.484375 299.640625 371.484375 298.023438 C 371.484375 296.402344 373.914062 296.402344 373.914062 298.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283 98.371094 C 283 99.988281 280.570312 99.988281 280.570312 98.371094 C 280.570312 96.75 283 96.75 283 98.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 336.164062 282.628906 C 336.164062 284.25 333.734375 284.25 333.734375 282.628906 C 333.734375 281.011719 336.164062 281.011719 336.164062 282.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.824219 343.136719 C 237.824219 344.757812 235.394531 344.757812 235.394531 343.136719 C 235.394531 341.515625 237.824219 341.515625 237.824219 343.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.0625 188.878906 C 145.0625 190.5 142.632812 190.5 142.632812 188.878906 C 142.632812 187.257812 145.0625 187.257812 145.0625 188.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.050781 241.457031 C 277.050781 243.074219 274.621094 243.074219 274.621094 241.457031 C 274.621094 239.835938 277.050781 239.835938 277.050781 241.457031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.523438 418.691406 L 164.160156 415.855469 L 160.886719 415.855469 Z M 162.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.082031 235.570312 C 146.082031 237.191406 143.652344 237.191406 143.652344 235.570312 C 143.652344 233.949219 146.082031 233.949219 146.082031 235.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.253906 181.691406 C 217.253906 183.3125 214.824219 183.3125 214.824219 181.691406 C 214.824219 180.070312 217.253906 180.070312 217.253906 181.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.710938 291.917969 C 286.710938 293.539062 284.28125 293.539062 284.28125 291.917969 C 284.28125 290.300781 286.710938 290.300781 286.710938 291.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.753906 257.144531 C 324.753906 258.765625 322.324219 258.765625 322.324219 257.144531 C 322.324219 255.523438 324.753906 255.523438 324.753906 257.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.433594 311.355469 C 261.433594 312.972656 259.003906 312.972656 259.003906 311.355469 C 259.003906 309.734375 261.433594 309.734375 261.433594 311.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.050781 249.726562 C 274.050781 251.347656 271.621094 251.347656 271.621094 249.726562 C 271.621094 248.109375 274.050781 248.109375 274.050781 249.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.140625 255.351562 C 332.140625 256.972656 329.710938 256.972656 329.710938 255.351562 C 329.710938 253.730469 332.140625 253.730469 332.140625 255.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.609375 315.550781 C 274.609375 317.171875 272.179688 317.171875 272.179688 315.550781 C 272.179688 313.933594 274.609375 313.933594 274.609375 315.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.203125 253.375 C 248.203125 254.996094 245.773438 254.996094 245.773438 253.375 C 245.773438 251.753906 248.203125 251.753906 248.203125 253.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.71875 185.082031 C 219.71875 186.703125 217.289062 186.703125 217.289062 185.082031 C 217.289062 183.464844 219.71875 183.464844 219.71875 185.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.347656 251.265625 C 346.347656 252.882812 343.917969 252.882812 343.917969 251.265625 C 343.917969 249.644531 346.347656 249.644531 346.347656 251.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.621094 418.691406 L 163.257812 415.855469 L 159.984375 415.855469 Z M 161.621094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 357.332031 218.507812 C 357.332031 220.128906 354.902344 220.128906 354.902344 218.507812 C 354.902344 216.886719 357.332031 216.886719 357.332031 218.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.179688 418.691406 L 223.816406 415.855469 L 220.542969 415.855469 Z M 222.179688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.695312 242.15625 C 285.695312 243.777344 283.265625 243.777344 283.265625 242.15625 C 283.265625 240.535156 285.695312 240.535156 285.695312 242.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.601562 263.464844 C 235.601562 265.082031 233.167969 265.082031 233.167969 263.464844 C 233.167969 261.84375 235.601562 261.84375 235.601562 263.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.367188 244.769531 C 307.367188 246.390625 304.9375 246.390625 304.9375 244.769531 C 304.9375 243.152344 307.367188 243.152344 307.367188 244.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.984375 242.085938 C 309.984375 243.707031 307.554688 243.707031 307.554688 242.085938 C 307.554688 240.46875 309.984375 240.46875 309.984375 242.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.460938 138.488281 C 268.460938 140.105469 266.03125 140.105469 266.03125 138.488281 C 266.03125 136.867188 268.460938 136.867188 268.460938 138.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.226562 70.910156 L 281.863281 73.746094 L 278.589844 73.746094 Z M 280.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.960938 313.808594 C 275.960938 315.429688 273.53125 315.429688 273.53125 313.808594 C 273.53125 312.191406 275.960938 312.191406 275.960938 313.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.582031 325.363281 C 229.582031 326.984375 227.152344 326.984375 227.152344 325.363281 C 227.152344 323.742188 229.582031 323.742188 229.582031 325.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.859375 228.464844 C 235.859375 230.082031 233.429688 230.082031 233.429688 228.464844 C 233.429688 226.84375 235.859375 226.84375 235.859375 228.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.390625 70.910156 L 128.023438 73.746094 L 124.753906 73.746094 Z M 126.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.339844 246.917969 C 250.339844 248.535156 247.910156 248.535156 247.910156 246.917969 C 247.910156 245.296875 250.339844 245.296875 250.339844 246.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.914062 70.910156 L 168.550781 73.746094 L 165.277344 73.746094 Z M 166.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.554688 70.910156 L 128.191406 73.746094 L 124.917969 73.746094 Z M 126.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.722656 281.800781 C 284.722656 283.421875 282.292969 283.421875 282.292969 281.800781 C 282.292969 280.179688 284.722656 280.179688 284.722656 281.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.167969 232.789062 C 250.167969 234.410156 247.738281 234.410156 247.738281 232.789062 C 247.738281 231.171875 250.167969 231.171875 250.167969 232.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.652344 140.265625 C 196.652344 141.882812 194.222656 141.882812 194.222656 140.265625 C 194.222656 138.644531 196.652344 138.644531 196.652344 140.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.992188 276.0625 C 291.992188 277.683594 289.5625 277.683594 289.5625 276.0625 C 289.5625 274.441406 291.992188 274.441406 291.992188 276.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.878906 373.085938 C 116.878906 374.703125 114.449219 374.703125 114.449219 373.085938 C 114.449219 371.464844 116.878906 371.464844 116.878906 373.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.929688 70.910156 L 126.566406 73.746094 L 123.292969 73.746094 Z M 124.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.128906 165.820312 C 226.128906 167.441406 223.699219 167.441406 223.699219 165.820312 C 223.699219 164.199219 226.128906 164.199219 226.128906 165.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.292969 152.277344 C 263.292969 153.894531 260.863281 153.894531 260.863281 152.277344 C 260.863281 150.65625 263.292969 150.65625 263.292969 152.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.253906 70.910156 L 128.890625 73.746094 L 125.617188 73.746094 Z M 127.253906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.648438 254.078125 C 256.648438 255.695312 254.21875 255.695312 254.21875 254.078125 C 254.21875 252.457031 256.648438 252.457031 256.648438 254.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.28125 327.933594 C 320.28125 329.554688 317.851562 329.554688 317.851562 327.933594 C 317.851562 326.3125 320.28125 326.3125 320.28125 327.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.839844 227.910156 C 235.839844 229.527344 233.410156 229.527344 233.410156 227.910156 C 233.410156 226.289062 235.839844 226.289062 235.839844 227.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.894531 263.65625 C 269.894531 265.277344 267.464844 265.277344 267.464844 263.65625 C 267.464844 262.039062 269.894531 262.039062 269.894531 263.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.796875 278.816406 C 275.796875 280.4375 273.367188 280.4375 273.367188 278.816406 C 273.367188 277.195312 275.796875 277.195312 275.796875 278.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.582031 311.613281 C 238.582031 313.234375 236.152344 313.234375 236.152344 311.613281 C 236.152344 309.992188 238.582031 309.992188 238.582031 311.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.925781 265.015625 C 270.925781 266.636719 268.496094 266.636719 268.496094 265.015625 C 268.496094 263.394531 270.925781 263.394531 270.925781 265.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.367188 270.730469 C 242.367188 272.351562 239.9375 272.351562 239.9375 270.730469 C 239.9375 269.109375 242.367188 269.109375 242.367188 270.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 344.378906 258.257812 C 344.378906 259.878906 341.949219 259.878906 341.949219 258.257812 C 341.949219 256.640625 344.378906 256.640625 344.378906 258.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.90625 207.121094 C 259.90625 208.742188 257.476562 208.742188 257.476562 207.121094 C 257.476562 205.5 259.90625 205.5 259.90625 207.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.378906 267.160156 C 318.378906 268.78125 315.949219 268.78125 315.949219 267.160156 C 315.949219 265.542969 318.378906 265.542969 318.378906 267.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.230469 279.433594 C 274.230469 281.050781 271.800781 281.050781 271.800781 279.433594 C 271.800781 277.8125 274.230469 277.8125 274.230469 279.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.011719 249.113281 C 269.011719 250.734375 266.578125 250.734375 266.578125 249.113281 C 266.578125 247.492188 269.011719 247.492188 269.011719 249.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.507812 256.8125 C 220.507812 258.433594 218.078125 258.433594 218.078125 256.8125 C 218.078125 255.195312 220.507812 255.195312 220.507812 256.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.382812 335.28125 C 187.382812 336.898438 184.953125 336.898438 184.953125 335.28125 C 184.953125 333.660156 187.382812 333.660156 187.382812 335.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.367188 170.886719 C 199.367188 172.507812 196.9375 172.507812 196.9375 170.886719 C 196.9375 169.269531 199.367188 169.269531 199.367188 170.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.617188 241.523438 C 117.617188 243.140625 115.1875 243.140625 115.1875 241.523438 C 115.1875 239.902344 117.617188 239.902344 117.617188 241.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.617188 340.710938 C 261.617188 342.328125 259.1875 342.328125 259.1875 340.710938 C 259.1875 339.089844 261.617188 339.089844 261.617188 340.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.425781 382.992188 C 236.425781 384.613281 233.996094 384.613281 233.996094 382.992188 C 233.996094 381.375 236.425781 381.375 236.425781 382.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.222656 267.164062 C 310.222656 268.785156 307.792969 268.785156 307.792969 267.164062 C 307.792969 265.542969 310.222656 265.542969 310.222656 267.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.074219 229.550781 C 223.074219 231.171875 220.644531 231.171875 220.644531 229.550781 C 220.644531 227.929688 223.074219 227.929688 223.074219 229.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.089844 193.351562 C 338.089844 194.972656 335.660156 194.972656 335.660156 193.351562 C 335.660156 191.730469 338.089844 191.730469 338.089844 193.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.75 214.203125 C 350.75 215.824219 348.320312 215.824219 348.320312 214.203125 C 348.320312 212.585938 350.75 212.585938 350.75 214.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.515625 253.160156 C 271.515625 254.78125 269.085938 254.78125 269.085938 253.160156 C 269.085938 251.539062 271.515625 251.539062 271.515625 253.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.46875 238.359375 C 217.46875 239.980469 215.039062 239.980469 215.039062 238.359375 C 215.039062 236.742188 217.46875 236.742188 217.46875 238.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.042969 192.9375 C 207.042969 194.558594 204.613281 194.558594 204.613281 192.9375 C 204.613281 191.320312 207.042969 191.320312 207.042969 192.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.753906 239.261719 C 235.753906 240.882812 233.320312 240.882812 233.320312 239.261719 C 233.320312 237.640625 235.753906 237.640625 235.753906 239.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.878906 344.585938 C 209.878906 346.207031 207.449219 346.207031 207.449219 344.585938 C 207.449219 342.964844 209.878906 342.964844 209.878906 344.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 372.445312 240.964844 C 372.445312 242.585938 370.015625 242.585938 370.015625 240.964844 C 370.015625 239.347656 372.445312 239.347656 372.445312 240.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.222656 207.007812 C 281.222656 208.628906 278.792969 208.628906 278.792969 207.007812 C 278.792969 205.390625 281.222656 205.390625 281.222656 207.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.722656 159.625 C 278.722656 161.246094 276.289062 161.246094 276.289062 159.625 C 276.289062 158.003906 278.722656 158.003906 278.722656 159.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.257812 310.664062 C 269.257812 312.285156 266.828125 312.285156 266.828125 310.664062 C 266.828125 309.046875 269.257812 309.046875 269.257812 310.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.253906 224.320312 C 167.253906 225.941406 164.824219 225.941406 164.824219 224.320312 C 164.824219 222.699219 167.253906 222.699219 167.253906 224.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.332031 210.257812 C 293.332031 211.875 290.902344 211.875 290.902344 210.257812 C 290.902344 208.636719 293.332031 208.636719 293.332031 210.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.472656 385.027344 C 224.472656 386.644531 222.042969 386.644531 222.042969 385.027344 C 222.042969 383.40625 224.472656 383.40625 224.472656 385.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.671875 254.441406 C 288.671875 256.0625 286.242188 256.0625 286.242188 254.441406 C 286.242188 252.824219 288.671875 252.824219 288.671875 254.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.171875 70.910156 L 159.808594 73.746094 L 156.539062 73.746094 Z M 158.171875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.226562 244.996094 C 283.226562 246.613281 280.792969 246.613281 280.792969 244.996094 C 280.792969 243.375 283.226562 243.375 283.226562 244.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.972656 318.050781 C 287.972656 319.667969 285.542969 319.667969 285.542969 318.050781 C 285.542969 316.429688 287.972656 316.429688 287.972656 318.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.734375 278.792969 C 212.734375 280.414062 210.304688 280.414062 210.304688 278.792969 C 210.304688 277.171875 212.734375 277.171875 212.734375 278.792969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.972656 176.222656 C 258.972656 177.84375 256.542969 177.84375 256.542969 176.222656 C 256.542969 174.601562 258.972656 174.601562 258.972656 176.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.105469 332.234375 C 265.105469 333.851562 262.675781 333.851562 262.675781 332.234375 C 262.675781 330.613281 265.105469 330.613281 265.105469 332.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.628906 264.46875 C 182.628906 266.085938 180.199219 266.085938 180.199219 264.46875 C 180.199219 262.847656 182.628906 262.847656 182.628906 264.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.917969 266.515625 C 280.917969 268.136719 278.488281 268.136719 278.488281 266.515625 C 278.488281 264.898438 280.917969 264.898438 280.917969 266.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.898438 269.425781 C 252.898438 271.046875 250.46875 271.046875 250.46875 269.425781 C 250.46875 267.804688 252.898438 267.804688 252.898438 269.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.433594 250.320312 C 304.433594 251.941406 302.003906 251.941406 302.003906 250.320312 C 302.003906 248.703125 304.433594 248.703125 304.433594 250.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.375 248.730469 C 264.375 250.351562 261.945312 250.351562 261.945312 248.730469 C 261.945312 247.109375 264.375 247.109375 264.375 248.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.882812 308.074219 C 121.882812 309.695312 119.453125 309.695312 119.453125 308.074219 C 119.453125 306.457031 121.882812 306.457031 121.882812 308.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.113281 270.691406 C 262.113281 272.3125 259.683594 272.3125 259.683594 270.691406 C 259.683594 269.070312 262.113281 269.070312 262.113281 270.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.054688 195.503906 C 159.054688 197.125 156.625 197.125 156.625 195.503906 C 156.625 193.886719 159.054688 193.886719 159.054688 195.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.882812 321.136719 C 148.882812 322.757812 146.453125 322.757812 146.453125 321.136719 C 146.453125 319.515625 148.882812 319.515625 148.882812 321.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.6875 358.003906 C 240.6875 359.625 238.257812 359.625 238.257812 358.003906 C 238.257812 356.382812 240.6875 356.382812 240.6875 358.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.179688 260.992188 C 289.179688 262.613281 286.75 262.613281 286.75 260.992188 C 286.75 259.371094 289.179688 259.371094 289.179688 260.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.90625 262.117188 C 295.90625 263.738281 293.476562 263.738281 293.476562 262.117188 C 293.476562 260.5 295.90625 260.5 295.90625 262.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.136719 207.125 C 282.136719 208.742188 279.707031 208.742188 279.707031 207.125 C 279.707031 205.503906 282.136719 205.503906 282.136719 207.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.3125 274.921875 C 286.3125 276.539062 283.882812 276.539062 283.882812 274.921875 C 283.882812 273.300781 286.3125 273.300781 286.3125 274.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.230469 264.683594 C 275.230469 266.304688 272.800781 266.304688 272.800781 264.683594 C 272.800781 263.0625 275.230469 263.0625 275.230469 264.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.773438 255.078125 C 326.773438 256.695312 324.339844 256.695312 324.339844 255.078125 C 324.339844 253.457031 326.773438 253.457031 326.773438 255.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.8125 240.804688 C 268.8125 242.421875 266.378906 242.421875 266.378906 240.804688 C 266.378906 239.183594 268.8125 239.183594 268.8125 240.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.246094 263.902344 C 246.246094 265.523438 243.816406 265.523438 243.816406 263.902344 C 243.816406 262.28125 246.246094 262.28125 246.246094 263.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.929688 70.910156 L 144.566406 73.746094 L 141.296875 73.746094 Z M 142.929688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.714844 144.660156 C 157.714844 146.28125 155.285156 146.28125 155.285156 144.660156 C 155.285156 143.039062 157.714844 143.039062 157.714844 144.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.441406 70.910156 L 164.078125 73.746094 L 160.804688 73.746094 Z M 162.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.140625 300.125 C 315.140625 301.746094 312.710938 301.746094 312.710938 300.125 C 312.710938 298.503906 315.140625 298.503906 315.140625 300.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.316406 124.492188 C 235.316406 126.113281 232.886719 126.113281 232.886719 124.492188 C 232.886719 122.875 235.316406 122.875 235.316406 124.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.617188 157.285156 C 230.617188 158.902344 228.1875 158.902344 228.1875 157.285156 C 228.1875 155.664062 230.617188 155.664062 230.617188 157.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.214844 197.257812 C 218.214844 198.878906 215.785156 198.878906 215.785156 197.257812 C 215.785156 195.640625 218.214844 195.640625 218.214844 197.257812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.066406 70.910156 L 118.703125 73.746094 L 115.429688 73.746094 Z M 117.066406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.410156 418.691406 L 123.042969 415.855469 L 119.773438 415.855469 Z M 121.410156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.289062 70.910156 L 140.925781 73.746094 L 137.652344 73.746094 Z M 139.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.75 394.933594 C 217.75 396.554688 215.320312 396.554688 215.320312 394.933594 C 215.320312 393.316406 217.75 393.316406 217.75 394.933594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 307.867188 418.691406 L 309.503906 415.855469 L 306.230469 415.855469 Z M 307.867188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.960938 225.53125 C 264.960938 227.152344 262.53125 227.152344 262.53125 225.53125 C 262.53125 223.914062 264.960938 223.914062 264.960938 225.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.269531 172.605469 C 282.269531 174.226562 279.839844 174.226562 279.839844 172.605469 C 279.839844 170.988281 282.269531 170.988281 282.269531 172.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.699219 272.488281 C 248.699219 274.109375 246.269531 274.109375 246.269531 272.488281 C 246.269531 270.871094 248.699219 270.871094 248.699219 272.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.109375 70.910156 L 206.746094 73.746094 L 203.472656 73.746094 Z M 205.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.261719 90.457031 C 183.261719 92.074219 180.832031 92.074219 180.832031 90.457031 C 180.832031 88.835938 183.261719 88.835938 183.261719 90.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.296875 162.558594 C 275.296875 164.179688 272.867188 164.179688 272.867188 162.558594 C 272.867188 160.941406 275.296875 160.941406 275.296875 162.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.246094 167.558594 C 274.246094 169.175781 271.816406 169.175781 271.816406 167.558594 C 271.816406 165.9375 274.246094 165.9375 274.246094 167.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.875 70.910156 L 164.511719 73.746094 L 161.238281 73.746094 Z M 162.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.40625 222.636719 C 261.40625 224.253906 258.972656 224.253906 258.972656 222.636719 C 258.972656 221.015625 261.40625 221.015625 261.40625 222.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.402344 222.4375 C 268.402344 224.058594 265.972656 224.058594 265.972656 222.4375 C 265.972656 220.820312 268.402344 220.820312 268.402344 222.4375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.496094 70.910156 L 263.132812 73.746094 L 259.859375 73.746094 Z M 261.496094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.503906 124.65625 C 215.503906 126.277344 213.074219 126.277344 213.074219 124.65625 C 213.074219 123.035156 215.503906 123.035156 215.503906 124.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.367188 255.589844 C 275.367188 257.207031 272.9375 257.207031 272.9375 255.589844 C 272.9375 253.96875 275.367188 253.96875 275.367188 255.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.542969 285.949219 C 278.542969 287.570312 276.113281 287.570312 276.113281 285.949219 C 276.113281 284.332031 278.542969 284.332031 278.542969 285.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.105469 246.820312 C 266.105469 248.441406 263.675781 248.441406 263.675781 246.820312 C 263.675781 245.199219 266.105469 245.199219 266.105469 246.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.46875 335.699219 C 313.46875 337.320312 311.039062 337.320312 311.039062 335.699219 C 311.039062 334.078125 313.46875 334.078125 313.46875 335.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 377.371094 367.113281 C 377.371094 368.734375 374.941406 368.734375 374.941406 367.113281 C 374.941406 365.492188 377.371094 365.492188 377.371094 367.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.84375 70.910156 L 202.480469 73.746094 L 199.207031 73.746094 Z M 200.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.566406 70.910156 L 238.203125 73.746094 L 234.929688 73.746094 Z M 236.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.382812 236.261719 C 236.382812 237.882812 233.953125 237.882812 233.953125 236.261719 C 233.953125 234.640625 236.382812 234.640625 236.382812 236.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.996094 293.378906 C 264.996094 295 262.566406 295 262.566406 293.378906 C 262.566406 291.757812 264.996094 291.757812 264.996094 293.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.128906 320.34375 C 269.128906 321.960938 266.699219 321.960938 266.699219 320.34375 C 266.699219 318.722656 269.128906 318.722656 269.128906 320.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.175781 412.566406 C 210.175781 414.183594 207.746094 414.183594 207.746094 412.566406 C 207.746094 410.945312 210.175781 410.945312 210.175781 412.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.800781 407.824219 C 281.800781 409.441406 279.371094 409.441406 279.371094 407.824219 C 279.371094 406.203125 281.800781 406.203125 281.800781 407.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.464844 294.605469 C 263.464844 296.226562 261.035156 296.226562 261.035156 294.605469 C 261.035156 292.988281 263.464844 292.988281 263.464844 294.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.453125 205.886719 C 224.453125 207.507812 222.019531 207.507812 222.019531 205.886719 C 222.019531 204.265625 224.453125 204.265625 224.453125 205.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.839844 260.710938 C 259.839844 262.332031 257.410156 262.332031 257.410156 260.710938 C 257.410156 259.09375 259.839844 259.09375 259.839844 260.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.144531 307.566406 C 126.144531 309.1875 123.714844 309.1875 123.714844 307.566406 C 123.714844 305.949219 126.144531 305.949219 126.144531 307.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.222656 220.113281 C 283.222656 221.730469 280.792969 221.730469 280.792969 220.113281 C 280.792969 218.492188 283.222656 218.492188 283.222656 220.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.140625 202.261719 C 179.140625 203.882812 176.710938 203.882812 176.710938 202.261719 C 176.710938 200.640625 179.140625 200.640625 179.140625 202.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.496094 255.058594 C 265.496094 256.679688 263.066406 256.679688 263.066406 255.058594 C 263.066406 253.441406 265.496094 253.441406 265.496094 255.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.460938 232.707031 C 312.460938 234.328125 310.03125 234.328125 310.03125 232.707031 C 310.03125 231.089844 312.460938 231.089844 312.460938 232.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.707031 261.929688 C 241.707031 263.546875 239.277344 263.546875 239.277344 261.929688 C 239.277344 260.308594 241.707031 260.308594 241.707031 261.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.980469 243.960938 C 212.980469 245.582031 210.550781 245.582031 210.550781 243.960938 C 210.550781 242.339844 212.980469 242.339844 212.980469 243.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.433594 163.734375 C 257.433594 165.355469 255.003906 165.355469 255.003906 163.734375 C 255.003906 162.113281 257.433594 162.113281 257.433594 163.734375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.777344 418.691406 L 184.414062 415.855469 L 181.140625 415.855469 Z M 182.777344 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.839844 70.910156 L 236.476562 73.746094 L 233.203125 73.746094 Z M 234.839844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.757812 70.910156 L 204.390625 73.746094 L 201.121094 73.746094 Z M 202.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.582031 73.132812 C 256.582031 74.753906 254.152344 74.753906 254.152344 73.132812 C 254.152344 71.515625 256.582031 71.515625 256.582031 73.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.109375 258.648438 C 146.109375 260.269531 143.679688 260.269531 143.679688 258.648438 C 143.679688 257.027344 146.109375 257.027344 146.109375 258.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.378906 247.492188 C 263.378906 249.113281 260.949219 249.113281 260.949219 247.492188 C 260.949219 245.875 263.378906 245.875 263.378906 247.492188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 296.792969 70.910156 L 298.429688 73.746094 L 295.15625 73.746094 Z M 296.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.613281 343.074219 C 203.613281 344.691406 201.183594 344.691406 201.183594 343.074219 C 201.183594 341.453125 203.613281 341.453125 203.613281 343.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.859375 256.113281 C 237.859375 257.734375 235.429688 257.734375 235.429688 256.113281 C 235.429688 254.492188 237.859375 254.492188 237.859375 256.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.839844 276.261719 C 275.839844 277.878906 273.410156 277.878906 273.410156 276.261719 C 273.410156 274.640625 275.839844 274.640625 275.839844 276.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.21875 242.480469 C 284.21875 244.101562 281.789062 244.101562 281.789062 242.480469 C 281.789062 240.859375 284.21875 240.859375 284.21875 242.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.617188 234.269531 C 238.617188 235.890625 236.1875 235.890625 236.1875 234.269531 C 236.1875 232.648438 238.617188 232.648438 238.617188 234.269531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.050781 70.910156 L 175.6875 73.746094 L 172.414062 73.746094 Z M 174.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.269531 72.90625 C 194.269531 74.527344 191.835938 74.527344 191.835938 72.90625 C 191.835938 71.289062 194.269531 71.289062 194.269531 72.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.222656 212.386719 C 147.222656 214.007812 144.792969 214.007812 144.792969 212.386719 C 144.792969 210.765625 147.222656 210.765625 147.222656 212.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.808594 70.910156 L 228.445312 73.746094 L 225.171875 73.746094 Z M 226.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.742188 223.976562 C 223.742188 225.597656 221.308594 225.597656 221.308594 223.976562 C 221.308594 222.355469 223.742188 222.355469 223.742188 223.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.097656 224.742188 C 189.097656 226.363281 186.667969 226.363281 186.667969 224.742188 C 186.667969 223.121094 189.097656 223.121094 189.097656 224.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.425781 215.433594 C 191.425781 217.050781 188.996094 217.050781 188.996094 215.433594 C 188.996094 213.8125 191.425781 213.8125 191.425781 215.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.316406 154.050781 C 150.316406 155.671875 147.882812 155.671875 147.882812 154.050781 C 147.882812 152.429688 150.316406 152.429688 150.316406 154.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.566406 257.683594 C 243.566406 259.304688 241.136719 259.304688 241.136719 257.683594 C 241.136719 256.066406 243.566406 256.066406 243.566406 257.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.015625 152.011719 C 259.015625 153.628906 256.585938 153.628906 256.585938 152.011719 C 256.585938 150.390625 259.015625 150.390625 259.015625 152.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.269531 144.683594 C 204.269531 146.304688 201.839844 146.304688 201.839844 144.683594 C 201.839844 143.0625 204.269531 143.0625 204.269531 144.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.109375 318.347656 C 331.109375 319.96875 328.679688 319.96875 328.679688 318.347656 C 328.679688 316.730469 331.109375 316.730469 331.109375 318.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.539062 192.265625 C 287.539062 193.886719 285.109375 193.886719 285.109375 192.265625 C 285.109375 190.644531 287.539062 190.644531 287.539062 192.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.566406 124.105469 C 345.566406 125.726562 343.136719 125.726562 343.136719 124.105469 C 343.136719 122.484375 345.566406 122.484375 345.566406 124.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.753906 105.425781 C 247.753906 107.046875 245.324219 107.046875 245.324219 105.425781 C 245.324219 103.804688 247.753906 103.804688 247.753906 105.425781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.847656 70.910156 L 157.484375 73.746094 L 154.210938 73.746094 Z M 155.847656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.75 212.660156 C 228.75 214.28125 226.320312 214.28125 226.320312 212.660156 C 226.320312 211.039062 228.75 211.039062 228.75 212.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.832031 211.726562 C 237.832031 213.34375 235.398438 213.34375 235.398438 211.726562 C 235.398438 210.105469 237.832031 210.105469 237.832031 211.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.320312 172.144531 C 220.320312 173.761719 217.886719 173.761719 217.886719 172.144531 C 217.886719 170.523438 220.320312 170.523438 220.320312 172.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.808594 74.09375 C 254.808594 75.710938 252.378906 75.710938 252.378906 74.09375 C 252.378906 72.472656 254.808594 72.472656 254.808594 74.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.726562 131.238281 C 191.726562 132.855469 189.296875 132.855469 189.296875 131.238281 C 189.296875 129.617188 191.726562 129.617188 191.726562 131.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.03125 307.464844 C 335.03125 309.085938 332.601562 309.085938 332.601562 307.464844 C 332.601562 305.847656 335.03125 305.847656 335.03125 307.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.453125 276.339844 C 325.453125 277.960938 323.023438 277.960938 323.023438 276.339844 C 323.023438 274.722656 325.453125 274.722656 325.453125 276.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.730469 206.660156 C 262.730469 208.277344 260.300781 208.277344 260.300781 206.660156 C 260.300781 205.039062 262.730469 205.039062 262.730469 206.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.871094 176.347656 C 257.871094 177.96875 255.441406 177.96875 255.441406 176.347656 C 255.441406 174.726562 257.871094 174.726562 257.871094 176.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.074219 144.648438 C 286.074219 146.269531 283.644531 146.269531 283.644531 144.648438 C 283.644531 143.03125 286.074219 143.03125 286.074219 144.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.070312 299.175781 C 273.070312 300.796875 270.636719 300.796875 270.636719 299.175781 C 270.636719 297.558594 273.070312 297.558594 273.070312 299.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.03125 263.285156 C 276.03125 264.902344 273.597656 264.902344 273.597656 263.285156 C 273.597656 261.664062 276.03125 261.664062 276.03125 263.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.589844 246.445312 C 139.589844 248.0625 137.160156 248.0625 137.160156 246.445312 C 137.160156 244.824219 139.589844 244.824219 139.589844 246.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.089844 93.191406 C 141.089844 94.808594 138.660156 94.808594 138.660156 93.191406 C 138.660156 91.570312 141.089844 91.570312 141.089844 93.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.074219 291.46875 C 198.074219 293.089844 195.644531 293.089844 195.644531 291.46875 C 195.644531 289.851562 198.074219 289.851562 198.074219 291.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.296875 70.910156 L 270.933594 73.746094 L 267.664062 73.746094 Z M 269.296875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.90625 167.550781 C 201.90625 169.171875 199.476562 169.171875 199.476562 167.550781 C 199.476562 165.933594 201.90625 165.933594 201.90625 167.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.988281 172.824219 C 164.988281 174.445312 162.558594 174.445312 162.558594 172.824219 C 162.558594 171.207031 164.988281 171.207031 164.988281 172.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.488281 301.402344 C 189.488281 303.023438 187.058594 303.023438 187.058594 301.402344 C 187.058594 299.78125 189.488281 299.78125 189.488281 301.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.578125 70.910156 L 242.214844 73.746094 L 238.941406 73.746094 Z M 240.578125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.5 325.808594 C 322.5 327.429688 320.070312 327.429688 320.070312 325.808594 C 320.070312 324.1875 322.5 324.1875 322.5 325.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.390625 264.390625 C 315.390625 266.007812 312.960938 266.007812 312.960938 264.390625 C 312.960938 262.769531 315.390625 262.769531 315.390625 264.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.921875 97.566406 C 149.921875 99.183594 147.492188 99.183594 147.492188 97.566406 C 147.492188 95.945312 149.921875 95.945312 149.921875 97.566406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.292969 418.691406 L 265.929688 415.855469 L 262.65625 415.855469 Z M 264.292969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.71875 223.933594 C 225.71875 225.554688 223.289062 225.554688 223.289062 223.933594 C 223.289062 222.3125 225.71875 222.3125 225.71875 223.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.722656 307.050781 C 310.722656 308.667969 308.292969 308.667969 308.292969 307.050781 C 308.292969 305.429688 310.722656 305.429688 310.722656 307.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.757812 70.910156 L 257.394531 73.746094 L 254.121094 73.746094 Z M 255.757812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.289062 275.992188 C 286.289062 277.613281 283.859375 277.613281 283.859375 275.992188 C 283.859375 274.371094 286.289062 274.371094 286.289062 275.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.011719 295.433594 C 292.011719 297.050781 289.582031 297.050781 289.582031 295.433594 C 289.582031 293.8125 292.011719 293.8125 292.011719 295.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.613281 320.59375 C 276.613281 322.214844 274.183594 322.214844 274.183594 320.59375 C 274.183594 318.972656 276.613281 318.972656 276.613281 320.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.472656 158.164062 C 321.472656 159.785156 319.042969 159.785156 319.042969 158.164062 C 319.042969 156.546875 321.472656 156.546875 321.472656 158.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 328.074219 399.222656 C 328.074219 400.839844 325.644531 400.839844 325.644531 399.222656 C 325.644531 397.601562 328.074219 397.601562 328.074219 399.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.457031 145.71875 C 145.457031 147.339844 143.027344 147.339844 143.027344 145.71875 C 143.027344 144.097656 145.457031 144.097656 145.457031 145.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.816406 70.910156 L 159.449219 73.746094 L 156.179688 73.746094 Z M 157.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 395.695312 411.371094 C 395.695312 412.988281 393.265625 412.988281 393.265625 411.371094 C 393.265625 409.75 395.695312 409.75 395.695312 411.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.90625 283.691406 C 247.90625 285.308594 245.476562 285.308594 245.476562 283.691406 C 245.476562 282.070312 247.90625 282.070312 247.90625 283.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.8125 216.5 C 225.8125 218.117188 223.378906 218.117188 223.378906 216.5 C 223.378906 214.878906 225.8125 214.878906 225.8125 216.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.242188 290.21875 C 269.242188 291.839844 266.8125 291.839844 266.8125 290.21875 C 266.8125 288.597656 269.242188 288.597656 269.242188 290.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.953125 284.929688 C 277.953125 286.550781 275.523438 286.550781 275.523438 284.929688 C 275.523438 283.308594 277.953125 283.308594 277.953125 284.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.492188 286.289062 C 244.492188 287.910156 242.0625 287.910156 242.0625 286.289062 C 242.0625 284.671875 244.492188 284.671875 244.492188 286.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.699219 209.378906 C 258.699219 211 256.269531 211 256.269531 209.378906 C 256.269531 207.757812 258.699219 207.757812 258.699219 209.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.476562 70.910156 L 146.113281 73.746094 L 142.839844 73.746094 Z M 144.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.769531 220.804688 C 262.769531 222.421875 260.339844 222.421875 260.339844 220.804688 C 260.339844 219.183594 262.769531 219.183594 262.769531 220.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.683594 263.929688 C 232.683594 265.550781 230.253906 265.550781 230.253906 263.929688 C 230.253906 262.308594 232.683594 262.308594 232.683594 263.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.816406 283.195312 C 150.816406 284.816406 148.386719 284.816406 148.386719 283.195312 C 148.386719 281.574219 150.816406 281.574219 150.816406 283.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.433594 285.09375 C 292.433594 286.714844 290.003906 286.714844 290.003906 285.09375 C 290.003906 283.472656 292.433594 283.472656 292.433594 285.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.402344 244.054688 C 278.402344 245.675781 275.972656 245.675781 275.972656 244.054688 C 275.972656 242.433594 278.402344 242.433594 278.402344 244.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.136719 222.664062 C 247.136719 224.285156 244.707031 224.285156 244.707031 222.664062 C 244.707031 221.046875 247.136719 221.046875 247.136719 222.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.375 304.039062 C 166.375 305.660156 163.945312 305.660156 163.945312 304.039062 C 163.945312 302.421875 166.375 302.421875 166.375 304.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.921875 215.652344 C 246.921875 217.273438 244.492188 217.273438 244.492188 215.652344 C 244.492188 214.035156 246.921875 214.035156 246.921875 215.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.234375 251.734375 C 237.234375 253.355469 234.804688 253.355469 234.804688 251.734375 C 234.804688 250.117188 237.234375 250.117188 237.234375 251.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.625 321.335938 C 165.625 322.957031 163.195312 322.957031 163.195312 321.335938 C 163.195312 319.714844 165.625 319.714844 165.625 321.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.109375 189.242188 C 190.109375 190.859375 187.675781 190.859375 187.675781 189.242188 C 187.675781 187.621094 190.109375 187.621094 190.109375 189.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.789062 308.375 C 286.789062 309.996094 284.359375 309.996094 284.359375 308.375 C 284.359375 306.753906 286.789062 306.753906 286.789062 308.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.996094 124.238281 C 186.996094 125.859375 184.566406 125.859375 184.566406 124.238281 C 184.566406 122.617188 186.996094 122.617188 186.996094 124.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.164062 96.601562 C 193.164062 98.21875 190.734375 98.21875 190.734375 96.601562 C 190.734375 94.980469 193.164062 94.980469 193.164062 96.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.609375 347.085938 C 263.609375 348.707031 261.179688 348.707031 261.179688 347.085938 C 261.179688 345.464844 263.609375 345.464844 263.609375 347.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.144531 338.277344 C 241.144531 339.894531 238.714844 339.894531 238.714844 338.277344 C 238.714844 336.65625 241.144531 336.65625 241.144531 338.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.355469 323.867188 C 145.355469 325.484375 142.925781 325.484375 142.925781 323.867188 C 142.925781 322.246094 145.355469 322.246094 145.355469 323.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.914062 351.101562 C 262.914062 352.722656 260.484375 352.722656 260.484375 351.101562 C 260.484375 349.480469 262.914062 349.480469 262.914062 351.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.882812 345.753906 C 138.882812 347.375 136.453125 347.375 136.453125 345.753906 C 136.453125 344.136719 138.882812 344.136719 138.882812 345.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.761719 289.574219 C 181.761719 291.195312 179.332031 291.195312 179.332031 289.574219 C 179.332031 287.957031 181.761719 287.957031 181.761719 289.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.546875 70.910156 L 159.183594 73.746094 L 155.910156 73.746094 Z M 157.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.589844 227.96875 C 273.589844 229.589844 271.160156 229.589844 271.160156 227.96875 C 271.160156 226.347656 273.589844 226.347656 273.589844 227.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.054688 276.554688 C 220.054688 278.175781 217.625 278.175781 217.625 276.554688 C 217.625 274.933594 220.054688 274.933594 220.054688 276.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.289062 232.3125 C 213.289062 233.933594 210.859375 233.933594 210.859375 232.3125 C 210.859375 230.691406 213.289062 230.691406 213.289062 232.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.925781 104.152344 C 247.925781 105.773438 245.496094 105.773438 245.496094 104.152344 C 245.496094 102.535156 247.925781 102.535156 247.925781 104.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.546875 90.554688 C 123.546875 92.175781 121.117188 92.175781 121.117188 90.554688 C 121.117188 88.933594 123.546875 88.933594 123.546875 90.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.195312 268.035156 C 295.195312 269.65625 292.765625 269.65625 292.765625 268.035156 C 292.765625 266.414062 295.195312 266.414062 295.195312 268.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.019531 238.414062 C 294.019531 240.035156 291.589844 240.035156 291.589844 238.414062 C 291.589844 236.796875 294.019531 236.796875 294.019531 238.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.234375 70.910156 L 272.871094 73.746094 L 269.597656 73.746094 Z M 271.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.015625 106.054688 C 231.015625 107.675781 228.585938 107.675781 228.585938 106.054688 C 228.585938 104.4375 231.015625 104.4375 231.015625 106.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.71875 241.4375 C 278.71875 243.058594 276.285156 243.058594 276.285156 241.4375 C 276.285156 239.816406 278.71875 239.816406 278.71875 241.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.539062 272.714844 C 231.539062 274.335938 229.109375 274.335938 229.109375 272.714844 C 229.109375 271.09375 231.539062 271.09375 231.539062 272.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.652344 184.546875 C 219.652344 186.167969 217.222656 186.167969 217.222656 184.546875 C 217.222656 182.929688 219.652344 182.929688 219.652344 184.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.367188 70.910156 L 190.003906 73.746094 L 186.730469 73.746094 Z M 188.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.792969 293.214844 C 255.792969 294.835938 253.363281 294.835938 253.363281 293.214844 C 253.363281 291.59375 255.792969 291.59375 255.792969 293.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.804688 70.910156 L 260.441406 73.746094 L 257.167969 73.746094 Z M 258.804688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.792969 260.761719 C 257.792969 262.382812 255.363281 262.382812 255.363281 260.761719 C 255.363281 259.144531 257.792969 259.144531 257.792969 260.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.605469 70.910156 L 182.238281 73.746094 L 178.96875 73.746094 Z M 180.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.109375 302.617188 C 292.109375 304.238281 289.679688 304.238281 289.679688 302.617188 C 289.679688 300.996094 292.109375 300.996094 292.109375 302.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.542969 211.878906 C 259.542969 213.5 257.113281 213.5 257.113281 211.878906 C 257.113281 210.257812 259.542969 210.257812 259.542969 211.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.914062 241.636719 C 234.914062 243.257812 232.480469 243.257812 232.480469 241.636719 C 232.480469 240.019531 234.914062 240.019531 234.914062 241.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.296875 273.851562 C 290.296875 275.472656 287.867188 275.472656 287.867188 273.851562 C 287.867188 272.230469 290.296875 272.230469 290.296875 273.851562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.882812 418.691406 L 193.515625 415.855469 L 190.246094 415.855469 Z M 191.882812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.746094 352.488281 C 301.746094 354.105469 299.316406 354.105469 299.316406 352.488281 C 299.316406 350.867188 301.746094 350.867188 301.746094 352.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.980469 165.976562 C 244.980469 167.597656 242.550781 167.597656 242.550781 165.976562 C 242.550781 164.355469 244.980469 164.355469 244.980469 165.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.976562 123.8125 C 254.976562 125.433594 252.546875 125.433594 252.546875 123.8125 C 252.546875 122.191406 254.976562 122.191406 254.976562 123.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 396.867188 104.984375 C 396.867188 106.605469 394.433594 106.605469 394.433594 104.984375 C 394.433594 103.363281 396.867188 103.363281 396.867188 104.984375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.609375 70.910156 L 171.246094 73.746094 L 167.972656 73.746094 Z M 169.609375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.449219 70.910156 L 207.085938 73.746094 L 203.8125 73.746094 Z M 205.449219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.910156 70.910156 L 239.546875 73.746094 L 236.273438 73.746094 Z M 237.910156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.609375 70.910156 L 253.246094 73.746094 L 249.972656 73.746094 Z M 251.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.054688 156.5625 C 150.054688 158.179688 147.625 158.179688 147.625 156.5625 C 147.625 154.941406 150.054688 154.941406 150.054688 156.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.9375 210.382812 C 248.9375 212.003906 246.507812 212.003906 246.507812 210.382812 C 246.507812 208.765625 248.9375 208.765625 248.9375 210.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.757812 244.183594 C 313.757812 245.804688 311.328125 245.804688 311.328125 244.183594 C 311.328125 242.5625 313.757812 242.5625 313.757812 244.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.589844 274.351562 C 223.589844 275.972656 221.160156 275.972656 221.160156 274.351562 C 221.160156 272.730469 223.589844 272.730469 223.589844 274.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.699219 366.34375 C 184.699219 367.964844 182.269531 367.964844 182.269531 366.34375 C 182.269531 364.722656 184.699219 364.722656 184.699219 366.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.609375 253.253906 C 278.609375 254.875 276.179688 254.875 276.179688 253.253906 C 276.179688 251.632812 278.609375 251.632812 278.609375 253.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.816406 211.074219 C 310.816406 212.695312 308.386719 212.695312 308.386719 211.074219 C 308.386719 209.453125 310.816406 209.453125 310.816406 211.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.773438 143.230469 C 260.773438 144.851562 258.34375 144.851562 258.34375 143.230469 C 258.34375 141.613281 260.773438 141.613281 260.773438 143.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.527344 261.21875 C 243.527344 262.839844 241.097656 262.839844 241.097656 261.21875 C 241.097656 259.597656 243.527344 259.597656 243.527344 261.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.609375 278.546875 C 309.609375 280.167969 307.179688 280.167969 307.179688 278.546875 C 307.179688 276.925781 309.609375 276.925781 309.609375 278.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.730469 70.910156 L 117.367188 73.746094 L 114.09375 73.746094 Z M 115.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.898438 220.046875 C 256.898438 221.667969 254.46875 221.667969 254.46875 220.046875 C 254.46875 218.425781 256.898438 218.425781 256.898438 220.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.535156 225.820312 C 245.535156 227.441406 243.105469 227.441406 243.105469 225.820312 C 243.105469 224.199219 245.535156 224.199219 245.535156 225.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.246094 125.890625 C 290.246094 127.507812 287.816406 127.507812 287.816406 125.890625 C 287.816406 124.269531 290.246094 124.269531 290.246094 125.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.308594 280.363281 C 258.308594 281.980469 255.878906 281.980469 255.878906 280.363281 C 255.878906 278.742188 258.308594 278.742188 258.308594 280.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.019531 188.03125 C 281.019531 189.648438 278.589844 189.648438 278.589844 188.03125 C 278.589844 186.410156 281.019531 186.410156 281.019531 188.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.085938 213.398438 C 184.085938 215.019531 181.65625 215.019531 181.65625 213.398438 C 181.65625 211.777344 184.085938 211.777344 184.085938 213.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.125 237.792969 C 299.125 239.410156 296.695312 239.410156 296.695312 237.792969 C 296.695312 236.171875 299.125 236.171875 299.125 237.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.253906 241.042969 C 291.253906 242.664062 288.824219 242.664062 288.824219 241.042969 C 288.824219 239.421875 291.253906 239.421875 291.253906 241.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.214844 395.40625 C 240.214844 397.023438 237.785156 397.023438 237.785156 395.40625 C 237.785156 393.785156 240.214844 393.785156 240.214844 395.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.078125 200.363281 C 123.078125 201.980469 120.648438 201.980469 120.648438 200.363281 C 120.648438 198.742188 123.078125 198.742188 123.078125 200.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.789062 412.203125 C 268.789062 413.824219 266.359375 413.824219 266.359375 412.203125 C 266.359375 410.585938 268.789062 410.585938 268.789062 412.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.476562 320.171875 C 260.476562 321.792969 258.046875 321.792969 258.046875 320.171875 C 258.046875 318.550781 260.476562 318.550781 260.476562 320.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.714844 305.046875 C 258.714844 306.664062 256.285156 306.664062 256.285156 305.046875 C 256.285156 303.425781 258.714844 303.425781 258.714844 305.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.382812 315.664062 C 289.382812 317.285156 286.953125 317.285156 286.953125 315.664062 C 286.953125 314.046875 289.382812 314.046875 289.382812 315.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.851562 154.707031 C 199.851562 156.328125 197.421875 156.328125 197.421875 154.707031 C 197.421875 153.089844 199.851562 153.089844 199.851562 154.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.625 259.851562 C 270.625 261.472656 268.191406 261.472656 268.191406 259.851562 C 268.191406 258.230469 270.625 258.230469 270.625 259.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.425781 266.882812 C 263.425781 268.503906 260.996094 268.503906 260.996094 266.882812 C 260.996094 265.261719 263.425781 265.261719 263.425781 266.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.308594 273.128906 C 223.308594 274.746094 220.878906 274.746094 220.878906 273.128906 C 220.878906 271.507812 223.308594 271.507812 223.308594 273.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.648438 268.132812 C 249.648438 269.753906 247.21875 269.753906 247.21875 268.132812 C 247.21875 266.511719 249.648438 266.511719 249.648438 268.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.242188 207.753906 C 134.242188 209.371094 131.8125 209.371094 131.8125 207.753906 C 131.8125 206.132812 134.242188 206.132812 134.242188 207.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 355.625 132.296875 C 355.625 133.914062 353.195312 133.914062 353.195312 132.296875 C 353.195312 130.675781 355.625 130.675781 355.625 132.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.539062 227.644531 C 269.539062 229.261719 267.109375 229.261719 267.109375 227.644531 C 267.109375 226.023438 269.539062 226.023438 269.539062 227.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.316406 230.386719 C 198.316406 232.007812 195.886719 232.007812 195.886719 230.386719 C 195.886719 228.769531 198.316406 228.769531 198.316406 230.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.222656 184.9375 C 248.222656 186.558594 245.792969 186.558594 245.792969 184.9375 C 245.792969 183.316406 248.222656 183.316406 248.222656 184.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.734375 290.824219 C 184.734375 292.445312 182.300781 292.445312 182.300781 290.824219 C 182.300781 289.203125 184.734375 289.203125 184.734375 290.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.257812 269.121094 C 117.257812 270.742188 114.828125 270.742188 114.828125 269.121094 C 114.828125 267.5 117.257812 267.5 117.257812 269.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.089844 247.960938 C 266.089844 249.582031 263.660156 249.582031 263.660156 247.960938 C 263.660156 246.339844 266.089844 246.339844 266.089844 247.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.003906 300.664062 C 302.003906 302.28125 299.574219 302.28125 299.574219 300.664062 C 299.574219 299.042969 302.003906 299.042969 302.003906 300.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.328125 282.609375 C 282.328125 284.230469 279.898438 284.230469 279.898438 282.609375 C 279.898438 280.992188 282.328125 280.992188 282.328125 282.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.136719 163.773438 C 282.136719 165.394531 279.703125 165.394531 279.703125 163.773438 C 279.703125 162.152344 282.136719 162.152344 282.136719 163.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.40625 359.347656 C 311.40625 360.96875 308.976562 360.96875 308.976562 359.347656 C 308.976562 357.730469 311.40625 357.730469 311.40625 359.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.796875 374.222656 C 273.796875 375.839844 271.367188 375.839844 271.367188 374.222656 C 271.367188 372.601562 273.796875 372.601562 273.796875 374.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.644531 247.574219 C 268.644531 249.195312 266.214844 249.195312 266.214844 247.574219 C 266.214844 245.957031 268.644531 245.957031 268.644531 247.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.421875 203.859375 C 251.421875 205.480469 248.992188 205.480469 248.992188 203.859375 C 248.992188 202.242188 251.421875 202.242188 251.421875 203.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.613281 269.242188 C 270.613281 270.863281 268.183594 270.863281 268.183594 269.242188 C 268.183594 267.621094 270.613281 267.621094 270.613281 269.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196 99.753906 C 196 101.375 193.570312 101.375 193.570312 99.753906 C 193.570312 98.136719 196 98.136719 196 99.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.191406 265.5625 C 263.191406 267.179688 260.761719 267.179688 260.761719 265.5625 C 260.761719 263.941406 263.191406 263.941406 263.191406 265.5625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.671875 70.910156 L 259.308594 73.746094 L 256.035156 73.746094 Z M 257.671875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.265625 152.3125 C 218.265625 153.933594 215.835938 153.933594 215.835938 152.3125 C 215.835938 150.691406 218.265625 150.691406 218.265625 152.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.1875 145.503906 C 222.1875 147.121094 219.757812 147.121094 219.757812 145.503906 C 219.757812 143.882812 222.1875 143.882812 222.1875 145.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.097656 87.308594 C 125.097656 88.929688 122.667969 88.929688 122.667969 87.308594 C 122.667969 85.6875 125.097656 85.6875 125.097656 87.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.929688 311.992188 C 249.929688 313.613281 247.496094 313.613281 247.496094 311.992188 C 247.496094 310.371094 249.929688 310.371094 249.929688 311.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.855469 260.296875 C 312.855469 261.917969 310.425781 261.917969 310.425781 260.296875 C 310.425781 258.679688 312.855469 258.679688 312.855469 260.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 313.496094 418.691406 L 315.132812 415.855469 L 311.863281 415.855469 Z M 313.496094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.847656 313.097656 C 206.847656 314.71875 204.417969 314.71875 204.417969 313.097656 C 204.417969 311.476562 206.847656 311.476562 206.847656 313.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.984375 271.402344 C 259.984375 273.023438 257.554688 273.023438 257.554688 271.402344 C 257.554688 269.785156 259.984375 269.785156 259.984375 271.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.59375 259.882812 C 306.59375 261.503906 304.164062 261.503906 304.164062 259.882812 C 304.164062 258.265625 306.59375 258.265625 306.59375 259.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.148438 358.3125 C 247.148438 359.933594 244.71875 359.933594 244.71875 358.3125 C 244.71875 356.691406 247.148438 356.691406 247.148438 358.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.078125 378.488281 C 220.078125 380.109375 217.648438 380.109375 217.648438 378.488281 C 217.648438 376.867188 220.078125 376.867188 220.078125 378.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.050781 110.585938 C 137.050781 112.203125 134.621094 112.203125 134.621094 110.585938 C 134.621094 108.964844 137.050781 108.964844 137.050781 110.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.070312 216.425781 C 275.070312 218.046875 272.640625 218.046875 272.640625 216.425781 C 272.640625 214.804688 275.070312 214.804688 275.070312 216.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.222656 205.328125 C 196.222656 206.949219 193.792969 206.949219 193.792969 205.328125 C 193.792969 203.707031 196.222656 203.707031 196.222656 205.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.671875 185.203125 C 246.671875 186.820312 244.242188 186.820312 244.242188 185.203125 C 244.242188 183.582031 246.671875 183.582031 246.671875 185.203125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.054688 70.910156 L 144.691406 73.746094 L 141.417969 73.746094 Z M 143.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.859375 242.429688 C 287.859375 244.050781 285.429688 244.050781 285.429688 242.429688 C 285.429688 240.808594 287.859375 240.808594 287.859375 242.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.917969 70.910156 L 187.554688 73.746094 L 184.28125 73.746094 Z M 185.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.371094 297.117188 C 278.371094 298.738281 275.9375 298.738281 275.9375 297.117188 C 275.9375 295.5 278.371094 295.5 278.371094 297.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.96875 244.148438 C 321.96875 245.769531 319.539062 245.769531 319.539062 244.148438 C 319.539062 242.527344 321.96875 242.527344 321.96875 244.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.5625 185.960938 C 175.5625 187.582031 173.132812 187.582031 173.132812 185.960938 C 173.132812 184.339844 175.5625 184.339844 175.5625 185.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.601562 249.605469 C 281.601562 251.226562 279.171875 251.226562 279.171875 249.605469 C 279.171875 247.984375 281.601562 247.984375 281.601562 249.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.523438 196.296875 C 303.523438 197.917969 301.09375 197.917969 301.09375 196.296875 C 301.09375 194.679688 303.523438 194.679688 303.523438 196.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.226562 304.296875 C 320.226562 305.917969 317.796875 305.917969 317.796875 304.296875 C 317.796875 302.675781 320.226562 302.675781 320.226562 304.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.878906 374.78125 C 198.878906 376.402344 196.449219 376.402344 196.449219 374.78125 C 196.449219 373.160156 198.878906 373.160156 198.878906 374.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 362.105469 320.511719 C 362.105469 322.128906 359.675781 322.128906 359.675781 320.511719 C 359.675781 318.890625 362.105469 318.890625 362.105469 320.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.464844 107.121094 C 257.464844 108.742188 255.035156 108.742188 255.035156 107.121094 C 255.035156 105.503906 257.464844 105.503906 257.464844 107.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.53125 282.261719 C 139.53125 283.878906 137.101562 283.878906 137.101562 282.261719 C 137.101562 280.640625 139.53125 280.640625 139.53125 282.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.652344 157.039062 C 150.652344 158.660156 148.222656 158.660156 148.222656 157.039062 C 148.222656 155.417969 150.652344 155.417969 150.652344 157.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.492188 70.910156 L 203.128906 73.746094 L 199.859375 73.746094 Z M 201.492188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.929688 70.910156 L 250.5625 73.746094 L 247.292969 73.746094 Z M 248.929688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.425781 70.910156 L 250.0625 73.746094 L 246.789062 73.746094 Z M 248.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.203125 199.699219 C 276.203125 201.320312 273.773438 201.320312 273.773438 199.699219 C 273.773438 198.078125 276.203125 198.078125 276.203125 199.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.546875 180.632812 C 282.546875 182.25 280.117188 182.25 280.117188 180.632812 C 280.117188 179.011719 282.546875 179.011719 282.546875 180.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.417969 308.085938 C 223.417969 309.707031 220.988281 309.707031 220.988281 308.085938 C 220.988281 306.464844 223.417969 306.464844 223.417969 308.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.675781 381.085938 C 235.675781 382.707031 233.246094 382.707031 233.246094 381.085938 C 233.246094 379.46875 235.675781 379.46875 235.675781 381.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.128906 172.015625 C 284.128906 173.632812 281.699219 173.632812 281.699219 172.015625 C 281.699219 170.394531 284.128906 170.394531 284.128906 172.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.585938 70.910156 L 252.222656 73.746094 L 248.949219 73.746094 Z M 250.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.191406 313.617188 C 273.191406 315.238281 270.761719 315.238281 270.761719 313.617188 C 270.761719 311.996094 273.191406 311.996094 273.191406 313.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.546875 317.757812 C 274.546875 319.378906 272.117188 319.378906 272.117188 317.757812 C 272.117188 316.136719 274.546875 316.136719 274.546875 317.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.097656 197.511719 C 270.097656 199.128906 267.667969 199.128906 267.667969 197.511719 C 267.667969 195.890625 270.097656 195.890625 270.097656 197.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.605469 70.910156 L 228.242188 73.746094 L 224.96875 73.746094 Z M 226.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.125 225.839844 C 172.125 227.460938 169.695312 227.460938 169.695312 225.839844 C 169.695312 224.21875 172.125 224.21875 172.125 225.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.414062 229.308594 C 277.414062 230.929688 274.984375 230.929688 274.984375 229.308594 C 274.984375 227.6875 277.414062 227.6875 277.414062 229.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.363281 160.804688 C 270.363281 162.425781 267.933594 162.425781 267.933594 160.804688 C 267.933594 159.183594 270.363281 159.183594 270.363281 160.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.742188 173.183594 C 232.742188 174.804688 230.3125 174.804688 230.3125 173.183594 C 230.3125 171.5625 232.742188 171.5625 232.742188 173.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.375 222.441406 C 303.375 224.0625 300.945312 224.0625 300.945312 222.441406 C 300.945312 220.820312 303.375 220.820312 303.375 222.441406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.957031 70.910156 L 238.59375 73.746094 L 235.320312 73.746094 Z M 236.957031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.253906 418.691406 L 240.890625 415.855469 L 237.621094 415.855469 Z M 239.253906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.632812 187.300781 C 311.632812 188.921875 309.203125 188.921875 309.203125 187.300781 C 309.203125 185.679688 311.632812 185.679688 311.632812 187.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.597656 357.527344 C 155.597656 359.148438 153.167969 359.148438 153.167969 357.527344 C 153.167969 355.90625 155.597656 355.90625 155.597656 357.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.65625 94.90625 C 164.65625 96.527344 162.226562 96.527344 162.226562 94.90625 C 162.226562 93.285156 164.65625 93.285156 164.65625 94.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.308594 70.910156 L 273.945312 73.746094 L 270.671875 73.746094 Z M 272.308594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.28125 119.96875 C 249.28125 121.589844 246.851562 121.589844 246.851562 119.96875 C 246.851562 118.347656 249.28125 118.347656 249.28125 119.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.085938 261.074219 C 273.085938 262.695312 270.65625 262.695312 270.65625 261.074219 C 270.65625 259.457031 273.085938 259.457031 273.085938 261.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.886719 184.871094 C 213.886719 186.492188 211.457031 186.492188 211.457031 184.871094 C 211.457031 183.25 213.886719 183.25 213.886719 184.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.40625 114.78125 C 326.40625 116.402344 323.976562 116.402344 323.976562 114.78125 C 323.976562 113.160156 326.40625 113.160156 326.40625 114.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.128906 168.089844 C 129.128906 169.710938 126.699219 169.710938 126.699219 168.089844 C 126.699219 166.46875 129.128906 166.46875 129.128906 168.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.515625 70.910156 L 270.152344 73.746094 L 266.878906 73.746094 Z M 268.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.554688 314.558594 C 257.554688 316.179688 255.125 316.179688 255.125 314.558594 C 255.125 312.941406 257.554688 312.941406 257.554688 314.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.667969 271.285156 C 295.667969 272.902344 293.238281 272.902344 293.238281 271.285156 C 293.238281 269.664062 295.667969 269.664062 295.667969 271.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.03125 347.429688 C 327.03125 349.046875 324.601562 349.046875 324.601562 347.429688 C 324.601562 345.808594 327.03125 345.808594 327.03125 347.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.695312 394.347656 C 184.695312 395.96875 182.261719 395.96875 182.261719 394.347656 C 182.261719 392.726562 184.695312 392.726562 184.695312 394.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.402344 278.957031 C 254.402344 280.578125 251.972656 280.578125 251.972656 278.957031 C 251.972656 277.335938 254.402344 277.335938 254.402344 278.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.316406 130.976562 C 285.316406 132.597656 282.886719 132.597656 282.886719 130.976562 C 282.886719 129.359375 285.316406 129.359375 285.316406 130.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.714844 73.886719 C 224.714844 75.507812 222.285156 75.507812 222.285156 73.886719 C 222.285156 72.265625 224.714844 72.265625 224.714844 73.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.191406 73.363281 C 216.191406 74.984375 213.757812 74.984375 213.757812 73.363281 C 213.757812 71.742188 216.191406 71.742188 216.191406 73.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.339844 243.691406 C 295.339844 245.3125 292.910156 245.3125 292.910156 243.691406 C 292.910156 242.070312 295.339844 242.070312 295.339844 243.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.453125 272.042969 C 237.453125 273.664062 235.023438 273.664062 235.023438 272.042969 C 235.023438 270.425781 237.453125 270.425781 237.453125 272.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.011719 309.765625 C 275.011719 311.386719 272.582031 311.386719 272.582031 309.765625 C 272.582031 308.144531 275.011719 308.144531 275.011719 309.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.515625 305.105469 C 236.515625 306.726562 234.085938 306.726562 234.085938 305.105469 C 234.085938 303.484375 236.515625 303.484375 236.515625 305.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.066406 284.878906 C 278.066406 286.5 275.636719 286.5 275.636719 284.878906 C 275.636719 283.257812 278.066406 283.257812 278.066406 284.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.214844 274.269531 C 301.214844 275.886719 298.785156 275.886719 298.785156 274.269531 C 298.785156 272.648438 301.214844 272.648438 301.214844 274.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.617188 170.5625 C 249.617188 172.183594 247.1875 172.183594 247.1875 170.5625 C 247.1875 168.945312 249.617188 168.945312 249.617188 170.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.167969 221.261719 C 265.167969 222.882812 262.738281 222.882812 262.738281 221.261719 C 262.738281 219.644531 265.167969 219.644531 265.167969 221.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.414062 204.261719 C 266.414062 205.882812 263.984375 205.882812 263.984375 204.261719 C 263.984375 202.640625 266.414062 202.640625 266.414062 204.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.648438 245.710938 C 262.648438 247.328125 260.21875 247.328125 260.21875 245.710938 C 260.21875 244.089844 262.648438 244.089844 262.648438 245.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.761719 247.191406 C 254.761719 248.8125 252.332031 248.8125 252.332031 247.191406 C 252.332031 245.574219 254.761719 245.574219 254.761719 247.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.796875 256.824219 C 282.796875 258.441406 280.367188 258.441406 280.367188 256.824219 C 280.367188 255.203125 282.796875 255.203125 282.796875 256.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.640625 228.113281 C 259.640625 229.734375 257.210938 229.734375 257.210938 228.113281 C 257.210938 226.496094 259.640625 226.496094 259.640625 228.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.949219 280.75 C 295.949219 282.367188 293.519531 282.367188 293.519531 280.75 C 293.519531 279.128906 295.949219 279.128906 295.949219 280.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.875 295.308594 C 271.875 296.929688 269.445312 296.929688 269.445312 295.308594 C 269.445312 293.6875 271.875 293.6875 271.875 295.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.496094 217.660156 C 267.496094 219.28125 265.066406 219.28125 265.066406 217.660156 C 265.066406 216.042969 267.496094 216.042969 267.496094 217.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.46875 70.910156 L 154.101562 73.746094 L 150.832031 73.746094 Z M 152.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.757812 198.054688 C 274.757812 199.671875 272.328125 199.671875 272.328125 198.054688 C 272.328125 196.433594 274.757812 196.433594 274.757812 198.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.050781 122.691406 C 206.050781 124.3125 203.621094 124.3125 203.621094 122.691406 C 203.621094 121.074219 206.050781 121.074219 206.050781 122.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.460938 235.617188 C 237.460938 237.234375 235.03125 237.234375 235.03125 235.617188 C 235.03125 233.996094 237.460938 233.996094 237.460938 235.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.902344 304.898438 C 232.902344 306.519531 230.472656 306.519531 230.472656 304.898438 C 230.472656 303.28125 232.902344 303.28125 232.902344 304.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.175781 246.195312 C 181.175781 247.816406 178.746094 247.816406 178.746094 246.195312 C 178.746094 244.574219 181.175781 244.574219 181.175781 246.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.324219 311.113281 C 241.324219 312.734375 238.894531 312.734375 238.894531 311.113281 C 238.894531 309.492188 241.324219 309.492188 241.324219 311.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.402344 270.148438 C 227.402344 271.769531 224.972656 271.769531 224.972656 270.148438 C 224.972656 268.527344 227.402344 268.527344 227.402344 270.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.484375 252.101562 C 197.484375 253.722656 195.054688 253.722656 195.054688 252.101562 C 195.054688 250.484375 197.484375 250.484375 197.484375 252.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.4375 170.085938 C 129.4375 171.707031 127.007812 171.707031 127.007812 170.085938 C 127.007812 168.46875 129.4375 168.46875 129.4375 170.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.035156 412.847656 C 227.035156 414.46875 224.601562 414.46875 224.601562 412.847656 C 224.601562 411.230469 227.035156 411.230469 227.035156 412.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.320312 221.371094 C 266.320312 222.992188 263.890625 222.992188 263.890625 221.371094 C 263.890625 219.753906 266.320312 219.753906 266.320312 221.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.757812 244.257812 C 214.757812 245.878906 212.328125 245.878906 212.328125 244.257812 C 212.328125 242.636719 214.757812 242.636719 214.757812 244.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.105469 160.730469 C 284.105469 162.351562 281.671875 162.351562 281.671875 160.730469 C 281.671875 159.109375 284.105469 159.109375 284.105469 160.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.300781 269.136719 C 299.300781 270.753906 296.871094 270.753906 296.871094 269.136719 C 296.871094 267.515625 299.300781 267.515625 299.300781 269.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 337.472656 313.664062 C 337.472656 315.285156 335.042969 315.285156 335.042969 313.664062 C 335.042969 312.042969 337.472656 312.042969 337.472656 313.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.464844 272.53125 C 305.464844 274.152344 303.035156 274.152344 303.035156 272.53125 C 303.035156 270.914062 305.464844 270.914062 305.464844 272.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.039062 216.222656 C 268.039062 217.839844 265.609375 217.839844 265.609375 216.222656 C 265.609375 214.601562 268.039062 214.601562 268.039062 216.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.273438 263.605469 C 312.273438 265.226562 309.84375 265.226562 309.84375 263.605469 C 309.84375 261.984375 312.273438 261.984375 312.273438 263.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.445312 223.675781 C 243.445312 225.296875 241.015625 225.296875 241.015625 223.675781 C 241.015625 222.054688 243.445312 222.054688 243.445312 223.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.488281 151.503906 C 250.488281 153.125 248.058594 153.125 248.058594 151.503906 C 248.058594 149.882812 250.488281 149.882812 250.488281 151.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.203125 401.054688 C 137.203125 402.675781 134.773438 402.675781 134.773438 401.054688 C 134.773438 399.433594 137.203125 399.433594 137.203125 401.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.894531 314.234375 C 264.894531 315.851562 262.464844 315.851562 262.464844 314.234375 C 262.464844 312.613281 264.894531 312.613281 264.894531 314.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.578125 323.75 C 282.578125 325.367188 280.148438 325.367188 280.148438 323.75 C 280.148438 322.128906 282.578125 322.128906 282.578125 323.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.394531 388.246094 C 225.394531 389.867188 222.964844 389.867188 222.964844 388.246094 C 222.964844 386.628906 225.394531 386.628906 225.394531 388.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.824219 329.628906 C 255.824219 331.246094 253.394531 331.246094 253.394531 329.628906 C 253.394531 328.007812 255.824219 328.007812 255.824219 329.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.972656 253.695312 C 186.972656 255.316406 184.542969 255.316406 184.542969 253.695312 C 184.542969 252.074219 186.972656 252.074219 186.972656 253.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.925781 382.171875 C 240.925781 383.792969 238.496094 383.792969 238.496094 382.171875 C 238.496094 380.550781 240.925781 380.550781 240.925781 382.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.679688 220.070312 C 141.679688 221.691406 139.25 221.691406 139.25 220.070312 C 139.25 218.453125 141.679688 218.453125 141.679688 220.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.925781 170.980469 C 322.925781 172.601562 320.496094 172.601562 320.496094 170.980469 C 320.496094 169.363281 322.925781 169.363281 322.925781 170.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.636719 149.625 C 269.636719 151.246094 267.207031 151.246094 267.207031 149.625 C 267.207031 148.003906 269.636719 148.003906 269.636719 149.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.53125 237.214844 C 243.53125 238.835938 241.101562 238.835938 241.101562 237.214844 C 241.101562 235.597656 243.53125 235.597656 243.53125 237.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.359375 143.898438 C 356.359375 145.519531 353.929688 145.519531 353.929688 143.898438 C 353.929688 142.277344 356.359375 142.277344 356.359375 143.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.546875 305.125 C 307.546875 306.746094 305.117188 306.746094 305.117188 305.125 C 305.117188 303.507812 307.546875 303.507812 307.546875 305.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.546875 318.410156 C 259.546875 320.03125 257.113281 320.03125 257.113281 318.410156 C 257.113281 316.789062 259.546875 316.789062 259.546875 318.410156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.019531 418.691406 L 307.65625 415.855469 L 304.386719 415.855469 Z M 306.019531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.019531 418.691406 L 307.65625 415.855469 L 304.386719 415.855469 Z M 306.019531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.019531 418.691406 L 307.65625 415.855469 L 304.386719 415.855469 Z M 306.019531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.539062 133.695312 C 186.539062 135.316406 184.109375 135.316406 184.109375 133.695312 C 184.109375 132.078125 186.539062 132.078125 186.539062 133.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.949219 269.613281 C 258.949219 271.234375 256.519531 271.234375 256.519531 269.613281 C 256.519531 267.992188 258.949219 267.992188 258.949219 269.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.035156 418.691406 L 247.671875 415.855469 L 244.398438 415.855469 Z M 246.035156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.492188 70.910156 L 314.128906 73.746094 L 310.855469 73.746094 Z M 312.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.613281 209.695312 C 249.613281 211.316406 247.183594 211.316406 247.183594 209.695312 C 247.183594 208.078125 249.613281 208.078125 249.613281 209.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.933594 70.910156 L 233.570312 73.746094 L 230.296875 73.746094 Z M 231.933594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 412.992188 70.910156 L 414.628906 73.746094 L 411.355469 73.746094 Z M 412.992188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.625 70.910156 L 158.261719 73.746094 L 154.988281 73.746094 Z M 156.625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 372.785156 70.910156 L 374.421875 73.746094 L 371.148438 73.746094 Z M 372.785156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.554688 160.066406 C 169.554688 161.6875 167.125 161.6875 167.125 160.066406 C 167.125 158.445312 169.554688 158.445312 169.554688 160.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.214844 99.648438 C 236.214844 101.269531 233.785156 101.269531 233.785156 99.648438 C 233.785156 98.03125 236.214844 98.03125 236.214844 99.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.8125 70.910156 L 229.449219 73.746094 L 226.175781 73.746094 Z M 227.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.835938 248.816406 C 321.835938 250.4375 319.40625 250.4375 319.40625 248.816406 C 319.40625 247.199219 321.835938 247.199219 321.835938 248.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.273438 239.917969 C 224.273438 241.535156 221.84375 241.535156 221.84375 239.917969 C 221.84375 238.296875 224.273438 238.296875 224.273438 239.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.867188 235.429688 C 288.867188 237.050781 286.4375 237.050781 286.4375 235.429688 C 286.4375 233.808594 288.867188 233.808594 288.867188 235.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.3125 131.015625 C 221.3125 132.632812 218.882812 132.632812 218.882812 131.015625 C 218.882812 129.394531 221.3125 129.394531 221.3125 131.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.246094 287.429688 C 230.246094 289.050781 227.8125 289.050781 227.8125 287.429688 C 227.8125 285.808594 230.246094 285.808594 230.246094 287.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.683594 251.511719 C 249.683594 253.132812 247.253906 253.132812 247.253906 251.511719 C 247.253906 249.894531 249.683594 249.894531 249.683594 251.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.027344 273.097656 C 263.027344 274.71875 260.597656 274.71875 260.597656 273.097656 C 260.597656 271.480469 263.027344 271.480469 263.027344 273.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.84375 296.488281 C 228.84375 298.109375 226.414062 298.109375 226.414062 296.488281 C 226.414062 294.871094 228.84375 294.871094 228.84375 296.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.226562 275.058594 C 263.226562 276.679688 260.796875 276.679688 260.796875 275.058594 C 260.796875 273.4375 263.226562 273.4375 263.226562 275.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.582031 212.328125 C 250.582031 213.949219 248.152344 213.949219 248.152344 212.328125 C 248.152344 210.707031 250.582031 210.707031 250.582031 212.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.320312 289.214844 C 264.320312 290.832031 261.890625 290.832031 261.890625 289.214844 C 261.890625 287.59375 264.320312 287.59375 264.320312 289.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.949219 317.160156 C 222.949219 318.78125 220.519531 318.78125 220.519531 317.160156 C 220.519531 315.539062 222.949219 315.539062 222.949219 317.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 352.035156 194.921875 C 352.035156 196.542969 349.605469 196.542969 349.605469 194.921875 C 349.605469 193.300781 352.035156 193.300781 352.035156 194.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.773438 248.097656 C 280.773438 249.71875 278.34375 249.71875 278.34375 248.097656 C 278.34375 246.476562 280.773438 246.476562 280.773438 248.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.765625 173.445312 C 279.765625 175.0625 277.335938 175.0625 277.335938 173.445312 C 277.335938 171.824219 279.765625 171.824219 279.765625 173.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.28125 258.902344 C 278.28125 260.523438 275.851562 260.523438 275.851562 258.902344 C 275.851562 257.285156 278.28125 257.285156 278.28125 258.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.503906 230.304688 C 275.503906 231.925781 273.074219 231.925781 273.074219 230.304688 C 273.074219 228.6875 275.503906 228.6875 275.503906 230.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.148438 117 C 241.148438 118.621094 238.71875 118.621094 238.71875 117 C 238.71875 115.378906 241.148438 115.378906 241.148438 117 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.335938 265.472656 C 255.335938 267.09375 252.90625 267.09375 252.90625 265.472656 C 252.90625 263.851562 255.335938 263.851562 255.335938 265.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.929688 278.75 C 313.929688 280.371094 311.5 280.371094 311.5 278.75 C 311.5 277.128906 313.929688 277.128906 313.929688 278.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.320312 268.808594 C 261.320312 270.425781 258.890625 270.425781 258.890625 268.808594 C 258.890625 267.1875 261.320312 267.1875 261.320312 268.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.203125 256.929688 C 194.203125 258.546875 191.773438 258.546875 191.773438 256.929688 C 191.773438 255.308594 194.203125 255.308594 194.203125 256.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.769531 145.390625 C 203.769531 147.011719 201.339844 147.011719 201.339844 145.390625 C 201.339844 143.773438 203.769531 143.773438 203.769531 145.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.933594 258.464844 C 264.933594 260.085938 262.503906 260.085938 262.503906 258.464844 C 262.503906 256.84375 264.933594 256.84375 264.933594 258.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.429688 70.910156 L 228.066406 73.746094 L 224.792969 73.746094 Z M 226.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.667969 260.578125 C 257.667969 262.195312 255.238281 262.195312 255.238281 260.578125 C 255.238281 258.957031 257.667969 258.957031 257.667969 260.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.640625 70.910156 L 178.277344 73.746094 L 175.003906 73.746094 Z M 176.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.820312 254.777344 C 216.820312 256.398438 214.390625 256.398438 214.390625 254.777344 C 214.390625 253.15625 216.820312 253.15625 216.820312 254.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.597656 70.910156 L 333.234375 73.746094 L 329.964844 73.746094 Z M 331.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.792969 228.976562 C 189.792969 230.597656 187.363281 230.597656 187.363281 228.976562 C 187.363281 227.355469 189.792969 227.355469 189.792969 228.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.128906 238.632812 C 267.128906 240.253906 264.699219 240.253906 264.699219 238.632812 C 264.699219 237.015625 267.128906 237.015625 267.128906 238.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.015625 418.691406 L 274.652344 415.855469 L 271.378906 415.855469 Z M 273.015625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.105469 70.910156 L 245.742188 73.746094 L 242.46875 73.746094 Z M 244.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.457031 127.167969 C 241.457031 128.785156 239.027344 128.785156 239.027344 127.167969 C 239.027344 125.546875 241.457031 125.546875 241.457031 127.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.082031 163.761719 C 196.082031 165.382812 193.652344 165.382812 193.652344 163.761719 C 193.652344 162.140625 196.082031 162.140625 196.082031 163.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.902344 278.273438 C 329.902344 279.894531 327.472656 279.894531 327.472656 278.273438 C 327.472656 276.65625 329.902344 276.65625 329.902344 278.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.078125 247.234375 C 280.078125 248.855469 277.648438 248.855469 277.648438 247.234375 C 277.648438 245.617188 280.078125 245.617188 280.078125 247.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.742188 216.617188 C 269.742188 218.238281 267.3125 218.238281 267.3125 216.617188 C 267.3125 214.996094 269.742188 214.996094 269.742188 216.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.484375 70.910156 L 261.121094 73.746094 L 257.847656 73.746094 Z M 259.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.789062 374.195312 C 254.789062 375.8125 252.359375 375.8125 252.359375 374.195312 C 252.359375 372.574219 254.789062 372.574219 254.789062 374.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.1875 334.976562 C 208.1875 336.597656 205.757812 336.597656 205.757812 334.976562 C 205.757812 333.355469 208.1875 333.355469 208.1875 334.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.222656 321.863281 C 188.222656 323.484375 185.789062 323.484375 185.789062 321.863281 C 185.789062 320.242188 188.222656 320.242188 188.222656 321.863281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.042969 70.910156 L 173.679688 73.746094 L 170.410156 73.746094 Z M 172.042969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.628906 396.839844 C 292.628906 398.460938 290.199219 398.460938 290.199219 396.839844 C 290.199219 395.21875 292.628906 395.21875 292.628906 396.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.148438 197.140625 C 225.148438 198.761719 222.71875 198.761719 222.71875 197.140625 C 222.71875 195.519531 225.148438 195.519531 225.148438 197.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.070312 257.257812 C 115.070312 258.878906 112.640625 258.878906 112.640625 257.257812 C 112.640625 255.640625 115.070312 255.640625 115.070312 257.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.558594 218.367188 C 327.558594 219.988281 325.128906 219.988281 325.128906 218.367188 C 325.128906 216.75 327.558594 216.75 327.558594 218.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.542969 410.582031 C 124.542969 412.203125 122.113281 412.203125 122.113281 410.582031 C 122.113281 408.960938 124.542969 408.960938 124.542969 410.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.707031 159.652344 C 142.707031 161.269531 140.277344 161.269531 140.277344 159.652344 C 140.277344 158.03125 142.707031 158.03125 142.707031 159.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.507812 183.476562 C 267.507812 185.097656 265.078125 185.097656 265.078125 183.476562 C 265.078125 181.855469 267.507812 181.855469 267.507812 183.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.183594 297.335938 C 308.183594 298.957031 305.753906 298.957031 305.753906 297.335938 C 305.753906 295.71875 308.183594 295.71875 308.183594 297.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.605469 269.566406 C 308.605469 271.1875 306.175781 271.1875 306.175781 269.566406 C 306.175781 267.945312 308.605469 267.945312 308.605469 269.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.464844 142.03125 C 179.464844 143.652344 177.035156 143.652344 177.035156 142.03125 C 177.035156 140.414062 179.464844 140.414062 179.464844 142.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.480469 243.53125 C 187.480469 245.152344 185.050781 245.152344 185.050781 243.53125 C 185.050781 241.910156 187.480469 241.910156 187.480469 243.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.136719 317.234375 C 238.136719 318.855469 235.707031 318.855469 235.707031 317.234375 C 235.707031 315.613281 238.136719 315.613281 238.136719 317.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.429688 418.691406 L 261.066406 415.855469 L 257.792969 415.855469 Z M 259.429688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.972656 254.546875 C 219.972656 256.164062 217.542969 256.164062 217.542969 254.546875 C 217.542969 252.925781 219.972656 252.925781 219.972656 254.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.390625 270.800781 C 185.390625 272.421875 182.960938 272.421875 182.960938 270.800781 C 182.960938 269.183594 185.390625 269.183594 185.390625 270.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.3125 277.4375 C 198.3125 279.058594 195.878906 279.058594 195.878906 277.4375 C 195.878906 275.816406 198.3125 275.816406 198.3125 277.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.039062 309.640625 C 228.039062 311.257812 225.609375 311.257812 225.609375 309.640625 C 225.609375 308.019531 228.039062 308.019531 228.039062 309.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.292969 220.902344 C 321.292969 222.523438 318.859375 222.523438 318.859375 220.902344 C 318.859375 219.285156 321.292969 219.285156 321.292969 220.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.511719 283.398438 C 193.511719 285.019531 191.082031 285.019531 191.082031 283.398438 C 191.082031 281.78125 193.511719 281.78125 193.511719 283.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.875 70.910156 L 224.511719 73.746094 L 221.238281 73.746094 Z M 222.875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.636719 418.691406 L 264.273438 415.855469 L 261 415.855469 Z M 262.636719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.734375 128.734375 C 205.734375 130.355469 203.304688 130.355469 203.304688 128.734375 C 203.304688 127.117188 205.734375 127.117188 205.734375 128.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.414062 217.757812 C 290.414062 219.378906 287.984375 219.378906 287.984375 217.757812 C 287.984375 216.136719 290.414062 216.136719 290.414062 217.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.890625 232.980469 C 241.890625 234.597656 239.460938 234.597656 239.460938 232.980469 C 239.460938 231.359375 241.890625 231.359375 241.890625 232.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.21875 221.210938 C 251.21875 222.832031 248.789062 222.832031 248.789062 221.210938 C 248.789062 219.589844 251.21875 219.589844 251.21875 221.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.511719 140.21875 C 335.511719 141.839844 333.082031 141.839844 333.082031 140.21875 C 333.082031 138.601562 335.511719 138.601562 335.511719 140.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.269531 350.808594 C 183.269531 352.429688 180.839844 352.429688 180.839844 350.808594 C 180.839844 349.1875 183.269531 349.1875 183.269531 350.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.988281 295.449219 C 144.988281 297.070312 142.558594 297.070312 142.558594 295.449219 C 142.558594 293.832031 144.988281 293.832031 144.988281 295.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.859375 174.691406 C 255.859375 176.308594 253.429688 176.308594 253.429688 174.691406 C 253.429688 173.070312 255.859375 173.070312 255.859375 174.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.773438 288.910156 C 204.773438 290.527344 202.34375 290.527344 202.34375 288.910156 C 202.34375 287.289062 204.773438 287.289062 204.773438 288.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.882812 135.808594 C 233.882812 137.425781 231.453125 137.425781 231.453125 135.808594 C 231.453125 134.1875 233.882812 134.1875 233.882812 135.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.960938 70.910156 L 189.597656 73.746094 L 186.324219 73.746094 Z M 187.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.757812 239.320312 C 129.757812 240.941406 127.324219 240.941406 127.324219 239.320312 C 127.324219 237.703125 129.757812 237.703125 129.757812 239.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266 251.933594 C 266 253.554688 263.570312 253.554688 263.570312 251.933594 C 263.570312 250.3125 266 250.3125 266 251.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.695312 266.386719 C 266.695312 268.007812 264.265625 268.007812 264.265625 266.386719 C 264.265625 264.765625 266.695312 264.765625 266.695312 266.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.664062 139.148438 C 270.664062 140.769531 268.234375 140.769531 268.234375 139.148438 C 268.234375 137.527344 270.664062 137.527344 270.664062 139.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.390625 223.378906 C 279.390625 225 276.960938 225 276.960938 223.378906 C 276.960938 221.761719 279.390625 221.761719 279.390625 223.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.40625 329.695312 C 130.40625 331.316406 127.976562 331.316406 127.976562 329.695312 C 127.976562 328.074219 130.40625 328.074219 130.40625 329.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.328125 252.214844 C 284.328125 253.832031 281.898438 253.832031 281.898438 252.214844 C 281.898438 250.59375 284.328125 250.59375 284.328125 252.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.816406 275.878906 C 288.816406 277.5 286.382812 277.5 286.382812 275.878906 C 286.382812 274.257812 288.816406 274.257812 288.816406 275.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.105469 216 C 246.105469 217.617188 243.675781 217.617188 243.675781 216 C 243.675781 214.378906 246.105469 214.378906 246.105469 216 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.085938 250.808594 C 143.085938 252.429688 140.65625 252.429688 140.65625 250.808594 C 140.65625 249.1875 143.085938 249.1875 143.085938 250.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 111.738281 418.691406 L 113.375 415.855469 L 110.101562 415.855469 Z M 111.738281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.09375 270.988281 C 260.09375 272.609375 257.664062 272.609375 257.664062 270.988281 C 257.664062 269.367188 260.09375 269.367188 260.09375 270.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.902344 290.5625 C 277.902344 292.183594 275.472656 292.183594 275.472656 290.5625 C 275.472656 288.945312 277.902344 288.945312 277.902344 290.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.484375 111.761719 C 319.484375 113.382812 317.054688 113.382812 317.054688 111.761719 C 317.054688 110.140625 319.484375 110.140625 319.484375 111.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.566406 70.910156 L 275.203125 73.746094 L 271.929688 73.746094 Z M 273.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.023438 305.671875 C 294.023438 307.289062 291.59375 307.289062 291.59375 305.671875 C 291.59375 304.050781 294.023438 304.050781 294.023438 305.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.140625 70.910156 L 201.777344 73.746094 L 198.503906 73.746094 Z M 200.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.425781 225.378906 C 230.425781 226.996094 227.996094 226.996094 227.996094 225.378906 C 227.996094 223.757812 230.425781 223.757812 230.425781 225.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.171875 113.285156 C 186.171875 114.90625 183.742188 114.90625 183.742188 113.285156 C 183.742188 111.667969 186.171875 111.667969 186.171875 113.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.59375 341.449219 C 192.59375 343.070312 190.164062 343.070312 190.164062 341.449219 C 190.164062 339.832031 192.59375 339.832031 192.59375 341.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.445312 257.953125 C 278.445312 259.570312 276.015625 259.570312 276.015625 257.953125 C 276.015625 256.332031 278.445312 256.332031 278.445312 257.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.125 199.042969 C 209.125 200.664062 206.695312 200.664062 206.695312 199.042969 C 206.695312 197.425781 209.125 197.425781 209.125 199.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.675781 280.152344 C 281.675781 281.773438 279.246094 281.773438 279.246094 280.152344 C 279.246094 278.53125 281.675781 278.53125 281.675781 280.152344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.660156 70.910156 L 168.296875 73.746094 L 165.023438 73.746094 Z M 166.660156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.269531 189.957031 C 261.269531 191.578125 258.839844 191.578125 258.839844 189.957031 C 258.839844 188.335938 261.269531 188.335938 261.269531 189.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.945312 231.390625 C 178.945312 233.007812 176.515625 233.007812 176.515625 231.390625 C 176.515625 229.769531 178.945312 229.769531 178.945312 231.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.242188 243.503906 C 250.242188 245.121094 247.808594 245.121094 247.808594 243.503906 C 247.808594 241.882812 250.242188 241.882812 250.242188 243.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.480469 70.910156 L 224.117188 73.746094 L 220.84375 73.746094 Z M 222.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.089844 258.472656 C 285.089844 260.09375 282.660156 260.09375 282.660156 258.472656 C 282.660156 256.851562 285.089844 256.851562 285.089844 258.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.164062 161.519531 C 277.164062 163.136719 274.734375 163.136719 274.734375 161.519531 C 274.734375 159.898438 277.164062 159.898438 277.164062 161.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.210938 243.199219 C 290.210938 244.820312 287.78125 244.820312 287.78125 243.199219 C 287.78125 241.582031 290.210938 241.582031 290.210938 243.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.378906 267.179688 C 310.378906 268.800781 307.949219 268.800781 307.949219 267.179688 C 307.949219 265.558594 310.378906 265.558594 310.378906 267.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.339844 70.910156 L 136.976562 73.746094 L 133.703125 73.746094 Z M 135.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.460938 301.519531 C 255.460938 303.140625 253.03125 303.140625 253.03125 301.519531 C 253.03125 299.898438 255.460938 299.898438 255.460938 301.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.171875 244.328125 C 293.171875 245.949219 290.742188 245.949219 290.742188 244.328125 C 290.742188 242.710938 293.171875 242.710938 293.171875 244.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.78125 228.945312 C 307.78125 230.566406 305.351562 230.566406 305.351562 228.945312 C 305.351562 227.324219 307.78125 227.324219 307.78125 228.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.6875 120.453125 C 134.6875 122.070312 132.257812 122.070312 132.257812 120.453125 C 132.257812 118.832031 134.6875 118.832031 134.6875 120.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.566406 213.722656 C 230.566406 215.34375 228.136719 215.34375 228.136719 213.722656 C 228.136719 212.101562 230.566406 212.101562 230.566406 213.722656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.875 70.910156 L 238.511719 73.746094 L 235.238281 73.746094 Z M 236.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.960938 367.914062 C 175.960938 369.535156 173.53125 369.535156 173.53125 367.914062 C 173.53125 366.292969 175.960938 366.292969 175.960938 367.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.1875 272.5 C 263.1875 274.121094 260.753906 274.121094 260.753906 272.5 C 260.753906 270.878906 263.1875 270.878906 263.1875 272.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 394.277344 307.722656 C 394.277344 309.339844 391.847656 309.339844 391.847656 307.722656 C 391.847656 306.101562 394.277344 306.101562 394.277344 307.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.257812 282.714844 C 221.257812 284.335938 218.828125 284.335938 218.828125 282.714844 C 218.828125 281.09375 221.257812 281.09375 221.257812 282.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.003906 302.679688 C 265.003906 304.296875 262.574219 304.296875 262.574219 302.679688 C 262.574219 301.058594 265.003906 301.058594 265.003906 302.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.53125 418.691406 L 111.167969 415.855469 L 107.894531 415.855469 Z M 109.53125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.550781 152.121094 C 141.550781 153.742188 139.121094 153.742188 139.121094 152.121094 C 139.121094 150.503906 141.550781 150.503906 141.550781 152.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.410156 418.691406 L 140.046875 415.855469 L 136.773438 415.855469 Z M 138.410156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.40625 418.691406 L 238.042969 415.855469 L 234.769531 415.855469 Z M 236.40625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 399.332031 418.691406 L 400.96875 415.855469 L 397.695312 415.855469 Z M 399.332031 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.347656 190.023438 C 325.347656 191.644531 322.917969 191.644531 322.917969 190.023438 C 322.917969 188.402344 325.347656 188.402344 325.347656 190.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.457031 94.128906 C 335.457031 95.75 333.027344 95.75 333.027344 94.128906 C 333.027344 92.511719 335.457031 92.511719 335.457031 94.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.589844 193.273438 C 266.589844 194.894531 264.160156 194.894531 264.160156 193.273438 C 264.160156 191.65625 266.589844 191.65625 266.589844 193.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.511719 213.367188 C 273.511719 214.988281 271.082031 214.988281 271.082031 213.367188 C 271.082031 211.746094 273.511719 211.746094 273.511719 213.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.707031 314.050781 C 233.707031 315.671875 231.277344 315.671875 231.277344 314.050781 C 231.277344 312.429688 233.707031 312.429688 233.707031 314.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.71875 70.910156 L 207.355469 73.746094 L 204.082031 73.746094 Z M 205.71875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.167969 70.910156 L 137.804688 73.746094 L 134.53125 73.746094 Z M 136.167969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.109375 70.910156 L 149.746094 73.746094 L 146.472656 73.746094 Z M 148.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.375 70.910156 L 238.011719 73.746094 L 234.738281 73.746094 Z M 236.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.785156 101.5 C 259.785156 103.121094 257.355469 103.121094 257.355469 101.5 C 257.355469 99.878906 259.785156 99.878906 259.785156 101.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.503906 98.578125 C 241.503906 100.195312 239.074219 100.195312 239.074219 98.578125 C 239.074219 96.957031 241.503906 96.957031 241.503906 98.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.53125 70.910156 L 302.164062 73.746094 L 298.894531 73.746094 Z M 300.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.664062 70.910156 L 217.300781 73.746094 L 214.027344 73.746094 Z M 215.664062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.699219 70.910156 L 218.332031 73.746094 L 215.0625 73.746094 Z M 216.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.46875 166.128906 C 319.46875 167.75 317.035156 167.75 317.035156 166.128906 C 317.035156 164.507812 319.46875 164.507812 319.46875 166.128906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.328125 70.910156 L 177.964844 73.746094 L 174.691406 73.746094 Z M 176.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.648438 155.503906 C 213.648438 157.121094 211.21875 157.121094 211.21875 155.503906 C 211.21875 153.882812 213.648438 153.882812 213.648438 155.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.691406 249.035156 C 274.691406 250.65625 272.261719 250.65625 272.261719 249.035156 C 272.261719 247.414062 274.691406 247.414062 274.691406 249.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.601562 267.464844 C 283.601562 269.085938 281.171875 269.085938 281.171875 267.464844 C 281.171875 265.84375 283.601562 265.84375 283.601562 267.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.019531 78.25 C 249.019531 79.871094 246.589844 79.871094 246.589844 78.25 C 246.589844 76.628906 249.019531 76.628906 249.019531 78.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.957031 225.960938 C 281.957031 227.582031 279.527344 227.582031 279.527344 225.960938 C 279.527344 224.339844 281.957031 224.339844 281.957031 225.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.144531 70.910156 L 238.78125 73.746094 L 235.507812 73.746094 Z M 237.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.4375 163.429688 C 285.4375 165.046875 283.007812 165.046875 283.007812 163.429688 C 283.007812 161.808594 285.4375 161.808594 285.4375 163.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.703125 249.285156 C 259.703125 250.90625 257.273438 250.90625 257.273438 249.285156 C 257.273438 247.664062 259.703125 247.664062 259.703125 249.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.019531 75.351562 C 249.019531 76.972656 246.589844 76.972656 246.589844 75.351562 C 246.589844 73.730469 249.019531 73.730469 249.019531 75.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.671875 81.140625 C 288.671875 82.761719 286.242188 82.761719 286.242188 81.140625 C 286.242188 79.523438 288.671875 79.523438 288.671875 81.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.609375 244.679688 C 315.609375 246.300781 313.179688 246.300781 313.179688 244.679688 C 313.179688 243.058594 315.609375 243.058594 315.609375 244.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.132812 168.1875 C 199.132812 169.808594 196.703125 169.808594 196.703125 168.1875 C 196.703125 166.566406 199.132812 166.566406 199.132812 168.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.488281 191.648438 C 249.488281 193.269531 247.058594 193.269531 247.058594 191.648438 C 247.058594 190.03125 249.488281 190.03125 249.488281 191.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.726562 384.664062 C 121.726562 386.285156 119.296875 386.285156 119.296875 384.664062 C 119.296875 383.046875 121.726562 383.046875 121.726562 384.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.257812 269.121094 C 117.257812 270.742188 114.828125 270.742188 114.828125 269.121094 C 114.828125 267.5 117.257812 267.5 117.257812 269.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.667969 157.652344 C 285.667969 159.273438 283.238281 159.273438 283.238281 157.652344 C 283.238281 156.03125 285.667969 156.03125 285.667969 157.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.601562 254.269531 C 159.601562 255.890625 157.171875 255.890625 157.171875 254.269531 C 157.171875 252.648438 159.601562 252.648438 159.601562 254.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.039062 291.441406 C 247.039062 293.0625 244.609375 293.0625 244.609375 291.441406 C 244.609375 289.824219 247.039062 289.824219 247.039062 291.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.488281 271.164062 C 306.488281 272.785156 304.058594 272.785156 304.058594 271.164062 C 304.058594 269.542969 306.488281 269.542969 306.488281 271.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.703125 352.738281 C 144.703125 354.355469 142.273438 354.355469 142.273438 352.738281 C 142.273438 351.117188 144.703125 351.117188 144.703125 352.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.351562 276.34375 C 250.351562 277.960938 247.921875 277.960938 247.921875 276.34375 C 247.921875 274.722656 250.351562 274.722656 250.351562 276.34375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.214844 70.910156 L 120.851562 73.746094 L 117.578125 73.746094 Z M 119.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.734375 349.152344 C 226.734375 350.773438 224.304688 350.773438 224.304688 349.152344 C 224.304688 347.535156 226.734375 347.535156 226.734375 349.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.53125 326.355469 C 226.53125 327.976562 224.101562 327.976562 224.101562 326.355469 C 224.101562 324.734375 226.53125 324.734375 226.53125 326.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.097656 215.113281 C 269.097656 216.730469 266.667969 216.730469 266.667969 215.113281 C 266.667969 213.492188 269.097656 213.492188 269.097656 215.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.9375 88.542969 C 278.9375 90.164062 276.507812 90.164062 276.507812 88.542969 C 276.507812 86.925781 278.9375 86.925781 278.9375 88.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.238281 208.59375 C 275.238281 210.210938 272.808594 210.210938 272.808594 208.59375 C 272.808594 206.972656 275.238281 206.972656 275.238281 208.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.625 118.808594 C 276.625 120.429688 274.195312 120.429688 274.195312 118.808594 C 274.195312 117.1875 276.625 117.1875 276.625 118.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.375 70.910156 L 155.011719 73.746094 L 151.742188 73.746094 Z M 153.375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.410156 70.910156 L 198.046875 73.746094 L 194.773438 73.746094 Z M 196.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.503906 70.910156 L 168.140625 73.746094 L 164.867188 73.746094 Z M 166.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.570312 414.621094 C 124.570312 416.242188 122.140625 416.242188 122.140625 414.621094 C 122.140625 413 124.570312 413 124.570312 414.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.777344 121.414062 C 301.777344 123.03125 299.347656 123.03125 299.347656 121.414062 C 299.347656 119.792969 301.777344 119.792969 301.777344 121.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.550781 232.980469 C 277.550781 234.601562 275.121094 234.601562 275.121094 232.980469 C 275.121094 231.359375 277.550781 231.359375 277.550781 232.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.242188 70.910156 L 167.878906 73.746094 L 164.609375 73.746094 Z M 166.242188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.511719 210.882812 C 241.511719 212.5 239.082031 212.5 239.082031 210.882812 C 239.082031 209.261719 241.511719 209.261719 241.511719 210.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.574219 142.921875 C 264.574219 144.539062 262.144531 144.539062 262.144531 142.921875 C 262.144531 141.300781 264.574219 141.300781 264.574219 142.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.675781 266.0625 C 298.675781 267.683594 296.246094 267.683594 296.246094 266.0625 C 296.246094 264.445312 298.675781 264.445312 298.675781 266.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.484375 70.910156 L 216.121094 73.746094 L 212.847656 73.746094 Z M 214.484375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.976562 235.292969 C 213.976562 236.914062 211.546875 236.914062 211.546875 235.292969 C 211.546875 233.671875 213.976562 233.671875 213.976562 235.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.886719 175.320312 C 223.886719 176.9375 221.457031 176.9375 221.457031 175.320312 C 221.457031 173.699219 223.886719 173.699219 223.886719 175.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.984375 70.910156 L 163.621094 73.746094 L 160.347656 73.746094 Z M 161.984375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.25 70.910156 L 141.886719 73.746094 L 138.613281 73.746094 Z M 140.25 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.105469 345.9375 C 128.105469 347.558594 125.675781 347.558594 125.675781 345.9375 C 125.675781 344.316406 128.105469 344.316406 128.105469 345.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.25 230.25 C 326.25 231.871094 323.820312 231.871094 323.820312 230.25 C 323.820312 228.632812 326.25 228.632812 326.25 230.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.011719 170.261719 C 294.011719 171.878906 291.582031 171.878906 291.582031 170.261719 C 291.582031 168.640625 294.011719 168.640625 294.011719 170.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.109375 70.910156 L 173.746094 73.746094 L 170.476562 73.746094 Z M 172.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.246094 418.691406 L 171.882812 415.855469 L 168.609375 415.855469 Z M 170.246094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.378906 313.519531 C 278.378906 315.140625 275.949219 315.140625 275.949219 313.519531 C 275.949219 311.902344 278.378906 311.902344 278.378906 313.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.109375 113.414062 C 182.109375 115.035156 179.679688 115.035156 179.679688 113.414062 C 179.679688 111.792969 182.109375 111.792969 182.109375 113.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.34375 70.910156 L 227.980469 73.746094 L 224.707031 73.746094 Z M 226.34375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.058594 70.910156 L 288.695312 73.746094 L 285.421875 73.746094 Z M 287.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.058594 70.910156 L 190.695312 73.746094 L 187.425781 73.746094 Z M 189.058594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.460938 70.910156 L 248.097656 73.746094 L 244.824219 73.746094 Z M 246.460938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.132812 70.910156 L 206.769531 73.746094 L 203.496094 73.746094 Z M 205.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.078125 306.492188 C 277.078125 308.113281 274.648438 308.113281 274.648438 306.492188 C 274.648438 304.875 277.078125 304.875 277.078125 306.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.789062 363.886719 C 263.789062 365.507812 261.359375 365.507812 261.359375 363.886719 C 261.359375 362.269531 263.789062 362.269531 263.789062 363.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.707031 253.445312 C 234.707031 255.066406 232.277344 255.066406 232.277344 253.445312 C 232.277344 251.824219 234.707031 251.824219 234.707031 253.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.257812 70.910156 L 259.894531 73.746094 L 256.621094 73.746094 Z M 258.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.96875 324.082031 C 304.96875 325.703125 302.539062 325.703125 302.539062 324.082031 C 302.539062 322.460938 304.96875 322.460938 304.96875 324.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.859375 230.519531 C 270.859375 232.140625 268.429688 232.140625 268.429688 230.519531 C 268.429688 228.898438 270.859375 228.898438 270.859375 230.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.6875 154.839844 C 212.6875 156.460938 210.253906 156.460938 210.253906 154.839844 C 210.253906 153.21875 212.6875 153.21875 212.6875 154.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.550781 70.910156 L 218.1875 73.746094 L 214.914062 73.746094 Z M 216.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.265625 182.296875 C 256.265625 183.917969 253.835938 183.917969 253.835938 182.296875 C 253.835938 180.675781 256.265625 180.675781 256.265625 182.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.585938 70.910156 L 279.222656 73.746094 L 275.949219 73.746094 Z M 277.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.132812 193.980469 C 214.132812 195.601562 211.703125 195.601562 211.703125 193.980469 C 211.703125 192.363281 214.132812 192.363281 214.132812 193.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.773438 268.546875 C 331.773438 270.167969 329.34375 270.167969 329.34375 268.546875 C 329.34375 266.925781 331.773438 266.925781 331.773438 268.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.601562 81.039062 C 233.601562 82.65625 231.167969 82.65625 231.167969 81.039062 C 231.167969 79.417969 233.601562 79.417969 233.601562 81.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.652344 70.910156 L 226.285156 73.746094 L 223.015625 73.746094 Z M 224.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.148438 149.421875 C 161.148438 151.039062 158.71875 151.039062 158.71875 149.421875 C 158.71875 147.800781 161.148438 147.800781 161.148438 149.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.804688 251.964844 C 325.804688 253.582031 323.375 253.582031 323.375 251.964844 C 323.375 250.34375 325.804688 250.34375 325.804688 251.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.113281 418.691406 L 160.75 415.855469 L 157.476562 415.855469 Z M 159.113281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.625 192.222656 C 272.625 193.84375 270.191406 193.84375 270.191406 192.222656 C 270.191406 190.605469 272.625 190.605469 272.625 192.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.550781 70.910156 L 224.1875 73.746094 L 220.914062 73.746094 Z M 222.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.683594 249.074219 C 311.683594 250.695312 309.253906 250.695312 309.253906 249.074219 C 309.253906 247.453125 311.683594 247.453125 311.683594 249.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.234375 297.0625 C 239.234375 298.683594 236.804688 298.683594 236.804688 297.0625 C 236.804688 295.441406 239.234375 295.441406 239.234375 297.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.605469 155.878906 C 233.605469 157.5 231.175781 157.5 231.175781 155.878906 C 231.175781 154.261719 233.605469 154.261719 233.605469 155.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.554688 236.183594 C 316.554688 237.804688 314.125 237.804688 314.125 236.183594 C 314.125 234.566406 316.554688 234.566406 316.554688 236.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.695312 217.5625 C 246.695312 219.179688 244.265625 219.179688 244.265625 217.5625 C 244.265625 215.941406 246.695312 215.941406 246.695312 217.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.699219 220.292969 C 248.699219 221.910156 246.269531 221.910156 246.269531 220.292969 C 246.269531 218.671875 248.699219 218.671875 248.699219 220.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.289062 274.613281 C 222.289062 276.230469 219.859375 276.230469 219.859375 274.613281 C 219.859375 272.992188 222.289062 272.992188 222.289062 274.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.046875 251.320312 C 256.046875 252.941406 253.617188 252.941406 253.617188 251.320312 C 253.617188 249.699219 256.046875 249.699219 256.046875 251.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.207031 270.914062 C 257.207031 272.535156 254.773438 272.535156 254.773438 270.914062 C 254.773438 269.296875 257.207031 269.296875 257.207031 270.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.542969 283.363281 C 263.542969 284.980469 261.113281 284.980469 261.113281 283.363281 C 261.113281 281.742188 263.542969 281.742188 263.542969 283.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.285156 250.703125 C 276.285156 252.324219 273.851562 252.324219 273.851562 250.703125 C 273.851562 249.082031 276.285156 249.082031 276.285156 250.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.964844 368.414062 C 314.964844 370.03125 312.535156 370.03125 312.535156 368.414062 C 312.535156 366.792969 314.964844 366.792969 314.964844 368.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.523438 298.527344 C 268.523438 300.148438 266.09375 300.148438 266.09375 298.527344 C 266.09375 296.910156 268.523438 296.910156 268.523438 298.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.679688 418.691406 L 280.316406 415.855469 L 277.046875 415.855469 Z M 278.679688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.671875 219.148438 C 265.671875 220.769531 263.242188 220.769531 263.242188 219.148438 C 263.242188 217.527344 265.671875 217.527344 265.671875 219.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.1875 293.613281 C 270.1875 295.234375 267.757812 295.234375 267.757812 293.613281 C 267.757812 291.992188 270.1875 291.992188 270.1875 293.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.082031 258.527344 C 265.082031 260.148438 262.652344 260.148438 262.652344 258.527344 C 262.652344 256.910156 265.082031 256.910156 265.082031 258.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.761719 245.109375 C 281.761719 246.726562 279.332031 246.726562 279.332031 245.109375 C 279.332031 243.488281 281.761719 243.488281 281.761719 245.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.128906 251.160156 C 267.128906 252.78125 264.699219 252.78125 264.699219 251.160156 C 264.699219 249.539062 267.128906 249.539062 267.128906 251.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.441406 208.179688 C 202.441406 209.800781 200.011719 209.800781 200.011719 208.179688 C 200.011719 206.558594 202.441406 206.558594 202.441406 208.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.597656 70.910156 L 157.234375 73.746094 L 153.960938 73.746094 Z M 155.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.585938 260.917969 C 183.585938 262.539062 181.15625 262.539062 181.15625 260.917969 C 181.15625 259.300781 183.585938 259.300781 183.585938 260.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.210938 272.429688 C 165.210938 274.046875 162.78125 274.046875 162.78125 272.429688 C 162.78125 270.808594 165.210938 270.808594 165.210938 272.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.507812 398.085938 C 205.507812 399.707031 203.074219 399.707031 203.074219 398.085938 C 203.074219 396.46875 205.507812 396.46875 205.507812 398.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.253906 215.367188 C 304.253906 216.988281 301.820312 216.988281 301.820312 215.367188 C 301.820312 213.746094 304.253906 213.746094 304.253906 215.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.535156 291.414062 C 202.535156 293.03125 200.101562 293.03125 200.101562 291.414062 C 200.101562 289.792969 202.535156 289.792969 202.535156 291.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.054688 247.371094 C 298.054688 248.992188 295.625 248.992188 295.625 247.371094 C 295.625 245.753906 298.054688 245.753906 298.054688 247.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.390625 261.777344 C 280.390625 263.398438 277.960938 263.398438 277.960938 261.777344 C 277.960938 260.160156 280.390625 260.160156 280.390625 261.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.867188 287.332031 C 268.867188 288.949219 266.4375 288.949219 266.4375 287.332031 C 266.4375 285.710938 268.867188 285.710938 268.867188 287.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.792969 311.097656 C 245.792969 312.71875 243.363281 312.71875 243.363281 311.097656 C 243.363281 309.480469 245.792969 309.480469 245.792969 311.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.300781 146.128906 C 200.300781 147.75 197.871094 147.75 197.871094 146.128906 C 197.871094 144.507812 200.300781 144.507812 200.300781 146.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.648438 172.71875 C 186.648438 174.339844 184.21875 174.339844 184.21875 172.71875 C 184.21875 171.097656 186.648438 171.097656 186.648438 172.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.167969 157.753906 C 233.167969 159.375 230.738281 159.375 230.738281 157.753906 C 230.738281 156.132812 233.167969 156.132812 233.167969 157.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.34375 196.4375 C 241.34375 198.058594 238.914062 198.058594 238.914062 196.4375 C 238.914062 194.816406 241.34375 194.816406 241.34375 196.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 186.730469 77.984375 C 186.730469 79.601562 184.300781 79.601562 184.300781 77.984375 C 184.300781 76.363281 186.730469 76.363281 186.730469 77.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.300781 242.902344 C 286.300781 244.519531 283.871094 244.519531 283.871094 242.902344 C 283.871094 241.28125 286.300781 241.28125 286.300781 242.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.945312 315.296875 C 147.945312 316.917969 145.515625 316.917969 145.515625 315.296875 C 145.515625 313.675781 147.945312 313.675781 147.945312 315.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.523438 418.691406 L 131.160156 415.855469 L 127.886719 415.855469 Z M 129.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.585938 389.410156 C 164.585938 391.03125 162.15625 391.03125 162.15625 389.410156 C 162.15625 387.789062 164.585938 387.789062 164.585938 389.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.324219 310.144531 C 210.324219 311.765625 207.894531 311.765625 207.894531 310.144531 C 207.894531 308.523438 210.324219 308.523438 210.324219 310.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.101562 291.683594 C 230.101562 293.304688 227.671875 293.304688 227.671875 291.683594 C 227.671875 290.0625 230.101562 290.0625 230.101562 291.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.265625 323.417969 C 267.265625 325.039062 264.835938 325.039062 264.835938 323.417969 C 264.835938 321.800781 267.265625 321.800781 267.265625 323.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.585938 242.5625 C 247.585938 244.183594 245.15625 244.183594 245.15625 242.5625 C 245.15625 240.945312 247.585938 240.945312 247.585938 242.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.542969 159.285156 C 279.542969 160.902344 277.113281 160.902344 277.113281 159.285156 C 277.113281 157.664062 279.542969 157.664062 279.542969 159.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.5 243.234375 C 236.5 244.855469 234.070312 244.855469 234.070312 243.234375 C 234.070312 241.617188 236.5 241.617188 236.5 243.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.066406 157.882812 C 299.066406 159.503906 296.636719 159.503906 296.636719 157.882812 C 296.636719 156.265625 299.066406 156.265625 299.066406 157.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.050781 157.9375 C 235.050781 159.558594 232.621094 159.558594 232.621094 157.9375 C 232.621094 156.316406 235.050781 156.316406 235.050781 157.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.808594 233.640625 C 249.808594 235.261719 247.378906 235.261719 247.378906 233.640625 C 247.378906 232.019531 249.808594 232.019531 249.808594 233.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.515625 237.289062 C 198.515625 238.910156 196.085938 238.910156 196.085938 237.289062 C 196.085938 235.667969 198.515625 235.667969 198.515625 237.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.09375 95.777344 C 174.09375 97.394531 171.664062 97.394531 171.664062 95.777344 C 171.664062 94.15625 174.09375 94.15625 174.09375 95.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.636719 380.152344 C 259.636719 381.773438 257.207031 381.773438 257.207031 380.152344 C 257.207031 378.53125 259.636719 378.53125 259.636719 380.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.019531 207.210938 C 211.019531 208.832031 208.589844 208.832031 208.589844 207.210938 C 208.589844 205.589844 211.019531 205.589844 211.019531 207.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.304688 250.742188 C 250.304688 252.359375 247.875 252.359375 247.875 250.742188 C 247.875 249.121094 250.304688 249.121094 250.304688 250.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.058594 70.910156 L 353.695312 73.746094 L 350.421875 73.746094 Z M 352.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.601562 238.066406 C 272.601562 239.6875 270.171875 239.6875 270.171875 238.066406 C 270.171875 236.445312 272.601562 236.445312 272.601562 238.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.132812 290.019531 C 145.132812 291.640625 142.699219 291.640625 142.699219 290.019531 C 142.699219 288.398438 145.132812 288.398438 145.132812 290.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.835938 281.933594 C 259.835938 283.550781 257.40625 283.550781 257.40625 281.933594 C 257.40625 280.3125 259.835938 280.3125 259.835938 281.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.296875 330.203125 C 205.296875 331.824219 202.863281 331.824219 202.863281 330.203125 C 202.863281 328.582031 205.296875 328.582031 205.296875 330.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.035156 118.402344 C 318.035156 120.023438 315.605469 120.023438 315.605469 118.402344 C 315.605469 116.78125 318.035156 116.78125 318.035156 118.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.800781 277 C 295.800781 278.621094 293.371094 278.621094 293.371094 277 C 293.371094 275.382812 295.800781 275.382812 295.800781 277 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.992188 217.621094 C 237.992188 219.238281 235.5625 219.238281 235.5625 217.621094 C 235.5625 216 237.992188 216 237.992188 217.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.316406 285.84375 C 271.316406 287.460938 268.882812 287.460938 268.882812 285.84375 C 268.882812 284.222656 271.316406 284.222656 271.316406 285.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.308594 325.371094 C 242.308594 326.992188 239.878906 326.992188 239.878906 325.371094 C 239.878906 323.753906 242.308594 323.753906 242.308594 325.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.863281 305.144531 C 286.863281 306.761719 284.433594 306.761719 284.433594 305.144531 C 284.433594 303.523438 286.863281 303.523438 286.863281 305.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.578125 288.347656 C 193.578125 289.96875 191.148438 289.96875 191.148438 288.347656 C 191.148438 286.730469 193.578125 286.730469 193.578125 288.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.261719 150.28125 C 131.261719 151.902344 128.832031 151.902344 128.832031 150.28125 C 128.832031 148.664062 131.261719 148.664062 131.261719 150.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.3125 257.457031 C 234.3125 259.078125 231.882812 259.078125 231.882812 257.457031 C 231.882812 255.839844 234.3125 255.839844 234.3125 257.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.253906 264.234375 C 250.253906 265.855469 247.824219 265.855469 247.824219 264.234375 C 247.824219 262.617188 250.253906 262.617188 250.253906 264.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.53125 282.425781 C 269.53125 284.046875 267.101562 284.046875 267.101562 282.425781 C 267.101562 280.808594 269.53125 280.808594 269.53125 282.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.988281 303.507812 C 250.988281 305.128906 248.554688 305.128906 248.554688 303.507812 C 248.554688 301.886719 250.988281 301.886719 250.988281 303.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.003906 262.148438 C 236.003906 263.769531 233.574219 263.769531 233.574219 262.148438 C 233.574219 260.527344 236.003906 260.527344 236.003906 262.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.714844 197.167969 C 283.714844 198.785156 281.285156 198.785156 281.285156 197.167969 C 281.285156 195.546875 283.714844 195.546875 283.714844 197.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.324219 286.355469 C 240.324219 287.972656 237.894531 287.972656 237.894531 286.355469 C 237.894531 284.734375 240.324219 284.734375 240.324219 286.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.292969 297.613281 C 300.292969 299.234375 297.863281 299.234375 297.863281 297.613281 C 297.863281 295.992188 300.292969 295.992188 300.292969 297.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.382812 320.035156 C 224.382812 321.65625 221.953125 321.65625 221.953125 320.035156 C 221.953125 318.417969 224.382812 318.417969 224.382812 320.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.695312 287.945312 C 250.695312 289.5625 248.265625 289.5625 248.265625 287.945312 C 248.265625 286.324219 250.695312 286.324219 250.695312 287.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.496094 241.558594 C 237.496094 243.179688 235.066406 243.179688 235.066406 241.558594 C 235.066406 239.941406 237.496094 239.941406 237.496094 241.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.761719 242.34375 C 270.761719 243.964844 268.332031 243.964844 268.332031 242.34375 C 268.332031 240.722656 270.761719 240.722656 270.761719 242.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.867188 219.445312 C 134.867188 221.0625 132.4375 221.0625 132.4375 219.445312 C 132.4375 217.824219 134.867188 217.824219 134.867188 219.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.96875 152.90625 C 183.96875 154.527344 181.539062 154.527344 181.539062 152.90625 C 181.539062 151.285156 183.96875 151.285156 183.96875 152.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.140625 240.007812 C 274.140625 241.628906 271.710938 241.628906 271.710938 240.007812 C 271.710938 238.390625 274.140625 238.390625 274.140625 240.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.570312 244.039062 C 293.570312 245.660156 291.140625 245.660156 291.140625 244.039062 C 291.140625 242.417969 293.570312 242.417969 293.570312 244.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.0625 171.980469 C 148.0625 173.601562 145.632812 173.601562 145.632812 171.980469 C 145.632812 170.359375 148.0625 170.359375 148.0625 171.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.4375 180.675781 C 110.4375 182.296875 108.007812 182.296875 108.007812 180.675781 C 108.007812 179.054688 110.4375 179.054688 110.4375 180.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.515625 131.007812 C 241.515625 132.628906 239.085938 132.628906 239.085938 131.007812 C 239.085938 129.386719 241.515625 129.386719 241.515625 131.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.066406 264.433594 C 298.066406 266.054688 295.636719 266.054688 295.636719 264.433594 C 295.636719 262.8125 298.066406 262.8125 298.066406 264.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.652344 167.21875 C 300.652344 168.835938 298.222656 168.835938 298.222656 167.21875 C 298.222656 165.597656 300.652344 165.597656 300.652344 167.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.035156 181.363281 C 248.035156 182.984375 245.605469 182.984375 245.605469 181.363281 C 245.605469 179.742188 248.035156 179.742188 248.035156 181.363281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.789062 70.910156 L 136.425781 73.746094 L 133.152344 73.746094 Z M 134.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.945312 231.820312 C 292.945312 233.4375 290.515625 233.4375 290.515625 231.820312 C 290.515625 230.199219 292.945312 230.199219 292.945312 231.820312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.980469 70.910156 L 222.617188 73.746094 L 219.34375 73.746094 Z M 220.980469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.011719 238.824219 C 287.011719 240.441406 284.582031 240.441406 284.582031 238.824219 C 284.582031 237.203125 287.011719 237.203125 287.011719 238.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.589844 272.652344 C 273.589844 274.273438 271.160156 274.273438 271.160156 272.652344 C 271.160156 271.035156 273.589844 271.035156 273.589844 272.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.230469 253.664062 C 127.230469 255.28125 124.800781 255.28125 124.800781 253.664062 C 124.800781 252.042969 127.230469 252.042969 127.230469 253.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.765625 70.910156 L 254.402344 73.746094 L 251.128906 73.746094 Z M 252.765625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.496094 182.257812 C 172.496094 183.875 170.066406 183.875 170.066406 182.257812 C 170.066406 180.636719 172.496094 180.636719 172.496094 182.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.039062 205.96875 C 280.039062 207.589844 277.609375 207.589844 277.609375 205.96875 C 277.609375 204.347656 280.039062 204.347656 280.039062 205.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.445312 245.074219 C 286.445312 246.695312 284.015625 246.695312 284.015625 245.074219 C 284.015625 243.453125 286.445312 243.453125 286.445312 245.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.015625 377.867188 C 118.015625 379.488281 115.585938 379.488281 115.585938 377.867188 C 115.585938 376.246094 118.015625 376.246094 118.015625 377.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.523438 275.667969 C 208.523438 277.289062 206.09375 277.289062 206.09375 275.667969 C 206.09375 274.046875 208.523438 274.046875 208.523438 275.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.449219 231.375 C 215.449219 232.996094 213.019531 232.996094 213.019531 231.375 C 213.019531 229.757812 215.449219 229.757812 215.449219 231.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.234375 70.910156 L 252.871094 73.746094 L 249.597656 73.746094 Z M 251.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.148438 282.84375 C 264.148438 284.464844 261.71875 284.464844 261.71875 282.84375 C 261.71875 281.226562 264.148438 281.226562 264.148438 282.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.746094 197.796875 C 282.746094 199.417969 280.316406 199.417969 280.316406 197.796875 C 280.316406 196.179688 282.746094 196.179688 282.746094 197.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.128906 70.910156 L 141.765625 73.746094 L 138.492188 73.746094 Z M 140.128906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.191406 246.421875 C 184.191406 248.039062 181.761719 248.039062 181.761719 246.421875 C 181.761719 244.800781 184.191406 244.800781 184.191406 246.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.703125 340 C 296.703125 341.621094 294.273438 341.621094 294.273438 340 C 294.273438 338.378906 296.703125 338.378906 296.703125 340 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.058594 205.125 C 185.058594 206.746094 182.628906 206.746094 182.628906 205.125 C 182.628906 203.503906 185.058594 203.503906 185.058594 205.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.753906 304.746094 C 286.753906 306.367188 284.320312 306.367188 284.320312 304.746094 C 284.320312 303.128906 286.753906 303.128906 286.753906 304.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.746094 328.8125 C 236.746094 330.433594 234.316406 330.433594 234.316406 328.8125 C 234.316406 327.191406 236.746094 327.191406 236.746094 328.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.222656 320.089844 C 237.222656 321.710938 234.792969 321.710938 234.792969 320.089844 C 234.792969 318.472656 237.222656 318.472656 237.222656 320.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.992188 265.988281 C 265.992188 267.609375 263.5625 267.609375 263.5625 265.988281 C 263.5625 264.367188 265.992188 264.367188 265.992188 265.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.476562 70.910156 L 214.113281 73.746094 L 210.839844 73.746094 Z M 212.476562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.335938 70.910156 L 237.972656 73.746094 L 234.703125 73.746094 Z M 236.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.492188 361.859375 C 153.492188 363.480469 151.0625 363.480469 151.0625 361.859375 C 151.0625 360.238281 153.492188 360.238281 153.492188 361.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.460938 302.78125 C 180.460938 304.402344 178.03125 304.402344 178.03125 302.78125 C 178.03125 301.164062 180.460938 301.164062 180.460938 302.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.902344 418.691406 L 150.539062 415.855469 L 147.265625 415.855469 Z M 148.902344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.527344 302.980469 C 196.527344 304.601562 194.097656 304.601562 194.097656 302.980469 C 194.097656 301.363281 196.527344 301.363281 196.527344 302.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.21875 70.910156 L 261.855469 73.746094 L 258.582031 73.746094 Z M 260.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.554688 384.722656 C 120.554688 386.339844 118.125 386.339844 118.125 384.722656 C 118.125 383.101562 120.554688 383.101562 120.554688 384.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.867188 309.527344 C 185.867188 311.144531 183.4375 311.144531 183.4375 309.527344 C 183.4375 307.90625 185.867188 307.90625 185.867188 309.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.929688 165.855469 C 268.929688 167.476562 266.5 167.476562 266.5 165.855469 C 266.5 164.234375 268.929688 164.234375 268.929688 165.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.371094 296.636719 C 275.371094 298.253906 272.941406 298.253906 272.941406 296.636719 C 272.941406 295.015625 275.371094 295.015625 275.371094 296.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.214844 225.40625 C 205.214844 227.027344 202.785156 227.027344 202.785156 225.40625 C 202.785156 223.785156 205.214844 223.785156 205.214844 225.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.6875 120.453125 C 134.6875 122.070312 132.257812 122.070312 132.257812 120.453125 C 132.257812 118.832031 134.6875 118.832031 134.6875 120.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.699219 127.617188 C 199.699219 129.238281 197.269531 129.238281 197.269531 127.617188 C 197.269531 125.996094 199.699219 125.996094 199.699219 127.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.875 101.039062 C 139.875 102.65625 137.445312 102.65625 137.445312 101.039062 C 137.445312 99.417969 139.875 99.417969 139.875 101.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.863281 418.691406 L 203.5 415.855469 L 200.226562 415.855469 Z M 201.863281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.554688 229.476562 C 294.554688 231.097656 292.125 231.097656 292.125 229.476562 C 292.125 227.855469 294.554688 227.855469 294.554688 229.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.21875 263.054688 C 223.21875 264.675781 220.789062 264.675781 220.789062 263.054688 C 220.789062 261.433594 223.21875 261.433594 223.21875 263.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.792969 70.910156 L 196.429688 73.746094 L 193.15625 73.746094 Z M 194.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.429688 143.59375 C 214.429688 145.210938 212 145.210938 212 143.59375 C 212 141.972656 214.429688 141.972656 214.429688 143.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.359375 365.382812 C 284.359375 367.003906 281.929688 367.003906 281.929688 365.382812 C 281.929688 363.761719 284.359375 363.761719 284.359375 365.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.652344 230.289062 C 303.652344 231.910156 301.222656 231.910156 301.222656 230.289062 C 301.222656 228.667969 303.652344 228.667969 303.652344 230.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.878906 254.527344 C 248.878906 256.148438 246.449219 256.148438 246.449219 254.527344 C 246.449219 252.90625 248.878906 252.90625 248.878906 254.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.238281 70.910156 L 291.875 73.746094 L 288.601562 73.746094 Z M 290.238281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.085938 245.535156 C 118.085938 247.152344 115.65625 247.152344 115.65625 245.535156 C 115.65625 243.914062 118.085938 243.914062 118.085938 245.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.15625 70.910156 L 127.792969 73.746094 L 124.519531 73.746094 Z M 126.15625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.15625 70.910156 L 185.789062 73.746094 L 182.519531 73.746094 Z M 184.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.921875 164.648438 C 139.921875 166.269531 137.492188 166.269531 137.492188 164.648438 C 137.492188 163.027344 139.921875 163.027344 139.921875 164.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 127.550781 C 118.445312 129.171875 116.015625 129.171875 116.015625 127.550781 C 116.015625 125.933594 118.445312 125.933594 118.445312 127.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.324219 70.910156 L 122.960938 73.746094 L 119.6875 73.746094 Z M 121.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.597656 277.789062 C 278.597656 279.410156 276.167969 279.410156 276.167969 277.789062 C 276.167969 276.167969 278.597656 276.167969 278.597656 277.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.464844 286.628906 C 241.464844 288.246094 239.035156 288.246094 239.035156 286.628906 C 239.035156 285.007812 241.464844 285.007812 241.464844 286.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.863281 271.582031 C 140.863281 273.203125 138.433594 273.203125 138.433594 271.582031 C 138.433594 269.964844 140.863281 269.964844 140.863281 271.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.511719 229.214844 C 188.511719 230.832031 186.082031 230.832031 186.082031 229.214844 C 186.082031 227.59375 188.511719 227.59375 188.511719 229.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.242188 242.066406 C 209.242188 243.6875 206.808594 243.6875 206.808594 242.066406 C 206.808594 240.445312 209.242188 240.445312 209.242188 242.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.71875 286.761719 C 310.71875 288.382812 308.289062 288.382812 308.289062 286.761719 C 308.289062 285.140625 310.71875 285.140625 310.71875 286.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.875 290.097656 C 278.875 291.71875 276.445312 291.71875 276.445312 290.097656 C 276.445312 288.476562 278.875 288.476562 278.875 290.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.445312 372.757812 C 138.445312 374.378906 136.015625 374.378906 136.015625 372.757812 C 136.015625 371.140625 138.445312 371.140625 138.445312 372.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.59375 381.058594 C 215.59375 382.679688 213.164062 382.679688 213.164062 381.058594 C 213.164062 379.441406 215.59375 379.441406 215.59375 381.058594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.566406 70.910156 L 166.203125 73.746094 L 162.929688 73.746094 Z M 164.566406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.066406 253.363281 C 271.066406 254.984375 268.636719 254.984375 268.636719 253.363281 C 268.636719 251.746094 271.066406 251.746094 271.066406 253.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.9375 345.480469 C 286.9375 347.101562 284.507812 347.101562 284.507812 345.480469 C 284.507812 343.863281 286.9375 343.863281 286.9375 345.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.496094 250.75 C 240.496094 252.371094 238.066406 252.371094 238.066406 250.75 C 238.066406 249.132812 240.496094 249.132812 240.496094 250.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.832031 133.753906 C 190.832031 135.375 188.402344 135.375 188.402344 133.753906 C 188.402344 132.132812 190.832031 132.132812 190.832031 133.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.53125 275.851562 C 310.53125 277.472656 308.101562 277.472656 308.101562 275.851562 C 308.101562 274.230469 310.53125 274.230469 310.53125 275.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.535156 203.6875 C 172.535156 205.308594 170.105469 205.308594 170.105469 203.6875 C 170.105469 202.066406 172.535156 202.066406 172.535156 203.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.9375 294.515625 C 317.9375 296.136719 315.507812 296.136719 315.507812 294.515625 C 315.507812 292.894531 317.9375 292.894531 317.9375 294.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.542969 240.992188 C 169.542969 242.613281 167.113281 242.613281 167.113281 240.992188 C 167.113281 239.371094 169.542969 239.371094 169.542969 240.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.066406 282.308594 C 329.066406 283.929688 326.636719 283.929688 326.636719 282.308594 C 326.636719 280.691406 329.066406 280.691406 329.066406 282.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.8125 172.355469 C 202.8125 173.976562 200.382812 173.976562 200.382812 172.355469 C 200.382812 170.738281 202.8125 170.738281 202.8125 172.355469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.046875 70.910156 L 167.679688 73.746094 L 164.410156 73.746094 Z M 166.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.730469 362.550781 C 293.730469 364.171875 291.300781 364.171875 291.300781 362.550781 C 291.300781 360.929688 293.730469 360.929688 293.730469 362.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.621094 120.664062 C 250.621094 122.285156 248.191406 122.285156 248.191406 120.664062 C 248.191406 119.042969 250.621094 119.042969 250.621094 120.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.039062 309.414062 C 306.039062 311.035156 303.609375 311.035156 303.609375 309.414062 C 303.609375 307.792969 306.039062 307.792969 306.039062 309.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.789062 70.910156 L 238.425781 73.746094 L 235.152344 73.746094 Z M 236.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.515625 99.8125 C 121.515625 101.433594 119.085938 101.433594 119.085938 99.8125 C 119.085938 98.195312 121.515625 98.195312 121.515625 99.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.773438 266.246094 C 116.773438 267.867188 114.34375 267.867188 114.34375 266.246094 C 114.34375 264.628906 116.773438 264.628906 116.773438 266.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.113281 324.769531 C 109.113281 326.390625 106.683594 326.390625 106.683594 324.769531 C 106.683594 323.152344 109.113281 323.152344 109.113281 324.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.140625 183.035156 C 145.140625 184.65625 142.710938 184.65625 142.710938 183.035156 C 142.710938 181.417969 145.140625 181.417969 145.140625 183.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.769531 286.003906 C 263.769531 287.625 261.339844 287.625 261.339844 286.003906 C 261.339844 284.386719 263.769531 284.386719 263.769531 286.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.257812 246.285156 C 189.257812 247.902344 186.828125 247.902344 186.828125 246.285156 C 186.828125 244.664062 189.257812 244.664062 189.257812 246.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.363281 218.433594 C 229.363281 220.054688 226.933594 220.054688 226.933594 218.433594 C 226.933594 216.816406 229.363281 216.816406 229.363281 218.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.519531 166.742188 C 277.519531 168.363281 275.089844 168.363281 275.089844 166.742188 C 275.089844 165.125 277.519531 165.125 277.519531 166.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.742188 418.691406 L 240.378906 415.855469 L 237.109375 415.855469 Z M 238.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.578125 311.207031 C 305.578125 312.828125 303.148438 312.828125 303.148438 311.207031 C 303.148438 309.589844 305.578125 309.589844 305.578125 311.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.859375 246.210938 C 294.859375 247.828125 292.429688 247.828125 292.429688 246.210938 C 292.429688 244.589844 294.859375 244.589844 294.859375 246.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.144531 230.414062 C 274.144531 232.035156 271.714844 232.035156 271.714844 230.414062 C 271.714844 228.792969 274.144531 228.792969 274.144531 230.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.210938 197.140625 C 204.210938 198.761719 201.78125 198.761719 201.78125 197.140625 C 201.78125 195.519531 204.210938 195.519531 204.210938 197.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.707031 291.15625 C 297.707031 292.773438 295.273438 292.773438 295.273438 291.15625 C 295.273438 289.535156 297.707031 289.535156 297.707031 291.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.445312 236.796875 C 310.445312 238.417969 308.015625 238.417969 308.015625 236.796875 C 308.015625 235.175781 310.445312 235.175781 310.445312 236.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.527344 297.644531 C 282.527344 299.265625 280.097656 299.265625 280.097656 297.644531 C 280.097656 296.027344 282.527344 296.027344 282.527344 297.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.0625 418.691406 L 208.699219 415.855469 L 205.425781 415.855469 Z M 207.0625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 384.175781 122.160156 C 384.175781 123.78125 381.746094 123.78125 381.746094 122.160156 C 381.746094 120.542969 384.175781 120.542969 384.175781 122.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.691406 273.695312 C 278.691406 275.3125 276.261719 275.3125 276.261719 273.695312 C 276.261719 272.074219 278.691406 272.074219 278.691406 273.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.511719 349.183594 C 314.511719 350.804688 312.082031 350.804688 312.082031 349.183594 C 312.082031 347.5625 314.511719 347.5625 314.511719 349.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.4375 366.519531 C 274.4375 368.140625 272.007812 368.140625 272.007812 366.519531 C 272.007812 364.902344 274.4375 364.902344 274.4375 366.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.476562 70.910156 L 144.113281 73.746094 L 140.839844 73.746094 Z M 142.476562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.558594 185.257812 C 305.558594 186.878906 303.128906 186.878906 303.128906 185.257812 C 303.128906 183.640625 305.558594 183.640625 305.558594 185.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.132812 309.1875 C 283.132812 310.804688 280.703125 310.804688 280.703125 309.1875 C 280.703125 307.566406 283.132812 307.566406 283.132812 309.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.871094 165.320312 C 193.871094 166.941406 191.441406 166.941406 191.441406 165.320312 C 191.441406 163.699219 193.871094 163.699219 193.871094 165.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.429688 198.234375 C 241.429688 199.851562 239 199.851562 239 198.234375 C 239 196.613281 241.429688 196.613281 241.429688 198.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.65625 131.992188 C 198.65625 133.613281 196.226562 133.613281 196.226562 131.992188 C 196.226562 130.371094 198.65625 130.371094 198.65625 131.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.527344 331.539062 C 223.527344 333.160156 221.097656 333.160156 221.097656 331.539062 C 221.097656 329.921875 223.527344 329.921875 223.527344 331.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.386719 319.242188 C 297.386719 320.863281 294.957031 320.863281 294.957031 319.242188 C 294.957031 317.621094 297.386719 317.621094 297.386719 319.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 363.265625 412.746094 C 363.265625 414.367188 360.835938 414.367188 360.835938 412.746094 C 360.835938 411.128906 363.265625 411.128906 363.265625 412.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.949219 70.910156 L 141.582031 73.746094 L 138.3125 73.746094 Z M 139.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.894531 70.910156 L 240.53125 73.746094 L 237.257812 73.746094 Z M 238.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.984375 203.050781 C 220.984375 204.667969 218.554688 204.667969 218.554688 203.050781 C 218.554688 201.429688 220.984375 201.429688 220.984375 203.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.691406 248.753906 C 298.691406 250.371094 296.257812 250.371094 296.257812 248.753906 C 296.257812 247.132812 298.691406 247.132812 298.691406 248.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.722656 273.953125 C 267.722656 275.574219 265.292969 275.574219 265.292969 273.953125 C 265.292969 272.335938 267.722656 272.335938 267.722656 273.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.4375 70.910156 L 153.074219 73.746094 L 149.800781 73.746094 Z M 151.4375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.28125 70.910156 L 272.917969 73.746094 L 269.648438 73.746094 Z M 271.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.351562 250.792969 C 263.351562 252.414062 260.917969 252.414062 260.917969 250.792969 C 260.917969 249.175781 263.351562 249.175781 263.351562 250.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.816406 280.941406 C 231.816406 282.558594 229.382812 282.558594 229.382812 280.941406 C 229.382812 279.320312 231.816406 279.320312 231.816406 280.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.925781 180.757812 C 108.925781 182.375 106.496094 182.375 106.496094 180.757812 C 106.496094 179.136719 108.925781 179.136719 108.925781 180.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.082031 343.582031 C 155.082031 345.203125 152.652344 345.203125 152.652344 343.582031 C 152.652344 341.960938 155.082031 341.960938 155.082031 343.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.324219 271.484375 C 322.324219 273.105469 319.894531 273.105469 319.894531 271.484375 C 319.894531 269.863281 322.324219 269.863281 322.324219 271.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.285156 308.101562 C 165.285156 309.722656 162.855469 309.722656 162.855469 308.101562 C 162.855469 306.480469 165.285156 306.480469 165.285156 308.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.921875 269.722656 C 253.921875 271.34375 251.492188 271.34375 251.492188 269.722656 C 251.492188 268.105469 253.921875 268.105469 253.921875 269.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.34375 254.125 C 191.34375 255.746094 188.914062 255.746094 188.914062 254.125 C 188.914062 252.503906 191.34375 252.503906 191.34375 254.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.1875 70.910156 L 202.824219 73.746094 L 199.550781 73.746094 Z M 201.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.773438 127.804688 C 212.773438 129.421875 210.34375 129.421875 210.34375 127.804688 C 210.34375 126.183594 212.773438 126.183594 212.773438 127.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.382812 223.246094 C 218.382812 224.863281 215.953125 224.863281 215.953125 223.246094 C 215.953125 221.625 218.382812 221.625 218.382812 223.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.425781 268.105469 C 119.425781 269.726562 116.992188 269.726562 116.992188 268.105469 C 116.992188 266.484375 119.425781 266.484375 119.425781 268.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248 330.71875 C 248 332.339844 245.570312 332.339844 245.570312 330.71875 C 245.570312 329.097656 248 329.097656 248 330.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.511719 324.597656 C 306.511719 326.21875 304.082031 326.21875 304.082031 324.597656 C 304.082031 322.980469 306.511719 322.980469 306.511719 324.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.882812 274.613281 C 226.882812 276.230469 224.453125 276.230469 224.453125 274.613281 C 224.453125 272.992188 226.882812 272.992188 226.882812 274.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.890625 94.972656 C 203.890625 96.59375 201.460938 96.59375 201.460938 94.972656 C 201.460938 93.351562 203.890625 93.351562 203.890625 94.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.566406 185.570312 C 179.566406 187.191406 177.136719 187.191406 177.136719 185.570312 C 177.136719 183.949219 179.566406 183.949219 179.566406 185.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.664062 70.910156 L 288.300781 73.746094 L 285.027344 73.746094 Z M 286.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.980469 291.371094 C 199.980469 292.988281 197.550781 292.988281 197.550781 291.371094 C 197.550781 289.75 199.980469 289.75 199.980469 291.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.679688 235.734375 C 249.679688 237.355469 247.25 237.355469 247.25 235.734375 C 247.25 234.113281 249.679688 234.113281 249.679688 235.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.113281 197.929688 C 278.113281 199.550781 275.683594 199.550781 275.683594 197.929688 C 275.683594 196.308594 278.113281 196.308594 278.113281 197.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.628906 285.28125 C 298.628906 286.902344 296.199219 286.902344 296.199219 285.28125 C 296.199219 283.664062 298.628906 283.664062 298.628906 285.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.277344 304.90625 C 259.277344 306.523438 256.847656 306.523438 256.847656 304.90625 C 256.847656 303.285156 259.277344 303.285156 259.277344 304.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.632812 266.621094 C 282.632812 268.242188 280.203125 268.242188 280.203125 266.621094 C 280.203125 265.003906 282.632812 265.003906 282.632812 266.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.804688 89.207031 C 235.804688 90.828125 233.375 90.828125 233.375 89.207031 C 233.375 87.585938 235.804688 87.585938 235.804688 89.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.332031 220.242188 C 324.332031 221.863281 321.902344 221.863281 321.902344 220.242188 C 321.902344 218.625 324.332031 218.625 324.332031 220.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.679688 70.910156 L 230.316406 73.746094 L 227.042969 73.746094 Z M 228.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.234375 256.792969 C 218.234375 258.414062 215.804688 258.414062 215.804688 256.792969 C 215.804688 255.171875 218.234375 255.171875 218.234375 256.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.195312 295.582031 C 259.195312 297.203125 256.765625 297.203125 256.765625 295.582031 C 256.765625 293.960938 259.195312 293.960938 259.195312 295.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.808594 344.34375 C 211.808594 345.964844 209.375 345.964844 209.375 344.34375 C 209.375 342.722656 211.808594 342.722656 211.808594 344.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.691406 285.855469 C 229.691406 287.476562 227.261719 287.476562 227.261719 285.855469 C 227.261719 284.234375 229.691406 284.234375 229.691406 285.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.179688 277.6875 C 193.179688 279.304688 190.75 279.304688 190.75 277.6875 C 190.75 276.066406 193.179688 276.066406 193.179688 277.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.269531 418.691406 L 137.90625 415.855469 L 134.632812 415.855469 Z M 136.269531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.398438 293.644531 C 192.398438 295.265625 189.96875 295.265625 189.96875 293.644531 C 189.96875 292.023438 192.398438 292.023438 192.398438 293.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.273438 286.363281 C 226.273438 287.984375 223.84375 287.984375 223.84375 286.363281 C 223.84375 284.742188 226.273438 284.742188 226.273438 286.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.996094 331.777344 C 111.996094 333.398438 109.566406 333.398438 109.566406 331.777344 C 109.566406 330.15625 111.996094 330.15625 111.996094 331.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.597656 128.230469 C 116.597656 129.847656 114.167969 129.847656 114.167969 128.230469 C 114.167969 126.609375 116.597656 126.609375 116.597656 128.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.058594 393.707031 C 196.058594 395.328125 193.628906 395.328125 193.628906 393.707031 C 193.628906 392.089844 196.058594 392.089844 196.058594 393.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.929688 70.910156 L 126.566406 73.746094 L 123.292969 73.746094 Z M 124.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.921875 224.546875 C 258.921875 226.167969 256.492188 226.167969 256.492188 224.546875 C 256.492188 222.925781 258.921875 222.925781 258.921875 224.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.15625 244.375 C 289.15625 245.996094 286.726562 245.996094 286.726562 244.375 C 286.726562 242.753906 289.15625 242.753906 289.15625 244.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.492188 188.960938 C 272.492188 190.582031 270.0625 190.582031 270.0625 188.960938 C 270.0625 187.34375 272.492188 187.34375 272.492188 188.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.4375 180.675781 C 110.4375 182.296875 108.007812 182.296875 108.007812 180.675781 C 108.007812 179.054688 110.4375 179.054688 110.4375 180.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.550781 331.285156 C 226.550781 332.90625 224.121094 332.90625 224.121094 331.285156 C 224.121094 329.664062 226.550781 329.664062 226.550781 331.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.972656 284.117188 C 324.972656 285.734375 322.539062 285.734375 322.539062 284.117188 C 322.539062 282.496094 324.972656 282.496094 324.972656 284.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.445312 397.554688 C 322.445312 399.171875 320.011719 399.171875 320.011719 397.554688 C 320.011719 395.933594 322.445312 395.933594 322.445312 397.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.625 142.445312 C 243.625 144.066406 241.191406 144.066406 241.191406 142.445312 C 241.191406 140.824219 243.625 140.824219 243.625 142.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.109375 317.246094 C 237.109375 318.867188 234.679688 318.867188 234.679688 317.246094 C 234.679688 315.625 237.109375 315.625 237.109375 317.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.597656 361.1875 C 144.597656 362.804688 142.167969 362.804688 142.167969 361.1875 C 142.167969 359.566406 144.597656 359.566406 144.597656 361.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.507812 73.554688 C 241.507812 75.171875 239.078125 75.171875 239.078125 73.554688 C 239.078125 71.933594 241.507812 71.933594 241.507812 73.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.414062 198.921875 C 268.414062 200.542969 265.984375 200.542969 265.984375 198.921875 C 265.984375 197.304688 268.414062 197.304688 268.414062 198.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 385.105469 132.773438 C 385.105469 134.390625 382.675781 134.390625 382.675781 132.773438 C 382.675781 131.152344 385.105469 131.152344 385.105469 132.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.941406 312.304688 C 310.941406 313.925781 308.511719 313.925781 308.511719 312.304688 C 308.511719 310.6875 310.941406 310.6875 310.941406 312.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.859375 188.742188 C 300.859375 190.363281 298.429688 190.363281 298.429688 188.742188 C 298.429688 187.125 300.859375 187.125 300.859375 188.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.441406 258.773438 C 283.441406 260.394531 281.011719 260.394531 281.011719 258.773438 C 281.011719 257.152344 283.441406 257.152344 283.441406 258.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.300781 70.910156 L 276.933594 73.746094 L 273.664062 73.746094 Z M 275.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.496094 285.351562 C 186.496094 286.972656 184.066406 286.972656 184.066406 285.351562 C 184.066406 283.730469 186.496094 283.730469 186.496094 285.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.242188 178.875 C 164.242188 180.496094 161.8125 180.496094 161.8125 178.875 C 161.8125 177.257812 164.242188 177.257812 164.242188 178.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.328125 261.425781 C 137.328125 263.042969 134.898438 263.042969 134.898438 261.425781 C 134.898438 259.804688 137.328125 259.804688 137.328125 261.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.269531 373.066406 C 204.269531 374.6875 201.839844 374.6875 201.839844 373.066406 C 201.839844 371.445312 204.269531 371.445312 204.269531 373.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.757812 309.597656 C 182.757812 311.214844 180.328125 311.214844 180.328125 309.597656 C 180.328125 307.976562 182.757812 307.976562 182.757812 309.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.210938 70.910156 L 161.847656 73.746094 L 158.574219 73.746094 Z M 160.210938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.695312 176.363281 C 235.695312 177.984375 233.265625 177.984375 233.265625 176.363281 C 233.265625 174.746094 235.695312 174.746094 235.695312 176.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.855469 205.507812 C 320.855469 207.128906 318.421875 207.128906 318.421875 205.507812 C 318.421875 203.886719 320.855469 203.886719 320.855469 205.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.828125 198.070312 C 159.828125 199.6875 157.398438 199.6875 157.398438 198.070312 C 157.398438 196.449219 159.828125 196.449219 159.828125 198.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.445312 369.292969 C 278.445312 370.914062 276.015625 370.914062 276.015625 369.292969 C 276.015625 367.671875 278.445312 367.671875 278.445312 369.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.867188 142.980469 C 314.867188 144.601562 312.4375 144.601562 312.4375 142.980469 C 312.4375 141.359375 314.867188 141.359375 314.867188 142.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.253906 272.445312 C 245.253906 274.0625 242.824219 274.0625 242.824219 272.445312 C 242.824219 270.824219 245.253906 270.824219 245.253906 272.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.960938 70.910156 L 224.597656 73.746094 L 221.324219 73.746094 Z M 222.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.753906 273.898438 C 285.753906 275.515625 283.324219 275.515625 283.324219 273.898438 C 283.324219 272.277344 285.753906 272.277344 285.753906 273.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.382812 213.75 C 247.382812 215.371094 244.953125 215.371094 244.953125 213.75 C 244.953125 212.132812 247.382812 212.132812 247.382812 213.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.890625 310.109375 C 236.890625 311.730469 234.460938 311.730469 234.460938 310.109375 C 234.460938 308.488281 236.890625 308.488281 236.890625 310.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.5 200.050781 C 210.5 201.671875 208.070312 201.671875 208.070312 200.050781 C 208.070312 198.433594 210.5 198.433594 210.5 200.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.378906 257.175781 C 312.378906 258.796875 309.949219 258.796875 309.949219 257.175781 C 309.949219 255.558594 312.378906 255.558594 312.378906 257.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.890625 193.988281 C 300.890625 195.609375 298.460938 195.609375 298.460938 193.988281 C 298.460938 192.367188 300.890625 192.367188 300.890625 193.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.242188 301.335938 C 260.242188 302.953125 257.8125 302.953125 257.8125 301.335938 C 257.8125 299.714844 260.242188 299.714844 260.242188 301.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.535156 313.753906 C 228.535156 315.375 226.105469 315.375 226.105469 313.753906 C 226.105469 312.136719 228.535156 312.136719 228.535156 313.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.519531 165.746094 C 159.519531 167.367188 157.089844 167.367188 157.089844 165.746094 C 157.089844 164.128906 159.519531 164.128906 159.519531 165.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.714844 281.027344 C 313.714844 282.644531 311.285156 282.644531 311.285156 281.027344 C 311.285156 279.40625 313.714844 279.40625 313.714844 281.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.585938 75.597656 C 240.585938 77.214844 238.15625 77.214844 238.15625 75.597656 C 238.15625 73.976562 240.585938 73.976562 240.585938 75.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.472656 77.640625 C 184.472656 79.257812 182.042969 79.257812 182.042969 77.640625 C 182.042969 76.019531 184.472656 76.019531 184.472656 77.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.023438 268.53125 C 299.023438 270.152344 296.59375 270.152344 296.59375 268.53125 C 296.59375 266.910156 299.023438 266.910156 299.023438 268.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.023438 302.117188 C 256.023438 303.734375 253.589844 303.734375 253.589844 302.117188 C 253.589844 300.496094 256.023438 300.496094 256.023438 302.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.726562 192.648438 C 149.726562 194.269531 147.296875 194.269531 147.296875 192.648438 C 147.296875 191.027344 149.726562 191.027344 149.726562 192.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.265625 180.792969 C 108.265625 182.410156 105.835938 182.410156 105.835938 180.792969 C 105.835938 179.171875 108.265625 179.171875 108.265625 180.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.175781 337.691406 C 228.175781 339.308594 225.746094 339.308594 225.746094 337.691406 C 225.746094 336.070312 228.175781 336.070312 228.175781 337.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.878906 418.691406 L 134.515625 415.855469 L 131.242188 415.855469 Z M 132.878906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.246094 70.910156 L 178.882812 73.746094 L 175.609375 73.746094 Z M 177.246094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.898438 70.910156 L 196.535156 73.746094 L 193.261719 73.746094 Z M 194.898438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 184.410156 70.910156 L 186.046875 73.746094 L 182.773438 73.746094 Z M 184.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.589844 418.691406 L 214.226562 415.855469 L 210.953125 415.855469 Z M 212.589844 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.34375 70.910156 L 235.980469 73.746094 L 232.707031 73.746094 Z M 234.34375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.113281 70.910156 L 174.75 73.746094 L 171.480469 73.746094 Z M 173.113281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 409.300781 108.78125 C 409.300781 110.402344 406.871094 110.402344 406.871094 108.78125 C 406.871094 107.164062 409.300781 107.164062 409.300781 108.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.171875 256.648438 C 225.171875 258.269531 222.742188 258.269531 222.742188 256.648438 C 222.742188 255.027344 225.171875 255.027344 225.171875 256.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.265625 374.582031 C 220.265625 376.203125 217.835938 376.203125 217.835938 374.582031 C 217.835938 372.964844 220.265625 372.964844 220.265625 374.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.152344 333.605469 C 266.152344 335.222656 263.722656 335.222656 263.722656 333.605469 C 263.722656 331.984375 266.152344 331.984375 266.152344 333.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.917969 164.742188 C 225.917969 166.363281 223.484375 166.363281 223.484375 164.742188 C 223.484375 163.125 225.917969 163.125 225.917969 164.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.871094 298.414062 C 238.871094 300.035156 236.441406 300.035156 236.441406 298.414062 C 236.441406 296.796875 238.871094 296.796875 238.871094 298.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.433594 332.902344 C 238.433594 334.523438 236.003906 334.523438 236.003906 332.902344 C 236.003906 331.28125 238.433594 331.28125 238.433594 332.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.398438 237.53125 C 290.398438 239.148438 287.96875 239.148438 287.96875 237.53125 C 287.96875 235.910156 290.398438 235.910156 290.398438 237.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.652344 281.351562 C 208.652344 282.972656 206.222656 282.972656 206.222656 281.351562 C 206.222656 279.730469 208.652344 279.730469 208.652344 281.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.527344 242.1875 C 208.527344 243.808594 206.097656 243.808594 206.097656 242.1875 C 206.097656 240.570312 208.527344 240.570312 208.527344 242.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.601562 243.644531 C 320.601562 245.261719 318.171875 245.261719 318.171875 243.644531 C 318.171875 242.023438 320.601562 242.023438 320.601562 243.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.261719 228.335938 C 292.261719 229.957031 289.832031 229.957031 289.832031 228.335938 C 289.832031 226.71875 292.261719 226.71875 292.261719 228.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.621094 70.910156 L 257.253906 73.746094 L 253.984375 73.746094 Z M 255.621094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.050781 70.910156 L 188.6875 73.746094 L 185.414062 73.746094 Z M 187.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.667969 156.242188 C 206.667969 157.863281 204.238281 157.863281 204.238281 156.242188 C 204.238281 154.621094 206.667969 154.621094 206.667969 156.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.351562 91.351562 C 123.351562 92.972656 120.921875 92.972656 120.921875 91.351562 C 120.921875 89.734375 123.351562 89.734375 123.351562 91.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.074219 416.285156 C 125.074219 417.90625 122.644531 417.90625 122.644531 416.285156 C 122.644531 414.664062 125.074219 414.664062 125.074219 416.285156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.160156 70.910156 L 207.796875 73.746094 L 204.523438 73.746094 Z M 206.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.273438 114.761719 C 303.273438 116.382812 300.84375 116.382812 300.84375 114.761719 C 300.84375 113.140625 303.273438 113.140625 303.273438 114.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.191406 143.734375 C 233.191406 145.355469 230.761719 145.355469 230.761719 143.734375 C 230.761719 142.113281 233.191406 142.113281 233.191406 143.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.808594 271.132812 C 211.808594 272.753906 209.378906 272.753906 209.378906 271.132812 C 209.378906 269.511719 211.808594 269.511719 211.808594 271.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.40625 418.691406 L 233.042969 415.855469 L 229.769531 415.855469 Z M 231.40625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.503906 70.910156 L 155.136719 73.746094 L 151.867188 73.746094 Z M 153.503906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.457031 167.066406 C 295.457031 168.6875 293.027344 168.6875 293.027344 167.066406 C 293.027344 165.449219 295.457031 165.449219 295.457031 167.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.738281 267.984375 C 305.738281 269.605469 303.308594 269.605469 303.308594 267.984375 C 303.308594 266.363281 305.738281 266.363281 305.738281 267.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.496094 362.742188 C 238.496094 364.363281 236.066406 364.363281 236.066406 362.742188 C 236.066406 361.121094 238.496094 361.121094 238.496094 362.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.144531 372.121094 C 236.144531 373.742188 233.714844 373.742188 233.714844 372.121094 C 233.714844 370.5 236.144531 370.5 236.144531 372.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.730469 248.863281 C 296.730469 250.484375 294.300781 250.484375 294.300781 248.863281 C 294.300781 247.242188 296.730469 247.242188 296.730469 248.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.238281 180.347656 C 291.238281 181.96875 288.808594 181.96875 288.808594 180.347656 C 288.808594 178.726562 291.238281 178.726562 291.238281 180.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.667969 193.519531 C 266.667969 195.140625 264.238281 195.140625 264.238281 193.519531 C 264.238281 191.898438 266.667969 191.898438 266.667969 193.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.410156 251.554688 C 284.410156 253.175781 281.980469 253.175781 281.980469 251.554688 C 281.980469 249.9375 284.410156 249.9375 284.410156 251.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.5 256.316406 C 243.5 257.9375 241.070312 257.9375 241.070312 256.316406 C 241.070312 254.699219 243.5 254.699219 243.5 256.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.148438 327.78125 C 237.148438 329.402344 234.71875 329.402344 234.71875 327.78125 C 234.71875 326.160156 237.148438 326.160156 237.148438 327.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.347656 284.316406 C 276.347656 285.933594 273.917969 285.933594 273.917969 284.316406 C 273.917969 282.695312 276.347656 282.695312 276.347656 284.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.171875 194.484375 C 259.171875 196.105469 256.742188 196.105469 256.742188 194.484375 C 256.742188 192.867188 259.171875 192.867188 259.171875 194.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.753906 152.972656 C 275.753906 154.59375 273.324219 154.59375 273.324219 152.972656 C 273.324219 151.355469 275.753906 151.355469 275.753906 152.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.863281 98.222656 C 268.863281 99.84375 266.433594 99.84375 266.433594 98.222656 C 266.433594 96.605469 268.863281 96.605469 268.863281 98.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.230469 90.222656 C 264.230469 91.839844 261.800781 91.839844 261.800781 90.222656 C 261.800781 88.601562 264.230469 88.601562 264.230469 90.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.96875 317.75 C 271.96875 319.371094 269.539062 319.371094 269.539062 317.75 C 269.539062 316.128906 271.96875 316.128906 271.96875 317.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.117188 344.421875 C 259.117188 346.039062 256.6875 346.039062 256.6875 344.421875 C 256.6875 342.800781 259.117188 342.800781 259.117188 344.421875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.261719 418.691406 L 294.898438 415.855469 L 291.625 415.855469 Z M 293.261719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.558594 203.402344 C 290.558594 205.019531 288.128906 205.019531 288.128906 203.402344 C 288.128906 201.78125 290.558594 201.78125 290.558594 203.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.183594 291.027344 C 225.183594 292.644531 222.753906 292.644531 222.753906 291.027344 C 222.753906 289.40625 225.183594 289.40625 225.183594 291.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.460938 281.085938 C 254.460938 282.707031 252.03125 282.707031 252.03125 281.085938 C 252.03125 279.464844 254.460938 279.464844 254.460938 281.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.480469 307.878906 C 290.480469 309.5 288.050781 309.5 288.050781 307.878906 C 288.050781 306.257812 290.480469 306.257812 290.480469 307.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.703125 253.007812 C 303.703125 254.628906 301.273438 254.628906 301.273438 253.007812 C 301.273438 251.390625 303.703125 251.390625 303.703125 253.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.761719 282.808594 C 347.761719 284.429688 345.332031 284.429688 345.332031 282.808594 C 345.332031 281.1875 347.761719 281.1875 347.761719 282.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.359375 70.910156 L 290.996094 73.746094 L 287.722656 73.746094 Z M 289.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.128906 199.796875 C 261.128906 201.417969 258.699219 201.417969 258.699219 199.796875 C 258.699219 198.175781 261.128906 198.175781 261.128906 199.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.992188 247.390625 C 283.992188 249.007812 281.5625 249.007812 281.5625 247.390625 C 281.5625 245.769531 283.992188 245.769531 283.992188 247.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.863281 334.074219 C 173.863281 335.691406 171.433594 335.691406 171.433594 334.074219 C 171.433594 332.453125 173.863281 332.453125 173.863281 334.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.390625 243.796875 C 187.390625 245.414062 184.960938 245.414062 184.960938 243.796875 C 184.960938 242.175781 187.390625 242.175781 187.390625 243.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.183594 303.34375 C 281.183594 304.960938 278.753906 304.960938 278.753906 303.34375 C 278.753906 301.722656 281.183594 301.722656 281.183594 303.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.089844 270.148438 C 263.089844 271.769531 260.660156 271.769531 260.660156 270.148438 C 260.660156 268.527344 263.089844 268.527344 263.089844 270.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.421875 261.007812 C 162.421875 262.628906 159.992188 262.628906 159.992188 261.007812 C 159.992188 259.386719 162.421875 259.386719 162.421875 261.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.078125 203.285156 C 266.078125 204.90625 263.648438 204.90625 263.648438 203.285156 C 263.648438 201.667969 266.078125 201.667969 266.078125 203.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.660156 196.59375 C 186.660156 198.214844 184.230469 198.214844 184.230469 196.59375 C 184.230469 194.976562 186.660156 194.976562 186.660156 196.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.597656 80.882812 C 271.597656 82.503906 269.164062 82.503906 269.164062 80.882812 C 269.164062 79.265625 271.597656 79.265625 271.597656 80.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.34375 341.042969 C 287.34375 342.664062 284.914062 342.664062 284.914062 341.042969 C 284.914062 339.421875 287.34375 339.421875 287.34375 341.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.273438 70.910156 L 220.910156 73.746094 L 217.636719 73.746094 Z M 219.273438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.484375 418.691406 L 242.121094 415.855469 L 238.847656 415.855469 Z M 240.484375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.746094 418.691406 L 313.382812 415.855469 L 310.109375 415.855469 Z M 311.746094 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.6875 418.691406 L 139.320312 415.855469 L 136.050781 415.855469 Z M 137.6875 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.875 70.910156 L 206.511719 73.746094 L 203.238281 73.746094 Z M 204.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.316406 97.992188 C 253.316406 99.613281 250.886719 99.613281 250.886719 97.992188 C 250.886719 96.375 253.316406 96.375 253.316406 97.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.988281 181.5 C 237.988281 183.121094 235.558594 183.121094 235.558594 181.5 C 235.558594 179.878906 237.988281 179.878906 237.988281 181.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.449219 70.910156 L 282.085938 73.746094 L 278.8125 73.746094 Z M 280.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.808594 215.933594 C 350.808594 217.554688 348.378906 217.554688 348.378906 215.933594 C 348.378906 214.3125 350.808594 214.3125 350.808594 215.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.179688 215.097656 C 263.179688 216.714844 260.75 216.714844 260.75 215.097656 C 260.75 213.476562 263.179688 213.476562 263.179688 215.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.128906 263.808594 C 306.128906 265.425781 303.699219 265.425781 303.699219 263.808594 C 303.699219 262.1875 306.128906 262.1875 306.128906 263.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.761719 330.804688 C 247.761719 332.421875 245.332031 332.421875 245.332031 330.804688 C 245.332031 329.183594 247.761719 329.183594 247.761719 330.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.195312 148.421875 C 289.195312 150.042969 286.765625 150.042969 286.765625 148.421875 C 286.765625 146.804688 289.195312 146.804688 289.195312 148.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.554688 153.367188 C 220.554688 154.984375 218.125 154.984375 218.125 153.367188 C 218.125 151.746094 220.554688 151.746094 220.554688 153.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.1875 230.097656 C 145.1875 231.71875 142.757812 231.71875 142.757812 230.097656 C 142.757812 228.476562 145.1875 228.476562 145.1875 230.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 357.972656 418.691406 L 359.609375 415.855469 L 356.335938 415.855469 Z M 357.972656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 345.410156 418.691406 L 347.046875 415.855469 L 343.773438 415.855469 Z M 345.410156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.3125 308.898438 C 143.3125 310.519531 140.882812 310.519531 140.882812 308.898438 C 140.882812 307.277344 143.3125 307.277344 143.3125 308.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.027344 418.691406 L 144.664062 415.855469 L 141.390625 415.855469 Z M 143.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.945312 383.378906 C 211.945312 384.996094 209.511719 384.996094 209.511719 383.378906 C 209.511719 381.757812 211.945312 381.757812 211.945312 383.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.976562 288.621094 C 288.976562 290.242188 286.546875 290.242188 286.546875 288.621094 C 286.546875 287 288.976562 287 288.976562 288.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.578125 332.371094 C 289.578125 333.992188 287.144531 333.992188 287.144531 332.371094 C 287.144531 330.75 289.578125 330.75 289.578125 332.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.328125 243.90625 C 317.328125 245.523438 314.898438 245.523438 314.898438 243.90625 C 314.898438 242.285156 317.328125 242.285156 317.328125 243.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.238281 226.921875 C 219.238281 228.542969 216.804688 228.542969 216.804688 226.921875 C 216.804688 225.304688 219.238281 225.304688 219.238281 226.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.785156 82.324219 C 231.785156 83.945312 229.355469 83.945312 229.355469 82.324219 C 229.355469 80.703125 231.785156 80.703125 231.785156 82.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.699219 70.910156 L 230.335938 73.746094 L 227.066406 73.746094 Z M 228.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.0625 275.101562 C 261.0625 276.722656 258.632812 276.722656 258.632812 275.101562 C 258.632812 273.480469 261.0625 273.480469 261.0625 275.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.734375 70.910156 L 148.371094 73.746094 L 145.101562 73.746094 Z M 146.734375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.769531 70.910156 L 142.40625 73.746094 L 139.132812 73.746094 Z M 140.769531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.449219 202.40625 C 257.449219 204.027344 255.019531 204.027344 255.019531 202.40625 C 255.019531 200.789062 257.449219 200.789062 257.449219 202.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.320312 118.742188 C 220.320312 120.363281 217.890625 120.363281 217.890625 118.742188 C 217.890625 117.121094 220.320312 117.121094 220.320312 118.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.964844 199.640625 C 333.964844 201.261719 331.535156 201.261719 331.535156 199.640625 C 331.535156 198.019531 333.964844 198.019531 333.964844 199.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.539062 320.585938 C 236.539062 322.207031 234.109375 322.207031 234.109375 320.585938 C 234.109375 318.964844 236.539062 318.964844 236.539062 320.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.210938 70.910156 L 202.847656 73.746094 L 199.578125 73.746094 Z M 201.210938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.097656 70.910156 L 162.734375 73.746094 L 159.460938 73.746094 Z M 161.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.65625 297.449219 C 238.65625 299.070312 236.226562 299.070312 236.226562 297.449219 C 236.226562 295.832031 238.65625 295.832031 238.65625 297.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.457031 296.277344 C 247.457031 297.894531 245.027344 297.894531 245.027344 296.277344 C 245.027344 294.65625 247.457031 294.65625 247.457031 296.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.421875 97.542969 C 273.421875 99.164062 270.988281 99.164062 270.988281 97.542969 C 270.988281 95.921875 273.421875 95.921875 273.421875 97.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.109375 238.683594 C 312.109375 240.304688 309.679688 240.304688 309.679688 238.683594 C 309.679688 237.066406 312.109375 237.066406 312.109375 238.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.71875 202.023438 C 180.71875 203.644531 178.289062 203.644531 178.289062 202.023438 C 178.289062 200.40625 180.71875 200.40625 180.71875 202.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.257812 233.457031 C 285.257812 235.074219 282.828125 235.074219 282.828125 233.457031 C 282.828125 231.835938 285.257812 231.835938 285.257812 233.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.210938 270.0625 C 268.210938 271.683594 265.78125 271.683594 265.78125 270.0625 C 265.78125 268.441406 268.210938 268.441406 268.210938 270.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.492188 262.519531 C 288.492188 264.140625 286.0625 264.140625 286.0625 262.519531 C 286.0625 260.898438 288.492188 260.898438 288.492188 262.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.363281 209.925781 C 291.363281 211.546875 288.933594 211.546875 288.933594 209.925781 C 288.933594 208.308594 291.363281 208.308594 291.363281 209.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.855469 191.84375 C 233.855469 193.464844 231.425781 193.464844 231.425781 191.84375 C 231.425781 190.222656 233.855469 190.222656 233.855469 191.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.023438 123.621094 C 280.023438 125.242188 277.59375 125.242188 277.59375 123.621094 C 277.59375 122.003906 280.023438 122.003906 280.023438 123.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.257812 294.609375 C 240.257812 296.226562 237.828125 296.226562 237.828125 294.609375 C 237.828125 292.988281 240.257812 292.988281 240.257812 294.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.960938 251.910156 C 261.960938 253.53125 259.53125 253.53125 259.53125 251.910156 C 259.53125 250.292969 261.960938 250.292969 261.960938 251.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.859375 247.660156 C 281.859375 249.28125 279.429688 249.28125 279.429688 247.660156 C 279.429688 246.042969 281.859375 246.042969 281.859375 247.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.125 70.910156 L 146.761719 73.746094 L 143.488281 73.746094 Z M 145.125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.863281 418.691406 L 207.5 415.855469 L 204.226562 415.855469 Z M 205.863281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.300781 418.691406 L 245.9375 415.855469 L 242.664062 415.855469 Z M 244.300781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.445312 351.082031 C 164.445312 352.703125 162.015625 352.703125 162.015625 351.082031 C 162.015625 349.460938 164.445312 349.460938 164.445312 351.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.679688 319.890625 C 162.679688 321.511719 160.25 321.511719 160.25 319.890625 C 160.25 318.273438 162.679688 318.273438 162.679688 319.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.871094 254.261719 C 220.871094 255.882812 218.441406 255.882812 218.441406 254.261719 C 218.441406 252.644531 220.871094 252.644531 220.871094 254.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.789062 236.683594 C 224.789062 238.300781 222.359375 238.300781 222.359375 236.683594 C 222.359375 235.0625 224.789062 235.0625 224.789062 236.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.546875 388.625 C 162.546875 390.242188 160.117188 390.242188 160.117188 388.625 C 160.117188 387.003906 162.546875 387.003906 162.546875 388.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.863281 309.566406 C 307.863281 311.1875 305.433594 311.1875 305.433594 309.566406 C 305.433594 307.945312 307.863281 307.945312 307.863281 309.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.320312 146.160156 C 264.320312 147.78125 261.890625 147.78125 261.890625 146.160156 C 261.890625 144.539062 264.320312 144.539062 264.320312 146.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.746094 171.960938 C 265.746094 173.582031 263.316406 173.582031 263.316406 171.960938 C 263.316406 170.34375 265.746094 170.34375 265.746094 171.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.75 287.65625 C 265.75 289.277344 263.320312 289.277344 263.320312 287.65625 C 263.320312 286.039062 265.75 286.039062 265.75 287.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.164062 386.199219 C 236.164062 387.820312 233.734375 387.820312 233.734375 386.199219 C 233.734375 384.578125 236.164062 384.578125 236.164062 386.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.117188 181.785156 C 237.117188 183.40625 234.6875 183.40625 234.6875 181.785156 C 234.6875 180.167969 237.117188 180.167969 237.117188 181.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.707031 192.039062 C 169.707031 193.660156 167.277344 193.660156 167.277344 192.039062 C 167.277344 190.417969 169.707031 190.417969 169.707031 192.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.304688 203.464844 C 251.304688 205.085938 248.875 205.085938 248.875 203.464844 C 248.875 201.84375 251.304688 201.84375 251.304688 203.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.320312 251.175781 C 222.320312 252.792969 219.890625 252.792969 219.890625 251.175781 C 219.890625 249.554688 222.320312 249.554688 222.320312 251.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.617188 269.074219 C 243.617188 270.695312 241.1875 270.695312 241.1875 269.074219 C 241.1875 267.453125 243.617188 267.453125 243.617188 269.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.480469 370.398438 C 218.480469 372.015625 216.050781 372.015625 216.050781 370.398438 C 216.050781 368.777344 218.480469 368.777344 218.480469 370.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.359375 300.160156 C 225.359375 301.78125 222.929688 301.78125 222.929688 300.160156 C 222.929688 298.542969 225.359375 298.542969 225.359375 300.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.445312 273.683594 C 278.445312 275.304688 276.015625 275.304688 276.015625 273.683594 C 276.015625 272.066406 278.445312 272.066406 278.445312 273.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.359375 282.667969 C 158.359375 284.289062 155.929688 284.289062 155.929688 282.667969 C 155.929688 281.050781 158.359375 281.050781 158.359375 282.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.171875 190.53125 C 281.171875 192.148438 278.742188 192.148438 278.742188 190.53125 C 278.742188 188.910156 281.171875 188.910156 281.171875 190.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.578125 252.46875 C 289.578125 254.089844 287.148438 254.089844 287.148438 252.46875 C 287.148438 250.847656 289.578125 250.847656 289.578125 252.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.382812 248.175781 C 272.382812 249.796875 269.953125 249.796875 269.953125 248.175781 C 269.953125 246.558594 272.382812 246.558594 272.382812 248.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.28125 70.910156 L 147.917969 73.746094 L 144.644531 73.746094 Z M 146.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.757812 284.636719 C 235.757812 286.257812 233.328125 286.257812 233.328125 284.636719 C 233.328125 283.015625 235.757812 283.015625 235.757812 284.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.507812 237.132812 C 272.507812 238.753906 270.078125 238.753906 270.078125 237.132812 C 270.078125 235.511719 272.507812 235.511719 272.507812 237.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.023438 238.929688 C 237.023438 240.550781 234.589844 240.550781 234.589844 238.929688 C 234.589844 237.308594 237.023438 237.308594 237.023438 238.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.277344 187.03125 C 167.277344 188.652344 164.847656 188.652344 164.847656 187.03125 C 164.847656 185.410156 167.277344 185.410156 167.277344 187.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.285156 409.410156 C 183.285156 411.03125 180.855469 411.03125 180.855469 409.410156 C 180.855469 407.792969 183.285156 407.792969 183.285156 409.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.808594 255.160156 C 238.808594 256.78125 236.378906 256.78125 236.378906 255.160156 C 236.378906 253.542969 238.808594 253.542969 238.808594 255.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.582031 244.582031 C 214.582031 246.203125 212.152344 246.203125 212.152344 244.582031 C 212.152344 242.960938 214.582031 242.960938 214.582031 244.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.921875 70.910156 L 182.558594 73.746094 L 179.285156 73.746094 Z M 180.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.914062 201.386719 C 241.914062 203.007812 239.484375 203.007812 239.484375 201.386719 C 239.484375 199.765625 241.914062 199.765625 241.914062 201.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.609375 203.023438 C 253.609375 204.644531 251.179688 204.644531 251.179688 203.023438 C 251.179688 201.40625 253.609375 201.40625 253.609375 203.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.710938 70.910156 L 244.347656 73.746094 L 241.074219 73.746094 Z M 242.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.027344 285.398438 C 202.027344 287.019531 199.597656 287.019531 199.597656 285.398438 C 199.597656 283.78125 202.027344 283.78125 202.027344 285.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.703125 219.59375 C 146.703125 221.214844 144.269531 221.214844 144.269531 219.59375 C 144.269531 217.976562 146.703125 217.976562 146.703125 219.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.285156 275.382812 C 182.285156 277.003906 179.855469 277.003906 179.855469 275.382812 C 179.855469 273.761719 182.285156 273.761719 182.285156 275.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.59375 240.070312 C 232.59375 241.691406 230.164062 241.691406 230.164062 240.070312 C 230.164062 238.453125 232.59375 238.453125 232.59375 240.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.625 268.636719 C 183.625 270.257812 181.195312 270.257812 181.195312 268.636719 C 181.195312 267.015625 183.625 267.015625 183.625 268.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.296875 282.359375 C 248.296875 283.976562 245.867188 283.976562 245.867188 282.359375 C 245.867188 280.738281 248.296875 280.738281 248.296875 282.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.746094 282.199219 C 247.746094 283.816406 245.316406 283.816406 245.316406 282.199219 C 245.316406 280.578125 247.746094 280.578125 247.746094 282.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.714844 250.847656 C 169.714844 252.46875 167.285156 252.46875 167.285156 250.847656 C 167.285156 249.226562 169.714844 249.226562 169.714844 250.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.910156 259.835938 C 242.910156 261.457031 240.480469 261.457031 240.480469 259.835938 C 240.480469 258.21875 242.910156 258.21875 242.910156 259.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.070312 283.78125 C 268.070312 285.398438 265.636719 285.398438 265.636719 283.78125 C 265.636719 282.160156 268.070312 282.160156 268.070312 283.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.585938 269.304688 C 253.585938 270.925781 251.15625 270.925781 251.15625 269.304688 C 251.15625 267.683594 253.585938 267.683594 253.585938 269.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.117188 286.824219 C 189.117188 288.441406 186.6875 288.441406 186.6875 286.824219 C 186.6875 285.203125 189.117188 285.203125 189.117188 286.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.359375 258.605469 C 277.359375 260.226562 274.929688 260.226562 274.929688 258.605469 C 274.929688 256.984375 277.359375 256.984375 277.359375 258.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.230469 252.902344 C 293.230469 254.523438 290.800781 254.523438 290.800781 252.902344 C 290.800781 251.28125 293.230469 251.28125 293.230469 252.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.324219 102.488281 C 329.324219 104.105469 326.894531 104.105469 326.894531 102.488281 C 326.894531 100.867188 329.324219 100.867188 329.324219 102.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.050781 269.9375 C 228.050781 271.558594 225.621094 271.558594 225.621094 269.9375 C 225.621094 268.316406 228.050781 268.316406 228.050781 269.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.851562 239.136719 C 256.851562 240.757812 254.421875 240.757812 254.421875 239.136719 C 254.421875 237.519531 256.851562 237.519531 256.851562 239.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.789062 387.265625 C 169.789062 388.886719 167.359375 388.886719 167.359375 387.265625 C 167.359375 385.648438 169.789062 385.648438 169.789062 387.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.007812 272.523438 C 176.007812 274.144531 173.578125 274.144531 173.578125 272.523438 C 173.578125 270.902344 176.007812 270.902344 176.007812 272.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.335938 245.523438 C 324.335938 247.140625 321.902344 247.140625 321.902344 245.523438 C 321.902344 243.902344 324.335938 243.902344 324.335938 245.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.855469 418.691406 L 204.492188 415.855469 L 201.21875 415.855469 Z M 202.855469 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.421875 136.4375 C 291.421875 138.058594 288.992188 138.058594 288.992188 136.4375 C 288.992188 134.816406 291.421875 134.816406 291.421875 136.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.324219 223.167969 C 312.324219 224.785156 309.894531 224.785156 309.894531 223.167969 C 309.894531 221.546875 312.324219 221.546875 312.324219 223.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.394531 173.683594 C 332.394531 175.300781 329.964844 175.300781 329.964844 173.683594 C 329.964844 172.0625 332.394531 172.0625 332.394531 173.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.90625 418.691406 L 260.539062 415.855469 L 257.269531 415.855469 Z M 258.90625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.027344 418.691406 L 198.660156 415.855469 L 195.390625 415.855469 Z M 197.027344 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.414062 172.285156 C 287.414062 173.90625 284.984375 173.90625 284.984375 172.285156 C 284.984375 170.664062 287.414062 170.664062 287.414062 172.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.761719 144.707031 C 152.761719 146.328125 150.332031 146.328125 150.332031 144.707031 C 150.332031 143.085938 152.761719 143.085938 152.761719 144.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.359375 301.265625 C 332.359375 302.886719 329.929688 302.886719 329.929688 301.265625 C 329.929688 299.648438 332.359375 299.648438 332.359375 301.265625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.953125 70.910156 L 273.589844 73.746094 L 270.320312 73.746094 Z M 271.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.457031 190.148438 C 181.457031 191.769531 179.027344 191.769531 179.027344 190.148438 C 179.027344 188.527344 181.457031 188.527344 181.457031 190.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.949219 121.363281 C 165.949219 122.984375 163.519531 122.984375 163.519531 121.363281 C 163.519531 119.742188 165.949219 119.742188 165.949219 121.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.3125 347.195312 C 179.3125 348.816406 176.882812 348.816406 176.882812 347.195312 C 176.882812 345.574219 179.3125 345.574219 179.3125 347.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.4375 220.824219 C 207.4375 222.441406 205.007812 222.441406 205.007812 220.824219 C 205.007812 219.203125 207.4375 219.203125 207.4375 220.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.53125 122.09375 C 205.53125 123.714844 203.101562 123.714844 203.101562 122.09375 C 203.101562 120.476562 205.53125 120.476562 205.53125 122.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.839844 70.910156 L 230.472656 73.746094 L 227.203125 73.746094 Z M 228.839844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.921875 70.910156 L 234.558594 73.746094 L 231.285156 73.746094 Z M 232.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.851562 78.449219 C 232.851562 80.070312 230.421875 80.070312 230.421875 78.449219 C 230.421875 76.828125 232.851562 76.828125 232.851562 78.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.332031 214.773438 C 265.332031 216.394531 262.902344 216.394531 262.902344 214.773438 C 262.902344 213.15625 265.332031 213.15625 265.332031 214.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.21875 136.125 C 238.21875 137.746094 235.785156 137.746094 235.785156 136.125 C 235.785156 134.503906 238.21875 134.503906 238.21875 136.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.6875 216.351562 C 190.6875 217.96875 188.257812 217.96875 188.257812 216.351562 C 188.257812 214.730469 190.6875 214.730469 190.6875 216.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.695312 247.050781 C 281.695312 248.671875 279.265625 248.671875 279.265625 247.050781 C 279.265625 245.433594 281.695312 245.433594 281.695312 247.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.902344 291.234375 C 252.902344 292.851562 250.472656 292.851562 250.472656 291.234375 C 250.472656 289.613281 252.902344 289.613281 252.902344 291.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.464844 331.53125 C 275.464844 333.148438 273.035156 333.148438 273.035156 331.53125 C 273.035156 329.910156 275.464844 329.910156 275.464844 331.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.089844 246.726562 C 259.089844 248.347656 256.660156 248.347656 256.660156 246.726562 C 256.660156 245.109375 259.089844 245.109375 259.089844 246.726562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.640625 418.691406 L 154.273438 415.855469 L 151.003906 415.855469 Z M 152.640625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.339844 70.910156 L 174.976562 73.746094 L 171.703125 73.746094 Z M 173.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.703125 418.691406 L 306.339844 415.855469 L 303.066406 415.855469 Z M 304.703125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.542969 194.394531 C 206.542969 196.015625 204.113281 196.015625 204.113281 194.394531 C 204.113281 192.773438 206.542969 192.773438 206.542969 194.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.332031 234.273438 C 154.332031 235.894531 151.898438 235.894531 151.898438 234.273438 C 151.898438 232.652344 154.332031 232.652344 154.332031 234.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.589844 243.351562 C 235.589844 244.972656 233.160156 244.972656 233.160156 243.351562 C 233.160156 241.734375 235.589844 241.734375 235.589844 243.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.386719 190.878906 C 299.386719 192.5 296.957031 192.5 296.957031 190.878906 C 296.957031 189.257812 299.386719 189.257812 299.386719 190.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.273438 242.214844 C 182.273438 243.835938 179.84375 243.835938 179.84375 242.214844 C 179.84375 240.59375 182.273438 240.59375 182.273438 242.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.957031 114.71875 C 135.957031 116.335938 133.523438 116.335938 133.523438 114.71875 C 133.523438 113.097656 135.957031 113.097656 135.957031 114.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.3125 330.546875 C 204.3125 332.167969 201.882812 332.167969 201.882812 330.546875 C 201.882812 328.925781 204.3125 328.925781 204.3125 330.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.734375 242.90625 C 306.734375 244.523438 304.304688 244.523438 304.304688 242.90625 C 304.304688 241.285156 306.734375 241.285156 306.734375 242.90625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.863281 70.910156 L 155.5 73.746094 L 152.226562 73.746094 Z M 153.863281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.886719 418.691406 L 229.519531 415.855469 L 226.25 415.855469 Z M 227.886719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.445312 175.621094 C 180.445312 177.238281 178.011719 177.238281 178.011719 175.621094 C 178.011719 174 180.445312 174 180.445312 175.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.636719 250.714844 C 272.636719 252.335938 270.207031 252.335938 270.207031 250.714844 C 270.207031 249.097656 272.636719 249.097656 272.636719 250.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.265625 178.460938 C 168.265625 180.082031 165.835938 180.082031 165.835938 178.460938 C 165.835938 176.839844 168.265625 176.839844 168.265625 178.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.367188 171.332031 C 264.367188 172.953125 261.9375 172.953125 261.9375 171.332031 C 261.9375 169.714844 264.367188 169.714844 264.367188 171.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.132812 237.992188 C 288.132812 239.613281 285.703125 239.613281 285.703125 237.992188 C 285.703125 236.371094 288.132812 236.371094 288.132812 237.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.734375 248.378906 C 275.734375 249.996094 273.304688 249.996094 273.304688 248.378906 C 273.304688 246.757812 275.734375 246.757812 275.734375 248.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.378906 289.140625 C 206.378906 290.757812 203.949219 290.757812 203.949219 289.140625 C 203.949219 287.519531 206.378906 287.519531 206.378906 289.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.265625 135.386719 C 278.265625 137.007812 275.835938 137.007812 275.835938 135.386719 C 275.835938 133.765625 278.265625 133.765625 278.265625 135.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.535156 70.910156 L 149.171875 73.746094 L 145.898438 73.746094 Z M 147.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.816406 418.691406 L 327.449219 415.855469 L 324.179688 415.855469 Z M 325.816406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.769531 285.667969 C 249.769531 287.289062 247.339844 287.289062 247.339844 285.667969 C 247.339844 284.050781 249.769531 284.050781 249.769531 285.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.394531 418.691406 L 218.03125 415.855469 L 214.757812 415.855469 Z M 216.394531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.53125 200.191406 C 251.53125 201.8125 249.101562 201.8125 249.101562 200.191406 C 249.101562 198.574219 251.53125 198.574219 251.53125 200.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.617188 199.710938 C 231.617188 201.332031 229.1875 201.332031 229.1875 199.710938 C 229.1875 198.089844 231.617188 198.089844 231.617188 199.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.464844 73.210938 C 267.464844 74.832031 265.035156 74.832031 265.035156 73.210938 C 265.035156 71.59375 267.464844 71.59375 267.464844 73.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.210938 148.738281 C 280.210938 150.359375 277.78125 150.359375 277.78125 148.738281 C 277.78125 147.117188 280.210938 147.117188 280.210938 148.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.335938 255.832031 C 238.335938 257.453125 235.90625 257.453125 235.90625 255.832031 C 235.90625 254.210938 238.335938 254.210938 238.335938 255.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.734375 256.609375 C 303.734375 258.230469 301.304688 258.230469 301.304688 256.609375 C 301.304688 254.988281 303.734375 254.988281 303.734375 256.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.09375 226.011719 C 277.09375 227.628906 274.660156 227.628906 274.660156 226.011719 C 274.660156 224.390625 277.09375 224.390625 277.09375 226.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.371094 198.066406 C 126.371094 199.6875 123.941406 199.6875 123.941406 198.066406 C 123.941406 196.445312 126.371094 196.445312 126.371094 198.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.691406 261.953125 C 278.691406 263.574219 276.261719 263.574219 276.261719 261.953125 C 276.261719 260.332031 278.691406 260.332031 278.691406 261.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.136719 328.199219 C 172.136719 329.816406 169.707031 329.816406 169.707031 328.199219 C 169.707031 326.578125 172.136719 326.578125 172.136719 328.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.417969 328.984375 C 203.417969 330.605469 200.988281 330.605469 200.988281 328.984375 C 200.988281 327.363281 203.417969 327.363281 203.417969 328.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.808594 273.574219 C 253.808594 275.195312 251.378906 275.195312 251.378906 273.574219 C 251.378906 271.957031 253.808594 271.957031 253.808594 273.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.621094 109.738281 C 271.621094 111.355469 269.191406 111.355469 269.191406 109.738281 C 269.191406 108.117188 271.621094 108.117188 271.621094 109.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.496094 337.976562 C 239.496094 339.59375 237.066406 339.59375 237.066406 337.976562 C 237.066406 336.355469 239.496094 336.355469 239.496094 337.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.449219 351.601562 C 240.449219 353.222656 238.019531 353.222656 238.019531 351.601562 C 238.019531 349.980469 240.449219 349.980469 240.449219 351.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.273438 402.554688 C 266.273438 404.175781 263.84375 404.175781 263.84375 402.554688 C 263.84375 400.933594 266.273438 400.933594 266.273438 402.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.121094 70.910156 L 168.757812 73.746094 L 165.488281 73.746094 Z M 167.121094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.929688 243.992188 C 259.929688 245.613281 257.5 245.613281 257.5 243.992188 C 257.5 242.375 259.929688 242.375 259.929688 243.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.011719 209.816406 C 247.011719 211.4375 244.582031 211.4375 244.582031 209.816406 C 244.582031 208.199219 247.011719 208.199219 247.011719 209.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.90625 275.851562 C 296.90625 277.46875 294.472656 277.46875 294.472656 275.851562 C 294.472656 274.230469 296.90625 274.230469 296.90625 275.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.882812 257.707031 C 117.882812 259.324219 115.453125 259.324219 115.453125 257.707031 C 115.453125 256.085938 117.882812 256.085938 117.882812 257.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.621094 277.152344 C 281.621094 278.773438 279.191406 278.773438 279.191406 277.152344 C 279.191406 275.535156 281.621094 275.535156 281.621094 277.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.273438 311.589844 C 262.273438 313.210938 259.84375 313.210938 259.84375 311.589844 C 259.84375 309.972656 262.273438 309.972656 262.273438 311.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.609375 193.078125 C 296.609375 194.699219 294.179688 194.699219 294.179688 193.078125 C 294.179688 191.460938 296.609375 191.460938 296.609375 193.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.371094 254.605469 C 248.371094 256.222656 245.941406 256.222656 245.941406 254.605469 C 245.941406 252.984375 248.371094 252.984375 248.371094 254.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.730469 299.621094 C 164.730469 301.238281 162.300781 301.238281 162.300781 299.621094 C 162.300781 298 164.730469 298 164.730469 299.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.855469 309.203125 C 164.855469 310.824219 162.425781 310.824219 162.425781 309.203125 C 162.425781 307.585938 164.855469 307.585938 164.855469 309.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.464844 241.78125 C 229.464844 243.402344 227.035156 243.402344 227.035156 241.78125 C 227.035156 240.160156 229.464844 240.160156 229.464844 241.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.910156 234.132812 C 219.910156 235.75 217.480469 235.75 217.480469 234.132812 C 217.480469 232.511719 219.910156 232.511719 219.910156 234.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.882812 313.140625 C 272.882812 314.757812 270.453125 314.757812 270.453125 313.140625 C 270.453125 311.519531 272.882812 311.519531 272.882812 313.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.886719 207.574219 C 312.886719 209.195312 310.457031 209.195312 310.457031 207.574219 C 310.457031 205.957031 312.886719 205.957031 312.886719 207.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.644531 418.691406 L 178.277344 415.855469 L 175.007812 415.855469 Z M 176.644531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.835938 287.492188 C 270.835938 289.113281 268.40625 289.113281 268.40625 287.492188 C 268.40625 285.871094 270.835938 285.871094 270.835938 287.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.894531 257.316406 C 295.894531 258.9375 293.464844 258.9375 293.464844 257.316406 C 293.464844 255.699219 295.894531 255.699219 295.894531 257.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.964844 244.234375 C 222.964844 245.855469 220.535156 245.855469 220.535156 244.234375 C 220.535156 242.613281 222.964844 242.613281 222.964844 244.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.949219 261.519531 C 292.949219 263.140625 290.519531 263.140625 290.519531 261.519531 C 290.519531 259.902344 292.949219 259.902344 292.949219 261.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.613281 270.777344 C 261.613281 272.394531 259.183594 272.394531 259.183594 270.777344 C 259.183594 269.15625 261.613281 269.15625 261.613281 270.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.160156 126.796875 C 231.160156 128.414062 228.730469 128.414062 228.730469 126.796875 C 228.730469 125.175781 231.160156 125.175781 231.160156 126.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.230469 203.207031 C 261.230469 204.828125 258.800781 204.828125 258.800781 203.207031 C 258.800781 201.585938 261.230469 201.585938 261.230469 203.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.09375 272.253906 C 249.09375 273.875 246.664062 273.875 246.664062 272.253906 C 246.664062 270.636719 249.09375 270.636719 249.09375 272.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.953125 340.777344 C 212.953125 342.398438 210.523438 342.398438 210.523438 340.777344 C 210.523438 339.15625 212.953125 339.15625 212.953125 340.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.699219 70.910156 L 185.335938 73.746094 L 182.0625 73.746094 Z M 183.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.308594 187.71875 C 297.308594 189.339844 294.878906 189.339844 294.878906 187.71875 C 294.878906 186.101562 297.308594 186.101562 297.308594 187.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.613281 218.144531 C 183.613281 219.765625 181.179688 219.765625 181.179688 218.144531 C 181.179688 216.523438 183.613281 216.523438 183.613281 218.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.628906 243.601562 C 306.628906 245.222656 304.199219 245.222656 304.199219 243.601562 C 304.199219 241.984375 306.628906 241.984375 306.628906 243.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.132812 277.8125 C 286.132812 279.433594 283.703125 279.433594 283.703125 277.8125 C 283.703125 276.195312 286.132812 276.195312 286.132812 277.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.382812 161.652344 C 274.382812 163.273438 271.953125 163.273438 271.953125 161.652344 C 271.953125 160.035156 274.382812 160.035156 274.382812 161.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.144531 255.71875 C 208.144531 257.339844 205.714844 257.339844 205.714844 255.71875 C 205.714844 254.097656 208.144531 254.097656 208.144531 255.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.382812 70.910156 L 254.019531 73.746094 L 250.746094 73.746094 Z M 252.382812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.449219 214.984375 C 149.449219 216.605469 147.019531 216.605469 147.019531 214.984375 C 147.019531 213.363281 149.449219 213.363281 149.449219 214.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.96875 215.578125 C 271.96875 217.199219 269.539062 217.199219 269.539062 215.578125 C 269.539062 213.960938 271.96875 213.960938 271.96875 215.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.917969 137.496094 C 219.917969 139.113281 217.488281 139.113281 217.488281 137.496094 C 217.488281 135.875 219.917969 135.875 219.917969 137.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.453125 331.285156 C 285.453125 332.90625 283.023438 332.90625 283.023438 331.285156 C 283.023438 329.664062 285.453125 329.664062 285.453125 331.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.335938 186.160156 C 223.335938 187.777344 220.90625 187.777344 220.90625 186.160156 C 220.90625 184.539062 223.335938 184.539062 223.335938 186.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.273438 308.851562 C 228.273438 310.472656 225.84375 310.472656 225.84375 308.851562 C 225.84375 307.234375 228.273438 307.234375 228.273438 308.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 377.753906 237.902344 C 377.753906 239.523438 375.324219 239.523438 375.324219 237.902344 C 375.324219 236.285156 377.753906 236.285156 377.753906 237.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.765625 276.878906 C 228.765625 278.5 226.332031 278.5 226.332031 276.878906 C 226.332031 275.257812 228.765625 275.257812 228.765625 276.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.160156 270.039062 C 257.160156 271.660156 254.730469 271.660156 254.730469 270.039062 C 254.730469 268.417969 257.160156 268.417969 257.160156 270.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.765625 258.816406 C 260.765625 260.4375 258.335938 260.4375 258.335938 258.816406 C 258.335938 257.199219 260.765625 257.199219 260.765625 258.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.78125 204.480469 C 272.78125 206.101562 270.351562 206.101562 270.351562 204.480469 C 270.351562 202.863281 272.78125 202.863281 272.78125 204.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.308594 315.632812 C 209.308594 317.25 206.878906 317.25 206.878906 315.632812 C 206.878906 314.011719 209.308594 314.011719 209.308594 315.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.601562 318.691406 C 296.601562 320.3125 294.171875 320.3125 294.171875 318.691406 C 294.171875 317.070312 296.601562 317.070312 296.601562 318.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.433594 191.910156 C 282.433594 193.53125 280.003906 193.53125 280.003906 191.910156 C 280.003906 190.289062 282.433594 190.289062 282.433594 191.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.117188 255.472656 C 260.117188 257.09375 257.6875 257.09375 257.6875 255.472656 C 257.6875 253.851562 260.117188 253.851562 260.117188 255.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.019531 141.792969 C 205.019531 143.414062 202.589844 143.414062 202.589844 141.792969 C 202.589844 140.171875 205.019531 140.171875 205.019531 141.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.128906 94.445312 C 223.128906 96.066406 220.699219 96.066406 220.699219 94.445312 C 220.699219 92.824219 223.128906 92.824219 223.128906 94.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 193.890625 82.0625 C 193.890625 83.683594 191.460938 83.683594 191.460938 82.0625 C 191.460938 80.441406 193.890625 80.441406 193.890625 82.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.789062 70.910156 L 127.425781 73.746094 L 124.152344 73.746094 Z M 125.789062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 292.707031 70.910156 L 294.34375 73.746094 L 291.070312 73.746094 Z M 292.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.621094 237.667969 C 266.621094 239.289062 264.191406 239.289062 264.191406 237.667969 C 264.191406 236.046875 266.621094 236.046875 266.621094 237.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.554688 355.324219 C 142.554688 356.945312 140.125 356.945312 140.125 355.324219 C 140.125 353.703125 142.554688 353.703125 142.554688 355.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.933594 181.542969 C 227.933594 183.164062 225.503906 183.164062 225.503906 181.542969 C 225.503906 179.921875 227.933594 179.921875 227.933594 181.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.550781 154.820312 C 267.550781 156.441406 265.121094 156.441406 265.121094 154.820312 C 265.121094 153.199219 267.550781 153.199219 267.550781 154.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.679688 207.625 C 222.679688 209.246094 220.25 209.246094 220.25 207.625 C 220.25 206.003906 222.679688 206.003906 222.679688 207.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.886719 149.820312 C 225.886719 151.441406 223.457031 151.441406 223.457031 149.820312 C 223.457031 148.203125 225.886719 148.203125 225.886719 149.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.980469 373.117188 C 117.980469 374.738281 115.550781 374.738281 115.550781 373.117188 C 115.550781 371.496094 117.980469 371.496094 117.980469 373.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.640625 225.140625 C 290.640625 226.761719 288.210938 226.761719 288.210938 225.140625 C 288.210938 223.523438 290.640625 223.523438 290.640625 225.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.910156 275.058594 C 232.910156 276.679688 230.480469 276.679688 230.480469 275.058594 C 230.480469 273.441406 232.910156 273.441406 232.910156 275.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.40625 147.570312 C 249.40625 149.1875 246.976562 149.1875 246.976562 147.570312 C 246.976562 145.949219 249.40625 145.949219 249.40625 147.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.203125 207.054688 C 261.203125 208.671875 258.773438 208.671875 258.773438 207.054688 C 258.773438 205.433594 261.203125 205.433594 261.203125 207.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.640625 302.21875 C 270.640625 303.835938 268.210938 303.835938 268.210938 302.21875 C 268.210938 300.597656 270.640625 300.597656 270.640625 302.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.601562 193.53125 C 222.601562 195.152344 220.171875 195.152344 220.171875 193.53125 C 220.171875 191.910156 222.601562 191.910156 222.601562 193.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.863281 269.976562 C 275.863281 271.597656 273.433594 271.597656 273.433594 269.976562 C 273.433594 268.355469 275.863281 268.355469 275.863281 269.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.894531 379.667969 C 241.894531 381.289062 239.464844 381.289062 239.464844 379.667969 C 239.464844 378.050781 241.894531 378.050781 241.894531 379.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.792969 368.066406 C 305.792969 369.683594 303.363281 369.683594 303.363281 368.066406 C 303.363281 366.445312 305.792969 366.445312 305.792969 368.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.085938 289.917969 C 226.085938 291.539062 223.65625 291.539062 223.65625 289.917969 C 223.65625 288.296875 226.085938 288.296875 226.085938 289.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.980469 249.1875 C 234.980469 250.804688 232.550781 250.804688 232.550781 249.1875 C 232.550781 247.566406 234.980469 247.566406 234.980469 249.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.925781 260.027344 C 263.925781 261.648438 261.496094 261.648438 261.496094 260.027344 C 261.496094 258.40625 263.925781 258.40625 263.925781 260.027344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.367188 70.910156 L 177.003906 73.746094 L 173.730469 73.746094 Z M 175.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.28125 282.601562 C 318.28125 284.21875 315.851562 284.21875 315.851562 282.601562 C 315.851562 280.980469 318.28125 280.980469 318.28125 282.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.105469 156.046875 C 233.105469 157.664062 230.675781 157.664062 230.675781 156.046875 C 230.675781 154.425781 233.105469 154.425781 233.105469 156.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.523438 384.066406 C 290.523438 385.6875 288.09375 385.6875 288.09375 384.066406 C 288.09375 382.445312 290.523438 382.445312 290.523438 384.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.941406 335.300781 C 319.941406 336.921875 317.511719 336.921875 317.511719 335.300781 C 317.511719 333.679688 319.941406 333.679688 319.941406 335.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.382812 202.222656 C 284.382812 203.839844 281.953125 203.839844 281.953125 202.222656 C 281.953125 200.601562 284.382812 200.601562 284.382812 202.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.765625 173.898438 C 225.765625 175.519531 223.335938 175.519531 223.335938 173.898438 C 223.335938 172.28125 225.765625 172.28125 225.765625 173.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.550781 418.691406 L 219.183594 415.855469 L 215.914062 415.855469 Z M 217.550781 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.769531 247.785156 C 328.769531 249.402344 326.339844 249.402344 326.339844 247.785156 C 326.339844 246.164062 328.769531 246.164062 328.769531 247.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.304688 70.910156 L 245.9375 73.746094 L 242.667969 73.746094 Z M 244.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.328125 297.484375 C 317.328125 299.105469 314.898438 299.105469 314.898438 297.484375 C 314.898438 295.867188 317.328125 295.867188 317.328125 297.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.121094 180.957031 C 200.121094 182.578125 197.691406 182.578125 197.691406 180.957031 C 197.691406 179.339844 200.121094 179.339844 200.121094 180.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.304688 155.957031 C 208.304688 157.578125 205.875 157.578125 205.875 155.957031 C 205.875 154.339844 208.304688 154.339844 208.304688 155.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.09375 179.421875 C 244.09375 181.039062 241.664062 181.039062 241.664062 179.421875 C 241.664062 177.800781 244.09375 177.800781 244.09375 179.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.320312 206.511719 C 261.320312 208.132812 258.890625 208.132812 258.890625 206.511719 C 258.890625 204.890625 261.320312 204.890625 261.320312 206.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.652344 204.722656 C 292.652344 206.34375 290.222656 206.34375 290.222656 204.722656 C 290.222656 203.101562 292.652344 203.101562 292.652344 204.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 130.140625 166.78125 C 130.140625 168.402344 127.710938 168.402344 127.710938 166.78125 C 127.710938 165.164062 130.140625 165.164062 130.140625 166.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.238281 222.1875 C 162.238281 223.808594 159.808594 223.808594 159.808594 222.1875 C 159.808594 220.566406 162.238281 220.566406 162.238281 222.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.597656 277.855469 C 263.597656 279.472656 261.167969 279.472656 261.167969 277.855469 C 261.167969 276.234375 263.597656 276.234375 263.597656 277.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.933594 295.539062 C 210.933594 297.160156 208.503906 297.160156 208.503906 295.539062 C 208.503906 293.921875 210.933594 293.921875 210.933594 295.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 377.285156 331.695312 C 377.285156 333.316406 374.855469 333.316406 374.855469 331.695312 C 374.855469 330.074219 377.285156 330.074219 377.285156 331.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.070312 418.691406 L 287.703125 415.855469 L 284.433594 415.855469 Z M 286.070312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.433594 275.667969 C 265.433594 277.285156 263.003906 277.285156 263.003906 275.667969 C 263.003906 274.046875 265.433594 274.046875 265.433594 275.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.625 219.65625 C 280.625 221.277344 278.195312 221.277344 278.195312 219.65625 C 278.195312 218.039062 280.625 218.039062 280.625 219.65625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.097656 70.910156 L 214.734375 73.746094 L 211.460938 73.746094 Z M 213.097656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.808594 70.910156 L 115.445312 73.746094 L 112.175781 73.746094 Z M 113.808594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.214844 70.910156 L 197.851562 73.746094 L 194.578125 73.746094 Z M 196.214844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.382812 70.910156 L 327.019531 73.746094 L 323.746094 73.746094 Z M 325.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 298.667969 70.910156 L 300.304688 73.746094 L 297.03125 73.746094 Z M 298.667969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.707031 90.464844 C 174.707031 92.085938 172.273438 92.085938 172.273438 90.464844 C 172.273438 88.84375 174.707031 88.84375 174.707031 90.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.496094 70.910156 L 255.132812 73.746094 L 251.859375 73.746094 Z M 253.496094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 112.082031 165.246094 C 112.082031 166.867188 109.652344 166.867188 109.652344 165.246094 C 109.652344 163.625 112.082031 163.625 112.082031 165.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.214844 70.910156 L 198.847656 73.746094 L 195.578125 73.746094 Z M 197.214844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.433594 70.910156 L 183.070312 73.746094 L 179.796875 73.746094 Z M 181.433594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.960938 234.09375 C 281.960938 235.710938 279.53125 235.710938 279.53125 234.09375 C 279.53125 232.472656 281.960938 232.472656 281.960938 234.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.234375 133.875 C 258.234375 135.496094 255.804688 135.496094 255.804688 133.875 C 255.804688 132.257812 258.234375 132.257812 258.234375 133.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.589844 239.9375 C 272.589844 241.554688 270.160156 241.554688 270.160156 239.9375 C 270.160156 238.316406 272.589844 238.316406 272.589844 239.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.558594 237.648438 C 258.558594 239.269531 256.128906 239.269531 256.128906 237.648438 C 256.128906 236.03125 258.558594 236.03125 258.558594 237.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.460938 232.417969 C 303.460938 234.039062 301.03125 234.039062 301.03125 232.417969 C 301.03125 230.796875 303.460938 230.796875 303.460938 232.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.382812 202.957031 C 258.382812 204.574219 255.953125 204.574219 255.953125 202.957031 C 255.953125 201.335938 258.382812 201.335938 258.382812 202.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.9375 230.539062 C 223.9375 232.160156 221.507812 232.160156 221.507812 230.539062 C 221.507812 228.917969 223.9375 228.917969 223.9375 230.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.121094 418.691406 L 261.757812 415.855469 L 258.484375 415.855469 Z M 260.121094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.683594 325.1875 C 296.683594 326.808594 294.25 326.808594 294.25 325.1875 C 294.25 323.566406 296.683594 323.566406 296.683594 325.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.601562 223.882812 C 280.601562 225.5 278.171875 225.5 278.171875 223.882812 C 278.171875 222.261719 280.601562 222.261719 280.601562 223.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.480469 360.535156 C 295.480469 362.15625 293.050781 362.15625 293.050781 360.535156 C 293.050781 358.917969 295.480469 358.917969 295.480469 360.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 211.914062 70.910156 L 213.550781 73.746094 L 210.277344 73.746094 Z M 211.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.933594 194.015625 C 252.933594 195.632812 250.503906 195.632812 250.503906 194.015625 C 250.503906 192.394531 252.933594 192.394531 252.933594 194.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.878906 248.121094 C 273.878906 249.742188 271.449219 249.742188 271.449219 248.121094 C 271.449219 246.503906 273.878906 246.503906 273.878906 248.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.648438 243.488281 C 233.648438 245.109375 231.21875 245.109375 231.21875 243.488281 C 231.21875 241.871094 233.648438 241.871094 233.648438 243.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.414062 287.957031 C 257.414062 289.578125 254.984375 289.578125 254.984375 287.957031 C 254.984375 286.335938 257.414062 286.335938 257.414062 287.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.359375 258.878906 C 261.359375 260.496094 258.929688 260.496094 258.929688 258.878906 C 258.929688 257.257812 261.359375 257.257812 261.359375 258.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 359.542969 296.226562 C 359.542969 297.847656 357.113281 297.847656 357.113281 296.226562 C 357.113281 294.609375 359.542969 294.609375 359.542969 296.226562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.648438 70.910156 L 128.285156 73.746094 L 125.011719 73.746094 Z M 126.648438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.914062 70.910156 L 136.550781 73.746094 L 133.277344 73.746094 Z M 134.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.542969 70.910156 L 144.179688 73.746094 L 140.90625 73.746094 Z M 142.542969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.253906 70.910156 L 161.890625 73.746094 L 158.617188 73.746094 Z M 160.253906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.269531 228.773438 C 261.269531 230.390625 258.839844 230.390625 258.839844 228.773438 C 258.839844 227.152344 261.269531 227.152344 261.269531 228.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.476562 207.628906 C 264.476562 209.25 262.046875 209.25 262.046875 207.628906 C 262.046875 206.007812 264.476562 206.007812 264.476562 207.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.863281 214.824219 C 232.863281 216.445312 230.433594 216.445312 230.433594 214.824219 C 230.433594 213.203125 232.863281 213.203125 232.863281 214.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.988281 276.210938 C 256.988281 277.828125 254.558594 277.828125 254.558594 276.210938 C 254.558594 274.589844 256.988281 274.589844 256.988281 276.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.667969 302.179688 C 267.667969 303.796875 265.238281 303.796875 265.238281 302.179688 C 265.238281 300.558594 267.667969 300.558594 267.667969 302.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 317.550781 70.910156 L 319.1875 73.746094 L 315.914062 73.746094 Z M 317.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.4375 70.910156 L 210.070312 73.746094 L 206.800781 73.746094 Z M 208.4375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.554688 217.066406 C 266.554688 218.6875 264.125 218.6875 264.125 217.066406 C 264.125 215.445312 266.554688 215.445312 266.554688 217.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.324219 70.910156 L 245.960938 73.746094 L 242.6875 73.746094 Z M 244.324219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.066406 223.019531 C 280.066406 224.640625 277.636719 224.640625 277.636719 223.019531 C 277.636719 221.398438 280.066406 221.398438 280.066406 223.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.089844 264.03125 C 271.089844 265.652344 268.660156 265.652344 268.660156 264.03125 C 268.660156 262.410156 271.089844 262.410156 271.089844 264.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.988281 313.527344 C 244.988281 315.148438 242.558594 315.148438 242.558594 313.527344 C 242.558594 311.90625 244.988281 311.90625 244.988281 313.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.265625 271.488281 C 265.265625 273.105469 262.835938 273.105469 262.835938 271.488281 C 262.835938 269.867188 265.265625 269.867188 265.265625 271.488281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.671875 70.910156 L 264.308594 73.746094 L 261.039062 73.746094 Z M 262.671875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 293.492188 70.910156 L 295.128906 73.746094 L 291.855469 73.746094 Z M 293.492188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.628906 220.390625 C 187.628906 222.011719 185.199219 222.011719 185.199219 220.390625 C 185.199219 218.773438 187.628906 218.773438 187.628906 220.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.859375 203.050781 C 269.859375 204.671875 267.429688 204.671875 267.429688 203.050781 C 267.429688 201.433594 269.859375 201.433594 269.859375 203.050781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.777344 70.910156 L 314.414062 73.746094 L 311.140625 73.746094 Z M 312.777344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.820312 70.910156 L 243.457031 73.746094 L 240.183594 73.746094 Z M 241.820312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.824219 232.160156 C 282.824219 233.78125 280.394531 233.78125 280.394531 232.160156 C 280.394531 230.542969 282.824219 230.542969 282.824219 232.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.992188 180.164062 C 263.992188 181.785156 261.5625 181.785156 261.5625 180.164062 C 261.5625 178.542969 263.992188 178.542969 263.992188 180.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.457031 70.910156 L 176.09375 73.746094 L 172.820312 73.746094 Z M 174.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.894531 160.660156 C 198.894531 162.28125 196.464844 162.28125 196.464844 160.660156 C 196.464844 159.039062 198.894531 159.039062 198.894531 160.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.246094 102.257812 C 163.246094 103.878906 160.816406 103.878906 160.816406 102.257812 C 160.816406 100.640625 163.246094 100.640625 163.246094 102.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.796875 98.339844 C 188.796875 99.960938 186.367188 99.960938 186.367188 98.339844 C 186.367188 96.71875 188.796875 96.71875 188.796875 98.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.691406 70.910156 L 140.328125 73.746094 L 137.054688 73.746094 Z M 138.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.082031 146.375 C 271.082031 147.996094 268.652344 147.996094 268.652344 146.375 C 268.652344 144.753906 271.082031 144.753906 271.082031 146.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.398438 70.910156 L 205.035156 73.746094 L 201.761719 73.746094 Z M 203.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 200.105469 150.585938 C 200.105469 152.207031 197.675781 152.207031 197.675781 150.585938 C 197.675781 148.964844 200.105469 148.964844 200.105469 150.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.117188 235.949219 C 245.117188 237.570312 242.6875 237.570312 242.6875 235.949219 C 242.6875 234.332031 245.117188 234.332031 245.117188 235.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.964844 70.910156 L 168.601562 73.746094 L 165.328125 73.746094 Z M 166.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.730469 233.324219 C 272.730469 234.941406 270.300781 234.941406 270.300781 233.324219 C 270.300781 231.703125 272.730469 231.703125 272.730469 233.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.664062 70.910156 L 171.300781 73.746094 L 168.027344 73.746094 Z M 169.664062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.335938 205.042969 C 246.335938 206.664062 243.90625 206.664062 243.90625 205.042969 C 243.90625 203.421875 246.335938 203.421875 246.335938 205.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.277344 205.695312 C 317.277344 207.316406 314.847656 207.316406 314.847656 205.695312 C 314.847656 204.078125 317.277344 204.078125 317.277344 205.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.089844 282.601562 C 294.089844 284.21875 291.660156 284.21875 291.660156 282.601562 C 291.660156 280.980469 294.089844 280.980469 294.089844 282.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.953125 270.972656 C 301.953125 272.589844 299.523438 272.589844 299.523438 270.972656 C 299.523438 269.351562 301.953125 269.351562 301.953125 270.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 196.425781 134.046875 C 196.425781 135.667969 193.996094 135.667969 193.996094 134.046875 C 193.996094 132.425781 196.425781 132.425781 196.425781 134.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.808594 143.679688 C 236.808594 145.296875 234.375 145.296875 234.375 143.679688 C 234.375 142.058594 236.808594 142.058594 236.808594 143.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.867188 261.550781 C 198.867188 263.167969 196.433594 263.167969 196.433594 261.550781 C 196.433594 259.929688 198.867188 259.929688 198.867188 261.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.78125 261 C 220.78125 262.621094 218.351562 262.621094 218.351562 261 C 218.351562 259.378906 220.78125 259.378906 220.78125 261 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.730469 70.910156 L 191.367188 73.746094 L 188.09375 73.746094 Z M 189.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.101562 274.914062 C 309.101562 276.535156 306.671875 276.535156 306.671875 274.914062 C 306.671875 273.292969 309.101562 273.292969 309.101562 274.914062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.335938 70.910156 L 282.972656 73.746094 L 279.703125 73.746094 Z M 281.335938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.554688 234.824219 C 212.554688 236.445312 210.125 236.445312 210.125 234.824219 C 210.125 233.207031 212.554688 233.207031 212.554688 234.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.152344 213.21875 C 205.152344 214.839844 202.722656 214.839844 202.722656 213.21875 C 202.722656 211.601562 205.152344 211.601562 205.152344 213.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.621094 233.652344 C 153.621094 235.269531 151.191406 235.269531 151.191406 233.652344 C 151.191406 232.03125 153.621094 232.03125 153.621094 233.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.460938 418.691406 L 131.097656 415.855469 L 127.824219 415.855469 Z M 129.460938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.011719 251.097656 C 288.011719 252.71875 285.582031 252.71875 285.582031 251.097656 C 285.582031 249.476562 288.011719 249.476562 288.011719 251.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.296875 418.691406 L 319.933594 415.855469 L 316.664062 415.855469 Z M 318.296875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.15625 223.539062 C 298.15625 225.15625 295.726562 225.15625 295.726562 223.539062 C 295.726562 221.917969 298.15625 221.917969 298.15625 223.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.132812 70.910156 L 229.769531 73.746094 L 226.496094 73.746094 Z M 228.132812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.90625 70.910156 L 305.542969 73.746094 L 302.269531 73.746094 Z M 303.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.976562 87.660156 C 244.976562 89.277344 242.546875 89.277344 242.546875 87.660156 C 242.546875 86.039062 244.976562 86.039062 244.976562 87.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.980469 193.167969 C 249.980469 194.789062 247.546875 194.789062 247.546875 193.167969 C 247.546875 191.550781 249.980469 191.550781 249.980469 193.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.476562 301.597656 C 270.476562 303.21875 268.042969 303.21875 268.042969 301.597656 C 268.042969 299.980469 270.476562 299.980469 270.476562 301.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.144531 143.886719 C 163.144531 145.503906 160.710938 145.503906 160.710938 143.886719 C 160.710938 142.265625 163.144531 142.265625 163.144531 143.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.707031 256.121094 C 290.707031 257.742188 288.277344 257.742188 288.277344 256.121094 C 288.277344 254.5 290.707031 254.5 290.707031 256.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.375 70.910156 L 233.011719 73.746094 L 229.738281 73.746094 Z M 231.375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.660156 80.375 C 198.660156 81.996094 196.230469 81.996094 196.230469 80.375 C 196.230469 78.757812 198.660156 78.757812 198.660156 80.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.644531 163.726562 C 327.644531 165.34375 325.214844 165.34375 325.214844 163.726562 C 325.214844 162.105469 327.644531 162.105469 327.644531 163.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 370.09375 144.921875 C 370.09375 146.542969 367.664062 146.542969 367.664062 144.921875 C 367.664062 143.300781 370.09375 143.300781 370.09375 144.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.78125 337.621094 C 263.78125 339.242188 261.351562 339.242188 261.351562 337.621094 C 261.351562 336.003906 263.78125 336.003906 263.78125 337.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.308594 177.878906 C 199.308594 179.5 196.878906 179.5 196.878906 177.878906 C 196.878906 176.257812 199.308594 176.257812 199.308594 177.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.988281 70.910156 L 170.625 73.746094 L 167.351562 73.746094 Z M 168.988281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.429688 70.910156 L 180.066406 73.746094 L 176.792969 73.746094 Z M 178.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.246094 296.941406 C 203.246094 298.558594 200.816406 298.558594 200.816406 296.941406 C 200.816406 295.320312 203.246094 295.320312 203.246094 296.941406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.714844 70.910156 L 206.351562 73.746094 L 203.078125 73.746094 Z M 204.714844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.082031 70.910156 L 132.71875 73.746094 L 129.445312 73.746094 Z M 131.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.980469 222.390625 C 219.980469 224.007812 217.550781 224.007812 217.550781 222.390625 C 217.550781 220.769531 219.980469 220.769531 219.980469 222.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.757812 367.03125 C 283.757812 368.652344 281.324219 368.652344 281.324219 367.03125 C 281.324219 365.410156 283.757812 365.410156 283.757812 367.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.3125 266.941406 C 285.3125 268.5625 282.882812 268.5625 282.882812 266.941406 C 282.882812 265.324219 285.3125 265.324219 285.3125 266.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.796875 315.625 C 136.796875 317.246094 134.367188 317.246094 134.367188 315.625 C 134.367188 314.007812 136.796875 314.007812 136.796875 315.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.675781 148.621094 C 260.675781 150.242188 258.246094 150.242188 258.246094 148.621094 C 258.246094 147 260.675781 147 260.675781 148.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.628906 288.570312 C 292.628906 290.191406 290.199219 290.191406 290.199219 288.570312 C 290.199219 286.949219 292.628906 286.949219 292.628906 288.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.789062 244.054688 C 240.789062 245.675781 238.359375 245.675781 238.359375 244.054688 C 238.359375 242.4375 240.789062 242.4375 240.789062 244.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.320312 284.0625 C 285.320312 285.683594 282.886719 285.683594 282.886719 284.0625 C 282.886719 282.441406 285.320312 282.441406 285.320312 284.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.113281 308.898438 C 313.113281 310.519531 310.683594 310.519531 310.683594 308.898438 C 310.683594 307.277344 313.113281 307.277344 313.113281 308.898438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.574219 418.691406 L 243.210938 415.855469 L 239.9375 415.855469 Z M 241.574219 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.753906 70.910156 L 138.390625 73.746094 L 135.121094 73.746094 Z M 136.753906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.875 70.910156 L 207.511719 73.746094 L 204.238281 73.746094 Z M 205.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.566406 148.105469 C 244.566406 149.726562 242.136719 149.726562 242.136719 148.105469 C 242.136719 146.488281 244.566406 146.488281 244.566406 148.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.359375 231.328125 C 254.359375 232.949219 251.929688 232.949219 251.929688 231.328125 C 251.929688 229.707031 254.359375 229.707031 254.359375 231.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.273438 278.726562 C 282.273438 280.347656 279.84375 280.347656 279.84375 278.726562 C 279.84375 277.105469 282.273438 277.105469 282.273438 278.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.964844 287.273438 C 269.964844 288.894531 267.535156 288.894531 267.535156 287.273438 C 267.535156 285.652344 269.964844 285.652344 269.964844 287.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.242188 270.027344 C 261.242188 271.644531 258.8125 271.644531 258.8125 270.027344 C 258.8125 268.40625 261.242188 268.40625 261.242188 270.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.175781 158.289062 C 275.175781 159.910156 272.746094 159.910156 272.746094 158.289062 C 272.746094 156.671875 275.175781 156.671875 275.175781 158.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.746094 246.773438 C 288.746094 248.390625 286.316406 248.390625 286.316406 246.773438 C 286.316406 245.152344 288.746094 245.152344 288.746094 246.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.300781 174.652344 C 214.300781 176.273438 211.871094 176.273438 211.871094 174.652344 C 211.871094 173.03125 214.300781 173.03125 214.300781 174.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.691406 234.46875 C 118.691406 236.089844 116.261719 236.089844 116.261719 234.46875 C 116.261719 232.851562 118.691406 232.851562 118.691406 234.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.328125 210.703125 C 226.328125 212.324219 223.894531 212.324219 223.894531 210.703125 C 223.894531 209.085938 226.328125 209.085938 226.328125 210.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.980469 219.339844 C 285.980469 220.960938 283.550781 220.960938 283.550781 219.339844 C 283.550781 217.722656 285.980469 217.722656 285.980469 219.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.808594 70.910156 L 211.445312 73.746094 L 208.171875 73.746094 Z M 209.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.128906 228.035156 C 273.128906 229.652344 270.699219 229.652344 270.699219 228.035156 C 270.699219 226.414062 273.128906 226.414062 273.128906 228.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.488281 345.605469 C 164.488281 347.226562 162.058594 347.226562 162.058594 345.605469 C 162.058594 343.984375 164.488281 343.984375 164.488281 345.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.535156 273.519531 C 245.535156 275.140625 243.105469 275.140625 243.105469 273.519531 C 243.105469 271.898438 245.535156 271.898438 245.535156 273.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.167969 205.0625 C 122.167969 206.683594 119.738281 206.683594 119.738281 205.0625 C 119.738281 203.441406 122.167969 203.441406 122.167969 205.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.972656 93.175781 C 243.972656 94.792969 241.542969 94.792969 241.542969 93.175781 C 241.542969 91.554688 243.972656 91.554688 243.972656 93.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.917969 327.117188 C 276.917969 328.738281 274.488281 328.738281 274.488281 327.117188 C 274.488281 325.496094 276.917969 325.496094 276.917969 327.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.796875 176.007812 C 180.796875 177.628906 178.367188 177.628906 178.367188 176.007812 C 178.367188 174.386719 180.796875 174.386719 180.796875 176.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.695312 204.460938 C 297.695312 206.078125 295.265625 206.078125 295.265625 204.460938 C 295.265625 202.839844 297.695312 202.839844 297.695312 204.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.804688 153.449219 C 270.804688 155.070312 268.375 155.070312 268.375 153.449219 C 268.375 151.832031 270.804688 151.832031 270.804688 153.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.265625 270.246094 C 313.265625 271.867188 310.835938 271.867188 310.835938 270.246094 C 310.835938 268.625 313.265625 268.625 313.265625 270.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.0625 98.035156 C 226.0625 99.65625 223.632812 99.65625 223.632812 98.035156 C 223.632812 96.417969 226.0625 96.417969 226.0625 98.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.503906 196.148438 C 271.503906 197.769531 269.074219 197.769531 269.074219 196.148438 C 269.074219 194.527344 271.503906 194.527344 271.503906 196.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 113.433594 165.335938 C 113.433594 166.953125 111.003906 166.953125 111.003906 165.335938 C 111.003906 163.714844 113.433594 163.714844 113.433594 165.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.664062 227.511719 C 162.664062 229.132812 160.234375 229.132812 160.234375 227.511719 C 160.234375 225.890625 162.664062 225.890625 162.664062 227.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.105469 312.667969 C 291.105469 314.289062 288.675781 314.289062 288.675781 312.667969 C 288.675781 311.050781 291.105469 311.050781 291.105469 312.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.277344 382.167969 C 283.277344 383.789062 280.847656 383.789062 280.847656 382.167969 C 280.847656 380.546875 283.277344 380.546875 283.277344 382.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.226562 294.394531 C 163.226562 296.015625 160.796875 296.015625 160.796875 294.394531 C 160.796875 292.777344 163.226562 292.777344 163.226562 294.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.757812 336.324219 C 201.757812 337.945312 199.324219 337.945312 199.324219 336.324219 C 199.324219 334.707031 201.757812 334.707031 201.757812 336.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.226562 418.691406 L 273.863281 415.855469 L 270.589844 415.855469 Z M 272.226562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.203125 418.691406 L 270.839844 415.855469 L 267.566406 415.855469 Z M 269.203125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.457031 269.195312 C 278.457031 270.816406 276.027344 270.816406 276.027344 269.195312 C 276.027344 267.574219 278.457031 267.574219 278.457031 269.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.734375 262.175781 C 259.734375 263.796875 257.304688 263.796875 257.304688 262.175781 C 257.304688 260.558594 259.734375 260.558594 259.734375 262.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.179688 160.355469 C 281.179688 161.976562 278.75 161.976562 278.75 160.355469 C 278.75 158.734375 281.179688 158.734375 281.179688 160.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.074219 146.402344 C 216.074219 148.023438 213.644531 148.023438 213.644531 146.402344 C 213.644531 144.785156 216.074219 144.785156 216.074219 146.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.761719 298.601562 C 236.761719 300.21875 234.332031 300.21875 234.332031 298.601562 C 234.332031 296.980469 236.761719 296.980469 236.761719 298.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.898438 259.804688 C 274.898438 261.421875 272.46875 261.421875 272.46875 259.804688 C 272.46875 258.183594 274.898438 258.183594 274.898438 259.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.613281 70.910156 L 218.246094 73.746094 L 214.976562 73.746094 Z M 216.613281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.582031 135.351562 C 184.582031 136.972656 182.152344 136.972656 182.152344 135.351562 C 182.152344 133.730469 184.582031 133.730469 184.582031 135.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.574219 202.480469 C 211.574219 204.097656 209.144531 204.097656 209.144531 202.480469 C 209.144531 200.859375 211.574219 200.859375 211.574219 202.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.3125 254.457031 C 326.3125 256.078125 323.882812 256.078125 323.882812 254.457031 C 323.882812 252.835938 326.3125 252.835938 326.3125 254.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.5625 410.59375 C 125.5625 412.214844 123.132812 412.214844 123.132812 410.59375 C 123.132812 408.972656 125.5625 408.972656 125.5625 410.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.644531 418.691406 L 109.277344 415.855469 L 106.007812 415.855469 Z M 107.644531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.671875 311.839844 C 264.671875 313.457031 262.242188 313.457031 262.242188 311.839844 C 262.242188 310.21875 264.671875 310.21875 264.671875 311.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.660156 286.132812 C 258.660156 287.753906 256.226562 287.753906 256.226562 286.132812 C 256.226562 284.515625 258.660156 284.515625 258.660156 286.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.03125 259.265625 C 261.03125 260.886719 258.601562 260.886719 258.601562 259.265625 C 258.601562 257.644531 261.03125 257.644531 261.03125 259.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.875 297.40625 C 259.875 299.023438 257.441406 299.023438 257.441406 297.40625 C 257.441406 295.785156 259.875 295.785156 259.875 297.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.570312 292.25 C 270.570312 293.871094 268.140625 293.871094 268.140625 292.25 C 268.140625 290.628906 270.570312 290.628906 270.570312 292.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.585938 358.65625 C 157.585938 360.277344 155.15625 360.277344 155.15625 358.65625 C 155.15625 357.039062 157.585938 357.039062 157.585938 358.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.929688 276.378906 C 271.929688 278 269.5 278 269.5 276.378906 C 269.5 274.757812 271.929688 274.757812 271.929688 276.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.957031 283.035156 C 273.957031 284.65625 271.527344 284.65625 271.527344 283.035156 C 271.527344 281.414062 273.957031 281.414062 273.957031 283.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.734375 322.195312 C 246.734375 323.8125 244.304688 323.8125 244.304688 322.195312 C 244.304688 320.574219 246.734375 320.574219 246.734375 322.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.21875 310.839844 C 288.21875 312.460938 285.789062 312.460938 285.789062 310.839844 C 285.789062 309.222656 288.21875 309.222656 288.21875 310.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 270.460938 70.910156 L 272.097656 73.746094 L 268.824219 73.746094 Z M 270.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.226562 296.226562 C 206.226562 297.84375 203.796875 297.84375 203.796875 296.226562 C 203.796875 294.605469 206.226562 294.605469 206.226562 296.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.230469 311.445312 C 250.230469 313.0625 247.800781 313.0625 247.800781 311.445312 C 247.800781 309.824219 250.230469 309.824219 250.230469 311.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.820312 253.125 C 230.820312 254.746094 228.390625 254.746094 228.390625 253.125 C 228.390625 251.507812 230.820312 251.507812 230.820312 253.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.972656 270.644531 C 243.972656 272.265625 241.542969 272.265625 241.542969 270.644531 C 241.542969 269.023438 243.972656 269.023438 243.972656 270.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.96875 299.070312 C 226.96875 300.6875 224.539062 300.6875 224.539062 299.070312 C 224.539062 297.449219 226.96875 297.449219 226.96875 299.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.019531 248.636719 C 222.019531 250.257812 219.589844 250.257812 219.589844 248.636719 C 219.589844 247.019531 222.019531 247.019531 222.019531 248.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.269531 263.007812 C 258.269531 264.628906 255.839844 264.628906 255.839844 263.007812 C 255.839844 261.390625 258.269531 261.390625 258.269531 263.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.777344 242.03125 C 276.777344 243.652344 274.347656 243.652344 274.347656 242.03125 C 274.347656 240.410156 276.777344 240.410156 276.777344 242.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 338.78125 229.515625 C 338.78125 231.136719 336.351562 231.136719 336.351562 229.515625 C 336.351562 227.898438 338.78125 227.898438 338.78125 229.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.566406 174.867188 C 226.566406 176.488281 224.136719 176.488281 224.136719 174.867188 C 224.136719 173.246094 226.566406 173.246094 226.566406 174.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.449219 245.269531 C 226.449219 246.890625 224.019531 246.890625 224.019531 245.269531 C 224.019531 243.652344 226.449219 243.652344 226.449219 245.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.753906 340.734375 C 287.753906 342.355469 285.320312 342.355469 285.320312 340.734375 C 285.320312 339.113281 287.753906 339.113281 287.753906 340.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.871094 94.714844 C 225.871094 96.335938 223.441406 96.335938 223.441406 94.714844 C 223.441406 93.09375 225.871094 93.09375 225.871094 94.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.574219 70.910156 L 253.210938 73.746094 L 249.9375 73.746094 Z M 251.574219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.410156 70.910156 L 202.046875 73.746094 L 198.773438 73.746094 Z M 200.410156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.753906 418.691406 L 130.390625 415.855469 L 127.117188 415.855469 Z M 128.753906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.679688 229.03125 C 193.679688 230.652344 191.25 230.652344 191.25 229.03125 C 191.25 227.410156 193.679688 227.410156 193.679688 229.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.410156 211.253906 C 240.410156 212.875 237.980469 212.875 237.980469 211.253906 C 237.980469 209.632812 240.410156 209.632812 240.410156 211.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.085938 219.105469 C 273.085938 220.726562 270.65625 220.726562 270.65625 219.105469 C 270.65625 217.488281 273.085938 217.488281 273.085938 219.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.019531 169.148438 C 232.019531 170.765625 229.589844 170.765625 229.589844 169.148438 C 229.589844 167.527344 232.019531 167.527344 232.019531 169.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.085938 224.171875 C 273.085938 225.789062 270.65625 225.789062 270.65625 224.171875 C 270.65625 222.550781 273.085938 222.550781 273.085938 224.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.488281 222.054688 C 288.488281 223.675781 286.058594 223.675781 286.058594 222.054688 C 286.058594 220.433594 288.488281 220.433594 288.488281 222.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.679688 306.367188 C 271.679688 307.984375 269.25 307.984375 269.25 306.367188 C 269.25 304.746094 271.679688 304.746094 271.679688 306.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.925781 244.554688 C 266.925781 246.175781 264.496094 246.175781 264.496094 244.554688 C 264.496094 242.933594 266.925781 242.933594 266.925781 244.554688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.441406 236.8125 C 316.441406 238.433594 314.011719 238.433594 314.011719 236.8125 C 314.011719 235.195312 316.441406 235.195312 316.441406 236.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.269531 340.964844 C 295.269531 342.585938 292.839844 342.585938 292.839844 340.964844 C 292.839844 339.347656 295.269531 339.347656 295.269531 340.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.496094 282.285156 C 264.496094 283.90625 262.066406 283.90625 262.066406 282.285156 C 262.066406 280.664062 264.496094 280.664062 264.496094 282.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.726562 262.082031 C 262.726562 263.703125 260.296875 263.703125 260.296875 262.082031 C 260.296875 260.460938 262.726562 260.460938 262.726562 262.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.441406 249.582031 C 227.441406 251.203125 225.011719 251.203125 225.011719 249.582031 C 225.011719 247.960938 227.441406 247.960938 227.441406 249.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.390625 344.289062 C 195.390625 345.910156 192.960938 345.910156 192.960938 344.289062 C 192.960938 342.671875 195.390625 342.671875 195.390625 344.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.714844 361.144531 C 296.714844 362.765625 294.28125 362.765625 294.28125 361.144531 C 294.28125 359.523438 296.714844 359.523438 296.714844 361.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.234375 252.988281 C 224.234375 254.609375 221.804688 254.609375 221.804688 252.988281 C 221.804688 251.367188 224.234375 251.367188 224.234375 252.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.046875 231.589844 C 273.046875 233.207031 270.617188 233.207031 270.617188 231.589844 C 270.617188 229.96875 273.046875 229.96875 273.046875 231.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.539062 224.234375 C 307.539062 225.855469 305.109375 225.855469 305.109375 224.234375 C 305.109375 222.617188 307.539062 222.617188 307.539062 224.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.390625 282.671875 C 207.390625 284.292969 204.960938 284.292969 204.960938 282.671875 C 204.960938 281.050781 207.390625 281.050781 207.390625 282.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.664062 259.585938 C 208.664062 261.203125 206.234375 261.203125 206.234375 259.585938 C 206.234375 257.964844 208.664062 257.964844 208.664062 259.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.757812 264.226562 C 191.757812 265.847656 189.328125 265.847656 189.328125 264.226562 C 189.328125 262.605469 191.757812 262.605469 191.757812 264.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.691406 259.496094 C 290.691406 261.117188 288.261719 261.117188 288.261719 259.496094 C 288.261719 257.875 290.691406 257.875 290.691406 259.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.695312 288.105469 C 267.695312 289.726562 265.265625 289.726562 265.265625 288.105469 C 265.265625 286.484375 267.695312 286.484375 267.695312 288.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.601562 282.234375 C 270.601562 283.851562 268.171875 283.851562 268.171875 282.234375 C 268.171875 280.613281 270.601562 280.613281 270.601562 282.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.914062 279.640625 C 290.914062 281.261719 288.484375 281.261719 288.484375 279.640625 C 288.484375 278.019531 290.914062 278.019531 290.914062 279.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.140625 241.757812 C 281.140625 243.378906 278.710938 243.378906 278.710938 241.757812 C 278.710938 240.136719 281.140625 240.136719 281.140625 241.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.742188 240.277344 C 156.742188 241.894531 154.3125 241.894531 154.3125 240.277344 C 154.3125 238.65625 156.742188 238.65625 156.742188 240.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.566406 338.734375 C 284.566406 340.355469 282.136719 340.355469 282.136719 338.734375 C 282.136719 337.113281 284.566406 337.113281 284.566406 338.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.867188 225.316406 C 212.867188 226.933594 210.433594 226.933594 210.433594 225.316406 C 210.433594 223.695312 212.867188 223.695312 212.867188 225.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.171875 204.484375 C 244.171875 206.105469 241.742188 206.105469 241.742188 204.484375 C 241.742188 202.863281 244.171875 202.863281 244.171875 204.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.472656 226.449219 C 260.472656 228.070312 258.042969 228.070312 258.042969 226.449219 C 258.042969 224.828125 260.472656 224.828125 260.472656 226.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.671875 354.480469 C 179.671875 356.097656 177.242188 356.097656 177.242188 354.480469 C 177.242188 352.859375 179.671875 352.859375 179.671875 354.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 142.605469 209.339844 C 142.605469 210.957031 140.175781 210.957031 140.175781 209.339844 C 140.175781 207.71875 142.605469 207.71875 142.605469 209.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.699219 225.617188 C 292.699219 227.238281 290.269531 227.238281 290.269531 225.617188 C 290.269531 223.996094 292.699219 223.996094 292.699219 225.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.375 196.847656 C 155.375 198.464844 152.945312 198.464844 152.945312 196.847656 C 152.945312 195.226562 155.375 195.226562 155.375 196.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.503906 247.785156 C 129.503906 249.40625 127.074219 249.40625 127.074219 247.785156 C 127.074219 246.164062 129.503906 246.164062 129.503906 247.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.867188 327.601562 C 271.867188 329.222656 269.4375 329.222656 269.4375 327.601562 C 269.4375 325.980469 271.867188 325.980469 271.867188 327.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.503906 288.621094 C 320.503906 290.242188 318.074219 290.242188 318.074219 288.621094 C 318.074219 287 320.503906 287 320.503906 288.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.976562 218.046875 C 131.976562 219.664062 129.546875 219.664062 129.546875 218.046875 C 129.546875 216.425781 131.976562 216.425781 131.976562 218.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.132812 267.542969 C 249.132812 269.164062 246.703125 269.164062 246.703125 267.542969 C 246.703125 265.925781 249.132812 265.925781 249.132812 267.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.507812 70.910156 L 173.144531 73.746094 L 169.871094 73.746094 Z M 171.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.839844 197.496094 C 271.839844 199.117188 269.410156 199.117188 269.410156 197.496094 C 269.410156 195.878906 271.839844 195.878906 271.839844 197.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.1875 222.652344 C 232.1875 224.273438 229.757812 224.273438 229.757812 222.652344 C 229.757812 221.03125 232.1875 221.03125 232.1875 222.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.582031 163.171875 C 149.582031 164.789062 147.152344 164.789062 147.152344 163.171875 C 147.152344 161.550781 149.582031 161.550781 149.582031 163.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.019531 202.035156 C 274.019531 203.652344 271.589844 203.652344 271.589844 202.035156 C 271.589844 200.414062 274.019531 200.414062 274.019531 202.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.359375 235.523438 C 295.359375 237.144531 292.929688 237.144531 292.929688 235.523438 C 292.929688 233.902344 295.359375 233.902344 295.359375 235.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 277.261719 70.910156 L 278.898438 73.746094 L 275.628906 73.746094 Z M 277.261719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.941406 396.984375 C 315.941406 398.605469 313.511719 398.605469 313.511719 396.984375 C 313.511719 395.363281 315.941406 395.363281 315.941406 396.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.851562 203.894531 C 300.851562 205.515625 298.421875 205.515625 298.421875 203.894531 C 298.421875 202.273438 300.851562 202.273438 300.851562 203.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.601562 236.222656 C 327.601562 237.84375 325.171875 237.84375 325.171875 236.222656 C 325.171875 234.605469 327.601562 234.605469 327.601562 236.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.527344 186.785156 C 282.527344 188.40625 280.09375 188.40625 280.09375 186.785156 C 280.09375 185.164062 282.527344 185.164062 282.527344 186.785156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.941406 70.910156 L 246.578125 73.746094 L 243.304688 73.746094 Z M 244.941406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.789062 204.40625 C 287.789062 206.027344 285.359375 206.027344 285.359375 204.40625 C 285.359375 202.785156 287.789062 202.785156 287.789062 204.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.222656 70.910156 L 123.859375 73.746094 L 120.585938 73.746094 Z M 122.222656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.101562 216.808594 C 225.101562 218.429688 222.671875 218.429688 222.671875 216.808594 C 222.671875 215.191406 225.101562 215.191406 225.101562 216.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.757812 227.140625 C 255.757812 228.757812 253.328125 228.757812 253.328125 227.140625 C 253.328125 225.519531 255.757812 225.519531 255.757812 227.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.300781 70.910156 L 118.9375 73.746094 L 115.664062 73.746094 Z M 117.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.632812 307.628906 C 235.632812 309.25 233.203125 309.25 233.203125 307.628906 C 233.203125 306.007812 235.632812 306.007812 235.632812 307.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.113281 310.175781 C 203.113281 311.796875 200.683594 311.796875 200.683594 310.175781 C 200.683594 308.554688 203.113281 308.554688 203.113281 310.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.988281 328.632812 C 204.988281 330.25 202.558594 330.25 202.558594 328.632812 C 202.558594 327.011719 204.988281 327.011719 204.988281 328.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.886719 181.878906 C 136.886719 183.5 134.453125 183.5 134.453125 181.878906 C 134.453125 180.261719 136.886719 180.261719 136.886719 181.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.78125 242.917969 C 287.78125 244.535156 285.351562 244.535156 285.351562 242.917969 C 285.351562 241.296875 287.78125 241.296875 287.78125 242.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.082031 234.414062 C 166.082031 236.035156 163.652344 236.035156 163.652344 234.414062 C 163.652344 232.792969 166.082031 232.792969 166.082031 234.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 203.078125 131.59375 C 203.078125 133.214844 200.648438 133.214844 200.648438 131.59375 C 200.648438 129.972656 203.078125 129.972656 203.078125 131.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.203125 176.15625 C 235.203125 177.777344 232.773438 177.777344 232.773438 176.15625 C 232.773438 174.535156 235.203125 174.535156 235.203125 176.15625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.074219 70.910156 L 273.710938 73.746094 L 270.4375 73.746094 Z M 272.074219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 331.332031 302.359375 C 331.332031 303.980469 328.902344 303.980469 328.902344 302.359375 C 328.902344 300.738281 331.332031 300.738281 331.332031 302.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.882812 252.660156 C 258.882812 254.28125 256.453125 254.28125 256.453125 252.660156 C 256.453125 251.039062 258.882812 251.039062 258.882812 252.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.214844 368.164062 C 189.214844 369.78125 186.785156 369.78125 186.785156 368.164062 C 186.785156 366.542969 189.214844 366.542969 189.214844 368.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.457031 292.960938 C 184.457031 294.578125 182.027344 294.578125 182.027344 292.960938 C 182.027344 291.339844 184.457031 291.339844 184.457031 292.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.027344 306.398438 C 216.027344 308.019531 213.597656 308.019531 213.597656 306.398438 C 213.597656 304.777344 216.027344 304.777344 216.027344 306.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.328125 154.441406 C 224.328125 156.0625 221.898438 156.0625 221.898438 154.441406 C 221.898438 152.820312 224.328125 152.820312 224.328125 154.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.621094 140.351562 C 151.621094 141.96875 149.191406 141.96875 149.191406 140.351562 C 149.191406 138.730469 151.621094 138.730469 151.621094 140.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.378906 70.910156 L 234.015625 73.746094 L 230.742188 73.746094 Z M 232.378906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.28125 272.773438 C 160.28125 274.394531 157.851562 274.394531 157.851562 272.773438 C 157.851562 271.15625 160.28125 271.15625 160.28125 272.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.125 228.300781 C 211.125 229.921875 208.695312 229.921875 208.695312 228.300781 C 208.695312 226.679688 211.125 226.679688 211.125 228.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.105469 237.472656 C 284.105469 239.09375 281.675781 239.09375 281.675781 237.472656 C 281.675781 235.855469 284.105469 235.855469 284.105469 237.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.902344 70.910156 L 166.539062 73.746094 L 163.265625 73.746094 Z M 164.902344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.234375 70.910156 L 152.871094 73.746094 L 149.601562 73.746094 Z M 151.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.109375 70.910156 L 193.746094 73.746094 L 190.472656 73.746094 Z M 192.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.117188 70.910156 L 125.753906 73.746094 L 122.480469 73.746094 Z M 124.117188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.109375 70.910156 L 280.742188 73.746094 L 277.472656 73.746094 Z M 279.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.453125 321.078125 C 314.453125 322.699219 312.023438 322.699219 312.023438 321.078125 C 312.023438 319.460938 314.453125 319.460938 314.453125 321.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.289062 231.792969 C 274.289062 233.414062 271.855469 233.414062 271.855469 231.792969 C 271.855469 230.171875 274.289062 230.171875 274.289062 231.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.871094 341.335938 C 256.871094 342.957031 254.441406 342.957031 254.441406 341.335938 C 254.441406 339.714844 256.871094 339.714844 256.871094 341.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 173.03125 418.691406 L 174.667969 415.855469 L 171.394531 415.855469 Z M 173.03125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.601562 280.777344 C 326.601562 282.398438 324.171875 282.398438 324.171875 280.777344 C 324.171875 279.160156 326.601562 279.160156 326.601562 280.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.699219 134.332031 C 133.699219 135.953125 131.269531 135.953125 131.269531 134.332031 C 131.269531 132.714844 133.699219 132.714844 133.699219 134.332031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 279.003906 70.910156 L 280.640625 73.746094 L 277.367188 73.746094 Z M 279.003906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.589844 217.410156 C 264.589844 219.03125 262.160156 219.03125 262.160156 217.410156 C 262.160156 215.789062 264.589844 215.789062 264.589844 217.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.617188 224.214844 C 293.617188 225.832031 291.1875 225.832031 291.1875 224.214844 C 291.1875 222.59375 293.617188 222.59375 293.617188 224.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.605469 191.886719 C 271.605469 193.503906 269.175781 193.503906 269.175781 191.886719 C 269.175781 190.265625 271.605469 190.265625 271.605469 191.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.855469 70.910156 L 253.492188 73.746094 L 250.21875 73.746094 Z M 251.855469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.78125 70.910156 L 232.417969 73.746094 L 229.144531 73.746094 Z M 230.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.613281 238.140625 C 319.613281 239.761719 317.183594 239.761719 317.183594 238.140625 C 317.183594 236.523438 319.613281 236.523438 319.613281 238.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.304688 70.910156 L 233.9375 73.746094 L 230.667969 73.746094 Z M 232.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.902344 70.910156 L 291.539062 73.746094 L 288.265625 73.746094 Z M 289.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.515625 281.488281 C 229.515625 283.109375 227.082031 283.109375 227.082031 281.488281 C 227.082031 279.871094 229.515625 279.871094 229.515625 281.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.058594 214.433594 C 189.058594 216.050781 186.628906 216.050781 186.628906 214.433594 C 186.628906 212.8125 189.058594 212.8125 189.058594 214.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.222656 272.257812 C 286.222656 273.878906 283.792969 273.878906 283.792969 272.257812 C 283.792969 270.640625 286.222656 270.640625 286.222656 272.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.816406 367.945312 C 163.816406 369.566406 161.386719 369.566406 161.386719 367.945312 C 161.386719 366.328125 163.816406 366.328125 163.816406 367.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.464844 302.988281 C 260.464844 304.609375 258.035156 304.609375 258.035156 302.988281 C 258.035156 301.367188 260.464844 301.367188 260.464844 302.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.644531 237.371094 C 258.644531 238.992188 256.214844 238.992188 256.214844 237.371094 C 256.214844 235.75 258.644531 235.75 258.644531 237.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.226562 337.097656 C 176.226562 338.71875 173.796875 338.71875 173.796875 337.097656 C 173.796875 335.480469 176.226562 335.480469 176.226562 337.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.71875 418.691406 L 207.355469 415.855469 L 204.082031 415.855469 Z M 205.71875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.417969 189.945312 C 308.417969 191.566406 305.988281 191.566406 305.988281 189.945312 C 305.988281 188.324219 308.417969 188.324219 308.417969 189.945312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.6875 70.910156 L 188.324219 73.746094 L 185.050781 73.746094 Z M 186.6875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.085938 195.734375 C 212.085938 197.355469 209.652344 197.355469 209.652344 195.734375 C 209.652344 194.113281 212.085938 194.113281 212.085938 195.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.5 294.304688 C 311.5 295.925781 309.070312 295.925781 309.070312 294.304688 C 309.070312 292.683594 311.5 292.683594 311.5 294.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.875 350.292969 C 266.875 351.914062 264.445312 351.914062 264.445312 350.292969 C 264.445312 348.675781 266.875 348.675781 266.875 350.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.585938 240.371094 C 119.585938 241.992188 117.15625 241.992188 117.15625 240.371094 C 117.15625 238.753906 119.585938 238.753906 119.585938 240.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.152344 303.621094 C 338.152344 305.242188 335.722656 305.242188 335.722656 303.621094 C 335.722656 302 338.152344 302 338.152344 303.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.230469 311.546875 C 286.230469 313.164062 283.800781 313.164062 283.800781 311.546875 C 283.800781 309.925781 286.230469 309.925781 286.230469 311.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.230469 383.984375 C 256.230469 385.605469 253.800781 385.605469 253.800781 383.984375 C 253.800781 382.363281 256.230469 382.363281 256.230469 383.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.234375 254.152344 C 249.234375 255.769531 246.804688 255.769531 246.804688 254.152344 C 246.804688 252.53125 249.234375 252.53125 249.234375 254.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.023438 206.804688 C 224.023438 208.425781 221.59375 208.425781 221.59375 206.804688 C 221.59375 205.183594 224.023438 205.183594 224.023438 206.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.105469 184.835938 C 221.105469 186.457031 218.675781 186.457031 218.675781 184.835938 C 218.675781 183.21875 221.105469 183.21875 221.105469 184.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.113281 258.253906 C 259.113281 259.875 256.683594 259.875 256.683594 258.253906 C 256.683594 256.636719 259.113281 256.636719 259.113281 258.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.558594 214.125 C 264.558594 215.746094 262.125 215.746094 262.125 214.125 C 262.125 212.507812 264.558594 212.507812 264.558594 214.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.230469 256.070312 C 219.230469 257.691406 216.800781 257.691406 216.800781 256.070312 C 216.800781 254.449219 219.230469 254.449219 219.230469 256.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 382.207031 351.132812 C 382.207031 352.753906 379.773438 352.753906 379.773438 351.132812 C 379.773438 349.511719 382.207031 349.511719 382.207031 351.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.898438 418.691406 L 276.535156 415.855469 L 273.261719 415.855469 Z M 274.898438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.191406 347.683594 C 270.191406 349.300781 267.761719 349.300781 267.761719 347.683594 C 267.761719 346.0625 270.191406 346.0625 270.191406 347.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.488281 226.609375 C 260.488281 228.230469 258.058594 228.230469 258.058594 226.609375 C 258.058594 224.988281 260.488281 224.988281 260.488281 226.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.632812 252.890625 C 296.632812 254.511719 294.203125 254.511719 294.203125 252.890625 C 294.203125 251.269531 296.632812 251.269531 296.632812 252.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.582031 276.011719 C 281.582031 277.632812 279.152344 277.632812 279.152344 276.011719 C 279.152344 274.390625 281.582031 274.390625 281.582031 276.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.851562 263.546875 C 279.851562 265.164062 277.421875 265.164062 277.421875 263.546875 C 277.421875 261.925781 279.851562 261.925781 279.851562 263.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.269531 139.765625 C 227.269531 141.386719 224.835938 141.386719 224.835938 139.765625 C 224.835938 138.144531 227.269531 138.144531 227.269531 139.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.839844 289.300781 C 271.839844 290.921875 269.410156 290.921875 269.410156 289.300781 C 269.410156 287.679688 271.839844 287.679688 271.839844 289.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 226.90625 70.910156 L 228.542969 73.746094 L 225.269531 73.746094 Z M 226.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.773438 260.355469 C 228.773438 261.972656 226.34375 261.972656 226.34375 260.355469 C 226.34375 258.734375 228.773438 258.734375 228.773438 260.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.789062 256.84375 C 237.789062 258.464844 235.359375 258.464844 235.359375 256.84375 C 235.359375 255.222656 237.789062 255.222656 237.789062 256.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.738281 261.628906 C 279.738281 263.25 277.308594 263.25 277.308594 261.628906 C 277.308594 260.007812 279.738281 260.007812 279.738281 261.628906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 303.34375 70.910156 L 304.980469 73.746094 L 301.710938 73.746094 Z M 303.34375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.792969 70.910156 L 133.429688 73.746094 L 130.15625 73.746094 Z M 131.792969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.207031 147.335938 C 275.207031 148.957031 272.777344 148.957031 272.777344 147.335938 C 272.777344 145.714844 275.207031 145.714844 275.207031 147.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.609375 134.933594 C 184.609375 136.554688 182.179688 136.554688 182.179688 134.933594 C 182.179688 133.3125 184.609375 133.3125 184.609375 134.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.167969 254.34375 C 283.167969 255.964844 280.738281 255.964844 280.738281 254.34375 C 280.738281 252.726562 283.167969 252.726562 283.167969 254.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.910156 234.816406 C 273.910156 236.4375 271.480469 236.4375 271.480469 234.816406 C 271.480469 233.195312 273.910156 233.195312 273.910156 234.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.382812 202.6875 C 125.382812 204.308594 122.953125 204.308594 122.953125 202.6875 C 122.953125 201.066406 125.382812 201.066406 125.382812 202.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.324219 291.832031 C 288.324219 293.453125 285.894531 293.453125 285.894531 291.832031 C 285.894531 290.210938 288.324219 290.210938 288.324219 291.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.144531 70.910156 L 182.78125 73.746094 L 179.511719 73.746094 Z M 181.144531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.253906 78.277344 C 162.253906 79.898438 159.824219 79.898438 159.824219 78.277344 C 159.824219 76.65625 162.253906 76.65625 162.253906 78.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.023438 392.324219 C 263.023438 393.945312 260.59375 393.945312 260.59375 392.324219 C 260.59375 390.707031 263.023438 390.707031 263.023438 392.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.34375 70.910156 L 197.980469 73.746094 L 194.707031 73.746094 Z M 196.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.042969 235.777344 C 154.042969 237.398438 151.613281 237.398438 151.613281 235.777344 C 151.613281 234.15625 154.042969 234.15625 154.042969 235.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.617188 154.027344 C 168.617188 155.648438 166.1875 155.648438 166.1875 154.027344 C 166.1875 152.410156 168.617188 152.410156 168.617188 154.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.703125 164.71875 C 159.703125 166.339844 157.273438 166.339844 157.273438 164.71875 C 157.273438 163.101562 159.703125 163.101562 159.703125 164.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.847656 256.03125 C 266.847656 257.648438 264.417969 257.648438 264.417969 256.03125 C 264.417969 254.410156 266.847656 254.410156 266.847656 256.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.503906 187.644531 C 279.503906 189.261719 277.070312 189.261719 277.070312 187.644531 C 277.070312 186.023438 279.503906 186.023438 279.503906 187.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.5625 271.738281 C 282.5625 273.359375 280.132812 273.359375 280.132812 271.738281 C 280.132812 270.117188 282.5625 270.117188 282.5625 271.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.984375 255.984375 C 187.984375 257.605469 185.554688 257.605469 185.554688 255.984375 C 185.554688 254.367188 187.984375 254.367188 187.984375 255.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 144.28125 351.148438 C 144.28125 352.769531 141.851562 352.769531 141.851562 351.148438 C 141.851562 349.527344 144.28125 349.527344 144.28125 351.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.605469 384.6875 C 137.605469 386.308594 135.175781 386.308594 135.175781 384.6875 C 135.175781 383.066406 137.605469 383.066406 137.605469 384.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.023438 376.027344 C 136.023438 377.648438 133.59375 377.648438 133.59375 376.027344 C 133.59375 374.40625 136.023438 374.40625 136.023438 376.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.875 165.347656 C 146.875 166.964844 144.445312 166.964844 144.445312 165.347656 C 144.445312 163.726562 146.875 163.726562 146.875 165.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 322.296875 418.691406 L 323.933594 415.855469 L 320.664062 415.855469 Z M 322.296875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.027344 248.15625 C 251.027344 249.777344 248.597656 249.777344 248.597656 248.15625 C 248.597656 246.539062 251.027344 246.539062 251.027344 248.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.925781 212.015625 C 178.925781 213.636719 176.492188 213.636719 176.492188 212.015625 C 176.492188 210.394531 178.925781 210.394531 178.925781 212.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.171875 235.425781 C 311.171875 237.046875 308.742188 237.046875 308.742188 235.425781 C 308.742188 233.808594 311.171875 233.808594 311.171875 235.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.984375 205.867188 C 270.984375 207.484375 268.554688 207.484375 268.554688 205.867188 C 268.554688 204.246094 270.984375 204.246094 270.984375 205.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.257812 282.9375 C 260.257812 284.558594 257.828125 284.558594 257.828125 282.9375 C 257.828125 281.316406 260.257812 281.316406 260.257812 282.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.445312 210.949219 C 227.445312 212.570312 225.015625 212.570312 225.015625 210.949219 C 225.015625 209.328125 227.445312 209.328125 227.445312 210.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.144531 239.035156 C 324.144531 240.65625 321.714844 240.65625 321.714844 239.035156 C 321.714844 237.414062 324.144531 237.414062 324.144531 239.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.839844 211.695312 C 309.839844 213.316406 307.410156 213.316406 307.410156 211.695312 C 307.410156 210.074219 309.839844 210.074219 309.839844 211.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.480469 286.289062 C 216.480469 287.910156 214.050781 287.910156 214.050781 286.289062 C 214.050781 284.667969 216.480469 284.667969 216.480469 286.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.714844 153.011719 C 220.714844 154.628906 218.285156 154.628906 218.285156 153.011719 C 218.285156 151.390625 220.714844 151.390625 220.714844 153.011719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.109375 70.910156 L 281.746094 73.746094 L 278.472656 73.746094 Z M 280.109375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.5625 70.910156 L 221.199219 73.746094 L 217.929688 73.746094 Z M 219.5625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.214844 70.910156 L 216.847656 73.746094 L 213.578125 73.746094 Z M 215.214844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.417969 154.769531 C 168.417969 156.386719 165.988281 156.386719 165.988281 154.769531 C 165.988281 153.148438 168.417969 153.148438 168.417969 154.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.855469 258.960938 C 173.855469 260.582031 171.425781 260.582031 171.425781 258.960938 C 171.425781 257.339844 173.855469 257.339844 173.855469 258.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.976562 81.65625 C 153.976562 83.273438 151.546875 83.273438 151.546875 81.65625 C 151.546875 80.035156 153.976562 80.035156 153.976562 81.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.363281 245.355469 C 244.363281 246.976562 241.933594 246.976562 241.933594 245.355469 C 241.933594 243.738281 244.363281 243.738281 244.363281 245.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.140625 241.386719 C 223.140625 243.007812 220.710938 243.007812 220.710938 241.386719 C 220.710938 239.765625 223.140625 239.765625 223.140625 241.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.449219 95.421875 C 122.449219 97.039062 120.019531 97.039062 120.019531 95.421875 C 120.019531 93.800781 122.449219 93.800781 122.449219 95.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.273438 157.46875 C 262.273438 159.089844 259.84375 159.089844 259.84375 157.46875 C 259.84375 155.847656 262.273438 155.847656 262.273438 157.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.722656 237.269531 C 256.722656 238.890625 254.292969 238.890625 254.292969 237.269531 C 254.292969 235.652344 256.722656 235.652344 256.722656 237.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.015625 104.132812 C 308.015625 105.753906 305.585938 105.753906 305.585938 104.132812 C 305.585938 102.515625 308.015625 102.515625 308.015625 104.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.9375 130.023438 C 229.9375 131.640625 227.507812 131.640625 227.507812 130.023438 C 227.507812 128.402344 229.9375 128.402344 229.9375 130.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.800781 70.910156 L 224.4375 73.746094 L 221.167969 73.746094 Z M 222.800781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.324219 70.910156 L 215.960938 73.746094 L 212.6875 73.746094 Z M 214.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.800781 70.910156 L 265.4375 73.746094 L 262.164062 73.746094 Z M 263.800781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.03125 343.507812 C 309.03125 345.128906 306.601562 345.128906 306.601562 343.507812 C 306.601562 341.886719 309.03125 341.886719 309.03125 343.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.933594 327.714844 C 257.933594 329.335938 255.503906 329.335938 255.503906 327.714844 C 255.503906 326.097656 257.933594 326.097656 257.933594 327.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.980469 248.613281 C 242.980469 250.230469 240.550781 250.230469 240.550781 248.613281 C 240.550781 246.992188 242.980469 246.992188 242.980469 248.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.492188 233.945312 C 219.492188 235.566406 217.0625 235.566406 217.0625 233.945312 C 217.0625 232.328125 219.492188 232.328125 219.492188 233.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.070312 253.785156 C 239.070312 255.40625 236.640625 255.40625 236.640625 253.785156 C 236.640625 252.164062 239.070312 252.164062 239.070312 253.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.285156 327.648438 C 260.285156 329.269531 257.855469 329.269531 257.855469 327.648438 C 257.855469 326.027344 260.285156 326.027344 260.285156 327.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.429688 150.019531 C 282.429688 151.640625 280 151.640625 280 150.019531 C 280 148.402344 282.429688 148.402344 282.429688 150.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.929688 121.226562 C 250.929688 122.847656 248.5 122.847656 248.5 121.226562 C 248.5 119.609375 250.929688 119.609375 250.929688 121.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.296875 198.386719 C 245.296875 200.007812 242.867188 200.007812 242.867188 198.386719 C 242.867188 196.769531 245.296875 196.769531 245.296875 198.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.03125 256.695312 C 281.03125 258.316406 278.601562 258.316406 278.601562 256.695312 C 278.601562 255.074219 281.03125 255.074219 281.03125 256.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.207031 300.101562 C 271.207031 301.722656 268.777344 301.722656 268.777344 300.101562 C 268.777344 298.480469 271.207031 298.480469 271.207031 300.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.132812 204.144531 C 176.132812 205.765625 173.703125 205.765625 173.703125 204.144531 C 173.703125 202.523438 176.132812 202.523438 176.132812 204.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.21875 176.621094 C 258.21875 178.242188 255.789062 178.242188 255.789062 176.621094 C 255.789062 175 258.21875 175 258.21875 176.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 340.9375 282.824219 C 340.9375 284.441406 338.507812 284.441406 338.507812 282.824219 C 338.507812 281.203125 340.9375 281.203125 340.9375 282.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.976562 418.691406 L 156.613281 415.855469 L 153.339844 415.855469 Z M 154.976562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.8125 70.910156 L 152.449219 73.746094 L 149.175781 73.746094 Z M 150.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.070312 248.964844 C 273.070312 250.582031 270.636719 250.582031 270.636719 248.964844 C 270.636719 247.34375 273.070312 247.34375 273.070312 248.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.707031 100.472656 C 150.707031 102.09375 148.277344 102.09375 148.277344 100.472656 C 148.277344 98.851562 150.707031 98.851562 150.707031 100.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.332031 299.234375 C 219.332031 300.851562 216.902344 300.851562 216.902344 299.234375 C 216.902344 297.613281 219.332031 297.613281 219.332031 299.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.96875 317.796875 C 298.96875 319.414062 296.535156 319.414062 296.535156 317.796875 C 296.535156 316.175781 298.96875 316.175781 298.96875 317.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.457031 243.402344 C 235.457031 245.023438 233.027344 245.023438 233.027344 243.402344 C 233.027344 241.785156 235.457031 241.785156 235.457031 243.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.007812 258.175781 C 296.007812 259.792969 293.578125 259.792969 293.578125 258.175781 C 293.578125 256.554688 296.007812 256.554688 296.007812 258.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.761719 184.582031 C 276.761719 186.199219 274.332031 186.199219 274.332031 184.582031 C 274.332031 182.960938 276.761719 182.960938 276.761719 184.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.320312 193.15625 C 249.320312 194.777344 246.890625 194.777344 246.890625 193.15625 C 246.890625 191.539062 249.320312 191.539062 249.320312 193.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.433594 189.972656 C 260.433594 191.59375 258.003906 191.59375 258.003906 189.972656 C 258.003906 188.351562 260.433594 188.351562 260.433594 189.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 326.425781 283.726562 C 326.425781 285.34375 323.996094 285.34375 323.996094 283.726562 C 323.996094 282.105469 326.425781 282.105469 326.425781 283.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.679688 230.292969 C 288.679688 231.910156 286.25 231.910156 286.25 230.292969 C 286.25 228.671875 288.679688 228.671875 288.679688 230.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.222656 248.65625 C 303.222656 250.277344 300.792969 250.277344 300.792969 248.65625 C 300.792969 247.035156 303.222656 247.035156 303.222656 248.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.128906 291.917969 C 214.128906 293.539062 211.699219 293.539062 211.699219 291.917969 C 211.699219 290.296875 214.128906 290.296875 214.128906 291.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.953125 255.378906 C 294.953125 257 292.523438 257 292.523438 255.378906 C 292.523438 253.757812 294.953125 253.757812 294.953125 255.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.824219 307.796875 C 255.824219 309.417969 253.390625 309.417969 253.390625 307.796875 C 253.390625 306.175781 255.824219 306.175781 255.824219 307.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.597656 257.242188 C 282.597656 258.863281 280.167969 258.863281 280.167969 257.242188 C 280.167969 255.625 282.597656 255.625 282.597656 257.242188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.632812 418.691406 L 296.269531 415.855469 L 292.996094 415.855469 Z M 294.632812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.4375 280.117188 C 267.4375 281.738281 265.007812 281.738281 265.007812 280.117188 C 265.007812 278.496094 267.4375 278.496094 267.4375 280.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.121094 418.691406 L 171.757812 415.855469 L 168.484375 415.855469 Z M 170.121094 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.546875 418.691406 L 123.183594 415.855469 L 119.910156 415.855469 Z M 121.546875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.839844 182.351562 C 297.839844 183.972656 295.410156 183.972656 295.410156 182.351562 C 295.410156 180.730469 297.839844 180.730469 297.839844 182.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.828125 272.304688 C 290.828125 273.925781 288.398438 273.925781 288.398438 272.304688 C 288.398438 270.6875 290.828125 270.6875 290.828125 272.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.132812 267.417969 C 283.132812 269.039062 280.703125 269.039062 280.703125 267.417969 C 280.703125 265.800781 283.132812 265.800781 283.132812 267.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.511719 262.375 C 267.511719 263.996094 265.078125 263.996094 265.078125 262.375 C 265.078125 260.753906 267.511719 260.753906 267.511719 262.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.613281 255.261719 C 243.613281 256.882812 241.183594 256.882812 241.183594 255.261719 C 241.183594 253.644531 243.613281 253.644531 243.613281 255.261719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 322.292969 254.816406 C 322.292969 256.4375 319.863281 256.4375 319.863281 254.816406 C 319.863281 253.199219 322.292969 253.199219 322.292969 254.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.476562 233.507812 C 225.476562 235.128906 223.046875 235.128906 223.046875 233.507812 C 223.046875 231.886719 225.476562 231.886719 225.476562 233.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.121094 268.121094 C 253.121094 269.742188 250.691406 269.742188 250.691406 268.121094 C 250.691406 266.5 253.121094 266.5 253.121094 268.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.617188 257.105469 C 253.617188 258.726562 251.183594 258.726562 251.183594 257.105469 C 251.183594 255.488281 253.617188 255.488281 253.617188 257.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.523438 251.277344 C 261.523438 252.898438 259.09375 252.898438 259.09375 251.277344 C 259.09375 249.660156 261.523438 249.660156 261.523438 251.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.273438 198.910156 C 271.273438 200.53125 268.84375 200.53125 268.84375 198.910156 C 268.84375 197.289062 271.273438 197.289062 271.273438 198.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.542969 288.011719 C 293.542969 289.632812 291.113281 289.632812 291.113281 288.011719 C 291.113281 286.390625 293.542969 286.390625 293.542969 288.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.082031 214.058594 C 245.082031 215.679688 242.652344 215.679688 242.652344 214.058594 C 242.652344 212.4375 245.082031 212.4375 245.082031 214.058594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.839844 70.910156 L 200.476562 73.746094 L 197.203125 73.746094 Z M 198.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.546875 188.015625 C 296.546875 189.632812 294.117188 189.632812 294.117188 188.015625 C 294.117188 186.394531 296.546875 186.394531 296.546875 188.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.652344 298.410156 C 262.652344 300.03125 260.222656 300.03125 260.222656 298.410156 C 260.222656 296.792969 262.652344 296.792969 262.652344 298.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 358.980469 299.191406 C 358.980469 300.8125 356.546875 300.8125 356.546875 299.191406 C 356.546875 297.570312 358.980469 297.570312 358.980469 299.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.417969 200.558594 C 264.417969 202.179688 261.988281 202.179688 261.988281 200.558594 C 261.988281 198.9375 264.417969 198.9375 264.417969 200.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.550781 70.910156 L 260.1875 73.746094 L 256.914062 73.746094 Z M 258.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 321.875 418.691406 L 323.511719 415.855469 L 320.238281 415.855469 Z M 321.875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.828125 389.507812 C 257.828125 391.125 255.398438 391.125 255.398438 389.507812 C 255.398438 387.886719 257.828125 387.886719 257.828125 389.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.355469 301.03125 C 292.355469 302.652344 289.925781 302.652344 289.925781 301.03125 C 289.925781 299.410156 292.355469 299.410156 292.355469 301.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.0625 302.5 C 283.0625 304.121094 280.632812 304.121094 280.632812 302.5 C 280.632812 300.882812 283.0625 300.882812 283.0625 302.5 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.914062 70.910156 L 233.550781 73.746094 L 230.277344 73.746094 Z M 231.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.988281 216.792969 C 251.988281 218.414062 249.558594 218.414062 249.558594 216.792969 C 249.558594 215.171875 251.988281 215.171875 251.988281 216.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.566406 227.863281 C 285.566406 229.480469 283.136719 229.480469 283.136719 227.863281 C 283.136719 226.242188 285.566406 226.242188 285.566406 227.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.292969 356.609375 C 273.292969 358.226562 270.863281 358.226562 270.863281 356.609375 C 270.863281 354.988281 273.292969 354.988281 273.292969 356.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.210938 217.738281 C 283.210938 219.359375 280.78125 219.359375 280.78125 217.738281 C 280.78125 216.117188 283.210938 216.117188 283.210938 217.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.515625 356.941406 C 297.515625 358.558594 295.085938 358.558594 295.085938 356.941406 C 295.085938 355.320312 297.515625 355.320312 297.515625 356.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.652344 225.042969 C 345.652344 226.664062 343.21875 226.664062 343.21875 225.042969 C 343.21875 223.425781 345.652344 223.425781 345.652344 225.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.078125 271.527344 C 252.078125 273.148438 249.644531 273.148438 249.644531 271.527344 C 249.644531 269.910156 252.078125 269.910156 252.078125 271.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.605469 239.476562 C 308.605469 241.097656 306.175781 241.097656 306.175781 239.476562 C 306.175781 237.859375 308.605469 237.859375 308.605469 239.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.128906 326.824219 C 248.128906 328.441406 245.699219 328.441406 245.699219 326.824219 C 245.699219 325.203125 248.128906 325.203125 248.128906 326.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.765625 203.710938 C 329.765625 205.328125 327.335938 205.328125 327.335938 203.710938 C 327.335938 202.089844 329.765625 202.089844 329.765625 203.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.132812 162.472656 C 297.132812 164.089844 294.703125 164.089844 294.703125 162.472656 C 294.703125 160.851562 297.132812 160.851562 297.132812 162.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.699219 104.152344 C 265.699219 105.769531 263.269531 105.769531 263.269531 104.152344 C 263.269531 102.53125 265.699219 102.53125 265.699219 104.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.738281 203.585938 C 262.738281 205.203125 260.308594 205.203125 260.308594 203.585938 C 260.308594 201.964844 262.738281 201.964844 262.738281 203.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.832031 287.535156 C 267.832031 289.15625 265.402344 289.15625 265.402344 287.535156 C 265.402344 285.914062 267.832031 285.914062 267.832031 287.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.484375 196.472656 C 257.484375 198.09375 255.054688 198.09375 255.054688 196.472656 C 255.054688 194.855469 257.484375 194.855469 257.484375 196.472656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.921875 70.910156 L 291.558594 73.746094 L 288.285156 73.746094 Z M 289.921875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.6875 319.679688 C 267.6875 321.300781 265.257812 321.300781 265.257812 319.679688 C 265.257812 318.0625 267.6875 318.0625 267.6875 319.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.222656 243.460938 C 325.222656 245.078125 322.792969 245.078125 322.792969 243.460938 C 322.792969 241.839844 325.222656 241.839844 325.222656 243.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.179688 268.519531 C 270.179688 270.136719 267.75 270.136719 267.75 268.519531 C 267.75 266.898438 270.179688 266.898438 270.179688 268.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.449219 201.714844 C 271.449219 203.335938 269.019531 203.335938 269.019531 201.714844 C 269.019531 200.097656 271.449219 200.097656 271.449219 201.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.101562 333.324219 C 180.101562 334.945312 177.671875 334.945312 177.671875 333.324219 C 177.671875 331.707031 180.101562 331.707031 180.101562 333.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.398438 251.324219 C 239.398438 252.945312 236.96875 252.945312 236.96875 251.324219 C 236.96875 249.707031 239.398438 249.707031 239.398438 251.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.109375 269.910156 C 266.109375 271.53125 263.679688 271.53125 263.679688 269.910156 C 263.679688 268.292969 266.109375 268.292969 266.109375 269.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.082031 238.394531 C 280.082031 240.015625 277.652344 240.015625 277.652344 238.394531 C 277.652344 236.773438 280.082031 236.773438 280.082031 238.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.273438 224.421875 C 273.273438 226.039062 270.84375 226.039062 270.84375 224.421875 C 270.84375 222.800781 273.273438 222.800781 273.273438 224.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 338.546875 282.429688 C 338.546875 284.050781 336.117188 284.050781 336.117188 282.429688 C 336.117188 280.8125 338.546875 280.8125 338.546875 282.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.285156 194.351562 C 164.285156 195.96875 161.855469 195.96875 161.855469 194.351562 C 161.855469 192.730469 164.285156 192.730469 164.285156 194.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.617188 334.003906 C 223.617188 335.625 221.1875 335.625 221.1875 334.003906 C 221.1875 332.386719 223.617188 332.386719 223.617188 334.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.476562 286.75 C 292.476562 288.371094 290.046875 288.371094 290.046875 286.75 C 290.046875 285.132812 292.476562 285.132812 292.476562 286.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.453125 324.597656 C 198.453125 326.214844 196.023438 326.214844 196.023438 324.597656 C 196.023438 322.976562 198.453125 322.976562 198.453125 324.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.949219 297.230469 C 243.949219 298.851562 241.519531 298.851562 241.519531 297.230469 C 241.519531 295.613281 243.949219 295.613281 243.949219 297.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.746094 268.9375 C 243.746094 270.558594 241.316406 270.558594 241.316406 268.9375 C 241.316406 267.316406 243.746094 267.316406 243.746094 268.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.472656 313.09375 C 253.472656 314.714844 251.042969 314.714844 251.042969 313.09375 C 251.042969 311.476562 253.472656 311.476562 253.472656 313.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.523438 70.910156 L 135.160156 73.746094 L 131.886719 73.746094 Z M 133.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.996094 70.910156 L 196.632812 73.746094 L 193.359375 73.746094 Z M 194.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.320312 119.113281 C 209.320312 120.734375 206.890625 120.734375 206.890625 119.113281 C 206.890625 117.492188 209.320312 117.492188 209.320312 119.113281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.429688 70.910156 L 202.066406 73.746094 L 198.792969 73.746094 Z M 200.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.367188 367.761719 C 118.367188 369.382812 115.9375 369.382812 115.9375 367.761719 C 115.9375 366.144531 118.367188 366.144531 118.367188 367.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.894531 336.875 C 139.894531 338.496094 137.464844 338.496094 137.464844 336.875 C 137.464844 335.257812 139.894531 335.257812 139.894531 336.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.679688 274.386719 C 218.679688 276.007812 216.25 276.007812 216.25 274.386719 C 216.25 272.765625 218.679688 272.765625 218.679688 274.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.285156 418.691406 L 109.921875 415.855469 L 106.652344 415.855469 Z M 108.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.65625 179.054688 C 222.65625 180.671875 220.226562 180.671875 220.226562 179.054688 C 220.226562 177.433594 222.65625 177.433594 222.65625 179.054688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.640625 70.910156 L 123.277344 73.746094 L 120.003906 73.746094 Z M 121.640625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.550781 70.910156 L 127.1875 73.746094 L 123.914062 73.746094 Z M 125.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.941406 306.003906 C 175.941406 307.625 173.511719 307.625 173.511719 306.003906 C 173.511719 304.382812 175.941406 304.382812 175.941406 306.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.59375 282.226562 C 210.59375 283.84375 208.164062 283.84375 208.164062 282.226562 C 208.164062 280.605469 210.59375 280.605469 210.59375 282.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.769531 409.917969 C 169.769531 411.535156 167.335938 411.535156 167.335938 409.917969 C 167.335938 408.296875 169.769531 408.296875 169.769531 409.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.316406 317.847656 C 109.316406 319.46875 106.886719 319.46875 106.886719 317.847656 C 106.886719 316.230469 109.316406 316.230469 109.316406 317.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.226562 294.632812 C 197.226562 296.253906 194.796875 296.253906 194.796875 294.632812 C 194.796875 293.011719 197.226562 293.011719 197.226562 294.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.921875 250.992188 C 164.921875 252.613281 162.492188 252.613281 162.492188 250.992188 C 162.492188 249.375 164.921875 249.375 164.921875 250.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196.449219 241.375 C 196.449219 242.996094 194.019531 242.996094 194.019531 241.375 C 194.019531 239.753906 196.449219 239.753906 196.449219 241.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.953125 238.015625 C 323.953125 239.636719 321.523438 239.636719 321.523438 238.015625 C 321.523438 236.394531 323.953125 236.394531 323.953125 238.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.949219 258.6875 C 129.949219 260.308594 127.519531 260.308594 127.519531 258.6875 C 127.519531 257.066406 129.949219 257.066406 129.949219 258.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.4375 229.960938 C 290.4375 231.582031 288.007812 231.582031 288.007812 229.960938 C 288.007812 228.339844 290.4375 228.339844 290.4375 229.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.101562 70.910156 L 283.738281 73.746094 L 280.464844 73.746094 Z M 282.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.074219 87.078125 C 153.074219 88.699219 150.644531 88.699219 150.644531 87.078125 C 150.644531 85.457031 153.074219 85.457031 153.074219 87.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.65625 129.5625 C 136.65625 131.183594 134.226562 131.183594 134.226562 129.5625 C 134.226562 127.945312 136.65625 127.945312 136.65625 129.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.34375 120.132812 C 195.34375 121.753906 192.914062 121.753906 192.914062 120.132812 C 192.914062 118.511719 195.34375 118.511719 195.34375 120.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.292969 208.859375 C 255.292969 210.480469 252.863281 210.480469 252.863281 208.859375 C 252.863281 207.242188 255.292969 207.242188 255.292969 208.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.179688 162.4375 C 250.179688 164.054688 247.75 164.054688 247.75 162.4375 C 247.75 160.816406 250.179688 160.816406 250.179688 162.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.230469 316.089844 C 186.230469 317.710938 183.800781 317.710938 183.800781 316.089844 C 183.800781 314.472656 186.230469 314.472656 186.230469 316.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 190.988281 401.773438 C 190.988281 403.394531 188.558594 403.394531 188.558594 401.773438 C 188.558594 400.152344 190.988281 400.152344 190.988281 401.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.339844 70.910156 L 146.976562 73.746094 L 143.703125 73.746094 Z M 145.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.378906 70.910156 L 185.011719 73.746094 L 181.742188 73.746094 Z M 183.378906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.785156 70.910156 L 152.421875 73.746094 L 149.148438 73.746094 Z M 150.785156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.3125 195.882812 C 173.3125 197.5 170.882812 197.5 170.882812 195.882812 C 170.882812 194.261719 173.3125 194.261719 173.3125 195.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.347656 70.910156 L 194.984375 73.746094 L 191.710938 73.746094 Z M 193.347656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.722656 70.910156 L 169.359375 73.746094 L 166.085938 73.746094 Z M 167.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.597656 96.398438 C 222.597656 98.015625 220.164062 98.015625 220.164062 96.398438 C 220.164062 94.777344 222.597656 94.777344 222.597656 96.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.71875 87.039062 C 320.71875 88.660156 318.285156 88.660156 318.285156 87.039062 C 318.285156 85.417969 320.71875 85.417969 320.71875 87.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.582031 228.226562 C 264.582031 229.847656 262.152344 229.847656 262.152344 228.226562 C 262.152344 226.609375 264.582031 226.609375 264.582031 228.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.613281 273.257812 C 237.613281 274.878906 235.183594 274.878906 235.183594 273.257812 C 235.183594 271.640625 237.613281 271.640625 237.613281 273.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.09375 70.910156 L 253.730469 73.746094 L 250.457031 73.746094 Z M 252.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.152344 279.574219 C 230.152344 281.195312 227.722656 281.195312 227.722656 279.574219 C 227.722656 277.957031 230.152344 277.957031 230.152344 279.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.847656 310.214844 C 241.847656 311.835938 239.417969 311.835938 239.417969 310.214844 C 239.417969 308.59375 241.847656 308.59375 241.847656 310.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.570312 344.351562 C 225.570312 345.972656 223.140625 345.972656 223.140625 344.351562 C 223.140625 342.730469 225.570312 342.730469 225.570312 344.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.738281 109.15625 C 229.738281 110.773438 227.308594 110.773438 227.308594 109.15625 C 227.308594 107.535156 229.738281 107.535156 229.738281 109.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 330.214844 329.441406 C 330.214844 331.0625 327.785156 331.0625 327.785156 329.441406 C 327.785156 327.820312 330.214844 327.820312 330.214844 329.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.144531 153.515625 C 218.144531 155.136719 215.714844 155.136719 215.714844 153.515625 C 215.714844 151.898438 218.144531 151.898438 218.144531 153.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.816406 70.910156 L 218.453125 73.746094 L 215.179688 73.746094 Z M 216.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.203125 359.199219 C 159.203125 360.820312 156.773438 360.820312 156.773438 359.199219 C 156.773438 357.582031 159.203125 357.582031 159.203125 359.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.015625 284.800781 C 255.015625 286.421875 252.585938 286.421875 252.585938 284.800781 C 252.585938 283.183594 255.015625 283.183594 255.015625 284.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.457031 303.183594 C 281.457031 304.804688 279.027344 304.804688 279.027344 303.183594 C 279.027344 301.5625 281.457031 301.5625 281.457031 303.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.796875 182.792969 C 246.796875 184.414062 244.367188 184.414062 244.367188 182.792969 C 244.367188 181.171875 246.796875 181.171875 246.796875 182.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.136719 316.441406 C 298.136719 318.058594 295.707031 318.058594 295.707031 316.441406 C 295.707031 314.820312 298.136719 314.820312 298.136719 316.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.59375 349.652344 C 298.59375 351.273438 296.160156 351.273438 296.160156 349.652344 C 296.160156 348.035156 298.59375 348.035156 298.59375 349.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.128906 265.523438 C 201.128906 267.140625 198.699219 267.140625 198.699219 265.523438 C 198.699219 263.902344 201.128906 263.902344 201.128906 265.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.769531 418.691406 L 111.40625 415.855469 L 108.132812 415.855469 Z M 109.769531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.085938 142.390625 C 213.085938 144.011719 210.652344 144.011719 210.652344 142.390625 C 210.652344 140.773438 213.085938 140.773438 213.085938 142.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.453125 92.359375 C 218.453125 93.980469 216.023438 93.980469 216.023438 92.359375 C 216.023438 90.738281 218.453125 90.738281 218.453125 92.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 194.53125 110.660156 C 194.53125 112.28125 192.101562 112.28125 192.101562 110.660156 C 192.101562 109.042969 194.53125 109.042969 194.53125 110.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.40625 353.371094 C 216.40625 354.992188 213.976562 354.992188 213.976562 353.371094 C 213.976562 351.75 216.40625 351.75 216.40625 353.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.121094 249.175781 C 306.121094 250.792969 303.691406 250.792969 303.691406 249.175781 C 303.691406 247.554688 306.121094 247.554688 306.121094 249.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.058594 191.691406 C 244.058594 193.3125 241.628906 193.3125 241.628906 191.691406 C 241.628906 190.074219 244.058594 190.074219 244.058594 191.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.019531 174.097656 C 229.019531 175.71875 226.589844 175.71875 226.589844 174.097656 C 226.589844 172.480469 229.019531 172.480469 229.019531 174.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.914062 70.910156 L 249.550781 73.746094 L 246.277344 73.746094 Z M 247.914062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.523438 70.910156 L 171.160156 73.746094 L 167.886719 73.746094 Z M 169.523438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.84375 70.910156 L 205.480469 73.746094 L 202.210938 73.746094 Z M 203.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.164062 155.726562 C 243.164062 157.347656 240.734375 157.347656 240.734375 155.726562 C 240.734375 154.105469 243.164062 154.105469 243.164062 155.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.839844 267.769531 C 293.839844 269.390625 291.410156 269.390625 291.410156 267.769531 C 291.410156 266.148438 293.839844 266.148438 293.839844 267.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.898438 309.929688 C 232.898438 311.546875 230.46875 311.546875 230.46875 309.929688 C 230.46875 308.308594 232.898438 308.308594 232.898438 309.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.4375 220.941406 C 172.4375 222.558594 170.007812 222.558594 170.007812 220.941406 C 170.007812 219.320312 172.4375 219.320312 172.4375 220.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.039062 290.886719 C 240.039062 292.507812 237.605469 292.507812 237.605469 290.886719 C 237.605469 289.265625 240.039062 289.265625 240.039062 290.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.78125 325.398438 C 241.78125 327.019531 239.351562 327.019531 239.351562 325.398438 C 239.351562 323.78125 241.78125 323.78125 241.78125 325.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.941406 233.847656 C 286.941406 235.46875 284.511719 235.46875 284.511719 233.847656 C 284.511719 232.226562 286.941406 232.226562 286.941406 233.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.160156 205.121094 C 256.160156 206.742188 253.730469 206.742188 253.730469 205.121094 C 253.730469 203.5 256.160156 203.5 256.160156 205.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.074219 197.890625 C 161.074219 199.511719 158.644531 199.511719 158.644531 197.890625 C 158.644531 196.269531 161.074219 196.269531 161.074219 197.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.601562 242.890625 C 239.601562 244.507812 237.171875 244.507812 237.171875 242.890625 C 237.171875 241.269531 239.601562 241.269531 239.601562 242.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.070312 301.074219 C 268.070312 302.691406 265.640625 302.691406 265.640625 301.074219 C 265.640625 299.453125 268.070312 299.453125 268.070312 301.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.972656 312.867188 C 268.972656 314.488281 266.542969 314.488281 266.542969 312.867188 C 266.542969 311.246094 268.972656 311.246094 268.972656 312.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.457031 158.617188 C 254.457031 160.234375 252.027344 160.234375 252.027344 158.617188 C 252.027344 156.996094 254.457031 156.996094 254.457031 158.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.84375 70.910156 L 136.476562 73.746094 L 133.207031 73.746094 Z M 134.84375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 177.640625 182.050781 C 177.640625 183.671875 175.210938 183.671875 175.210938 182.050781 C 175.210938 180.429688 177.640625 180.429688 177.640625 182.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.367188 91.777344 C 174.367188 93.398438 171.933594 93.398438 171.933594 91.777344 C 171.933594 90.15625 174.367188 90.15625 174.367188 91.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.136719 156.664062 C 225.136719 158.28125 222.707031 158.28125 222.707031 156.664062 C 222.707031 155.042969 225.136719 155.042969 225.136719 156.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 195.535156 94.808594 C 195.535156 96.429688 193.105469 96.429688 193.105469 94.808594 C 193.105469 93.1875 195.535156 93.1875 195.535156 94.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.914062 184.804688 C 180.914062 186.425781 178.484375 186.425781 178.484375 184.804688 C 178.484375 183.183594 180.914062 183.183594 180.914062 184.804688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.675781 70.910156 L 181.3125 73.746094 L 178.039062 73.746094 Z M 179.675781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.773438 101.726562 C 201.773438 103.347656 199.34375 103.347656 199.34375 101.726562 C 199.34375 100.109375 201.773438 100.109375 201.773438 101.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.121094 265.652344 C 167.121094 267.273438 164.691406 267.273438 164.691406 265.652344 C 164.691406 264.03125 167.121094 264.03125 167.121094 265.652344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.304688 70.910156 L 105.9375 73.746094 L 102.667969 73.746094 Z M 104.304688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.652344 70.910156 L 143.289062 73.746094 L 140.015625 73.746094 Z M 141.652344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.257812 263.566406 C 254.257812 265.1875 251.828125 265.1875 251.828125 263.566406 C 251.828125 261.945312 254.257812 261.945312 254.257812 263.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.035156 241.570312 C 246.035156 243.191406 243.605469 243.191406 243.605469 241.570312 C 243.605469 239.949219 246.035156 239.949219 246.035156 241.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.511719 149.640625 C 193.511719 151.261719 191.082031 151.261719 191.082031 149.640625 C 191.082031 148.019531 193.511719 148.019531 193.511719 149.640625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.75 70.910156 L 262.386719 73.746094 L 259.113281 73.746094 Z M 260.75 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.949219 70.910156 L 193.585938 73.746094 L 190.3125 73.746094 Z M 191.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.585938 235.832031 C 206.585938 237.453125 204.15625 237.453125 204.15625 235.832031 C 204.15625 234.210938 206.585938 234.210938 206.585938 235.832031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.519531 414.234375 C 294.519531 415.855469 292.089844 415.855469 292.089844 414.234375 C 292.089844 412.613281 294.519531 412.613281 294.519531 414.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.128906 271.335938 C 162.128906 272.957031 159.699219 272.957031 159.699219 271.335938 C 159.699219 269.714844 162.128906 269.714844 162.128906 271.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.832031 89.523438 C 191.832031 91.140625 189.402344 91.140625 189.402344 89.523438 C 189.402344 87.902344 191.832031 87.902344 191.832031 89.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.6875 244.535156 C 310.6875 246.15625 308.257812 246.15625 308.257812 244.535156 C 308.257812 242.917969 310.6875 242.917969 310.6875 244.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.292969 307.46875 C 240.292969 309.089844 237.863281 309.089844 237.863281 307.46875 C 237.863281 305.851562 240.292969 305.851562 240.292969 307.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.859375 335.4375 C 140.859375 337.058594 138.429688 337.058594 138.429688 335.4375 C 138.429688 333.816406 140.859375 333.816406 140.859375 335.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.691406 248.261719 C 254.691406 249.882812 252.261719 249.882812 252.261719 248.261719 C 252.261719 246.640625 254.691406 246.640625 254.691406 248.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.328125 166.0625 C 219.328125 167.683594 216.898438 167.683594 216.898438 166.0625 C 216.898438 164.445312 219.328125 164.445312 219.328125 166.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.1875 114.554688 C 242.1875 116.175781 239.753906 116.175781 239.753906 114.554688 C 239.753906 112.933594 242.1875 112.933594 242.1875 114.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.894531 254.59375 C 326.894531 256.210938 324.464844 256.210938 324.464844 254.59375 C 324.464844 252.972656 326.894531 252.972656 326.894531 254.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.570312 124.382812 C 290.570312 126.003906 288.140625 126.003906 288.140625 124.382812 C 288.140625 122.765625 290.570312 122.765625 290.570312 124.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.285156 418.691406 L 154.921875 415.855469 L 151.648438 415.855469 Z M 153.285156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.503906 237.011719 C 219.503906 238.628906 217.074219 238.628906 217.074219 237.011719 C 217.074219 235.390625 219.503906 235.390625 219.503906 237.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.199219 195.820312 C 208.199219 197.4375 205.769531 197.4375 205.769531 195.820312 C 205.769531 194.199219 208.199219 194.199219 208.199219 195.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.542969 279.703125 C 291.542969 281.324219 289.113281 281.324219 289.113281 279.703125 C 289.113281 278.082031 291.542969 278.082031 291.542969 279.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.96875 91.359375 C 122.96875 92.980469 120.539062 92.980469 120.539062 91.359375 C 120.539062 89.742188 122.96875 89.742188 122.96875 91.359375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.390625 70.910156 L 244.027344 73.746094 L 240.757812 73.746094 Z M 242.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.3125 193.601562 C 186.3125 195.222656 183.882812 195.222656 183.882812 193.601562 C 183.882812 191.980469 186.3125 191.980469 186.3125 193.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.535156 70.910156 L 260.171875 73.746094 L 256.898438 73.746094 Z M 258.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.074219 273.109375 C 271.074219 274.726562 268.644531 274.726562 268.644531 273.109375 C 268.644531 271.488281 271.074219 271.488281 271.074219 273.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.011719 256.429688 C 307.011719 258.046875 304.582031 258.046875 304.582031 256.429688 C 304.582031 254.808594 307.011719 254.808594 307.011719 256.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.183594 70.910156 L 200.820312 73.746094 L 197.546875 73.746094 Z M 199.183594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.941406 252.453125 C 214.941406 254.074219 212.511719 254.074219 212.511719 252.453125 C 212.511719 250.835938 214.941406 250.835938 214.941406 252.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.664062 236.171875 C 268.664062 237.789062 266.234375 237.789062 266.234375 236.171875 C 266.234375 234.550781 268.664062 234.550781 268.664062 236.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.019531 173.609375 C 172.019531 175.230469 169.589844 175.230469 169.589844 173.609375 C 169.589844 171.988281 172.019531 171.988281 172.019531 173.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.441406 90.542969 C 124.441406 92.164062 122.011719 92.164062 122.011719 90.542969 C 122.011719 88.921875 124.441406 88.921875 124.441406 90.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.367188 332.085938 C 260.367188 333.707031 257.9375 333.707031 257.9375 332.085938 C 257.9375 330.464844 260.367188 330.464844 260.367188 332.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.003906 371.25 C 250.003906 372.867188 247.574219 372.867188 247.574219 371.25 C 247.574219 369.628906 250.003906 369.628906 250.003906 371.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.785156 254.636719 C 134.785156 256.257812 132.355469 256.257812 132.355469 254.636719 C 132.355469 253.019531 134.785156 253.019531 134.785156 254.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.878906 268.121094 C 245.878906 269.738281 243.449219 269.738281 243.449219 268.121094 C 243.449219 266.5 245.878906 266.5 245.878906 268.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.152344 317.914062 C 257.152344 319.535156 254.722656 319.535156 254.722656 317.914062 C 254.722656 316.292969 257.152344 316.292969 257.152344 317.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.644531 102.804688 C 168.644531 104.425781 166.214844 104.425781 166.214844 102.804688 C 166.214844 101.1875 168.644531 101.1875 168.644531 102.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.113281 315.996094 C 295.113281 317.613281 292.679688 317.613281 292.679688 315.996094 C 292.679688 314.375 295.113281 314.375 295.113281 315.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 333.65625 238.21875 C 333.65625 239.839844 331.226562 239.839844 331.226562 238.21875 C 331.226562 236.597656 333.65625 236.597656 333.65625 238.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.300781 255.164062 C 278.300781 256.78125 275.871094 256.78125 275.871094 255.164062 C 275.871094 253.542969 278.300781 253.542969 278.300781 255.164062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.695312 418.691406 L 124.332031 415.855469 L 121.058594 415.855469 Z M 122.695312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.472656 231.953125 C 210.472656 233.570312 208.042969 233.570312 208.042969 231.953125 C 208.042969 230.332031 210.472656 230.332031 210.472656 231.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.503906 272.214844 C 270.503906 273.835938 268.074219 273.835938 268.074219 272.214844 C 268.074219 270.59375 270.503906 270.59375 270.503906 272.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.828125 173.269531 C 111.828125 174.890625 109.398438 174.890625 109.398438 173.269531 C 109.398438 171.648438 111.828125 171.648438 111.828125 173.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.433594 201.007812 C 267.433594 202.628906 265.003906 202.628906 265.003906 201.007812 C 265.003906 199.386719 267.433594 199.386719 267.433594 201.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.445312 232.859375 C 201.445312 234.476562 199.015625 234.476562 199.015625 232.859375 C 199.015625 231.238281 201.445312 231.238281 201.445312 232.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.332031 286.480469 C 272.332031 288.101562 269.902344 288.101562 269.902344 286.480469 C 269.902344 284.859375 272.332031 284.859375 272.332031 286.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.511719 256.835938 C 264.511719 258.457031 262.082031 258.457031 262.082031 256.835938 C 262.082031 255.214844 264.511719 255.214844 264.511719 256.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.617188 264.699219 C 232.617188 266.320312 230.1875 266.320312 230.1875 264.699219 C 230.1875 263.078125 232.617188 263.078125 232.617188 264.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.84375 233.429688 C 168.84375 235.050781 166.410156 235.050781 166.410156 233.429688 C 166.410156 231.808594 168.84375 231.808594 168.84375 233.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.011719 333.960938 C 302.011719 335.578125 299.582031 335.578125 299.582031 333.960938 C 299.582031 332.339844 302.011719 332.339844 302.011719 333.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.335938 333.429688 C 186.335938 335.046875 183.90625 335.046875 183.90625 333.429688 C 183.90625 331.808594 186.335938 331.808594 186.335938 333.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.464844 350.394531 C 275.464844 352.015625 273.035156 352.015625 273.035156 350.394531 C 273.035156 348.777344 275.464844 348.777344 275.464844 350.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.6875 238.855469 C 248.6875 240.476562 246.257812 240.476562 246.257812 238.855469 C 246.257812 237.234375 248.6875 237.234375 248.6875 238.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.195312 328.890625 C 223.195312 330.511719 220.765625 330.511719 220.765625 328.890625 C 220.765625 327.269531 223.195312 327.269531 223.195312 328.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.945312 333.015625 C 240.945312 334.636719 238.515625 334.636719 238.515625 333.015625 C 238.515625 331.394531 240.945312 331.394531 240.945312 333.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.046875 275.542969 C 147.046875 277.164062 144.617188 277.164062 144.617188 275.542969 C 144.617188 273.921875 147.046875 273.921875 147.046875 275.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.71875 142.136719 C 133.71875 143.757812 131.289062 143.757812 131.289062 142.136719 C 131.289062 140.515625 133.71875 140.515625 133.71875 142.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.90625 288.925781 C 274.90625 290.546875 272.476562 290.546875 272.476562 288.925781 C 272.476562 287.304688 274.90625 287.304688 274.90625 288.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.097656 206.476562 C 290.097656 208.097656 287.667969 208.097656 287.667969 206.476562 C 287.667969 204.859375 290.097656 204.859375 290.097656 206.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 185.378906 89.765625 C 185.378906 91.382812 182.949219 91.382812 182.949219 89.765625 C 182.949219 88.144531 185.378906 88.144531 185.378906 89.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.488281 275.40625 C 150.488281 277.027344 148.058594 277.027344 148.058594 275.40625 C 148.058594 273.785156 150.488281 273.785156 150.488281 275.40625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.40625 70.910156 L 189.042969 73.746094 L 185.769531 73.746094 Z M 187.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.789062 221.25 C 287.789062 222.871094 285.359375 222.871094 285.359375 221.25 C 285.359375 219.632812 287.789062 219.632812 287.789062 221.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.28125 304.941406 C 280.28125 306.5625 277.851562 306.5625 277.851562 304.941406 C 277.851562 303.320312 280.28125 303.320312 280.28125 304.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.824219 300.257812 C 267.824219 301.878906 265.394531 301.878906 265.394531 300.257812 C 265.394531 298.636719 267.824219 298.636719 267.824219 300.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.75 302.273438 C 304.75 303.894531 302.320312 303.894531 302.320312 302.273438 C 302.320312 300.65625 304.75 300.65625 304.75 302.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.300781 212.054688 C 285.300781 213.675781 282.871094 213.675781 282.871094 212.054688 C 282.871094 210.433594 285.300781 210.433594 285.300781 212.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.441406 230.960938 C 222.441406 232.578125 220.011719 232.578125 220.011719 230.960938 C 220.011719 229.339844 222.441406 229.339844 222.441406 230.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.859375 296.960938 C 234.859375 298.582031 232.429688 298.582031 232.429688 296.960938 C 232.429688 295.34375 234.859375 295.34375 234.859375 296.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.433594 280.257812 C 225.433594 281.875 223.003906 281.875 223.003906 280.257812 C 223.003906 278.636719 225.433594 278.636719 225.433594 280.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.175781 297.210938 C 246.175781 298.832031 243.746094 298.832031 243.746094 297.210938 C 243.746094 295.59375 246.175781 295.59375 246.175781 297.210938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.011719 418.691406 L 203.648438 415.855469 L 200.378906 415.855469 Z M 202.011719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.371094 234.601562 C 247.371094 236.21875 244.9375 236.21875 244.9375 234.601562 C 244.9375 232.980469 247.371094 232.980469 247.371094 234.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.695312 142.644531 C 132.695312 144.265625 130.265625 144.265625 130.265625 142.644531 C 130.265625 141.023438 132.695312 141.023438 132.695312 142.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.292969 418.691406 L 113.929688 415.855469 L 110.660156 415.855469 Z M 112.292969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.832031 277.777344 C 139.832031 279.398438 137.402344 279.398438 137.402344 277.777344 C 137.402344 276.15625 139.832031 276.15625 139.832031 277.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.457031 211.25 C 266.457031 212.867188 264.027344 212.867188 264.027344 211.25 C 264.027344 209.628906 266.457031 209.628906 266.457031 211.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.960938 253.488281 C 269.960938 255.109375 267.53125 255.109375 267.53125 253.488281 C 267.53125 251.867188 269.960938 251.867188 269.960938 253.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.246094 339.1875 C 146.246094 340.808594 143.816406 340.808594 143.816406 339.1875 C 143.816406 337.566406 146.246094 337.566406 146.246094 339.1875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.730469 70.910156 L 195.367188 73.746094 L 192.09375 73.746094 Z M 193.730469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 220.125 70.910156 L 221.761719 73.746094 L 218.488281 73.746094 Z M 220.125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.957031 246.691406 C 310.957031 248.3125 308.527344 248.3125 308.527344 246.691406 C 308.527344 245.070312 310.957031 245.070312 310.957031 246.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.398438 70.910156 L 212.035156 73.746094 L 208.761719 73.746094 Z M 210.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.53125 150.257812 C 165.53125 151.875 163.101562 151.875 163.101562 150.257812 C 163.101562 148.636719 165.53125 148.636719 165.53125 150.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.109375 274.875 C 305.109375 276.496094 302.675781 276.496094 302.675781 274.875 C 302.675781 273.257812 305.109375 273.257812 305.109375 274.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.496094 292.371094 C 284.496094 293.992188 282.066406 293.992188 282.066406 292.371094 C 282.066406 290.75 284.496094 290.75 284.496094 292.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.5 331.65625 C 178.5 333.277344 176.066406 333.277344 176.066406 331.65625 C 176.066406 330.035156 178.5 330.035156 178.5 331.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.886719 241.46875 C 249.886719 243.089844 247.457031 243.089844 247.457031 241.46875 C 247.457031 239.847656 249.886719 239.847656 249.886719 241.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.621094 303.109375 C 151.621094 304.730469 149.191406 304.730469 149.191406 303.109375 C 149.191406 301.488281 151.621094 301.488281 151.621094 303.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.019531 256.375 C 255.019531 257.996094 252.589844 257.996094 252.589844 256.375 C 252.589844 254.753906 255.019531 254.753906 255.019531 256.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.101562 70.910156 L 175.738281 73.746094 L 172.464844 73.746094 Z M 174.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.34375 270.195312 C 159.34375 271.816406 156.914062 271.816406 156.914062 270.195312 C 156.914062 268.574219 159.34375 268.574219 159.34375 270.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.4375 189.566406 C 314.4375 191.1875 312.007812 191.1875 312.007812 189.566406 C 312.007812 187.945312 314.4375 187.945312 314.4375 189.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.402344 237.035156 C 274.402344 238.65625 271.972656 238.65625 271.972656 237.035156 C 271.972656 235.414062 274.402344 235.414062 274.402344 237.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.714844 224.726562 C 298.714844 226.34375 296.285156 226.34375 296.285156 224.726562 C 296.285156 223.105469 298.714844 223.105469 298.714844 224.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.875 211.613281 C 259.875 213.234375 257.445312 213.234375 257.445312 211.613281 C 257.445312 209.996094 259.875 209.996094 259.875 211.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.316406 97.921875 C 160.316406 99.542969 157.886719 99.542969 157.886719 97.921875 C 157.886719 96.300781 160.316406 96.300781 160.316406 97.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.605469 270.183594 C 276.605469 271.804688 274.175781 271.804688 274.175781 270.183594 C 274.175781 268.5625 276.605469 268.5625 276.605469 270.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.660156 293.625 C 287.660156 295.246094 285.230469 295.246094 285.230469 293.625 C 285.230469 292.003906 287.660156 292.003906 287.660156 293.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.398438 351.105469 C 236.398438 352.726562 233.96875 352.726562 233.96875 351.105469 C 233.96875 349.484375 236.398438 349.484375 236.398438 351.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.152344 402.796875 C 216.152344 404.417969 213.722656 404.417969 213.722656 402.796875 C 213.722656 401.175781 216.152344 401.175781 216.152344 402.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 339.253906 334.535156 C 339.253906 336.15625 336.824219 336.15625 336.824219 334.535156 C 336.824219 332.914062 339.253906 332.914062 339.253906 334.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.101562 302.035156 C 293.101562 303.65625 290.671875 303.65625 290.671875 302.035156 C 290.671875 300.417969 293.101562 300.417969 293.101562 302.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.125 297 C 221.125 298.621094 218.695312 298.621094 218.695312 297 C 218.695312 295.378906 221.125 295.378906 221.125 297 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.464844 281.585938 C 289.464844 283.203125 287.035156 283.203125 287.035156 281.585938 C 287.035156 279.964844 289.464844 279.964844 289.464844 281.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.992188 254.53125 C 291.992188 256.152344 289.5625 256.152344 289.5625 254.53125 C 289.5625 252.914062 291.992188 252.914062 291.992188 254.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.699219 196.273438 C 259.699219 197.894531 257.269531 197.894531 257.269531 196.273438 C 257.269531 194.652344 259.699219 194.652344 259.699219 196.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.328125 277.789062 C 216.328125 279.40625 213.898438 279.40625 213.898438 277.789062 C 213.898438 276.167969 216.328125 276.167969 216.328125 277.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.09375 246.007812 C 200.09375 247.628906 197.664062 247.628906 197.664062 246.007812 C 197.664062 244.386719 200.09375 244.386719 200.09375 246.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253 242.226562 C 253 243.847656 250.570312 243.847656 250.570312 242.226562 C 250.570312 240.605469 253 240.605469 253 242.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307.015625 268.0625 C 307.015625 269.679688 304.582031 269.679688 304.582031 268.0625 C 304.582031 266.441406 307.015625 266.441406 307.015625 268.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.71875 70.910156 L 331.355469 73.746094 L 328.082031 73.746094 Z M 329.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.230469 341.746094 C 224.230469 343.367188 221.796875 343.367188 221.796875 341.746094 C 221.796875 340.125 224.230469 340.125 224.230469 341.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.847656 70.910156 L 254.484375 73.746094 L 251.210938 73.746094 Z M 252.847656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.535156 70.910156 L 139.171875 73.746094 L 135.898438 73.746094 Z M 137.535156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.582031 149.425781 C 273.582031 151.046875 271.148438 151.046875 271.148438 149.425781 C 271.148438 147.804688 273.582031 147.804688 273.582031 149.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.011719 245.710938 C 216.011719 247.328125 213.582031 247.328125 213.582031 245.710938 C 213.582031 244.089844 216.011719 244.089844 216.011719 245.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.429688 316.105469 C 241.429688 317.726562 239 317.726562 239 316.105469 C 239 314.488281 241.429688 314.488281 241.429688 316.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.628906 322.976562 C 275.628906 324.597656 273.199219 324.597656 273.199219 322.976562 C 273.199219 321.355469 275.628906 321.355469 275.628906 322.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.554688 355.175781 C 250.554688 356.796875 248.125 356.796875 248.125 355.175781 C 248.125 353.554688 250.554688 353.554688 250.554688 355.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.476562 158.28125 C 271.476562 159.898438 269.046875 159.898438 269.046875 158.28125 C 269.046875 156.660156 271.476562 156.660156 271.476562 158.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.296875 321.730469 C 226.296875 323.347656 223.867188 323.347656 223.867188 321.730469 C 223.867188 320.109375 226.296875 320.109375 226.296875 321.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.035156 367.703125 C 117.035156 369.324219 114.605469 369.324219 114.605469 367.703125 C 114.605469 366.085938 117.035156 366.085938 117.035156 367.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.183594 244.957031 C 309.183594 246.578125 306.753906 246.578125 306.753906 244.957031 C 306.753906 243.335938 309.183594 243.335938 309.183594 244.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.882812 152.519531 C 240.882812 154.140625 238.453125 154.140625 238.453125 152.519531 C 238.453125 150.898438 240.882812 150.898438 240.882812 152.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.683594 70.910156 L 178.320312 73.746094 L 175.046875 73.746094 Z M 176.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.128906 214.589844 C 253.128906 216.210938 250.699219 216.210938 250.699219 214.589844 C 250.699219 212.96875 253.128906 212.96875 253.128906 214.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.164062 231.746094 C 286.164062 233.367188 283.734375 233.367188 283.734375 231.746094 C 283.734375 230.128906 286.164062 230.128906 286.164062 231.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.640625 70.910156 L 207.277344 73.746094 L 204.003906 73.746094 Z M 205.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 345.6875 306.117188 C 345.6875 307.738281 343.257812 307.738281 343.257812 306.117188 C 343.257812 304.496094 345.6875 304.496094 345.6875 306.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.316406 70.910156 L 139.953125 73.746094 L 136.679688 73.746094 Z M 138.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.648438 206.746094 C 222.648438 208.367188 220.214844 208.367188 220.214844 206.746094 C 220.214844 205.125 222.648438 205.125 222.648438 206.746094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 181.789062 70.910156 L 183.425781 73.746094 L 180.152344 73.746094 Z M 181.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.726562 183.523438 C 258.726562 185.144531 256.296875 185.144531 256.296875 183.523438 C 256.296875 181.902344 258.726562 181.902344 258.726562 183.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.707031 70.910156 L 155.34375 73.746094 L 152.074219 73.746094 Z M 153.707031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.773438 243.492188 C 221.773438 245.113281 219.34375 245.113281 219.34375 243.492188 C 219.34375 241.875 221.773438 241.875 221.773438 243.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.261719 231.519531 C 262.261719 233.140625 259.832031 233.140625 259.832031 231.519531 C 259.832031 229.902344 262.261719 229.902344 262.261719 231.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.015625 70.910156 L 156.652344 73.746094 L 153.378906 73.746094 Z M 155.015625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.09375 70.910156 L 146.726562 73.746094 L 143.457031 73.746094 Z M 145.09375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.191406 70.910156 L 220.824219 73.746094 L 217.554688 73.746094 Z M 219.191406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.699219 70.910156 L 274.335938 73.746094 L 271.066406 73.746094 Z M 272.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.09375 311.695312 C 247.09375 313.316406 244.664062 313.316406 244.664062 311.695312 C 244.664062 310.078125 247.09375 310.078125 247.09375 311.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.1875 304.175781 C 325.1875 305.796875 322.757812 305.796875 322.757812 304.175781 C 322.757812 302.554688 325.1875 302.554688 325.1875 304.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.878906 303.484375 C 218.878906 305.105469 216.449219 305.105469 216.449219 303.484375 C 216.449219 301.863281 218.878906 301.863281 218.878906 303.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 187.441406 418.691406 L 189.078125 415.855469 L 185.804688 415.855469 Z M 187.441406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.765625 310.78125 C 280.765625 312.402344 278.335938 312.402344 278.335938 310.78125 C 278.335938 309.160156 280.765625 309.160156 280.765625 310.78125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.902344 70.910156 L 276.539062 73.746094 L 273.265625 73.746094 Z M 274.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.445312 237.878906 C 249.445312 239.496094 247.015625 239.496094 247.015625 237.878906 C 247.015625 236.257812 249.445312 236.257812 249.445312 237.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.800781 205.863281 C 300.800781 207.484375 298.367188 207.484375 298.367188 205.863281 C 298.367188 204.242188 300.800781 204.242188 300.800781 205.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.859375 232.261719 C 269.859375 233.882812 267.429688 233.882812 267.429688 232.261719 C 267.429688 230.640625 269.859375 230.640625 269.859375 232.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.964844 306.203125 C 287.964844 307.820312 285.535156 307.820312 285.535156 306.203125 C 285.535156 304.582031 287.964844 304.582031 287.964844 306.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.425781 264.644531 C 284.425781 266.265625 281.996094 266.265625 281.996094 264.644531 C 281.996094 263.023438 284.425781 263.023438 284.425781 264.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.4375 157.339844 C 234.4375 158.960938 232.007812 158.960938 232.007812 157.339844 C 232.007812 155.722656 234.4375 155.722656 234.4375 157.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.410156 328.828125 C 111.410156 330.449219 108.980469 330.449219 108.980469 328.828125 C 108.980469 327.210938 111.410156 327.210938 111.410156 328.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.425781 126.746094 C 246.425781 128.367188 243.996094 128.367188 243.996094 126.746094 C 243.996094 125.125 246.425781 125.125 246.425781 126.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.914062 271.007812 C 286.914062 272.628906 284.484375 272.628906 284.484375 271.007812 C 284.484375 269.386719 286.914062 269.386719 286.914062 271.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.683594 276.640625 C 265.683594 278.261719 263.253906 278.261719 263.253906 276.640625 C 263.253906 275.019531 265.683594 275.019531 265.683594 276.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.8125 267.480469 C 265.8125 269.101562 263.378906 269.101562 263.378906 267.480469 C 263.378906 265.859375 265.8125 265.859375 265.8125 267.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.574219 70.910156 L 236.210938 73.746094 L 232.941406 73.746094 Z M 234.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.222656 268.605469 C 242.222656 270.226562 239.792969 270.226562 239.792969 268.605469 C 239.792969 266.988281 242.222656 266.988281 242.222656 268.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 329.957031 227.066406 C 329.957031 228.6875 327.527344 228.6875 327.527344 227.066406 C 327.527344 225.449219 329.957031 225.449219 329.957031 227.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.160156 317.996094 C 230.160156 319.617188 227.730469 319.617188 227.730469 317.996094 C 227.730469 316.375 230.160156 316.375 230.160156 317.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.910156 70.910156 L 276.546875 73.746094 L 273.273438 73.746094 Z M 274.910156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.898438 282.921875 C 316.898438 284.542969 314.46875 284.542969 314.46875 282.921875 C 314.46875 281.304688 316.898438 281.304688 316.898438 282.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.292969 226.230469 C 174.292969 227.851562 171.859375 227.851562 171.859375 226.230469 C 171.859375 224.609375 174.292969 224.609375 174.292969 226.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.445312 249.027344 C 283.445312 250.644531 281.015625 250.644531 281.015625 249.027344 C 281.015625 247.40625 283.445312 247.40625 283.445312 249.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.085938 244.148438 C 250.085938 245.765625 247.65625 245.765625 247.65625 244.148438 C 247.65625 242.527344 250.085938 242.527344 250.085938 244.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.097656 70.910156 L 196.734375 73.746094 L 193.460938 73.746094 Z M 195.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.839844 154.128906 C 228.839844 155.746094 226.410156 155.746094 226.410156 154.128906 C 226.410156 152.507812 228.839844 152.507812 228.839844 154.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.214844 221.226562 C 266.214844 222.84375 263.785156 222.84375 263.785156 221.226562 C 263.785156 219.605469 266.214844 219.605469 266.214844 221.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.328125 209.578125 C 285.328125 211.199219 282.898438 211.199219 282.898438 209.578125 C 282.898438 207.957031 285.328125 207.957031 285.328125 209.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.546875 70.910156 L 267.183594 73.746094 L 263.910156 73.746094 Z M 265.546875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.808594 244.8125 C 289.808594 246.433594 287.378906 246.433594 287.378906 244.8125 C 287.378906 243.195312 289.808594 243.195312 289.808594 244.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.3125 161.933594 C 314.3125 163.554688 311.882812 163.554688 311.882812 161.933594 C 311.882812 160.3125 314.3125 160.3125 314.3125 161.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.257812 297.800781 C 256.257812 299.417969 253.824219 299.417969 253.824219 297.800781 C 253.824219 296.179688 256.257812 296.179688 256.257812 297.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.6875 280.160156 C 246.6875 281.78125 244.257812 281.78125 244.257812 280.160156 C 244.257812 278.542969 246.6875 278.542969 246.6875 280.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.539062 70.910156 L 291.175781 73.746094 L 287.902344 73.746094 Z M 289.539062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.207031 100.695312 C 317.207031 102.316406 314.777344 102.316406 314.777344 100.695312 C 314.777344 99.074219 317.207031 99.074219 317.207031 100.695312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.480469 70.910156 L 271.117188 73.746094 L 267.84375 73.746094 Z M 269.480469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.839844 70.910156 L 168.476562 73.746094 L 165.203125 73.746094 Z M 166.839844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.746094 173.492188 C 265.746094 175.113281 263.316406 175.113281 263.316406 173.492188 C 263.316406 171.871094 265.746094 171.871094 265.746094 173.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.898438 184.519531 C 238.898438 186.136719 236.46875 186.136719 236.46875 184.519531 C 236.46875 182.898438 238.898438 182.898438 238.898438 184.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.59375 257.367188 C 184.59375 258.984375 182.160156 258.984375 182.160156 257.367188 C 182.160156 255.746094 184.59375 255.746094 184.59375 257.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.476562 222.394531 C 294.476562 224.011719 292.046875 224.011719 292.046875 222.394531 C 292.046875 220.773438 294.476562 220.773438 294.476562 222.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.640625 265.253906 C 252.640625 266.875 250.210938 266.875 250.210938 265.253906 C 250.210938 263.636719 252.640625 263.636719 252.640625 265.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.730469 243.703125 C 162.730469 245.324219 160.300781 245.324219 160.300781 243.703125 C 160.300781 242.085938 162.730469 242.085938 162.730469 243.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.261719 184.050781 C 239.261719 185.671875 236.832031 185.671875 236.832031 184.050781 C 236.832031 182.433594 239.261719 182.433594 239.261719 184.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.941406 113.433594 C 245.941406 115.050781 243.511719 115.050781 243.511719 113.433594 C 243.511719 111.8125 245.941406 111.8125 245.941406 113.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.949219 293.277344 C 183.949219 294.894531 181.519531 294.894531 181.519531 293.277344 C 181.519531 291.65625 183.949219 291.65625 183.949219 293.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.125 70.910156 L 328.757812 73.746094 L 325.488281 73.746094 Z M 327.125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.046875 70.910156 L 179.683594 73.746094 L 176.410156 73.746094 Z M 178.046875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.984375 192.675781 C 260.984375 194.296875 258.554688 194.296875 258.554688 192.675781 C 258.554688 191.054688 260.984375 191.054688 260.984375 192.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.667969 95.414062 C 268.667969 97.035156 266.234375 97.035156 266.234375 95.414062 C 266.234375 93.792969 268.667969 93.792969 268.667969 95.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.699219 128.410156 C 251.699219 130.03125 249.269531 130.03125 249.269531 128.410156 C 249.269531 126.789062 251.699219 126.789062 251.699219 128.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.480469 127.882812 C 237.480469 129.503906 235.050781 129.503906 235.050781 127.882812 C 235.050781 126.261719 237.480469 126.261719 237.480469 127.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.199219 307.101562 C 263.199219 308.71875 260.769531 308.71875 260.769531 307.101562 C 260.769531 305.480469 263.199219 305.480469 263.199219 307.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.550781 249.152344 C 247.550781 250.769531 245.121094 250.769531 245.121094 249.152344 C 245.121094 247.53125 247.550781 247.53125 247.550781 249.152344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.140625 70.910156 L 214.777344 73.746094 L 211.503906 73.746094 Z M 213.140625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.796875 202.964844 C 194.796875 204.582031 192.367188 204.582031 192.367188 202.964844 C 192.367188 201.34375 194.796875 201.34375 194.796875 202.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.550781 202.046875 C 237.550781 203.667969 235.121094 203.667969 235.121094 202.046875 C 235.121094 200.429688 237.550781 200.429688 237.550781 202.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.929688 244.957031 C 231.929688 246.578125 229.5 246.578125 229.5 244.957031 C 229.5 243.335938 231.929688 243.335938 231.929688 244.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.871094 330.414062 C 310.871094 332.03125 308.441406 332.03125 308.441406 330.414062 C 308.441406 328.792969 310.871094 328.792969 310.871094 330.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.734375 155.03125 C 275.734375 156.648438 273.304688 156.648438 273.304688 155.03125 C 273.304688 153.410156 275.734375 153.410156 275.734375 155.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.425781 98.59375 C 230.425781 100.214844 227.996094 100.214844 227.996094 98.59375 C 227.996094 96.976562 230.425781 96.976562 230.425781 98.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.941406 132.816406 C 232.941406 134.433594 230.511719 134.433594 230.511719 132.816406 C 230.511719 131.195312 232.941406 131.195312 232.941406 132.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.148438 156.265625 C 226.148438 157.886719 223.71875 157.886719 223.71875 156.265625 C 223.71875 154.644531 226.148438 154.644531 226.148438 156.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.484375 255.195312 C 318.484375 256.816406 316.054688 256.816406 316.054688 255.195312 C 316.054688 253.574219 318.484375 253.574219 318.484375 255.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.414062 70.910156 L 203.050781 73.746094 L 199.78125 73.746094 Z M 201.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.1875 264.699219 C 286.1875 266.316406 283.757812 266.316406 283.757812 264.699219 C 283.757812 263.078125 286.1875 263.078125 286.1875 264.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.710938 191.101562 C 191.710938 192.722656 189.28125 192.722656 189.28125 191.101562 C 189.28125 189.484375 191.710938 189.484375 191.710938 191.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.386719 70.910156 L 158.023438 73.746094 L 154.75 73.746094 Z M 156.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.773438 115.917969 C 271.773438 117.539062 269.34375 117.539062 269.34375 115.917969 C 269.34375 114.300781 271.773438 114.300781 271.773438 115.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.675781 225.449219 C 242.675781 227.070312 240.246094 227.070312 240.246094 225.449219 C 240.246094 223.828125 242.675781 223.828125 242.675781 225.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.042969 200.515625 C 275.042969 202.132812 272.613281 202.132812 272.613281 200.515625 C 272.613281 198.894531 275.042969 198.894531 275.042969 200.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.816406 418.691406 L 201.453125 415.855469 L 198.183594 415.855469 Z M 199.816406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.890625 388.234375 C 219.890625 389.855469 217.460938 389.855469 217.460938 388.234375 C 217.460938 386.613281 219.890625 386.613281 219.890625 388.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 264.328125 70.910156 L 265.964844 73.746094 L 262.691406 73.746094 Z M 264.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.054688 161.976562 C 274.054688 163.597656 271.625 163.597656 271.625 161.976562 C 271.625 160.359375 274.054688 160.359375 274.054688 161.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.578125 260.546875 C 269.578125 262.164062 267.148438 262.164062 267.148438 260.546875 C 267.148438 258.925781 269.578125 258.925781 269.578125 260.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.316406 70.910156 L 145.953125 73.746094 L 142.679688 73.746094 Z M 144.316406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.996094 70.910156 L 216.632812 73.746094 L 213.363281 73.746094 Z M 214.996094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.796875 233.613281 C 159.796875 235.234375 157.367188 235.234375 157.367188 233.613281 C 157.367188 231.992188 159.796875 231.992188 159.796875 233.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.902344 148.140625 C 261.902344 149.761719 259.472656 149.761719 259.472656 148.140625 C 259.472656 146.519531 261.902344 146.519531 261.902344 148.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.820312 227.464844 C 330.820312 229.085938 328.386719 229.085938 328.386719 227.464844 C 328.386719 225.847656 330.820312 225.847656 330.820312 227.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.050781 158.511719 C 279.050781 160.128906 276.621094 160.128906 276.621094 158.511719 C 276.621094 156.890625 279.050781 156.890625 279.050781 158.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.195312 242.140625 C 254.195312 243.761719 251.765625 243.761719 251.765625 242.140625 C 251.765625 240.523438 254.195312 240.523438 254.195312 242.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.375 229.894531 C 120.375 231.511719 117.945312 231.511719 117.945312 229.894531 C 117.945312 228.273438 120.375 228.273438 120.375 229.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.683594 275.753906 C 193.683594 277.375 191.253906 277.375 191.253906 275.753906 C 191.253906 274.132812 193.683594 274.132812 193.683594 275.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.46875 307.949219 C 242.46875 309.570312 240.039062 309.570312 240.039062 307.949219 C 240.039062 306.328125 242.46875 306.328125 242.46875 307.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.484375 216.578125 C 167.484375 218.195312 165.054688 218.195312 165.054688 216.578125 C 165.054688 214.957031 167.484375 214.957031 167.484375 216.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.0625 312.546875 C 332.0625 314.167969 329.632812 314.167969 329.632812 312.546875 C 329.632812 310.925781 332.0625 310.925781 332.0625 312.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.992188 292.636719 C 317.992188 294.253906 315.5625 294.253906 315.5625 292.636719 C 315.5625 291.015625 317.992188 291.015625 317.992188 292.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.78125 304.328125 C 223.78125 305.945312 221.351562 305.945312 221.351562 304.328125 C 221.351562 302.707031 223.78125 302.707031 223.78125 304.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.796875 279.757812 C 263.796875 281.375 261.367188 281.375 261.367188 279.757812 C 261.367188 278.136719 263.796875 278.136719 263.796875 279.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.140625 263.09375 C 246.140625 264.714844 243.710938 264.714844 243.710938 263.09375 C 243.710938 261.472656 246.140625 261.472656 246.140625 263.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.789062 317.769531 C 107.789062 319.390625 105.359375 319.390625 105.359375 317.769531 C 105.359375 316.148438 107.789062 316.148438 107.789062 317.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.347656 136.257812 C 158.347656 137.878906 155.917969 137.878906 155.917969 136.257812 C 155.917969 134.636719 158.347656 134.636719 158.347656 136.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.277344 80.226562 C 270.277344 81.847656 267.847656 81.847656 267.847656 80.226562 C 267.847656 78.609375 270.277344 78.609375 270.277344 80.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.464844 308.714844 C 124.464844 310.335938 122.035156 310.335938 122.035156 308.714844 C 122.035156 307.097656 124.464844 307.097656 124.464844 308.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.785156 249.90625 C 311.785156 251.527344 309.355469 251.527344 309.355469 249.90625 C 309.355469 248.285156 311.785156 248.285156 311.785156 249.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.039062 299.75 C 295.039062 301.371094 292.609375 301.371094 292.609375 299.75 C 292.609375 298.128906 295.039062 298.128906 295.039062 299.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.425781 83.746094 C 166.425781 85.367188 163.996094 85.367188 163.996094 83.746094 C 163.996094 82.128906 166.425781 82.128906 166.425781 83.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.015625 270.9375 C 278.015625 272.558594 275.585938 272.558594 275.585938 270.9375 C 275.585938 269.320312 278.015625 269.320312 278.015625 270.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.109375 133.464844 C 175.109375 135.082031 172.679688 135.082031 172.679688 133.464844 C 172.679688 131.84375 175.109375 131.84375 175.109375 133.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.566406 236.085938 C 281.566406 237.703125 279.136719 237.703125 279.136719 236.085938 C 279.136719 234.464844 281.566406 234.464844 281.566406 236.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.792969 255.316406 C 278.792969 256.9375 276.363281 256.9375 276.363281 255.316406 C 276.363281 253.695312 278.792969 253.695312 278.792969 255.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.042969 253.902344 C 153.042969 255.523438 150.613281 255.523438 150.613281 253.902344 C 150.613281 252.28125 153.042969 252.28125 153.042969 253.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.535156 268.8125 C 224.535156 270.433594 222.105469 270.433594 222.105469 268.8125 C 222.105469 267.191406 224.535156 267.191406 224.535156 268.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.644531 212.613281 C 208.644531 214.234375 206.214844 214.234375 206.214844 212.613281 C 206.214844 210.992188 208.644531 210.992188 208.644531 212.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.355469 250.664062 C 189.355469 252.285156 186.925781 252.285156 186.925781 250.664062 C 186.925781 249.046875 189.355469 249.046875 189.355469 250.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.316406 238.972656 C 274.316406 240.589844 271.886719 240.589844 271.886719 238.972656 C 271.886719 237.351562 274.316406 237.351562 274.316406 238.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.214844 275.207031 C 247.214844 276.824219 244.785156 276.824219 244.785156 275.207031 C 244.785156 273.585938 247.214844 273.585938 247.214844 275.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.042969 296.9375 C 261.042969 298.558594 258.613281 298.558594 258.613281 296.9375 C 258.613281 295.316406 261.042969 295.316406 261.042969 296.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.617188 334.40625 C 214.617188 336.023438 212.183594 336.023438 212.183594 334.40625 C 212.183594 332.785156 214.617188 332.785156 214.617188 334.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.84375 275.21875 C 235.84375 276.835938 233.414062 276.835938 233.414062 275.21875 C 233.414062 273.597656 235.84375 273.597656 235.84375 275.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.875 252.328125 C 267.875 253.945312 265.445312 253.945312 265.445312 252.328125 C 265.445312 250.707031 267.875 250.707031 267.875 252.328125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.886719 70.910156 L 156.523438 73.746094 L 153.25 73.746094 Z M 154.886719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.273438 70.910156 L 224.910156 73.746094 L 221.636719 73.746094 Z M 223.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.160156 295.164062 C 309.160156 296.785156 306.730469 296.785156 306.730469 295.164062 C 306.730469 293.546875 309.160156 293.546875 309.160156 295.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.203125 270.398438 C 290.203125 272.019531 287.773438 272.019531 287.773438 270.398438 C 287.773438 268.777344 290.203125 268.777344 290.203125 270.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.261719 273.972656 C 273.261719 275.59375 270.832031 275.59375 270.832031 273.972656 C 270.832031 272.355469 273.261719 272.355469 273.261719 273.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.542969 318.980469 C 199.542969 320.601562 197.113281 320.601562 197.113281 318.980469 C 197.113281 317.359375 199.542969 317.359375 199.542969 318.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 372.75 219.558594 C 372.75 221.175781 370.320312 221.175781 370.320312 219.558594 C 370.320312 217.9375 372.75 217.9375 372.75 219.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.441406 346.25 C 234.441406 347.867188 232.007812 347.867188 232.007812 346.25 C 232.007812 344.628906 234.441406 344.628906 234.441406 346.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.445312 292.75 C 285.445312 294.371094 283.015625 294.371094 283.015625 292.75 C 283.015625 291.128906 285.445312 291.128906 285.445312 292.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.050781 220.820312 C 152.050781 222.4375 149.621094 222.4375 149.621094 220.820312 C 149.621094 219.199219 152.050781 219.199219 152.050781 220.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 349.003906 225.914062 C 349.003906 227.53125 346.574219 227.53125 346.574219 225.914062 C 346.574219 224.292969 349.003906 224.292969 349.003906 225.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.144531 221.40625 C 309.144531 223.027344 306.714844 223.027344 306.714844 221.40625 C 306.714844 219.789062 309.144531 219.789062 309.144531 221.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.75 210.695312 C 229.75 212.316406 227.320312 212.316406 227.320312 210.695312 C 227.320312 209.074219 229.75 209.074219 229.75 210.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.300781 305.191406 C 280.300781 306.808594 277.871094 306.808594 277.871094 305.191406 C 277.871094 303.570312 280.300781 303.570312 280.300781 305.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.339844 278.019531 C 265.339844 279.640625 262.910156 279.640625 262.910156 278.019531 C 262.910156 276.398438 265.339844 276.398438 265.339844 278.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.078125 256.824219 C 233.078125 258.445312 230.648438 258.445312 230.648438 256.824219 C 230.648438 255.207031 233.078125 255.207031 233.078125 256.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.601562 186.480469 C 248.601562 188.101562 246.171875 188.101562 246.171875 186.480469 C 246.171875 184.859375 248.601562 184.859375 248.601562 186.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.695312 240.097656 C 267.695312 241.71875 265.265625 241.71875 265.265625 240.097656 C 265.265625 238.476562 267.695312 238.476562 267.695312 240.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.714844 220.613281 C 288.714844 222.230469 286.285156 222.230469 286.285156 220.613281 C 286.285156 218.992188 288.714844 218.992188 288.714844 220.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.828125 241.925781 C 324.828125 243.546875 322.398438 243.546875 322.398438 241.925781 C 322.398438 240.308594 324.828125 240.308594 324.828125 241.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.277344 235.273438 C 192.277344 236.894531 189.847656 236.894531 189.847656 235.273438 C 189.847656 233.652344 192.277344 233.652344 192.277344 235.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.1875 256.195312 C 319.1875 257.8125 316.757812 257.8125 316.757812 256.195312 C 316.757812 254.574219 319.1875 254.574219 319.1875 256.195312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.125 418.691406 L 129.761719 415.855469 L 126.488281 415.855469 Z M 128.125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.726562 294.613281 C 277.726562 296.234375 275.296875 296.234375 275.296875 294.613281 C 275.296875 292.992188 277.726562 292.992188 277.726562 294.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.640625 315.34375 C 226.640625 316.964844 224.207031 316.964844 224.207031 315.34375 C 224.207031 313.722656 226.640625 313.722656 226.640625 315.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.773438 195.585938 C 291.773438 197.203125 289.34375 197.203125 289.34375 195.585938 C 289.34375 193.964844 291.773438 193.964844 291.773438 195.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.378906 233.648438 C 274.378906 235.265625 271.949219 235.265625 271.949219 233.648438 C 271.949219 232.027344 274.378906 232.027344 274.378906 233.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.316406 335.386719 C 207.316406 337.007812 204.886719 337.007812 204.886719 335.386719 C 204.886719 333.769531 207.316406 333.769531 207.316406 335.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.277344 337.535156 C 163.277344 339.15625 160.847656 339.15625 160.847656 337.535156 C 160.847656 335.914062 163.277344 335.914062 163.277344 337.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.429688 274.089844 C 256.429688 275.710938 254 275.710938 254 274.089844 C 254 272.46875 256.429688 272.46875 256.429688 274.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.355469 274.066406 C 290.355469 275.683594 287.925781 275.683594 287.925781 274.066406 C 287.925781 272.445312 290.355469 272.445312 290.355469 274.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.417969 70.910156 L 165.054688 73.746094 L 161.78125 73.746094 Z M 163.417969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.738281 219.910156 C 237.738281 221.53125 235.308594 221.53125 235.308594 219.910156 C 235.308594 218.292969 237.738281 218.292969 237.738281 219.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.203125 216.871094 C 248.203125 218.488281 245.769531 218.488281 245.769531 216.871094 C 245.769531 215.25 248.203125 215.25 248.203125 216.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.277344 335.765625 C 240.277344 337.386719 237.847656 337.386719 237.847656 335.765625 C 237.847656 334.144531 240.277344 334.144531 240.277344 335.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.28125 257.632812 C 135.28125 259.253906 132.851562 259.253906 132.851562 257.632812 C 132.851562 256.011719 135.28125 256.011719 135.28125 257.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.882812 343.71875 C 275.882812 345.339844 273.453125 345.339844 273.453125 343.71875 C 273.453125 342.097656 275.882812 342.097656 275.882812 343.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.078125 218.128906 C 237.078125 219.75 234.648438 219.75 234.648438 218.128906 C 234.648438 216.507812 237.078125 216.507812 237.078125 218.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.609375 268.136719 C 292.609375 269.753906 290.179688 269.753906 290.179688 268.136719 C 290.179688 266.515625 292.609375 266.515625 292.609375 268.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.917969 315.527344 C 136.917969 317.148438 134.488281 317.148438 134.488281 315.527344 C 134.488281 313.910156 136.917969 313.910156 136.917969 315.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.261719 279.230469 C 230.261719 280.851562 227.832031 280.851562 227.832031 279.230469 C 227.832031 277.609375 230.261719 277.609375 230.261719 279.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.847656 360.554688 C 226.847656 362.171875 224.414062 362.171875 224.414062 360.554688 C 224.414062 358.933594 226.847656 358.933594 226.847656 360.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.332031 292.007812 C 255.332031 293.628906 252.902344 293.628906 252.902344 292.007812 C 252.902344 290.386719 255.332031 290.386719 255.332031 292.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.851562 291.242188 C 238.851562 292.863281 236.421875 292.863281 236.421875 291.242188 C 236.421875 289.621094 238.851562 289.621094 238.851562 291.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 430.355469 177.671875 C 430.355469 179.289062 427.925781 179.289062 427.925781 177.671875 C 427.925781 176.050781 430.355469 176.050781 430.355469 177.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.292969 259.367188 C 276.292969 260.988281 273.863281 260.988281 273.863281 259.367188 C 273.863281 257.746094 276.292969 257.746094 276.292969 259.367188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.621094 418.691406 L 238.257812 415.855469 L 234.984375 415.855469 Z M 236.621094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 166.429688 92.636719 C 166.429688 94.257812 163.996094 94.257812 163.996094 92.636719 C 163.996094 91.015625 166.429688 91.015625 166.429688 92.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.78125 304.324219 C 251.78125 305.941406 249.351562 305.941406 249.351562 304.324219 C 249.351562 302.703125 251.78125 302.703125 251.78125 304.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.601562 102.171875 C 176.601562 103.789062 174.171875 103.789062 174.171875 102.171875 C 174.171875 100.550781 176.601562 100.550781 176.601562 102.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.351562 216.394531 C 231.351562 218.015625 228.921875 218.015625 228.921875 216.394531 C 228.921875 214.773438 231.351562 214.773438 231.351562 216.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.585938 375.058594 C 262.585938 376.679688 260.15625 376.679688 260.15625 375.058594 C 260.15625 373.4375 262.585938 373.4375 262.585938 375.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.921875 214.335938 C 314.921875 215.957031 312.492188 215.957031 312.492188 214.335938 C 312.492188 212.71875 314.921875 212.71875 314.921875 214.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.75 318.945312 C 231.75 320.566406 229.320312 320.566406 229.320312 318.945312 C 229.320312 317.324219 231.75 317.324219 231.75 318.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.3125 301.960938 C 265.3125 303.578125 262.882812 303.578125 262.882812 301.960938 C 262.882812 300.339844 265.3125 300.339844 265.3125 301.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.785156 260.035156 C 299.785156 261.65625 297.355469 261.65625 297.355469 260.035156 C 297.355469 258.417969 299.785156 258.417969 299.785156 260.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.449219 228.941406 C 203.449219 230.5625 201.019531 230.5625 201.019531 228.941406 C 201.019531 227.320312 203.449219 227.320312 203.449219 228.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.207031 267.445312 C 289.207031 269.0625 286.777344 269.0625 286.777344 267.445312 C 286.777344 265.824219 289.207031 265.824219 289.207031 267.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.621094 251.261719 C 299.621094 252.882812 297.191406 252.882812 297.191406 251.261719 C 297.191406 249.644531 299.621094 249.644531 299.621094 251.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.785156 309.402344 C 278.785156 311.023438 276.355469 311.023438 276.355469 309.402344 C 276.355469 307.785156 278.785156 307.785156 278.785156 309.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.949219 336.667969 C 261.949219 338.289062 259.519531 338.289062 259.519531 336.667969 C 259.519531 335.046875 261.949219 335.046875 261.949219 336.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.5625 359.214844 C 252.5625 360.832031 250.132812 360.832031 250.132812 359.214844 C 250.132812 357.59375 252.5625 357.59375 252.5625 359.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.574219 345.695312 C 229.574219 347.316406 227.144531 347.316406 227.144531 345.695312 C 227.144531 344.074219 229.574219 344.074219 229.574219 345.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.742188 235.742188 C 273.742188 237.363281 271.3125 237.363281 271.3125 235.742188 C 271.3125 234.121094 273.742188 234.121094 273.742188 235.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.707031 265.300781 C 297.707031 266.917969 295.273438 266.917969 295.273438 265.300781 C 295.273438 263.679688 297.707031 263.679688 297.707031 265.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.035156 216.945312 C 264.035156 218.566406 261.605469 218.566406 261.605469 216.945312 C 261.605469 215.328125 264.035156 215.328125 264.035156 216.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.792969 212.152344 C 278.792969 213.773438 276.363281 213.773438 276.363281 212.152344 C 276.363281 210.53125 278.792969 210.53125 278.792969 212.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.160156 98.730469 C 256.160156 100.347656 253.730469 100.347656 253.730469 98.730469 C 253.730469 97.109375 256.160156 97.109375 256.160156 98.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.546875 127.699219 C 208.546875 129.320312 206.117188 129.320312 206.117188 127.699219 C 206.117188 126.078125 208.546875 126.078125 208.546875 127.699219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.761719 70.910156 L 252.394531 73.746094 L 249.125 73.746094 Z M 250.761719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.042969 137.363281 C 229.042969 138.980469 226.613281 138.980469 226.613281 137.363281 C 226.613281 135.742188 229.042969 135.742188 229.042969 137.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.078125 127.050781 C 261.078125 128.671875 258.648438 128.671875 258.648438 127.050781 C 258.648438 125.429688 261.078125 125.429688 261.078125 127.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.769531 276.230469 C 254.769531 277.851562 252.339844 277.851562 252.339844 276.230469 C 252.339844 274.609375 254.769531 274.609375 254.769531 276.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.40625 252.308594 C 238.40625 253.925781 235.976562 253.925781 235.976562 252.308594 C 235.976562 250.6875 238.40625 250.6875 238.40625 252.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.417969 234.378906 C 314.417969 235.996094 311.988281 235.996094 311.988281 234.378906 C 311.988281 232.757812 314.417969 232.757812 314.417969 234.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.789062 201.992188 C 236.789062 203.609375 234.359375 203.609375 234.359375 201.992188 C 234.359375 200.371094 236.789062 200.371094 236.789062 201.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.601562 226.816406 C 223.601562 228.433594 221.171875 228.433594 221.171875 226.816406 C 221.171875 225.195312 223.601562 225.195312 223.601562 226.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.441406 291.585938 C 204.441406 293.207031 202.011719 293.207031 202.011719 291.585938 C 202.011719 289.96875 204.441406 289.96875 204.441406 291.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.769531 279.777344 C 305.769531 281.398438 303.339844 281.398438 303.339844 279.777344 C 303.339844 278.15625 305.769531 278.15625 305.769531 279.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.699219 304.8125 C 314.699219 306.433594 312.269531 306.433594 312.269531 304.8125 C 312.269531 303.191406 314.699219 303.191406 314.699219 304.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.53125 277.292969 C 311.53125 278.910156 309.101562 278.910156 309.101562 277.292969 C 309.101562 275.671875 311.53125 275.671875 311.53125 277.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.125 70.910156 L 144.761719 73.746094 L 141.488281 73.746094 Z M 143.125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.226562 70.910156 L 136.859375 73.746094 L 133.589844 73.746094 Z M 135.226562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.136719 281.480469 C 272.136719 283.101562 269.707031 283.101562 269.707031 281.480469 C 269.707031 279.863281 272.136719 279.863281 272.136719 281.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 208.550781 111.484375 C 208.550781 113.105469 206.121094 113.105469 206.121094 111.484375 C 206.121094 109.863281 208.550781 109.863281 208.550781 111.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.867188 146.371094 C 271.867188 147.988281 269.4375 147.988281 269.4375 146.371094 C 269.4375 144.75 271.867188 144.75 271.867188 146.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.789062 224.773438 C 275.789062 226.394531 273.359375 226.394531 273.359375 224.773438 C 273.359375 223.152344 275.789062 223.152344 275.789062 224.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.058594 176.269531 C 277.058594 177.890625 274.628906 177.890625 274.628906 176.269531 C 274.628906 174.648438 277.058594 174.648438 277.058594 176.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.082031 185.03125 C 232.082031 186.652344 229.652344 186.652344 229.652344 185.03125 C 229.652344 183.414062 232.082031 183.414062 232.082031 185.03125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.269531 70.910156 L 206.902344 73.746094 L 203.632812 73.746094 Z M 205.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.710938 245.789062 C 239.710938 247.40625 237.28125 247.40625 237.28125 245.789062 C 237.28125 244.167969 239.710938 244.167969 239.710938 245.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.886719 247.382812 C 321.886719 249.003906 319.457031 249.003906 319.457031 247.382812 C 319.457031 245.765625 321.886719 245.765625 321.886719 247.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230 418.691406 L 231.636719 415.855469 L 228.367188 415.855469 Z M 230 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.96875 216.636719 C 306.96875 218.257812 304.539062 218.257812 304.539062 216.636719 C 304.539062 215.015625 306.96875 215.015625 306.96875 216.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.925781 315.890625 C 226.925781 317.511719 224.496094 317.511719 224.496094 315.890625 C 224.496094 314.273438 226.925781 314.273438 226.925781 315.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.386719 248.714844 C 137.386719 250.332031 134.957031 250.332031 134.957031 248.714844 C 134.957031 247.09375 137.386719 247.09375 137.386719 248.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.101562 365.449219 C 242.101562 367.066406 239.671875 367.066406 239.671875 365.449219 C 239.671875 363.828125 242.101562 363.828125 242.101562 365.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.460938 245.320312 C 217.460938 246.941406 215.03125 246.941406 215.03125 245.320312 C 215.03125 243.699219 217.460938 243.699219 217.460938 245.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.230469 253.164062 C 273.230469 254.785156 270.800781 254.785156 270.800781 253.164062 C 270.800781 251.546875 273.230469 251.546875 273.230469 253.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.742188 203.53125 C 269.742188 205.152344 267.3125 205.152344 267.3125 203.53125 C 267.3125 201.910156 269.742188 201.910156 269.742188 203.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.597656 357.894531 C 247.597656 359.511719 245.167969 359.511719 245.167969 357.894531 C 245.167969 356.273438 247.597656 356.273438 247.597656 357.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.074219 169.210938 C 299.074219 170.832031 296.644531 170.832031 296.644531 169.210938 C 296.644531 167.589844 299.074219 167.589844 299.074219 169.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.542969 333.8125 C 256.542969 335.433594 254.109375 335.433594 254.109375 333.8125 C 254.109375 332.195312 256.542969 332.195312 256.542969 333.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.996094 226.023438 C 300.996094 227.644531 298.566406 227.644531 298.566406 226.023438 C 298.566406 224.402344 300.996094 224.402344 300.996094 226.023438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.992188 70.910156 L 154.628906 73.746094 L 151.359375 73.746094 Z M 152.992188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.878906 70.910156 L 174.515625 73.746094 L 171.242188 73.746094 Z M 172.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.457031 334.703125 C 264.457031 336.324219 262.027344 336.324219 262.027344 334.703125 C 262.027344 333.082031 264.457031 333.082031 264.457031 334.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.589844 266.675781 C 247.589844 268.292969 245.160156 268.292969 245.160156 266.675781 C 245.160156 265.054688 247.589844 265.054688 247.589844 266.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.402344 259.742188 C 250.402344 261.363281 247.972656 261.363281 247.972656 259.742188 C 247.972656 258.121094 250.402344 258.121094 250.402344 259.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.683594 304.972656 C 249.683594 306.59375 247.253906 306.59375 247.253906 304.972656 C 247.253906 303.351562 249.683594 303.351562 249.683594 304.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.507812 278.773438 C 179.507812 280.394531 177.074219 280.394531 177.074219 278.773438 C 177.074219 277.15625 179.507812 277.15625 179.507812 278.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.652344 307.6875 C 335.652344 309.308594 333.222656 309.308594 333.222656 307.6875 C 333.222656 306.070312 335.652344 306.070312 335.652344 307.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.082031 70.910156 L 132.71875 73.746094 L 129.445312 73.746094 Z M 131.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.996094 248.039062 C 299.996094 249.65625 297.566406 249.65625 297.566406 248.039062 C 297.566406 246.417969 299.996094 246.417969 299.996094 248.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.058594 258.117188 C 256.058594 259.734375 253.628906 259.734375 253.628906 258.117188 C 253.628906 256.496094 256.058594 256.496094 256.058594 258.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.765625 294.230469 C 247.765625 295.847656 245.335938 295.847656 245.335938 294.230469 C 245.335938 292.609375 247.765625 292.609375 247.765625 294.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.894531 139.078125 C 244.894531 140.699219 242.464844 140.699219 242.464844 139.078125 C 242.464844 137.460938 244.894531 137.460938 244.894531 139.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.957031 349.546875 C 312.957031 351.167969 310.527344 351.167969 310.527344 349.546875 C 310.527344 347.925781 312.957031 347.925781 312.957031 349.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.617188 247.867188 C 308.617188 249.488281 306.1875 249.488281 306.1875 247.867188 C 306.1875 246.246094 308.617188 246.246094 308.617188 247.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.390625 243.957031 C 170.390625 245.574219 167.960938 245.574219 167.960938 243.957031 C 167.960938 242.335938 170.390625 242.335938 170.390625 243.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.875 292.738281 C 272.875 294.355469 270.445312 294.355469 270.445312 292.738281 C 270.445312 291.117188 272.875 291.117188 272.875 292.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.777344 311.164062 C 284.777344 312.785156 282.347656 312.785156 282.347656 311.164062 C 282.347656 309.546875 284.777344 309.546875 284.777344 311.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.671875 142.695312 C 163.671875 144.3125 161.242188 144.3125 161.242188 142.695312 C 161.242188 141.074219 163.671875 141.074219 163.671875 142.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.125 403.089844 C 122.125 404.710938 119.695312 404.710938 119.695312 403.089844 C 119.695312 401.472656 122.125 401.472656 122.125 403.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.921875 300.613281 C 258.921875 302.234375 256.492188 302.234375 256.492188 300.613281 C 256.492188 298.996094 258.921875 298.996094 258.921875 300.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.769531 282.996094 C 253.769531 284.617188 251.339844 284.617188 251.339844 282.996094 C 251.339844 281.375 253.769531 281.375 253.769531 282.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.058594 70.910156 L 220.695312 73.746094 L 217.421875 73.746094 Z M 219.058594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.902344 70.910156 L 225.539062 73.746094 L 222.265625 73.746094 Z M 223.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.460938 334.8125 C 146.460938 336.429688 144.03125 336.429688 144.03125 334.8125 C 144.03125 333.191406 146.460938 333.191406 146.460938 334.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.195312 290.355469 C 201.195312 291.972656 198.765625 291.972656 198.765625 290.355469 C 198.765625 288.734375 201.195312 288.734375 201.195312 290.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.933594 281.140625 C 238.933594 282.761719 236.503906 282.761719 236.503906 281.140625 C 236.503906 279.523438 238.933594 279.523438 238.933594 281.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.042969 329.734375 C 288.042969 331.351562 285.613281 331.351562 285.613281 329.734375 C 285.613281 328.113281 288.042969 328.113281 288.042969 329.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.75 331.46875 C 210.75 333.089844 208.320312 333.089844 208.320312 331.46875 C 208.320312 329.851562 210.75 329.851562 210.75 331.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.847656 152.773438 C 239.847656 154.394531 237.417969 154.394531 237.417969 152.773438 C 237.417969 151.15625 239.847656 151.15625 239.847656 152.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.410156 349.421875 C 262.410156 351.039062 259.980469 351.039062 259.980469 349.421875 C 259.980469 347.800781 262.410156 347.800781 262.410156 349.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.894531 239.925781 C 299.894531 241.542969 297.464844 241.542969 297.464844 239.925781 C 297.464844 238.304688 299.894531 238.304688 299.894531 239.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.585938 263.316406 C 199.585938 264.933594 197.15625 264.933594 197.15625 263.316406 C 197.15625 261.695312 199.585938 261.695312 199.585938 263.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.195312 270.671875 C 314.195312 272.289062 311.761719 272.289062 311.761719 270.671875 C 311.761719 269.050781 314.195312 269.050781 314.195312 270.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.800781 275.316406 C 291.800781 276.9375 289.371094 276.9375 289.371094 275.316406 C 289.371094 273.695312 291.800781 273.695312 291.800781 275.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.621094 245.3125 C 279.621094 246.933594 277.191406 246.933594 277.191406 245.3125 C 277.191406 243.691406 279.621094 243.691406 279.621094 245.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.265625 299.46875 C 250.265625 301.089844 247.835938 301.089844 247.835938 299.46875 C 247.835938 297.847656 250.265625 297.847656 250.265625 299.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.070312 70.910156 L 203.707031 73.746094 L 200.433594 73.746094 Z M 202.070312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.929688 70.910156 L 238.566406 73.746094 L 235.292969 73.746094 Z M 236.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.15625 299.050781 C 216.15625 300.671875 213.726562 300.671875 213.726562 299.050781 C 213.726562 297.429688 216.15625 297.429688 216.15625 299.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.507812 258.007812 C 287.507812 259.625 285.078125 259.625 285.078125 258.007812 C 285.078125 256.386719 287.507812 256.386719 287.507812 258.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 117.375 241.066406 C 117.375 242.6875 114.945312 242.6875 114.945312 241.066406 C 114.945312 239.449219 117.375 239.449219 117.375 241.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.144531 281.871094 C 313.144531 283.488281 310.714844 283.488281 310.714844 281.871094 C 310.714844 280.25 313.144531 280.25 313.144531 281.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.640625 339.832031 C 275.640625 341.453125 273.210938 341.453125 273.210938 339.832031 C 273.210938 338.210938 275.640625 338.210938 275.640625 339.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.96875 215.460938 C 146.96875 217.082031 144.539062 217.082031 144.539062 215.460938 C 144.539062 213.84375 146.96875 213.84375 146.96875 215.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.757812 250.539062 C 251.757812 252.160156 249.328125 252.160156 249.328125 250.539062 C 249.328125 248.917969 251.757812 248.917969 251.757812 250.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.015625 377.867188 C 118.015625 379.488281 115.585938 379.488281 115.585938 377.867188 C 115.585938 376.246094 118.015625 376.246094 118.015625 377.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.261719 218.238281 C 270.261719 219.859375 267.832031 219.859375 267.832031 218.238281 C 267.832031 216.621094 270.261719 216.621094 270.261719 218.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.632812 292.507812 C 284.632812 294.128906 282.203125 294.128906 282.203125 292.507812 C 282.203125 290.890625 284.632812 290.890625 284.632812 292.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.289062 277.738281 C 252.289062 279.359375 249.859375 279.359375 249.859375 277.738281 C 249.859375 276.121094 252.289062 276.121094 252.289062 277.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.496094 240.824219 C 168.496094 242.445312 166.066406 242.445312 166.066406 240.824219 C 166.066406 239.203125 168.496094 239.203125 168.496094 240.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.339844 70.910156 L 120.976562 73.746094 L 117.707031 73.746094 Z M 119.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.09375 307.898438 C 245.09375 309.515625 242.664062 309.515625 242.664062 307.898438 C 242.664062 306.277344 245.09375 306.277344 245.09375 307.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.128906 335.824219 C 279.128906 337.445312 276.699219 337.445312 276.699219 335.824219 C 276.699219 334.203125 279.128906 334.203125 279.128906 335.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.539062 314.183594 C 243.539062 315.804688 241.105469 315.804688 241.105469 314.183594 C 241.105469 312.566406 243.539062 312.566406 243.539062 314.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.457031 235.402344 C 273.457031 237.019531 271.027344 237.019531 271.027344 235.402344 C 271.027344 233.78125 273.457031 233.78125 273.457031 235.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.480469 240.886719 C 253.480469 242.507812 251.050781 242.507812 251.050781 240.886719 C 251.050781 239.269531 253.480469 239.269531 253.480469 240.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.621094 258 C 194.621094 259.621094 192.191406 259.621094 192.191406 258 C 192.191406 256.382812 194.621094 256.382812 194.621094 258 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.375 242.277344 C 232.375 243.898438 229.941406 243.898438 229.941406 242.277344 C 229.941406 240.660156 232.375 240.660156 232.375 242.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.585938 131.839844 C 163.585938 133.460938 161.15625 133.460938 161.15625 131.839844 C 161.15625 130.222656 163.585938 130.222656 163.585938 131.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.292969 287.277344 C 164.292969 288.894531 161.863281 288.894531 161.863281 287.277344 C 161.863281 285.65625 164.292969 285.65625 164.292969 287.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.070312 256.402344 C 314.070312 258.023438 311.640625 258.023438 311.640625 256.402344 C 311.640625 254.78125 314.070312 254.78125 314.070312 256.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.582031 70.910156 L 143.21875 73.746094 L 139.945312 73.746094 Z M 141.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.238281 216.027344 C 189.238281 217.648438 186.808594 217.648438 186.808594 216.027344 C 186.808594 214.410156 189.238281 214.410156 189.238281 216.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.609375 219.054688 C 258.609375 220.675781 256.179688 220.675781 256.179688 219.054688 C 256.179688 217.4375 258.609375 217.4375 258.609375 219.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.519531 142.378906 C 210.519531 144 208.085938 144 208.085938 142.378906 C 208.085938 140.757812 210.519531 140.757812 210.519531 142.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.875 385.152344 C 210.875 386.773438 208.445312 386.773438 208.445312 385.152344 C 208.445312 383.53125 210.875 383.53125 210.875 385.152344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.847656 418.691406 L 130.484375 415.855469 L 127.210938 415.855469 Z M 128.847656 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.566406 418.691406 L 255.203125 415.855469 L 251.929688 415.855469 Z M 253.566406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.789062 296.351562 C 128.789062 297.972656 126.359375 297.972656 126.359375 296.351562 C 126.359375 294.730469 128.789062 294.730469 128.789062 296.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.292969 176.375 C 239.292969 177.996094 236.863281 177.996094 236.863281 176.375 C 236.863281 174.757812 239.292969 174.757812 239.292969 176.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.164062 217.90625 C 271.164062 219.523438 268.734375 219.523438 268.734375 217.90625 C 268.734375 216.285156 271.164062 216.285156 271.164062 217.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.074219 222.546875 C 247.074219 224.167969 244.644531 224.167969 244.644531 222.546875 C 244.644531 220.925781 247.074219 220.925781 247.074219 222.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.804688 111.1875 C 254.804688 112.808594 252.375 112.808594 252.375 111.1875 C 252.375 109.570312 254.804688 109.570312 254.804688 111.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.09375 233.167969 C 250.09375 234.789062 247.664062 234.789062 247.664062 233.167969 C 247.664062 231.546875 250.09375 231.546875 250.09375 233.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.28125 70.910156 L 195.917969 73.746094 L 192.644531 73.746094 Z M 194.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.035156 291.441406 C 253.035156 293.0625 250.605469 293.0625 250.605469 291.441406 C 250.605469 289.820312 253.035156 289.820312 253.035156 291.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.574219 344.121094 C 282.574219 345.742188 280.144531 345.742188 280.144531 344.121094 C 280.144531 342.503906 282.574219 342.503906 282.574219 344.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 210.425781 103.628906 C 210.425781 105.25 207.996094 105.25 207.996094 103.628906 C 207.996094 102.007812 210.425781 102.007812 210.425781 103.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.210938 253.25 C 264.210938 254.867188 261.78125 254.867188 261.78125 253.25 C 261.78125 251.628906 264.210938 251.628906 264.210938 253.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.105469 328.105469 C 313.105469 329.726562 310.671875 329.726562 310.671875 328.105469 C 310.671875 326.488281 313.105469 326.488281 313.105469 328.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.082031 291.613281 C 271.082031 293.234375 268.652344 293.234375 268.652344 291.613281 C 268.652344 289.996094 271.082031 289.996094 271.082031 291.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.738281 70.910156 L 218.371094 73.746094 L 215.101562 73.746094 Z M 216.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.445312 208.253906 C 278.445312 209.875 276.015625 209.875 276.015625 208.253906 C 276.015625 206.632812 278.445312 206.632812 278.445312 208.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.199219 198.449219 C 168.199219 200.070312 165.765625 200.070312 165.765625 198.449219 C 165.765625 196.832031 168.199219 196.832031 168.199219 198.449219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.644531 70.910156 L 176.28125 73.746094 L 173.007812 73.746094 Z M 174.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.160156 279.96875 C 257.160156 281.589844 254.730469 281.589844 254.730469 279.96875 C 254.730469 278.347656 257.160156 278.347656 257.160156 279.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.867188 316.914062 C 283.867188 318.535156 281.4375 318.535156 281.4375 316.914062 C 281.4375 315.292969 283.867188 315.292969 283.867188 316.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.402344 190.140625 C 283.402344 191.761719 280.972656 191.761719 280.972656 190.140625 C 280.972656 188.523438 283.402344 188.523438 283.402344 190.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.714844 207.882812 C 182.714844 209.503906 180.285156 209.503906 180.285156 207.882812 C 180.285156 206.261719 182.714844 206.261719 182.714844 207.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.488281 403.480469 C 229.488281 405.097656 227.058594 405.097656 227.058594 403.480469 C 227.058594 401.859375 229.488281 401.859375 229.488281 403.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.601562 381.394531 C 242.601562 383.015625 240.171875 383.015625 240.171875 381.394531 C 240.171875 379.773438 242.601562 379.773438 242.601562 381.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 361.820312 405.847656 C 361.820312 407.46875 359.390625 407.46875 359.390625 405.847656 C 359.390625 404.230469 361.820312 404.230469 361.820312 405.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.71875 70.910156 L 143.355469 73.746094 L 140.082031 73.746094 Z M 141.71875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.621094 70.910156 L 288.257812 73.746094 L 284.984375 73.746094 Z M 286.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.972656 234.652344 C 260.972656 236.273438 258.542969 236.273438 258.542969 234.652344 C 258.542969 233.03125 260.972656 233.03125 260.972656 234.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.089844 311.550781 C 262.089844 313.167969 259.660156 313.167969 259.660156 311.550781 C 259.660156 309.929688 262.089844 309.929688 262.089844 311.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.824219 280.140625 C 277.824219 281.761719 275.394531 281.761719 275.394531 280.140625 C 275.394531 278.519531 277.824219 278.519531 277.824219 280.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.578125 255.371094 C 283.578125 256.988281 281.148438 256.988281 281.148438 255.371094 C 281.148438 253.75 283.578125 253.75 283.578125 255.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.941406 137.746094 C 212.941406 139.367188 210.511719 139.367188 210.511719 137.746094 C 210.511719 136.128906 212.941406 136.128906 212.941406 137.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.40625 70.910156 L 177.042969 73.746094 L 173.769531 73.746094 Z M 175.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.140625 293.160156 C 235.140625 294.78125 232.710938 294.78125 232.710938 293.160156 C 232.710938 291.542969 235.140625 291.542969 235.140625 293.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.785156 322.472656 C 253.785156 324.09375 251.351562 324.09375 251.351562 322.472656 C 251.351562 320.855469 253.785156 320.855469 253.785156 322.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.117188 319.902344 C 155.117188 321.523438 152.6875 321.523438 152.6875 319.902344 C 152.6875 318.285156 155.117188 318.285156 155.117188 319.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.476562 258.097656 C 271.476562 259.714844 269.046875 259.714844 269.046875 258.097656 C 269.046875 256.476562 271.476562 256.476562 271.476562 258.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 416.921875 70.910156 L 418.558594 73.746094 L 415.285156 73.746094 Z M 416.921875 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.832031 70.910156 L 166.46875 73.746094 L 163.199219 73.746094 Z M 164.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.933594 70.910156 L 137.570312 73.746094 L 134.296875 73.746094 Z M 135.933594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.445312 70.910156 L 142.082031 73.746094 L 138.808594 73.746094 Z M 140.445312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.074219 271.945312 C 290.074219 273.566406 287.644531 273.566406 287.644531 271.945312 C 287.644531 270.328125 290.074219 270.328125 290.074219 271.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.699219 334.269531 C 213.699219 335.886719 211.269531 335.886719 211.269531 334.269531 C 211.269531 332.648438 213.699219 332.648438 213.699219 334.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.921875 292.90625 C 238.921875 294.527344 236.492188 294.527344 236.492188 292.90625 C 236.492188 291.285156 238.921875 291.285156 238.921875 292.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.285156 308.628906 C 138.285156 310.25 135.855469 310.25 135.855469 308.628906 C 135.855469 307.007812 138.285156 307.007812 138.285156 308.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.371094 199.433594 C 213.371094 201.054688 210.941406 201.054688 210.941406 199.433594 C 210.941406 197.8125 213.371094 197.8125 213.371094 199.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.089844 308.875 C 273.089844 310.496094 270.660156 310.496094 270.660156 308.875 C 270.660156 307.253906 273.089844 307.253906 273.089844 308.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.878906 129.75 C 152.878906 131.367188 150.449219 131.367188 150.449219 129.75 C 150.449219 128.128906 152.878906 128.128906 152.878906 129.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.878906 129.75 C 152.878906 131.367188 150.449219 131.367188 150.449219 129.75 C 150.449219 128.128906 152.878906 128.128906 152.878906 129.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.386719 270.871094 C 258.386719 272.488281 255.957031 272.488281 255.957031 270.871094 C 255.957031 269.25 258.386719 269.25 258.386719 270.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.089844 308.875 C 273.089844 310.496094 270.660156 310.496094 270.660156 308.875 C 270.660156 307.253906 273.089844 307.253906 273.089844 308.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.175781 201.253906 C 176.175781 202.875 173.746094 202.875 173.746094 201.253906 C 173.746094 199.636719 176.175781 199.636719 176.175781 201.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.828125 353.554688 C 150.828125 355.175781 148.398438 355.175781 148.398438 353.554688 C 148.398438 351.933594 150.828125 351.933594 150.828125 353.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.148438 91.449219 C 275.148438 93.066406 272.71875 93.066406 272.71875 91.449219 C 272.71875 89.828125 275.148438 89.828125 275.148438 91.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.691406 324.105469 C 356.691406 325.726562 354.261719 325.726562 354.261719 324.105469 C 354.261719 322.484375 356.691406 322.484375 356.691406 324.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.605469 221.644531 C 264.605469 223.265625 262.175781 223.265625 262.175781 221.644531 C 262.175781 220.023438 264.605469 220.023438 264.605469 221.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.023438 88.832031 C 251.023438 90.449219 248.59375 90.449219 248.59375 88.832031 C 248.59375 87.210938 251.023438 87.210938 251.023438 88.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.855469 304.835938 C 273.855469 306.457031 271.425781 306.457031 271.425781 304.835938 C 271.425781 303.214844 273.855469 303.214844 273.855469 304.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.363281 200.554688 C 195.363281 202.171875 192.933594 202.171875 192.933594 200.554688 C 192.933594 198.933594 195.363281 198.933594 195.363281 200.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.480469 308.78125 C 298.480469 310.398438 296.050781 310.398438 296.050781 308.78125 C 296.050781 307.160156 298.480469 307.160156 298.480469 308.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.375 177.21875 C 246.375 178.839844 243.945312 178.839844 243.945312 177.21875 C 243.945312 175.597656 246.375 175.597656 246.375 177.21875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.414062 70.910156 L 307.050781 73.746094 L 303.777344 73.746094 Z M 305.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.460938 275.050781 C 291.460938 276.671875 289.03125 276.671875 289.03125 275.050781 C 289.03125 273.433594 291.460938 273.433594 291.460938 275.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.410156 225.472656 C 256.410156 227.09375 253.980469 227.09375 253.980469 225.472656 C 253.980469 223.855469 256.410156 223.855469 256.410156 225.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.195312 304.355469 C 269.195312 305.972656 266.765625 305.972656 266.765625 304.355469 C 266.765625 302.734375 269.195312 302.734375 269.195312 304.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.898438 171.050781 C 140.898438 172.671875 138.46875 172.671875 138.46875 171.050781 C 138.46875 169.429688 140.898438 169.429688 140.898438 171.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.441406 247.792969 C 138.441406 249.414062 136.011719 249.414062 136.011719 247.792969 C 136.011719 246.171875 138.441406 246.171875 138.441406 247.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.855469 177.121094 C 273.855469 178.742188 271.425781 178.742188 271.425781 177.121094 C 271.425781 175.503906 273.855469 175.503906 273.855469 177.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.671875 310.703125 C 231.671875 312.324219 229.242188 312.324219 229.242188 310.703125 C 229.242188 309.082031 231.671875 309.082031 231.671875 310.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.347656 198.070312 C 225.347656 199.691406 222.914062 199.691406 222.914062 198.070312 C 222.914062 196.449219 225.347656 196.449219 225.347656 198.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.359375 223.332031 C 170.359375 224.953125 167.929688 224.953125 167.929688 223.332031 C 167.929688 221.714844 170.359375 221.714844 170.359375 223.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.761719 200.808594 C 292.761719 202.429688 290.332031 202.429688 290.332031 200.808594 C 290.332031 199.1875 292.761719 199.1875 292.761719 200.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.109375 309.800781 C 187.109375 311.417969 184.679688 311.417969 184.679688 309.800781 C 184.679688 308.179688 187.109375 308.179688 187.109375 309.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.425781 164.433594 C 277.425781 166.054688 274.996094 166.054688 274.996094 164.433594 C 274.996094 162.816406 277.425781 162.816406 277.425781 164.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.835938 295.59375 C 208.835938 297.214844 206.40625 297.214844 206.40625 295.59375 C 206.40625 293.972656 208.835938 293.972656 208.835938 295.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.539062 191.613281 C 125.539062 193.234375 123.109375 193.234375 123.109375 191.613281 C 123.109375 189.992188 125.539062 189.992188 125.539062 191.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.808594 326.585938 C 245.808594 328.207031 243.378906 328.207031 243.378906 326.585938 C 243.378906 324.964844 245.808594 324.964844 245.808594 326.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.109375 248.28125 C 326.109375 249.902344 323.679688 249.902344 323.679688 248.28125 C 323.679688 246.660156 326.109375 246.660156 326.109375 248.28125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.082031 285.191406 C 277.082031 286.8125 274.652344 286.8125 274.652344 285.191406 C 274.652344 283.570312 277.082031 283.570312 277.082031 285.191406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.695312 70.910156 L 201.332031 73.746094 L 198.058594 73.746094 Z M 199.695312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.53125 370.773438 C 214.53125 372.394531 212.101562 372.394531 212.101562 370.773438 C 212.101562 369.152344 214.53125 369.152344 214.53125 370.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.136719 70.910156 L 128.773438 73.746094 L 125.5 73.746094 Z M 127.136719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.546875 217.195312 C 197.546875 218.816406 195.117188 218.816406 195.117188 217.195312 C 195.117188 215.574219 197.546875 215.574219 197.546875 217.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.875 265.007812 C 211.875 266.628906 209.445312 266.628906 209.445312 265.007812 C 209.445312 263.386719 211.875 263.386719 211.875 265.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.886719 270.957031 C 245.886719 272.578125 243.457031 272.578125 243.457031 270.957031 C 243.457031 269.335938 245.886719 269.335938 245.886719 270.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.078125 252.390625 C 278.078125 254.011719 275.648438 254.011719 275.648438 252.390625 C 275.648438 250.773438 278.078125 250.773438 278.078125 252.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.027344 177.25 C 216.027344 178.871094 213.597656 178.871094 213.597656 177.25 C 213.597656 175.632812 216.027344 175.632812 216.027344 177.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.570312 255.792969 C 294.570312 257.410156 292.140625 257.410156 292.140625 255.792969 C 292.140625 254.171875 294.570312 254.171875 294.570312 255.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.085938 303.519531 C 150.085938 305.140625 147.65625 305.140625 147.65625 303.519531 C 147.65625 301.898438 150.085938 301.898438 150.085938 303.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.527344 252.519531 C 296.527344 254.140625 294.09375 254.140625 294.09375 252.519531 C 294.09375 250.902344 296.527344 250.902344 296.527344 252.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.746094 181.714844 C 244.746094 183.335938 242.316406 183.335938 242.316406 181.714844 C 242.316406 180.09375 244.746094 180.09375 244.746094 181.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 196 168.820312 C 196 170.4375 193.570312 170.4375 193.570312 168.820312 C 193.570312 167.199219 196 167.199219 196 168.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.78125 73.105469 C 238.78125 74.726562 236.351562 74.726562 236.351562 73.105469 C 236.351562 71.488281 238.78125 71.488281 238.78125 73.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.226562 156.671875 C 207.226562 158.292969 204.796875 158.292969 204.796875 156.671875 C 204.796875 155.054688 207.226562 155.054688 207.226562 156.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.144531 265.175781 C 286.144531 266.792969 283.714844 266.792969 283.714844 265.175781 C 283.714844 263.554688 286.144531 263.554688 286.144531 265.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.996094 234.664062 C 252.996094 236.28125 250.566406 236.28125 250.566406 234.664062 C 250.566406 233.042969 252.996094 233.042969 252.996094 234.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.621094 261.804688 C 209.621094 263.421875 207.1875 263.421875 207.1875 261.804688 C 207.1875 260.183594 209.621094 260.183594 209.621094 261.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.855469 251.894531 C 297.855469 253.511719 295.425781 253.511719 295.425781 251.894531 C 295.425781 250.273438 297.855469 250.273438 297.855469 251.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.984375 104.335938 C 167.984375 105.957031 165.554688 105.957031 165.554688 104.335938 C 165.554688 102.714844 167.984375 102.714844 167.984375 104.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.457031 192.160156 C 270.457031 193.78125 268.027344 193.78125 268.027344 192.160156 C 268.027344 190.539062 270.457031 190.539062 270.457031 192.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.589844 174.785156 C 181.589844 176.40625 179.160156 176.40625 179.160156 174.785156 C 179.160156 173.167969 181.589844 173.167969 181.589844 174.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.507812 189.589844 C 263.507812 191.210938 261.078125 191.210938 261.078125 189.589844 C 261.078125 187.972656 263.507812 187.972656 263.507812 189.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.53125 238.210938 C 161.53125 239.832031 159.101562 239.832031 159.101562 238.210938 C 159.101562 236.589844 161.53125 236.589844 161.53125 238.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.320312 285.6875 C 282.320312 287.308594 279.890625 287.308594 279.890625 285.6875 C 279.890625 284.070312 282.320312 284.070312 282.320312 285.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.199219 302.960938 C 233.199219 304.578125 230.769531 304.578125 230.769531 302.960938 C 230.769531 301.339844 233.199219 301.339844 233.199219 302.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.265625 292.101562 C 248.265625 293.71875 245.835938 293.71875 245.835938 292.101562 C 245.835938 290.480469 248.265625 290.480469 248.265625 292.101562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.605469 70.910156 L 217.242188 73.746094 L 213.96875 73.746094 Z M 215.605469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.042969 70.910156 L 233.679688 73.746094 L 230.40625 73.746094 Z M 232.042969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.003906 270.363281 C 319.003906 271.984375 316.574219 271.984375 316.574219 270.363281 C 316.574219 268.742188 319.003906 268.742188 319.003906 270.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.5625 254.242188 C 318.5625 255.863281 316.132812 255.863281 316.132812 254.242188 C 316.132812 252.621094 318.5625 252.621094 318.5625 254.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.277344 313.847656 C 317.277344 315.46875 314.847656 315.46875 314.847656 313.847656 C 314.847656 312.226562 317.277344 312.226562 317.277344 313.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.871094 70.910156 L 307.507812 73.746094 L 304.234375 73.746094 Z M 305.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.300781 247.839844 C 262.300781 249.457031 259.871094 249.457031 259.871094 247.839844 C 259.871094 246.21875 262.300781 246.21875 262.300781 247.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.445312 207.425781 C 243.445312 209.046875 241.015625 209.046875 241.015625 207.425781 C 241.015625 205.804688 243.445312 205.804688 243.445312 207.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.679688 226.90625 C 217.679688 228.527344 215.25 228.527344 215.25 226.90625 C 215.25 225.289062 217.679688 225.289062 217.679688 226.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.078125 250.328125 C 101.078125 251.949219 98.648438 251.949219 98.648438 250.328125 C 98.648438 248.710938 101.078125 248.710938 101.078125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.160156 90.824219 C 290.160156 92.445312 287.730469 92.445312 287.730469 90.824219 C 287.730469 89.203125 290.160156 89.203125 290.160156 90.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.546875 281.117188 C 271.546875 282.738281 269.117188 282.738281 269.117188 281.117188 C 269.117188 279.5 271.546875 279.5 271.546875 281.117188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.21875 70.910156 L 144.855469 73.746094 L 141.582031 73.746094 Z M 143.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.777344 132.238281 C 255.777344 133.855469 253.347656 133.855469 253.347656 132.238281 C 253.347656 130.617188 255.777344 130.617188 255.777344 132.238281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.28125 70.910156 L 124.917969 73.746094 L 121.644531 73.746094 Z M 123.28125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 187.902344 101.589844 C 187.902344 103.210938 185.472656 103.210938 185.472656 101.589844 C 185.472656 99.972656 187.902344 99.972656 187.902344 101.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.402344 206.757812 C 255.402344 208.378906 252.972656 208.378906 252.972656 206.757812 C 252.972656 205.136719 255.402344 205.136719 255.402344 206.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.855469 285.6875 C 253.855469 287.304688 251.425781 287.304688 251.425781 285.6875 C 251.425781 284.066406 253.855469 284.066406 253.855469 285.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.132812 279.105469 C 238.132812 280.726562 235.703125 280.726562 235.703125 279.105469 C 235.703125 277.488281 238.132812 277.488281 238.132812 279.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.648438 272.296875 C 327.648438 273.917969 325.21875 273.917969 325.21875 272.296875 C 325.21875 270.675781 327.648438 270.675781 327.648438 272.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.160156 193.300781 C 297.160156 194.921875 294.730469 194.921875 294.730469 193.300781 C 294.730469 191.679688 297.160156 191.679688 297.160156 193.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 280.683594 70.910156 L 282.320312 73.746094 L 279.046875 73.746094 Z M 280.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.800781 314.070312 C 213.800781 315.691406 211.371094 315.691406 211.371094 314.070312 C 211.371094 312.449219 213.800781 312.449219 213.800781 314.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 345.03125 267.40625 C 345.03125 269.027344 342.601562 269.027344 342.601562 267.40625 C 342.601562 265.789062 345.03125 265.789062 345.03125 267.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.742188 197.585938 C 161.742188 199.207031 159.3125 199.207031 159.3125 197.585938 C 159.3125 195.964844 161.742188 195.964844 161.742188 197.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.867188 247.863281 C 280.867188 249.484375 278.433594 249.484375 278.433594 247.863281 C 278.433594 246.242188 280.867188 246.242188 280.867188 247.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.445312 83.703125 C 304.445312 85.320312 302.015625 85.320312 302.015625 83.703125 C 302.015625 82.082031 304.445312 82.082031 304.445312 83.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258 70.910156 L 259.636719 73.746094 L 256.363281 73.746094 Z M 258 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.828125 411.484375 C 123.828125 413.105469 121.398438 413.105469 121.398438 411.484375 C 121.398438 409.863281 123.828125 409.863281 123.828125 411.484375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 294.496094 70.910156 L 296.128906 73.746094 L 292.859375 73.746094 Z M 294.496094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.949219 70.910156 L 141.582031 73.746094 L 138.3125 73.746094 Z M 139.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.214844 100.0625 C 198.214844 101.683594 195.785156 101.683594 195.785156 100.0625 C 195.785156 98.445312 198.214844 98.445312 198.214844 100.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.546875 299.597656 C 255.546875 301.214844 253.113281 301.214844 253.113281 299.597656 C 253.113281 297.976562 255.546875 297.976562 255.546875 299.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.246094 239.8125 C 223.246094 241.433594 220.816406 241.433594 220.816406 239.8125 C 220.816406 238.195312 223.246094 238.195312 223.246094 239.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.402344 330.546875 C 256.402344 332.167969 253.972656 332.167969 253.972656 330.546875 C 253.972656 328.925781 256.402344 328.925781 256.402344 330.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.84375 70.910156 L 147.480469 73.746094 L 144.207031 73.746094 Z M 145.84375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.277344 70.910156 L 285.914062 73.746094 L 282.640625 73.746094 Z M 284.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.867188 318.292969 C 268.867188 319.910156 266.4375 319.910156 266.4375 318.292969 C 266.4375 316.671875 268.867188 316.671875 268.867188 318.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.960938 129.222656 C 226.960938 130.84375 224.53125 130.84375 224.53125 129.222656 C 224.53125 127.605469 226.960938 127.605469 226.960938 129.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.882812 343.949219 C 199.882812 345.570312 197.453125 345.570312 197.453125 343.949219 C 197.453125 342.332031 199.882812 342.332031 199.882812 343.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.894531 70.910156 L 163.53125 73.746094 L 160.257812 73.746094 Z M 161.894531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.992188 236.441406 C 268.992188 238.058594 266.558594 238.058594 266.558594 236.441406 C 266.558594 234.820312 268.992188 234.820312 268.992188 236.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.253906 309.6875 C 224.253906 311.304688 221.824219 311.304688 221.824219 309.6875 C 221.824219 308.066406 224.253906 308.066406 224.253906 309.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.894531 136.265625 C 273.894531 137.886719 271.460938 137.886719 271.460938 136.265625 C 271.460938 134.644531 273.894531 134.644531 273.894531 136.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.160156 267.21875 C 325.160156 268.839844 322.726562 268.839844 322.726562 267.21875 C 322.726562 265.601562 325.160156 265.601562 325.160156 267.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.273438 140.652344 C 249.273438 142.273438 246.84375 142.273438 246.84375 140.652344 C 246.84375 139.035156 249.273438 139.035156 249.273438 140.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.640625 140.667969 C 245.640625 142.289062 243.210938 142.289062 243.210938 140.667969 C 243.210938 139.050781 245.640625 139.050781 245.640625 140.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220 233.160156 C 220 234.78125 217.570312 234.78125 217.570312 233.160156 C 217.570312 231.539062 220 231.539062 220 233.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.90625 159.777344 C 293.90625 161.394531 291.476562 161.394531 291.476562 159.777344 C 291.476562 158.15625 293.90625 158.15625 293.90625 159.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.21875 188.738281 C 335.21875 190.359375 332.789062 190.359375 332.789062 188.738281 C 332.789062 187.117188 335.21875 187.117188 335.21875 188.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.515625 372.753906 C 159.515625 374.371094 157.085938 374.371094 157.085938 372.753906 C 157.085938 371.132812 159.515625 371.132812 159.515625 372.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.796875 221.824219 C 279.796875 223.445312 277.367188 223.445312 277.367188 221.824219 C 277.367188 220.207031 279.796875 220.207031 279.796875 221.824219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.457031 70.910156 L 141.089844 73.746094 L 137.820312 73.746094 Z M 139.457031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.8125 219.691406 C 236.8125 221.308594 234.382812 221.308594 234.382812 219.691406 C 234.382812 218.070312 236.8125 218.070312 236.8125 219.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.851562 178.261719 C 277.851562 179.882812 275.421875 179.882812 275.421875 178.261719 C 275.421875 176.640625 277.851562 176.640625 277.851562 178.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.734375 360.757812 C 268.734375 362.378906 266.300781 362.378906 266.300781 360.757812 C 266.300781 359.140625 268.734375 359.140625 268.734375 360.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.273438 372.699219 C 237.273438 374.320312 234.84375 374.320312 234.84375 372.699219 C 234.84375 371.082031 237.273438 371.082031 237.273438 372.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 373.890625 277.949219 C 373.890625 279.566406 371.457031 279.566406 371.457031 277.949219 C 371.457031 276.328125 373.890625 276.328125 373.890625 277.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.917969 252.464844 C 288.917969 254.085938 286.488281 254.085938 286.488281 252.464844 C 286.488281 250.847656 288.917969 250.847656 288.917969 252.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.074219 70.910156 L 243.707031 73.746094 L 240.4375 73.746094 Z M 242.074219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.507812 70.910156 L 142.144531 73.746094 L 138.871094 73.746094 Z M 140.507812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.785156 234.003906 C 227.785156 235.621094 225.351562 235.621094 225.351562 234.003906 C 225.351562 232.382812 227.785156 232.382812 227.785156 234.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.003906 144.953125 C 298.003906 146.574219 295.574219 146.574219 295.574219 144.953125 C 295.574219 143.335938 298.003906 143.335938 298.003906 144.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.140625 280.625 C 257.140625 282.246094 254.710938 282.246094 254.710938 280.625 C 254.710938 279.003906 257.140625 279.003906 257.140625 280.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 343.640625 269.023438 C 343.640625 270.644531 341.210938 270.644531 341.210938 269.023438 C 341.210938 267.40625 343.640625 267.40625 343.640625 269.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.757812 277.359375 C 164.757812 278.980469 162.328125 278.980469 162.328125 277.359375 C 162.328125 275.738281 164.757812 275.738281 164.757812 277.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.542969 238.984375 C 222.542969 240.605469 220.113281 240.605469 220.113281 238.984375 C 220.113281 237.363281 222.542969 237.363281 222.542969 238.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.289062 264.316406 C 302.289062 265.9375 299.859375 265.9375 299.859375 264.316406 C 299.859375 262.695312 302.289062 262.695312 302.289062 264.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 342.835938 189.582031 C 342.835938 191.199219 340.40625 191.199219 340.40625 189.582031 C 340.40625 187.960938 342.835938 187.960938 342.835938 189.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.988281 275.488281 C 290.988281 277.109375 288.558594 277.109375 288.558594 275.488281 C 288.558594 273.871094 290.988281 273.871094 290.988281 275.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.242188 229.867188 C 260.242188 231.488281 257.8125 231.488281 257.8125 229.867188 C 257.8125 228.246094 260.242188 228.246094 260.242188 229.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.328125 260.777344 C 289.328125 262.398438 286.898438 262.398438 286.898438 260.777344 C 286.898438 259.15625 289.328125 259.15625 289.328125 260.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.011719 177.972656 C 276.011719 179.59375 273.582031 179.59375 273.582031 177.972656 C 273.582031 176.351562 276.011719 176.351562 276.011719 177.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.105469 213.558594 C 246.105469 215.179688 243.675781 215.179688 243.675781 213.558594 C 243.675781 211.9375 246.105469 211.9375 246.105469 213.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 222.605469 70.910156 L 224.242188 73.746094 L 220.96875 73.746094 Z M 222.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.582031 253.191406 C 261.582031 254.8125 259.152344 254.8125 259.152344 253.191406 C 259.152344 251.574219 261.582031 251.574219 261.582031 253.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.734375 228.6875 C 261.734375 230.308594 259.304688 230.308594 259.304688 228.6875 C 259.304688 227.070312 261.734375 227.070312 261.734375 228.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.960938 248.519531 C 274.960938 250.140625 272.53125 250.140625 272.53125 248.519531 C 272.53125 246.902344 274.960938 246.902344 274.960938 248.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.324219 234.664062 C 244.324219 236.285156 241.890625 236.285156 241.890625 234.664062 C 241.890625 233.042969 244.324219 233.042969 244.324219 234.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.949219 320.898438 C 228.949219 322.515625 226.515625 322.515625 226.515625 320.898438 C 226.515625 319.277344 228.949219 319.277344 228.949219 320.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.085938 190.507812 C 275.085938 192.128906 272.65625 192.128906 272.65625 190.507812 C 272.65625 188.886719 275.085938 188.886719 275.085938 190.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 422.203125 151.078125 C 422.203125 152.695312 419.773438 152.695312 419.773438 151.078125 C 419.773438 149.457031 422.203125 149.457031 422.203125 151.078125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.785156 418.691406 L 271.421875 415.855469 L 268.148438 415.855469 Z M 269.785156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.011719 149.613281 C 263.011719 151.234375 260.582031 151.234375 260.582031 149.613281 C 260.582031 147.996094 263.011719 147.996094 263.011719 149.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 212.863281 389.71875 C 212.863281 391.339844 210.433594 391.339844 210.433594 389.71875 C 210.433594 388.097656 212.863281 388.097656 212.863281 389.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.988281 408.523438 C 287.988281 410.144531 285.558594 410.144531 285.558594 408.523438 C 285.558594 406.902344 287.988281 406.902344 287.988281 408.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 335.738281 305.304688 C 335.738281 306.921875 333.308594 306.921875 333.308594 305.304688 C 333.308594 303.683594 335.738281 303.683594 335.738281 305.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.621094 122.605469 C 186.621094 124.226562 184.191406 124.226562 184.191406 122.605469 C 184.191406 120.988281 186.621094 120.988281 186.621094 122.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.078125 275.203125 C 303.078125 276.824219 300.648438 276.824219 300.648438 275.203125 C 300.648438 273.585938 303.078125 273.585938 303.078125 275.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.957031 151.898438 C 155.957031 153.519531 153.527344 153.519531 153.527344 151.898438 C 153.527344 150.277344 155.957031 150.277344 155.957031 151.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.917969 274.253906 C 202.917969 275.875 200.488281 275.875 200.488281 274.253906 C 200.488281 272.632812 202.917969 272.632812 202.917969 274.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.15625 70.910156 L 215.792969 73.746094 L 212.523438 73.746094 Z M 214.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.714844 230.761719 C 319.714844 232.378906 317.285156 232.378906 317.285156 230.761719 C 317.285156 229.140625 319.714844 229.140625 319.714844 230.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.011719 266.449219 C 228.011719 268.070312 225.582031 268.070312 225.582031 266.449219 C 225.582031 264.828125 228.011719 264.828125 228.011719 266.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.371094 168.101562 C 265.371094 169.71875 262.941406 169.71875 262.941406 168.101562 C 262.941406 166.480469 265.371094 166.480469 265.371094 168.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.488281 204.777344 C 261.488281 206.394531 259.058594 206.394531 259.058594 204.777344 C 259.058594 203.15625 261.488281 203.15625 261.488281 204.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.429688 244.144531 C 278.429688 245.761719 276 245.761719 276 244.144531 C 276 242.523438 278.429688 242.523438 278.429688 244.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.570312 259.707031 C 203.570312 261.324219 201.140625 261.324219 201.140625 259.707031 C 201.140625 258.085938 203.570312 258.085938 203.570312 259.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.363281 220.675781 C 191.363281 222.292969 188.933594 222.292969 188.933594 220.675781 C 188.933594 219.054688 191.363281 219.054688 191.363281 220.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.203125 344.917969 C 266.203125 346.535156 263.773438 346.535156 263.773438 344.917969 C 263.773438 343.296875 266.203125 343.296875 266.203125 344.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.269531 321.863281 C 205.269531 323.484375 202.839844 323.484375 202.839844 321.863281 C 202.839844 320.242188 205.269531 320.242188 205.269531 321.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.945312 209.390625 C 305.945312 211.011719 303.511719 211.011719 303.511719 209.390625 C 303.511719 207.769531 305.945312 207.769531 305.945312 209.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.582031 175.386719 C 235.582031 177.003906 233.152344 177.003906 233.152344 175.386719 C 233.152344 173.765625 235.582031 173.765625 235.582031 175.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.726562 267.183594 C 174.726562 268.804688 172.296875 268.804688 172.296875 267.183594 C 172.296875 265.5625 174.726562 265.5625 174.726562 267.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.636719 282.421875 C 286.636719 284.042969 284.207031 284.042969 284.207031 282.421875 C 284.207031 280.800781 286.636719 280.800781 286.636719 282.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 333.871094 114.242188 C 333.871094 115.863281 331.441406 115.863281 331.441406 114.242188 C 331.441406 112.621094 333.871094 112.621094 333.871094 114.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.183594 171.066406 C 186.183594 172.683594 183.753906 172.683594 183.753906 171.066406 C 183.753906 169.445312 186.183594 169.445312 186.183594 171.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.667969 182.21875 C 185.667969 183.839844 183.238281 183.839844 183.238281 182.21875 C 183.238281 180.597656 185.667969 180.597656 185.667969 182.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.085938 162.121094 C 184.085938 163.742188 181.65625 163.742188 181.65625 162.121094 C 181.65625 160.503906 184.085938 160.503906 184.085938 162.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.992188 296.320312 C 299.992188 297.941406 297.5625 297.941406 297.5625 296.320312 C 297.5625 294.703125 299.992188 294.703125 299.992188 296.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.320312 369.859375 C 167.320312 371.476562 164.890625 371.476562 164.890625 369.859375 C 164.890625 368.238281 167.320312 368.238281 167.320312 369.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.664062 400.566406 C 159.664062 402.183594 157.234375 402.183594 157.234375 400.566406 C 157.234375 398.945312 159.664062 398.945312 159.664062 400.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.625 290.847656 C 284.625 292.464844 282.195312 292.464844 282.195312 290.847656 C 282.195312 289.226562 284.625 289.226562 284.625 290.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.382812 259.148438 C 295.382812 260.769531 292.953125 260.769531 292.953125 259.148438 C 292.953125 257.53125 295.382812 257.53125 295.382812 259.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.542969 237.320312 C 268.542969 238.941406 266.113281 238.941406 266.113281 237.320312 C 266.113281 235.699219 268.542969 235.699219 268.542969 237.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.019531 70.910156 L 204.65625 73.746094 L 201.382812 73.746094 Z M 203.019531 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.894531 70.910156 L 215.53125 73.746094 L 212.257812 73.746094 Z M 213.894531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.777344 265.140625 C 295.777344 266.761719 293.347656 266.761719 293.347656 265.140625 C 293.347656 263.519531 295.777344 263.519531 295.777344 265.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.425781 117.679688 C 314.425781 119.300781 311.996094 119.300781 311.996094 117.679688 C 311.996094 116.058594 314.425781 116.058594 314.425781 117.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.835938 251.554688 C 273.835938 253.175781 271.40625 253.175781 271.40625 251.554688 C 271.40625 249.933594 273.835938 249.933594 273.835938 251.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.179688 80.882812 C 240.179688 82.503906 237.75 82.503906 237.75 80.882812 C 237.75 79.261719 240.179688 79.261719 240.179688 80.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.480469 174.765625 C 241.480469 176.386719 239.050781 176.386719 239.050781 174.765625 C 239.050781 173.148438 241.480469 173.148438 241.480469 174.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.796875 215.65625 C 215.796875 217.277344 213.367188 217.277344 213.367188 215.65625 C 213.367188 214.039062 215.796875 214.039062 215.796875 215.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.492188 313.578125 C 171.492188 315.199219 169.0625 315.199219 169.0625 313.578125 C 169.0625 311.957031 171.492188 311.957031 171.492188 313.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.972656 215.894531 C 189.972656 217.515625 187.539062 217.515625 187.539062 215.894531 C 187.539062 214.273438 189.972656 214.273438 189.972656 215.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.898438 286.148438 C 307.898438 287.769531 305.46875 287.769531 305.46875 286.148438 C 305.46875 284.527344 307.898438 284.527344 307.898438 286.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.894531 223.039062 C 151.894531 224.660156 149.464844 224.660156 149.464844 223.039062 C 149.464844 221.417969 151.894531 221.417969 151.894531 223.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.34375 222.867188 C 298.34375 224.484375 295.914062 224.484375 295.914062 222.867188 C 295.914062 221.246094 298.34375 221.246094 298.34375 222.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.304688 235.914062 C 244.304688 237.535156 241.875 237.535156 241.875 235.914062 C 241.875 234.292969 244.304688 234.292969 244.304688 235.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.011719 90.882812 C 184.011719 92.503906 181.582031 92.503906 181.582031 90.882812 C 181.582031 89.261719 184.011719 89.261719 184.011719 90.882812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.097656 70.910156 L 183.734375 73.746094 L 180.460938 73.746094 Z M 182.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.046875 161.773438 C 140.046875 163.394531 137.617188 163.394531 137.617188 161.773438 C 137.617188 160.152344 140.046875 160.152344 140.046875 161.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.402344 309.480469 C 253.402344 311.101562 250.972656 311.101562 250.972656 309.480469 C 250.972656 307.859375 253.402344 307.859375 253.402344 309.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.085938 232.855469 C 180.085938 234.472656 177.65625 234.472656 177.65625 232.855469 C 177.65625 231.234375 180.085938 231.234375 180.085938 232.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.347656 348.972656 C 266.347656 350.59375 263.914062 350.59375 263.914062 348.972656 C 263.914062 347.351562 266.347656 347.351562 266.347656 348.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.960938 194.9375 C 123.960938 196.558594 121.53125 196.558594 121.53125 194.9375 C 121.53125 193.316406 123.960938 193.316406 123.960938 194.9375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.644531 70.910156 L 205.28125 73.746094 L 202.007812 73.746094 Z M 203.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.898438 238.15625 C 286.898438 239.777344 284.46875 239.777344 284.46875 238.15625 C 284.46875 236.539062 286.898438 236.539062 286.898438 238.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.710938 310.421875 C 208.710938 312.042969 206.28125 312.042969 206.28125 310.421875 C 206.28125 308.800781 208.710938 308.800781 208.710938 310.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.125 280.308594 C 271.125 281.925781 268.695312 281.925781 268.695312 280.308594 C 268.695312 278.6875 271.125 278.6875 271.125 280.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.375 183.695312 C 231.375 185.3125 228.945312 185.3125 228.945312 183.695312 C 228.945312 182.074219 231.375 182.074219 231.375 183.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.851562 230.972656 C 336.851562 232.59375 334.421875 232.59375 334.421875 230.972656 C 334.421875 229.355469 336.851562 229.355469 336.851562 230.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.96875 245.671875 C 277.96875 247.292969 275.539062 247.292969 275.539062 245.671875 C 275.539062 244.054688 277.96875 244.054688 277.96875 245.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.605469 255.570312 C 300.605469 257.191406 298.175781 257.191406 298.175781 255.570312 C 298.175781 253.949219 300.605469 253.949219 300.605469 255.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.375 418.691406 L 182.007812 415.855469 L 178.738281 415.855469 Z M 180.375 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 283.15625 418.691406 L 284.792969 415.855469 L 281.519531 415.855469 Z M 283.15625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.324219 206.445312 C 327.324219 208.066406 324.894531 208.066406 324.894531 206.445312 C 324.894531 204.828125 327.324219 204.828125 327.324219 206.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 205.960938 70.910156 L 207.597656 73.746094 L 204.324219 73.746094 Z M 205.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.90625 226.078125 C 252.90625 227.699219 250.476562 227.699219 250.476562 226.078125 C 250.476562 224.457031 252.90625 224.457031 252.90625 226.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.796875 224.652344 C 279.796875 226.273438 277.367188 226.273438 277.367188 224.652344 C 277.367188 223.035156 279.796875 223.035156 279.796875 224.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.027344 314.179688 C 323.027344 315.796875 320.597656 315.796875 320.597656 314.179688 C 320.597656 312.558594 323.027344 312.558594 323.027344 314.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.847656 162.699219 C 324.847656 164.320312 322.417969 164.320312 322.417969 162.699219 C 322.417969 161.078125 324.847656 161.078125 324.847656 162.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.980469 244.402344 C 276.980469 246.019531 274.550781 246.019531 274.550781 244.402344 C 274.550781 242.78125 276.980469 242.78125 276.980469 244.402344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.972656 70.910156 L 271.609375 73.746094 L 268.335938 73.746094 Z M 269.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.628906 204.09375 C 286.628906 205.714844 284.199219 205.714844 284.199219 204.09375 C 284.199219 202.472656 286.628906 202.472656 286.628906 204.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.644531 220.65625 C 242.644531 222.277344 240.214844 222.277344 240.214844 220.65625 C 240.214844 219.035156 242.644531 219.035156 242.644531 220.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.066406 320.871094 C 156.066406 322.492188 153.636719 322.492188 153.636719 320.871094 C 153.636719 319.253906 156.066406 319.253906 156.066406 320.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.007812 221.457031 C 275.007812 223.078125 272.578125 223.078125 272.578125 221.457031 C 272.578125 219.835938 275.007812 219.835938 275.007812 221.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.464844 233.890625 C 280.464844 235.507812 278.03125 235.507812 278.03125 233.890625 C 278.03125 232.269531 280.464844 232.269531 280.464844 233.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.445312 274.507812 C 264.445312 276.128906 262.015625 276.128906 262.015625 274.507812 C 262.015625 272.886719 264.445312 272.886719 264.445312 274.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.632812 294.140625 C 321.632812 295.761719 319.203125 295.761719 319.203125 294.140625 C 319.203125 292.519531 321.632812 292.519531 321.632812 294.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.808594 296.109375 C 298.808594 297.730469 296.378906 297.730469 296.378906 296.109375 C 296.378906 294.492188 298.808594 294.492188 298.808594 296.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.128906 274.378906 C 298.128906 276 295.699219 276 295.699219 274.378906 C 295.699219 272.757812 298.128906 272.757812 298.128906 274.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.9375 188.246094 C 221.9375 189.867188 219.507812 189.867188 219.507812 188.246094 C 219.507812 186.625 221.9375 186.625 221.9375 188.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.621094 264.792969 C 278.621094 266.414062 276.191406 266.414062 276.191406 264.792969 C 276.191406 263.171875 278.621094 263.171875 278.621094 264.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.882812 289.179688 C 296.882812 290.800781 294.453125 290.800781 294.453125 289.179688 C 294.453125 287.5625 296.882812 287.5625 296.882812 289.179688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.972656 198.285156 C 232.972656 199.902344 230.539062 199.902344 230.539062 198.285156 C 230.539062 196.664062 232.972656 196.664062 232.972656 198.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.628906 299.660156 C 274.628906 301.28125 272.199219 301.28125 272.199219 299.660156 C 272.199219 298.039062 274.628906 298.039062 274.628906 299.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.269531 322.800781 C 223.269531 324.421875 220.839844 324.421875 220.839844 322.800781 C 220.839844 321.179688 223.269531 321.179688 223.269531 322.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.238281 298.265625 C 226.238281 299.886719 223.804688 299.886719 223.804688 298.265625 C 223.804688 296.644531 226.238281 296.644531 226.238281 298.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.171875 269.796875 C 267.171875 271.417969 264.742188 271.417969 264.742188 269.796875 C 264.742188 268.179688 267.171875 268.179688 267.171875 269.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.632812 279.617188 C 275.632812 281.238281 273.203125 281.238281 273.203125 279.617188 C 273.203125 277.996094 275.632812 277.996094 275.632812 279.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.5 313.496094 C 222.5 315.117188 220.070312 315.117188 220.070312 313.496094 C 220.070312 311.875 222.5 311.875 222.5 313.496094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.832031 70.910156 L 173.46875 73.746094 L 170.195312 73.746094 Z M 171.832031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.554688 70.910156 L 160.191406 73.746094 L 156.917969 73.746094 Z M 158.554688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.914062 336.15625 C 280.914062 337.777344 278.480469 337.777344 278.480469 336.15625 C 278.480469 334.535156 280.914062 334.535156 280.914062 336.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.988281 177.289062 C 294.988281 178.910156 292.554688 178.910156 292.554688 177.289062 C 292.554688 175.671875 294.988281 175.671875 294.988281 177.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.222656 159.085938 C 291.222656 160.703125 288.792969 160.703125 288.792969 159.085938 C 288.792969 157.464844 291.222656 157.464844 291.222656 159.085938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 329.058594 418.691406 L 330.695312 415.855469 L 327.421875 415.855469 Z M 329.058594 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.40625 224.832031 C 271.40625 226.449219 268.976562 226.449219 268.976562 224.832031 C 268.976562 223.210938 271.40625 223.210938 271.40625 224.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.902344 244.917969 C 302.902344 246.539062 300.472656 246.539062 300.472656 244.917969 C 300.472656 243.296875 302.902344 243.296875 302.902344 244.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.980469 107.871094 C 254.980469 109.488281 252.550781 109.488281 252.550781 107.871094 C 252.550781 106.25 254.980469 106.25 254.980469 107.871094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.816406 70.910156 L 190.453125 73.746094 L 187.179688 73.746094 Z M 188.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.804688 258.9375 C 271.804688 260.558594 269.375 260.558594 269.375 258.9375 C 269.375 257.320312 271.804688 257.320312 271.804688 258.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.359375 243.601562 C 293.359375 245.222656 290.929688 245.222656 290.929688 243.601562 C 290.929688 241.984375 293.359375 241.984375 293.359375 243.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.023438 292.191406 C 319.023438 293.808594 316.59375 293.808594 316.59375 292.191406 C 316.59375 290.570312 319.023438 290.570312 319.023438 292.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.777344 253.324219 C 270.777344 254.941406 268.347656 254.941406 268.347656 253.324219 C 268.347656 251.703125 270.777344 251.703125 270.777344 253.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.097656 277.074219 C 275.097656 278.695312 272.667969 278.695312 272.667969 277.074219 C 272.667969 275.453125 275.097656 275.453125 275.097656 277.074219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.554688 70.910156 L 128.191406 73.746094 L 124.917969 73.746094 Z M 126.554688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.109375 70.910156 L 335.746094 73.746094 L 332.472656 73.746094 Z M 334.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.410156 200.515625 C 265.410156 202.136719 262.980469 202.136719 262.980469 200.515625 C 262.980469 198.894531 265.410156 198.894531 265.410156 200.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.269531 182.34375 C 243.269531 183.964844 240.839844 183.964844 240.839844 182.34375 C 240.839844 180.722656 243.269531 180.722656 243.269531 182.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.691406 267.019531 C 251.691406 268.640625 249.261719 268.640625 249.261719 267.019531 C 249.261719 265.398438 251.691406 265.398438 251.691406 267.019531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.734375 418.691406 L 174.371094 415.855469 L 171.097656 415.855469 Z M 172.734375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.746094 236.878906 C 310.746094 238.5 308.316406 238.5 308.316406 236.878906 C 308.316406 235.257812 310.746094 235.257812 310.746094 236.878906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.816406 70.910156 L 137.453125 73.746094 L 134.179688 73.746094 Z M 135.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.953125 211.539062 C 260.953125 213.160156 258.523438 213.160156 258.523438 211.539062 C 258.523438 209.921875 260.953125 209.921875 260.953125 211.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.140625 278.898438 C 262.140625 280.519531 259.710938 280.519531 259.710938 278.898438 C 259.710938 277.28125 262.140625 277.28125 262.140625 278.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.695312 265.847656 C 221.695312 267.46875 219.265625 267.46875 219.265625 265.847656 C 219.265625 264.226562 221.695312 264.226562 221.695312 265.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.070312 70.910156 L 240.707031 73.746094 L 237.433594 73.746094 Z M 239.070312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.808594 389.007812 C 241.808594 390.625 239.375 390.625 239.375 389.007812 C 239.375 387.386719 241.808594 387.386719 241.808594 389.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.769531 389.96875 C 280.769531 391.585938 278.339844 391.585938 278.339844 389.96875 C 278.339844 388.347656 280.769531 388.347656 280.769531 389.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.972656 70.910156 L 197.609375 73.746094 L 194.335938 73.746094 Z M 195.972656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.183594 305.75 C 289.183594 307.367188 286.753906 307.367188 286.753906 305.75 C 286.753906 304.128906 289.183594 304.128906 289.183594 305.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.441406 70.910156 L 172.078125 73.746094 L 168.804688 73.746094 Z M 170.441406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.886719 135.59375 C 241.886719 137.214844 239.457031 137.214844 239.457031 135.59375 C 239.457031 133.972656 241.886719 133.972656 241.886719 135.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.152344 180.582031 C 281.152344 182.203125 278.722656 182.203125 278.722656 180.582031 C 278.722656 178.964844 281.152344 178.964844 281.152344 180.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.863281 271.9375 C 281.863281 273.558594 279.433594 273.558594 279.433594 271.9375 C 279.433594 270.316406 281.863281 270.316406 281.863281 271.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.179688 284.8125 C 255.179688 286.433594 252.75 286.433594 252.75 284.8125 C 252.75 283.195312 255.179688 283.195312 255.179688 284.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.195312 263.765625 C 300.195312 265.386719 297.765625 265.386719 297.765625 263.765625 C 297.765625 262.148438 300.195312 262.148438 300.195312 263.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.007812 302.660156 C 234.007812 304.28125 231.578125 304.28125 231.578125 302.660156 C 231.578125 301.039062 234.007812 301.039062 234.007812 302.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.703125 278.890625 C 243.703125 280.511719 241.273438 280.511719 241.273438 278.890625 C 241.273438 277.269531 243.703125 277.269531 243.703125 278.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 226.984375 141.140625 C 226.984375 142.761719 224.554688 142.761719 224.554688 141.140625 C 224.554688 139.519531 226.984375 139.519531 226.984375 141.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.296875 278.246094 C 263.296875 279.867188 260.867188 279.867188 260.867188 278.246094 C 260.867188 276.625 263.296875 276.625 263.296875 278.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.207031 304.539062 C 264.207031 306.15625 261.777344 306.15625 261.777344 304.539062 C 261.777344 302.917969 264.207031 302.917969 264.207031 304.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.511719 70.910156 L 250.148438 73.746094 L 246.875 73.746094 Z M 248.511719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.449219 242.363281 C 242.449219 243.984375 240.019531 243.984375 240.019531 242.363281 C 240.019531 240.742188 242.449219 240.742188 242.449219 242.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.664062 259.160156 C 302.664062 260.78125 300.234375 260.78125 300.234375 259.160156 C 300.234375 257.542969 302.664062 257.542969 302.664062 259.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.226562 233.765625 C 238.226562 235.386719 235.796875 235.386719 235.796875 233.765625 C 235.796875 232.148438 238.226562 232.148438 238.226562 233.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.023438 148.777344 C 288.023438 150.398438 285.59375 150.398438 285.59375 148.777344 C 285.59375 147.160156 288.023438 147.160156 288.023438 148.777344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.96875 418.691406 L 223.605469 415.855469 L 220.332031 415.855469 Z M 221.96875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.441406 357.550781 C 277.441406 359.167969 275.011719 359.167969 275.011719 357.550781 C 275.011719 355.929688 277.441406 355.929688 277.441406 357.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.316406 320.695312 C 160.316406 322.3125 157.886719 322.3125 157.886719 320.695312 C 157.886719 319.074219 160.316406 319.074219 160.316406 320.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.265625 240.609375 C 273.265625 242.230469 270.835938 242.230469 270.835938 240.609375 C 270.835938 238.988281 273.265625 238.988281 273.265625 240.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.066406 207.664062 C 253.066406 209.28125 250.636719 209.28125 250.636719 207.664062 C 250.636719 206.042969 253.066406 206.042969 253.066406 207.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.183594 250.082031 C 272.183594 251.699219 269.753906 251.699219 269.753906 250.082031 C 269.753906 248.460938 272.183594 248.460938 272.183594 250.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.3125 261.75 C 181.3125 263.367188 178.882812 263.367188 178.882812 261.75 C 178.882812 260.128906 181.3125 260.128906 181.3125 261.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.335938 269.535156 C 223.335938 271.15625 220.90625 271.15625 220.90625 269.535156 C 220.90625 267.914062 223.335938 267.914062 223.335938 269.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.550781 345.585938 C 208.550781 347.207031 206.121094 347.207031 206.121094 345.585938 C 206.121094 343.96875 208.550781 343.96875 208.550781 345.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.597656 267.363281 C 221.597656 268.980469 219.167969 268.980469 219.167969 267.363281 C 219.167969 265.742188 221.597656 265.742188 221.597656 267.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.738281 269.625 C 211.738281 271.242188 209.308594 271.242188 209.308594 269.625 C 209.308594 268.003906 211.738281 268.003906 211.738281 269.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.429688 184.78125 C 236.429688 186.398438 234 186.398438 234 184.78125 C 234 183.160156 236.429688 183.160156 236.429688 184.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.5625 184.648438 C 167.5625 186.269531 165.128906 186.269531 165.128906 184.648438 C 165.128906 183.027344 167.5625 183.027344 167.5625 184.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.3125 331.765625 C 313.3125 333.382812 310.882812 333.382812 310.882812 331.765625 C 310.882812 330.144531 313.3125 330.144531 313.3125 331.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.25 272.984375 C 240.25 274.605469 237.820312 274.605469 237.820312 272.984375 C 237.820312 271.367188 240.25 271.367188 240.25 272.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.296875 267.472656 C 269.296875 269.089844 266.867188 269.089844 266.867188 267.472656 C 266.867188 265.851562 269.296875 265.851562 269.296875 267.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.667969 297.84375 C 251.667969 299.464844 249.238281 299.464844 249.238281 297.84375 C 249.238281 296.226562 251.667969 296.226562 251.667969 297.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.429688 306.125 C 204.429688 307.746094 202 307.746094 202 306.125 C 202 304.507812 204.429688 304.507812 204.429688 306.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.023438 70.910156 L 247.660156 73.746094 L 244.386719 73.746094 Z M 246.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.664062 103.292969 C 248.664062 104.914062 246.234375 104.914062 246.234375 103.292969 C 246.234375 101.675781 248.664062 101.675781 248.664062 103.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.367188 70.910156 L 145.003906 73.746094 L 141.730469 73.746094 Z M 143.367188 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.632812 70.910156 L 168.265625 73.746094 L 164.996094 73.746094 Z M 166.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.664062 125.335938 C 295.664062 126.957031 293.234375 126.957031 293.234375 125.335938 C 293.234375 123.71875 295.664062 123.71875 295.664062 125.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.429688 312.277344 C 317.429688 313.894531 315 313.894531 315 312.277344 C 315 310.65625 317.429688 310.65625 317.429688 312.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.132812 116.851562 C 155.132812 118.472656 152.703125 118.472656 152.703125 116.851562 C 152.703125 115.230469 155.132812 115.230469 155.132812 116.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281 247.613281 C 281 249.234375 278.570312 249.234375 278.570312 247.613281 C 278.570312 245.996094 281 245.996094 281 247.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.308594 295.472656 C 285.308594 297.09375 282.878906 297.09375 282.878906 295.472656 C 282.878906 293.851562 285.308594 293.851562 285.308594 295.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.800781 297.660156 C 131.800781 299.28125 129.371094 299.28125 129.371094 297.660156 C 129.371094 296.042969 131.800781 296.042969 131.800781 297.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.753906 266.875 C 306.753906 268.492188 304.324219 268.492188 304.324219 266.875 C 304.324219 265.253906 306.753906 265.253906 306.753906 266.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.921875 314.796875 C 304.921875 316.417969 302.492188 316.417969 302.492188 314.796875 C 302.492188 313.175781 304.921875 313.175781 304.921875 314.796875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 271.632812 70.910156 L 273.269531 73.746094 L 269.996094 73.746094 Z M 271.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.234375 149.488281 C 150.234375 151.109375 147.804688 151.109375 147.804688 149.488281 C 147.804688 147.867188 150.234375 147.867188 150.234375 149.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.632812 254.210938 C 313.632812 255.828125 311.203125 255.828125 311.203125 254.210938 C 311.203125 252.589844 313.632812 252.589844 313.632812 254.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.90625 301.960938 C 264.90625 303.578125 262.476562 303.578125 262.476562 301.960938 C 262.476562 300.339844 264.90625 300.339844 264.90625 301.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.324219 209.667969 C 267.324219 211.285156 264.894531 211.285156 264.894531 209.667969 C 264.894531 208.046875 267.324219 208.046875 267.324219 209.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.667969 322.136719 C 111.667969 323.757812 109.238281 323.757812 109.238281 322.136719 C 109.238281 320.515625 111.667969 320.515625 111.667969 322.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.867188 249.894531 C 190.867188 251.511719 188.4375 251.511719 188.4375 249.894531 C 188.4375 248.273438 190.867188 248.273438 190.867188 249.894531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.808594 70.910156 L 180.445312 73.746094 L 177.171875 73.746094 Z M 178.808594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.347656 157.480469 C 268.347656 159.101562 265.917969 159.101562 265.917969 157.480469 C 265.917969 155.859375 268.347656 155.859375 268.347656 157.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.3125 331.441406 C 281.3125 333.0625 278.882812 333.0625 278.882812 331.441406 C 278.882812 329.820312 281.3125 329.820312 281.3125 331.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.117188 241.585938 C 259.117188 243.207031 256.6875 243.207031 256.6875 241.585938 C 256.6875 239.964844 259.117188 239.964844 259.117188 241.585938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.933594 70.910156 L 154.570312 73.746094 L 151.296875 73.746094 Z M 152.933594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.960938 368.226562 C 274.960938 369.847656 272.53125 369.847656 272.53125 368.226562 C 272.53125 366.609375 274.960938 366.609375 274.960938 368.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.550781 287.1875 C 276.550781 288.804688 274.121094 288.804688 274.121094 287.1875 C 274.121094 285.566406 276.550781 285.566406 276.550781 287.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.550781 264.617188 C 183.550781 266.238281 181.117188 266.238281 181.117188 264.617188 C 181.117188 262.996094 183.550781 262.996094 183.550781 264.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.234375 291.289062 C 240.234375 292.90625 237.800781 292.90625 237.800781 291.289062 C 237.800781 289.667969 240.234375 289.667969 240.234375 291.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.042969 177.675781 C 202.042969 179.292969 199.613281 179.292969 199.613281 177.675781 C 199.613281 176.054688 202.042969 176.054688 202.042969 177.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.578125 212.015625 C 274.578125 213.636719 272.148438 213.636719 272.148438 212.015625 C 272.148438 210.394531 274.578125 210.394531 274.578125 212.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.710938 70.910156 L 232.347656 73.746094 L 229.078125 73.746094 Z M 230.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.917969 70.910156 L 210.554688 73.746094 L 207.285156 73.746094 Z M 208.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.964844 88.015625 C 244.964844 89.636719 242.535156 89.636719 242.535156 88.015625 C 242.535156 86.398438 244.964844 86.398438 244.964844 88.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.816406 281.878906 C 254.816406 283.5 252.386719 283.5 252.386719 281.878906 C 252.386719 280.257812 254.816406 280.257812 254.816406 281.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.261719 329.464844 C 266.261719 331.082031 263.832031 331.082031 263.832031 329.464844 C 263.832031 327.84375 266.261719 327.84375 266.261719 329.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.878906 262.71875 C 280.878906 264.339844 278.449219 264.339844 278.449219 262.71875 C 278.449219 261.097656 280.878906 261.097656 280.878906 262.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.089844 153.023438 C 216.089844 154.644531 213.660156 154.644531 213.660156 153.023438 C 213.660156 151.40625 216.089844 151.40625 216.089844 153.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.863281 246.828125 C 310.863281 248.445312 308.433594 248.445312 308.433594 246.828125 C 308.433594 245.207031 310.863281 245.207031 310.863281 246.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.804688 119.847656 C 293.804688 121.46875 291.371094 121.46875 291.371094 119.847656 C 291.371094 118.226562 293.804688 118.226562 293.804688 119.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.710938 224.84375 C 269.710938 226.460938 267.28125 226.460938 267.28125 224.84375 C 267.28125 223.222656 269.710938 223.222656 269.710938 224.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.835938 319.328125 C 170.835938 320.949219 168.40625 320.949219 168.40625 319.328125 C 168.40625 317.707031 170.835938 317.707031 170.835938 319.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.550781 285.109375 C 308.550781 286.730469 306.121094 286.730469 306.121094 285.109375 C 306.121094 283.492188 308.550781 283.492188 308.550781 285.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.609375 224.234375 C 208.609375 225.855469 206.179688 225.855469 206.179688 224.234375 C 206.179688 222.613281 208.609375 222.613281 208.609375 224.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.183594 191.117188 C 239.183594 192.738281 236.753906 192.738281 236.753906 191.117188 C 236.753906 189.496094 239.183594 189.496094 239.183594 191.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.355469 319.441406 C 168.355469 321.058594 165.925781 321.058594 165.925781 319.441406 C 165.925781 317.820312 168.355469 317.820312 168.355469 319.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.917969 207.375 C 288.917969 208.996094 286.484375 208.996094 286.484375 207.375 C 286.484375 205.753906 288.917969 205.753906 288.917969 207.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.859375 346.632812 C 176.859375 348.253906 174.429688 348.253906 174.429688 346.632812 C 174.429688 345.011719 176.859375 345.011719 176.859375 346.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.308594 273.453125 C 231.308594 275.074219 228.878906 275.074219 228.878906 273.453125 C 228.878906 271.832031 231.308594 271.832031 231.308594 273.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.324219 337.363281 C 217.324219 338.980469 214.894531 338.980469 214.894531 337.363281 C 214.894531 335.742188 217.324219 335.742188 217.324219 337.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.65625 352.476562 C 299.65625 354.097656 297.226562 354.097656 297.226562 352.476562 C 297.226562 350.855469 299.65625 350.855469 299.65625 352.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.1875 215.574219 C 285.1875 217.195312 282.757812 217.195312 282.757812 215.574219 C 282.757812 213.957031 285.1875 213.957031 285.1875 215.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 326.199219 247.070312 C 326.199219 248.6875 323.769531 248.6875 323.769531 247.070312 C 323.769531 245.449219 326.199219 245.449219 326.199219 247.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.054688 344.007812 C 280.054688 345.625 277.625 345.625 277.625 344.007812 C 277.625 342.386719 280.054688 342.386719 280.054688 344.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.214844 88.476562 C 268.214844 90.09375 265.785156 90.09375 265.785156 88.476562 C 265.785156 86.855469 268.214844 86.855469 268.214844 88.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 300.730469 70.910156 L 302.367188 73.746094 L 299.09375 73.746094 Z M 300.730469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 378.140625 208.503906 C 378.140625 210.125 375.710938 210.125 375.710938 208.503906 C 375.710938 206.886719 378.140625 206.886719 378.140625 208.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.132812 264.21875 C 205.132812 265.839844 202.699219 265.839844 202.699219 264.21875 C 202.699219 262.601562 205.132812 262.601562 205.132812 264.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.730469 153.972656 C 296.730469 155.589844 294.300781 155.589844 294.300781 153.972656 C 294.300781 152.351562 296.730469 152.351562 296.730469 153.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.75 115.894531 C 264.75 117.511719 262.320312 117.511719 262.320312 115.894531 C 262.320312 114.273438 264.75 114.273438 264.75 115.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.136719 333.113281 C 148.136719 334.734375 145.703125 334.734375 145.703125 333.113281 C 145.703125 331.492188 148.136719 331.492188 148.136719 333.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 320.917969 264.5625 C 320.917969 266.183594 318.488281 266.183594 318.488281 264.5625 C 318.488281 262.941406 320.917969 262.941406 320.917969 264.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.042969 292.683594 C 149.042969 294.304688 146.613281 294.304688 146.613281 292.683594 C 146.613281 291.0625 149.042969 291.0625 149.042969 292.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.726562 212.359375 C 309.726562 213.976562 307.296875 213.976562 307.296875 212.359375 C 307.296875 210.738281 309.726562 210.738281 309.726562 212.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.089844 229.175781 C 229.089844 230.796875 226.660156 230.796875 226.660156 229.175781 C 226.660156 227.554688 229.089844 227.554688 229.089844 229.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.90625 233.132812 C 213.90625 234.753906 211.476562 234.753906 211.476562 233.132812 C 211.476562 231.511719 213.90625 231.511719 213.90625 233.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.042969 129.679688 C 266.042969 131.296875 263.613281 131.296875 263.613281 129.679688 C 263.613281 128.058594 266.042969 128.058594 266.042969 129.679688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 107.523438 70.910156 L 109.160156 73.746094 L 105.886719 73.746094 Z M 107.523438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.25 245.515625 C 291.25 247.132812 288.816406 247.132812 288.816406 245.515625 C 288.816406 243.894531 291.25 243.894531 291.25 245.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.929688 267.378906 C 174.929688 268.996094 172.5 268.996094 172.5 267.378906 C 172.5 265.757812 174.929688 265.757812 174.929688 267.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.296875 195.921875 C 281.296875 197.542969 278.867188 197.542969 278.867188 195.921875 C 278.867188 194.304688 281.296875 194.304688 281.296875 195.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.464844 253.472656 C 254.464844 255.09375 252.035156 255.09375 252.035156 253.472656 C 252.035156 251.855469 254.464844 251.855469 254.464844 253.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.171875 238.0625 C 258.171875 239.679688 255.742188 239.679688 255.742188 238.0625 C 255.742188 236.441406 258.171875 236.441406 258.171875 238.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.367188 250.195312 C 262.367188 251.816406 259.9375 251.816406 259.9375 250.195312 C 259.9375 248.578125 262.367188 248.578125 262.367188 250.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.332031 258.488281 C 128.332031 260.109375 125.902344 260.109375 125.902344 258.488281 C 125.902344 256.867188 128.332031 256.867188 128.332031 258.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.335938 228.386719 C 268.335938 230.003906 265.90625 230.003906 265.90625 228.386719 C 265.90625 226.765625 268.335938 226.765625 268.335938 228.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.097656 228.125 C 296.097656 229.746094 293.667969 229.746094 293.667969 228.125 C 293.667969 226.507812 296.097656 226.507812 296.097656 228.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.132812 258.890625 C 194.132812 260.511719 191.703125 260.511719 191.703125 258.890625 C 191.703125 257.273438 194.132812 257.273438 194.132812 258.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.59375 341.605469 C 139.59375 343.222656 137.164062 343.222656 137.164062 341.605469 C 137.164062 339.984375 139.59375 339.984375 139.59375 341.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.964844 292.417969 C 133.964844 294.039062 131.535156 294.039062 131.535156 292.417969 C 131.535156 290.796875 133.964844 290.796875 133.964844 292.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.28125 277.761719 C 277.28125 279.378906 274.851562 279.378906 274.851562 277.761719 C 274.851562 276.140625 277.28125 276.140625 277.28125 277.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.695312 289.699219 C 291.695312 291.320312 289.265625 291.320312 289.265625 289.699219 C 289.265625 288.078125 291.695312 288.078125 291.695312 289.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.480469 240.851562 C 259.480469 242.472656 257.050781 242.472656 257.050781 240.851562 C 257.050781 239.234375 259.480469 239.234375 259.480469 240.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 114.753906 141.097656 C 114.753906 142.714844 112.324219 142.714844 112.324219 141.097656 C 112.324219 139.476562 114.753906 139.476562 114.753906 141.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.78125 269.976562 C 297.78125 271.597656 295.351562 271.597656 295.351562 269.976562 C 295.351562 268.355469 297.78125 268.355469 297.78125 269.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.945312 225.824219 C 293.945312 227.445312 291.515625 227.445312 291.515625 225.824219 C 291.515625 224.203125 293.945312 224.203125 293.945312 225.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.191406 238.660156 C 200.191406 240.28125 197.761719 240.28125 197.761719 238.660156 C 197.761719 237.042969 200.191406 237.042969 200.191406 238.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.710938 304.742188 C 255.710938 306.363281 253.28125 306.363281 253.28125 304.742188 C 253.28125 303.125 255.710938 303.125 255.710938 304.742188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.519531 70.910156 L 159.15625 73.746094 L 155.882812 73.746094 Z M 157.519531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.375 183.167969 C 176.375 184.789062 173.941406 184.789062 173.941406 183.167969 C 173.941406 181.546875 176.375 181.546875 176.375 183.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.847656 283.46875 C 317.847656 285.089844 315.417969 285.089844 315.417969 283.46875 C 315.417969 281.847656 317.847656 281.847656 317.847656 283.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.304688 192.476562 C 305.304688 194.097656 302.875 194.097656 302.875 192.476562 C 302.875 190.855469 305.304688 190.855469 305.304688 192.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.800781 320.601562 C 299.800781 322.21875 297.371094 322.21875 297.371094 320.601562 C 297.371094 318.980469 299.800781 318.980469 299.800781 320.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.035156 260.972656 C 290.035156 262.59375 287.605469 262.59375 287.605469 260.972656 C 287.605469 259.351562 290.035156 259.351562 290.035156 260.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.066406 104.328125 C 231.066406 105.949219 228.636719 105.949219 228.636719 104.328125 C 228.636719 102.710938 231.066406 102.710938 231.066406 104.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.804688 159.476562 C 141.804688 161.097656 139.375 161.097656 139.375 159.476562 C 139.375 157.859375 141.804688 157.859375 141.804688 159.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 150.089844 354.984375 C 150.089844 356.605469 147.660156 356.605469 147.660156 354.984375 C 147.660156 353.367188 150.089844 353.367188 150.089844 354.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.957031 286.511719 C 257.957031 288.132812 255.527344 288.132812 255.527344 286.511719 C 255.527344 284.890625 257.957031 284.890625 257.957031 286.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.183594 158.898438 C 297.183594 160.519531 294.753906 160.519531 294.753906 158.898438 C 294.753906 157.277344 297.183594 157.277344 297.183594 158.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.371094 206.441406 C 269.371094 208.0625 266.9375 208.0625 266.9375 206.441406 C 266.9375 204.824219 269.371094 204.824219 269.371094 206.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.117188 264.605469 C 280.117188 266.222656 277.6875 266.222656 277.6875 264.605469 C 277.6875 262.984375 280.117188 262.984375 280.117188 264.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.746094 277.117188 C 259.746094 278.734375 257.316406 278.734375 257.316406 277.117188 C 257.316406 275.496094 259.746094 275.496094 259.746094 277.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.0625 212.542969 C 319.0625 214.160156 316.632812 214.160156 316.632812 212.542969 C 316.632812 210.921875 319.0625 210.921875 319.0625 212.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.488281 191.035156 C 254.488281 192.65625 252.058594 192.65625 252.058594 191.035156 C 252.058594 189.417969 254.488281 189.417969 254.488281 191.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.226562 308.433594 C 242.226562 310.054688 239.796875 310.054688 239.796875 308.433594 C 239.796875 306.8125 242.226562 306.8125 242.226562 308.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.804688 70.910156 L 155.441406 73.746094 L 152.167969 73.746094 Z M 153.804688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.285156 70.910156 L 177.921875 73.746094 L 174.648438 73.746094 Z M 176.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.476562 273.964844 C 272.476562 275.585938 270.046875 275.585938 270.046875 273.964844 C 270.046875 272.34375 272.476562 272.34375 272.476562 273.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.796875 311.613281 C 223.796875 313.234375 221.367188 313.234375 221.367188 311.613281 C 221.367188 309.992188 223.796875 309.992188 223.796875 311.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.015625 298.679688 C 264.015625 300.300781 261.585938 300.300781 261.585938 298.679688 C 261.585938 297.058594 264.015625 297.058594 264.015625 298.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.757812 79.863281 C 282.757812 81.484375 280.328125 81.484375 280.328125 79.863281 C 280.328125 78.246094 282.757812 78.246094 282.757812 79.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.898438 295.859375 C 288.898438 297.476562 286.46875 297.476562 286.46875 295.859375 C 286.46875 294.238281 288.898438 294.238281 288.898438 295.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.453125 212.601562 C 266.453125 214.21875 264.023438 214.21875 264.023438 212.601562 C 264.023438 210.980469 266.453125 210.980469 266.453125 212.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.039062 248.160156 C 289.039062 249.78125 286.609375 249.78125 286.609375 248.160156 C 286.609375 246.539062 289.039062 246.539062 289.039062 248.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.898438 223.460938 C 255.898438 225.082031 253.46875 225.082031 253.46875 223.460938 C 253.46875 221.839844 255.898438 221.839844 255.898438 223.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.464844 318.578125 C 275.464844 320.199219 273.035156 320.199219 273.035156 318.578125 C 273.035156 316.960938 275.464844 316.960938 275.464844 318.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.898438 70.910156 L 219.535156 73.746094 L 216.261719 73.746094 Z M 217.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 332.53125 259.273438 C 332.53125 260.894531 330.101562 260.894531 330.101562 259.273438 C 330.101562 257.65625 332.53125 257.65625 332.53125 259.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.460938 226.648438 C 314.460938 228.265625 312.03125 228.265625 312.03125 226.648438 C 312.03125 225.027344 314.460938 225.027344 314.460938 226.648438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.179688 70.910156 L 197.816406 73.746094 L 194.542969 73.746094 Z M 196.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.0625 210.710938 C 271.0625 212.332031 268.628906 212.332031 268.628906 210.710938 C 268.628906 209.089844 271.0625 209.089844 271.0625 210.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.96875 70.910156 L 148.605469 73.746094 L 145.332031 73.746094 Z M 146.96875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.558594 263.339844 C 274.558594 264.957031 272.128906 264.957031 272.128906 263.339844 C 272.128906 261.71875 274.558594 261.71875 274.558594 263.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.894531 263.441406 C 271.894531 265.0625 269.464844 265.0625 269.464844 263.441406 C 269.464844 261.820312 271.894531 261.820312 271.894531 263.441406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.511719 286.882812 C 234.511719 288.503906 232.082031 288.503906 232.082031 286.882812 C 232.082031 285.261719 234.511719 285.261719 234.511719 286.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 351.859375 283.300781 C 351.859375 284.921875 349.429688 284.921875 349.429688 283.300781 C 349.429688 281.679688 351.859375 281.679688 351.859375 283.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.40625 418.691406 L 138.042969 415.855469 L 134.769531 415.855469 Z M 136.40625 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.402344 70.910156 L 150.039062 73.746094 L 146.765625 73.746094 Z M 148.402344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.722656 70.910156 L 260.359375 73.746094 L 257.085938 73.746094 Z M 258.722656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.476562 297.476562 C 304.476562 299.097656 302.046875 299.097656 302.046875 297.476562 C 302.046875 295.859375 304.476562 295.859375 304.476562 297.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.40625 418.691406 L 194.039062 415.855469 L 190.769531 415.855469 Z M 192.40625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.863281 240.316406 C 278.863281 241.9375 276.433594 241.9375 276.433594 240.316406 C 276.433594 238.695312 278.863281 238.695312 278.863281 240.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.417969 203.113281 C 192.417969 204.734375 189.988281 204.734375 189.988281 203.113281 C 189.988281 201.492188 192.417969 201.492188 192.417969 203.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 158.777344 137.121094 C 158.777344 138.742188 156.34375 138.742188 156.34375 137.121094 C 156.34375 135.5 158.777344 135.5 158.777344 137.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.34375 70.910156 L 253.980469 73.746094 L 250.710938 73.746094 Z M 252.34375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 272.621094 70.910156 L 274.257812 73.746094 L 270.984375 73.746094 Z M 272.621094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.511719 267.734375 C 148.511719 269.355469 146.078125 269.355469 146.078125 267.734375 C 146.078125 266.113281 148.511719 266.113281 148.511719 267.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.570312 204.5625 C 265.570312 206.179688 263.136719 206.179688 263.136719 204.5625 C 263.136719 202.941406 265.570312 202.941406 265.570312 204.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.054688 175.261719 C 276.054688 176.882812 273.625 176.882812 273.625 175.261719 C 273.625 173.640625 276.054688 173.640625 276.054688 175.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.691406 237.859375 C 253.691406 239.480469 251.257812 239.480469 251.257812 237.859375 C 251.257812 236.242188 253.691406 236.242188 253.691406 237.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 357.464844 327.167969 C 357.464844 328.785156 355.035156 328.785156 355.035156 327.167969 C 355.035156 325.546875 357.464844 325.546875 357.464844 327.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.417969 288.644531 C 304.417969 290.265625 301.988281 290.265625 301.988281 288.644531 C 301.988281 287.027344 304.417969 287.027344 304.417969 288.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.039062 249.015625 C 277.039062 250.632812 274.609375 250.632812 274.609375 249.015625 C 274.609375 247.394531 277.039062 247.394531 277.039062 249.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 383.972656 328.652344 C 383.972656 330.273438 381.539062 330.273438 381.539062 328.652344 C 381.539062 327.03125 383.972656 327.03125 383.972656 328.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.722656 255.453125 C 317.722656 257.074219 315.292969 257.074219 315.292969 255.453125 C 315.292969 253.832031 317.722656 253.832031 317.722656 255.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.152344 265.667969 C 251.152344 267.285156 248.722656 267.285156 248.722656 265.667969 C 248.722656 264.046875 251.152344 264.046875 251.152344 265.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 320.589844 286.898438 C 320.589844 288.519531 318.160156 288.519531 318.160156 286.898438 C 318.160156 285.277344 320.589844 285.277344 320.589844 286.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.789062 300.242188 C 276.789062 301.863281 274.359375 301.863281 274.359375 300.242188 C 274.359375 298.625 276.789062 298.625 276.789062 300.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.171875 179.402344 C 286.171875 181.023438 283.742188 181.023438 283.742188 179.402344 C 283.742188 177.78125 286.171875 177.78125 286.171875 179.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.050781 136.410156 C 294.050781 138.027344 291.621094 138.027344 291.621094 136.410156 C 291.621094 134.789062 294.050781 134.789062 294.050781 136.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.808594 242.808594 C 236.808594 244.429688 234.378906 244.429688 234.378906 242.808594 C 234.378906 241.1875 236.808594 241.1875 236.808594 242.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.207031 100.535156 C 263.207031 102.15625 260.777344 102.15625 260.777344 100.535156 C 260.777344 98.917969 263.207031 98.917969 263.207031 100.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.433594 70.910156 L 277.070312 73.746094 L 273.796875 73.746094 Z M 275.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.351562 284.070312 C 266.351562 285.6875 263.917969 285.6875 263.917969 284.070312 C 263.917969 282.449219 266.351562 282.449219 266.351562 284.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.003906 289.667969 C 198.003906 291.289062 195.574219 291.289062 195.574219 289.667969 C 195.574219 288.050781 198.003906 288.050781 198.003906 289.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.707031 252.554688 C 253.707031 254.175781 251.277344 254.175781 251.277344 252.554688 C 251.277344 250.9375 253.707031 250.9375 253.707031 252.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.964844 208 C 250.964844 209.617188 248.535156 209.617188 248.535156 208 C 248.535156 206.378906 250.964844 206.378906 250.964844 208 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.558594 174.578125 C 204.558594 176.199219 202.128906 176.199219 202.128906 174.578125 C 202.128906 172.957031 204.558594 172.957031 204.558594 174.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.046875 141.667969 C 218.046875 143.285156 215.617188 143.285156 215.617188 141.667969 C 215.617188 140.046875 218.046875 140.046875 218.046875 141.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.136719 264.59375 C 272.136719 266.210938 269.707031 266.210938 269.707031 264.59375 C 269.707031 262.972656 272.136719 262.972656 272.136719 264.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.417969 297.5 C 299.417969 299.117188 296.988281 299.117188 296.988281 297.5 C 296.988281 295.878906 299.417969 295.878906 299.417969 297.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.816406 321.183594 C 224.816406 322.804688 222.386719 322.804688 222.386719 321.183594 C 222.386719 319.566406 224.816406 319.566406 224.816406 321.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.066406 294.71875 C 242.066406 296.339844 239.636719 296.339844 239.636719 294.71875 C 239.636719 293.097656 242.066406 293.097656 242.066406 294.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.128906 418.691406 L 144.765625 415.855469 L 141.492188 415.855469 Z M 143.128906 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.363281 418.691406 L 112 415.855469 L 108.726562 415.855469 Z M 110.363281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.265625 70.910156 L 170.902344 73.746094 L 167.628906 73.746094 Z M 169.265625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.210938 210.664062 C 267.210938 212.285156 264.78125 212.285156 264.78125 210.664062 C 264.78125 209.046875 267.210938 209.046875 267.210938 210.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.84375 234.660156 C 283.84375 236.28125 281.414062 236.28125 281.414062 234.660156 C 281.414062 233.039062 283.84375 233.039062 283.84375 234.660156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.8125 70.910156 L 311.449219 73.746094 L 308.175781 73.746094 Z M 309.8125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.527344 285.179688 C 269.527344 286.800781 267.097656 286.800781 267.097656 285.179688 C 267.097656 283.558594 269.527344 283.558594 269.527344 285.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.480469 260.257812 C 281.480469 261.878906 279.050781 261.878906 279.050781 260.257812 C 279.050781 258.636719 281.480469 258.636719 281.480469 260.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.757812 295.992188 C 280.757812 297.613281 278.328125 297.613281 278.328125 295.992188 C 278.328125 294.371094 280.757812 294.371094 280.757812 295.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.328125 70.910156 L 203.964844 73.746094 L 200.691406 73.746094 Z M 202.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 217.480469 339.257812 C 217.480469 340.878906 215.050781 340.878906 215.050781 339.257812 C 215.050781 337.640625 217.480469 337.640625 217.480469 339.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.851562 248.617188 C 294.851562 250.238281 292.421875 250.238281 292.421875 248.617188 C 292.421875 246.996094 294.851562 246.996094 294.851562 248.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.441406 287.351562 C 222.441406 288.972656 220.011719 288.972656 220.011719 287.351562 C 220.011719 285.730469 222.441406 285.730469 222.441406 287.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.609375 258.550781 C 268.609375 260.171875 266.179688 260.171875 266.179688 258.550781 C 266.179688 256.929688 268.609375 256.929688 268.609375 258.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.230469 418.691406 L 311.867188 415.855469 L 308.59375 415.855469 Z M 310.230469 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.574219 70.910156 L 174.210938 73.746094 L 170.9375 73.746094 Z M 172.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.503906 348.394531 C 296.503906 350.011719 294.074219 350.011719 294.074219 348.394531 C 294.074219 346.773438 296.503906 346.773438 296.503906 348.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.613281 161.679688 C 301.613281 163.296875 299.183594 163.296875 299.183594 161.679688 C 299.183594 160.058594 301.613281 160.058594 301.613281 161.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.523438 237.148438 C 269.523438 238.765625 267.09375 238.765625 267.09375 237.148438 C 267.09375 235.527344 269.523438 235.527344 269.523438 237.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.308594 347.640625 C 165.308594 349.261719 162.878906 349.261719 162.878906 347.640625 C 162.878906 346.019531 165.308594 346.019531 165.308594 347.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.003906 133.035156 C 236.003906 134.65625 233.574219 134.65625 233.574219 133.035156 C 233.574219 131.414062 236.003906 131.414062 236.003906 133.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.613281 174.398438 C 188.613281 176.019531 186.183594 176.019531 186.183594 174.398438 C 186.183594 172.78125 188.613281 172.78125 188.613281 174.398438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.472656 70.910156 L 187.109375 73.746094 L 183.835938 73.746094 Z M 185.472656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.15625 70.910156 L 140.792969 73.746094 L 137.519531 73.746094 Z M 139.15625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.460938 116.175781 C 239.460938 117.796875 237.03125 117.796875 237.03125 116.175781 C 237.03125 114.554688 239.460938 114.554688 239.460938 116.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.238281 70.910156 L 235.875 73.746094 L 232.601562 73.746094 Z M 234.238281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.132812 312.273438 C 139.132812 313.890625 136.703125 313.890625 136.703125 312.273438 C 136.703125 310.652344 139.132812 310.652344 139.132812 312.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.613281 167.988281 C 277.613281 169.609375 275.183594 169.609375 275.183594 167.988281 C 275.183594 166.367188 277.613281 166.367188 277.613281 167.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.480469 243.46875 C 294.480469 245.089844 292.050781 245.089844 292.050781 243.46875 C 292.050781 241.847656 294.480469 241.847656 294.480469 243.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.976562 228.027344 C 232.976562 229.644531 230.546875 229.644531 230.546875 228.027344 C 230.546875 226.40625 232.976562 226.40625 232.976562 228.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.3125 304.613281 C 282.3125 306.234375 279.882812 306.234375 279.882812 304.613281 C 279.882812 302.996094 282.3125 302.996094 282.3125 304.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.578125 216.707031 C 232.578125 218.328125 230.148438 218.328125 230.148438 216.707031 C 230.148438 215.085938 232.578125 215.085938 232.578125 216.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.324219 164.828125 C 147.324219 166.449219 144.894531 166.449219 144.894531 164.828125 C 144.894531 163.210938 147.324219 163.210938 147.324219 164.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.882812 290.304688 C 284.882812 291.925781 282.453125 291.925781 282.453125 290.304688 C 282.453125 288.683594 284.882812 288.683594 284.882812 290.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.015625 377.867188 C 118.015625 379.488281 115.585938 379.488281 115.585938 377.867188 C 115.585938 376.246094 118.015625 376.246094 118.015625 377.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.574219 249.722656 C 153.574219 251.339844 151.144531 251.339844 151.144531 249.722656 C 151.144531 248.101562 153.574219 248.101562 153.574219 249.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.238281 286.730469 C 281.238281 288.351562 278.808594 288.351562 278.808594 286.730469 C 278.808594 285.113281 281.238281 285.113281 281.238281 286.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.707031 205.726562 C 310.707031 207.347656 308.277344 207.347656 308.277344 205.726562 C 308.277344 204.109375 310.707031 204.109375 310.707031 205.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.265625 86.742188 C 246.265625 88.363281 243.832031 88.363281 243.832031 86.742188 C 243.832031 85.121094 246.265625 85.121094 246.265625 86.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 171.132812 220.121094 C 171.132812 221.738281 168.703125 221.738281 168.703125 220.121094 C 168.703125 218.5 171.132812 218.5 171.132812 220.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.453125 207.484375 C 292.453125 209.101562 290.023438 209.101562 290.023438 207.484375 C 290.023438 205.863281 292.453125 205.863281 292.453125 207.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.097656 258.914062 C 288.097656 260.535156 285.664062 260.535156 285.664062 258.914062 C 285.664062 257.292969 288.097656 257.292969 288.097656 258.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.847656 201.917969 C 306.847656 203.535156 304.417969 203.535156 304.417969 201.917969 C 304.417969 200.296875 306.847656 200.296875 306.847656 201.917969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.847656 418.691406 L 180.484375 415.855469 L 177.210938 415.855469 Z M 178.847656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.945312 124.789062 C 289.945312 126.410156 287.515625 126.410156 287.515625 124.789062 C 287.515625 123.167969 289.945312 123.167969 289.945312 124.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.683594 232.148438 C 143.683594 233.769531 141.253906 233.769531 141.253906 232.148438 C 141.253906 230.527344 143.683594 230.527344 143.683594 232.148438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.585938 70.910156 L 229.222656 73.746094 L 225.949219 73.746094 Z M 227.585938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.996094 199.949219 C 270.996094 201.570312 268.566406 201.570312 268.566406 199.949219 C 268.566406 198.332031 270.996094 198.332031 270.996094 199.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.867188 70.910156 L 149.503906 73.746094 L 146.230469 73.746094 Z M 147.867188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.460938 261.902344 C 312.460938 263.519531 310.03125 263.519531 310.03125 261.902344 C 310.03125 260.28125 312.460938 260.28125 312.460938 261.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.195312 214.292969 C 287.195312 215.914062 284.765625 215.914062 284.765625 214.292969 C 284.765625 212.675781 287.195312 212.675781 287.195312 214.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.667969 243.332031 C 220.667969 244.953125 218.238281 244.953125 218.238281 243.332031 C 218.238281 241.710938 220.667969 241.710938 220.667969 243.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.65625 333.582031 C 235.65625 335.203125 233.226562 335.203125 233.226562 333.582031 C 233.226562 331.960938 235.65625 331.960938 235.65625 333.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.75 70.910156 L 168.386719 73.746094 L 165.113281 73.746094 Z M 166.75 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.871094 248.816406 C 291.871094 250.433594 289.441406 250.433594 289.441406 248.816406 C 289.441406 247.195312 291.871094 247.195312 291.871094 248.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.972656 247.011719 C 266.972656 248.632812 264.542969 248.632812 264.542969 247.011719 C 264.542969 245.390625 266.972656 245.390625 266.972656 247.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.140625 248.242188 C 249.140625 249.863281 246.710938 249.863281 246.710938 248.242188 C 246.710938 246.625 249.140625 246.625 249.140625 248.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.917969 214.65625 C 331.917969 216.277344 329.488281 216.277344 329.488281 214.65625 C 329.488281 213.035156 331.917969 213.035156 331.917969 214.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.960938 341.578125 C 282.960938 343.199219 280.53125 343.199219 280.53125 341.578125 C 280.53125 339.957031 282.960938 339.957031 282.960938 341.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.964844 307.691406 C 316.964844 309.3125 314.535156 309.3125 314.535156 307.691406 C 314.535156 306.074219 316.964844 306.074219 316.964844 307.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.625 255.554688 C 298.625 257.171875 296.195312 257.171875 296.195312 255.554688 C 296.195312 253.933594 298.625 253.933594 298.625 255.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.855469 284.046875 C 235.855469 285.664062 233.425781 285.664062 233.425781 284.046875 C 233.425781 282.425781 235.855469 282.425781 235.855469 284.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 346.207031 292.113281 C 346.207031 293.734375 343.777344 293.734375 343.777344 292.113281 C 343.777344 290.496094 346.207031 290.496094 346.207031 292.113281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.730469 305.867188 C 265.730469 307.488281 263.300781 307.488281 263.300781 305.867188 C 263.300781 304.25 265.730469 304.25 265.730469 305.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.171875 269.378906 C 290.171875 271 287.742188 271 287.742188 269.378906 C 287.742188 267.757812 290.171875 267.757812 290.171875 269.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 325.886719 261.828125 C 325.886719 263.449219 323.457031 263.449219 323.457031 261.828125 C 323.457031 260.207031 325.886719 260.207031 325.886719 261.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.902344 70.910156 L 241.539062 73.746094 L 238.265625 73.746094 Z M 239.902344 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.449219 70.910156 L 235.085938 73.746094 L 231.8125 73.746094 Z M 233.449219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.203125 177.507812 C 241.203125 179.128906 238.773438 179.128906 238.773438 177.507812 C 238.773438 175.890625 241.203125 175.890625 241.203125 177.507812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 273.679688 70.910156 L 275.3125 73.746094 L 272.042969 73.746094 Z M 273.679688 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.898438 70.910156 L 221.535156 73.746094 L 218.261719 73.746094 Z M 219.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.976562 254.75 C 280.976562 256.371094 278.546875 256.371094 278.546875 254.75 C 278.546875 253.132812 280.976562 253.132812 280.976562 254.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.5625 75.59375 C 277.5625 77.214844 275.132812 77.214844 275.132812 75.59375 C 275.132812 73.976562 277.5625 73.976562 277.5625 75.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.65625 383.898438 C 236.65625 385.519531 234.226562 385.519531 234.226562 383.898438 C 234.226562 382.277344 236.65625 382.277344 236.65625 383.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.792969 202.1875 C 267.792969 203.808594 265.363281 203.808594 265.363281 202.1875 C 265.363281 200.566406 267.792969 200.566406 267.792969 202.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.984375 177.09375 C 247.984375 178.714844 245.554688 178.714844 245.554688 177.09375 C 245.554688 175.476562 247.984375 175.476562 247.984375 177.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.121094 206.925781 C 236.121094 208.542969 233.691406 208.542969 233.691406 206.925781 C 233.691406 205.304688 236.121094 205.304688 236.121094 206.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.550781 161.972656 C 311.550781 163.589844 309.121094 163.589844 309.121094 161.972656 C 309.121094 160.351562 311.550781 160.351562 311.550781 161.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.464844 179.472656 C 157.464844 181.09375 155.03125 181.09375 155.03125 179.472656 C 155.03125 177.855469 157.464844 177.855469 157.464844 179.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.417969 122.90625 C 222.417969 124.527344 219.988281 124.527344 219.988281 122.90625 C 219.988281 121.289062 222.417969 121.289062 222.417969 122.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.027344 275.386719 C 281.027344 277.007812 278.59375 277.007812 278.59375 275.386719 C 278.59375 273.769531 281.027344 273.769531 281.027344 275.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.03125 292.097656 C 146.03125 293.714844 143.601562 293.714844 143.601562 292.097656 C 143.601562 290.476562 146.03125 290.476562 146.03125 292.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.3125 229.710938 C 294.3125 231.332031 291.882812 231.332031 291.882812 229.710938 C 291.882812 228.089844 294.3125 228.089844 294.3125 229.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.195312 243.773438 C 279.195312 245.394531 276.765625 245.394531 276.765625 243.773438 C 276.765625 242.152344 279.195312 242.152344 279.195312 243.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.105469 96.5625 C 152.105469 98.183594 149.675781 98.183594 149.675781 96.5625 C 149.675781 94.945312 152.105469 94.945312 152.105469 96.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 322.636719 269.847656 C 322.636719 271.464844 320.207031 271.464844 320.207031 269.847656 C 320.207031 268.226562 322.636719 268.226562 322.636719 269.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.945312 199.386719 C 298.945312 201.007812 296.515625 201.007812 296.515625 199.386719 C 296.515625 197.765625 298.945312 197.765625 298.945312 199.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.316406 299.191406 C 312.316406 300.808594 309.886719 300.808594 309.886719 299.191406 C 309.886719 297.570312 312.316406 297.570312 312.316406 299.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.238281 130.214844 C 351.238281 131.835938 348.808594 131.835938 348.808594 130.214844 C 348.808594 128.59375 351.238281 128.59375 351.238281 130.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 282.234375 70.910156 L 283.871094 73.746094 L 280.597656 73.746094 Z M 282.234375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.042969 238.132812 C 265.042969 239.753906 262.613281 239.753906 262.613281 238.132812 C 262.613281 236.511719 265.042969 236.511719 265.042969 238.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.90625 304.46875 C 300.90625 306.085938 298.476562 306.085938 298.476562 304.46875 C 298.476562 302.847656 300.90625 302.847656 300.90625 304.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.40625 332.671875 C 129.40625 334.292969 126.976562 334.292969 126.976562 332.671875 C 126.976562 331.050781 129.40625 331.050781 129.40625 332.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.402344 310.316406 C 261.402344 311.933594 258.972656 311.933594 258.972656 310.316406 C 258.972656 308.695312 261.402344 308.695312 261.402344 310.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.824219 114.886719 C 313.824219 116.503906 311.394531 116.503906 311.394531 114.886719 C 311.394531 113.265625 313.824219 113.265625 313.824219 114.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.085938 257 C 277.085938 258.621094 274.65625 258.621094 274.65625 257 C 274.65625 255.382812 277.085938 255.382812 277.085938 257 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.21875 279.164062 C 153.21875 280.785156 150.789062 280.785156 150.789062 279.164062 C 150.789062 277.542969 153.21875 277.542969 153.21875 279.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 115.582031 259.722656 C 115.582031 261.34375 113.152344 261.34375 113.152344 259.722656 C 113.152344 258.105469 115.582031 258.105469 115.582031 259.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.511719 250.328125 C 99.511719 251.949219 97.082031 251.949219 97.082031 250.328125 C 97.082031 248.710938 99.511719 248.710938 99.511719 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.128906 125.734375 C 147.128906 127.355469 144.699219 127.355469 144.699219 125.734375 C 144.699219 124.113281 147.128906 124.113281 147.128906 125.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.65625 307.710938 C 194.65625 309.328125 192.226562 309.328125 192.226562 307.710938 C 192.226562 306.089844 194.65625 306.089844 194.65625 307.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.117188 230.175781 C 187.117188 231.792969 184.683594 231.792969 184.683594 230.175781 C 184.683594 228.554688 187.117188 228.554688 187.117188 230.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.359375 277.015625 C 250.359375 278.636719 247.929688 278.636719 247.929688 277.015625 C 247.929688 275.394531 250.359375 275.394531 250.359375 277.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.558594 255.507812 C 127.558594 257.128906 125.128906 257.128906 125.128906 255.507812 C 125.128906 253.886719 127.558594 253.886719 127.558594 255.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.285156 284.257812 C 200.285156 285.878906 197.855469 285.878906 197.855469 284.257812 C 197.855469 282.640625 200.285156 282.640625 200.285156 284.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.6875 258.140625 C 298.6875 259.761719 296.257812 259.761719 296.257812 258.140625 C 296.257812 256.519531 298.6875 256.519531 298.6875 258.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.152344 248.566406 C 262.152344 250.1875 259.722656 250.1875 259.722656 248.566406 C 259.722656 246.945312 262.152344 246.945312 262.152344 248.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 184.394531 409.972656 C 184.394531 411.589844 181.964844 411.589844 181.964844 409.972656 C 181.964844 408.351562 184.394531 408.351562 184.394531 409.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.214844 164.960938 C 237.214844 166.578125 234.785156 166.578125 234.785156 164.960938 C 234.785156 163.339844 237.214844 163.339844 237.214844 164.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.25 267.789062 C 280.25 269.410156 277.820312 269.410156 277.820312 267.789062 C 277.820312 266.171875 280.25 266.171875 280.25 267.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.570312 271.414062 C 272.570312 273.035156 270.140625 273.035156 270.140625 271.414062 C 270.140625 269.792969 272.570312 269.792969 272.570312 271.414062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.453125 70.910156 L 270.089844 73.746094 L 266.816406 73.746094 Z M 268.453125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.9375 225.324219 C 215.9375 226.945312 213.507812 226.945312 213.507812 225.324219 C 213.507812 223.707031 215.9375 223.707031 215.9375 225.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.605469 70.910156 L 171.238281 73.746094 L 167.96875 73.746094 Z M 169.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 191.8125 113.515625 C 191.8125 115.136719 189.382812 115.136719 189.382812 113.515625 C 189.382812 111.894531 191.8125 111.894531 191.8125 113.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.632812 185.578125 C 155.632812 187.199219 153.203125 187.199219 153.203125 185.578125 C 153.203125 183.960938 155.632812 183.960938 155.632812 185.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.011719 131.375 C 260.011719 132.996094 257.582031 132.996094 257.582031 131.375 C 257.582031 129.753906 260.011719 129.753906 260.011719 131.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 321.855469 254.585938 C 321.855469 256.207031 319.425781 256.207031 319.425781 254.585938 C 319.425781 252.964844 321.855469 252.964844 321.855469 254.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 106.675781 189.992188 C 106.675781 191.609375 104.246094 191.609375 104.246094 189.992188 C 104.246094 188.371094 106.675781 188.371094 106.675781 189.992188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.191406 418.691406 L 154.824219 415.855469 L 151.554688 415.855469 Z M 153.191406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.144531 138.8125 C 235.144531 140.433594 232.714844 140.433594 232.714844 138.8125 C 232.714844 137.191406 235.144531 137.191406 235.144531 138.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.09375 84.984375 C 272.09375 86.605469 269.664062 86.605469 269.664062 84.984375 C 269.664062 83.367188 272.09375 83.367188 272.09375 84.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.421875 158.179688 C 230.421875 159.800781 227.992188 159.800781 227.992188 158.179688 C 227.992188 156.558594 230.421875 156.558594 230.421875 158.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.269531 256.941406 C 280.269531 258.558594 277.839844 258.558594 277.839844 256.941406 C 277.839844 255.320312 280.269531 255.320312 280.269531 256.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.789062 317.878906 C 262.789062 319.5 260.359375 319.5 260.359375 317.878906 C 260.359375 316.261719 262.789062 316.261719 262.789062 317.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 214.441406 360.734375 C 214.441406 362.355469 212.011719 362.355469 212.011719 360.734375 C 212.011719 359.117188 214.441406 359.117188 214.441406 360.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.03125 312.082031 C 251.03125 313.703125 248.601562 313.703125 248.601562 312.082031 C 248.601562 310.460938 251.03125 310.460938 251.03125 312.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.429688 290.050781 C 208.429688 291.671875 206 291.671875 206 290.050781 C 206 288.429688 208.429688 288.429688 208.429688 290.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.285156 255.34375 C 255.285156 256.960938 252.855469 256.960938 252.855469 255.34375 C 252.855469 253.722656 255.285156 253.722656 255.285156 255.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.847656 296.171875 C 248.847656 297.792969 246.417969 297.792969 246.417969 296.171875 C 246.417969 294.550781 248.847656 294.550781 248.847656 296.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.777344 232.101562 C 243.777344 233.722656 241.347656 233.722656 241.347656 232.101562 C 241.347656 230.480469 243.777344 230.480469 243.777344 232.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.085938 375.417969 C 262.085938 377.039062 259.65625 377.039062 259.65625 375.417969 C 259.65625 373.796875 262.085938 373.796875 262.085938 375.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.949219 226.847656 C 310.949219 228.46875 308.519531 228.46875 308.519531 226.847656 C 308.519531 225.230469 310.949219 225.230469 310.949219 226.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.640625 70.910156 L 238.277344 73.746094 L 235.003906 73.746094 Z M 236.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.691406 265.050781 C 200.691406 266.671875 198.261719 266.671875 198.261719 265.050781 C 198.261719 263.429688 200.691406 263.429688 200.691406 265.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.308594 237.980469 C 269.308594 239.601562 266.878906 239.601562 266.878906 237.980469 C 266.878906 236.359375 269.308594 236.359375 269.308594 237.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.476562 95.800781 C 271.476562 97.417969 269.046875 97.417969 269.046875 95.800781 C 269.046875 94.179688 271.476562 94.179688 271.476562 95.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.914062 70.910156 L 236.550781 73.746094 L 233.277344 73.746094 Z M 234.914062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.035156 74.46875 C 145.035156 76.089844 142.605469 76.089844 142.605469 74.46875 C 142.605469 72.847656 145.035156 72.847656 145.035156 74.46875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.796875 70.910156 L 147.433594 73.746094 L 144.160156 73.746094 Z M 145.796875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.175781 265.863281 C 309.175781 267.484375 306.746094 267.484375 306.746094 265.863281 C 306.746094 264.246094 309.175781 264.246094 309.175781 265.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.152344 212.953125 C 246.152344 214.574219 243.722656 214.574219 243.722656 212.953125 C 243.722656 211.332031 246.152344 211.332031 246.152344 212.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 317.222656 262.097656 C 317.222656 263.71875 314.792969 263.71875 314.792969 262.097656 C 314.792969 260.480469 317.222656 260.480469 317.222656 262.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.597656 70.910156 L 139.234375 73.746094 L 135.960938 73.746094 Z M 137.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.558594 222.421875 C 262.558594 224.042969 260.128906 224.042969 260.128906 222.421875 C 260.128906 220.800781 262.558594 220.800781 262.558594 222.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211 200.324219 C 211 201.945312 208.570312 201.945312 208.570312 200.324219 C 208.570312 198.707031 211 198.707031 211 200.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.558594 178.910156 C 278.558594 180.53125 276.125 180.53125 276.125 178.910156 C 276.125 177.289062 278.558594 177.289062 278.558594 178.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.511719 285.410156 C 200.511719 287.03125 198.082031 287.03125 198.082031 285.410156 C 198.082031 283.789062 200.511719 283.789062 200.511719 285.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.777344 262.824219 C 240.777344 264.445312 238.347656 264.445312 238.347656 262.824219 C 238.347656 261.207031 240.777344 261.207031 240.777344 262.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.121094 319.589844 C 124.121094 321.210938 121.691406 321.210938 121.691406 319.589844 C 121.691406 317.96875 124.121094 317.96875 124.121094 319.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.683594 206.257812 C 233.683594 207.875 231.253906 207.875 231.253906 206.257812 C 231.253906 204.636719 233.683594 204.636719 233.683594 206.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.367188 277.472656 C 279.367188 279.089844 276.933594 279.089844 276.933594 277.472656 C 276.933594 275.851562 279.367188 275.851562 279.367188 277.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.691406 246.53125 C 316.691406 248.148438 314.261719 248.148438 314.261719 246.53125 C 314.261719 244.910156 316.691406 244.910156 316.691406 246.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.441406 159.125 C 176.441406 160.742188 174.011719 160.742188 174.011719 159.125 C 174.011719 157.503906 176.441406 157.503906 176.441406 159.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.5625 163.054688 C 287.5625 164.675781 285.132812 164.675781 285.132812 163.054688 C 285.132812 161.433594 287.5625 161.433594 287.5625 163.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.25 277.484375 C 256.25 279.105469 253.820312 279.105469 253.820312 277.484375 C 253.820312 275.863281 256.25 275.863281 256.25 277.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.726562 215.46875 C 238.726562 217.085938 236.296875 217.085938 236.296875 215.46875 C 236.296875 213.847656 238.726562 213.847656 238.726562 215.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 342.632812 237.476562 C 342.632812 239.097656 340.203125 239.097656 340.203125 237.476562 C 340.203125 235.855469 342.632812 235.855469 342.632812 237.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.769531 275.316406 C 273.769531 276.9375 271.339844 276.9375 271.339844 275.316406 C 271.339844 273.695312 273.769531 273.695312 273.769531 275.316406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.085938 418.691406 L 135.722656 415.855469 L 132.449219 415.855469 Z M 134.085938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.546875 247.402344 C 281.546875 249.023438 279.117188 249.023438 279.117188 247.402344 C 279.117188 245.78125 281.546875 245.78125 281.546875 247.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.15625 253.515625 C 285.15625 255.136719 282.722656 255.136719 282.722656 253.515625 C 282.722656 251.894531 285.15625 251.894531 285.15625 253.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.996094 70.910156 L 188.628906 73.746094 L 185.359375 73.746094 Z M 186.996094 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.617188 70.910156 L 173.253906 73.746094 L 169.980469 73.746094 Z M 171.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.140625 366.429688 C 233.140625 368.050781 230.707031 368.050781 230.707031 366.429688 C 230.707031 364.8125 233.140625 364.8125 233.140625 366.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.117188 210.375 C 214.117188 211.996094 211.6875 211.996094 211.6875 210.375 C 211.6875 208.753906 214.117188 208.753906 214.117188 210.375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.640625 70.910156 L 214.273438 73.746094 L 211.003906 73.746094 Z M 212.640625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.015625 253.894531 C 284.015625 255.515625 281.585938 255.515625 281.585938 253.894531 C 281.585938 252.273438 284.015625 252.273438 284.015625 253.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.289062 285.765625 C 319.289062 287.382812 316.859375 287.382812 316.859375 285.765625 C 316.859375 284.144531 319.289062 284.144531 319.289062 285.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.808594 223.488281 C 324.808594 225.109375 322.378906 225.109375 322.378906 223.488281 C 322.378906 221.871094 324.808594 221.871094 324.808594 223.488281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.375 118.148438 C 272.375 119.769531 269.945312 119.769531 269.945312 118.148438 C 269.945312 116.527344 272.375 116.527344 272.375 118.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.765625 237.828125 C 296.765625 239.449219 294.335938 239.449219 294.335938 237.828125 C 294.335938 236.207031 296.765625 236.207031 296.765625 237.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.632812 325.175781 C 287.632812 326.796875 285.203125 326.796875 285.203125 325.175781 C 285.203125 323.554688 287.632812 323.554688 287.632812 325.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.8125 418.691406 L 135.449219 415.855469 L 132.175781 415.855469 Z M 133.8125 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.667969 253.410156 C 239.667969 255.027344 237.238281 255.027344 237.238281 253.410156 C 237.238281 251.789062 239.667969 251.789062 239.667969 253.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.570312 258.203125 C 292.570312 259.824219 290.140625 259.824219 290.140625 258.203125 C 290.140625 256.582031 292.570312 256.582031 292.570312 258.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173 123.421875 C 173 125.042969 170.570312 125.042969 170.570312 123.421875 C 170.570312 121.800781 173 121.800781 173 123.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.109375 321.207031 C 238.109375 322.828125 235.679688 322.828125 235.679688 321.207031 C 235.679688 319.589844 238.109375 319.589844 238.109375 321.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.378906 198.34375 C 253.378906 199.964844 250.949219 199.964844 250.949219 198.34375 C 250.949219 196.726562 253.378906 196.726562 253.378906 198.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.757812 198.480469 C 258.757812 200.101562 256.328125 200.101562 256.328125 198.480469 C 256.328125 196.859375 258.757812 196.859375 258.757812 198.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.949219 159.582031 C 257.949219 161.203125 255.519531 161.203125 255.519531 159.582031 C 255.519531 157.964844 257.949219 157.964844 257.949219 159.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.503906 219.378906 C 283.503906 220.996094 281.074219 220.996094 281.074219 219.378906 C 281.074219 217.757812 283.503906 217.757812 283.503906 219.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.816406 172.53125 C 209.816406 174.148438 207.382812 174.148438 207.382812 172.53125 C 207.382812 170.910156 209.816406 170.910156 209.816406 172.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.234375 70.910156 L 158.871094 73.746094 L 155.597656 73.746094 Z M 157.234375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.226562 70.910156 L 241.863281 73.746094 L 238.59375 73.746094 Z M 240.226562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.503906 418.691406 L 127.140625 415.855469 L 123.867188 415.855469 Z M 125.503906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.464844 179.882812 C 265.464844 181.5 263.035156 181.5 263.035156 179.882812 C 263.035156 178.261719 265.464844 178.261719 265.464844 179.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.875 265.207031 C 283.875 266.824219 281.445312 266.824219 281.445312 265.207031 C 281.445312 263.585938 283.875 263.585938 283.875 265.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.214844 223.074219 C 210.214844 224.695312 207.785156 224.695312 207.785156 223.074219 C 207.785156 221.453125 210.214844 221.453125 210.214844 223.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.503906 345.855469 C 307.503906 347.476562 305.074219 347.476562 305.074219 345.855469 C 305.074219 344.238281 307.503906 344.238281 307.503906 345.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.722656 314.519531 C 268.722656 316.140625 266.292969 316.140625 266.292969 314.519531 C 266.292969 312.898438 268.722656 312.898438 268.722656 314.519531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.964844 70.910156 L 262.601562 73.746094 L 259.328125 73.746094 Z M 260.964844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.242188 176.542969 C 274.242188 178.164062 271.8125 178.164062 271.8125 176.542969 C 271.8125 174.921875 274.242188 174.921875 274.242188 176.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.445312 127.550781 C 118.445312 129.171875 116.015625 129.171875 116.015625 127.550781 C 116.015625 125.933594 118.445312 125.933594 118.445312 127.550781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.953125 70.910156 L 156.585938 73.746094 L 153.316406 73.746094 Z M 154.953125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.871094 397.507812 C 235.871094 399.125 233.441406 399.125 233.441406 397.507812 C 233.441406 395.886719 235.871094 395.886719 235.871094 397.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.46875 368.664062 C 244.46875 370.285156 242.039062 370.285156 242.039062 368.664062 C 242.039062 367.042969 244.46875 367.042969 244.46875 368.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.710938 370.128906 C 274.710938 371.75 272.28125 371.75 272.28125 370.128906 C 272.28125 368.507812 274.710938 368.507812 274.710938 370.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.9375 184.734375 C 170.9375 186.355469 168.507812 186.355469 168.507812 184.734375 C 168.507812 183.113281 170.9375 183.113281 170.9375 184.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.320312 137.601562 C 274.320312 139.222656 271.890625 139.222656 271.890625 137.601562 C 271.890625 135.984375 274.320312 135.984375 274.320312 137.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.730469 199.582031 C 302.730469 201.199219 300.300781 201.199219 300.300781 199.582031 C 300.300781 197.960938 302.730469 197.960938 302.730469 199.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 310.160156 418.691406 L 311.796875 415.855469 L 308.523438 415.855469 Z M 310.160156 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.980469 359.707031 C 213.980469 361.328125 211.550781 361.328125 211.550781 359.707031 C 211.550781 358.085938 213.980469 358.085938 213.980469 359.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.859375 70.910156 L 145.496094 73.746094 L 142.222656 73.746094 Z M 143.859375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.875 70.910156 L 167.511719 73.746094 L 164.238281 73.746094 Z M 165.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.796875 113.097656 C 288.796875 114.71875 286.367188 114.71875 286.367188 113.097656 C 286.367188 111.480469 288.796875 111.480469 288.796875 113.097656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.363281 70.910156 L 267 73.746094 L 263.726562 73.746094 Z M 265.363281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.5625 200.96875 C 211.5625 202.589844 209.132812 202.589844 209.132812 200.96875 C 209.132812 199.347656 211.5625 199.347656 211.5625 200.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.332031 135.246094 C 191.332031 136.867188 188.902344 136.867188 188.902344 135.246094 C 188.902344 133.625 191.332031 133.625 191.332031 135.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.40625 70.910156 L 203.042969 73.746094 L 199.773438 73.746094 Z M 201.40625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.914062 273.703125 C 273.914062 275.324219 271.484375 275.324219 271.484375 273.703125 C 271.484375 272.082031 273.914062 272.082031 273.914062 273.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.972656 229.257812 C 293.972656 230.878906 291.542969 230.878906 291.542969 229.257812 C 291.542969 227.636719 293.972656 227.636719 293.972656 229.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 352.691406 267.355469 C 352.691406 268.976562 350.261719 268.976562 350.261719 267.355469 C 350.261719 265.734375 352.691406 265.734375 352.691406 267.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.691406 237.050781 C 264.691406 238.671875 262.261719 238.671875 262.261719 237.050781 C 262.261719 235.433594 264.691406 235.433594 264.691406 237.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.328125 196.917969 C 227.328125 198.539062 224.898438 198.539062 224.898438 196.917969 C 224.898438 195.296875 227.328125 195.296875 227.328125 196.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.421875 170.992188 C 193.421875 172.609375 190.992188 172.609375 190.992188 170.992188 C 190.992188 169.371094 193.421875 169.371094 193.421875 170.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275 217.019531 C 275 218.640625 272.570312 218.640625 272.570312 217.019531 C 272.570312 215.398438 275 215.398438 275 217.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.546875 278.648438 C 277.546875 280.269531 275.117188 280.269531 275.117188 278.648438 C 275.117188 277.027344 277.546875 277.027344 277.546875 278.648438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.238281 254.261719 C 237.238281 255.878906 234.808594 255.878906 234.808594 254.261719 C 234.808594 252.640625 237.238281 252.640625 237.238281 254.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.167969 205.0625 C 122.167969 206.683594 119.738281 206.683594 119.738281 205.0625 C 119.738281 203.441406 122.167969 203.441406 122.167969 205.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.898438 338.289062 C 282.898438 339.910156 280.46875 339.910156 280.46875 338.289062 C 280.46875 336.671875 282.898438 336.671875 282.898438 338.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.085938 193.4375 C 217.085938 195.058594 214.65625 195.058594 214.65625 193.4375 C 214.65625 191.816406 217.085938 191.816406 217.085938 193.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.109375 205.820312 C 253.109375 207.441406 250.679688 207.441406 250.679688 205.820312 C 250.679688 204.199219 253.109375 204.199219 253.109375 205.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.878906 133.398438 C 145.878906 135.019531 143.445312 135.019531 143.445312 133.398438 C 143.445312 131.78125 145.878906 131.78125 145.878906 133.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.828125 173.269531 C 111.828125 174.890625 109.398438 174.890625 109.398438 173.269531 C 109.398438 171.648438 111.828125 171.648438 111.828125 173.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.734375 132.097656 C 230.734375 133.71875 228.304688 133.71875 228.304688 132.097656 C 228.304688 130.476562 230.734375 130.476562 230.734375 132.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.492188 106.589844 C 230.492188 108.210938 228.0625 108.210938 228.0625 106.589844 C 228.0625 104.96875 230.492188 104.96875 230.492188 106.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.058594 116.796875 C 289.058594 118.417969 286.628906 118.417969 286.628906 116.796875 C 286.628906 115.179688 289.058594 115.179688 289.058594 116.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.964844 191.0625 C 195.964844 192.683594 193.535156 192.683594 193.535156 191.0625 C 193.535156 189.445312 195.964844 189.445312 195.964844 191.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.109375 70.910156 L 190.746094 73.746094 L 187.472656 73.746094 Z M 189.109375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 239.425781 145.476562 C 239.425781 147.097656 236.996094 147.097656 236.996094 145.476562 C 236.996094 143.855469 239.425781 143.855469 239.425781 145.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.738281 239.175781 C 283.738281 240.796875 281.308594 240.796875 281.308594 239.175781 C 281.308594 237.558594 283.738281 237.558594 283.738281 239.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.835938 235.847656 C 270.835938 237.46875 268.40625 237.46875 268.40625 235.847656 C 268.40625 234.230469 270.835938 234.230469 270.835938 235.847656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.785156 306.785156 C 273.785156 308.402344 271.355469 308.402344 271.355469 306.785156 C 271.355469 305.164062 273.785156 305.164062 273.785156 306.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.222656 286.957031 C 212.222656 288.578125 209.792969 288.578125 209.792969 286.957031 C 209.792969 285.335938 212.222656 285.335938 212.222656 286.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.558594 254.464844 C 302.558594 256.085938 300.128906 256.085938 300.128906 254.464844 C 300.128906 252.84375 302.558594 252.84375 302.558594 254.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.039062 418.691406 L 205.675781 415.855469 L 202.402344 415.855469 Z M 204.039062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.222656 250.328125 C 97.222656 251.949219 94.792969 251.949219 94.792969 250.328125 C 94.792969 248.710938 97.222656 248.710938 97.222656 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.539062 418.691406 L 119.175781 415.855469 L 115.902344 415.855469 Z M 117.539062 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.132812 70.910156 L 113.769531 73.746094 L 110.496094 73.746094 Z M 112.132812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.925781 276.464844 C 310.925781 278.082031 308.492188 278.082031 308.492188 276.464844 C 308.492188 274.84375 310.925781 274.84375 310.925781 276.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.902344 80.136719 C 143.902344 81.757812 141.472656 81.757812 141.472656 80.136719 C 141.472656 78.519531 143.902344 78.519531 143.902344 80.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.054688 238.589844 C 223.054688 240.210938 220.625 240.210938 220.625 238.589844 C 220.625 236.96875 223.054688 236.96875 223.054688 238.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.542969 252.019531 C 246.542969 253.640625 244.113281 253.640625 244.113281 252.019531 C 244.113281 250.398438 246.542969 250.398438 246.542969 252.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.027344 134.417969 C 187.027344 136.035156 184.597656 136.035156 184.597656 134.417969 C 184.597656 132.796875 187.027344 132.796875 187.027344 134.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.816406 70.910156 L 148.453125 73.746094 L 145.179688 73.746094 Z M 146.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.800781 254.054688 C 258.800781 255.675781 256.371094 255.675781 256.371094 254.054688 C 256.371094 252.433594 258.800781 252.433594 258.800781 254.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.304688 207.84375 C 194.304688 209.464844 191.875 209.464844 191.875 207.84375 C 191.875 206.226562 194.304688 206.226562 194.304688 207.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 295.25 315.246094 C 295.25 316.863281 292.820312 316.863281 292.820312 315.246094 C 292.820312 313.625 295.25 313.625 295.25 315.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.550781 243.953125 C 266.550781 245.574219 264.121094 245.574219 264.121094 243.953125 C 264.121094 242.335938 266.550781 242.335938 266.550781 243.953125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.089844 70.910156 L 129.722656 73.746094 L 126.453125 73.746094 Z M 128.089844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.683594 191.417969 C 227.683594 193.039062 225.25 193.039062 225.25 191.417969 C 225.25 189.796875 227.683594 189.796875 227.683594 191.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.992188 203.570312 C 200.992188 205.191406 198.5625 205.191406 198.5625 203.570312 C 198.5625 201.953125 200.992188 201.953125 200.992188 203.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.097656 304.785156 C 197.097656 306.40625 194.667969 306.40625 194.667969 304.785156 C 194.667969 303.167969 197.097656 303.167969 197.097656 304.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 172.800781 272.425781 C 172.800781 274.046875 170.371094 274.046875 170.371094 272.425781 C 170.371094 270.804688 172.800781 270.804688 172.800781 272.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.25 283.695312 C 246.25 285.316406 243.820312 285.316406 243.820312 283.695312 C 243.820312 282.074219 246.25 282.074219 246.25 283.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.859375 208.429688 C 225.859375 210.046875 223.429688 210.046875 223.429688 208.429688 C 223.429688 206.808594 225.859375 206.808594 225.859375 208.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.75 176.941406 C 206.75 178.5625 204.320312 178.5625 204.320312 176.941406 C 204.320312 175.320312 206.75 175.320312 206.75 176.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.816406 159.351562 C 275.816406 160.972656 273.382812 160.972656 273.382812 159.351562 C 273.382812 157.730469 275.816406 157.730469 275.816406 159.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.65625 138.332031 C 255.65625 139.953125 253.226562 139.953125 253.226562 138.332031 C 253.226562 136.710938 255.65625 136.710938 255.65625 138.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.382812 214.601562 C 193.382812 216.222656 190.953125 216.222656 190.953125 214.601562 C 190.953125 212.984375 193.382812 212.984375 193.382812 214.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 215.632812 418.691406 L 217.269531 415.855469 L 213.996094 415.855469 Z M 215.632812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.035156 244.386719 C 267.035156 246.003906 264.605469 246.003906 264.605469 244.386719 C 264.605469 242.765625 267.035156 242.765625 267.035156 244.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.164062 348.433594 C 280.164062 350.050781 277.734375 350.050781 277.734375 348.433594 C 277.734375 346.8125 280.164062 346.8125 280.164062 348.433594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.273438 70.910156 L 179.90625 73.746094 L 176.636719 73.746094 Z M 178.273438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.382812 323.515625 C 160.382812 325.136719 157.953125 325.136719 157.953125 323.515625 C 157.953125 321.894531 160.382812 321.894531 160.382812 323.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.210938 323.460938 C 298.210938 325.082031 295.78125 325.082031 295.78125 323.460938 C 295.78125 321.839844 298.210938 321.839844 298.210938 323.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.066406 336.667969 C 257.066406 338.289062 254.636719 338.289062 254.636719 336.667969 C 254.636719 335.046875 257.066406 335.046875 257.066406 336.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.914062 307.679688 C 240.914062 309.300781 238.484375 309.300781 238.484375 307.679688 C 238.484375 306.0625 240.914062 306.0625 240.914062 307.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.964844 341.96875 C 245.964844 343.585938 243.53125 343.585938 243.53125 341.96875 C 243.53125 340.347656 245.964844 340.347656 245.964844 341.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.714844 70.910156 L 133.351562 73.746094 L 130.078125 73.746094 Z M 131.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.589844 287.550781 C 314.589844 289.167969 312.160156 289.167969 312.160156 287.550781 C 312.160156 285.929688 314.589844 285.929688 314.589844 287.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.632812 200.550781 C 241.632812 202.171875 239.203125 202.171875 239.203125 200.550781 C 239.203125 198.933594 241.632812 198.933594 241.632812 200.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.339844 260.78125 C 289.339844 262.402344 286.910156 262.402344 286.910156 260.78125 C 286.910156 259.164062 289.339844 259.164062 289.339844 260.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.769531 293.316406 C 278.769531 294.933594 276.339844 294.933594 276.339844 293.316406 C 276.339844 291.695312 278.769531 291.695312 278.769531 293.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.144531 286.5625 C 293.144531 288.183594 290.714844 288.183594 290.714844 286.5625 C 290.714844 284.945312 293.144531 284.945312 293.144531 286.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.003906 215.078125 C 281.003906 216.695312 278.574219 216.695312 278.574219 215.078125 C 278.574219 213.457031 281.003906 213.457031 281.003906 215.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.277344 185.019531 C 289.277344 186.636719 286.847656 186.636719 286.847656 185.019531 C 286.847656 183.398438 289.277344 183.398438 289.277344 185.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.355469 386.203125 C 262.355469 387.820312 259.925781 387.820312 259.925781 386.203125 C 259.925781 384.582031 262.355469 384.582031 262.355469 386.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.371094 281.878906 C 274.371094 283.5 271.941406 283.5 271.941406 281.878906 C 271.941406 280.257812 274.371094 280.257812 274.371094 281.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.167969 245.304688 C 261.167969 246.925781 258.738281 246.925781 258.738281 245.304688 C 258.738281 243.683594 261.167969 243.683594 261.167969 245.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.105469 70.910156 L 164.742188 73.746094 L 161.46875 73.746094 Z M 163.105469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.46875 70.910156 L 165.105469 73.746094 L 161.835938 73.746094 Z M 163.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.675781 160.613281 C 194.675781 162.234375 192.246094 162.234375 192.246094 160.613281 C 192.246094 158.996094 194.675781 158.996094 194.675781 160.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.457031 322.972656 C 265.457031 324.59375 263.027344 324.59375 263.027344 322.972656 C 263.027344 321.351562 265.457031 321.351562 265.457031 322.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.378906 92.242188 C 231.378906 93.863281 228.949219 93.863281 228.949219 92.242188 C 228.949219 90.625 231.378906 90.625 231.378906 92.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.730469 267.976562 C 230.730469 269.597656 228.300781 269.597656 228.300781 267.976562 C 228.300781 266.359375 230.730469 266.359375 230.730469 267.976562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 245.289062 70.910156 L 246.925781 73.746094 L 243.652344 73.746094 Z M 245.289062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.464844 266.347656 C 283.464844 267.96875 281.035156 267.96875 281.035156 266.347656 C 281.035156 264.730469 283.464844 264.730469 283.464844 266.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 195.015625 70.910156 L 196.648438 73.746094 L 193.378906 73.746094 Z M 195.015625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.839844 250.398438 C 263.839844 252.019531 261.410156 252.019531 261.410156 250.398438 C 261.410156 248.777344 263.839844 248.777344 263.839844 250.398438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.613281 227.4375 C 151.613281 229.054688 149.183594 229.054688 149.183594 227.4375 C 149.183594 225.816406 151.613281 225.816406 151.613281 227.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.507812 307.5 C 247.507812 309.117188 245.078125 309.117188 245.078125 307.5 C 245.078125 305.878906 247.507812 305.878906 247.507812 307.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.03125 158.289062 C 291.03125 159.910156 288.601562 159.910156 288.601562 158.289062 C 288.601562 156.667969 291.03125 156.667969 291.03125 158.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.78125 191.933594 C 247.78125 193.554688 245.347656 193.554688 245.347656 191.933594 C 245.347656 190.316406 247.78125 190.316406 247.78125 191.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.6875 204.175781 C 265.6875 205.796875 263.257812 205.796875 263.257812 204.175781 C 263.257812 202.554688 265.6875 202.554688 265.6875 204.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.519531 197.910156 C 299.519531 199.53125 297.089844 199.53125 297.089844 197.910156 C 297.089844 196.292969 299.519531 196.292969 299.519531 197.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.089844 349.679688 C 188.089844 351.300781 185.660156 351.300781 185.660156 349.679688 C 185.660156 348.0625 188.089844 348.0625 188.089844 349.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.445312 215.949219 C 240.445312 217.566406 238.015625 217.566406 238.015625 215.949219 C 238.015625 214.328125 240.445312 214.328125 240.445312 215.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 234.820312 272.289062 C 234.820312 273.910156 232.390625 273.910156 232.390625 272.289062 C 232.390625 270.671875 234.820312 270.671875 234.820312 272.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.695312 222.710938 C 201.695312 224.332031 199.265625 224.332031 199.265625 222.710938 C 199.265625 221.089844 201.695312 221.089844 201.695312 222.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 347.554688 363.527344 C 347.554688 365.148438 345.125 365.148438 345.125 363.527344 C 345.125 361.910156 347.554688 361.910156 347.554688 363.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.757812 199.046875 C 269.757812 200.667969 267.328125 200.667969 267.328125 199.046875 C 267.328125 197.425781 269.757812 197.425781 269.757812 199.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.859375 114.535156 C 223.859375 116.15625 221.429688 116.15625 221.429688 114.535156 C 221.429688 112.914062 223.859375 112.914062 223.859375 114.535156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.460938 418.691406 L 146.097656 415.855469 L 142.824219 415.855469 Z M 144.460938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.789062 260.621094 C 268.789062 262.238281 266.359375 262.238281 266.359375 260.621094 C 266.359375 259 268.789062 259 268.789062 260.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.890625 301.699219 C 262.890625 303.320312 260.460938 303.320312 260.460938 301.699219 C 260.460938 300.082031 262.890625 300.082031 262.890625 301.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.914062 249.195312 C 263.914062 250.816406 261.484375 250.816406 261.484375 249.195312 C 261.484375 247.574219 263.914062 247.574219 263.914062 249.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 329.328125 270.097656 C 329.328125 271.714844 326.898438 271.714844 326.898438 270.097656 C 326.898438 268.476562 329.328125 268.476562 329.328125 270.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.359375 300.324219 C 221.359375 301.945312 218.929688 301.945312 218.929688 300.324219 C 218.929688 298.703125 221.359375 298.703125 221.359375 300.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.449219 244.730469 C 248.449219 246.351562 246.019531 246.351562 246.019531 244.730469 C 246.019531 243.109375 248.449219 243.109375 248.449219 244.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.820312 289.316406 C 248.820312 290.9375 246.390625 290.9375 246.390625 289.316406 C 246.390625 287.695312 248.820312 287.695312 248.820312 289.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.449219 202.921875 C 244.449219 204.539062 242.019531 204.539062 242.019531 202.921875 C 242.019531 201.300781 244.449219 201.300781 244.449219 202.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.550781 70.910156 L 159.1875 73.746094 L 155.917969 73.746094 Z M 157.550781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.429688 70.910156 L 203.066406 73.746094 L 199.792969 73.746094 Z M 201.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.160156 90.769531 C 209.160156 92.390625 206.730469 92.390625 206.730469 90.769531 C 206.730469 89.152344 209.160156 89.152344 209.160156 90.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.386719 70.910156 L 115.023438 73.746094 L 111.75 73.746094 Z M 113.386719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.957031 290.863281 C 232.957031 292.480469 230.527344 292.480469 230.527344 290.863281 C 230.527344 289.242188 232.957031 289.242188 232.957031 290.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 330.949219 244.136719 C 330.949219 245.757812 328.515625 245.757812 328.515625 244.136719 C 328.515625 242.519531 330.949219 242.519531 330.949219 244.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.1875 250.824219 C 279.1875 252.445312 276.757812 252.445312 276.757812 250.824219 C 276.757812 249.207031 279.1875 249.207031 279.1875 250.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.503906 230.964844 C 244.503906 232.585938 242.074219 232.585938 242.074219 230.964844 C 242.074219 229.347656 244.503906 229.347656 244.503906 230.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.160156 70.910156 L 162.796875 73.746094 L 159.523438 73.746094 Z M 161.160156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.25 119.800781 C 273.25 121.421875 270.816406 121.421875 270.816406 119.800781 C 270.816406 118.179688 273.25 118.179688 273.25 119.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.902344 208.804688 C 272.902344 210.425781 270.472656 210.425781 270.472656 208.804688 C 270.472656 207.1875 272.902344 207.1875 272.902344 208.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.671875 393.324219 C 291.671875 394.945312 289.238281 394.945312 289.238281 393.324219 C 289.238281 391.703125 291.671875 391.703125 291.671875 393.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.890625 394.359375 C 199.890625 395.980469 197.460938 395.980469 197.460938 394.359375 C 197.460938 392.742188 199.890625 392.742188 199.890625 394.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.152344 94.457031 C 261.152344 96.078125 258.722656 96.078125 258.722656 94.457031 C 258.722656 92.839844 261.152344 92.839844 261.152344 94.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.984375 117.988281 C 145.984375 119.605469 143.554688 119.605469 143.554688 117.988281 C 143.554688 116.367188 145.984375 116.367188 145.984375 117.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.257812 70.910156 L 170.894531 73.746094 L 167.625 73.746094 Z M 169.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.398438 125.289062 C 154.398438 126.90625 151.96875 126.90625 151.96875 125.289062 C 151.96875 123.667969 154.398438 123.667969 154.398438 125.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.695312 145.601562 C 152.695312 147.222656 150.265625 147.222656 150.265625 145.601562 C 150.265625 143.980469 152.695312 143.980469 152.695312 145.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.441406 156.558594 C 315.441406 158.179688 313.011719 158.179688 313.011719 156.558594 C 313.011719 154.941406 315.441406 154.941406 315.441406 156.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.777344 230.613281 C 194.777344 232.230469 192.347656 232.230469 192.347656 230.613281 C 192.347656 228.992188 194.777344 228.992188 194.777344 230.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.726562 403.652344 C 168.726562 405.273438 166.296875 405.273438 166.296875 403.652344 C 166.296875 402.03125 168.726562 402.03125 168.726562 403.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.859375 351.507812 C 242.859375 353.125 240.429688 353.125 240.429688 351.507812 C 240.429688 349.886719 242.859375 349.886719 242.859375 351.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.613281 246.183594 C 277.613281 247.804688 275.183594 247.804688 275.183594 246.183594 C 275.183594 244.566406 277.613281 244.566406 277.613281 246.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.164062 298.339844 C 273.164062 299.957031 270.734375 299.957031 270.734375 298.339844 C 270.734375 296.71875 273.164062 296.71875 273.164062 298.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.902344 262.578125 C 255.902344 264.199219 253.472656 264.199219 253.472656 262.578125 C 253.472656 260.960938 255.902344 260.960938 255.902344 262.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.726562 234.839844 C 280.726562 236.457031 278.296875 236.457031 278.296875 234.839844 C 278.296875 233.21875 280.726562 233.21875 280.726562 234.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.402344 198.222656 C 313.402344 199.84375 310.972656 199.84375 310.972656 198.222656 C 310.972656 196.601562 313.402344 196.601562 313.402344 198.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.523438 276.464844 C 214.523438 278.085938 212.09375 278.085938 212.09375 276.464844 C 212.09375 274.84375 214.523438 274.84375 214.523438 276.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.011719 176.03125 C 248.011719 177.648438 245.578125 177.648438 245.578125 176.03125 C 245.578125 174.410156 248.011719 174.410156 248.011719 176.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.675781 288.402344 C 264.675781 290.023438 262.246094 290.023438 262.246094 288.402344 C 262.246094 286.785156 264.675781 286.785156 264.675781 288.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.769531 173.273438 C 109.769531 174.894531 107.339844 174.894531 107.339844 173.273438 C 107.339844 171.652344 109.769531 171.652344 109.769531 173.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.136719 218.261719 C 239.136719 219.882812 236.707031 219.882812 236.707031 218.261719 C 236.707031 216.640625 239.136719 216.640625 239.136719 218.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 366.996094 301.808594 C 366.996094 303.429688 364.5625 303.429688 364.5625 301.808594 C 364.5625 300.1875 366.996094 300.1875 366.996094 301.808594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.550781 334.519531 C 316.550781 336.140625 314.117188 336.140625 314.117188 334.519531 C 314.117188 332.898438 316.550781 332.898438 316.550781 334.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.539062 263.644531 C 287.539062 265.261719 285.109375 265.261719 285.109375 263.644531 C 285.109375 262.023438 287.539062 262.023438 287.539062 263.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.421875 152.578125 C 202.421875 154.199219 199.992188 154.199219 199.992188 152.578125 C 199.992188 150.960938 202.421875 150.960938 202.421875 152.578125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 349.742188 418.691406 L 351.378906 415.855469 L 348.109375 415.855469 Z M 349.742188 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.933594 280.359375 C 293.933594 281.980469 291.5 281.980469 291.5 280.359375 C 291.5 278.742188 293.933594 278.742188 293.933594 280.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.128906 283.125 C 311.128906 284.746094 308.699219 284.746094 308.699219 283.125 C 308.699219 281.503906 311.128906 281.503906 311.128906 283.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.878906 267.390625 C 287.878906 269.011719 285.449219 269.011719 285.449219 267.390625 C 285.449219 265.769531 287.878906 265.769531 287.878906 267.390625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.800781 263.683594 C 271.800781 265.304688 269.371094 265.304688 269.371094 263.683594 C 269.371094 262.0625 271.800781 262.0625 271.800781 263.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.3125 276.734375 C 251.3125 278.355469 248.882812 278.355469 248.882812 276.734375 C 248.882812 275.113281 251.3125 275.113281 251.3125 276.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.636719 317.414062 C 248.636719 319.035156 246.207031 319.035156 246.207031 317.414062 C 246.207031 315.792969 248.636719 315.792969 248.636719 317.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 327.519531 267.804688 C 327.519531 269.425781 325.085938 269.425781 325.085938 267.804688 C 325.085938 266.183594 327.519531 266.183594 327.519531 267.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.753906 238.433594 C 251.753906 240.054688 249.324219 240.054688 249.324219 238.433594 C 249.324219 236.8125 251.753906 236.8125 251.753906 238.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.464844 298.234375 C 315.464844 299.855469 313.03125 299.855469 313.03125 298.234375 C 313.03125 296.617188 315.464844 296.617188 315.464844 298.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.761719 70.910156 L 248.398438 73.746094 L 245.125 73.746094 Z M 246.761719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.851562 224.226562 C 264.851562 225.847656 262.421875 225.847656 262.421875 224.226562 C 262.421875 222.609375 264.851562 222.609375 264.851562 224.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.507812 265.933594 C 199.507812 267.554688 197.078125 267.554688 197.078125 265.933594 C 197.078125 264.3125 199.507812 264.3125 199.507812 265.933594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.636719 252.671875 C 235.636719 254.292969 233.207031 254.292969 233.207031 252.671875 C 233.207031 251.050781 235.636719 251.050781 235.636719 252.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.511719 247.625 C 271.511719 249.242188 269.082031 249.242188 269.082031 247.625 C 269.082031 246.003906 271.511719 246.003906 271.511719 247.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.519531 259.40625 C 207.519531 261.027344 205.089844 261.027344 205.089844 259.40625 C 205.089844 257.785156 207.519531 257.785156 207.519531 259.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.316406 191.386719 C 285.316406 193.007812 282.886719 193.007812 282.886719 191.386719 C 282.886719 189.765625 285.316406 189.765625 285.316406 191.386719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.886719 259.097656 C 239.886719 260.71875 237.457031 260.71875 237.457031 259.097656 C 237.457031 257.476562 239.886719 257.476562 239.886719 259.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.386719 266.796875 C 174.386719 268.414062 171.957031 268.414062 171.957031 266.796875 C 171.957031 265.175781 174.386719 265.175781 174.386719 266.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.914062 285.613281 C 238.914062 287.230469 236.484375 287.230469 236.484375 285.613281 C 236.484375 283.992188 238.914062 283.992188 238.914062 285.613281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.9375 70.910156 L 254.574219 73.746094 L 251.300781 73.746094 Z M 252.9375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.476562 228.097656 C 255.476562 229.714844 253.046875 229.714844 253.046875 228.097656 C 253.046875 226.476562 255.476562 226.476562 255.476562 228.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.816406 123.535156 C 179.816406 125.152344 177.382812 125.152344 177.382812 123.535156 C 177.382812 121.914062 179.816406 121.914062 179.816406 123.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.171875 268.761719 C 236.171875 270.382812 233.742188 270.382812 233.742188 268.761719 C 233.742188 267.140625 236.171875 267.140625 236.171875 268.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.972656 177.09375 C 190.972656 178.710938 188.542969 178.710938 188.542969 177.09375 C 188.542969 175.472656 190.972656 175.472656 190.972656 177.09375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.472656 70.910156 L 299.109375 73.746094 L 295.835938 73.746094 Z M 297.472656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.574219 70.910156 L 192.210938 73.746094 L 188.9375 73.746094 Z M 190.574219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.019531 354.5 C 151.019531 356.117188 148.589844 356.117188 148.589844 354.5 C 148.589844 352.878906 151.019531 352.878906 151.019531 354.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.351562 227.300781 C 310.351562 228.917969 307.921875 228.917969 307.921875 227.300781 C 307.921875 225.679688 310.351562 225.679688 310.351562 227.300781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 285.617188 70.910156 L 287.253906 73.746094 L 283.980469 73.746094 Z M 285.617188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.109375 310.199219 C 266.109375 311.820312 263.675781 311.820312 263.675781 310.199219 C 263.675781 308.582031 266.109375 308.582031 266.109375 310.199219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.4375 314.253906 C 167.4375 315.871094 165.003906 315.871094 165.003906 314.253906 C 165.003906 312.632812 167.4375 312.632812 167.4375 314.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.078125 284.171875 C 241.078125 285.789062 238.644531 285.789062 238.644531 284.171875 C 238.644531 282.550781 241.078125 282.550781 241.078125 284.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.503906 243.570312 C 245.503906 245.1875 243.074219 245.1875 243.074219 243.570312 C 243.074219 241.949219 245.503906 241.949219 245.503906 243.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.015625 418.691406 L 251.648438 415.855469 L 248.378906 415.855469 Z M 250.015625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.867188 272.351562 C 268.867188 273.972656 266.4375 273.972656 266.4375 272.351562 C 266.4375 270.730469 268.867188 270.730469 268.867188 272.351562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 199.351562 418.691406 L 200.988281 415.855469 L 197.714844 415.855469 Z M 199.351562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.511719 70.910156 L 283.148438 73.746094 L 279.875 73.746094 Z M 281.511719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.925781 70.910156 L 271.5625 73.746094 L 268.289062 73.746094 Z M 269.925781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.308594 224.304688 C 249.308594 225.925781 246.875 225.925781 246.875 224.304688 C 246.875 222.6875 249.308594 222.6875 249.308594 224.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.207031 294.664062 C 218.207031 296.285156 215.777344 296.285156 215.777344 294.664062 C 215.777344 293.046875 218.207031 293.046875 218.207031 294.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.359375 315.304688 C 274.359375 316.925781 271.929688 316.925781 271.929688 315.304688 C 271.929688 313.683594 274.359375 313.683594 274.359375 315.304688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.683594 70.910156 L 236.320312 73.746094 L 233.046875 73.746094 Z M 234.683594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.550781 70.910156 L 220.1875 73.746094 L 216.914062 73.746094 Z M 218.550781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.761719 202.914062 C 212.761719 204.535156 210.332031 204.535156 210.332031 202.914062 C 210.332031 201.292969 212.761719 201.292969 212.761719 202.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 206.117188 326.226562 C 206.117188 327.847656 203.6875 327.847656 203.6875 326.226562 C 203.6875 324.609375 206.117188 324.609375 206.117188 326.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 201.132812 235.160156 C 201.132812 236.777344 198.703125 236.777344 198.703125 235.160156 C 198.703125 233.539062 201.132812 233.539062 201.132812 235.160156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.921875 249.019531 C 202.921875 250.640625 200.492188 250.640625 200.492188 249.019531 C 200.492188 247.398438 202.921875 247.398438 202.921875 249.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 350.53125 255.476562 C 350.53125 257.097656 348.101562 257.097656 348.101562 255.476562 C 348.101562 253.859375 350.53125 253.859375 350.53125 255.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.476562 232.738281 C 245.476562 234.359375 243.046875 234.359375 243.046875 232.738281 C 243.046875 231.117188 245.476562 231.117188 245.476562 232.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 227.496094 192.015625 C 227.496094 193.636719 225.066406 193.636719 225.066406 192.015625 C 225.066406 190.394531 227.496094 190.394531 227.496094 192.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.09375 254.589844 C 290.09375 256.207031 287.664062 256.207031 287.664062 254.589844 C 287.664062 252.96875 290.09375 252.96875 290.09375 254.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.441406 70.910156 L 292.078125 73.746094 L 288.804688 73.746094 Z M 290.441406 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 221.816406 418.691406 L 223.453125 415.855469 L 220.179688 415.855469 Z M 221.816406 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.386719 418.691406 L 142.023438 415.855469 L 138.75 415.855469 Z M 140.386719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.523438 292.433594 C 203.523438 294.050781 201.09375 294.050781 201.09375 292.433594 C 201.09375 290.8125 203.523438 290.8125 203.523438 292.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 198.480469 289.511719 C 198.480469 291.132812 196.050781 291.132812 196.050781 289.511719 C 196.050781 287.894531 198.480469 287.894531 198.480469 289.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.429688 235.863281 C 244.429688 237.484375 242 237.484375 242 235.863281 C 242 234.246094 244.429688 234.246094 244.429688 235.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.121094 212.945312 C 213.121094 214.5625 210.691406 214.5625 210.691406 212.945312 C 210.691406 211.324219 213.121094 211.324219 213.121094 212.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.535156 246.371094 C 324.535156 247.992188 322.105469 247.992188 322.105469 246.371094 C 322.105469 244.753906 324.535156 244.753906 324.535156 246.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.207031 296.835938 C 200.207031 298.457031 197.777344 298.457031 197.777344 296.835938 C 197.777344 295.21875 200.207031 295.21875 200.207031 296.835938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.722656 295.046875 C 226.722656 296.667969 224.292969 296.667969 224.292969 295.046875 C 224.292969 293.429688 226.722656 293.429688 226.722656 295.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.003906 224.730469 C 145.003906 226.351562 142.574219 226.351562 142.574219 224.730469 C 142.574219 223.109375 145.003906 223.109375 145.003906 224.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.652344 292.984375 C 237.652344 294.605469 235.222656 294.605469 235.222656 292.984375 C 235.222656 291.363281 237.652344 291.363281 237.652344 292.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 335.761719 178.460938 C 335.761719 180.078125 333.332031 180.078125 333.332031 178.460938 C 333.332031 176.839844 335.761719 176.839844 335.761719 178.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.882812 175.675781 C 250.882812 177.296875 248.449219 177.296875 248.449219 175.675781 C 248.449219 174.054688 250.882812 174.054688 250.882812 175.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.542969 203.855469 C 230.542969 205.476562 228.113281 205.476562 228.113281 203.855469 C 228.113281 202.238281 230.542969 202.238281 230.542969 203.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.460938 241.875 C 271.460938 243.496094 269.03125 243.496094 269.03125 241.875 C 269.03125 240.253906 271.460938 240.253906 271.460938 241.875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 275.914062 418.691406 L 277.550781 415.855469 L 274.277344 415.855469 Z M 275.914062 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 336.519531 267.859375 C 336.519531 269.480469 334.089844 269.480469 334.089844 267.859375 C 334.089844 266.242188 336.519531 266.242188 336.519531 267.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.574219 286.226562 C 294.574219 287.847656 292.144531 287.847656 292.144531 286.226562 C 292.144531 284.605469 294.574219 284.605469 294.574219 286.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.878906 244.800781 C 271.878906 246.421875 269.449219 246.421875 269.449219 244.800781 C 269.449219 243.179688 271.878906 243.179688 271.878906 244.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.378906 208.429688 C 258.378906 210.046875 255.949219 210.046875 255.949219 208.429688 C 255.949219 206.808594 258.378906 206.808594 258.378906 208.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.382812 70.910156 L 204.019531 73.746094 L 200.746094 73.746094 Z M 202.382812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.433594 70.910156 L 182.070312 73.746094 L 178.800781 73.746094 Z M 180.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.707031 251.664062 C 211.707031 253.285156 209.277344 253.285156 209.277344 251.664062 C 209.277344 250.042969 211.707031 250.042969 211.707031 251.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.546875 187.089844 C 285.546875 188.710938 283.117188 188.710938 283.117188 187.089844 C 283.117188 185.472656 285.546875 185.472656 285.546875 187.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.515625 70.910156 L 240.152344 73.746094 L 236.878906 73.746094 Z M 238.515625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 242.820312 323.816406 C 242.820312 325.4375 240.390625 325.4375 240.390625 323.816406 C 240.390625 322.195312 242.820312 322.195312 242.820312 323.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.882812 70.910156 L 249.519531 73.746094 L 246.246094 73.746094 Z M 247.882812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.949219 418.691406 L 112.585938 415.855469 L 109.3125 415.855469 Z M 110.949219 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.210938 128.144531 C 146.210938 129.765625 143.78125 129.765625 143.78125 128.144531 C 143.78125 126.527344 146.210938 126.527344 146.210938 128.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.269531 209.78125 C 267.269531 211.402344 264.839844 211.402344 264.839844 209.78125 C 264.839844 208.164062 267.269531 208.164062 267.269531 209.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.851562 276.457031 C 249.851562 278.078125 247.421875 278.078125 247.421875 276.457031 C 247.421875 274.839844 249.851562 274.839844 249.851562 276.457031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.113281 263.539062 C 192.113281 265.160156 189.683594 265.160156 189.683594 263.539062 C 189.683594 261.921875 192.113281 261.921875 192.113281 263.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 383.371094 234.84375 C 383.371094 236.460938 380.941406 236.460938 380.941406 234.84375 C 380.941406 233.222656 383.371094 233.222656 383.371094 234.84375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.820312 243.765625 C 229.820312 245.386719 227.386719 245.386719 227.386719 243.765625 C 227.386719 242.144531 229.820312 242.144531 229.820312 243.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.160156 407.53125 C 267.160156 409.152344 264.730469 409.152344 264.730469 407.53125 C 264.730469 405.914062 267.160156 405.914062 267.160156 407.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.523438 418.691406 L 271.160156 415.855469 L 267.886719 415.855469 Z M 269.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.09375 287.855469 C 262.09375 289.472656 259.664062 289.472656 259.664062 287.855469 C 259.664062 286.234375 262.09375 286.234375 262.09375 287.855469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.027344 70.910156 L 163.664062 73.746094 L 160.390625 73.746094 Z M 162.027344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 332.496094 79.367188 C 332.496094 80.988281 330.066406 80.988281 330.066406 79.367188 C 330.066406 77.746094 332.496094 77.746094 332.496094 79.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.539062 171.953125 C 281.539062 173.570312 279.109375 173.570312 279.109375 171.953125 C 279.109375 170.332031 281.539062 170.332031 281.539062 171.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.96875 208.988281 C 291.96875 210.605469 289.539062 210.605469 289.539062 208.988281 C 289.539062 207.367188 291.96875 207.367188 291.96875 208.988281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.542969 70.910156 L 218.179688 73.746094 L 214.90625 73.746094 Z M 216.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.429688 225.195312 C 281.429688 226.816406 278.996094 226.816406 278.996094 225.195312 C 278.996094 223.574219 281.429688 223.574219 281.429688 225.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.8125 248.878906 C 243.8125 250.496094 241.382812 250.496094 241.382812 248.878906 C 241.382812 247.257812 243.8125 247.257812 243.8125 248.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 344.320312 230.632812 C 344.320312 232.253906 341.890625 232.253906 341.890625 230.632812 C 341.890625 229.011719 344.320312 229.011719 344.320312 230.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.214844 317.484375 C 269.214844 319.105469 266.785156 319.105469 266.785156 317.484375 C 266.785156 315.863281 269.214844 315.863281 269.214844 317.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.609375 268.894531 C 233.609375 270.515625 231.179688 270.515625 231.179688 268.894531 C 231.179688 267.273438 233.609375 267.273438 233.609375 268.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.675781 268.296875 C 296.675781 269.914062 294.246094 269.914062 294.246094 268.296875 C 294.246094 266.675781 296.675781 266.675781 296.675781 268.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.113281 70.910156 L 159.75 73.746094 L 156.476562 73.746094 Z M 158.113281 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.769531 70.910156 L 212.40625 73.746094 L 209.132812 73.746094 Z M 210.769531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.316406 248.222656 C 256.316406 249.839844 253.886719 249.839844 253.886719 248.222656 C 253.886719 246.601562 256.316406 246.601562 256.316406 248.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.929688 70.910156 L 214.566406 73.746094 L 211.292969 73.746094 Z M 212.929688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.421875 303.019531 C 258.421875 304.636719 255.992188 304.636719 255.992188 303.019531 C 255.992188 301.398438 258.421875 301.398438 258.421875 303.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.789062 293.234375 C 273.789062 294.855469 271.359375 294.855469 271.359375 293.234375 C 271.359375 291.613281 273.789062 291.613281 273.789062 293.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.945312 392.542969 C 265.945312 394.160156 263.515625 394.160156 263.515625 392.542969 C 263.515625 390.921875 265.945312 390.921875 265.945312 392.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.582031 358.472656 C 283.582031 360.089844 281.152344 360.089844 281.152344 358.472656 C 281.152344 356.851562 283.582031 356.851562 283.582031 358.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.738281 244.734375 C 302.738281 246.351562 300.308594 246.351562 300.308594 244.734375 C 300.308594 243.113281 302.738281 243.113281 302.738281 244.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 280.757812 297.804688 C 280.757812 299.425781 278.328125 299.425781 278.328125 297.804688 C 278.328125 296.183594 280.757812 296.183594 280.757812 297.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.992188 321.523438 C 179.992188 323.144531 177.5625 323.144531 177.5625 321.523438 C 177.5625 319.902344 179.992188 319.902344 179.992188 321.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.140625 418.691406 L 199.777344 415.855469 L 196.503906 415.855469 Z M 198.140625 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.375 166.039062 C 170.375 167.660156 167.945312 167.660156 167.945312 166.039062 C 167.945312 164.417969 170.375 164.417969 170.375 166.039062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.257812 70.910156 L 197.894531 73.746094 L 194.625 73.746094 Z M 196.257812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.101562 70.910156 L 229.738281 73.746094 L 226.464844 73.746094 Z M 228.101562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.496094 165.207031 C 111.496094 166.828125 109.066406 166.828125 109.066406 165.207031 C 109.066406 163.589844 111.496094 163.589844 111.496094 165.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.503906 70.910156 L 147.140625 73.746094 L 143.867188 73.746094 Z M 145.503906 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.710938 70.910156 L 148.347656 73.746094 L 145.074219 73.746094 Z M 146.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.957031 257.078125 C 232.957031 258.699219 230.527344 258.699219 230.527344 257.078125 C 230.527344 255.457031 232.957031 255.457031 232.957031 257.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.988281 222.460938 C 245.988281 224.082031 243.558594 224.082031 243.558594 222.460938 C 243.558594 220.839844 245.988281 220.839844 245.988281 222.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.582031 275.65625 C 268.582031 277.277344 266.152344 277.277344 266.152344 275.65625 C 266.152344 274.035156 268.582031 274.035156 268.582031 275.65625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.554688 188.792969 C 192.554688 190.410156 190.125 190.410156 190.125 188.792969 C 190.125 187.171875 192.554688 187.171875 192.554688 188.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.007812 226.230469 C 257.007812 227.847656 254.578125 227.847656 254.578125 226.230469 C 254.578125 224.609375 257.007812 224.609375 257.007812 226.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.109375 231.617188 C 259.109375 233.234375 256.679688 233.234375 256.679688 231.617188 C 256.679688 229.996094 259.109375 229.996094 259.109375 231.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.128906 234.472656 C 268.128906 236.09375 265.699219 236.09375 265.699219 234.472656 C 265.699219 232.855469 268.128906 232.855469 268.128906 234.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.960938 256.125 C 295.960938 257.746094 293.53125 257.746094 293.53125 256.125 C 293.53125 254.507812 295.960938 254.507812 295.960938 256.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.125 329.71875 C 281.125 331.339844 278.695312 331.339844 278.695312 329.71875 C 278.695312 328.097656 281.125 328.097656 281.125 329.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.304688 346.945312 C 284.304688 348.566406 281.875 348.566406 281.875 346.945312 C 281.875 345.328125 284.304688 345.328125 284.304688 346.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.429688 205.296875 C 311.429688 206.917969 309 206.917969 309 205.296875 C 309 203.679688 311.429688 203.679688 311.429688 205.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.71875 105.769531 C 258.71875 107.390625 256.289062 107.390625 256.289062 105.769531 C 256.289062 104.152344 258.71875 104.152344 258.71875 105.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.753906 73.082031 C 313.753906 74.703125 311.320312 74.703125 311.320312 73.082031 C 311.320312 71.460938 313.753906 71.460938 313.753906 73.082031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.269531 70.910156 L 305.90625 73.746094 L 302.632812 73.746094 Z M 304.269531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 153.890625 82.527344 C 153.890625 84.148438 151.460938 84.148438 151.460938 82.527344 C 151.460938 80.910156 153.890625 80.910156 153.890625 82.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.4375 305.855469 C 298.4375 307.472656 296.007812 307.472656 296.007812 305.855469 C 296.007812 304.234375 298.4375 304.234375 298.4375 305.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.453125 266.90625 C 221.453125 268.527344 219.019531 268.527344 219.019531 266.90625 C 219.019531 265.285156 221.453125 265.285156 221.453125 266.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.550781 212.898438 C 267.550781 214.519531 265.121094 214.519531 265.121094 212.898438 C 265.121094 211.277344 267.550781 211.277344 267.550781 212.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.671875 177.394531 C 180.671875 179.015625 178.238281 179.015625 178.238281 177.394531 C 178.238281 175.777344 180.671875 175.777344 180.671875 177.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.832031 251.195312 C 298.832031 252.8125 296.402344 252.8125 296.402344 251.195312 C 296.402344 249.574219 298.832031 249.574219 298.832031 251.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.265625 231.554688 C 255.265625 233.175781 252.832031 233.175781 252.832031 231.554688 C 252.832031 229.933594 255.265625 229.933594 255.265625 231.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.160156 286.59375 C 180.160156 288.214844 177.730469 288.214844 177.730469 286.59375 C 177.730469 284.972656 180.160156 284.972656 180.160156 286.59375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.816406 70.910156 L 151.453125 73.746094 L 148.183594 73.746094 Z M 149.816406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.34375 189.34375 C 268.34375 190.964844 265.914062 190.964844 265.914062 189.34375 C 265.914062 187.726562 268.34375 187.726562 268.34375 189.34375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.960938 198.714844 C 267.960938 200.332031 265.53125 200.332031 265.53125 198.714844 C 265.53125 197.09375 267.960938 197.09375 267.960938 198.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.914062 269.425781 C 259.914062 271.046875 257.484375 271.046875 257.484375 269.425781 C 257.484375 267.804688 259.914062 267.804688 259.914062 269.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.433594 303.402344 C 287.433594 305.023438 285.003906 305.023438 285.003906 303.402344 C 285.003906 301.78125 287.433594 301.78125 287.433594 303.402344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.207031 318.53125 C 272.207031 320.152344 269.777344 320.152344 269.777344 318.53125 C 269.777344 316.910156 272.207031 316.910156 272.207031 318.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.265625 289.996094 C 222.265625 291.617188 219.835938 291.617188 219.835938 289.996094 C 219.835938 288.378906 222.265625 288.378906 222.265625 289.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.042969 202.109375 C 192.042969 203.730469 189.613281 203.730469 189.613281 202.109375 C 189.613281 200.488281 192.042969 200.488281 192.042969 202.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.703125 319.125 C 178.703125 320.746094 176.273438 320.746094 176.273438 319.125 C 176.273438 317.503906 178.703125 317.503906 178.703125 319.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 140.347656 333.164062 C 140.347656 334.78125 137.917969 334.78125 137.917969 333.164062 C 137.917969 331.542969 140.347656 331.542969 140.347656 333.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.230469 227.15625 C 200.230469 228.773438 197.796875 228.773438 197.796875 227.15625 C 197.796875 225.535156 200.230469 225.535156 200.230469 227.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.5 104.664062 C 267.5 106.285156 265.070312 106.285156 265.070312 104.664062 C 265.070312 103.042969 267.5 103.042969 267.5 104.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.695312 246.777344 C 296.695312 248.398438 294.265625 248.398438 294.265625 246.777344 C 294.265625 245.160156 296.695312 245.160156 296.695312 246.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.027344 200.582031 C 125.027344 202.203125 122.59375 202.203125 122.59375 200.582031 C 122.59375 198.960938 125.027344 198.960938 125.027344 200.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.738281 172.414062 C 307.738281 174.035156 305.308594 174.035156 305.308594 172.414062 C 305.308594 170.796875 307.738281 170.796875 307.738281 172.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.1875 226.722656 C 229.1875 228.34375 226.753906 228.34375 226.753906 226.722656 C 226.753906 225.101562 229.1875 225.101562 229.1875 226.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.085938 275.976562 C 271.085938 277.597656 268.65625 277.597656 268.65625 275.976562 C 268.65625 274.355469 271.085938 274.355469 271.085938 275.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.046875 305.589844 C 273.046875 307.210938 270.613281 307.210938 270.613281 305.589844 C 270.613281 303.972656 273.046875 303.972656 273.046875 305.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.414062 275.046875 C 261.414062 276.667969 258.984375 276.667969 258.984375 275.046875 C 258.984375 273.425781 261.414062 273.425781 261.414062 275.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.804688 245.496094 C 283.804688 247.117188 281.375 247.117188 281.375 245.496094 C 281.375 243.878906 283.804688 243.878906 283.804688 245.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.214844 271.714844 C 208.214844 273.335938 205.785156 273.335938 205.785156 271.714844 C 205.785156 270.097656 208.214844 270.097656 208.214844 271.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.082031 212.089844 C 232.082031 213.710938 229.652344 213.710938 229.652344 212.089844 C 229.652344 210.46875 232.082031 210.46875 232.082031 212.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.664062 189.089844 C 247.664062 190.710938 245.230469 190.710938 245.230469 189.089844 C 245.230469 187.472656 247.664062 187.472656 247.664062 189.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.246094 331.121094 C 248.246094 332.738281 245.816406 332.738281 245.816406 331.121094 C 245.816406 329.5 248.246094 329.5 248.246094 331.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.878906 148.484375 C 260.878906 150.105469 258.449219 150.105469 258.449219 148.484375 C 258.449219 146.863281 260.878906 146.863281 260.878906 148.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.234375 230.015625 C 313.234375 231.636719 310.804688 231.636719 310.804688 230.015625 C 310.804688 228.398438 313.234375 228.398438 313.234375 230.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.972656 418.691406 L 145.609375 415.855469 L 142.335938 415.855469 Z M 143.972656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.4375 331.898438 C 293.4375 333.515625 291.007812 333.515625 291.007812 331.898438 C 291.007812 330.277344 293.4375 330.277344 293.4375 331.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.386719 294.886719 C 230.386719 296.507812 227.957031 296.507812 227.957031 294.886719 C 227.957031 293.265625 230.386719 293.265625 230.386719 294.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.210938 275.164062 C 244.210938 276.785156 241.78125 276.785156 241.78125 275.164062 C 241.78125 273.542969 244.210938 273.542969 244.210938 275.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.835938 340.503906 C 191.835938 342.125 189.40625 342.125 189.40625 340.503906 C 189.40625 338.882812 191.835938 338.882812 191.835938 340.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.066406 322.929688 C 212.066406 324.546875 209.636719 324.546875 209.636719 322.929688 C 209.636719 321.308594 212.066406 321.308594 212.066406 322.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.929688 278.691406 C 266.929688 280.3125 264.5 280.3125 264.5 278.691406 C 264.5 277.070312 266.929688 277.070312 266.929688 278.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.808594 177.726562 C 222.808594 179.347656 220.378906 179.347656 220.378906 177.726562 C 220.378906 176.109375 222.808594 176.109375 222.808594 177.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.496094 269.5625 C 295.496094 271.183594 293.066406 271.183594 293.066406 269.5625 C 293.066406 267.945312 295.496094 267.945312 295.496094 269.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.789062 311.535156 C 249.789062 313.15625 247.359375 313.15625 247.359375 311.535156 C 247.359375 309.914062 249.789062 309.914062 249.789062 311.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.230469 253.664062 C 127.230469 255.28125 124.800781 255.28125 124.800781 253.664062 C 124.800781 252.042969 127.230469 252.042969 127.230469 253.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 221.539062 348.117188 C 221.539062 349.734375 219.109375 349.734375 219.109375 348.117188 C 219.109375 346.496094 221.539062 346.496094 221.539062 348.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.265625 349.699219 C 230.265625 351.316406 227.835938 351.316406 227.835938 349.699219 C 227.835938 348.078125 230.265625 348.078125 230.265625 349.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.59375 313.140625 C 202.59375 314.761719 200.164062 314.761719 200.164062 313.140625 C 200.164062 311.523438 202.59375 311.523438 202.59375 313.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.765625 342.621094 C 253.765625 344.238281 251.332031 344.238281 251.332031 342.621094 C 251.332031 341 253.765625 341 253.765625 342.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.652344 227.476562 C 277.652344 229.09375 275.222656 229.09375 275.222656 227.476562 C 275.222656 225.855469 277.652344 225.855469 277.652344 227.476562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.425781 70.910156 L 136.058594 73.746094 L 132.789062 73.746094 Z M 134.425781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.632812 182.5 C 219.632812 184.121094 217.203125 184.121094 217.203125 182.5 C 217.203125 180.878906 219.632812 180.878906 219.632812 182.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.132812 106.445312 C 248.132812 108.0625 245.703125 108.0625 245.703125 106.445312 C 245.703125 104.824219 248.132812 104.824219 248.132812 106.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.320312 261.890625 C 270.320312 263.511719 267.890625 263.511719 267.890625 261.890625 C 267.890625 260.273438 270.320312 260.273438 270.320312 261.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.613281 321.308594 C 265.613281 322.929688 263.183594 322.929688 263.183594 321.308594 C 263.183594 319.6875 265.613281 319.6875 265.613281 321.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.910156 259.378906 C 255.910156 261 253.480469 261 253.480469 259.378906 C 253.480469 257.757812 255.910156 257.757812 255.910156 259.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 204.582031 358.464844 C 204.582031 360.085938 202.152344 360.085938 202.152344 358.464844 C 202.152344 356.847656 204.582031 356.847656 204.582031 358.464844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.460938 70.910156 L 138.097656 73.746094 L 134.824219 73.746094 Z M 136.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.363281 251.09375 C 276.363281 252.714844 273.933594 252.714844 273.933594 251.09375 C 273.933594 249.472656 276.363281 249.472656 276.363281 251.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.96875 271.339844 C 215.96875 272.957031 213.539062 272.957031 213.539062 271.339844 C 213.539062 269.71875 215.96875 269.71875 215.96875 271.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.613281 305.988281 C 244.613281 307.609375 242.183594 307.609375 242.183594 305.988281 C 242.183594 304.367188 244.613281 304.367188 244.613281 305.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.832031 197.777344 C 231.832031 199.398438 229.402344 199.398438 229.402344 197.777344 C 229.402344 196.15625 231.832031 196.15625 231.832031 197.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.042969 297.214844 C 249.042969 298.835938 246.613281 298.835938 246.613281 297.214844 C 246.613281 295.597656 249.042969 295.597656 249.042969 297.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 182.664062 273.789062 C 182.664062 275.40625 180.234375 275.40625 180.234375 273.789062 C 180.234375 272.167969 182.664062 272.167969 182.664062 273.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.535156 267.164062 C 231.535156 268.785156 229.105469 268.785156 229.105469 267.164062 C 229.105469 265.542969 231.535156 265.542969 231.535156 267.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.207031 247.144531 C 232.207031 248.761719 229.777344 248.761719 229.777344 247.144531 C 229.777344 245.523438 232.207031 245.523438 232.207031 247.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.675781 187.378906 C 304.675781 189 302.246094 189 302.246094 187.378906 C 302.246094 185.757812 304.675781 185.757812 304.675781 187.378906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 255.78125 70.910156 L 257.417969 73.746094 L 254.144531 73.746094 Z M 255.78125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.730469 223.761719 C 294.730469 225.382812 292.300781 225.382812 292.300781 223.761719 C 292.300781 222.140625 294.730469 222.140625 294.730469 223.761719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.988281 248.507812 C 256.988281 250.128906 254.558594 250.128906 254.558594 248.507812 C 254.558594 246.890625 256.988281 246.890625 256.988281 248.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.273438 91.332031 C 202.273438 92.949219 199.84375 92.949219 199.84375 91.332031 C 199.84375 89.710938 202.273438 89.710938 202.273438 91.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 116.847656 127.578125 C 116.847656 129.199219 114.417969 129.199219 114.417969 127.578125 C 114.417969 125.960938 116.847656 125.960938 116.847656 127.578125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.546875 273.054688 C 288.546875 274.675781 286.117188 274.675781 286.117188 273.054688 C 286.117188 271.433594 288.546875 271.433594 288.546875 273.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 248.871094 223.5 C 248.871094 225.117188 246.441406 225.117188 246.441406 223.5 C 246.441406 221.878906 248.871094 221.878906 248.871094 223.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.414062 155.414062 C 155.414062 157.03125 152.984375 157.03125 152.984375 155.414062 C 152.984375 153.792969 155.414062 153.792969 155.414062 155.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.605469 212.425781 C 274.605469 214.046875 272.175781 214.046875 272.175781 212.425781 C 272.175781 210.804688 274.605469 210.804688 274.605469 212.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.207031 100.597656 C 267.207031 102.214844 264.777344 102.214844 264.777344 100.597656 C 264.777344 98.976562 267.207031 98.976562 267.207031 100.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.507812 194.890625 C 269.507812 196.511719 267.078125 196.511719 267.078125 194.890625 C 267.078125 193.269531 269.507812 193.269531 269.507812 194.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.921875 244.585938 C 228.921875 246.207031 226.492188 246.207031 226.492188 244.585938 C 226.492188 242.964844 228.921875 242.964844 228.921875 244.585938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.335938 102.539062 C 157.335938 104.160156 154.90625 104.160156 154.90625 102.539062 C 154.90625 100.921875 157.335938 100.921875 157.335938 102.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.949219 322.066406 C 109.949219 323.6875 107.519531 323.6875 107.519531 322.066406 C 107.519531 320.445312 109.949219 320.445312 109.949219 322.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.75 334.40625 C 298.75 336.023438 296.320312 336.023438 296.320312 334.40625 C 296.320312 332.785156 298.75 332.785156 298.75 334.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.183594 352.035156 C 296.183594 353.652344 293.75 353.652344 293.75 352.035156 C 293.75 350.414062 296.183594 350.414062 296.183594 352.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.445312 303.175781 C 276.445312 304.796875 274.015625 304.796875 274.015625 303.175781 C 274.015625 301.554688 276.445312 301.554688 276.445312 303.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.726562 240.042969 C 244.726562 241.660156 242.296875 241.660156 242.296875 240.042969 C 242.296875 238.421875 244.726562 238.421875 244.726562 240.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.765625 220.054688 C 263.765625 221.675781 261.335938 221.675781 261.335938 220.054688 C 261.335938 218.433594 263.765625 218.433594 263.765625 220.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.328125 297.566406 C 263.328125 299.1875 260.898438 299.1875 260.898438 297.566406 C 260.898438 295.945312 263.328125 295.945312 263.328125 297.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.90625 314.082031 C 247.90625 315.703125 245.476562 315.703125 245.476562 314.082031 C 245.476562 312.460938 247.90625 312.460938 247.90625 314.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.628906 125.21875 C 176.628906 126.839844 174.199219 126.839844 174.199219 125.21875 C 174.199219 123.597656 176.628906 123.597656 176.628906 125.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 193.847656 247.511719 C 193.847656 249.132812 191.414062 249.132812 191.414062 247.511719 C 191.414062 245.890625 193.847656 245.890625 193.847656 247.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264 281.386719 C 264 283.007812 261.566406 283.007812 261.566406 281.386719 C 261.566406 279.765625 264 279.765625 264 281.386719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.953125 70.910156 L 215.589844 73.746094 L 212.316406 73.746094 Z M 213.953125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 251.6875 418.691406 L 253.324219 415.855469 L 250.050781 415.855469 Z M 251.6875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.125 208.769531 C 212.125 210.390625 209.695312 210.390625 209.695312 208.769531 C 209.695312 207.152344 212.125 207.152344 212.125 208.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.480469 244.5625 C 222.480469 246.183594 220.050781 246.183594 220.050781 244.5625 C 220.050781 242.941406 222.480469 242.941406 222.480469 244.5625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.96875 118.046875 C 266.96875 119.667969 264.539062 119.667969 264.539062 118.046875 C 264.539062 116.429688 266.96875 116.429688 266.96875 118.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.621094 104.730469 C 272.621094 106.351562 270.191406 106.351562 270.191406 104.730469 C 270.191406 103.113281 272.621094 103.113281 272.621094 104.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.714844 404.554688 C 301.714844 406.175781 299.285156 406.175781 299.285156 404.554688 C 299.285156 402.933594 301.714844 402.933594 301.714844 404.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 349.5625 375.6875 C 349.5625 377.308594 347.132812 377.308594 347.132812 375.6875 C 347.132812 374.066406 349.5625 374.066406 349.5625 375.6875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 235.191406 389.421875 C 235.191406 391.042969 232.761719 391.042969 232.761719 389.421875 C 232.761719 387.800781 235.191406 387.800781 235.191406 389.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 225.914062 347.566406 C 225.914062 349.1875 223.484375 349.1875 223.484375 347.566406 C 223.484375 345.949219 225.914062 345.949219 225.914062 347.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 175.324219 343.230469 C 175.324219 344.851562 172.890625 344.851562 172.890625 343.230469 C 172.890625 341.609375 175.324219 341.609375 175.324219 343.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.054688 70.910156 L 236.691406 73.746094 L 233.417969 73.746094 Z M 235.054688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.417969 204.730469 C 210.417969 206.351562 207.984375 206.351562 207.984375 204.730469 C 207.984375 203.113281 210.417969 203.113281 210.417969 204.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.476562 147.085938 C 165.476562 148.707031 163.046875 148.707031 163.046875 147.085938 C 163.046875 145.464844 165.476562 145.464844 165.476562 147.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.28125 118.308594 C 294.28125 119.929688 291.851562 119.929688 291.851562 118.308594 C 291.851562 116.6875 294.28125 116.6875 294.28125 118.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.03125 324.785156 C 266.03125 326.402344 263.601562 326.402344 263.601562 324.785156 C 263.601562 323.164062 266.03125 323.164062 266.03125 324.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.664062 253.234375 C 285.664062 254.855469 283.234375 254.855469 283.234375 253.234375 C 283.234375 251.617188 285.664062 251.617188 285.664062 253.234375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.527344 247.175781 C 261.527344 248.792969 259.097656 248.792969 259.097656 247.175781 C 259.097656 245.554688 261.527344 245.554688 261.527344 247.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.429688 70.910156 L 211.066406 73.746094 L 207.792969 73.746094 Z M 209.429688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.464844 209.535156 C 199.464844 211.15625 197.035156 211.15625 197.035156 209.535156 C 197.035156 207.917969 199.464844 207.917969 199.464844 209.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.921875 406.960938 C 217.921875 408.582031 215.492188 408.582031 215.492188 406.960938 C 215.492188 405.34375 217.921875 405.34375 217.921875 406.960938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 124.121094 319.589844 C 124.121094 321.210938 121.691406 321.210938 121.691406 319.589844 C 121.691406 317.96875 124.121094 317.96875 124.121094 319.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.507812 120.296875 C 237.507812 121.917969 235.078125 121.917969 235.078125 120.296875 C 235.078125 118.679688 237.507812 118.679688 237.507812 120.296875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.472656 70.910156 L 243.109375 73.746094 L 239.835938 73.746094 Z M 241.472656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.394531 252.074219 C 301.394531 253.695312 298.964844 253.695312 298.964844 252.074219 C 298.964844 250.453125 301.394531 250.453125 301.394531 252.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.066406 94.714844 C 205.066406 96.332031 202.636719 96.332031 202.636719 94.714844 C 202.636719 93.09375 205.066406 93.09375 205.066406 94.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.179688 205.988281 C 302.179688 207.609375 299.75 207.609375 299.75 205.988281 C 299.75 204.371094 302.179688 204.371094 302.179688 205.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.695312 165.835938 C 128.695312 167.457031 126.265625 167.457031 126.265625 165.835938 C 126.265625 164.21875 128.695312 164.21875 128.695312 165.835938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.339844 70.910156 L 146.976562 73.746094 L 143.703125 73.746094 Z M 145.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.726562 70.910156 L 246.363281 73.746094 L 243.089844 73.746094 Z M 244.726562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.074219 247.816406 C 274.074219 249.4375 271.644531 249.4375 271.644531 247.816406 C 271.644531 246.199219 274.074219 246.199219 274.074219 247.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.648438 235.714844 C 275.648438 237.335938 273.21875 237.335938 273.21875 235.714844 C 273.21875 234.09375 275.648438 234.09375 275.648438 235.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.941406 210.839844 C 162.941406 212.460938 160.507812 212.460938 160.507812 210.839844 C 160.507812 209.222656 162.941406 209.222656 162.941406 210.839844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 258.1875 70.910156 L 259.824219 73.746094 L 256.554688 73.746094 Z M 258.1875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.410156 298.808594 C 122.410156 300.429688 119.980469 300.429688 119.980469 298.808594 C 119.980469 297.191406 122.410156 297.191406 122.410156 298.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.855469 70.910156 L 142.492188 73.746094 L 139.21875 73.746094 Z M 140.855469 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.507812 70.910156 L 204.144531 73.746094 L 200.871094 73.746094 Z M 202.507812 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 247.03125 70.910156 L 248.667969 73.746094 L 245.394531 73.746094 Z M 247.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 139.914062 180.558594 C 139.914062 182.179688 137.484375 182.179688 137.484375 180.558594 C 137.484375 178.9375 139.914062 178.9375 139.914062 180.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 314.070312 235.378906 C 314.070312 236.996094 311.640625 236.996094 311.640625 235.378906 C 311.640625 233.757812 314.070312 233.757812 314.070312 235.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.488281 236.175781 C 261.488281 237.796875 259.058594 237.796875 259.058594 236.175781 C 259.058594 234.558594 261.488281 234.558594 261.488281 236.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.367188 70.910156 L 129 73.746094 L 125.730469 73.746094 Z M 127.367188 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.097656 228.535156 C 178.097656 230.152344 175.667969 230.152344 175.667969 228.535156 C 175.667969 226.914062 178.097656 226.914062 178.097656 228.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.605469 214.160156 C 292.605469 215.777344 290.175781 215.777344 290.175781 214.160156 C 290.175781 212.539062 292.605469 212.539062 292.605469 214.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 284.601562 70.910156 L 286.238281 73.746094 L 282.964844 73.746094 Z M 284.601562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.023438 70.910156 L 208.660156 73.746094 L 205.386719 73.746094 Z M 207.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.324219 230.449219 C 298.324219 232.070312 295.890625 232.070312 295.890625 230.449219 C 295.890625 228.828125 298.324219 228.828125 298.324219 230.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 169.597656 250.574219 C 169.597656 252.195312 167.167969 252.195312 167.167969 250.574219 C 167.167969 248.953125 169.597656 248.953125 169.597656 250.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.507812 224.894531 C 264.507812 226.515625 262.078125 226.515625 262.078125 224.894531 C 262.078125 223.273438 264.507812 223.273438 264.507812 224.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.472656 212.945312 C 261.472656 214.566406 259.042969 214.566406 259.042969 212.945312 C 259.042969 211.324219 261.472656 211.324219 261.472656 212.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.28125 276.765625 C 245.28125 278.386719 242.851562 278.386719 242.851562 276.765625 C 242.851562 275.148438 245.28125 275.148438 245.28125 276.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.394531 268.964844 C 247.394531 270.585938 244.964844 270.585938 244.964844 268.964844 C 244.964844 267.34375 247.394531 267.34375 247.394531 268.964844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.222656 418.691406 L 143.859375 415.855469 L 140.585938 415.855469 Z M 142.222656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 358.574219 283.929688 C 358.574219 285.550781 356.144531 285.550781 356.144531 283.929688 C 356.144531 282.3125 358.574219 282.3125 358.574219 283.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.457031 297.300781 C 293.457031 298.917969 291.027344 298.917969 291.027344 297.300781 C 291.027344 295.679688 293.457031 295.679688 293.457031 297.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.441406 242.964844 C 241.441406 244.585938 239.011719 244.585938 239.011719 242.964844 C 239.011719 241.34375 241.441406 241.34375 241.441406 242.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.632812 275.03125 C 294.632812 276.648438 292.203125 276.648438 292.203125 275.03125 C 292.203125 273.410156 294.632812 273.410156 294.632812 275.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.15625 292.621094 C 245.15625 294.238281 242.726562 294.238281 242.726562 292.621094 C 242.726562 291 245.15625 291 245.15625 292.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 302.214844 205.695312 C 302.214844 207.316406 299.785156 207.316406 299.785156 205.695312 C 299.785156 204.078125 302.214844 204.078125 302.214844 205.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 350.832031 130.957031 C 350.832031 132.574219 348.402344 132.574219 348.402344 130.957031 C 348.402344 129.335938 350.832031 129.335938 350.832031 130.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.714844 242.210938 C 276.714844 243.828125 274.285156 243.828125 274.285156 242.210938 C 274.285156 240.589844 276.714844 240.589844 276.714844 242.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.355469 232.460938 C 287.355469 234.078125 284.925781 234.078125 284.925781 232.460938 C 284.925781 230.839844 287.355469 230.839844 287.355469 232.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.179688 70.910156 L 129.816406 73.746094 L 126.542969 73.746094 Z M 128.179688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 125.648438 181.011719 C 125.648438 182.628906 123.21875 182.628906 123.21875 181.011719 C 123.21875 179.390625 125.648438 179.390625 125.648438 181.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 370.136719 231.800781 C 370.136719 233.421875 367.707031 233.421875 367.707031 231.800781 C 367.707031 230.179688 370.136719 230.179688 370.136719 231.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 127.054688 78.460938 C 127.054688 80.082031 124.625 80.082031 124.625 78.460938 C 124.625 76.84375 127.054688 76.84375 127.054688 78.460938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.902344 70.910156 L 171.539062 73.746094 L 168.265625 73.746094 Z M 169.902344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.425781 309.3125 C 216.425781 310.933594 213.992188 310.933594 213.992188 309.3125 C 213.992188 307.695312 216.425781 307.695312 216.425781 309.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.351562 290.039062 C 279.351562 291.660156 276.921875 291.660156 276.921875 290.039062 C 276.921875 288.417969 279.351562 288.417969 279.351562 290.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.199219 178.449219 C 301.199219 180.070312 298.769531 180.070312 298.769531 178.449219 C 298.769531 176.828125 301.199219 176.828125 301.199219 178.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.394531 174.71875 C 273.394531 176.335938 270.960938 176.335938 270.960938 174.71875 C 270.960938 173.097656 273.394531 173.097656 273.394531 174.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.417969 239.675781 C 239.417969 241.296875 236.988281 241.296875 236.988281 239.675781 C 236.988281 238.058594 239.417969 238.058594 239.417969 239.675781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.328125 70.910156 L 279.964844 73.746094 L 276.691406 73.746094 Z M 278.328125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.640625 216.683594 C 261.640625 218.304688 259.210938 218.304688 259.210938 216.683594 C 259.210938 215.066406 261.640625 215.066406 261.640625 216.683594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.585938 290.785156 C 315.585938 292.402344 313.15625 292.402344 313.15625 290.785156 C 313.15625 289.164062 315.585938 289.164062 315.585938 290.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.132812 269.644531 C 279.132812 271.261719 276.703125 271.261719 276.703125 269.644531 C 276.703125 268.023438 279.132812 268.023438 279.132812 269.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.480469 255.273438 C 316.480469 256.894531 314.050781 256.894531 314.050781 255.273438 C 314.050781 253.65625 316.480469 253.65625 316.480469 255.273438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.71875 418.691406 L 128.355469 415.855469 L 125.082031 415.855469 Z M 126.71875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.628906 158.628906 C 252.628906 160.246094 250.199219 160.246094 250.199219 158.628906 C 250.199219 157.007812 252.628906 157.007812 252.628906 158.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 241.886719 196.96875 C 241.886719 198.585938 239.457031 198.585938 239.457031 196.96875 C 239.457031 195.347656 241.886719 195.347656 241.886719 196.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.597656 231.710938 C 255.597656 233.332031 253.167969 233.332031 253.167969 231.710938 C 253.167969 230.09375 255.597656 230.09375 255.597656 231.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 252.542969 414.449219 C 252.542969 416.070312 250.113281 416.070312 250.113281 414.449219 C 250.113281 412.828125 252.542969 412.828125 252.542969 414.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.148438 195.417969 C 288.148438 197.035156 285.71875 197.035156 285.71875 195.417969 C 285.71875 193.796875 288.148438 193.796875 288.148438 195.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.203125 256.679688 C 258.203125 258.296875 255.773438 258.296875 255.773438 256.679688 C 255.773438 255.058594 258.203125 255.058594 258.203125 256.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.550781 309.851562 C 316.550781 311.472656 314.121094 311.472656 314.121094 309.851562 C 314.121094 308.230469 316.550781 308.230469 316.550781 309.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.230469 214.785156 C 267.230469 216.402344 264.800781 216.402344 264.800781 214.785156 C 264.800781 213.164062 267.230469 213.164062 267.230469 214.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.3125 277.324219 C 246.3125 278.945312 243.882812 278.945312 243.882812 277.324219 C 243.882812 275.703125 246.3125 275.703125 246.3125 277.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.539062 310.433594 C 191.539062 312.054688 189.109375 312.054688 189.109375 310.433594 C 189.109375 308.8125 191.539062 308.8125 191.539062 310.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 280.273438 267.117188 C 280.273438 268.738281 277.84375 268.738281 277.84375 267.117188 C 277.84375 265.496094 280.273438 265.496094 280.273438 267.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 300.285156 238.957031 C 300.285156 240.578125 297.855469 240.578125 297.855469 238.957031 C 297.855469 237.339844 300.285156 237.339844 300.285156 238.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.699219 142.152344 C 257.699219 143.769531 255.269531 143.769531 255.269531 142.152344 C 255.269531 140.53125 257.699219 140.53125 257.699219 142.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.996094 296.015625 C 256.996094 297.636719 254.566406 297.636719 254.566406 296.015625 C 254.566406 294.394531 256.996094 294.394531 256.996094 296.015625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.324219 70.910156 L 127.960938 73.746094 L 124.6875 73.746094 Z M 126.324219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.078125 70.910156 L 146.710938 73.746094 L 143.441406 73.746094 Z M 145.078125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.03125 273.90625 C 293.03125 275.523438 290.601562 275.523438 290.601562 273.90625 C 290.601562 272.285156 293.03125 272.285156 293.03125 273.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.941406 414.101562 C 244.941406 415.71875 242.511719 415.71875 242.511719 414.101562 C 242.511719 412.480469 244.941406 412.480469 244.941406 414.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.828125 397.71875 C 260.828125 399.339844 258.398438 399.339844 258.398438 397.71875 C 258.398438 396.097656 260.828125 396.097656 260.828125 397.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.972656 414.011719 C 253.972656 415.632812 251.539062 415.632812 251.539062 414.011719 C 251.539062 412.394531 253.972656 412.394531 253.972656 414.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.214844 349.695312 C 267.214844 351.3125 264.785156 351.3125 264.785156 349.695312 C 264.785156 348.074219 267.214844 348.074219 267.214844 349.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 165.199219 305.542969 C 165.199219 307.164062 162.765625 307.164062 162.765625 305.542969 C 162.765625 303.921875 165.199219 303.921875 165.199219 305.542969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.390625 70.910156 L 192.023438 73.746094 L 188.753906 73.746094 Z M 190.390625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 134.992188 219.714844 C 134.992188 221.335938 132.5625 221.335938 132.5625 219.714844 C 132.5625 218.09375 134.992188 218.09375 134.992188 219.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.664062 196.082031 C 288.664062 197.703125 286.234375 197.703125 286.234375 196.082031 C 286.234375 194.464844 288.664062 194.464844 288.664062 196.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.730469 345.519531 C 174.730469 347.140625 172.300781 347.140625 172.300781 345.519531 C 172.300781 343.902344 174.730469 343.902344 174.730469 345.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.664062 339.253906 C 148.664062 340.875 146.234375 340.875 146.234375 339.253906 C 146.234375 337.636719 148.664062 337.636719 148.664062 339.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.550781 307.636719 C 186.550781 309.257812 184.121094 309.257812 184.121094 307.636719 C 184.121094 306.015625 186.550781 306.015625 186.550781 307.636719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.761719 222.410156 C 236.761719 224.03125 234.332031 224.03125 234.332031 222.410156 C 234.332031 220.792969 236.761719 220.792969 236.761719 222.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.636719 250.53125 C 265.636719 252.152344 263.207031 252.152344 263.207031 250.53125 C 263.207031 248.914062 265.636719 248.914062 265.636719 250.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.300781 315.460938 C 263.300781 317.078125 260.871094 317.078125 260.871094 315.460938 C 260.871094 313.839844 263.300781 313.839844 263.300781 315.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.984375 135.664062 C 325.984375 137.285156 323.554688 137.285156 323.554688 135.664062 C 323.554688 134.046875 325.984375 134.046875 325.984375 135.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 316.308594 276.347656 C 316.308594 277.96875 313.878906 277.96875 313.878906 276.347656 C 313.878906 274.730469 316.308594 274.730469 316.308594 276.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.066406 269.097656 C 303.066406 270.71875 300.636719 270.71875 300.636719 269.097656 C 300.636719 267.480469 303.066406 267.480469 303.066406 269.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.910156 363.429688 C 263.910156 365.050781 261.480469 365.050781 261.480469 363.429688 C 261.480469 361.808594 263.910156 361.808594 263.910156 363.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.234375 355.242188 C 246.234375 356.863281 243.804688 356.863281 243.804688 355.242188 C 243.804688 353.625 246.234375 353.625 246.234375 355.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 316.90625 269.476562 C 316.90625 271.097656 314.476562 271.097656 314.476562 269.476562 C 314.476562 267.855469 316.90625 267.855469 316.90625 269.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.457031 337.332031 C 284.457031 338.953125 282.027344 338.953125 282.027344 337.332031 C 282.027344 335.710938 284.457031 335.710938 284.457031 337.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.746094 106.53125 C 219.746094 108.148438 217.316406 108.148438 217.316406 106.53125 C 217.316406 104.910156 219.746094 104.910156 219.746094 106.53125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.960938 70.910156 L 250.59375 73.746094 L 247.324219 73.746094 Z M 248.960938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.753906 185.078125 C 217.753906 186.699219 215.320312 186.699219 215.320312 185.078125 C 215.320312 183.460938 217.753906 183.460938 217.753906 185.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 161.535156 70.910156 L 163.171875 73.746094 L 159.898438 73.746094 Z M 161.535156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 123.9375 70.910156 L 125.574219 73.746094 L 122.300781 73.746094 Z M 123.9375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 230.050781 70.910156 L 231.6875 73.746094 L 228.414062 73.746094 Z M 230.050781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.605469 70.910156 L 215.242188 73.746094 L 211.96875 73.746094 Z M 213.605469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.484375 359.59375 C 276.484375 361.214844 274.054688 361.214844 274.054688 359.59375 C 274.054688 357.976562 276.484375 357.976562 276.484375 359.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.617188 247.355469 C 120.617188 248.976562 118.1875 248.976562 118.1875 247.355469 C 118.1875 245.738281 120.617188 245.738281 120.617188 247.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 216.871094 70.910156 L 218.507812 73.746094 L 215.234375 73.746094 Z M 216.871094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.824219 222.574219 C 255.824219 224.191406 253.390625 224.191406 253.390625 222.574219 C 253.390625 220.953125 255.824219 220.953125 255.824219 222.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.429688 222.414062 C 292.429688 224.03125 290 224.03125 290 222.414062 C 290 220.792969 292.429688 220.792969 292.429688 222.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.316406 329.304688 C 222.316406 330.925781 219.886719 330.925781 219.886719 329.304688 C 219.886719 327.683594 222.316406 327.683594 222.316406 329.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.714844 223.460938 C 298.714844 225.078125 296.285156 225.078125 296.285156 223.460938 C 296.285156 221.839844 298.714844 221.839844 298.714844 223.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 108.457031 322.007812 C 108.457031 323.628906 106.027344 323.628906 106.027344 322.007812 C 106.027344 320.386719 108.457031 320.386719 108.457031 322.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.949219 70.910156 L 209.585938 73.746094 L 206.3125 73.746094 Z M 207.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.238281 252.980469 C 269.238281 254.601562 266.808594 254.601562 266.808594 252.980469 C 266.808594 251.359375 269.238281 251.359375 269.238281 252.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.613281 331.828125 C 110.613281 333.449219 108.183594 333.449219 108.183594 331.828125 C 108.183594 330.207031 110.613281 330.207031 110.613281 331.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.300781 70.910156 L 113.9375 73.746094 L 110.664062 73.746094 Z M 112.300781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.867188 380.023438 C 216.867188 381.644531 214.4375 381.644531 214.4375 380.023438 C 214.4375 378.40625 216.867188 378.40625 216.867188 380.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.175781 344.226562 C 263.175781 345.84375 260.746094 345.84375 260.746094 344.226562 C 260.746094 342.605469 263.175781 342.605469 263.175781 344.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.347656 251.949219 C 284.347656 253.570312 281.917969 253.570312 281.917969 251.949219 C 281.917969 250.332031 284.347656 250.332031 284.347656 251.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.296875 226.96875 C 261.296875 228.585938 258.867188 228.585938 258.867188 226.96875 C 258.867188 225.347656 261.296875 225.347656 261.296875 226.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.152344 205.710938 C 159.152344 207.332031 156.722656 207.332031 156.722656 205.710938 C 156.722656 204.09375 159.152344 204.09375 159.152344 205.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.976562 70.910156 L 251.613281 73.746094 L 248.34375 73.746094 Z M 249.976562 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.535156 272.527344 C 312.535156 274.148438 310.105469 274.148438 310.105469 272.527344 C 310.105469 270.90625 312.535156 270.90625 312.535156 272.527344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 369.257812 70.910156 L 370.894531 73.746094 L 367.621094 73.746094 Z M 369.257812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.585938 70.910156 L 142.21875 73.746094 L 138.949219 73.746094 Z M 140.585938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.195312 70.910156 L 173.832031 73.746094 L 170.558594 73.746094 Z M 172.195312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 220.816406 148.179688 C 220.816406 149.800781 218.386719 149.800781 218.386719 148.179688 C 218.386719 146.5625 220.816406 146.5625 220.816406 148.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.511719 327.746094 C 188.511719 329.367188 186.078125 329.367188 186.078125 327.746094 C 186.078125 326.125 188.511719 326.125 188.511719 327.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 217.132812 202.339844 C 217.132812 203.957031 214.703125 203.957031 214.703125 202.339844 C 214.703125 200.71875 217.132812 200.71875 217.132812 202.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.230469 249.691406 C 269.230469 251.308594 266.800781 251.308594 266.800781 249.691406 C 266.800781 248.070312 269.230469 248.070312 269.230469 249.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.363281 310.632812 C 155.363281 312.253906 152.933594 312.253906 152.933594 310.632812 C 152.933594 309.015625 155.363281 309.015625 155.363281 310.632812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.523438 418.691406 L 181.160156 415.855469 L 177.886719 415.855469 Z M 179.523438 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.152344 244.914062 C 247.152344 246.53125 244.722656 246.53125 244.722656 244.914062 C 244.722656 243.292969 247.152344 243.292969 247.152344 244.914062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.558594 70.910156 L 121.191406 73.746094 L 117.921875 73.746094 Z M 119.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 394.636719 307.097656 C 394.636719 308.71875 392.207031 308.71875 392.207031 307.097656 C 392.207031 305.480469 394.636719 305.480469 394.636719 307.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.851562 257.382812 C 281.851562 259.003906 279.421875 259.003906 279.421875 257.382812 C 279.421875 255.761719 281.851562 255.761719 281.851562 257.382812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.601562 255.449219 C 245.601562 257.070312 243.171875 257.070312 243.171875 255.449219 C 243.171875 253.832031 245.601562 253.832031 245.601562 255.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.097656 238.273438 C 237.097656 239.894531 234.667969 239.894531 234.667969 238.273438 C 234.667969 236.65625 237.097656 236.65625 237.097656 238.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.109375 209.511719 C 133.109375 211.132812 130.679688 211.132812 130.679688 209.511719 C 130.679688 207.890625 133.109375 207.890625 133.109375 209.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.703125 251.941406 C 244.703125 253.5625 242.273438 253.5625 242.273438 251.941406 C 242.273438 250.320312 244.703125 250.320312 244.703125 251.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.6875 245.730469 C 240.6875 247.351562 238.257812 247.351562 238.257812 245.730469 C 238.257812 244.109375 240.6875 244.109375 240.6875 245.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.25 247.472656 C 270.25 249.09375 267.820312 249.09375 267.820312 247.472656 C 267.820312 245.851562 270.25 245.851562 270.25 247.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 309.597656 365.175781 C 309.597656 366.796875 307.167969 366.796875 307.167969 365.175781 C 307.167969 363.558594 309.597656 363.558594 309.597656 365.175781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.097656 70.910156 L 214.734375 73.746094 L 211.460938 73.746094 Z M 213.097656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.691406 81.046875 C 101.691406 82.667969 99.261719 82.667969 99.261719 81.046875 C 99.261719 79.425781 101.691406 79.425781 101.691406 81.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 186.449219 277.410156 C 186.449219 279.03125 184.019531 279.03125 184.019531 277.410156 C 184.019531 275.792969 186.449219 275.792969 186.449219 277.410156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.800781 204.125 C 253.800781 205.746094 251.371094 205.746094 251.371094 204.125 C 251.371094 202.503906 253.800781 202.503906 253.800781 204.125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 189.859375 70.910156 L 191.496094 73.746094 L 188.222656 73.746094 Z M 189.859375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.425781 219.667969 C 298.425781 221.289062 295.996094 221.289062 295.996094 219.667969 C 295.996094 218.050781 298.425781 218.050781 298.425781 219.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.820312 235.300781 C 233.820312 236.921875 231.390625 236.921875 231.390625 235.300781 C 231.390625 233.683594 233.820312 233.683594 233.820312 235.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.613281 255.777344 C 239.613281 257.398438 237.179688 257.398438 237.179688 255.777344 C 237.179688 254.160156 239.613281 254.160156 239.613281 255.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.058594 224.59375 C 254.058594 226.214844 251.628906 226.214844 251.628906 224.59375 C 251.628906 222.972656 254.058594 222.972656 254.058594 224.59375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.71875 276.132812 C 226.71875 277.753906 224.289062 277.753906 224.289062 276.132812 C 224.289062 274.515625 226.71875 274.515625 226.71875 276.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.554688 212.226562 C 214.554688 213.847656 212.125 213.847656 212.125 212.226562 C 212.125 210.605469 214.554688 210.605469 214.554688 212.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.707031 108.503906 C 282.707031 110.121094 280.277344 110.121094 280.277344 108.503906 C 280.277344 106.882812 282.707031 106.882812 282.707031 108.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 253.066406 100.074219 C 253.066406 101.695312 250.636719 101.695312 250.636719 100.074219 C 250.636719 98.453125 253.066406 98.453125 253.066406 100.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.425781 235.878906 C 228.425781 237.5 225.996094 237.5 225.996094 235.878906 C 225.996094 234.261719 228.425781 234.261719 228.425781 235.878906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.636719 172.507812 C 282.636719 174.128906 280.207031 174.128906 280.207031 172.507812 C 280.207031 170.886719 282.636719 170.886719 282.636719 172.507812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 266.429688 313.941406 C 266.429688 315.5625 264 315.5625 264 313.941406 C 264 312.320312 266.429688 312.320312 266.429688 313.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.277344 354.230469 C 211.277344 355.847656 208.847656 355.847656 208.847656 354.230469 C 208.847656 352.609375 211.277344 352.609375 211.277344 354.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.691406 240.929688 C 295.691406 242.550781 293.257812 242.550781 293.257812 240.929688 C 293.257812 239.3125 295.691406 239.3125 295.691406 240.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 298.023438 167.128906 C 298.023438 168.75 295.59375 168.75 295.59375 167.128906 C 295.59375 165.511719 298.023438 165.511719 298.023438 167.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 199.554688 121.542969 C 199.554688 123.160156 197.125 123.160156 197.125 121.542969 C 197.125 119.921875 199.554688 119.921875 199.554688 121.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.148438 209.285156 C 325.148438 210.902344 322.71875 210.902344 322.71875 209.285156 C 322.71875 207.664062 325.148438 207.664062 325.148438 209.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.492188 227.644531 C 275.492188 229.265625 273.0625 229.265625 273.0625 227.644531 C 273.0625 226.027344 275.492188 226.027344 275.492188 227.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.519531 251.765625 C 299.519531 253.386719 297.085938 253.386719 297.085938 251.765625 C 297.085938 250.144531 299.519531 250.144531 299.519531 251.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.332031 193.867188 C 286.332031 195.488281 283.902344 195.488281 283.902344 193.867188 C 283.902344 192.25 286.332031 192.25 286.332031 193.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.695312 292.601562 C 264.695312 294.222656 262.265625 294.222656 262.265625 292.601562 C 262.265625 290.980469 264.695312 290.980469 264.695312 292.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.914062 291.816406 C 308.914062 293.4375 306.484375 293.4375 306.484375 291.816406 C 306.484375 290.195312 308.914062 290.195312 308.914062 291.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.3125 269.15625 C 226.3125 270.777344 223.882812 270.777344 223.882812 269.15625 C 223.882812 267.535156 226.3125 267.535156 226.3125 269.15625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.621094 251.167969 C 272.621094 252.789062 270.191406 252.789062 270.191406 251.167969 C 270.191406 249.546875 272.621094 249.546875 272.621094 251.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 224.734375 94.765625 C 224.734375 96.386719 222.300781 96.386719 222.300781 94.765625 C 222.300781 93.148438 224.734375 93.148438 224.734375 94.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.007812 266.945312 C 311.007812 268.566406 308.578125 268.566406 308.578125 266.945312 C 308.578125 265.324219 311.007812 265.324219 311.007812 266.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.867188 334.863281 C 261.867188 336.484375 259.4375 336.484375 259.4375 334.863281 C 259.4375 333.246094 261.867188 333.246094 261.867188 334.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.28125 301.527344 C 247.28125 303.148438 244.851562 303.148438 244.851562 301.527344 C 244.851562 299.90625 247.28125 299.90625 247.28125 301.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.371094 196.308594 C 191.371094 197.929688 188.941406 197.929688 188.941406 196.308594 C 188.941406 194.6875 191.371094 194.6875 191.371094 196.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 312.382812 418.691406 L 314.019531 415.855469 L 310.746094 415.855469 Z M 312.382812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.65625 279.589844 C 323.65625 281.210938 321.226562 281.210938 321.226562 279.589844 C 321.226562 277.972656 323.65625 277.972656 323.65625 279.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.382812 236.605469 C 268.382812 238.226562 265.953125 238.226562 265.953125 236.605469 C 265.953125 234.984375 268.382812 234.984375 268.382812 236.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.199219 303.363281 C 216.199219 304.984375 213.769531 304.984375 213.769531 303.363281 C 213.769531 301.742188 216.199219 301.742188 216.199219 303.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.5 284.421875 C 216.5 286.042969 214.070312 286.042969 214.070312 284.421875 C 214.070312 282.800781 216.5 282.800781 216.5 284.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.539062 274.222656 C 276.539062 275.839844 274.109375 275.839844 274.109375 274.222656 C 274.109375 272.601562 276.539062 272.601562 276.539062 274.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 306.34375 261.246094 C 306.34375 262.867188 303.914062 262.867188 303.914062 261.246094 C 303.914062 259.625 306.34375 259.625 306.34375 261.246094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 159.503906 418.691406 L 161.140625 415.855469 L 157.867188 415.855469 Z M 159.503906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.636719 250.054688 C 251.636719 251.671875 249.207031 251.671875 249.207031 250.054688 C 249.207031 248.433594 251.636719 248.433594 251.636719 250.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 242.078125 238.167969 C 242.078125 239.789062 239.648438 239.789062 239.648438 238.167969 C 239.648438 236.550781 242.078125 236.550781 242.078125 238.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.25 155.019531 C 287.25 156.640625 284.820312 156.640625 284.820312 155.019531 C 284.820312 153.398438 287.25 153.398438 287.25 155.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.527344 184.277344 C 232.527344 185.898438 230.09375 185.898438 230.09375 184.277344 C 230.09375 182.65625 232.527344 182.65625 232.527344 184.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.6875 253.710938 C 294.6875 255.328125 292.257812 255.328125 292.257812 253.710938 C 292.257812 252.089844 294.6875 252.089844 294.6875 253.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.691406 180.980469 C 290.691406 182.601562 288.261719 182.601562 288.261719 180.980469 C 288.261719 179.359375 290.691406 179.359375 290.691406 180.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.023438 111.640625 C 231.023438 113.261719 228.59375 113.261719 228.59375 111.640625 C 228.59375 110.023438 231.023438 110.023438 231.023438 111.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 180.324219 113.898438 C 180.324219 115.515625 177.894531 115.515625 177.894531 113.898438 C 177.894531 112.277344 180.324219 112.277344 180.324219 113.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.203125 222.421875 C 179.203125 224.039062 176.773438 224.039062 176.773438 222.421875 C 176.773438 220.800781 179.203125 220.800781 179.203125 222.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.714844 237.816406 C 252.714844 239.4375 250.285156 239.4375 250.285156 237.816406 C 250.285156 236.195312 252.714844 236.195312 252.714844 237.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.855469 266.890625 C 259.855469 268.507812 257.425781 268.507812 257.425781 266.890625 C 257.425781 265.269531 259.855469 265.269531 259.855469 266.890625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.074219 250.988281 C 247.074219 252.609375 244.644531 252.609375 244.644531 250.988281 C 244.644531 249.371094 247.074219 249.371094 247.074219 250.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.605469 238.589844 C 262.605469 240.210938 260.175781 240.210938 260.175781 238.589844 C 260.175781 236.96875 262.605469 236.96875 262.605469 238.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.632812 328.308594 C 256.632812 329.929688 254.203125 329.929688 254.203125 328.308594 C 254.203125 326.691406 256.632812 326.691406 256.632812 328.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.738281 70.910156 L 235.375 73.746094 L 232.101562 73.746094 Z M 233.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.207031 322.644531 C 232.207031 324.261719 229.777344 324.261719 229.777344 322.644531 C 229.777344 321.023438 232.207031 321.023438 232.207031 322.644531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.609375 418.691406 L 149.246094 415.855469 L 145.972656 415.855469 Z M 147.609375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.582031 136.820312 C 279.582031 138.441406 277.152344 138.441406 277.152344 136.820312 C 277.152344 135.203125 279.582031 135.203125 279.582031 136.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 352.105469 217.640625 C 352.105469 219.257812 349.675781 219.257812 349.675781 217.640625 C 349.675781 216.019531 352.105469 216.019531 352.105469 217.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.570312 250.976562 C 282.570312 252.597656 280.140625 252.597656 280.140625 250.976562 C 280.140625 249.359375 282.570312 249.359375 282.570312 250.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.566406 314.609375 C 228.566406 316.230469 226.136719 316.230469 226.136719 314.609375 C 226.136719 312.988281 228.566406 312.988281 228.566406 314.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.523438 309.101562 C 258.523438 310.722656 256.09375 310.722656 256.09375 309.101562 C 256.09375 307.480469 258.523438 307.480469 258.523438 309.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 198.226562 415.90625 C 198.226562 417.527344 195.796875 417.527344 195.796875 415.90625 C 195.796875 414.285156 198.226562 414.285156 198.226562 415.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.066406 232.773438 C 233.066406 234.390625 230.636719 234.390625 230.636719 232.773438 C 230.636719 231.152344 233.066406 231.152344 233.066406 232.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.804688 313.464844 C 268.804688 315.082031 266.375 315.082031 266.375 313.464844 C 266.375 311.84375 268.804688 311.84375 268.804688 313.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.253906 197.96875 C 302.253906 199.589844 299.824219 199.589844 299.824219 197.96875 C 299.824219 196.347656 302.253906 196.347656 302.253906 197.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.632812 312.558594 C 249.632812 314.175781 247.203125 314.175781 247.203125 312.558594 C 247.203125 310.9375 249.632812 310.9375 249.632812 312.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 103.875 250.328125 C 103.875 251.949219 101.441406 251.949219 101.441406 250.328125 C 101.441406 248.710938 103.875 248.710938 103.875 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.222656 357.269531 C 281.222656 358.886719 278.792969 358.886719 278.792969 357.269531 C 278.792969 355.648438 281.222656 355.648438 281.222656 357.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.226562 247.945312 C 251.226562 249.566406 248.796875 249.566406 248.796875 247.945312 C 248.796875 246.324219 251.226562 246.324219 251.226562 247.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.253906 273.171875 C 282.253906 274.792969 279.824219 274.792969 279.824219 273.171875 C 279.824219 271.550781 282.253906 271.550781 282.253906 273.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.941406 172.179688 C 191.941406 173.800781 189.511719 173.800781 189.511719 172.179688 C 189.511719 170.5625 191.941406 170.5625 191.941406 172.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.015625 263.089844 C 244.015625 264.710938 241.585938 264.710938 241.585938 263.089844 C 241.585938 261.46875 244.015625 261.46875 244.015625 263.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 222.683594 112.9375 C 222.683594 114.558594 220.253906 114.558594 220.253906 112.9375 C 220.253906 111.316406 222.683594 111.316406 222.683594 112.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.117188 231.09375 C 284.117188 232.714844 281.6875 232.714844 281.6875 231.09375 C 281.6875 229.476562 284.117188 229.476562 284.117188 231.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 141.109375 218.503906 C 141.109375 220.125 138.679688 220.125 138.679688 218.503906 C 138.679688 216.882812 141.109375 216.882812 141.109375 218.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.746094 70.910156 L 148.382812 73.746094 L 145.109375 73.746094 Z M 146.746094 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.132812 310.503906 C 318.132812 312.125 315.703125 312.125 315.703125 310.503906 C 315.703125 308.886719 318.132812 308.886719 318.132812 310.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 288.898438 83.730469 C 288.898438 85.351562 286.46875 85.351562 286.46875 83.730469 C 286.46875 82.113281 288.898438 82.113281 288.898438 83.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 246.820312 70.910156 L 248.457031 73.746094 L 245.183594 73.746094 Z M 246.820312 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 157.875 70.910156 L 159.511719 73.746094 L 156.242188 73.746094 Z M 157.875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.460938 275.351562 C 276.460938 276.972656 274.027344 276.972656 274.027344 275.351562 C 274.027344 273.734375 276.460938 273.734375 276.460938 275.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.417969 370.339844 C 185.417969 371.957031 182.988281 371.957031 182.988281 370.339844 C 182.988281 368.71875 185.417969 368.71875 185.417969 370.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.089844 116.421875 C 279.089844 118.042969 276.660156 118.042969 276.660156 116.421875 C 276.660156 114.804688 279.089844 114.804688 279.089844 116.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.472656 243.777344 C 216.472656 245.394531 214.042969 245.394531 214.042969 243.777344 C 214.042969 242.15625 216.472656 242.15625 216.472656 243.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.792969 249.789062 C 266.792969 251.410156 264.363281 251.410156 264.363281 249.789062 C 264.363281 248.167969 266.792969 248.167969 266.792969 249.789062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.738281 70.910156 L 236.375 73.746094 L 233.101562 73.746094 Z M 234.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.414062 246.945312 C 292.414062 248.5625 289.984375 248.5625 289.984375 246.945312 C 289.984375 245.324219 292.414062 245.324219 292.414062 246.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.71875 264.109375 C 225.71875 265.730469 223.289062 265.730469 223.289062 264.109375 C 223.289062 262.492188 225.71875 262.492188 225.71875 264.109375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 216.503906 224.039062 C 216.503906 225.660156 214.074219 225.660156 214.074219 224.039062 C 214.074219 222.417969 216.503906 222.417969 216.503906 224.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.933594 180.394531 C 277.933594 182.015625 275.503906 182.015625 275.503906 180.394531 C 275.503906 178.777344 277.933594 178.777344 277.933594 180.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.234375 76.605469 C 308.234375 78.226562 305.804688 78.226562 305.804688 76.605469 C 305.804688 74.984375 308.234375 74.984375 308.234375 76.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.363281 241.453125 C 277.363281 243.074219 274.933594 243.074219 274.933594 241.453125 C 274.933594 239.832031 277.363281 239.832031 277.363281 241.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.964844 260.738281 C 257.964844 262.355469 255.535156 262.355469 255.535156 260.738281 C 255.535156 259.117188 257.964844 259.117188 257.964844 260.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.386719 70.910156 L 149.023438 73.746094 L 145.75 73.746094 Z M 147.386719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 122.480469 99.75 C 122.480469 101.371094 120.050781 101.371094 120.050781 99.75 C 120.050781 98.128906 122.480469 98.128906 122.480469 99.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.359375 70.910156 L 240.996094 73.746094 L 237.722656 73.746094 Z M 239.359375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 291.101562 238.539062 C 291.101562 240.15625 288.667969 240.15625 288.667969 238.539062 C 288.667969 236.917969 291.101562 236.917969 291.101562 238.539062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 118.339844 70.910156 L 119.976562 73.746094 L 116.703125 73.746094 Z M 118.339844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.679688 212.53125 C 199.679688 214.152344 197.246094 214.152344 197.246094 212.53125 C 197.246094 210.910156 199.679688 210.910156 199.679688 212.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 311.835938 70.910156 L 313.472656 73.746094 L 310.199219 73.746094 Z M 311.835938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 308.96875 233.570312 C 308.96875 235.1875 306.539062 235.1875 306.539062 233.570312 C 306.539062 231.949219 308.96875 231.949219 308.96875 233.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 327.273438 291.679688 C 327.273438 293.300781 324.84375 293.300781 324.84375 291.679688 C 324.84375 290.058594 327.273438 290.058594 327.273438 291.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.695312 224.371094 C 243.695312 225.992188 241.261719 225.992188 241.261719 224.371094 C 241.261719 222.753906 243.695312 222.753906 243.695312 224.371094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.8125 186.535156 C 163.8125 188.15625 161.382812 188.15625 161.382812 186.535156 C 161.382812 184.914062 163.8125 184.914062 163.8125 186.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.769531 286.984375 C 190.769531 288.605469 188.339844 288.605469 188.339844 286.984375 C 188.339844 285.367188 190.769531 285.367188 190.769531 286.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279 282.152344 C 279 283.773438 276.570312 283.773438 276.570312 282.152344 C 276.570312 280.53125 279 280.53125 279 282.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.339844 258.707031 C 268.339844 260.324219 265.910156 260.324219 265.910156 258.707031 C 265.910156 257.085938 268.339844 257.085938 268.339844 258.707031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 325.882812 418.691406 L 327.515625 415.855469 L 324.246094 415.855469 Z M 325.882812 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.917969 265.671875 C 240.917969 267.292969 238.488281 267.292969 238.488281 265.671875 C 238.488281 264.050781 240.917969 264.050781 240.917969 265.671875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 289.433594 70.910156 L 291.070312 73.746094 L 287.796875 73.746094 Z M 289.433594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.789062 224.203125 C 293.789062 225.824219 291.359375 225.824219 291.359375 224.203125 C 291.359375 222.582031 293.789062 222.582031 293.789062 224.203125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 297.539062 330.992188 C 297.539062 332.609375 295.109375 332.609375 295.109375 330.992188 C 295.109375 329.371094 297.539062 329.371094 297.539062 330.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.65625 196.210938 C 176.65625 197.828125 174.226562 197.828125 174.226562 196.210938 C 174.226562 194.589844 176.65625 194.589844 176.65625 196.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.628906 188.996094 C 261.628906 190.613281 259.199219 190.613281 259.199219 188.996094 C 259.199219 187.375 261.628906 187.375 261.628906 188.996094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.738281 301.105469 C 254.738281 302.722656 252.308594 302.722656 252.308594 301.105469 C 252.308594 299.484375 254.738281 299.484375 254.738281 301.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.359375 275.738281 C 277.359375 277.359375 274.929688 277.359375 274.929688 275.738281 C 274.929688 274.117188 277.359375 274.117188 277.359375 275.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.101562 288.222656 C 226.101562 289.839844 223.671875 289.839844 223.671875 288.222656 C 223.671875 286.601562 226.101562 286.601562 226.101562 288.222656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.542969 418.691406 L 104.179688 415.855469 L 100.90625 415.855469 Z M 102.542969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.925781 255.015625 C 229.925781 256.632812 227.492188 256.632812 227.492188 255.015625 C 227.492188 253.394531 229.925781 253.394531 229.925781 255.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.789062 232.433594 C 271.789062 234.050781 269.359375 234.050781 269.359375 232.433594 C 269.359375 230.8125 271.789062 230.8125 271.789062 232.433594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.171875 197.941406 C 184.171875 199.5625 181.742188 199.5625 181.742188 197.941406 C 181.742188 196.324219 184.171875 196.324219 184.171875 197.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.527344 262.886719 C 289.527344 264.507812 287.097656 264.507812 287.097656 262.886719 C 287.097656 261.269531 289.527344 261.269531 289.527344 262.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 303.226562 206.089844 C 303.226562 207.710938 300.796875 207.710938 300.796875 206.089844 C 300.796875 204.472656 303.226562 204.472656 303.226562 206.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.503906 268.96875 C 259.503906 270.589844 257.074219 270.589844 257.074219 268.96875 C 257.074219 267.347656 259.503906 267.347656 259.503906 268.96875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.242188 248.886719 C 296.242188 250.507812 293.8125 250.507812 293.8125 248.886719 C 293.8125 247.269531 296.242188 247.269531 296.242188 248.886719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.957031 285.027344 C 315.957031 286.648438 313.527344 286.648438 313.527344 285.027344 C 313.527344 283.410156 315.957031 283.410156 315.957031 285.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.9375 278.972656 C 273.9375 280.59375 271.507812 280.59375 271.507812 278.972656 C 271.507812 277.351562 273.9375 277.351562 273.9375 278.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.050781 295.027344 C 247.050781 296.648438 244.621094 296.648438 244.621094 295.027344 C 244.621094 293.410156 247.050781 293.410156 247.050781 295.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.65625 323.871094 C 156.65625 325.492188 154.226562 325.492188 154.226562 323.871094 C 154.226562 322.253906 156.65625 322.253906 156.65625 323.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.152344 340.449219 C 170.152344 342.070312 167.722656 342.070312 167.722656 340.449219 C 167.722656 338.828125 170.152344 338.828125 170.152344 340.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 268.078125 334.542969 C 268.078125 336.164062 265.648438 336.164062 265.648438 334.542969 C 265.648438 332.921875 268.078125 332.921875 268.078125 334.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.5625 333.527344 C 282.5625 335.144531 280.132812 335.144531 280.132812 333.527344 C 280.132812 331.90625 282.5625 331.90625 282.5625 333.527344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.222656 176.472656 C 229.222656 178.09375 226.792969 178.09375 226.792969 176.472656 C 226.792969 174.851562 229.222656 174.851562 229.222656 176.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.253906 214.898438 C 270.253906 216.519531 267.824219 216.519531 267.824219 214.898438 C 267.824219 213.277344 270.253906 213.277344 270.253906 214.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 290.507812 244.757812 C 290.507812 246.378906 288.078125 246.378906 288.078125 244.757812 C 288.078125 243.136719 290.507812 243.136719 290.507812 244.757812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.640625 94.023438 C 215.640625 95.640625 213.210938 95.640625 213.210938 94.023438 C 213.210938 92.402344 215.640625 92.402344 215.640625 94.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.78125 286.617188 C 276.78125 288.238281 274.351562 288.238281 274.351562 286.617188 C 274.351562 284.996094 276.78125 284.996094 276.78125 286.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.210938 285.628906 C 269.210938 287.25 266.78125 287.25 266.78125 285.628906 C 266.78125 284.007812 269.210938 284.007812 269.210938 285.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.523438 318.902344 C 291.523438 320.519531 289.09375 320.519531 289.09375 318.902344 C 289.09375 317.28125 291.523438 317.28125 291.523438 318.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.597656 281.179688 C 273.597656 282.800781 271.167969 282.800781 271.167969 281.179688 C 271.167969 279.5625 273.597656 279.5625 273.597656 281.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.242188 220.460938 C 284.242188 222.082031 281.8125 222.082031 281.8125 220.460938 C 281.8125 218.839844 284.242188 218.839844 284.242188 220.460938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.15625 92.285156 C 202.15625 93.90625 199.726562 93.90625 199.726562 92.285156 C 199.726562 90.664062 202.15625 90.664062 202.15625 92.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.3125 377.855469 C 120.3125 379.472656 117.882812 379.472656 117.882812 377.855469 C 117.882812 376.234375 120.3125 376.234375 120.3125 377.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.46875 296.859375 C 325.46875 298.476562 323.039062 298.476562 323.039062 296.859375 C 323.039062 295.238281 325.46875 295.238281 325.46875 296.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.730469 250.925781 C 274.730469 252.542969 272.300781 252.542969 272.300781 250.925781 C 272.300781 249.304688 274.730469 249.304688 274.730469 250.925781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109 70.910156 L 110.636719 73.746094 L 107.363281 73.746094 Z M 109 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.789062 70.910156 L 127.425781 73.746094 L 124.152344 73.746094 Z M 125.789062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.027344 275.738281 C 197.027344 277.359375 194.597656 277.359375 194.597656 275.738281 C 194.597656 274.117188 197.027344 274.117188 197.027344 275.738281 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 331.804688 418.691406 L 333.441406 415.855469 L 330.167969 415.855469 Z M 331.804688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 292.242188 233.007812 C 292.242188 234.628906 289.8125 234.628906 289.8125 233.007812 C 289.8125 231.386719 292.242188 231.386719 292.242188 233.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.628906 246.929688 C 223.628906 248.550781 221.199219 248.550781 221.199219 246.929688 C 221.199219 245.308594 223.628906 245.308594 223.628906 246.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.574219 192.128906 C 248.574219 193.75 246.144531 193.75 246.144531 192.128906 C 246.144531 190.511719 248.574219 190.511719 248.574219 192.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.203125 334.96875 C 229.203125 336.589844 226.773438 336.589844 226.773438 334.96875 C 226.773438 333.347656 229.203125 333.347656 229.203125 334.96875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 261.042969 418.691406 L 262.679688 415.855469 L 259.40625 415.855469 Z M 261.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.535156 302.425781 C 296.535156 304.046875 294.105469 304.046875 294.105469 302.425781 C 294.105469 300.804688 296.535156 300.804688 296.535156 302.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 225.683594 250.285156 C 225.683594 251.90625 223.253906 251.90625 223.253906 250.285156 C 223.253906 248.667969 225.683594 248.667969 225.683594 250.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.476562 212.804688 C 282.476562 214.421875 280.046875 214.421875 280.046875 212.804688 C 280.046875 211.183594 282.476562 211.183594 282.476562 212.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.566406 193.375 C 200.566406 194.996094 198.136719 194.996094 198.136719 193.375 C 198.136719 191.753906 200.566406 191.753906 200.566406 193.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.730469 175.308594 C 228.730469 176.929688 226.300781 176.929688 226.300781 175.308594 C 226.300781 173.691406 228.730469 173.691406 228.730469 175.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.253906 304.722656 C 241.253906 306.34375 238.824219 306.34375 238.824219 304.722656 C 238.824219 303.101562 241.253906 303.101562 241.253906 304.722656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.675781 207.566406 C 224.675781 209.1875 222.246094 209.1875 222.246094 207.566406 C 222.246094 205.945312 224.675781 205.945312 224.675781 207.566406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 325.507812 277.980469 C 325.507812 279.601562 323.078125 279.601562 323.078125 277.980469 C 323.078125 276.359375 325.507812 276.359375 325.507812 277.980469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 183.304688 70.910156 L 184.941406 73.746094 L 181.667969 73.746094 Z M 183.304688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.289062 285.246094 C 240.289062 286.867188 237.859375 286.867188 237.859375 285.246094 C 237.859375 283.628906 240.289062 283.628906 240.289062 285.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.015625 354.136719 C 234.015625 355.757812 231.585938 355.757812 231.585938 354.136719 C 231.585938 352.515625 234.015625 352.515625 234.015625 354.136719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.230469 195.699219 C 279.230469 197.320312 276.800781 197.320312 276.800781 195.699219 C 276.800781 194.078125 279.230469 194.078125 279.230469 195.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.277344 234.292969 C 288.277344 235.914062 285.847656 235.914062 285.847656 234.292969 C 285.847656 232.671875 288.277344 232.671875 288.277344 234.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 228.582031 411.074219 C 228.582031 412.695312 226.152344 412.695312 226.152344 411.074219 C 226.152344 409.457031 228.582031 409.457031 228.582031 411.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.203125 275.070312 C 273.203125 276.6875 270.773438 276.6875 270.773438 275.070312 C 270.773438 273.449219 273.203125 273.449219 273.203125 275.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.699219 70.910156 L 177.335938 73.746094 L 174.0625 73.746094 Z M 175.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.582031 217.476562 C 204.582031 219.097656 202.152344 219.097656 202.152344 217.476562 C 202.152344 215.855469 204.582031 215.855469 204.582031 217.476562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.976562 148.75 C 179.976562 150.371094 177.546875 150.371094 177.546875 148.75 C 177.546875 147.128906 179.976562 147.128906 179.976562 148.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.976562 297.070312 C 184.976562 298.691406 182.542969 298.691406 182.542969 297.070312 C 182.542969 295.453125 184.976562 295.453125 184.976562 297.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 107.375 189.941406 C 107.375 191.5625 104.945312 191.5625 104.945312 189.941406 C 104.945312 188.320312 107.375 188.320312 107.375 189.941406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 163.613281 185.179688 C 163.613281 186.796875 161.183594 186.796875 161.183594 185.179688 C 161.183594 183.558594 163.613281 183.558594 163.613281 185.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.09375 82.75 C 126.09375 84.367188 123.664062 84.367188 123.664062 82.75 C 123.664062 81.128906 126.09375 81.128906 126.09375 82.75 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.59375 70.910156 L 143.230469 73.746094 L 139.960938 73.746094 Z M 141.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.476562 128.910156 C 281.476562 130.53125 279.046875 130.53125 279.046875 128.910156 C 279.046875 127.292969 281.476562 127.292969 281.476562 128.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.042969 202.589844 C 245.042969 204.210938 242.613281 204.210938 242.613281 202.589844 C 242.613281 200.972656 245.042969 200.972656 245.042969 202.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 296.910156 307.523438 C 296.910156 309.144531 294.480469 309.144531 294.480469 307.523438 C 294.480469 305.902344 296.910156 305.902344 296.910156 307.523438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.835938 418.691406 L 184.472656 415.855469 L 181.199219 415.855469 Z M 182.835938 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.941406 339.269531 C 317.941406 340.890625 315.511719 340.890625 315.511719 339.269531 C 315.511719 337.652344 317.941406 337.652344 317.941406 339.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.074219 312.925781 C 232.074219 314.546875 229.644531 314.546875 229.644531 312.925781 C 229.644531 311.308594 232.074219 311.308594 232.074219 312.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 197.4375 339.683594 C 197.4375 341.304688 195.007812 341.304688 195.007812 339.683594 C 195.007812 338.066406 197.4375 338.066406 197.4375 339.683594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 256.34375 70.910156 L 257.980469 73.746094 L 254.707031 73.746094 Z M 256.34375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.339844 249.753906 C 192.339844 251.375 189.910156 251.375 189.910156 249.753906 C 189.910156 248.136719 192.339844 248.136719 192.339844 249.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.523438 104.257812 C 251.523438 105.878906 249.09375 105.878906 249.09375 104.257812 C 249.09375 102.636719 251.523438 102.636719 251.523438 104.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 251.050781 282.121094 C 251.050781 283.742188 248.621094 283.742188 248.621094 282.121094 C 248.621094 280.5 251.050781 280.5 251.050781 282.121094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.148438 70.910156 L 303.785156 73.746094 L 300.511719 73.746094 Z M 302.148438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.546875 212.601562 C 244.546875 214.222656 242.117188 214.222656 242.117188 212.601562 C 242.117188 210.980469 244.546875 210.980469 244.546875 212.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.917969 166.511719 C 247.917969 168.132812 245.488281 168.132812 245.488281 166.511719 C 245.488281 164.890625 247.917969 164.890625 247.917969 166.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.695312 206.574219 C 221.695312 208.195312 219.265625 208.195312 219.265625 206.574219 C 219.265625 204.953125 221.695312 204.953125 221.695312 206.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.980469 139.125 C 229.980469 140.742188 227.550781 140.742188 227.550781 139.125 C 227.550781 137.503906 229.980469 137.503906 229.980469 139.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.304688 192.277344 C 249.304688 193.898438 246.875 193.898438 246.875 192.277344 C 246.875 190.65625 249.304688 190.65625 249.304688 192.277344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.542969 70.910156 L 153.179688 73.746094 L 149.90625 73.746094 Z M 151.542969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.121094 163.269531 C 282.121094 164.886719 279.691406 164.886719 279.691406 163.269531 C 279.691406 161.648438 282.121094 161.648438 282.121094 163.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.753906 183.289062 C 181.753906 184.910156 179.320312 184.910156 179.320312 183.289062 C 179.320312 181.671875 181.753906 181.671875 181.753906 183.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 208.8125 288.890625 C 208.8125 290.507812 206.382812 290.507812 206.382812 288.890625 C 206.382812 287.269531 208.8125 287.269531 208.8125 288.890625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.878906 70.910156 L 130.515625 73.746094 L 127.242188 73.746094 Z M 128.878906 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.160156 183.414062 C 191.160156 185.03125 188.730469 185.03125 188.730469 183.414062 C 188.730469 181.792969 191.160156 181.792969 191.160156 183.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 343.773438 163.855469 C 343.773438 165.472656 341.339844 165.472656 341.339844 163.855469 C 341.339844 162.234375 343.773438 162.234375 343.773438 163.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.644531 294.609375 C 315.644531 296.230469 313.214844 296.230469 313.214844 294.609375 C 313.214844 292.992188 315.644531 292.992188 315.644531 294.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.960938 265.46875 C 287.960938 267.089844 285.53125 267.089844 285.53125 265.46875 C 285.53125 263.847656 287.960938 263.847656 287.960938 265.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 201.042969 362.070312 C 201.042969 363.691406 198.613281 363.691406 198.613281 362.070312 C 198.613281 360.453125 201.042969 360.453125 201.042969 362.070312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.453125 339.273438 C 267.453125 340.894531 265.023438 340.894531 265.023438 339.273438 C 265.023438 337.652344 267.453125 337.652344 267.453125 339.273438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 310.15625 245.25 C 310.15625 246.867188 307.726562 246.867188 307.726562 245.25 C 307.726562 243.628906 310.15625 243.628906 310.15625 245.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.054688 212.539062 C 302.054688 214.160156 299.625 214.160156 299.625 212.539062 C 299.625 210.921875 302.054688 210.921875 302.054688 212.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.777344 201.324219 C 189.777344 202.945312 187.347656 202.945312 187.347656 201.324219 C 187.347656 199.703125 189.777344 199.703125 189.777344 201.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.636719 251.050781 C 289.636719 252.671875 287.207031 252.671875 287.207031 251.050781 C 287.207031 249.429688 289.636719 249.429688 289.636719 251.050781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.414062 142.675781 C 293.414062 144.296875 290.984375 144.296875 290.984375 142.675781 C 290.984375 141.054688 293.414062 141.054688 293.414062 142.675781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.910156 177.882812 C 305.910156 179.503906 303.480469 179.503906 303.480469 177.882812 C 303.480469 176.265625 305.910156 176.265625 305.910156 177.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.988281 142.011719 C 286.988281 143.632812 284.558594 143.632812 284.558594 142.011719 C 284.558594 140.394531 286.988281 140.394531 286.988281 142.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.21875 281.324219 C 270.21875 282.945312 267.789062 282.945312 267.789062 281.324219 C 267.789062 279.707031 270.21875 279.707031 270.21875 281.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.597656 70.910156 L 210.234375 73.746094 L 206.960938 73.746094 Z M 208.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.523438 199.289062 C 274.523438 200.910156 272.09375 200.910156 272.09375 199.289062 C 272.09375 197.671875 274.523438 197.671875 274.523438 199.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.238281 110.8125 C 304.238281 112.433594 301.808594 112.433594 301.808594 110.8125 C 301.808594 109.195312 304.238281 109.195312 304.238281 110.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.726562 300.128906 C 315.726562 301.75 313.296875 301.75 313.296875 300.128906 C 313.296875 298.507812 315.726562 298.507812 315.726562 300.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 307 234.71875 C 307 236.335938 304.570312 236.335938 304.570312 234.71875 C 304.570312 233.097656 307 233.097656 307 234.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.921875 279.207031 C 260.921875 280.828125 258.492188 280.828125 258.492188 279.207031 C 258.492188 277.585938 260.921875 277.585938 260.921875 279.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.808594 372.078125 C 311.808594 373.699219 309.378906 373.699219 309.378906 372.078125 C 309.378906 370.460938 311.808594 370.460938 311.808594 372.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 238.324219 331.238281 C 238.324219 332.859375 235.894531 332.859375 235.894531 331.238281 C 235.894531 329.617188 238.324219 329.617188 238.324219 331.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 298.953125 254.636719 C 298.953125 256.257812 296.523438 256.257812 296.523438 254.636719 C 296.523438 253.015625 298.953125 253.015625 298.953125 254.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.71875 70.910156 L 214.355469 73.746094 L 211.082031 73.746094 Z M 212.71875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 356.28125 277.605469 C 356.28125 279.222656 353.851562 279.222656 353.851562 277.605469 C 353.851562 275.984375 356.28125 275.984375 356.28125 277.605469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.425781 252.8125 C 249.425781 254.433594 246.992188 254.433594 246.992188 252.8125 C 246.992188 251.195312 249.425781 251.195312 249.425781 252.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 167.585938 184.773438 C 167.585938 186.394531 165.15625 186.394531 165.15625 184.773438 C 165.15625 183.152344 167.585938 183.152344 167.585938 184.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 146.957031 185.21875 C 146.957031 186.835938 144.527344 186.835938 144.527344 185.21875 C 144.527344 183.597656 146.957031 183.597656 146.957031 185.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.535156 274.429688 C 133.535156 276.050781 131.105469 276.050781 131.105469 274.429688 C 131.105469 272.8125 133.535156 272.8125 133.535156 274.429688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 265.597656 70.910156 L 267.234375 73.746094 L 263.960938 73.746094 Z M 265.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.65625 209.445312 C 219.65625 211.066406 217.226562 211.066406 217.226562 209.445312 C 217.226562 207.824219 219.65625 207.824219 219.65625 209.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.917969 275.445312 C 286.917969 277.066406 284.488281 277.066406 284.488281 275.445312 C 284.488281 273.824219 286.917969 273.824219 286.917969 275.445312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 213.554688 144.003906 C 213.554688 145.625 211.125 145.625 211.125 144.003906 C 211.125 142.382812 213.554688 142.382812 213.554688 144.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.492188 149.863281 C 249.492188 151.484375 247.0625 151.484375 247.0625 149.863281 C 247.0625 148.242188 249.492188 148.242188 249.492188 149.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.875 143.332031 C 259.875 144.953125 257.445312 144.953125 257.445312 143.332031 C 257.445312 141.710938 259.875 141.710938 259.875 143.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.492188 260.234375 C 295.492188 261.855469 293.0625 261.855469 293.0625 260.234375 C 293.0625 258.613281 295.492188 258.613281 295.492188 260.234375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 352.734375 70.910156 L 354.371094 73.746094 L 351.097656 73.746094 Z M 352.734375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 138.164062 231.417969 C 138.164062 233.039062 135.734375 233.039062 135.734375 231.417969 C 135.734375 229.796875 138.164062 229.796875 138.164062 231.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.675781 248.695312 C 179.675781 250.316406 177.246094 250.316406 177.246094 248.695312 C 177.246094 247.074219 179.675781 247.074219 179.675781 248.695312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 273.328125 210.449219 C 273.328125 212.070312 270.898438 212.070312 270.898438 210.449219 C 270.898438 208.832031 273.328125 208.832031 273.328125 210.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 286.492188 266.851562 C 286.492188 268.472656 284.0625 268.472656 284.0625 266.851562 C 284.0625 265.230469 286.492188 265.230469 286.492188 266.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.378906 221.195312 C 268.378906 222.8125 265.949219 222.8125 265.949219 221.195312 C 265.949219 219.574219 268.378906 219.574219 268.378906 221.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.613281 73.832031 C 315.613281 75.453125 313.183594 75.453125 313.183594 73.832031 C 313.183594 72.214844 315.613281 72.214844 315.613281 73.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.503906 140.265625 C 275.503906 141.886719 273.074219 141.886719 273.074219 140.265625 C 273.074219 138.644531 275.503906 138.644531 275.503906 140.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.167969 306.738281 C 310.167969 308.359375 307.738281 308.359375 307.738281 306.738281 C 307.738281 305.117188 310.167969 305.117188 310.167969 306.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.625 315.007812 C 282.625 316.628906 280.195312 316.628906 280.195312 315.007812 C 280.195312 313.390625 282.625 313.390625 282.625 315.007812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 286.90625 70.910156 L 288.542969 73.746094 L 285.269531 73.746094 Z M 286.90625 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 181.472656 155.140625 C 181.472656 156.761719 179.042969 156.761719 179.042969 155.140625 C 179.042969 153.523438 181.472656 153.523438 181.472656 155.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.578125 406.445312 C 272.578125 408.066406 270.148438 408.066406 270.148438 406.445312 C 270.148438 404.824219 272.578125 404.824219 272.578125 406.445312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.621094 418.691406 L 220.257812 415.855469 L 216.984375 415.855469 Z M 218.621094 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 209.964844 357.75 C 209.964844 359.367188 207.535156 359.367188 207.535156 357.75 C 207.535156 356.128906 209.964844 356.128906 209.964844 357.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.160156 295.464844 C 145.160156 297.085938 142.730469 297.085938 142.730469 295.464844 C 142.730469 293.847656 145.160156 293.847656 145.160156 295.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.632812 200.265625 C 270.632812 201.882812 268.203125 201.882812 268.203125 200.265625 C 268.203125 198.644531 270.632812 198.644531 270.632812 200.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 263.332031 268.472656 C 263.332031 270.09375 260.898438 270.09375 260.898438 268.472656 C 260.898438 266.855469 263.332031 266.855469 263.332031 268.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.5625 250.328125 C 101.5625 251.949219 99.132812 251.949219 99.132812 250.328125 C 99.132812 248.710938 101.5625 248.710938 101.5625 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 137.285156 255.261719 C 137.285156 256.882812 134.855469 256.882812 134.855469 255.261719 C 134.855469 253.640625 137.285156 253.640625 137.285156 255.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.34375 223.839844 C 254.34375 225.460938 251.910156 225.460938 251.910156 223.839844 C 251.910156 222.21875 254.34375 222.21875 254.34375 223.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.429688 99.03125 C 223.429688 100.652344 221 100.652344 221 99.03125 C 221 97.410156 223.429688 97.410156 223.429688 99.03125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 321.148438 297.09375 C 321.148438 298.714844 318.71875 298.714844 318.71875 297.09375 C 318.71875 295.476562 321.148438 295.476562 321.148438 297.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.722656 304.980469 C 123.722656 306.601562 121.289062 306.601562 121.289062 304.980469 C 121.289062 303.363281 123.722656 303.363281 123.722656 304.980469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 133.300781 132.949219 C 133.300781 134.566406 130.871094 134.566406 130.871094 132.949219 C 130.871094 131.328125 133.300781 131.328125 133.300781 132.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.644531 119.269531 C 162.644531 120.890625 160.214844 120.890625 160.214844 119.269531 C 160.214844 117.652344 162.644531 117.652344 162.644531 119.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 219.074219 315.300781 C 219.074219 316.921875 216.644531 316.921875 216.644531 315.300781 C 216.644531 313.683594 219.074219 313.683594 219.074219 315.300781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 134.230469 70.910156 L 135.863281 73.746094 L 132.59375 73.746094 Z M 134.230469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.195312 145.546875 C 240.195312 147.167969 237.765625 147.167969 237.765625 145.546875 C 237.765625 143.929688 240.195312 143.929688 240.195312 145.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.816406 205.007812 C 148.816406 206.625 146.386719 206.625 146.386719 205.007812 C 146.386719 203.386719 148.816406 203.386719 148.816406 205.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.839844 306.226562 C 300.839844 307.84375 298.410156 307.84375 298.410156 306.226562 C 298.410156 304.605469 300.839844 304.605469 300.839844 306.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.210938 223.78125 C 297.210938 225.402344 294.78125 225.402344 294.78125 223.78125 C 294.78125 222.164062 297.210938 222.164062 297.210938 223.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.160156 193.226562 C 228.160156 194.84375 225.730469 194.84375 225.730469 193.226562 C 225.730469 191.605469 228.160156 191.605469 228.160156 193.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.703125 285.703125 C 312.703125 287.320312 310.273438 287.320312 310.273438 285.703125 C 310.273438 284.082031 312.703125 284.082031 312.703125 285.703125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.304688 418.691406 L 152.941406 415.855469 L 149.671875 415.855469 Z M 151.304688 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 305.386719 418.691406 L 307.023438 415.855469 L 303.75 415.855469 Z M 305.386719 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 335.042969 418.691406 L 336.679688 415.855469 L 333.40625 415.855469 Z M 335.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 328.304688 245.324219 C 328.304688 246.945312 325.875 246.945312 325.875 245.324219 C 325.875 243.703125 328.304688 243.703125 328.304688 245.324219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.644531 70.910156 L 320.28125 73.746094 L 317.007812 73.746094 Z M 318.644531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.390625 289.335938 C 314.390625 290.957031 311.960938 290.957031 311.960938 289.335938 C 311.960938 287.714844 314.390625 287.714844 314.390625 289.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.097656 316.132812 C 244.097656 317.753906 241.667969 317.753906 241.667969 316.132812 C 241.667969 314.515625 244.097656 314.515625 244.097656 316.132812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.101562 418.691406 L 138.738281 415.855469 L 135.464844 415.855469 Z M 137.101562 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.957031 418.691406 L 200.59375 415.855469 L 197.320312 415.855469 Z M 198.957031 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 217.511719 418.691406 L 219.148438 415.855469 L 215.875 415.855469 Z M 217.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.140625 349.90625 C 351.140625 351.527344 348.710938 351.527344 348.710938 349.90625 C 348.710938 348.285156 351.140625 348.285156 351.140625 349.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 173.65625 245.804688 C 173.65625 247.425781 171.226562 247.425781 171.226562 245.804688 C 171.226562 244.1875 173.65625 244.1875 173.65625 245.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.476562 281.925781 C 246.476562 283.546875 244.046875 283.546875 244.046875 281.925781 C 244.046875 280.308594 246.476562 280.308594 246.476562 281.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.710938 70.910156 L 157.347656 73.746094 L 154.074219 73.746094 Z M 155.710938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.738281 70.910156 L 236.371094 73.746094 L 233.101562 73.746094 Z M 234.738281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.421875 140.996094 C 256.421875 142.617188 253.992188 142.617188 253.992188 140.996094 C 253.992188 139.378906 256.421875 139.378906 256.421875 140.996094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.484375 70.910156 L 151.121094 73.746094 L 147.851562 73.746094 Z M 149.484375 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.277344 70.910156 L 224.914062 73.746094 L 221.640625 73.746094 Z M 223.277344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.355469 223.070312 C 287.355469 224.691406 284.925781 224.691406 284.925781 223.070312 C 284.925781 221.449219 287.355469 221.449219 287.355469 223.070312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.28125 70.910156 L 194.917969 73.746094 L 191.644531 73.746094 Z M 193.28125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 197.59375 70.910156 L 199.230469 73.746094 L 195.957031 73.746094 Z M 197.59375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 160.566406 123.582031 C 160.566406 125.199219 158.136719 125.199219 158.136719 123.582031 C 158.136719 121.960938 160.566406 121.960938 160.566406 123.582031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 243.90625 379.304688 C 243.90625 380.925781 241.476562 380.925781 241.476562 379.304688 C 241.476562 377.683594 243.90625 377.683594 243.90625 379.304688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.855469 250.738281 C 255.855469 252.355469 253.425781 252.355469 253.425781 250.738281 C 253.425781 249.117188 255.855469 249.117188 255.855469 250.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.628906 172.734375 C 274.628906 174.351562 272.195312 174.351562 272.195312 172.734375 C 272.195312 171.113281 274.628906 171.113281 274.628906 172.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.1875 325.644531 C 233.1875 327.261719 230.757812 327.261719 230.757812 325.644531 C 230.757812 324.023438 233.1875 324.023438 233.1875 325.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.101562 325.148438 C 257.101562 326.769531 254.671875 326.769531 254.671875 325.148438 C 254.671875 323.53125 257.101562 323.53125 257.101562 325.148438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 234.253906 312.613281 C 234.253906 314.234375 231.824219 314.234375 231.824219 312.613281 C 231.824219 310.992188 234.253906 310.992188 234.253906 312.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 129.152344 340.972656 C 129.152344 342.59375 126.722656 342.59375 126.722656 340.972656 C 126.722656 339.351562 129.152344 339.351562 129.152344 340.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.714844 282.421875 C 261.714844 284.042969 259.28125 284.042969 259.28125 282.421875 C 259.28125 280.800781 261.714844 280.800781 261.714844 282.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 218.742188 92.964844 C 218.742188 94.582031 216.3125 94.582031 216.3125 92.964844 C 216.3125 91.34375 218.742188 91.34375 218.742188 92.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 135.230469 368.792969 C 135.230469 370.414062 132.800781 370.414062 132.800781 368.792969 C 132.800781 367.171875 135.230469 367.171875 135.230469 368.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 211.785156 298.554688 C 211.785156 300.171875 209.355469 300.171875 209.355469 298.554688 C 209.355469 296.933594 211.785156 296.933594 211.785156 298.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.023438 310.335938 C 251.023438 311.957031 248.589844 311.957031 248.589844 310.335938 C 248.589844 308.714844 251.023438 308.714844 251.023438 310.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.21875 230.226562 C 231.21875 231.84375 228.789062 231.84375 228.789062 230.226562 C 228.789062 228.605469 231.21875 228.605469 231.21875 230.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.339844 256.816406 C 278.339844 258.4375 275.910156 258.4375 275.910156 256.816406 C 275.910156 255.199219 278.339844 255.199219 278.339844 256.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.167969 418.691406 L 146.804688 415.855469 L 143.53125 415.855469 Z M 145.167969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.113281 140.1875 C 318.113281 141.808594 315.683594 141.808594 315.683594 140.1875 C 315.683594 138.570312 318.113281 138.570312 318.113281 140.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.710938 191.9375 C 243.710938 193.554688 241.277344 193.554688 241.277344 191.9375 C 241.277344 190.316406 243.710938 190.316406 243.710938 191.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.644531 267.824219 C 268.644531 269.441406 266.210938 269.441406 266.210938 267.824219 C 266.210938 266.203125 268.644531 266.203125 268.644531 267.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.359375 190.09375 C 259.359375 191.714844 256.929688 191.714844 256.929688 190.09375 C 256.929688 188.472656 259.359375 188.472656 259.359375 190.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.214844 220.039062 C 276.214844 221.660156 273.785156 221.660156 273.785156 220.039062 C 273.785156 218.421875 276.214844 218.421875 276.214844 220.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.578125 248.191406 C 200.578125 249.8125 198.144531 249.8125 198.144531 248.191406 C 198.144531 246.574219 200.578125 246.574219 200.578125 248.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.667969 245.542969 C 222.667969 247.160156 220.238281 247.160156 220.238281 245.542969 C 220.238281 243.921875 222.667969 243.921875 222.667969 245.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.140625 282.347656 C 303.140625 283.96875 300.710938 283.96875 300.710938 282.347656 C 300.710938 280.726562 303.140625 280.726562 303.140625 282.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 192.539062 101.246094 C 192.539062 102.867188 190.105469 102.867188 190.105469 101.246094 C 190.105469 99.625 192.539062 99.625 192.539062 101.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 175.15625 91.640625 C 175.15625 93.261719 172.726562 93.261719 172.726562 91.640625 C 172.726562 90.023438 175.15625 90.023438 175.15625 91.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 123.988281 205.664062 C 123.988281 207.285156 121.558594 207.285156 121.558594 205.664062 C 121.558594 204.042969 123.988281 204.042969 123.988281 205.664062 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.082031 70.910156 L 140.71875 73.746094 L 137.445312 73.746094 Z M 139.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 245.355469 411.601562 C 245.355469 413.21875 242.925781 413.21875 242.925781 411.601562 C 242.925781 409.980469 245.355469 409.980469 245.355469 411.601562 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 193.433594 418.691406 L 195.070312 415.855469 L 191.796875 415.855469 Z M 193.433594 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 233.429688 418.691406 L 235.066406 415.855469 L 231.792969 415.855469 Z M 233.429688 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.804688 281.339844 C 222.804688 282.957031 220.375 282.957031 220.375 281.339844 C 220.375 279.71875 222.804688 279.71875 222.804688 281.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.015625 282.839844 C 290.015625 284.460938 287.585938 284.460938 287.585938 282.839844 C 287.585938 281.21875 290.015625 281.21875 290.015625 282.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.382812 238.246094 C 269.382812 239.867188 266.953125 239.867188 266.953125 238.246094 C 266.953125 236.628906 269.382812 236.628906 269.382812 238.246094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.582031 236.214844 C 235.582031 237.832031 233.148438 237.832031 233.148438 236.214844 C 233.148438 234.59375 235.582031 234.59375 235.582031 236.214844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 183.09375 185.753906 C 183.09375 187.375 180.664062 187.375 180.664062 185.753906 C 180.664062 184.136719 183.09375 184.136719 183.09375 185.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.074219 317.945312 C 111.074219 319.5625 108.640625 319.5625 108.640625 317.945312 C 108.640625 316.324219 111.074219 316.324219 111.074219 317.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 389.554688 286.574219 C 389.554688 288.195312 387.125 288.195312 387.125 286.574219 C 387.125 284.953125 389.554688 284.953125 389.554688 286.574219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 367.140625 265.644531 C 367.140625 267.265625 364.710938 267.265625 364.710938 265.644531 C 364.710938 264.023438 367.140625 264.023438 367.140625 265.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.730469 301.382812 C 170.730469 303.003906 168.300781 303.003906 168.300781 301.382812 C 168.300781 299.765625 170.730469 299.765625 170.730469 301.382812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.109375 418.691406 L 211.742188 415.855469 L 208.472656 415.855469 Z M 210.109375 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.039062 219.332031 C 273.039062 220.949219 270.609375 220.949219 270.609375 219.332031 C 270.609375 217.710938 273.039062 217.710938 273.039062 219.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.625 313.84375 C 192.625 315.460938 190.195312 315.460938 190.195312 313.84375 C 190.195312 312.222656 192.625 312.222656 192.625 313.84375 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.699219 70.910156 L 112.335938 73.746094 L 109.0625 73.746094 Z M 110.699219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 282.953125 325.925781 C 282.953125 327.546875 280.523438 327.546875 280.523438 325.925781 C 280.523438 324.304688 282.953125 324.304688 282.953125 325.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.917969 271.570312 C 285.917969 273.191406 283.488281 273.191406 283.488281 271.570312 C 283.488281 269.949219 285.917969 269.949219 285.917969 271.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.261719 70.910156 L 157.898438 73.746094 L 154.625 73.746094 Z M 156.261719 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.691406 70.910156 L 203.328125 73.746094 L 200.054688 73.746094 Z M 201.691406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.601562 330.769531 C 176.601562 332.390625 174.171875 332.390625 174.171875 330.769531 C 174.171875 329.148438 176.601562 329.148438 176.601562 330.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.359375 171.546875 C 174.359375 173.164062 171.929688 173.164062 171.929688 171.546875 C 171.929688 169.925781 174.359375 169.925781 174.359375 171.546875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.296875 418.691406 L 209.933594 415.855469 L 206.660156 415.855469 Z M 208.296875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 119.109375 382.710938 C 119.109375 384.332031 116.675781 384.332031 116.675781 382.710938 C 116.675781 381.089844 119.109375 381.089844 119.109375 382.710938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.394531 418.691406 L 204.03125 415.855469 L 200.757812 415.855469 Z M 202.394531 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.582031 70.910156 L 150.21875 73.746094 L 146.945312 73.746094 Z M 148.582031 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.398438 70.910156 L 250.03125 73.746094 L 246.761719 73.746094 Z M 248.398438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.292969 242.734375 C 267.292969 244.355469 264.863281 244.355469 264.863281 242.734375 C 264.863281 241.117188 267.292969 241.117188 267.292969 242.734375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.453125 234.820312 C 268.453125 236.441406 266.023438 236.441406 266.023438 234.820312 C 266.023438 233.203125 268.453125 233.203125 268.453125 234.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.464844 255.75 C 277.464844 257.367188 275.035156 257.367188 275.035156 255.75 C 275.035156 254.128906 277.464844 254.128906 277.464844 255.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 304.308594 249.554688 C 304.308594 251.171875 301.878906 251.171875 301.878906 249.554688 C 301.878906 247.933594 304.308594 247.933594 304.308594 249.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.195312 193.230469 C 188.195312 194.851562 185.765625 194.851562 185.765625 193.230469 C 185.765625 191.609375 188.195312 191.609375 188.195312 193.230469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.59375 177.800781 C 285.59375 179.417969 283.164062 179.417969 283.164062 177.800781 C 283.164062 176.179688 285.59375 176.179688 285.59375 177.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.625 258.777344 C 257.625 260.394531 255.195312 260.394531 255.195312 258.777344 C 255.195312 257.15625 257.625 257.15625 257.625 258.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.34375 235.011719 C 233.34375 236.632812 230.914062 236.632812 230.914062 235.011719 C 230.914062 233.390625 233.34375 233.390625 233.34375 235.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 236.414062 258.554688 C 236.414062 260.175781 233.984375 260.175781 233.984375 258.554688 C 233.984375 256.933594 236.414062 256.933594 236.414062 258.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 202.902344 259.8125 C 202.902344 261.433594 200.472656 261.433594 200.472656 259.8125 C 200.472656 258.195312 202.902344 258.195312 202.902344 259.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 313.082031 249.339844 C 313.082031 250.960938 310.652344 250.960938 310.652344 249.339844 C 310.652344 247.71875 313.082031 247.71875 313.082031 249.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.121094 272.347656 C 273.121094 273.96875 270.691406 273.96875 270.691406 272.347656 C 270.691406 270.730469 273.121094 270.730469 273.121094 272.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.394531 242.417969 C 240.394531 244.039062 237.964844 244.039062 237.964844 242.417969 C 237.964844 240.800781 240.394531 240.800781 240.394531 242.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.339844 244.375 C 232.339844 245.992188 229.910156 245.992188 229.910156 244.375 C 229.910156 242.753906 232.339844 242.753906 232.339844 244.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.765625 323.984375 C 185.765625 325.601562 183.335938 325.601562 183.335938 323.984375 C 183.335938 322.363281 185.765625 322.363281 185.765625 323.984375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.519531 239.355469 C 275.519531 240.976562 273.089844 240.976562 273.089844 239.355469 C 273.089844 237.734375 275.519531 237.734375 275.519531 239.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.265625 252.269531 C 262.265625 253.890625 259.835938 253.890625 259.835938 252.269531 C 259.835938 250.648438 262.265625 250.648438 262.265625 252.269531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.808594 321.042969 C 239.808594 322.660156 237.378906 322.660156 237.378906 321.042969 C 237.378906 319.421875 239.808594 319.421875 239.808594 321.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.9375 294.472656 C 254.9375 296.09375 252.507812 296.09375 252.507812 294.472656 C 252.507812 292.855469 254.9375 292.855469 254.9375 294.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.023438 252.066406 C 249.023438 253.6875 246.59375 253.6875 246.59375 252.066406 C 246.59375 250.449219 249.023438 250.449219 249.023438 252.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 307.851562 182.644531 C 307.851562 184.265625 305.421875 184.265625 305.421875 182.644531 C 305.421875 181.023438 307.851562 181.023438 307.851562 182.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.601562 346.71875 C 264.601562 348.335938 262.171875 348.335938 262.171875 346.71875 C 262.171875 345.097656 264.601562 345.097656 264.601562 346.71875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.910156 70.910156 L 128.546875 73.746094 L 125.273438 73.746094 Z M 126.910156 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 309.464844 70.910156 L 311.101562 73.746094 L 307.828125 73.746094 Z M 309.464844 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.472656 70.910156 L 171.109375 73.746094 L 167.835938 73.746094 Z M 169.472656 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 145.714844 70.910156 L 147.351562 73.746094 L 144.078125 73.746094 Z M 145.714844 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.546875 195.949219 C 276.546875 197.570312 274.113281 197.570312 274.113281 195.949219 C 274.113281 194.328125 276.546875 194.328125 276.546875 195.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 277.050781 274.652344 C 277.050781 276.269531 274.621094 276.269531 274.621094 274.652344 C 274.621094 273.03125 277.050781 273.03125 277.050781 274.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 285.734375 217.746094 C 285.734375 219.367188 283.304688 219.367188 283.304688 217.746094 C 283.304688 216.128906 285.734375 216.128906 285.734375 217.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.621094 199.101562 C 221.621094 200.722656 219.191406 200.722656 219.191406 199.101562 C 219.191406 197.480469 221.621094 197.480469 221.621094 199.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.601562 247.828125 C 245.601562 249.445312 243.171875 249.445312 243.171875 247.828125 C 243.171875 246.207031 245.601562 246.207031 245.601562 247.828125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.929688 226.773438 C 289.929688 228.394531 287.5 228.394531 287.5 226.773438 C 287.5 225.15625 289.929688 225.15625 289.929688 226.773438 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 252.90625 70.910156 L 254.542969 73.746094 L 251.269531 73.746094 Z M 252.90625 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.675781 70.910156 L 270.3125 73.746094 L 267.039062 73.746094 Z M 268.675781 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 297.574219 70.910156 L 299.210938 73.746094 L 295.9375 73.746094 Z M 297.574219 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 278.628906 418.691406 L 280.265625 415.855469 L 276.992188 415.855469 Z M 278.628906 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 276.820312 149.921875 C 276.820312 151.539062 274.390625 151.539062 274.390625 149.921875 C 274.390625 148.300781 276.820312 148.300781 276.820312 149.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.871094 182.929688 C 290.871094 184.550781 288.441406 184.550781 288.441406 182.929688 C 288.441406 181.3125 290.871094 181.3125 290.871094 182.929688 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 225.851562 70.910156 L 227.484375 73.746094 L 224.214844 73.746094 Z M 225.851562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 146.308594 70.910156 L 147.945312 73.746094 L 144.671875 73.746094 Z M 146.308594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.1875 418.691406 L 156.824219 415.855469 L 153.550781 415.855469 Z M 155.1875 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.996094 227.265625 C 279.996094 228.886719 277.566406 228.886719 277.566406 227.265625 C 277.566406 225.644531 279.996094 225.644531 279.996094 227.265625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.292969 165.632812 C 241.292969 167.25 238.863281 167.25 238.863281 165.632812 C 238.863281 164.011719 241.292969 164.011719 241.292969 165.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 211.453125 107.652344 C 211.453125 109.273438 209.023438 109.273438 209.023438 107.652344 C 209.023438 106.035156 211.453125 106.035156 211.453125 107.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 148.464844 343.074219 C 148.464844 344.695312 146.03125 344.695312 146.03125 343.074219 C 146.03125 341.457031 148.464844 341.457031 148.464844 343.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.960938 340.472656 C 229.960938 342.09375 227.53125 342.09375 227.53125 340.472656 C 227.53125 338.851562 229.960938 338.851562 229.960938 340.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 215.179688 358.742188 C 215.179688 360.363281 212.75 360.363281 212.75 358.742188 C 212.75 357.121094 215.179688 357.121094 215.179688 358.742188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.355469 235.976562 C 230.355469 237.597656 227.925781 237.597656 227.925781 235.976562 C 227.925781 234.355469 230.355469 234.355469 230.355469 235.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.726562 117 C 269.726562 118.621094 267.296875 118.621094 267.296875 117 C 267.296875 115.382812 269.726562 115.382812 269.726562 117 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 284.769531 189.066406 C 284.769531 190.6875 282.339844 190.6875 282.339844 189.066406 C 282.339844 187.449219 284.769531 187.449219 284.769531 189.066406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.792969 70.910156 L 240.429688 73.746094 L 237.15625 73.746094 Z M 238.792969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.796875 70.910156 L 261.433594 73.746094 L 258.160156 73.746094 Z M 259.796875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 248.539062 190.839844 C 248.539062 192.460938 246.109375 192.460938 246.109375 190.839844 C 246.109375 189.21875 248.539062 189.21875 248.539062 190.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 254.164062 191.0625 C 254.164062 192.683594 251.734375 192.683594 251.734375 191.0625 C 251.734375 189.441406 254.164062 189.441406 254.164062 191.0625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.839844 172.117188 C 270.839844 173.738281 268.410156 173.738281 268.410156 172.117188 C 268.410156 170.5 270.839844 170.5 270.839844 172.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.175781 308.09375 C 351.175781 309.714844 348.746094 309.714844 348.746094 308.09375 C 348.746094 306.472656 351.175781 306.472656 351.175781 308.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 236.488281 98.011719 C 236.488281 99.628906 234.058594 99.628906 234.058594 98.011719 C 234.058594 96.390625 236.488281 96.390625 236.488281 98.011719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 278.542969 176.804688 C 278.542969 178.425781 276.113281 178.425781 276.113281 176.804688 C 276.113281 175.183594 278.542969 175.183594 278.542969 176.804688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.007812 210.003906 C 272.007812 211.625 269.578125 211.625 269.578125 210.003906 C 269.578125 208.382812 272.007812 208.382812 272.007812 210.003906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 189.441406 284.058594 C 189.441406 285.679688 187.011719 285.679688 187.011719 284.058594 C 187.011719 282.441406 189.441406 282.441406 189.441406 284.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.820312 315.617188 C 203.820312 317.234375 201.390625 317.234375 201.390625 315.617188 C 201.390625 313.996094 203.820312 313.996094 203.820312 315.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 385.78125 244.347656 C 385.78125 245.96875 383.351562 245.96875 383.351562 244.347656 C 383.351562 242.730469 385.78125 242.730469 385.78125 244.347656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.949219 70.910156 L 210.582031 73.746094 L 207.3125 73.746094 Z M 208.949219 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.273438 281.546875 C 319.273438 283.167969 316.84375 283.167969 316.84375 281.546875 C 316.84375 279.929688 319.273438 279.929688 319.273438 281.546875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.632812 70.910156 L 165.269531 73.746094 L 161.996094 73.746094 Z M 163.632812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 184.523438 198.367188 C 184.523438 199.988281 182.09375 199.988281 182.09375 198.367188 C 182.09375 196.746094 184.523438 196.746094 184.523438 198.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 271.675781 196.367188 C 271.675781 197.988281 269.246094 197.988281 269.246094 196.367188 C 269.246094 194.75 271.675781 194.75 271.675781 196.367188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 369.5625 270.46875 C 369.5625 272.089844 367.132812 272.089844 367.132812 270.46875 C 367.132812 268.847656 369.5625 268.847656 369.5625 270.46875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.726562 202.058594 C 308.726562 203.679688 306.296875 203.679688 306.296875 202.058594 C 306.296875 200.441406 308.726562 200.441406 308.726562 202.058594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.738281 230.226562 C 259.738281 231.847656 257.304688 231.847656 257.304688 230.226562 C 257.304688 228.605469 259.738281 228.605469 259.738281 230.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.75 234.425781 C 279.75 236.046875 277.320312 236.046875 277.320312 234.425781 C 277.320312 232.808594 279.75 232.808594 279.75 234.425781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.953125 251.539062 C 252.953125 253.160156 250.523438 253.160156 250.523438 251.539062 C 250.523438 249.917969 252.953125 249.917969 252.953125 251.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.683594 257.1875 C 283.683594 258.808594 281.253906 258.808594 281.253906 257.1875 C 281.253906 255.566406 283.683594 255.566406 283.683594 257.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.976562 344.417969 C 247.976562 346.035156 245.546875 346.035156 245.546875 344.417969 C 245.546875 342.796875 247.976562 342.796875 247.976562 344.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 245.929688 286.90625 C 245.929688 288.523438 243.5 288.523438 243.5 286.90625 C 243.5 285.285156 245.929688 285.285156 245.929688 286.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.746094 238.582031 C 276.746094 240.203125 274.316406 240.203125 274.316406 238.582031 C 274.316406 236.964844 276.746094 236.964844 276.746094 238.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 169.203125 70.910156 L 170.839844 73.746094 L 167.566406 73.746094 Z M 169.203125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.578125 294.472656 C 255.578125 296.09375 253.148438 296.09375 253.148438 294.472656 C 253.148438 292.851562 255.578125 292.851562 255.578125 294.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.582031 295.316406 C 230.582031 296.9375 228.152344 296.9375 228.152344 295.316406 C 228.152344 293.695312 230.582031 293.695312 230.582031 295.316406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 179.085938 246.589844 C 179.085938 248.210938 176.65625 248.210938 176.65625 246.589844 C 176.65625 244.96875 179.085938 244.96875 179.085938 246.589844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.105469 70.910156 L 254.742188 73.746094 L 251.46875 73.746094 Z M 253.105469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 290.0625 171.535156 C 290.0625 173.15625 287.632812 173.15625 287.632812 171.535156 C 287.632812 169.914062 290.0625 169.914062 290.0625 171.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 132.019531 236.3125 C 132.019531 237.929688 129.589844 237.929688 129.589844 236.3125 C 129.589844 234.691406 132.019531 234.691406 132.019531 236.3125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 315.042969 302.558594 C 315.042969 304.179688 312.613281 304.179688 312.613281 302.558594 C 312.613281 300.941406 315.042969 300.941406 315.042969 302.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.976562 211.480469 C 300.976562 213.101562 298.546875 213.101562 298.546875 211.480469 C 298.546875 209.859375 300.976562 209.859375 300.976562 211.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.148438 237.964844 C 312.148438 239.585938 309.71875 239.585938 309.71875 237.964844 C 309.71875 236.34375 312.148438 236.34375 312.148438 237.964844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.875 216.261719 C 273.875 217.882812 271.445312 217.882812 271.445312 216.261719 C 271.445312 214.644531 273.875 214.644531 273.875 216.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 331.703125 252.351562 C 331.703125 253.972656 329.273438 253.972656 329.273438 252.351562 C 329.273438 250.730469 331.703125 250.730469 331.703125 252.351562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.15625 373.523438 C 291.15625 375.144531 288.726562 375.144531 288.726562 373.523438 C 288.726562 371.902344 291.15625 371.902344 291.15625 373.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.113281 304.257812 C 301.113281 305.878906 298.679688 305.878906 298.679688 304.257812 C 298.679688 302.640625 301.113281 302.640625 301.113281 304.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.195312 288.074219 C 147.195312 289.691406 144.765625 289.691406 144.765625 288.074219 C 144.765625 286.453125 147.195312 286.453125 147.195312 288.074219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.375 225.875 C 267.375 227.496094 264.945312 227.496094 264.945312 225.875 C 264.945312 224.257812 267.375 224.257812 267.375 225.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.703125 300.78125 C 237.703125 302.402344 235.273438 302.402344 235.273438 300.78125 C 235.273438 299.160156 237.703125 299.160156 237.703125 300.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 237.960938 276.464844 C 237.960938 278.085938 235.53125 278.085938 235.53125 276.464844 C 235.53125 274.84375 237.960938 274.84375 237.960938 276.464844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.300781 245.792969 C 315.300781 247.414062 312.871094 247.414062 312.871094 245.792969 C 312.871094 244.171875 315.300781 244.171875 315.300781 245.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.273438 313.660156 C 188.273438 315.277344 185.84375 315.277344 185.84375 313.660156 C 185.84375 312.039062 188.273438 312.039062 188.273438 313.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 221.195312 212.296875 C 221.195312 213.917969 218.761719 213.917969 218.761719 212.296875 C 218.761719 210.675781 221.195312 210.675781 221.195312 212.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.828125 256.515625 C 212.828125 258.136719 210.398438 258.136719 210.398438 256.515625 C 210.398438 254.898438 212.828125 254.898438 212.828125 256.515625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.226562 276.285156 C 187.226562 277.90625 184.796875 277.90625 184.796875 276.285156 C 184.796875 274.667969 187.226562 274.667969 187.226562 276.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.386719 231.023438 C 315.386719 232.644531 312.957031 232.644531 312.957031 231.023438 C 312.957031 229.402344 315.386719 229.402344 315.386719 231.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.445312 250.328125 C 99.445312 251.949219 97.015625 251.949219 97.015625 250.328125 C 97.015625 248.710938 99.445312 248.710938 99.445312 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 309.507812 214.957031 C 309.507812 216.578125 307.078125 216.578125 307.078125 214.957031 C 307.078125 213.335938 309.507812 213.335938 309.507812 214.957031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.582031 253.839844 C 274.582031 255.460938 272.152344 255.460938 272.152344 253.839844 C 272.152344 252.222656 274.582031 252.222656 274.582031 253.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.058594 215.703125 C 258.058594 217.324219 255.628906 217.324219 255.628906 215.703125 C 255.628906 214.085938 258.058594 214.085938 258.058594 215.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 277.882812 320.164062 C 277.882812 321.78125 275.453125 321.78125 275.453125 320.164062 C 275.453125 318.542969 277.882812 318.542969 277.882812 320.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.257812 214.636719 C 271.257812 216.257812 268.828125 216.257812 268.828125 214.636719 C 268.828125 213.015625 271.257812 213.015625 271.257812 214.636719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.207031 70.910156 L 138.84375 73.746094 L 135.570312 73.746094 Z M 137.207031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.453125 281.871094 C 312.453125 283.492188 310.023438 283.492188 310.023438 281.871094 C 310.023438 280.25 312.453125 280.25 312.453125 281.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.171875 247.664062 C 267.171875 249.28125 264.742188 249.28125 264.742188 247.664062 C 264.742188 246.042969 267.171875 246.042969 267.171875 247.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.832031 194.117188 C 159.832031 195.738281 157.402344 195.738281 157.402344 194.117188 C 157.402344 192.496094 159.832031 192.496094 159.832031 194.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 161.277344 260.667969 C 161.277344 262.285156 158.847656 262.285156 158.847656 260.667969 C 158.847656 259.046875 161.277344 259.046875 161.277344 260.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.289062 267.710938 C 265.289062 269.332031 262.859375 269.332031 262.859375 267.710938 C 262.859375 266.09375 265.289062 266.09375 265.289062 267.710938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 367.976562 382.230469 C 367.976562 383.847656 365.546875 383.847656 365.546875 382.230469 C 365.546875 380.609375 367.976562 380.609375 367.976562 382.230469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 287.511719 418.691406 L 289.148438 415.855469 L 285.875 415.855469 Z M 287.511719 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 319.851562 365.839844 C 319.851562 367.460938 317.417969 367.460938 317.417969 365.839844 C 317.417969 364.21875 319.851562 364.21875 319.851562 365.839844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.058594 315.0625 C 314.058594 316.679688 311.628906 316.679688 311.628906 315.0625 C 311.628906 313.441406 314.058594 313.441406 314.058594 315.0625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 262.683594 70.910156 L 264.320312 73.746094 L 261.046875 73.746094 Z M 262.683594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 299.652344 209.484375 C 299.652344 211.105469 297.222656 211.105469 297.222656 209.484375 C 297.222656 207.863281 299.652344 207.863281 299.652344 209.484375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.035156 359.097656 C 261.035156 360.71875 258.605469 360.71875 258.605469 359.097656 C 258.605469 357.480469 261.035156 357.480469 261.035156 359.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.613281 311.988281 C 259.613281 313.609375 257.183594 313.609375 257.183594 311.988281 C 257.183594 310.367188 259.613281 310.367188 259.613281 311.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 272.933594 252.140625 C 272.933594 253.761719 270.503906 253.761719 270.503906 252.140625 C 270.503906 250.523438 272.933594 250.523438 272.933594 252.140625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 295.699219 259.1875 C 295.699219 260.808594 293.265625 260.808594 293.265625 259.1875 C 293.265625 257.566406 295.699219 257.566406 295.699219 259.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.640625 312.976562 C 305.640625 314.597656 303.210938 314.597656 303.210938 312.976562 C 303.210938 311.355469 305.640625 311.355469 305.640625 312.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.375 216.871094 C 185.375 218.492188 182.945312 218.492188 182.945312 216.871094 C 182.945312 215.25 185.375 215.25 185.375 216.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 287.917969 276.617188 C 287.917969 278.234375 285.488281 278.234375 285.488281 276.617188 C 285.488281 274.996094 287.917969 274.996094 287.917969 276.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.90625 236.757812 C 200.90625 238.378906 198.476562 238.378906 198.476562 236.757812 C 198.476562 235.140625 200.90625 235.140625 200.90625 236.757812 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 179.683594 70.910156 L 181.320312 73.746094 L 178.046875 73.746094 Z M 179.683594 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.402344 70.910156 L 229.039062 73.746094 L 225.769531 73.746094 Z M 227.402344 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 274.699219 277.78125 C 274.699219 279.402344 272.265625 279.402344 272.265625 277.78125 C 272.265625 276.160156 274.699219 276.160156 274.699219 277.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.367188 162.945312 C 224.367188 164.566406 221.9375 164.566406 221.9375 162.945312 C 221.9375 161.328125 224.367188 161.328125 224.367188 162.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.960938 145.707031 C 233.960938 147.324219 231.53125 147.324219 231.53125 145.707031 C 231.53125 144.085938 233.960938 144.085938 233.960938 145.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 223.054688 104.289062 C 223.054688 105.910156 220.625 105.910156 220.625 104.289062 C 220.625 102.667969 223.054688 102.667969 223.054688 104.289062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 203.601562 268.699219 C 203.601562 270.320312 201.171875 270.320312 201.171875 268.699219 C 201.171875 267.078125 203.601562 267.078125 203.601562 268.699219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.242188 199.25 C 238.242188 200.871094 235.8125 200.871094 235.8125 199.25 C 235.8125 197.632812 238.242188 197.632812 238.242188 199.25 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.746094 347.78125 C 303.746094 349.398438 301.316406 349.398438 301.316406 347.78125 C 301.316406 346.160156 303.746094 346.160156 303.746094 347.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 300.765625 362.730469 C 300.765625 364.347656 298.335938 364.347656 298.335938 362.730469 C 298.335938 361.109375 300.765625 361.109375 300.765625 362.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 267.859375 217.652344 C 267.859375 219.269531 265.429688 219.269531 265.429688 217.652344 C 265.429688 216.03125 267.859375 216.03125 267.859375 217.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 303.378906 275.40625 C 303.378906 277.027344 300.949219 277.027344 300.949219 275.40625 C 300.949219 273.785156 303.378906 273.785156 303.378906 275.40625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 154.515625 169.9375 C 154.515625 171.554688 152.085938 171.554688 152.085938 169.9375 C 152.085938 168.316406 154.515625 168.316406 154.515625 169.9375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 164.113281 214.894531 C 164.113281 216.515625 161.683594 216.515625 161.683594 214.894531 C 161.683594 213.277344 164.113281 213.277344 164.113281 214.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.179688 90.597656 C 99.179688 92.21875 96.75 92.21875 96.75 90.597656 C 96.75 88.976562 99.179688 88.976562 99.179688 90.597656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.082031 282.859375 C 219.082031 284.480469 216.652344 284.480469 216.652344 282.859375 C 216.652344 281.238281 219.082031 281.238281 219.082031 282.859375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 381.101562 157.800781 C 381.101562 159.421875 378.671875 159.421875 378.671875 157.800781 C 378.671875 156.179688 381.101562 156.179688 381.101562 157.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.609375 70.910156 L 271.246094 73.746094 L 267.972656 73.746094 Z M 269.609375 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.691406 279.703125 C 249.691406 281.324219 247.261719 281.324219 247.261719 279.703125 C 247.261719 278.085938 249.691406 278.085938 249.691406 279.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 94.480469 108.089844 C 94.480469 109.710938 92.050781 109.710938 92.050781 108.089844 C 92.050781 106.46875 94.480469 106.46875 94.480469 108.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.21875 70.910156 L 228.855469 73.746094 L 225.582031 73.746094 Z M 227.21875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.25 239.609375 C 253.25 241.230469 250.820312 241.230469 250.820312 239.609375 C 250.820312 237.988281 253.25 237.988281 253.25 239.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.308594 250.144531 C 243.308594 251.761719 240.878906 251.761719 240.878906 250.144531 C 240.878906 248.523438 243.308594 248.523438 243.308594 250.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.078125 167.652344 C 246.078125 169.269531 243.644531 169.269531 243.644531 167.652344 C 243.644531 166.03125 246.078125 166.03125 246.078125 167.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 191.066406 122.582031 C 191.066406 124.203125 188.636719 124.203125 188.636719 122.582031 C 188.636719 120.960938 191.066406 120.960938 191.066406 122.582031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.597656 70.910156 L 139.234375 73.746094 L 135.960938 73.746094 Z M 137.597656 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.582031 271.128906 C 213.582031 272.75 211.152344 272.75 211.152344 271.128906 C 211.152344 269.507812 213.582031 269.507812 213.582031 271.128906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 192.199219 172.472656 C 192.199219 174.09375 189.769531 174.09375 189.769531 172.472656 C 189.769531 170.851562 192.199219 170.851562 192.199219 172.472656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.898438 240.089844 C 246.898438 241.710938 244.46875 241.710938 244.46875 240.089844 C 244.46875 238.46875 246.898438 238.46875 246.898438 240.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279 215.914062 C 279 217.53125 276.570312 217.53125 276.570312 215.914062 C 276.570312 214.292969 279 214.292969 279 215.914062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.886719 280.429688 C 258.886719 282.046875 256.457031 282.046875 256.457031 280.429688 C 256.457031 278.808594 258.886719 278.808594 258.886719 280.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 311.769531 243.640625 C 311.769531 245.261719 309.339844 245.261719 309.339844 243.640625 C 309.339844 242.019531 311.769531 242.019531 311.769531 243.640625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 312.566406 271.039062 C 312.566406 272.65625 310.136719 272.65625 310.136719 271.039062 C 310.136719 269.417969 312.566406 269.417969 312.566406 271.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 279.257812 250.609375 C 279.257812 252.230469 276.828125 252.230469 276.828125 250.609375 C 276.828125 248.988281 279.257812 248.988281 279.257812 250.609375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 209.816406 264.257812 C 209.816406 265.878906 207.386719 265.878906 207.386719 264.257812 C 207.386719 262.640625 209.816406 262.640625 209.816406 264.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.777344 240.054688 C 275.777344 241.675781 273.347656 241.675781 273.347656 240.054688 C 273.347656 238.433594 275.777344 238.433594 275.777344 240.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.722656 194.394531 C 262.722656 196.015625 260.292969 196.015625 260.292969 194.394531 C 260.292969 192.773438 262.722656 192.773438 262.722656 194.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.3125 286.164062 C 269.3125 287.785156 266.882812 287.785156 266.882812 286.164062 C 266.882812 284.542969 269.3125 284.542969 269.3125 286.164062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.316406 111.679688 C 174.316406 113.300781 171.886719 113.300781 171.886719 111.679688 C 171.886719 110.058594 174.316406 110.058594 174.316406 111.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 240.652344 258.417969 C 240.652344 260.035156 238.222656 260.035156 238.222656 258.417969 C 238.222656 256.796875 240.652344 256.796875 240.652344 258.417969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 318.925781 300.355469 C 318.925781 301.976562 316.496094 301.976562 316.496094 300.355469 C 316.496094 298.734375 318.925781 298.734375 318.925781 300.355469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 250.640625 367.621094 C 250.640625 369.242188 248.210938 369.242188 248.210938 367.621094 C 248.210938 366 250.640625 366 250.640625 367.621094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 251.421875 355.660156 C 251.421875 357.28125 248.992188 357.28125 248.992188 355.660156 C 248.992188 354.039062 251.421875 354.039062 251.421875 355.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.683594 269.898438 C 235.683594 271.519531 233.253906 271.519531 233.253906 269.898438 C 233.253906 268.277344 235.683594 268.277344 235.683594 269.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.421875 276.039062 C 230.421875 277.660156 227.992188 277.660156 227.992188 276.039062 C 227.992188 274.421875 230.421875 274.421875 230.421875 276.039062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 323.75 300.007812 C 323.75 301.628906 321.320312 301.628906 321.320312 300.007812 C 321.320312 298.386719 323.75 298.386719 323.75 300.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.925781 207.082031 C 256.925781 208.699219 254.496094 208.699219 254.496094 207.082031 C 254.496094 205.460938 256.925781 205.460938 256.925781 207.082031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 276.046875 248.863281 C 276.046875 250.484375 273.617188 250.484375 273.617188 248.863281 C 273.617188 247.242188 276.046875 247.242188 276.046875 248.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 188.5 223.542969 C 188.5 225.164062 186.070312 225.164062 186.070312 223.542969 C 186.070312 221.921875 188.5 221.921875 188.5 223.542969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.757812 223.863281 C 162.757812 225.484375 160.324219 225.484375 160.324219 223.863281 C 160.324219 222.242188 162.757812 222.242188 162.757812 223.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.574219 186.019531 C 265.574219 187.640625 263.144531 187.640625 263.144531 186.019531 C 263.144531 184.398438 265.574219 184.398438 265.574219 186.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 256.652344 195.523438 C 256.652344 197.144531 254.222656 197.144531 254.222656 195.523438 C 254.222656 193.902344 256.652344 193.902344 256.652344 195.523438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.496094 197.910156 C 249.496094 199.527344 247.066406 199.527344 247.066406 197.910156 C 247.066406 196.289062 249.496094 196.289062 249.496094 197.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.4375 272.792969 C 264.4375 274.414062 262.007812 274.414062 262.007812 272.792969 C 262.007812 271.175781 264.4375 271.175781 264.4375 272.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 294.757812 277.105469 C 294.757812 278.726562 292.328125 278.726562 292.328125 277.105469 C 292.328125 275.488281 294.757812 275.488281 294.757812 277.105469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 244.304688 260.035156 C 244.304688 261.65625 241.871094 261.65625 241.871094 260.035156 C 241.871094 258.417969 244.304688 258.417969 244.304688 260.035156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.734375 263.851562 C 232.734375 265.472656 230.304688 265.472656 230.304688 263.851562 C 230.304688 262.230469 232.734375 262.230469 232.734375 263.851562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.171875 251.152344 C 261.171875 252.769531 258.742188 252.769531 258.742188 251.152344 C 258.742188 249.53125 261.171875 249.53125 261.171875 251.152344 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 288.863281 70.910156 L 290.5 73.746094 L 287.226562 73.746094 Z M 288.863281 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 220.894531 211.925781 C 220.894531 213.546875 218.464844 213.546875 218.464844 211.925781 C 218.464844 210.308594 220.894531 210.308594 220.894531 211.925781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.828125 152.875 C 272.828125 154.496094 270.398438 154.496094 270.398438 152.875 C 270.398438 151.253906 272.828125 151.253906 272.828125 152.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 301.105469 304.511719 C 301.105469 306.132812 298.671875 306.132812 298.671875 304.511719 C 298.671875 302.894531 301.105469 302.894531 301.105469 304.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.910156 318.875 C 267.910156 320.496094 265.480469 320.496094 265.480469 318.875 C 265.480469 317.253906 267.910156 317.253906 267.910156 318.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.359375 281.480469 C 219.359375 283.101562 216.929688 283.101562 216.929688 281.480469 C 216.929688 279.859375 219.359375 279.859375 219.359375 281.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.464844 172.144531 C 230.464844 173.761719 228.035156 173.761719 228.035156 172.144531 C 228.035156 170.523438 230.464844 170.523438 230.464844 172.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.691406 162.226562 C 281.691406 163.84375 279.261719 163.84375 279.261719 162.226562 C 279.261719 160.605469 281.691406 160.605469 281.691406 162.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 228.957031 235.421875 C 228.957031 237.042969 226.527344 237.042969 226.527344 235.421875 C 226.527344 233.800781 228.957031 233.800781 228.957031 235.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.300781 234.660156 C 289.300781 236.277344 286.871094 236.277344 286.871094 234.660156 C 286.871094 233.039062 289.300781 233.039062 289.300781 234.660156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.414062 317.1875 C 286.414062 318.804688 283.980469 318.804688 283.980469 317.1875 C 283.980469 315.566406 286.414062 315.566406 286.414062 317.1875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 170.328125 171.589844 C 170.328125 173.210938 167.898438 173.210938 167.898438 171.589844 C 167.898438 169.972656 170.328125 169.972656 170.328125 171.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.617188 252.261719 C 233.617188 253.882812 231.183594 253.882812 231.183594 252.261719 C 231.183594 250.644531 233.617188 250.644531 233.617188 252.261719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 202.601562 132.117188 C 202.601562 133.738281 200.171875 133.738281 200.171875 132.117188 C 200.171875 130.5 202.601562 130.5 202.601562 132.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 176.425781 146.152344 C 176.425781 147.769531 173.996094 147.769531 173.996094 146.152344 C 173.996094 144.53125 176.425781 144.53125 176.425781 146.152344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 194.613281 268.480469 C 194.613281 270.097656 192.183594 270.097656 192.183594 268.480469 C 192.183594 266.859375 194.613281 266.859375 194.613281 268.480469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 206.710938 70.910156 L 208.347656 73.746094 L 205.078125 73.746094 Z M 206.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 197.09375 122.09375 C 197.09375 123.714844 194.664062 123.714844 194.664062 122.09375 C 194.664062 120.472656 197.09375 120.472656 197.09375 122.09375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.855469 264.800781 C 278.855469 266.421875 276.425781 266.421875 276.425781 264.800781 C 276.425781 263.179688 278.855469 263.179688 278.855469 264.800781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 312.703125 94.871094 C 312.703125 96.488281 310.273438 96.488281 310.273438 94.871094 C 310.273438 93.25 312.703125 93.25 312.703125 94.871094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 183.4375 85.117188 C 183.4375 86.738281 181.007812 86.738281 181.007812 85.117188 C 181.007812 83.5 183.4375 83.5 183.4375 85.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 318.042969 238.589844 C 318.042969 240.210938 315.609375 240.210938 315.609375 238.589844 C 315.609375 236.96875 318.042969 236.96875 318.042969 238.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.160156 189.550781 C 223.160156 191.171875 220.730469 191.171875 220.730469 189.550781 C 220.730469 187.933594 223.160156 187.933594 223.160156 189.550781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 178.417969 340.707031 C 178.417969 342.324219 175.988281 342.324219 175.988281 340.707031 C 175.988281 339.085938 178.417969 339.085938 178.417969 340.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.167969 178.292969 C 230.167969 179.914062 227.738281 179.914062 227.738281 178.292969 C 227.738281 176.671875 230.167969 176.671875 230.167969 178.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 153.703125 70.910156 L 155.339844 73.746094 L 152.066406 73.746094 Z M 153.703125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 291.613281 301.519531 C 291.613281 303.140625 289.183594 303.140625 289.183594 301.519531 C 289.183594 299.898438 291.613281 299.898438 291.613281 301.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 305.46875 273.894531 C 305.46875 275.515625 303.039062 275.515625 303.039062 273.894531 C 303.039062 272.273438 305.46875 272.273438 305.46875 273.894531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.007812 277.335938 C 294.007812 278.957031 291.574219 278.957031 291.574219 277.335938 C 291.574219 275.714844 294.007812 275.714844 294.007812 277.335938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.273438 237.875 C 255.273438 239.492188 252.84375 239.492188 252.84375 237.875 C 252.84375 236.253906 255.273438 236.253906 255.273438 237.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 237.082031 136.664062 C 237.082031 138.285156 234.652344 138.285156 234.652344 136.664062 C 234.652344 135.042969 237.082031 135.042969 237.082031 136.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.980469 93.792969 C 263.980469 95.410156 261.550781 95.410156 261.550781 93.792969 C 261.550781 92.171875 263.980469 92.171875 263.980469 93.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 145.914062 321.4375 C 145.914062 323.054688 143.484375 323.054688 143.484375 321.4375 C 143.484375 319.816406 145.914062 319.816406 145.914062 321.4375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.335938 267.140625 C 151.335938 268.757812 148.90625 268.757812 148.90625 267.140625 C 148.90625 265.519531 151.335938 265.519531 151.335938 267.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.007812 70.910156 L 219.644531 73.746094 L 216.371094 73.746094 Z M 218.007812 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 121.515625 99.8125 C 121.515625 101.433594 119.085938 101.433594 119.085938 99.8125 C 119.085938 98.195312 121.515625 98.195312 121.515625 99.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.390625 291.496094 C 292.390625 293.113281 289.957031 293.113281 289.957031 291.496094 C 289.957031 289.875 292.390625 289.875 292.390625 291.496094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 110.707031 172.480469 C 110.707031 174.101562 108.273438 174.101562 108.273438 172.480469 C 108.273438 170.863281 110.707031 170.863281 110.707031 172.480469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.480469 208.992188 C 260.480469 210.613281 258.050781 210.613281 258.050781 208.992188 C 258.050781 207.371094 260.480469 207.371094 260.480469 208.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.78125 403.789062 C 98.78125 405.410156 96.351562 405.410156 96.351562 403.789062 C 96.351562 402.167969 98.78125 402.167969 98.78125 403.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 262.90625 298.515625 C 262.90625 300.136719 260.476562 300.136719 260.476562 298.515625 C 260.476562 296.898438 262.90625 296.898438 262.90625 298.515625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 234.589844 418.691406 L 236.222656 415.855469 L 232.953125 415.855469 Z M 234.589844 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 260.613281 184.429688 C 260.613281 186.050781 258.183594 186.050781 258.183594 184.429688 C 258.183594 182.808594 260.613281 182.808594 260.613281 184.429688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 259.4375 153.570312 C 259.4375 155.191406 257.007812 155.191406 257.007812 153.570312 C 257.007812 151.949219 259.4375 151.949219 259.4375 153.570312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.820312 418.691406 L 226.457031 415.855469 L 223.183594 415.855469 Z M 224.820312 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.996094 171.570312 C 310.996094 173.1875 308.5625 173.1875 308.5625 171.570312 C 308.5625 169.949219 310.996094 169.949219 310.996094 171.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 311.117188 286.898438 C 311.117188 288.515625 308.6875 288.515625 308.6875 286.898438 C 308.6875 285.277344 311.117188 285.277344 311.117188 286.898438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.699219 248.308594 C 265.699219 249.929688 263.269531 249.929688 263.269531 248.308594 C 263.269531 246.6875 265.699219 246.6875 265.699219 248.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.847656 296.867188 C 281.847656 298.488281 279.417969 298.488281 279.417969 296.867188 C 279.417969 295.25 281.847656 295.25 281.847656 296.867188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 257.8125 332.308594 C 257.8125 333.929688 255.382812 333.929688 255.382812 332.308594 C 255.382812 330.691406 257.8125 330.691406 257.8125 332.308594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 310.296875 154.207031 C 310.296875 155.824219 307.867188 155.824219 307.867188 154.207031 C 307.867188 152.585938 310.296875 152.585938 310.296875 154.207031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 293.214844 258.652344 C 293.214844 260.273438 290.785156 260.273438 290.785156 258.652344 C 290.785156 257.03125 293.214844 257.03125 293.214844 258.652344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 118.210938 128.179688 C 118.210938 129.796875 115.78125 129.796875 115.78125 128.179688 C 115.78125 126.558594 118.210938 126.558594 118.210938 128.179688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.992188 220.75 C 215.992188 222.367188 213.5625 222.367188 213.5625 220.75 C 213.5625 219.128906 215.992188 219.128906 215.992188 220.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.390625 225.765625 C 223.390625 227.386719 220.957031 227.386719 220.957031 225.765625 C 220.957031 224.148438 223.390625 224.148438 223.390625 225.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.796875 206.855469 C 269.796875 208.476562 267.367188 208.476562 267.367188 206.855469 C 267.367188 205.234375 269.796875 205.234375 269.796875 206.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 204.753906 180.785156 C 204.753906 182.40625 202.324219 182.40625 202.324219 180.785156 C 202.324219 179.164062 204.753906 179.164062 204.753906 180.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 279.097656 301.855469 C 279.097656 303.476562 276.664062 303.476562 276.664062 301.855469 C 276.664062 300.234375 279.097656 300.234375 279.097656 301.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 207.929688 312.589844 C 207.929688 314.210938 205.5 314.210938 205.5 312.589844 C 205.5 310.972656 207.929688 310.972656 207.929688 312.589844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 226.785156 275.726562 C 226.785156 277.34375 224.355469 277.34375 224.355469 275.726562 C 224.355469 274.105469 226.785156 274.105469 226.785156 275.726562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.128906 268.339844 C 250.128906 269.960938 247.699219 269.960938 247.699219 268.339844 C 247.699219 266.71875 250.128906 266.71875 250.128906 268.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 249.746094 145.714844 C 249.746094 147.332031 247.316406 147.332031 247.316406 145.714844 C 247.316406 144.09375 249.746094 144.09375 249.746094 145.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 109.996094 328.855469 C 109.996094 330.472656 107.566406 330.472656 107.566406 328.855469 C 107.566406 327.234375 109.996094 327.234375 109.996094 328.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.535156 192.191406 C 235.535156 193.808594 233.101562 193.808594 233.101562 192.191406 C 233.101562 190.570312 235.535156 190.570312 235.535156 192.191406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 230.257812 94.921875 C 230.257812 96.542969 227.828125 96.542969 227.828125 94.921875 C 227.828125 93.300781 230.257812 93.300781 230.257812 94.921875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 233.640625 86.539062 C 233.640625 88.160156 231.210938 88.160156 231.210938 86.539062 C 231.210938 84.921875 233.640625 84.921875 233.640625 86.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.960938 322.453125 C 308.960938 324.070312 306.53125 324.070312 306.53125 322.453125 C 306.53125 320.832031 308.960938 320.832031 308.960938 322.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.058594 216.125 C 249.058594 217.746094 246.628906 217.746094 246.628906 216.125 C 246.628906 214.507812 249.058594 214.507812 249.058594 216.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 147.984375 164.347656 C 147.984375 165.964844 145.554688 165.964844 145.554688 164.347656 C 145.554688 162.726562 147.984375 162.726562 147.984375 164.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.929688 201.992188 C 229.929688 203.613281 227.5 203.613281 227.5 201.992188 C 227.5 200.371094 229.929688 200.371094 229.929688 201.992188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 98.507812 250.328125 C 98.507812 251.949219 96.078125 251.949219 96.078125 250.328125 C 96.078125 248.710938 98.507812 248.710938 98.507812 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 296.835938 241.117188 C 296.835938 242.738281 294.40625 242.738281 294.40625 241.117188 C 294.40625 239.5 296.835938 239.5 296.835938 241.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.28125 282.730469 C 256.28125 284.347656 253.847656 284.347656 253.847656 282.730469 C 253.847656 281.109375 256.28125 281.109375 256.28125 282.730469 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 241.03125 70.910156 L 242.664062 73.746094 L 239.394531 73.746094 Z M 241.03125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.414062 253.8125 C 255.414062 255.433594 252.984375 255.433594 252.984375 253.8125 C 252.984375 252.195312 255.414062 252.195312 255.414062 253.8125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 131.082031 70.910156 L 132.71875 73.746094 L 129.445312 73.746094 Z M 131.082031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 304.96875 281.453125 C 304.96875 283.070312 302.539062 283.070312 302.539062 281.453125 C 302.539062 279.832031 304.96875 279.832031 304.96875 281.453125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 337.847656 418.691406 L 339.484375 415.855469 L 336.210938 415.855469 Z M 337.847656 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 111.496094 165.207031 C 111.496094 166.828125 109.066406 166.828125 109.066406 165.207031 C 109.066406 163.589844 111.496094 163.589844 111.496094 165.207031 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.976562 70.910156 L 117.613281 73.746094 L 114.339844 73.746094 Z M 115.976562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.535156 418.691406 L 137.171875 415.855469 L 133.898438 415.855469 Z M 135.535156 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.769531 118.121094 C 285.769531 119.742188 283.339844 119.742188 283.339844 118.121094 C 283.339844 116.5 285.769531 116.5 285.769531 118.121094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.152344 107.617188 C 229.152344 109.234375 226.722656 109.234375 226.722656 107.617188 C 226.722656 105.996094 229.152344 105.996094 229.152344 107.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 189.730469 377.6875 C 189.730469 379.304688 187.300781 379.304688 187.300781 377.6875 C 187.300781 376.066406 189.730469 376.066406 189.730469 377.6875 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.46875 70.910156 L 261.105469 73.746094 L 257.832031 73.746094 Z M 259.46875 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 305.441406 196.183594 C 305.441406 197.804688 303.011719 197.804688 303.011719 196.183594 C 303.011719 194.566406 305.441406 194.566406 305.441406 196.183594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.667969 205.242188 C 260.667969 206.859375 258.238281 206.859375 258.238281 205.242188 C 258.238281 203.621094 260.667969 203.621094 260.667969 205.242188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 249.285156 218.21875 C 249.285156 219.839844 246.855469 219.839844 246.855469 218.21875 C 246.855469 216.601562 249.285156 216.601562 249.285156 218.21875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.117188 146.167969 C 152.117188 147.789062 149.6875 147.789062 149.6875 146.167969 C 149.6875 144.550781 152.117188 144.550781 152.117188 146.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 257.511719 243.285156 C 257.511719 244.90625 255.082031 244.90625 255.082031 243.285156 C 255.082031 241.667969 257.511719 241.667969 257.511719 243.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 262.015625 253.738281 C 262.015625 255.359375 259.585938 255.359375 259.585938 253.738281 C 259.585938 252.117188 262.015625 252.117188 262.015625 253.738281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 216.164062 97.296875 C 216.164062 98.917969 213.734375 98.917969 213.734375 97.296875 C 213.734375 95.675781 216.164062 95.675781 216.164062 97.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 268.488281 192.777344 C 268.488281 194.398438 266.058594 194.398438 266.058594 192.777344 C 266.058594 191.15625 268.488281 191.15625 268.488281 192.777344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.226562 239.820312 C 273.226562 241.4375 270.796875 241.4375 270.796875 239.820312 C 270.796875 238.199219 273.226562 238.199219 273.226562 239.820312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 120.429688 262.339844 C 120.429688 263.960938 118 263.960938 118 262.339844 C 118 260.71875 120.429688 260.71875 120.429688 262.339844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.988281 418.691406 L 119.625 415.855469 L 116.351562 415.855469 Z M 117.988281 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 182.835938 418.691406 L 184.46875 415.855469 L 181.199219 415.855469 Z M 182.835938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.042969 418.691406 L 267.679688 415.855469 L 264.40625 415.855469 Z M 266.042969 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 264.464844 245.285156 C 264.464844 246.902344 262.035156 246.902344 262.035156 245.285156 C 262.035156 243.664062 264.464844 243.664062 264.464844 245.285156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 250.136719 270.089844 C 250.136719 271.710938 247.707031 271.710938 247.707031 270.089844 C 247.707031 268.472656 250.136719 268.472656 250.136719 270.089844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.324219 270.78125 C 199.324219 272.402344 196.894531 272.402344 196.894531 270.78125 C 196.894531 269.164062 199.324219 269.164062 199.324219 270.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 100.949219 411.949219 C 100.949219 413.570312 98.519531 413.570312 98.519531 411.949219 C 98.519531 410.332031 100.949219 410.332031 100.949219 411.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 259.285156 244.066406 C 259.285156 245.6875 256.855469 245.6875 256.855469 244.066406 C 256.855469 242.449219 259.285156 242.449219 259.285156 244.066406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 351.160156 395.628906 C 351.160156 397.246094 348.730469 397.246094 348.730469 395.628906 C 348.730469 394.007812 351.160156 394.007812 351.160156 395.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.96875 268.296875 C 265.96875 269.917969 263.539062 269.917969 263.539062 268.296875 C 263.539062 266.675781 265.96875 266.675781 265.96875 268.296875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 168.574219 320.175781 C 168.574219 321.796875 166.144531 321.796875 166.144531 320.175781 C 166.144531 318.558594 168.574219 318.558594 168.574219 320.175781 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 233.246094 297.335938 C 233.246094 298.957031 230.816406 298.957031 230.816406 297.335938 C 230.816406 295.71875 233.246094 295.71875 233.246094 297.335938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.917969 70.910156 L 180.550781 73.746094 L 177.28125 73.746094 Z M 178.917969 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 102.773438 70.910156 L 104.410156 73.746094 L 101.136719 73.746094 Z M 102.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.910156 240.171875 C 229.910156 241.792969 227.480469 241.792969 227.480469 240.171875 C 227.480469 238.554688 229.910156 238.554688 229.910156 240.171875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.082031 233.046875 C 271.082031 234.664062 268.652344 234.664062 268.652344 233.046875 C 268.652344 231.425781 271.082031 231.425781 271.082031 233.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 337.46875 269.027344 C 337.46875 270.648438 335.039062 270.648438 335.039062 269.027344 C 335.039062 267.40625 337.46875 267.40625 337.46875 269.027344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 199.21875 336.679688 C 199.21875 338.300781 196.789062 338.300781 196.789062 336.679688 C 196.789062 335.058594 199.21875 335.058594 199.21875 336.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 232.839844 311.160156 C 232.839844 312.78125 230.410156 312.78125 230.410156 311.160156 C 230.410156 309.542969 232.839844 309.542969 232.839844 311.160156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.414062 70.910156 L 212.050781 73.746094 L 208.777344 73.746094 Z M 210.414062 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 283.886719 219.308594 C 283.886719 220.929688 281.457031 220.929688 281.457031 219.308594 C 281.457031 217.6875 283.886719 217.6875 283.886719 219.308594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 260.570312 70.910156 L 262.207031 73.746094 L 258.933594 73.746094 Z M 260.570312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.203125 250.328125 C 96.203125 251.949219 93.773438 251.949219 93.773438 250.328125 C 93.773438 248.710938 96.203125 248.710938 96.203125 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 319.894531 218.503906 C 319.894531 220.121094 317.464844 220.121094 317.464844 218.503906 C 317.464844 216.882812 319.894531 216.882812 319.894531 218.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 315.300781 227.222656 C 315.300781 228.84375 312.871094 228.84375 312.871094 227.222656 C 312.871094 225.601562 315.300781 225.601562 315.300781 227.222656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 149.289062 97.691406 C 149.289062 99.308594 146.859375 99.308594 146.859375 97.691406 C 146.859375 96.070312 149.289062 96.070312 149.289062 97.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 306.582031 340.332031 C 306.582031 341.949219 304.152344 341.949219 304.152344 340.332031 C 304.152344 338.710938 306.582031 338.710938 306.582031 340.332031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.875 219.601562 C 260.875 221.222656 258.441406 221.222656 258.441406 219.601562 C 258.441406 217.984375 260.875 217.984375 260.875 219.601562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.839844 285.621094 C 261.839844 287.238281 259.410156 287.238281 259.410156 285.621094 C 259.410156 284 261.839844 284 261.839844 285.621094 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 207.144531 418.691406 L 208.78125 415.855469 L 205.507812 415.855469 Z M 207.144531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 212.273438 200.863281 C 212.273438 202.484375 209.84375 202.484375 209.84375 200.863281 C 209.84375 199.246094 212.273438 199.246094 212.273438 200.863281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 254.011719 213.054688 C 254.011719 214.671875 251.582031 214.671875 251.582031 213.054688 C 251.582031 211.433594 254.011719 211.433594 254.011719 213.054688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.320312 224.421875 C 258.320312 226.039062 255.890625 226.039062 255.890625 224.421875 C 255.890625 222.800781 258.320312 222.800781 258.320312 224.421875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 136.421875 256.214844 C 136.421875 257.835938 133.992188 257.835938 133.992188 256.214844 C 133.992188 254.597656 136.421875 254.597656 136.421875 256.214844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.316406 418.691406 L 245.953125 415.855469 L 242.679688 415.855469 Z M 244.316406 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.808594 415.339844 C 101.808594 416.960938 99.378906 416.960938 99.378906 415.339844 C 99.378906 413.71875 101.808594 413.71875 101.808594 415.339844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.316406 140.257812 C 261.316406 141.875 258.886719 141.875 258.886719 140.257812 C 258.886719 138.636719 261.316406 138.636719 261.316406 140.257812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 227.632812 135.046875 C 227.632812 136.667969 225.203125 136.667969 225.203125 135.046875 C 225.203125 133.425781 227.632812 133.425781 227.632812 135.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 159.492188 186.902344 C 159.492188 188.523438 157.0625 188.523438 157.0625 186.902344 C 157.0625 185.28125 159.492188 185.28125 159.492188 186.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 285.289062 278.714844 C 285.289062 280.332031 282.859375 280.332031 282.859375 278.714844 C 282.859375 277.09375 285.289062 277.09375 285.289062 278.714844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.679688 70.910156 L 187.316406 73.746094 L 184.042969 73.746094 Z M 185.679688 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 131.007812 369.144531 C 131.007812 370.765625 128.578125 370.765625 128.578125 369.144531 C 128.578125 367.527344 131.007812 367.527344 131.007812 369.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.558594 275.144531 C 308.558594 276.761719 306.128906 276.761719 306.128906 275.144531 C 306.128906 273.523438 308.558594 273.523438 308.558594 275.144531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 155.234375 80.007812 C 155.234375 81.628906 152.804688 81.628906 152.804688 80.007812 C 152.804688 78.390625 155.234375 78.390625 155.234375 80.007812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 200.582031 217.375 C 200.582031 218.996094 198.152344 218.996094 198.152344 217.375 C 198.152344 215.753906 200.582031 215.753906 200.582031 217.375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.84375 257.363281 C 195.84375 258.984375 193.414062 258.984375 193.414062 257.363281 C 193.414062 255.742188 195.84375 255.742188 195.84375 257.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 152.933594 281.875 C 152.933594 283.496094 150.503906 283.496094 150.503906 281.875 C 150.503906 280.257812 152.933594 280.257812 152.933594 281.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 324.597656 220.949219 C 324.597656 222.570312 322.167969 222.570312 322.167969 220.949219 C 322.167969 219.328125 324.597656 219.328125 324.597656 220.949219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 323.488281 239.089844 C 323.488281 240.707031 321.058594 240.707031 321.058594 239.089844 C 321.058594 237.46875 323.488281 237.46875 323.488281 239.089844 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.558594 70.910156 L 338.195312 73.746094 L 334.921875 73.746094 Z M 336.558594 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 261.339844 297.792969 C 261.339844 299.414062 258.910156 299.414062 258.910156 297.792969 C 258.910156 296.171875 261.339844 296.171875 261.339844 297.792969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 260.285156 263.558594 C 260.285156 265.175781 257.855469 265.175781 257.855469 263.558594 C 257.855469 261.9375 260.285156 261.9375 260.285156 263.558594 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.066406 216.253906 C 210.066406 217.875 207.636719 217.875 207.636719 216.253906 C 207.636719 214.632812 210.066406 214.632812 210.066406 216.253906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 281.242188 311.132812 C 281.242188 312.75 278.8125 312.75 278.8125 311.132812 C 278.8125 309.511719 281.242188 309.511719 281.242188 311.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 270.757812 297.71875 C 270.757812 299.339844 268.328125 299.339844 268.328125 297.71875 C 268.328125 296.101562 270.757812 296.101562 270.757812 297.71875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 267.722656 287.394531 C 267.722656 289.015625 265.292969 289.015625 265.292969 287.394531 C 265.292969 285.773438 267.722656 285.773438 267.722656 287.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 255.730469 142.320312 C 255.730469 143.941406 253.300781 143.941406 253.300781 142.320312 C 253.300781 140.699219 255.730469 140.699219 255.730469 142.320312 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 239.050781 70.910156 L 240.6875 73.746094 L 237.414062 73.746094 Z M 239.050781 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265.199219 290.238281 C 265.199219 291.859375 262.769531 291.859375 262.769531 290.238281 C 262.769531 288.617188 265.199219 288.617188 265.199219 290.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.816406 266.632812 C 288.816406 268.25 286.386719 268.25 286.386719 266.632812 C 286.386719 265.011719 288.816406 265.011719 288.816406 266.632812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 289.484375 302.167969 C 289.484375 303.789062 287.054688 303.789062 287.054688 302.167969 C 287.054688 300.546875 289.484375 300.546875 289.484375 302.167969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 286.085938 277.449219 C 286.085938 279.070312 283.65625 279.070312 283.65625 277.449219 C 283.65625 275.828125 286.085938 275.828125 286.085938 277.449219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 185.984375 167.5 C 185.984375 169.121094 183.550781 169.121094 183.550781 167.5 C 183.550781 165.878906 185.984375 165.878906 185.984375 167.5 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.511719 204.746094 C 229.511719 206.367188 227.082031 206.367188 227.082031 204.746094 C 227.082031 203.128906 229.511719 203.128906 229.511719 204.746094 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.601562 143.53125 C 162.601562 145.152344 160.171875 145.152344 160.171875 143.53125 C 160.171875 141.910156 162.601562 141.910156 162.601562 143.53125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 257.832031 70.910156 L 259.46875 73.746094 L 256.195312 73.746094 Z M 257.832031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.0625 263.519531 C 299.0625 265.140625 296.632812 265.140625 296.632812 263.519531 C 296.632812 261.898438 299.0625 261.898438 299.0625 263.519531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 85.121094 167.617188 C 85.121094 169.238281 82.691406 169.238281 82.691406 167.617188 C 82.691406 165.996094 85.121094 165.996094 85.121094 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.414062 70.910156 L 158.050781 73.746094 L 154.777344 73.746094 Z M 156.414062 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 290.710938 70.910156 L 292.347656 73.746094 L 289.074219 73.746094 Z M 290.710938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 261.257812 172.929688 C 261.257812 174.550781 258.828125 174.550781 258.828125 172.929688 C 258.828125 171.3125 261.257812 171.3125 261.257812 172.929688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 354.792969 157.664062 C 354.792969 159.285156 352.363281 159.285156 352.363281 157.664062 C 352.363281 156.042969 354.792969 156.042969 354.792969 157.664062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 229.46875 108.875 C 229.46875 110.496094 227.039062 110.496094 227.039062 108.875 C 227.039062 107.257812 229.46875 107.257812 229.46875 108.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.769531 146.144531 C 143.769531 147.765625 141.339844 147.765625 141.339844 146.144531 C 141.339844 144.523438 143.769531 144.523438 143.769531 146.144531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.285156 70.910156 L 167.921875 73.746094 L 164.648438 73.746094 Z M 166.285156 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 195.007812 186.769531 C 195.007812 188.386719 192.578125 188.386719 192.578125 186.769531 C 192.578125 185.148438 195.007812 185.148438 195.007812 186.769531 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 147.476562 70.910156 L 149.113281 73.746094 L 145.839844 73.746094 Z M 147.476562 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 176.773438 70.910156 L 178.410156 73.746094 L 175.136719 73.746094 Z M 176.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 238.605469 219.773438 C 238.605469 221.394531 236.171875 221.394531 236.171875 219.773438 C 236.171875 218.15625 238.605469 218.15625 238.605469 219.773438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.195312 263.824219 C 258.195312 265.441406 255.765625 265.441406 255.765625 263.824219 C 255.765625 262.203125 258.195312 262.203125 258.195312 263.824219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.078125 283.324219 C 235.078125 284.945312 232.648438 284.945312 232.648438 283.324219 C 232.648438 281.707031 235.078125 281.707031 235.078125 283.324219 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 282.652344 250.453125 C 282.652344 252.074219 280.222656 252.074219 280.222656 250.453125 C 280.222656 248.832031 282.652344 248.832031 282.652344 250.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.566406 312.875 C 314.566406 314.496094 312.136719 314.496094 312.136719 312.875 C 312.136719 311.257812 314.566406 311.257812 314.566406 312.875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 241.078125 303.097656 C 241.078125 304.71875 238.648438 304.71875 238.648438 303.097656 C 238.648438 301.476562 241.078125 301.476562 241.078125 303.097656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.183594 193.703125 C 292.183594 195.324219 289.753906 195.324219 289.753906 193.703125 C 289.753906 192.082031 292.183594 192.082031 292.183594 193.703125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 265.320312 275.046875 C 265.320312 276.664062 262.886719 276.664062 262.886719 275.046875 C 262.886719 273.425781 265.320312 273.425781 265.320312 275.046875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 264.984375 298.667969 C 264.984375 300.289062 262.554688 300.289062 262.554688 298.667969 C 262.554688 297.050781 264.984375 297.050781 264.984375 298.667969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 101.933594 250.328125 C 101.933594 251.949219 99.503906 251.949219 99.503906 250.328125 C 99.503906 248.710938 101.933594 248.710938 101.933594 250.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.976562 262.117188 C 224.976562 263.738281 222.546875 263.738281 222.546875 262.117188 C 222.546875 260.5 224.976562 260.5 224.976562 262.117188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.40625 252.644531 C 205.40625 254.265625 202.976562 254.265625 202.976562 252.644531 C 202.976562 251.027344 205.40625 251.027344 205.40625 252.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 224.679688 266.101562 C 224.679688 267.722656 222.25 267.722656 222.25 266.101562 C 222.25 264.484375 224.679688 264.484375 224.679688 266.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 292.210938 202.078125 C 292.210938 203.695312 289.78125 203.695312 289.78125 202.078125 C 289.78125 200.457031 292.210938 200.457031 292.210938 202.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 274.625 261.753906 C 274.625 263.375 272.195312 263.375 272.195312 261.753906 C 272.195312 260.132812 274.625 260.132812 274.625 261.753906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.960938 70.910156 L 107.597656 73.746094 L 104.324219 73.746094 Z M 105.960938 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 268.53125 70.910156 L 270.167969 73.746094 L 266.894531 73.746094 Z M 268.53125 70.910156 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 259.460938 70.910156 L 261.097656 73.746094 L 257.824219 73.746094 Z M 259.460938 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 313.28125 284.671875 C 313.28125 286.292969 310.851562 286.292969 310.851562 284.671875 C 310.851562 283.050781 313.28125 283.050781 313.28125 284.671875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 252.609375 274.625 C 252.609375 276.246094 250.175781 276.246094 250.175781 274.625 C 250.175781 273.003906 252.609375 273.003906 252.609375 274.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.125 257.769531 C 281.125 259.386719 278.695312 259.386719 278.695312 257.769531 C 278.695312 256.148438 281.125 256.148438 281.125 257.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 258.984375 279.90625 C 258.984375 281.527344 256.554688 281.527344 256.554688 279.90625 C 256.554688 278.285156 258.984375 278.285156 258.984375 279.90625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 269.707031 270.75 C 269.707031 272.371094 267.277344 272.371094 267.277344 270.75 C 267.277344 269.132812 269.707031 269.132812 269.707031 270.75 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 256.277344 210.359375 C 256.277344 211.980469 253.84375 211.980469 253.84375 210.359375 C 253.84375 208.738281 256.277344 208.738281 256.277344 210.359375 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.476562 297.320312 C 272.476562 298.9375 270.046875 298.9375 270.046875 297.320312 C 270.046875 295.699219 272.476562 295.699219 272.476562 297.320312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 283.523438 299.828125 C 283.523438 301.445312 281.09375 301.445312 281.09375 299.828125 C 281.09375 298.207031 283.523438 298.207031 283.523438 299.828125 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 163.773438 70.910156 L 165.410156 73.746094 L 162.136719 73.746094 Z M 163.773438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 275.878906 240.554688 C 275.878906 242.175781 273.449219 242.175781 273.449219 240.554688 C 273.449219 238.933594 275.878906 238.933594 275.878906 240.554688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.121094 267.753906 C 210.121094 269.375 207.691406 269.375 207.691406 267.753906 C 207.691406 266.132812 210.121094 266.132812 210.121094 267.753906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 288.066406 261.210938 C 288.066406 262.828125 285.636719 262.828125 285.636719 261.210938 C 285.636719 259.589844 288.066406 259.589844 288.066406 261.210938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 287.75 164.789062 C 287.75 166.40625 285.316406 166.40625 285.316406 164.789062 C 285.316406 163.167969 287.75 163.167969 287.75 164.789062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 275.296875 306.832031 C 275.296875 308.453125 272.867188 308.453125 272.867188 306.832031 C 272.867188 305.210938 275.296875 305.210938 275.296875 306.832031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.078125 273.347656 C 266.078125 274.96875 263.648438 274.96875 263.648438 273.347656 C 263.648438 271.730469 266.078125 271.730469 266.078125 273.347656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 281.066406 203.101562 C 281.066406 204.722656 278.632812 204.722656 278.632812 203.101562 C 278.632812 201.484375 281.066406 201.484375 281.066406 203.101562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 289.863281 255.796875 C 289.863281 257.417969 287.433594 257.417969 287.433594 255.796875 C 287.433594 254.179688 289.863281 254.179688 289.863281 255.796875 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 266.5 213.8125 C 266.5 215.433594 264.070312 215.433594 264.070312 213.8125 C 264.070312 212.191406 266.5 212.191406 266.5 213.8125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 284.34375 256.714844 C 284.34375 258.335938 281.914062 258.335938 281.914062 256.714844 C 281.914062 255.097656 284.34375 255.097656 284.34375 256.714844 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 162.5625 107.277344 C 162.5625 108.894531 160.128906 108.894531 160.128906 107.277344 C 160.128906 105.65625 162.5625 105.65625 162.5625 107.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.03125 296.363281 C 143.03125 297.984375 140.601562 297.984375 140.601562 296.363281 C 140.601562 294.742188 143.03125 294.742188 143.03125 296.363281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 278.820312 239.78125 C 278.820312 241.402344 276.390625 241.402344 276.390625 239.78125 C 276.390625 238.160156 278.820312 238.160156 278.820312 239.78125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 324.128906 336.625 C 324.128906 338.246094 321.699219 338.246094 321.699219 336.625 C 321.699219 335.007812 324.128906 335.007812 324.128906 336.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.234375 229.226562 C 222.234375 230.847656 219.804688 230.847656 219.804688 229.226562 C 219.804688 227.605469 222.234375 227.605469 222.234375 229.226562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 293.804688 286.535156 C 293.804688 288.15625 291.375 288.15625 291.375 286.535156 C 291.375 284.914062 293.804688 284.914062 293.804688 286.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 219.492188 258.535156 C 219.492188 260.15625 217.0625 260.15625 217.0625 258.535156 C 217.0625 256.914062 219.492188 256.914062 219.492188 258.535156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 210.664062 203.644531 C 210.664062 205.265625 208.234375 205.265625 208.234375 203.644531 C 208.234375 202.027344 210.664062 202.027344 210.664062 203.644531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 157.410156 268.976562 C 157.410156 270.597656 154.980469 270.597656 154.980469 268.976562 C 154.980469 267.355469 157.410156 267.355469 157.410156 268.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 297.488281 286.960938 C 297.488281 288.578125 295.058594 288.578125 295.058594 286.960938 C 295.058594 285.339844 297.488281 285.339844 297.488281 286.960938 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.023438 70.910156 L 129.660156 73.746094 L 126.386719 73.746094 Z M 128.023438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 215.945312 303.679688 C 215.945312 305.300781 213.515625 305.300781 213.515625 303.679688 C 213.515625 302.058594 215.945312 302.058594 215.945312 303.679688 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 299.269531 222.707031 C 299.269531 224.328125 296.839844 224.328125 296.839844 222.707031 C 296.839844 221.089844 299.269531 221.089844 299.269531 222.707031 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 263.15625 179.613281 C 263.15625 181.234375 260.726562 181.234375 260.726562 179.613281 C 260.726562 177.992188 263.15625 177.992188 263.15625 179.613281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 229.695312 255.730469 C 229.695312 257.347656 227.265625 257.347656 227.265625 255.730469 C 227.265625 254.109375 229.695312 254.109375 229.695312 255.730469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 253.609375 256.972656 C 253.609375 258.59375 251.179688 258.59375 251.179688 256.972656 C 251.179688 255.351562 253.609375 255.351562 253.609375 256.972656 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 308.527344 327.917969 C 308.527344 329.539062 306.097656 329.539062 306.097656 327.917969 C 306.097656 326.300781 308.527344 326.300781 308.527344 327.917969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.578125 323.574219 C 240.578125 325.195312 238.148438 325.195312 238.148438 323.574219 C 238.148438 321.953125 240.578125 321.953125 240.578125 323.574219 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.636719 70.910156 L 215.273438 73.746094 L 212.003906 73.746094 Z M 213.636719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.34375 195.511719 C 218.34375 197.132812 215.914062 197.132812 215.914062 195.511719 C 215.914062 193.894531 218.34375 193.894531 218.34375 195.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 174.898438 391.140625 C 174.898438 392.761719 172.46875 392.761719 172.46875 391.140625 C 172.46875 389.519531 174.898438 389.519531 174.898438 391.140625 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.335938 418.691406 L 142.972656 415.855469 L 139.699219 415.855469 Z M 141.335938 418.691406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.394531 70.910156 L 137.027344 73.746094 L 133.757812 73.746094 Z M 135.394531 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 206.980469 302.277344 C 206.980469 303.898438 204.550781 303.898438 204.550781 302.277344 C 204.550781 300.660156 206.980469 300.660156 206.980469 302.277344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 271.546875 243.132812 C 271.546875 244.75 269.117188 244.75 269.117188 243.132812 C 269.117188 241.511719 271.546875 241.511719 271.546875 243.132812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 302.246094 175.414062 C 302.246094 177.035156 299.816406 177.035156 299.816406 175.414062 C 299.816406 173.792969 302.246094 173.792969 302.246094 175.414062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 230.261719 279.628906 C 230.261719 281.25 227.832031 281.25 227.832031 279.628906 C 227.832031 278.007812 230.261719 278.007812 230.261719 279.628906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.648438 89.253906 C 99.648438 90.875 97.21875 90.875 97.21875 89.253906 C 97.21875 87.632812 99.648438 87.632812 99.648438 89.253906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 180.320312 70.910156 L 181.957031 73.746094 L 178.683594 73.746094 Z M 180.320312 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.917969 70.910156 L 176.554688 73.746094 L 173.28125 73.746094 Z M 174.917969 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 317.570312 153.085938 C 317.570312 154.703125 315.140625 154.703125 315.140625 153.085938 C 315.140625 151.464844 317.570312 151.464844 317.570312 153.085938 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 270.976562 267.453125 C 270.976562 269.070312 268.546875 269.070312 268.546875 267.453125 C 268.546875 265.832031 270.976562 265.832031 270.976562 267.453125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 301.921875 254.125 C 301.921875 255.746094 299.492188 255.746094 299.492188 254.125 C 299.492188 252.503906 301.921875 252.503906 301.921875 254.125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 314.710938 297.328125 C 314.710938 298.949219 312.28125 298.949219 312.28125 297.328125 C 312.28125 295.710938 314.710938 295.710938 314.710938 297.328125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 218.34375 195.511719 C 218.34375 197.132812 215.914062 197.132812 215.914062 195.511719 C 215.914062 193.894531 218.34375 193.894531 218.34375 195.511719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.011719 70.910156 L 282.648438 73.746094 L 279.375 73.746094 Z M 281.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 272.996094 96.503906 C 272.996094 98.121094 270.566406 98.121094 270.566406 96.503906 C 270.566406 94.882812 272.996094 94.882812 272.996094 96.503906 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.011719 70.910156 L 282.648438 73.746094 L 279.375 73.746094 Z M 281.011719 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 143.015625 80.511719 C 143.015625 82.132812 140.585938 82.132812 140.585938 80.511719 C 140.585938 78.894531 143.015625 78.894531 143.015625 80.511719 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 240.5625 107.503906 C 240.5625 109.121094 238.132812 109.121094 238.132812 107.503906 C 238.132812 105.882812 240.5625 105.882812 240.5625 107.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 247.90625 147.808594 C 247.90625 149.429688 245.476562 149.429688 245.476562 147.808594 C 245.476562 146.191406 247.90625 146.191406 247.90625 147.808594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.582031 70.910156 L 116.21875 73.746094 L 112.945312 73.746094 Z M 114.582031 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 156.695312 243.019531 C 156.695312 244.640625 154.265625 244.640625 154.265625 243.019531 C 154.265625 241.402344 156.695312 241.402344 156.695312 243.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 205.898438 204.816406 C 205.898438 206.4375 203.46875 206.4375 203.46875 204.816406 C 203.46875 203.199219 205.898438 203.199219 205.898438 204.816406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 246.945312 90.976562 C 246.945312 92.59375 244.515625 92.59375 244.515625 90.976562 C 244.515625 89.355469 246.945312 89.355469 246.945312 90.976562 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.757812 325.625 C 258.757812 327.246094 256.328125 327.246094 256.328125 325.625 C 256.328125 324.003906 258.757812 324.003906 258.757812 325.625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 190.394531 282.238281 C 190.394531 283.859375 187.964844 283.859375 187.964844 282.238281 C 187.964844 280.617188 190.394531 280.617188 190.394531 282.238281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 255.492188 243 C 255.492188 244.617188 253.0625 244.617188 253.0625 243 C 253.0625 241.378906 255.492188 241.378906 255.492188 243 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 205.679688 353.539062 C 205.679688 355.160156 203.25 355.160156 203.25 353.539062 C 203.25 351.921875 205.679688 351.921875 205.679688 353.539062 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 151.941406 333.882812 C 151.941406 335.503906 149.511719 335.503906 149.511719 333.882812 C 149.511719 332.261719 151.941406 332.261719 151.941406 333.882812 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 97.820312 399.855469 C 97.820312 401.472656 95.390625 401.472656 95.390625 399.855469 C 95.390625 398.234375 97.820312 398.234375 97.820312 399.855469 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 239.25 276.492188 C 239.25 278.113281 236.820312 278.113281 236.820312 276.492188 C 236.820312 274.875 239.25 274.875 239.25 276.492188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 243.109375 221.078125 C 243.109375 222.699219 240.679688 222.699219 240.679688 221.078125 C 240.679688 219.457031 243.109375 219.457031 243.109375 221.078125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 247.992188 266.023438 C 247.992188 267.644531 245.5625 267.644531 245.5625 266.023438 C 245.5625 264.40625 247.992188 264.40625 247.992188 266.023438 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 258.621094 343.988281 C 258.621094 345.609375 256.1875 345.609375 256.1875 343.988281 C 256.1875 342.367188 258.621094 342.367188 258.621094 343.988281 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 269.972656 300.953125 C 269.972656 302.570312 267.542969 302.570312 267.542969 300.953125 C 267.542969 299.332031 269.972656 299.332031 269.972656 300.953125 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 232.898438 225.015625 C 232.898438 226.636719 230.46875 226.636719 230.46875 225.015625 C 230.46875 223.398438 232.898438 223.398438 232.898438 225.015625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 244.332031 172.945312 C 244.332031 174.566406 241.902344 174.566406 241.902344 172.945312 C 241.902344 171.324219 244.332031 171.324219 244.332031 172.945312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 187.613281 237.816406 C 187.613281 239.4375 185.183594 239.4375 185.183594 237.816406 C 185.183594 236.199219 187.613281 236.199219 187.613281 237.816406 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.3125 70.910156 L 110.949219 73.746094 L 107.675781 73.746094 Z M 109.3125 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.84375 333.042969 C 80.84375 334.664062 78.414062 334.664062 78.414062 333.042969 C 78.414062 331.421875 80.84375 331.421875 80.84375 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 96.929688 99.394531 C 96.929688 101.015625 94.5 101.015625 94.5 99.394531 C 94.5 97.777344 96.929688 97.777344 96.929688 99.394531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(60%,60%,60%);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.480469 70.910156 L 145.117188 73.746094 L 141.84375 73.746094 Z M 143.480469 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 126.167969 78.503906 C 126.167969 80.125 123.738281 80.125 123.738281 78.503906 C 123.738281 76.882812 126.167969 76.882812 126.167969 78.503906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 231.949219 299.378906 C 231.949219 300.996094 229.519531 300.996094 229.519531 299.378906 C 229.519531 297.757812 231.949219 297.757812 231.949219 299.378906 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 128.671875 273 C 128.671875 274.621094 126.242188 274.621094 126.242188 273 C 126.242188 271.378906 128.671875 271.378906 128.671875 273 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 84.890625 333.042969 C 84.890625 334.664062 82.460938 334.664062 82.460938 333.042969 C 82.460938 331.421875 84.890625 331.421875 84.890625 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 75.613281 167.617188 C 75.613281 169.238281 73.183594 169.238281 73.183594 167.617188 C 73.183594 165.996094 75.613281 165.996094 75.613281 167.617188 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 294.847656 264.570312 C 294.847656 266.191406 292.417969 266.191406 292.417969 264.570312 C 292.417969 262.949219 294.847656 262.949219 294.847656 264.570312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 223.519531 237.417969 C 223.519531 239.035156 221.085938 239.035156 221.085938 237.417969 C 221.085938 235.796875 223.519531 235.796875 223.519531 237.417969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 306.019531 418.691406 L 307.65625 415.855469 L 304.386719 415.855469 Z M 306.019531 418.691406 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 235.277344 171.902344 C 235.277344 173.523438 232.847656 173.523438 232.847656 171.902344 C 232.847656 170.28125 235.277344 170.28125 235.277344 171.902344 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 222.914062 215.785156 C 222.914062 217.402344 220.484375 217.402344 220.484375 215.785156 C 220.484375 214.164062 222.914062 214.164062 222.914062 215.785156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 78.953125 333.042969 C 78.953125 334.664062 76.523438 334.664062 76.523438 333.042969 C 76.523438 331.421875 78.953125 331.421875 78.953125 333.042969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 231.667969 367.769531 C 231.667969 369.390625 229.238281 369.390625 229.238281 367.769531 C 229.238281 366.152344 231.667969 366.152344 231.667969 367.769531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 214.875 314.765625 C 214.875 316.382812 212.445312 316.382812 212.445312 314.765625 C 212.445312 313.144531 214.875 313.144531 214.875 314.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 273.074219 255.019531 C 273.074219 256.640625 270.644531 256.640625 270.644531 255.019531 C 270.644531 253.398438 273.074219 253.398438 273.074219 255.019531 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 213.5625 253.195312 C 213.5625 254.8125 211.132812 254.8125 211.132812 253.195312 C 211.132812 251.574219 213.5625 251.574219 213.5625 253.195312 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 246.039062 288.847656 C 246.039062 290.464844 243.609375 290.464844 243.609375 288.847656 C 243.609375 287.226562 246.039062 287.226562 246.039062 288.847656 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.898438 70.910156 L 231.535156 73.746094 L 228.265625 73.746094 Z M 229.898438 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 99.710938 407.292969 C 99.710938 408.914062 97.28125 408.914062 97.28125 407.292969 C 97.28125 405.671875 99.710938 405.671875 99.710938 407.292969 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(60%,60%,60%);fill-opacity:1;" d="M 80.3125 167.617188 C 80.3125 169.238281 77.882812 169.238281 77.882812 167.617188 C 77.882812 165.996094 80.3125 165.996094 80.3125 167.617188 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.316406 70.910156 L 230.953125 73.746094 L 227.679688 73.746094 Z M 229.316406 70.910156 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:1;" d="M 265 195.292969 C 265 196.914062 262.566406 196.914062 262.566406 195.292969 C 262.566406 193.671875 265 193.671875 265 195.292969 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.835938 430.558594 L 441.878906 430.558594 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.835938 430.558594 L 65.835938 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 128.511719 430.558594 L 128.511719 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.183594 430.558594 L 191.183594 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.859375 430.558594 L 253.859375 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 316.53125 430.558594 L 316.53125 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 379.207031 430.558594 L 379.207031 437.761719 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 441.878906 430.558594 L 441.878906 437.761719 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="48.335938" y="455.619141"/> + <use xlink:href="#glyph0-2" x="55.970703" y="455.619141"/> + <use xlink:href="#glyph0-3" x="63.353516" y="455.619141"/> + <use xlink:href="#glyph0-4" x="67.683594" y="455.619141"/> + <use xlink:href="#glyph0-1" x="75.318359" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="108.011719" y="455.619141"/> + <use xlink:href="#glyph0-2" x="115.646484" y="455.619141"/> + <use xlink:href="#glyph0-5" x="123.029297" y="455.619141"/> + <use xlink:href="#glyph0-4" x="133.083984" y="455.619141"/> + <use xlink:href="#glyph0-4" x="140.71875" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="170.683594" y="455.619141"/> + <use xlink:href="#glyph0-2" x="178.318359" y="455.619141"/> + <use xlink:href="#glyph0-5" x="185.701172" y="455.619141"/> + <use xlink:href="#glyph0-4" x="195.755859" y="455.619141"/> + <use xlink:href="#glyph0-1" x="203.390625" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="233.359375" y="455.619141"/> + <use xlink:href="#glyph0-2" x="240.994141" y="455.619141"/> + <use xlink:href="#glyph0-5" x="248.376953" y="455.619141"/> + <use xlink:href="#glyph0-4" x="258.431641" y="455.619141"/> + <use xlink:href="#glyph0-6" x="266.066406" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="296.03125" y="455.619141"/> + <use xlink:href="#glyph0-2" x="303.666016" y="455.619141"/> + <use xlink:href="#glyph0-5" x="311.048828" y="455.619141"/> + <use xlink:href="#glyph0-4" x="321.103516" y="455.619141"/> + <use xlink:href="#glyph0-7" x="328.738281" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="358.707031" y="455.619141"/> + <use xlink:href="#glyph0-2" x="366.341797" y="455.619141"/> + <use xlink:href="#glyph0-5" x="373.724609" y="455.619141"/> + <use xlink:href="#glyph0-4" x="383.779297" y="455.619141"/> + <use xlink:href="#glyph0-8" x="391.414062" y="455.619141"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="421.378906" y="455.619141"/> + <use xlink:href="#glyph0-2" x="429.013672" y="455.619141"/> + <use xlink:href="#glyph0-5" x="436.396484" y="455.619141"/> + <use xlink:href="#glyph0-4" x="446.451172" y="455.619141"/> + <use xlink:href="#glyph0-9" x="454.085938" y="455.619141"/> +</g> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 416.800781 L 59.039062 72.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 416.800781 L 51.839844 416.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 330.800781 L 51.839844 330.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 244.800781 L 51.839844 244.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 158.800781 L 51.839844 158.800781 "/> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 72.800781 L 51.839844 72.800781 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-1" x="40.900391" y="422.800781"/> + <use xlink:href="#glyph1-2" x="40.900391" y="418.470703"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-1" x="40.900391" y="336.800781"/> + <use xlink:href="#glyph1-3" x="40.900391" y="332.470703"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-4" x="40.900391" y="248.800781"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-3" x="40.900391" y="162.800781"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-2" x="40.900391" y="76.800781"/> +</g> +<path style="fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 430.558594 L 473.761719 430.558594 L 473.761719 59.039062 L 59.039062 59.039062 Z M 59.039062 430.558594 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-10" x="184.398438" y="484.419922"/> + <use xlink:href="#glyph0-2" x="196.087891" y="484.419922"/> + <use xlink:href="#glyph0-11" x="203.470703" y="484.419922"/> + <use xlink:href="#glyph0-12" x="210.824219" y="484.419922"/> + <use xlink:href="#glyph0-13" x="218.429688" y="484.419922"/> + <use xlink:href="#glyph0-14" x="222.244141" y="484.419922"/> + <use xlink:href="#glyph0-15" x="229.585938" y="484.419922"/> + <use xlink:href="#glyph0-13" x="233.810547" y="484.419922"/> + <use xlink:href="#glyph0-12" x="237.625" y="484.419922"/> + <use xlink:href="#glyph0-14" x="245.230469" y="484.419922"/> + <use xlink:href="#glyph0-16" x="252.572266" y="484.419922"/> + <use xlink:href="#glyph0-10" x="257.294922" y="484.419922"/> + <use xlink:href="#glyph0-11" x="268.984375" y="484.419922"/> + <use xlink:href="#glyph0-17" x="276.337891" y="484.419922"/> + <use xlink:href="#glyph0-18" x="279.671875" y="484.419922"/> + <use xlink:href="#glyph0-19" x="283.005859" y="484.419922"/> + <use xlink:href="#glyph0-2" x="289.304688" y="484.419922"/> + <use xlink:href="#glyph0-20" x="296.6875" y="484.419922"/> + <use xlink:href="#glyph0-13" x="304.304688" y="484.419922"/> + <use xlink:href="#glyph0-21" x="308.119141" y="484.419922"/> + <use xlink:href="#glyph0-14" x="314.716797" y="484.419922"/> + <use xlink:href="#glyph0-22" x="322.058594" y="484.419922"/> + <use xlink:href="#glyph0-12" x="329.664062" y="484.419922"/> + <use xlink:href="#glyph0-23" x="337.269531" y="484.419922"/> + <use xlink:href="#glyph0-24" x="341.974609" y="484.419922"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-5" x="12.099609" y="291.300781"/> + <use xlink:href="#glyph1-6" x="12.099609" y="287.966797"/> + <use xlink:href="#glyph1-7" x="12.099609" y="280.625"/> + <use xlink:href="#glyph1-8" x="12.099609" y="273.007812"/> + <use xlink:href="#glyph1-9" x="12.099609" y="269.193359"/> + <use xlink:href="#glyph1-6" x="12.099609" y="264.96875"/> + <use xlink:href="#glyph1-5" x="12.099609" y="257.626953"/> + <use xlink:href="#glyph1-10" x="12.099609" y="254.292969"/> + <use xlink:href="#glyph1-8" x="12.099609" y="246.675781"/> + <use xlink:href="#glyph1-11" x="12.099609" y="242.861328"/> + <use xlink:href="#glyph1-12" x="12.099609" y="236.263672"/> + <use xlink:href="#glyph1-13" x="12.099609" y="228.658203"/> + <use xlink:href="#glyph1-14" x="12.099609" y="221.304688"/> + <use xlink:href="#glyph1-7" x="12.099609" y="213.699219"/> + <use xlink:href="#glyph1-15" x="12.099609" y="206.082031"/> +</g> +<g clip-path="url(#clip1)" clip-rule="nonzero"> +<path style="fill:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(40%,40%,40%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.039062 244.800781 L 473.761719 244.800781 "/> +</g> +</g> +</svg> diff --git a/runs/deseq2/results_pca-plot.svg b/runs/deseq2/results_pca-plot.svg new file mode 100644 index 0000000..5fe3b80 --- /dev/null +++ b/runs/deseq2/results_pca-plot.svg @@ -0,0 +1,305 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="576pt" height="576pt" viewBox="0 0 576 576" version="1.1"> +<defs> +<g> +<symbol overflow="visible" id="glyph0-0"> +<path style="stroke:none;" d="M 0.4375 1.5625 L 0.4375 -6.203125 L 4.84375 -6.203125 L 4.84375 1.5625 Z M 0.9375 1.0625 L 4.34375 1.0625 L 4.34375 -5.703125 L 0.9375 -5.703125 Z M 0.9375 1.0625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-1"> +<path style="stroke:none;" d="M 0.421875 -2.765625 L 2.75 -2.765625 L 2.75 -2.0625 L 0.421875 -2.0625 Z M 0.421875 -2.765625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-2"> +<path style="stroke:none;" d="M 1.6875 -0.734375 L 4.71875 -0.734375 L 4.71875 0 L 0.640625 0 L 0.640625 -0.734375 C 0.972656 -1.066406 1.421875 -1.519531 1.984375 -2.09375 C 2.554688 -2.675781 2.914062 -3.050781 3.0625 -3.21875 C 3.34375 -3.53125 3.535156 -3.789062 3.640625 -4 C 3.753906 -4.21875 3.8125 -4.429688 3.8125 -4.640625 C 3.8125 -4.984375 3.691406 -5.257812 3.453125 -5.46875 C 3.210938 -5.6875 2.898438 -5.796875 2.515625 -5.796875 C 2.242188 -5.796875 1.957031 -5.75 1.65625 -5.65625 C 1.351562 -5.5625 1.03125 -5.421875 0.6875 -5.234375 L 0.6875 -6.109375 C 1.039062 -6.242188 1.367188 -6.347656 1.671875 -6.421875 C 1.972656 -6.492188 2.25 -6.53125 2.5 -6.53125 C 3.164062 -6.53125 3.695312 -6.363281 4.09375 -6.03125 C 4.488281 -5.695312 4.6875 -5.253906 4.6875 -4.703125 C 4.6875 -4.429688 4.632812 -4.175781 4.53125 -3.9375 C 4.4375 -3.707031 4.257812 -3.429688 4 -3.109375 C 3.925781 -3.023438 3.695312 -2.785156 3.3125 -2.390625 C 2.925781 -1.992188 2.382812 -1.441406 1.6875 -0.734375 Z M 1.6875 -0.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-3"> +<path style="stroke:none;" d="M 2.796875 -5.84375 C 2.347656 -5.84375 2.007812 -5.617188 1.78125 -5.171875 C 1.5625 -4.734375 1.453125 -4.078125 1.453125 -3.203125 C 1.453125 -2.316406 1.5625 -1.65625 1.78125 -1.21875 C 2.007812 -0.78125 2.347656 -0.5625 2.796875 -0.5625 C 3.242188 -0.5625 3.578125 -0.78125 3.796875 -1.21875 C 4.023438 -1.65625 4.140625 -2.316406 4.140625 -3.203125 C 4.140625 -4.078125 4.023438 -4.734375 3.796875 -5.171875 C 3.578125 -5.617188 3.242188 -5.84375 2.796875 -5.84375 Z M 2.796875 -6.53125 C 3.515625 -6.53125 4.0625 -6.242188 4.4375 -5.671875 C 4.820312 -5.109375 5.015625 -4.285156 5.015625 -3.203125 C 5.015625 -2.117188 4.820312 -1.289062 4.4375 -0.71875 C 4.0625 -0.15625 3.515625 0.125 2.796875 0.125 C 2.078125 0.125 1.523438 -0.15625 1.140625 -0.71875 C 0.765625 -1.289062 0.578125 -2.117188 0.578125 -3.203125 C 0.578125 -4.285156 0.765625 -5.109375 1.140625 -5.671875 C 1.523438 -6.242188 2.078125 -6.53125 2.796875 -6.53125 Z M 2.796875 -6.53125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-4"> +<path style="stroke:none;" d="M 1.09375 -0.734375 L 2.515625 -0.734375 L 2.515625 -5.625 L 0.96875 -5.3125 L 0.96875 -6.109375 L 2.5 -6.40625 L 3.375 -6.40625 L 3.375 -0.734375 L 4.78125 -0.734375 L 4.78125 0 L 1.09375 0 Z M 1.09375 -0.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph0-5"> +<path style="stroke:none;" d="M 3.328125 -5.65625 L 1.140625 -2.234375 L 3.328125 -2.234375 Z M 3.09375 -6.40625 L 4.1875 -6.40625 L 4.1875 -2.234375 L 5.109375 -2.234375 L 5.109375 -1.515625 L 4.1875 -1.515625 L 4.1875 0 L 3.328125 0 L 3.328125 -1.515625 L 0.421875 -1.515625 L 0.421875 -2.34375 Z M 3.09375 -6.40625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-6"> +<path style="stroke:none;" d="M 5.671875 -5.921875 L 5.671875 -5 C 5.378906 -5.269531 5.066406 -5.472656 4.734375 -5.609375 C 4.398438 -5.742188 4.046875 -5.8125 3.671875 -5.8125 C 2.941406 -5.8125 2.378906 -5.585938 1.984375 -5.140625 C 1.597656 -4.691406 1.40625 -4.046875 1.40625 -3.203125 C 1.40625 -2.359375 1.597656 -1.710938 1.984375 -1.265625 C 2.378906 -0.816406 2.941406 -0.59375 3.671875 -0.59375 C 4.046875 -0.59375 4.398438 -0.660156 4.734375 -0.796875 C 5.066406 -0.929688 5.378906 -1.132812 5.671875 -1.40625 L 5.671875 -0.5 C 5.359375 -0.289062 5.03125 -0.132812 4.6875 -0.03125 C 4.351562 0.0703125 4 0.125 3.625 0.125 C 2.65625 0.125 1.890625 -0.171875 1.328125 -0.765625 C 0.773438 -1.359375 0.5 -2.171875 0.5 -3.203125 C 0.5 -4.234375 0.773438 -5.046875 1.328125 -5.640625 C 1.890625 -6.234375 2.65625 -6.53125 3.625 -6.53125 C 4.007812 -6.53125 4.367188 -6.476562 4.703125 -6.375 C 5.046875 -6.269531 5.367188 -6.117188 5.671875 -5.921875 Z M 5.671875 -5.921875 "/> +</symbol> +<symbol overflow="visible" id="glyph0-7"> +<path style="stroke:none;" d="M 3 -5.5625 L 1.828125 -2.359375 L 4.1875 -2.359375 Z M 2.515625 -6.40625 L 3.5 -6.40625 L 5.9375 0 L 5.046875 0 L 4.453125 -1.640625 L 1.5625 -1.640625 L 0.984375 0 L 0.0625 0 Z M 2.515625 -6.40625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-8"> +<path style="stroke:none;" d="M 0.859375 -6.40625 L 2.15625 -6.40625 L 3.796875 -2.046875 L 5.4375 -6.40625 L 6.734375 -6.40625 L 6.734375 0 L 5.890625 0 L 5.890625 -5.625 L 4.234375 -1.234375 L 3.359375 -1.234375 L 1.703125 -5.625 L 1.703125 0 L 0.859375 0 Z M 0.859375 -6.40625 "/> +</symbol> +<symbol overflow="visible" id="glyph0-9"> +<path style="stroke:none;" d="M 3.609375 -4.078125 C 3.523438 -4.128906 3.429688 -4.164062 3.328125 -4.1875 C 3.222656 -4.207031 3.109375 -4.21875 2.984375 -4.21875 C 2.535156 -4.21875 2.191406 -4.070312 1.953125 -3.78125 C 1.710938 -3.488281 1.59375 -3.070312 1.59375 -2.53125 L 1.59375 0 L 0.796875 0 L 0.796875 -4.8125 L 1.59375 -4.8125 L 1.59375 -4.0625 C 1.757812 -4.351562 1.972656 -4.566406 2.234375 -4.703125 C 2.503906 -4.847656 2.832031 -4.921875 3.21875 -4.921875 C 3.269531 -4.921875 3.328125 -4.914062 3.390625 -4.90625 C 3.453125 -4.90625 3.523438 -4.898438 3.609375 -4.890625 Z M 3.609375 -4.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-10"> +<path style="stroke:none;" d="M 4.9375 -2.609375 L 4.9375 -2.21875 L 1.3125 -2.21875 C 1.34375 -1.675781 1.503906 -1.257812 1.796875 -0.96875 C 2.085938 -0.6875 2.5 -0.546875 3.03125 -0.546875 C 3.332031 -0.546875 3.625 -0.582031 3.90625 -0.65625 C 4.195312 -0.726562 4.484375 -0.84375 4.765625 -1 L 4.765625 -0.25 C 4.472656 -0.125 4.175781 -0.03125 3.875 0.03125 C 3.582031 0.09375 3.285156 0.125 2.984375 0.125 C 2.210938 0.125 1.601562 -0.0976562 1.15625 -0.546875 C 0.707031 -0.992188 0.484375 -1.597656 0.484375 -2.359375 C 0.484375 -3.148438 0.695312 -3.773438 1.125 -4.234375 C 1.550781 -4.691406 2.125 -4.921875 2.84375 -4.921875 C 3.488281 -4.921875 4 -4.710938 4.375 -4.296875 C 4.75 -3.878906 4.9375 -3.316406 4.9375 -2.609375 Z M 4.15625 -2.828125 C 4.144531 -3.265625 4.019531 -3.609375 3.78125 -3.859375 C 3.550781 -4.117188 3.242188 -4.25 2.859375 -4.25 C 2.410156 -4.25 2.050781 -4.125 1.78125 -3.875 C 1.519531 -3.632812 1.367188 -3.285156 1.328125 -2.828125 Z M 4.15625 -2.828125 "/> +</symbol> +<symbol overflow="visible" id="glyph0-11"> +<path style="stroke:none;" d="M 3.5625 -3.453125 C 3.976562 -3.367188 4.300781 -3.1875 4.53125 -2.90625 C 4.769531 -2.625 4.890625 -2.273438 4.890625 -1.859375 C 4.890625 -1.234375 4.671875 -0.742188 4.234375 -0.390625 C 3.804688 -0.046875 3.191406 0.125 2.390625 0.125 C 2.117188 0.125 1.835938 0.0976562 1.546875 0.046875 C 1.265625 -0.00390625 0.972656 -0.0820312 0.671875 -0.1875 L 0.671875 -1.03125 C 0.910156 -0.894531 1.171875 -0.789062 1.453125 -0.71875 C 1.742188 -0.644531 2.046875 -0.609375 2.359375 -0.609375 C 2.898438 -0.609375 3.3125 -0.710938 3.59375 -0.921875 C 3.882812 -1.140625 4.03125 -1.453125 4.03125 -1.859375 C 4.03125 -2.242188 3.894531 -2.539062 3.625 -2.75 C 3.363281 -2.96875 3 -3.078125 2.53125 -3.078125 L 1.78125 -3.078125 L 1.78125 -3.78125 L 2.5625 -3.78125 C 2.988281 -3.78125 3.3125 -3.863281 3.53125 -4.03125 C 3.757812 -4.207031 3.875 -4.457031 3.875 -4.78125 C 3.875 -5.101562 3.753906 -5.351562 3.515625 -5.53125 C 3.285156 -5.707031 2.957031 -5.796875 2.53125 -5.796875 C 2.289062 -5.796875 2.035156 -5.769531 1.765625 -5.71875 C 1.492188 -5.664062 1.191406 -5.585938 0.859375 -5.484375 L 0.859375 -6.25 C 1.191406 -6.34375 1.5 -6.410156 1.78125 -6.453125 C 2.070312 -6.503906 2.347656 -6.53125 2.609375 -6.53125 C 3.265625 -6.53125 3.78125 -6.378906 4.15625 -6.078125 C 4.539062 -5.773438 4.734375 -5.367188 4.734375 -4.859375 C 4.734375 -4.503906 4.628906 -4.203125 4.421875 -3.953125 C 4.222656 -3.710938 3.9375 -3.546875 3.5625 -3.453125 Z M 3.5625 -3.453125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-0"> +<path style="stroke:none;" d="M 0.546875 1.9375 L 0.546875 -7.75 L 6.046875 -7.75 L 6.046875 1.9375 Z M 1.171875 1.328125 L 5.4375 1.328125 L 5.4375 -7.140625 L 1.171875 -7.140625 Z M 1.171875 1.328125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-1"> +<path style="stroke:none;" d="M 2.171875 -7.125 L 2.171875 -4.109375 L 3.53125 -4.109375 C 4.03125 -4.109375 4.414062 -4.238281 4.6875 -4.5 C 4.96875 -4.769531 5.109375 -5.144531 5.109375 -5.625 C 5.109375 -6.101562 4.96875 -6.472656 4.6875 -6.734375 C 4.414062 -6.992188 4.03125 -7.125 3.53125 -7.125 Z M 1.078125 -8.015625 L 3.53125 -8.015625 C 4.425781 -8.015625 5.101562 -7.8125 5.5625 -7.40625 C 6.019531 -7 6.25 -6.40625 6.25 -5.625 C 6.25 -4.832031 6.019531 -4.234375 5.5625 -3.828125 C 5.101562 -3.421875 4.425781 -3.21875 3.53125 -3.21875 L 2.171875 -3.21875 L 2.171875 0 L 1.078125 0 Z M 1.078125 -8.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-2"> +<path style="stroke:none;" d="M 7.078125 -7.40625 L 7.078125 -6.25 C 6.710938 -6.59375 6.320312 -6.847656 5.90625 -7.015625 C 5.5 -7.179688 5.0625 -7.265625 4.59375 -7.265625 C 3.675781 -7.265625 2.972656 -6.984375 2.484375 -6.421875 C 2.003906 -5.867188 1.765625 -5.0625 1.765625 -4 C 1.765625 -2.945312 2.003906 -2.140625 2.484375 -1.578125 C 2.972656 -1.015625 3.675781 -0.734375 4.59375 -0.734375 C 5.0625 -0.734375 5.5 -0.816406 5.90625 -0.984375 C 6.320312 -1.148438 6.710938 -1.40625 7.078125 -1.75 L 7.078125 -0.625 C 6.703125 -0.363281 6.300781 -0.164062 5.875 -0.03125 C 5.457031 0.09375 5.007812 0.15625 4.53125 0.15625 C 3.320312 0.15625 2.367188 -0.210938 1.671875 -0.953125 C 0.972656 -1.703125 0.625 -2.71875 0.625 -4 C 0.625 -5.289062 0.972656 -6.304688 1.671875 -7.046875 C 2.367188 -7.796875 3.320312 -8.171875 4.53125 -8.171875 C 5.007812 -8.171875 5.460938 -8.101562 5.890625 -7.96875 C 6.316406 -7.84375 6.710938 -7.65625 7.078125 -7.40625 Z M 7.078125 -7.40625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-3"> +<path style="stroke:none;" d="M 1.359375 -0.90625 L 3.140625 -0.90625 L 3.140625 -7.03125 L 1.203125 -6.640625 L 1.203125 -7.625 L 3.125 -8.015625 L 4.21875 -8.015625 L 4.21875 -0.90625 L 5.984375 -0.90625 L 5.984375 0 L 1.359375 0 Z M 1.359375 -0.90625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-4"> +<path style="stroke:none;" d="M 1.296875 -1.359375 L 2.421875 -1.359375 L 2.421875 0 L 1.296875 0 Z M 1.296875 -5.6875 L 2.421875 -5.6875 L 2.421875 -4.328125 L 1.296875 -4.328125 Z M 1.296875 -5.6875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-5"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph1-6"> +<path style="stroke:none;" d="M 1.203125 -0.171875 L 1.203125 -1.15625 C 1.472656 -1.03125 1.75 -0.929688 2.03125 -0.859375 C 2.3125 -0.785156 2.585938 -0.75 2.859375 -0.75 C 3.578125 -0.75 4.125 -0.988281 4.5 -1.46875 C 4.875 -1.957031 5.085938 -2.691406 5.140625 -3.671875 C 4.929688 -3.367188 4.664062 -3.132812 4.34375 -2.96875 C 4.03125 -2.800781 3.679688 -2.71875 3.296875 -2.71875 C 2.492188 -2.71875 1.859375 -2.957031 1.390625 -3.4375 C 0.921875 -3.925781 0.6875 -4.59375 0.6875 -5.4375 C 0.6875 -6.257812 0.929688 -6.921875 1.421875 -7.421875 C 1.910156 -7.921875 2.5625 -8.171875 3.375 -8.171875 C 4.300781 -8.171875 5.003906 -7.8125 5.484375 -7.09375 C 5.972656 -6.382812 6.21875 -5.351562 6.21875 -4 C 6.21875 -2.738281 5.914062 -1.726562 5.3125 -0.96875 C 4.71875 -0.21875 3.914062 0.15625 2.90625 0.15625 C 2.632812 0.15625 2.359375 0.128906 2.078125 0.078125 C 1.796875 0.0234375 1.503906 -0.0546875 1.203125 -0.171875 Z M 3.375 -3.5625 C 3.851562 -3.5625 4.234375 -3.726562 4.515625 -4.0625 C 4.804688 -4.394531 4.953125 -4.851562 4.953125 -5.4375 C 4.953125 -6.007812 4.804688 -6.460938 4.515625 -6.796875 C 4.234375 -7.140625 3.851562 -7.3125 3.375 -7.3125 C 2.882812 -7.3125 2.492188 -7.140625 2.203125 -6.796875 C 1.921875 -6.460938 1.78125 -6.007812 1.78125 -5.4375 C 1.78125 -4.851562 1.921875 -4.394531 2.203125 -4.0625 C 2.492188 -3.726562 2.882812 -3.5625 3.375 -3.5625 Z M 3.375 -3.5625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-7"> +<path style="stroke:none;" d="M 8 -3.53125 C 7.6875 -3.53125 7.441406 -3.394531 7.265625 -3.125 C 7.085938 -2.863281 7 -2.5 7 -2.03125 C 7 -1.5625 7.085938 -1.191406 7.265625 -0.921875 C 7.441406 -0.660156 7.6875 -0.53125 8 -0.53125 C 8.300781 -0.53125 8.539062 -0.660156 8.71875 -0.921875 C 8.894531 -1.191406 8.984375 -1.5625 8.984375 -2.03125 C 8.984375 -2.5 8.894531 -2.863281 8.71875 -3.125 C 8.539062 -3.394531 8.300781 -3.53125 8 -3.53125 Z M 8 -4.21875 C 8.5625 -4.21875 9.007812 -4.019531 9.34375 -3.625 C 9.675781 -3.226562 9.84375 -2.695312 9.84375 -2.03125 C 9.84375 -1.351562 9.675781 -0.816406 9.34375 -0.421875 C 9.007812 -0.0351562 8.5625 0.15625 8 0.15625 C 7.425781 0.15625 6.972656 -0.0351562 6.640625 -0.421875 C 6.304688 -0.816406 6.140625 -1.351562 6.140625 -2.03125 C 6.140625 -2.695312 6.304688 -3.226562 6.640625 -3.625 C 6.972656 -4.019531 7.425781 -4.21875 8 -4.21875 Z M 2.453125 -7.484375 C 2.148438 -7.484375 1.910156 -7.347656 1.734375 -7.078125 C 1.554688 -6.816406 1.46875 -6.453125 1.46875 -5.984375 C 1.46875 -5.515625 1.550781 -5.144531 1.71875 -4.875 C 1.894531 -4.613281 2.140625 -4.484375 2.453125 -4.484375 C 2.765625 -4.484375 3.007812 -4.613281 3.1875 -4.875 C 3.363281 -5.144531 3.453125 -5.515625 3.453125 -5.984375 C 3.453125 -6.441406 3.363281 -6.804688 3.1875 -7.078125 C 3.007812 -7.347656 2.765625 -7.484375 2.453125 -7.484375 Z M 7.3125 -8.171875 L 8.171875 -8.171875 L 3.140625 0.15625 L 2.28125 0.15625 Z M 2.453125 -8.171875 C 3.015625 -8.171875 3.460938 -7.972656 3.796875 -7.578125 C 4.140625 -7.179688 4.3125 -6.648438 4.3125 -5.984375 C 4.3125 -5.304688 4.144531 -4.769531 3.8125 -4.375 C 3.476562 -3.988281 3.023438 -3.796875 2.453125 -3.796875 C 1.878906 -3.796875 1.425781 -3.988281 1.09375 -4.375 C 0.769531 -4.769531 0.609375 -5.304688 0.609375 -5.984375 C 0.609375 -6.648438 0.773438 -7.179688 1.109375 -7.578125 C 1.441406 -7.972656 1.890625 -8.171875 2.453125 -8.171875 Z M 2.453125 -8.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-8"> +<path style="stroke:none;" d="M 0.328125 -6.015625 L 1.375 -6.015625 L 3.25 -0.96875 L 5.140625 -6.015625 L 6.1875 -6.015625 L 3.921875 0 L 2.578125 0 Z M 0.328125 -6.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-9"> +<path style="stroke:none;" d="M 3.765625 -3.03125 C 2.972656 -3.03125 2.421875 -2.9375 2.109375 -2.75 C 1.804688 -2.5625 1.65625 -2.25 1.65625 -1.8125 C 1.65625 -1.46875 1.769531 -1.191406 2 -0.984375 C 2.226562 -0.773438 2.539062 -0.671875 2.9375 -0.671875 C 3.488281 -0.671875 3.925781 -0.863281 4.25 -1.25 C 4.582031 -1.644531 4.75 -2.160156 4.75 -2.796875 L 4.75 -3.03125 Z M 5.734375 -3.4375 L 5.734375 0 L 4.75 0 L 4.75 -0.90625 C 4.53125 -0.539062 4.25 -0.269531 3.90625 -0.09375 C 3.570312 0.0703125 3.160156 0.15625 2.671875 0.15625 C 2.054688 0.15625 1.566406 -0.015625 1.203125 -0.359375 C 0.835938 -0.703125 0.65625 -1.164062 0.65625 -1.75 C 0.65625 -2.425781 0.878906 -2.9375 1.328125 -3.28125 C 1.785156 -3.625 2.46875 -3.796875 3.375 -3.796875 L 4.75 -3.796875 L 4.75 -3.890625 C 4.75 -4.347656 4.597656 -4.703125 4.296875 -4.953125 C 4.003906 -5.203125 3.585938 -5.328125 3.046875 -5.328125 C 2.703125 -5.328125 2.363281 -5.285156 2.03125 -5.203125 C 1.707031 -5.117188 1.394531 -4.992188 1.09375 -4.828125 L 1.09375 -5.734375 C 1.457031 -5.878906 1.8125 -5.984375 2.15625 -6.046875 C 2.5 -6.117188 2.828125 -6.15625 3.140625 -6.15625 C 4.015625 -6.15625 4.664062 -5.929688 5.09375 -5.484375 C 5.519531 -5.035156 5.734375 -4.351562 5.734375 -3.4375 Z M 5.734375 -3.4375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-10"> +<path style="stroke:none;" d="M 4.515625 -5.09375 C 4.410156 -5.15625 4.289062 -5.203125 4.15625 -5.234375 C 4.03125 -5.265625 3.890625 -5.28125 3.734375 -5.28125 C 3.171875 -5.28125 2.738281 -5.097656 2.4375 -4.734375 C 2.144531 -4.367188 2 -3.847656 2 -3.171875 L 2 0 L 1 0 L 1 -6.015625 L 2 -6.015625 L 2 -5.078125 C 2.195312 -5.441406 2.460938 -5.710938 2.796875 -5.890625 C 3.128906 -6.066406 3.535156 -6.15625 4.015625 -6.15625 C 4.085938 -6.15625 4.160156 -6.148438 4.234375 -6.140625 C 4.316406 -6.140625 4.410156 -6.128906 4.515625 -6.109375 Z M 4.515625 -5.09375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-11"> +<path style="stroke:none;" d="M 1.03125 -6.015625 L 2.03125 -6.015625 L 2.03125 0 L 1.03125 0 Z M 1.03125 -8.359375 L 2.03125 -8.359375 L 2.03125 -7.109375 L 1.03125 -7.109375 Z M 1.03125 -8.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-12"> +<path style="stroke:none;" d="M 6.03125 -3.625 L 6.03125 0 L 5.046875 0 L 5.046875 -3.59375 C 5.046875 -4.164062 4.9375 -4.59375 4.71875 -4.875 C 4.5 -5.15625 4.164062 -5.296875 3.71875 -5.296875 C 3.1875 -5.296875 2.765625 -5.125 2.453125 -4.78125 C 2.148438 -4.445312 2 -3.988281 2 -3.40625 L 2 0 L 1 0 L 1 -6.015625 L 2 -6.015625 L 2 -5.078125 C 2.226562 -5.441406 2.503906 -5.710938 2.828125 -5.890625 C 3.148438 -6.066406 3.519531 -6.15625 3.9375 -6.15625 C 4.625 -6.15625 5.144531 -5.941406 5.5 -5.515625 C 5.851562 -5.085938 6.03125 -4.457031 6.03125 -3.625 Z M 6.03125 -3.625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-13"> +<path style="stroke:none;" d="M 5.359375 -5.78125 L 5.359375 -4.859375 C 5.085938 -5.015625 4.8125 -5.128906 4.53125 -5.203125 C 4.25 -5.285156 3.960938 -5.328125 3.671875 -5.328125 C 3.035156 -5.328125 2.539062 -5.125 2.1875 -4.71875 C 1.832031 -4.3125 1.65625 -3.738281 1.65625 -3 C 1.65625 -2.269531 1.832031 -1.703125 2.1875 -1.296875 C 2.539062 -0.890625 3.035156 -0.6875 3.671875 -0.6875 C 3.960938 -0.6875 4.25 -0.722656 4.53125 -0.796875 C 4.8125 -0.867188 5.085938 -0.984375 5.359375 -1.140625 L 5.359375 -0.234375 C 5.085938 -0.0976562 4.800781 0 4.5 0.0625 C 4.207031 0.125 3.894531 0.15625 3.5625 0.15625 C 2.65625 0.15625 1.9375 -0.125 1.40625 -0.6875 C 0.875 -1.257812 0.609375 -2.03125 0.609375 -3 C 0.609375 -3.976562 0.875 -4.75 1.40625 -5.3125 C 1.945312 -5.875 2.6875 -6.15625 3.625 -6.15625 C 3.9375 -6.15625 4.234375 -6.125 4.515625 -6.0625 C 4.804688 -6 5.085938 -5.90625 5.359375 -5.78125 Z M 5.359375 -5.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph1-14"> +<path style="stroke:none;" d="M 6.1875 -3.25 L 6.1875 -2.765625 L 1.640625 -2.765625 C 1.679688 -2.085938 1.882812 -1.570312 2.25 -1.21875 C 2.613281 -0.863281 3.125 -0.6875 3.78125 -0.6875 C 4.164062 -0.6875 4.535156 -0.734375 4.890625 -0.828125 C 5.242188 -0.921875 5.597656 -1.054688 5.953125 -1.234375 L 5.953125 -0.3125 C 5.597656 -0.15625 5.234375 -0.0390625 4.859375 0.03125 C 4.484375 0.113281 4.109375 0.15625 3.734375 0.15625 C 2.765625 0.15625 2 -0.117188 1.4375 -0.671875 C 0.882812 -1.234375 0.609375 -1.992188 0.609375 -2.953125 C 0.609375 -3.929688 0.875 -4.707031 1.40625 -5.28125 C 1.9375 -5.863281 2.65625 -6.15625 3.5625 -6.15625 C 4.363281 -6.15625 5 -5.894531 5.46875 -5.375 C 5.945312 -4.851562 6.1875 -4.144531 6.1875 -3.25 Z M 5.1875 -3.546875 C 5.1875 -4.085938 5.035156 -4.519531 4.734375 -4.84375 C 4.441406 -5.164062 4.050781 -5.328125 3.5625 -5.328125 C 3.007812 -5.328125 2.566406 -5.171875 2.234375 -4.859375 C 1.910156 -4.546875 1.722656 -4.109375 1.671875 -3.546875 Z M 5.1875 -3.546875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-15"> +<path style="stroke:none;" d="M 1.078125 -8.015625 L 5.6875 -8.015625 L 5.6875 -7.109375 L 2.171875 -7.109375 L 2.171875 -4.75 L 5.34375 -4.75 L 5.34375 -3.828125 L 2.171875 -3.828125 L 2.171875 0 L 1.078125 0 Z M 1.078125 -8.015625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-16"> +<path style="stroke:none;" d="M 2.015625 -7.71875 L 2.015625 -6.015625 L 4.046875 -6.015625 L 4.046875 -5.25 L 2.015625 -5.25 L 2.015625 -1.984375 C 2.015625 -1.492188 2.082031 -1.175781 2.21875 -1.03125 C 2.351562 -0.894531 2.625 -0.828125 3.03125 -0.828125 L 4.046875 -0.828125 L 4.046875 0 L 3.03125 0 C 2.269531 0 1.742188 -0.140625 1.453125 -0.421875 C 1.160156 -0.710938 1.015625 -1.234375 1.015625 -1.984375 L 1.015625 -5.25 L 0.296875 -5.25 L 0.296875 -6.015625 L 1.015625 -6.015625 L 1.015625 -7.71875 Z M 2.015625 -7.71875 "/> +</symbol> +<symbol overflow="visible" id="glyph1-17"> +<path style="stroke:none;" d="M 3.375 -5.328125 C 2.84375 -5.328125 2.421875 -5.117188 2.109375 -4.703125 C 1.804688 -4.285156 1.65625 -3.71875 1.65625 -3 C 1.65625 -2.28125 1.804688 -1.710938 2.109375 -1.296875 C 2.410156 -0.890625 2.832031 -0.6875 3.375 -0.6875 C 3.894531 -0.6875 4.304688 -0.890625 4.609375 -1.296875 C 4.921875 -1.710938 5.078125 -2.28125 5.078125 -3 C 5.078125 -3.71875 4.921875 -4.285156 4.609375 -4.703125 C 4.304688 -5.117188 3.894531 -5.328125 3.375 -5.328125 Z M 3.375 -6.15625 C 4.226562 -6.15625 4.898438 -5.875 5.390625 -5.3125 C 5.878906 -4.757812 6.125 -3.988281 6.125 -3 C 6.125 -2.019531 5.878906 -1.25 5.390625 -0.6875 C 4.898438 -0.125 4.226562 0.15625 3.375 0.15625 C 2.507812 0.15625 1.832031 -0.125 1.34375 -0.6875 C 0.851562 -1.25 0.609375 -2.019531 0.609375 -3 C 0.609375 -3.988281 0.851562 -4.757812 1.34375 -5.3125 C 1.832031 -5.875 2.507812 -6.15625 3.375 -6.15625 Z M 3.375 -6.15625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-18"> +<path style="stroke:none;" d="M 1.171875 -1.359375 L 2.3125 -1.359375 L 2.3125 0 L 1.171875 0 Z M 1.171875 -1.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-19"> +<path style="stroke:none;" d="M 6.03125 -3.625 L 6.03125 0 L 5.046875 0 L 5.046875 -3.59375 C 5.046875 -4.164062 4.9375 -4.59375 4.71875 -4.875 C 4.5 -5.15625 4.164062 -5.296875 3.71875 -5.296875 C 3.1875 -5.296875 2.765625 -5.125 2.453125 -4.78125 C 2.148438 -4.445312 2 -3.988281 2 -3.40625 L 2 0 L 1 0 L 1 -8.359375 L 2 -8.359375 L 2 -5.078125 C 2.226562 -5.441406 2.503906 -5.710938 2.828125 -5.890625 C 3.148438 -6.066406 3.519531 -6.15625 3.9375 -6.15625 C 4.625 -6.15625 5.144531 -5.941406 5.5 -5.515625 C 5.851562 -5.085938 6.03125 -4.457031 6.03125 -3.625 Z M 6.03125 -3.625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-20"> +<path style="stroke:none;" d="M 4.875 -5.84375 L 4.875 -4.90625 C 4.59375 -5.050781 4.300781 -5.15625 4 -5.21875 C 3.695312 -5.289062 3.382812 -5.328125 3.0625 -5.328125 C 2.570312 -5.328125 2.203125 -5.25 1.953125 -5.09375 C 1.710938 -4.945312 1.59375 -4.726562 1.59375 -4.4375 C 1.59375 -4.207031 1.679688 -4.023438 1.859375 -3.890625 C 2.035156 -3.765625 2.390625 -3.640625 2.921875 -3.515625 L 3.25 -3.4375 C 3.957031 -3.289062 4.457031 -3.078125 4.75 -2.796875 C 5.039062 -2.523438 5.1875 -2.144531 5.1875 -1.65625 C 5.1875 -1.101562 4.96875 -0.660156 4.53125 -0.328125 C 4.09375 -0.00390625 3.484375 0.15625 2.703125 0.15625 C 2.378906 0.15625 2.039062 0.125 1.6875 0.0625 C 1.34375 0 0.976562 -0.09375 0.59375 -0.21875 L 0.59375 -1.234375 C 0.957031 -1.046875 1.316406 -0.90625 1.671875 -0.8125 C 2.023438 -0.71875 2.378906 -0.671875 2.734375 -0.671875 C 3.191406 -0.671875 3.546875 -0.75 3.796875 -0.90625 C 4.046875 -1.070312 4.171875 -1.296875 4.171875 -1.578125 C 4.171875 -1.847656 4.082031 -2.054688 3.90625 -2.203125 C 3.726562 -2.347656 3.332031 -2.484375 2.71875 -2.609375 L 2.375 -2.703125 C 1.757812 -2.828125 1.316406 -3.019531 1.046875 -3.28125 C 0.773438 -3.550781 0.640625 -3.921875 0.640625 -4.390625 C 0.640625 -4.953125 0.835938 -5.382812 1.234375 -5.6875 C 1.640625 -6 2.210938 -6.15625 2.953125 -6.15625 C 3.316406 -6.15625 3.660156 -6.128906 3.984375 -6.078125 C 4.304688 -6.023438 4.601562 -5.945312 4.875 -5.84375 Z M 4.875 -5.84375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-21"> +<path style="stroke:none;" d="M 3.546875 0.5625 C 3.265625 1.28125 2.988281 1.742188 2.71875 1.953125 C 2.457031 2.171875 2.101562 2.28125 1.65625 2.28125 L 0.875 2.28125 L 0.875 1.46875 L 1.453125 1.46875 C 1.722656 1.46875 1.929688 1.398438 2.078125 1.265625 C 2.234375 1.140625 2.398438 0.835938 2.578125 0.359375 L 2.765625 -0.09375 L 0.328125 -6.015625 L 1.375 -6.015625 L 3.25 -1.3125 L 5.140625 -6.015625 L 6.1875 -6.015625 Z M 3.546875 0.5625 "/> +</symbol> +<symbol overflow="visible" id="glyph1-22"> +<path style="stroke:none;" d="M 5.71875 -4.859375 C 5.96875 -5.304688 6.265625 -5.632812 6.609375 -5.84375 C 6.953125 -6.050781 7.359375 -6.15625 7.828125 -6.15625 C 8.453125 -6.15625 8.929688 -5.9375 9.265625 -5.5 C 9.609375 -5.0625 9.78125 -4.4375 9.78125 -3.625 L 9.78125 0 L 8.78125 0 L 8.78125 -3.59375 C 8.78125 -4.175781 8.675781 -4.601562 8.46875 -4.875 C 8.269531 -5.15625 7.960938 -5.296875 7.546875 -5.296875 C 7.035156 -5.296875 6.628906 -5.125 6.328125 -4.78125 C 6.035156 -4.445312 5.890625 -3.988281 5.890625 -3.40625 L 5.890625 0 L 4.890625 0 L 4.890625 -3.59375 C 4.890625 -4.175781 4.785156 -4.601562 4.578125 -4.875 C 4.378906 -5.15625 4.066406 -5.296875 3.640625 -5.296875 C 3.140625 -5.296875 2.738281 -5.125 2.4375 -4.78125 C 2.144531 -4.445312 2 -3.988281 2 -3.40625 L 2 0 L 1 0 L 1 -6.015625 L 2 -6.015625 L 2 -5.078125 C 2.21875 -5.453125 2.484375 -5.722656 2.796875 -5.890625 C 3.117188 -6.066406 3.492188 -6.15625 3.921875 -6.15625 C 4.359375 -6.15625 4.726562 -6.046875 5.03125 -5.828125 C 5.34375 -5.609375 5.570312 -5.285156 5.71875 -4.859375 Z M 5.71875 -4.859375 "/> +</symbol> +<symbol overflow="visible" id="glyph1-23"> +<path style="stroke:none;" d="M 5 -5.109375 L 5 -8.359375 L 5.984375 -8.359375 L 5.984375 0 L 5 0 L 5 -0.90625 C 4.789062 -0.539062 4.523438 -0.269531 4.203125 -0.09375 C 3.890625 0.0703125 3.507812 0.15625 3.0625 0.15625 C 2.34375 0.15625 1.753906 -0.128906 1.296875 -0.703125 C 0.835938 -1.285156 0.609375 -2.050781 0.609375 -3 C 0.609375 -3.945312 0.835938 -4.707031 1.296875 -5.28125 C 1.753906 -5.863281 2.34375 -6.15625 3.0625 -6.15625 C 3.507812 -6.15625 3.890625 -6.066406 4.203125 -5.890625 C 4.523438 -5.722656 4.789062 -5.460938 5 -5.109375 Z M 1.625 -3 C 1.625 -2.269531 1.773438 -1.695312 2.078125 -1.28125 C 2.378906 -0.875 2.789062 -0.671875 3.3125 -0.671875 C 3.832031 -0.671875 4.242188 -0.875 4.546875 -1.28125 C 4.847656 -1.695312 5 -2.269531 5 -3 C 5 -3.726562 4.847656 -4.296875 4.546875 -4.703125 C 4.242188 -5.117188 3.832031 -5.328125 3.3125 -5.328125 C 2.789062 -5.328125 2.378906 -5.117188 2.078125 -4.703125 C 1.773438 -4.296875 1.625 -3.726562 1.625 -3 Z M 1.625 -3 "/> +</symbol> +<symbol overflow="visible" id="glyph2-0"> +<path style="stroke:none;" d="M 1.9375 -0.546875 L -7.75 -0.546875 L -7.75 -6.046875 L 1.9375 -6.046875 Z M 1.328125 -1.171875 L 1.328125 -5.4375 L -7.140625 -5.4375 L -7.140625 -1.171875 Z M 1.328125 -1.171875 "/> +</symbol> +<symbol overflow="visible" id="glyph2-1"> +<path style="stroke:none;" d="M -7.125 -2.171875 L -4.109375 -2.171875 L -4.109375 -3.53125 C -4.109375 -4.03125 -4.238281 -4.414062 -4.5 -4.6875 C -4.769531 -4.96875 -5.144531 -5.109375 -5.625 -5.109375 C -6.101562 -5.109375 -6.472656 -4.96875 -6.734375 -4.6875 C -6.992188 -4.414062 -7.125 -4.03125 -7.125 -3.53125 Z M -8.015625 -1.078125 L -8.015625 -3.53125 C -8.015625 -4.425781 -7.8125 -5.101562 -7.40625 -5.5625 C -7 -6.019531 -6.40625 -6.25 -5.625 -6.25 C -4.832031 -6.25 -4.234375 -6.019531 -3.828125 -5.5625 C -3.421875 -5.101562 -3.21875 -4.425781 -3.21875 -3.53125 L -3.21875 -2.171875 L 0 -2.171875 L 0 -1.078125 Z M -8.015625 -1.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-2"> +<path style="stroke:none;" d="M -7.40625 -7.078125 L -6.25 -7.078125 C -6.59375 -6.710938 -6.847656 -6.320312 -7.015625 -5.90625 C -7.179688 -5.5 -7.265625 -5.0625 -7.265625 -4.59375 C -7.265625 -3.675781 -6.984375 -2.972656 -6.421875 -2.484375 C -5.867188 -2.003906 -5.0625 -1.765625 -4 -1.765625 C -2.945312 -1.765625 -2.140625 -2.003906 -1.578125 -2.484375 C -1.015625 -2.972656 -0.734375 -3.675781 -0.734375 -4.59375 C -0.734375 -5.0625 -0.816406 -5.5 -0.984375 -5.90625 C -1.148438 -6.320312 -1.40625 -6.710938 -1.75 -7.078125 L -0.625 -7.078125 C -0.363281 -6.703125 -0.164062 -6.300781 -0.03125 -5.875 C 0.09375 -5.457031 0.15625 -5.007812 0.15625 -4.53125 C 0.15625 -3.320312 -0.210938 -2.367188 -0.953125 -1.671875 C -1.703125 -0.972656 -2.71875 -0.625 -4 -0.625 C -5.289062 -0.625 -6.304688 -0.972656 -7.046875 -1.671875 C -7.796875 -2.367188 -8.171875 -3.320312 -8.171875 -4.53125 C -8.171875 -5.007812 -8.101562 -5.460938 -7.96875 -5.890625 C -7.84375 -6.316406 -7.65625 -6.710938 -7.40625 -7.078125 Z M -7.40625 -7.078125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-3"> +<path style="stroke:none;" d="M -0.90625 -2.109375 L -0.90625 -5.890625 L 0 -5.890625 L 0 -0.8125 L -0.90625 -0.8125 C -1.332031 -1.21875 -1.90625 -1.773438 -2.625 -2.484375 C -3.34375 -3.203125 -3.804688 -3.648438 -4.015625 -3.828125 C -4.410156 -4.171875 -4.742188 -4.410156 -5.015625 -4.546875 C -5.285156 -4.691406 -5.550781 -4.765625 -5.8125 -4.765625 C -6.238281 -4.765625 -6.582031 -4.613281 -6.84375 -4.3125 C -7.113281 -4.019531 -7.25 -3.628906 -7.25 -3.140625 C -7.25 -2.804688 -7.1875 -2.445312 -7.0625 -2.0625 C -6.945312 -1.6875 -6.769531 -1.285156 -6.53125 -0.859375 L -7.625 -0.859375 C -7.800781 -1.296875 -7.9375 -1.703125 -8.03125 -2.078125 C -8.125 -2.460938 -8.171875 -2.8125 -8.171875 -3.125 C -8.171875 -3.957031 -7.960938 -4.617188 -7.546875 -5.109375 C -7.128906 -5.609375 -6.570312 -5.859375 -5.875 -5.859375 C -5.539062 -5.859375 -5.226562 -5.796875 -4.9375 -5.671875 C -4.644531 -5.546875 -4.296875 -5.320312 -3.890625 -5 C -3.785156 -4.90625 -3.484375 -4.617188 -2.984375 -4.140625 C -2.492188 -3.660156 -1.800781 -2.984375 -0.90625 -2.109375 Z M -0.90625 -2.109375 "/> +</symbol> +<symbol overflow="visible" id="glyph2-4"> +<path style="stroke:none;" d="M -1.359375 -1.296875 L -1.359375 -2.421875 L 0 -2.421875 L 0 -1.296875 Z M -5.6875 -1.296875 L -5.6875 -2.421875 L -4.328125 -2.421875 L -4.328125 -1.296875 Z M -5.6875 -1.296875 "/> +</symbol> +<symbol overflow="visible" id="glyph2-5"> +<path style="stroke:none;" d=""/> +</symbol> +<symbol overflow="visible" id="glyph2-6"> +<path style="stroke:none;" d="M -4.4375 -3.625 C -4.4375 -3.144531 -4.269531 -2.757812 -3.9375 -2.46875 C -3.601562 -2.1875 -3.148438 -2.046875 -2.578125 -2.046875 C -1.992188 -2.046875 -1.535156 -2.1875 -1.203125 -2.46875 C -0.867188 -2.757812 -0.703125 -3.144531 -0.703125 -3.625 C -0.703125 -4.113281 -0.867188 -4.5 -1.203125 -4.78125 C -1.535156 -5.070312 -1.992188 -5.21875 -2.578125 -5.21875 C -3.148438 -5.21875 -3.601562 -5.070312 -3.9375 -4.78125 C -4.269531 -4.5 -4.4375 -4.113281 -4.4375 -3.625 Z M -7.84375 -5.78125 L -6.859375 -5.78125 C -6.984375 -5.507812 -7.078125 -5.234375 -7.140625 -4.953125 C -7.210938 -4.679688 -7.25 -4.410156 -7.25 -4.140625 C -7.25 -3.421875 -7.003906 -2.867188 -6.515625 -2.484375 C -6.035156 -2.109375 -5.304688 -1.894531 -4.328125 -1.84375 C -4.640625 -2.0625 -4.878906 -2.328125 -5.046875 -2.640625 C -5.210938 -2.960938 -5.296875 -3.316406 -5.296875 -3.703125 C -5.296875 -4.503906 -5.050781 -5.140625 -4.5625 -5.609375 C -4.070312 -6.078125 -3.410156 -6.3125 -2.578125 -6.3125 C -1.753906 -6.3125 -1.09375 -6.066406 -0.59375 -5.578125 C -0.09375 -5.085938 0.15625 -4.4375 0.15625 -3.625 C 0.15625 -2.695312 -0.195312 -1.988281 -0.90625 -1.5 C -1.625 -1.007812 -2.65625 -0.765625 -4 -0.765625 C -5.269531 -0.765625 -6.28125 -1.066406 -7.03125 -1.671875 C -7.789062 -2.273438 -8.171875 -3.082031 -8.171875 -4.09375 C -8.171875 -4.363281 -8.140625 -4.632812 -8.078125 -4.90625 C -8.023438 -5.1875 -7.945312 -5.476562 -7.84375 -5.78125 Z M -7.84375 -5.78125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-7"> +<path style="stroke:none;" d="M -3.53125 -8 C -3.53125 -7.6875 -3.394531 -7.441406 -3.125 -7.265625 C -2.863281 -7.085938 -2.5 -7 -2.03125 -7 C -1.5625 -7 -1.191406 -7.085938 -0.921875 -7.265625 C -0.660156 -7.441406 -0.53125 -7.6875 -0.53125 -8 C -0.53125 -8.300781 -0.660156 -8.539062 -0.921875 -8.71875 C -1.191406 -8.894531 -1.5625 -8.984375 -2.03125 -8.984375 C -2.5 -8.984375 -2.863281 -8.894531 -3.125 -8.71875 C -3.394531 -8.539062 -3.53125 -8.300781 -3.53125 -8 Z M -4.21875 -8 C -4.21875 -8.5625 -4.019531 -9.007812 -3.625 -9.34375 C -3.226562 -9.675781 -2.695312 -9.84375 -2.03125 -9.84375 C -1.351562 -9.84375 -0.816406 -9.675781 -0.421875 -9.34375 C -0.0351562 -9.007812 0.15625 -8.5625 0.15625 -8 C 0.15625 -7.425781 -0.0351562 -6.972656 -0.421875 -6.640625 C -0.816406 -6.304688 -1.351562 -6.140625 -2.03125 -6.140625 C -2.695312 -6.140625 -3.226562 -6.304688 -3.625 -6.640625 C -4.019531 -6.972656 -4.21875 -7.425781 -4.21875 -8 Z M -7.484375 -2.453125 C -7.484375 -2.148438 -7.347656 -1.910156 -7.078125 -1.734375 C -6.816406 -1.554688 -6.453125 -1.46875 -5.984375 -1.46875 C -5.515625 -1.46875 -5.144531 -1.550781 -4.875 -1.71875 C -4.613281 -1.894531 -4.484375 -2.140625 -4.484375 -2.453125 C -4.484375 -2.765625 -4.613281 -3.007812 -4.875 -3.1875 C -5.144531 -3.363281 -5.515625 -3.453125 -5.984375 -3.453125 C -6.441406 -3.453125 -6.804688 -3.363281 -7.078125 -3.1875 C -7.347656 -3.007812 -7.484375 -2.765625 -7.484375 -2.453125 Z M -8.171875 -7.3125 L -8.171875 -8.171875 L 0.15625 -3.140625 L 0.15625 -2.28125 Z M -8.171875 -2.453125 C -8.171875 -3.015625 -7.972656 -3.460938 -7.578125 -3.796875 C -7.179688 -4.140625 -6.648438 -4.3125 -5.984375 -4.3125 C -5.304688 -4.3125 -4.769531 -4.144531 -4.375 -3.8125 C -3.988281 -3.476562 -3.796875 -3.023438 -3.796875 -2.453125 C -3.796875 -1.878906 -3.988281 -1.425781 -4.375 -1.09375 C -4.769531 -0.769531 -5.304688 -0.609375 -5.984375 -0.609375 C -6.648438 -0.609375 -7.179688 -0.773438 -7.578125 -1.109375 C -7.972656 -1.441406 -8.171875 -1.890625 -8.171875 -2.453125 Z M -8.171875 -2.453125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-8"> +<path style="stroke:none;" d="M -6.015625 -0.328125 L -6.015625 -1.375 L -0.96875 -3.25 L -6.015625 -5.140625 L -6.015625 -6.1875 L 0 -3.921875 L 0 -2.578125 Z M -6.015625 -0.328125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-9"> +<path style="stroke:none;" d="M -3.03125 -3.765625 C -3.03125 -2.972656 -2.9375 -2.421875 -2.75 -2.109375 C -2.5625 -1.804688 -2.25 -1.65625 -1.8125 -1.65625 C -1.46875 -1.65625 -1.191406 -1.769531 -0.984375 -2 C -0.773438 -2.226562 -0.671875 -2.539062 -0.671875 -2.9375 C -0.671875 -3.488281 -0.863281 -3.925781 -1.25 -4.25 C -1.644531 -4.582031 -2.160156 -4.75 -2.796875 -4.75 L -3.03125 -4.75 Z M -3.4375 -5.734375 L 0 -5.734375 L 0 -4.75 L -0.90625 -4.75 C -0.539062 -4.53125 -0.269531 -4.25 -0.09375 -3.90625 C 0.0703125 -3.570312 0.15625 -3.160156 0.15625 -2.671875 C 0.15625 -2.054688 -0.015625 -1.566406 -0.359375 -1.203125 C -0.703125 -0.835938 -1.164062 -0.65625 -1.75 -0.65625 C -2.425781 -0.65625 -2.9375 -0.878906 -3.28125 -1.328125 C -3.625 -1.785156 -3.796875 -2.46875 -3.796875 -3.375 L -3.796875 -4.75 L -3.890625 -4.75 C -4.347656 -4.75 -4.703125 -4.597656 -4.953125 -4.296875 C -5.203125 -4.003906 -5.328125 -3.585938 -5.328125 -3.046875 C -5.328125 -2.703125 -5.285156 -2.363281 -5.203125 -2.03125 C -5.117188 -1.707031 -4.992188 -1.394531 -4.828125 -1.09375 L -5.734375 -1.09375 C -5.878906 -1.457031 -5.984375 -1.8125 -6.046875 -2.15625 C -6.117188 -2.5 -6.15625 -2.828125 -6.15625 -3.140625 C -6.15625 -4.015625 -5.929688 -4.664062 -5.484375 -5.09375 C -5.035156 -5.519531 -4.351562 -5.734375 -3.4375 -5.734375 Z M -3.4375 -5.734375 "/> +</symbol> +<symbol overflow="visible" id="glyph2-10"> +<path style="stroke:none;" d="M -5.09375 -4.515625 C -5.15625 -4.410156 -5.203125 -4.289062 -5.234375 -4.15625 C -5.265625 -4.03125 -5.28125 -3.890625 -5.28125 -3.734375 C -5.28125 -3.171875 -5.097656 -2.738281 -4.734375 -2.4375 C -4.367188 -2.144531 -3.847656 -2 -3.171875 -2 L 0 -2 L 0 -1 L -6.015625 -1 L -6.015625 -2 L -5.078125 -2 C -5.441406 -2.195312 -5.710938 -2.460938 -5.890625 -2.796875 C -6.066406 -3.128906 -6.15625 -3.535156 -6.15625 -4.015625 C -6.15625 -4.085938 -6.148438 -4.160156 -6.140625 -4.234375 C -6.140625 -4.316406 -6.128906 -4.410156 -6.109375 -4.515625 Z M -5.09375 -4.515625 "/> +</symbol> +<symbol overflow="visible" id="glyph2-11"> +<path style="stroke:none;" d="M -6.015625 -1.03125 L -6.015625 -2.03125 L 0 -2.03125 L 0 -1.03125 Z M -8.359375 -1.03125 L -8.359375 -2.03125 L -7.109375 -2.03125 L -7.109375 -1.03125 Z M -8.359375 -1.03125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-12"> +<path style="stroke:none;" d="M -3.625 -6.03125 L 0 -6.03125 L 0 -5.046875 L -3.59375 -5.046875 C -4.164062 -5.046875 -4.59375 -4.9375 -4.875 -4.71875 C -5.15625 -4.5 -5.296875 -4.164062 -5.296875 -3.71875 C -5.296875 -3.1875 -5.125 -2.765625 -4.78125 -2.453125 C -4.445312 -2.148438 -3.988281 -2 -3.40625 -2 L 0 -2 L 0 -1 L -6.015625 -1 L -6.015625 -2 L -5.078125 -2 C -5.441406 -2.226562 -5.710938 -2.503906 -5.890625 -2.828125 C -6.066406 -3.148438 -6.15625 -3.519531 -6.15625 -3.9375 C -6.15625 -4.625 -5.941406 -5.144531 -5.515625 -5.5 C -5.085938 -5.851562 -4.457031 -6.03125 -3.625 -6.03125 Z M -3.625 -6.03125 "/> +</symbol> +<symbol overflow="visible" id="glyph2-13"> +<path style="stroke:none;" d="M -5.78125 -5.359375 L -4.859375 -5.359375 C -5.015625 -5.085938 -5.128906 -4.8125 -5.203125 -4.53125 C -5.285156 -4.25 -5.328125 -3.960938 -5.328125 -3.671875 C -5.328125 -3.035156 -5.125 -2.539062 -4.71875 -2.1875 C -4.3125 -1.832031 -3.738281 -1.65625 -3 -1.65625 C -2.269531 -1.65625 -1.703125 -1.832031 -1.296875 -2.1875 C -0.890625 -2.539062 -0.6875 -3.035156 -0.6875 -3.671875 C -0.6875 -3.960938 -0.722656 -4.25 -0.796875 -4.53125 C -0.867188 -4.8125 -0.984375 -5.085938 -1.140625 -5.359375 L -0.234375 -5.359375 C -0.0976562 -5.085938 0 -4.800781 0.0625 -4.5 C 0.125 -4.207031 0.15625 -3.894531 0.15625 -3.5625 C 0.15625 -2.65625 -0.125 -1.9375 -0.6875 -1.40625 C -1.257812 -0.875 -2.03125 -0.609375 -3 -0.609375 C -3.976562 -0.609375 -4.75 -0.875 -5.3125 -1.40625 C -5.875 -1.945312 -6.15625 -2.6875 -6.15625 -3.625 C -6.15625 -3.9375 -6.125 -4.234375 -6.0625 -4.515625 C -6 -4.804688 -5.90625 -5.085938 -5.78125 -5.359375 Z M -5.78125 -5.359375 "/> +</symbol> +<symbol overflow="visible" id="glyph2-14"> +<path style="stroke:none;" d="M -3.25 -6.1875 L -2.765625 -6.1875 L -2.765625 -1.640625 C -2.085938 -1.679688 -1.570312 -1.882812 -1.21875 -2.25 C -0.863281 -2.613281 -0.6875 -3.125 -0.6875 -3.78125 C -0.6875 -4.164062 -0.734375 -4.535156 -0.828125 -4.890625 C -0.921875 -5.242188 -1.054688 -5.597656 -1.234375 -5.953125 L -0.3125 -5.953125 C -0.15625 -5.597656 -0.0390625 -5.234375 0.03125 -4.859375 C 0.113281 -4.484375 0.15625 -4.109375 0.15625 -3.734375 C 0.15625 -2.765625 -0.117188 -2 -0.671875 -1.4375 C -1.234375 -0.882812 -1.992188 -0.609375 -2.953125 -0.609375 C -3.929688 -0.609375 -4.707031 -0.875 -5.28125 -1.40625 C -5.863281 -1.9375 -6.15625 -2.65625 -6.15625 -3.5625 C -6.15625 -4.363281 -5.894531 -5 -5.375 -5.46875 C -4.851562 -5.945312 -4.144531 -6.1875 -3.25 -6.1875 Z M -3.546875 -5.1875 C -4.085938 -5.1875 -4.519531 -5.035156 -4.84375 -4.734375 C -5.164062 -4.441406 -5.328125 -4.050781 -5.328125 -3.5625 C -5.328125 -3.007812 -5.171875 -2.566406 -4.859375 -2.234375 C -4.546875 -1.910156 -4.109375 -1.722656 -3.546875 -1.671875 Z M -3.546875 -5.1875 "/> +</symbol> +</g> +<clipPath id="clip1"> + <path d="M 0 94.957031 L 576 94.957031 L 576 481.039062 L 0 481.039062 Z M 0 94.957031 "/> +</clipPath> +</defs> +<g id="surface6"> +<rect x="0" y="0" width="576" height="576" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> +<g clip-path="url(#clip1)" clip-rule="nonzero"> +<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.066978;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 481.042969 L 576 481.042969 L 576 94.960938 L 0 94.960938 Z M 0 481.042969 "/> +</g> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:10;" d="M 59.453125 249.351562 C 59.453125 254.089844 52.34375 254.089844 52.34375 249.351562 C 52.34375 244.609375 59.453125 244.609375 59.453125 249.351562 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:10;" d="M 82.5625 280.96875 C 82.5625 285.710938 75.453125 285.710938 75.453125 280.96875 C 75.453125 276.230469 82.5625 276.230469 82.5625 280.96875 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:10;" d="M 67.847656 240.792969 C 67.847656 245.53125 60.734375 245.53125 60.734375 240.792969 C 60.734375 236.050781 67.847656 236.050781 67.847656 240.792969 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:1;stroke-miterlimit:10;" d="M 374.410156 116.1875 C 374.410156 120.925781 367.300781 120.925781 367.300781 116.1875 C 367.300781 111.445312 374.410156 111.445312 374.410156 116.1875 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:1;stroke-miterlimit:10;" d="M 373.980469 249.640625 C 373.980469 254.378906 366.871094 254.378906 366.871094 249.640625 C 366.871094 244.898438 373.980469 244.898438 373.980469 249.640625 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:1;stroke-miterlimit:10;" d="M 348.746094 431.144531 C 348.746094 435.882812 341.636719 435.882812 341.636719 431.144531 C 341.636719 426.402344 348.746094 426.402344 348.746094 431.144531 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="20.21875" y="448.242188"/> + <use xlink:href="#glyph0-2" x="23.394531" y="448.242188"/> + <use xlink:href="#glyph0-3" x="28.993164" y="448.242188"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="20.21875" y="356.128906"/> + <use xlink:href="#glyph0-4" x="23.394531" y="356.128906"/> + <use xlink:href="#glyph0-3" x="28.993164" y="356.128906"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="29.21875" y="264.015625"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-4" x="23.21875" y="171.902344"/> + <use xlink:href="#glyph0-3" x="28.817383" y="171.902344"/> +</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 37.410156 445.574219 L 40.152344 445.574219 "/> +<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 37.410156 353.460938 L 40.152344 353.460938 "/> +<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 37.410156 261.347656 L 40.152344 261.347656 "/> +<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 37.410156 169.234375 L 40.152344 169.234375 "/> +<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 57.929688 449.628906 L 57.929688 446.890625 "/> +<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 136.105469 449.628906 L 136.105469 446.890625 "/> +<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 214.277344 449.628906 L 214.277344 446.890625 "/> +<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 292.453125 449.628906 L 292.453125 446.890625 "/> +<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 370.625 449.628906 L 370.625 446.890625 "/> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="50.429688" y="457.988281"/> + <use xlink:href="#glyph0-5" x="53.605469" y="457.988281"/> + <use xlink:href="#glyph0-3" x="59.204102" y="457.988281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-1" x="128.605469" y="457.988281"/> + <use xlink:href="#glyph0-2" x="131.78125" y="457.988281"/> + <use xlink:href="#glyph0-3" x="137.379883" y="457.988281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-3" x="211.277344" y="457.988281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-2" x="286.453125" y="457.988281"/> + <use xlink:href="#glyph0-3" x="292.051758" y="457.988281"/> +</g> +<g style="fill:rgb(30.196078%,30.196078%,30.196078%);fill-opacity:1;"> + <use xlink:href="#glyph0-5" x="364.625" y="457.988281"/> + <use xlink:href="#glyph0-3" x="370.223633" y="457.988281"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-1" x="161.375" y="471.773438"/> + <use xlink:href="#glyph1-2" x="168.008789" y="471.773438"/> + <use xlink:href="#glyph1-3" x="175.689453" y="471.773438"/> + <use xlink:href="#glyph1-4" x="182.688477" y="471.773438"/> + <use xlink:href="#glyph1-5" x="186.394531" y="471.773438"/> + <use xlink:href="#glyph1-6" x="189.891602" y="471.773438"/> + <use xlink:href="#glyph1-3" x="196.890625" y="471.773438"/> + <use xlink:href="#glyph1-7" x="203.889648" y="471.773438"/> + <use xlink:href="#glyph1-5" x="214.341797" y="471.773438"/> + <use xlink:href="#glyph1-8" x="217.838867" y="471.773438"/> + <use xlink:href="#glyph1-9" x="224.348633" y="471.773438"/> + <use xlink:href="#glyph1-10" x="231.089844" y="471.773438"/> + <use xlink:href="#glyph1-11" x="235.612305" y="471.773438"/> + <use xlink:href="#glyph1-9" x="238.668945" y="471.773438"/> + <use xlink:href="#glyph1-12" x="245.410156" y="471.773438"/> + <use xlink:href="#glyph1-13" x="252.381836" y="471.773438"/> + <use xlink:href="#glyph1-14" x="258.429688" y="471.773438"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph2-1" x="13.691406" y="322.164062"/> + <use xlink:href="#glyph2-2" x="13.691406" y="315.530273"/> + <use xlink:href="#glyph2-3" x="13.691406" y="307.849609"/> + <use xlink:href="#glyph2-4" x="13.691406" y="300.850586"/> + <use xlink:href="#glyph2-5" x="13.691406" y="297.144531"/> + <use xlink:href="#glyph2-6" x="13.691406" y="293.647461"/> + <use xlink:href="#glyph2-7" x="13.691406" y="286.648438"/> + <use xlink:href="#glyph2-5" x="13.691406" y="276.196289"/> + <use xlink:href="#glyph2-8" x="13.691406" y="272.699219"/> + <use xlink:href="#glyph2-9" x="13.691406" y="266.189453"/> + <use xlink:href="#glyph2-10" x="13.691406" y="259.448242"/> + <use xlink:href="#glyph2-11" x="13.691406" y="254.925781"/> + <use xlink:href="#glyph2-9" x="13.691406" y="251.869141"/> + <use xlink:href="#glyph2-12" x="13.691406" y="245.12793"/> + <use xlink:href="#glyph2-13" x="13.691406" y="238.15625"/> + <use xlink:href="#glyph2-14" x="13.691406" y="232.108398"/> +</g> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 397.5625 305.164062 L 570.519531 305.164062 L 570.519531 242.164062 L 397.5625 242.164062 Z M 397.5625 305.164062 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph1-15" x="403.042969" y="257.355469"/> + <use xlink:href="#glyph1-9" x="408.360352" y="257.355469"/> + <use xlink:href="#glyph1-13" x="415.101562" y="257.355469"/> + <use xlink:href="#glyph1-16" x="421.149414" y="257.355469"/> + <use xlink:href="#glyph1-17" x="425.462891" y="257.355469"/> + <use xlink:href="#glyph1-10" x="432.193359" y="257.355469"/> + <use xlink:href="#glyph1-18" x="435.706055" y="257.355469"/> + <use xlink:href="#glyph1-18" x="439.203125" y="257.355469"/> + <use xlink:href="#glyph1-1" x="442.700195" y="257.355469"/> + <use xlink:href="#glyph1-19" x="449.333984" y="257.355469"/> + <use xlink:href="#glyph1-17" x="456.305664" y="257.355469"/> + <use xlink:href="#glyph1-16" x="463.036133" y="257.355469"/> + <use xlink:href="#glyph1-17" x="467.349609" y="257.355469"/> + <use xlink:href="#glyph1-20" x="474.080078" y="257.355469"/> + <use xlink:href="#glyph1-21" x="479.811523" y="257.355469"/> + <use xlink:href="#glyph1-12" x="486.321289" y="257.355469"/> + <use xlink:href="#glyph1-16" x="493.292969" y="257.355469"/> + <use xlink:href="#glyph1-19" x="497.606445" y="257.355469"/> + <use xlink:href="#glyph1-14" x="504.578125" y="257.355469"/> + <use xlink:href="#glyph1-20" x="511.345703" y="257.355469"/> + <use xlink:href="#glyph1-11" x="517.077148" y="257.355469"/> + <use xlink:href="#glyph1-20" x="520.133789" y="257.355469"/> + <use xlink:href="#glyph1-18" x="525.865234" y="257.355469"/> + <use xlink:href="#glyph1-22" x="529.362305" y="257.355469"/> + <use xlink:href="#glyph1-17" x="540.078125" y="257.355469"/> + <use xlink:href="#glyph1-23" x="546.808594" y="257.355469"/> + <use xlink:href="#glyph1-14" x="553.791016" y="257.355469"/> + <use xlink:href="#glyph1-18" x="560.558594" y="257.355469"/> +</g> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;" d="M 403.042969 282.402344 L 420.324219 282.402344 L 420.324219 265.121094 L 403.042969 265.121094 Z M 403.042969 282.402344 "/> +<path style="fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(97.254902%,46.27451%,42.745098%);stroke-opacity:1;stroke-miterlimit:10;" d="M 415.238281 273.765625 C 415.238281 278.503906 408.125 278.503906 408.125 273.765625 C 408.125 269.023438 415.238281 269.023438 415.238281 273.765625 "/> +<path style=" stroke:none;fill-rule:nonzero;fill:rgb(94.901961%,94.901961%,94.901961%);fill-opacity:1;" d="M 403.042969 299.683594 L 420.324219 299.683594 L 420.324219 282.402344 L 403.042969 282.402344 Z M 403.042969 299.683594 "/> +<path style="fill-rule:nonzero;fill:rgb(0%,74.901961%,76.862745%);fill-opacity:1;stroke-width:0.708661;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,74.901961%,76.862745%);stroke-opacity:1;stroke-miterlimit:10;" d="M 415.238281 291.042969 C 415.238281 295.785156 408.125 295.785156 408.125 291.042969 C 408.125 286.304688 415.238281 286.304688 415.238281 291.042969 "/> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-6" x="425.800781" y="276.433594"/> + <use xlink:href="#glyph0-7" x="431.945312" y="276.433594"/> + <use xlink:href="#glyph0-8" x="437.964844" y="276.433594"/> +</g> +<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use xlink:href="#glyph0-9" x="425.800781" y="293.710938"/> + <use xlink:href="#glyph0-10" x="429.225586" y="293.710938"/> + <use xlink:href="#glyph0-6" x="434.639648" y="293.710938"/> + <use xlink:href="#glyph0-11" x="440.78418" y="293.710938"/> +</g> +</g> +</svg> diff --git a/runs/deseq2/results_stats.csv b/runs/deseq2/results_stats.csv new file mode 100644 index 0000000..b190038 --- /dev/null +++ b/runs/deseq2/results_stats.csv @@ -0,0 +1,31435 @@ +"","baseMean","log2FoldChange","lfcSE","stat","pvalue","padj" +"Tfru06123_t",5766.93474268222,-5.19666288380553,0.914565713256868,-5.68210988940275,1.33043128038418e-08,1.35587668738607e-07 +"Tfru30712_t",5766.93474268222,-5.19666288380553,0.914565713256868,-5.68210988940275,1.33043128038418e-08,1.35587668738607e-07 +"Tfru03648_t",597.808860311994,0.231442641785911,0.20295876818541,1.1403431537113,0.254143365905517,0.391097334041496 +"Tfru14711_t",545.962969481563,2.18876669435332,0.205941134998572,10.6281180511533,2.20517356673153e-26,1.33744673234286e-24 +"Tfru14834_t",0,NA,NA,NA,NA,NA +"Tfru14835_t",4.74841592896466,2.62566598559686,1.15523501103296,2.27284142232592,0.0230357378478922,0.0573267889509426 +"Tfru14836_t",169.026648247666,-0.041778034226949,0.225190417455132,-0.18552314392007,0.852818729123342,0.908385281889505 +"Tfru09187_t",103.358759277322,-0.131941879472838,0.24285667799711,-0.543291131876589,0.586929369149785,0.714189535581406 +"Tfru09188_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru09189_t",504.744229824132,-2.38311341229238,0.231358668806329,-10.3005148870704,7.00851610418196e-25,3.83497776067463e-23 +"Tfru09190_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203641,0.621278915456996,NA +"Tfru09191_t",1.74007185827793,0.569197341189347,1.4919497860583,0.381512398411983,0.702823073046402,0.806252518057229 +"Tfru09192_t",30.1415258261492,-0.719891173529147,0.376651782755661,-1.91129102924265,0.0559671912494478,0.119153894612123 +"Tfru09193_t",48.2445681627276,0.766919696615697,0.315882751596521,2.42786189730071,0.0151881254618057,0.0405669230021736 +"Tfru09194_t",0.688204388670049,2.85256041546746,2.42674611925328,1.17546717921412,0.239807860483933,NA +"Tfru09195_t",0,NA,NA,NA,NA,NA +"Tfru09196_t",0,NA,NA,NA,NA,NA +"Tfru09197_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru09198_t",124.301970487,3.12828798285167,0.315083346634784,9.92844596917938,3.13096963285319e-23,1.49724573468492e-21 +"Tfru09199_t",0,NA,NA,NA,NA,NA +"Tfru09200_t",0.898574901647472,-3.30454721659277,2.28146697687776,-1.44843087806387,0.147496584320144,0.258373008538261 +"Tfru09201_t",45.4307453496945,1.10458568153129,0.330195097859014,3.34525160637885,0.000822079576394656,0.00326903712148408 +"Tfru09202_t",5.16623900269553,0.481326367716194,0.856523655769862,0.561953385027723,0.574147779550893,0.703230478674967 +"Tfru09203_t",84.9470660118129,0.142540783982262,0.319542212858679,0.446078102505042,0.655540829782115,0.770616859466527 +"Tfru09204_t",0,NA,NA,NA,NA,NA +"Tfru09205_t",81.1986618972371,-0.514753184741919,0.278637007577528,-1.84739704613248,0.0646896169967449,0.134128529660953 +"Tfru09206_t",0,NA,NA,NA,NA,NA +"Tfru09207_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru09208_t",45.1577692560795,2.5527514036218,0.417472995994762,6.11477012432639,9.66962480727575e-10,1.15849145174963e-08 +"Tfru09209_t",218.589779883492,0.71855874445425,0.227911499335412,3.15279723291523,0.001617140931532,0.00593110685802789 +"Tfru09210_t",1.86121006807844,3.23525439411408,2.0809319587252,1.55471416571257,0.12001415934396,0.219922777869306 +"Tfru09211_t",225.597795831344,0.818436481146347,0.208816859258444,3.91939848177393,8.87702422162864e-05,0.000447585183875555 +"Tfru09212_t",1.86891895925703,-1.18700886859975,1.65056028309276,-0.719155114029263,0.472045352173768,0.612711691314751 +"Tfru09213_t",105.129966740306,2.23160993753343,0.291573197531194,7.65368681493669,1.952975783302e-14,4.24345611944648e-13 +"Tfru09214_t",728.574283966734,0.638354596560269,0.320572515307531,1.99129546694882,0.0464484135333808,0.102591275010377 +"Tfru09215_t",0,NA,NA,NA,NA,NA +"Tfru09216_t",113.952126522646,1.26661770638805,0.425943459319068,2.97367568083549,0.00294255906711385,0.0100372613811931 +"Tfru09217_t",38.6551992397955,2.44791559732441,0.448063767758728,5.46331967337862,4.67311954692175e-08,4.37591696485811e-07 +"Tfru09218_t",1.61846952402406,0.587669655845971,1.48073914286343,0.396875883695183,0.691458988873415,0.797138627259416 +"Tfru09219_t",2.1596470104762,0.584409687307566,1.20648099074739,0.484391956267406,0.628107725934743,0.748695428306062 +"Tfru09220_t",0,NA,NA,NA,NA,NA +"Tfru09221_t",82.0089536813487,0.43776028787353,0.311413630213275,1.40571974185499,0.159807362339797,0.27479744672798 +"Tfru09222_t",301.188647616591,0.621036138872763,0.21182726725707,2.9318045165502,0.0033699879843486,0.0112702228167546 +"Tfru09223_t",326.518633230054,-0.456011174879246,0.218596983816083,-2.08608173323613,0.0369712200559996,0.084594203542917 +"Tfru09224_t",210.698338958186,-0.0637486813261724,0.185805841124963,-0.343092988574555,0.731528505669305,0.826578407935456 +"Tfru09225_t",159.78118883877,0.0556973824125971,0.275946649592284,0.201841125793304,0.840040929429141,0.899914604404968 +"Tfru09226_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru09227_t",7.97806077906824,-0.272852306126983,0.664078247599053,-0.410873729283363,0.681165126655211,0.78962653952538 +"Tfru01397_t",39.0176080644904,0.147900455874134,0.306982750951534,0.481787512215902,0.629956901356056,0.750395755394322 +"Tfru01398_t",21.1549535646608,0.0364206584503604,0.441548162639976,0.0824839995542154,0.93426184148081,0.960789909575796 +"Tfru01399_t",11.6466820848847,2.5697800943979,0.663361932894025,3.87387332159205,0.000107119108976484,0.000531086765372999 +"Tfru01400_t",195.50047691278,-0.335196604558642,0.233912649968671,-1.43299904730905,0.151858109582378,0.264146319165173 +"Tfru01401_t",0.502283943991191,-2.48369053665678,3.23957080071676,-0.766672713591339,0.443276130926153,NA +"Tfru01402_t",64.7130479070832,-0.73235251255834,0.264174952866919,-2.77222539309875,0.00556744719339256,0.01740216036147 +"Tfru01403_t",0,NA,NA,NA,NA,NA +"Tfru01404_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru01405_t",3.13237900355795,-1.4007893936355,1.46363655131548,-0.957060953674947,0.338536490269493,0.483876284925096 +"Tfru05778_t",227.252231534369,1.909644280264,0.470600197738246,4.05789094318691,4.95178803729493e-05,0.000264174055481909 +"Tfru05779_t",2812.94175666576,1.91606181361487,0.321986877545388,5.95074503725628,2.66924619856975e-09,3.00642828001968e-08 +"Tfru05780_t",61.843539497741,0.314481677298332,0.269965266273535,1.1648968092795,0.24406076521122,0.379416499404494 +"Tfru05781_t",301.879870777011,-0.754011173348107,0.164441955725184,-4.58527247515965,4.53394768621669e-06,2.97478010019142e-05 +"Tfru30618_t",17.7831948034205,-0.223758613473976,0.510551473300716,-0.438268470811329,0.661191678783946,0.774668465481754 +"Tfru30619_t",23.0271845360892,0.556543575097631,0.431039778503775,1.29116523080423,0.196646388733613,0.32217761199548 +"Tfru30620_t",194.727630035449,-0.936481863875148,0.22587101196357,-4.14609141622028,3.38198845189089e-05,0.000186747844937868 +"Tfru30621_t",192.348032597997,0.0658344177591729,0.176764491029856,0.372441418384495,0.709564220941274,0.811141866968737 +"Tfru20942_t",7.36854888588188,4.3451407552139,1.20854352285562,3.59535314454125,0.00032395183225356,0.00142857970558319 +"Tfru31153_t",12.5608066310836,2.51689660639936,0.724857472587656,3.47226413685759,0.000516088286338666,0.00216333692606469 +"Tfru31154_t",99.0570365017401,-0.0904585339155199,0.268758602077779,-0.336579120505104,0.736434198166159,0.829893462176287 +"Tfru31155_t",2538.34783100178,-0.612740935396966,0.443856991608862,-1.38049179573796,0.16743527398539,0.284785030536025 +"Tfru31156_t",0,NA,NA,NA,NA,NA +"Tfru31157_t",0,NA,NA,NA,NA,NA +"Tfru31158_t",0,NA,NA,NA,NA,NA +"Tfru31159_t",1.29495872081475,-0.456285046591036,1.93040192004908,-0.23636789927117,0.813147203186434,0.881569268386978 +"Tfru31160_t",368.029092250968,-0.359730113551783,0.190058423999945,-1.89273438125472,0.0583932017662642,0.123290259264619 +"Tfru31161_t",5.2765945712025,-0.214505236714531,0.815814222571656,-0.262933926351953,0.792601506603822,0.868806470969954 +"Tfru31162_t",8.32133969926365,0.899168052145352,0.67500324853953,1.33209440708743,0.18282916796521,0.30485149598133 +"Tfru31163_t",339.446438135212,-0.239450849966574,0.245559944504018,-0.975121779124919,0.329499856540337,0.475212842412935 +"Tfru31164_t",0,NA,NA,NA,NA,NA +"Tfru31165_t",290.407503309477,0.199038180740808,0.178304667801818,1.11628138059759,0.264301709044089,0.403320495731347 +"Tfru31166_t",2.54852008073881,4.7784405160799,2.00327768561522,2.38531110808655,0.0170646833254258,0.0447355760598604 +"Tfru31167_t",14.39471653494,5.40239648972366,1.32659388162028,4.07238158156231,4.65348605530517e-05,0.000249808150438306 +"Tfru31168_t",16.6613013111346,3.96243734393274,0.81982899346385,4.83324861101958,1.343228687679e-06,9.69724452588905e-06 +"Tfru31169_t",0,NA,NA,NA,NA,NA +"Tfru31170_t",774.599878234624,1.16793430304062,0.177489327997642,6.58030720053289,4.69477246246843e-11,6.72226536852485e-10 +"Tfru31171_t",451.084059220244,0.76156626147175,0.145080750561272,5.24925779971147,1.52713236260178e-07,1.31198550000106e-06 +"Tfru31172_t",0,NA,NA,NA,NA,NA +"Tfru31173_t",485.582384908667,-0.145122840439854,0.150159934401089,-0.96645514010561,0.333816483970017,0.479513023828561 +"Tfru31174_t",8.80070136207597,3.22637787079104,0.857478898502531,3.76263238247083,0.000168134257570198,0.00079992446522556 +"Tfru31175_t",134.101042014379,-0.663750160415673,0.253938977972138,-2.61381756245588,0.00895368325311906,0.0260576633556313 +"Tfru06117_t",0,NA,NA,NA,NA,NA +"Tfru23535_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru23536_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru26940_t",0,NA,NA,NA,NA,NA +"Tfru26941_t",350.51890576241,-0.111068226011008,0.169027626191888,-0.65710102255662,0.511115961458725,0.648236156491345 +"Tfru26942_t",31.5554048227026,-0.46399678118943,0.350972983489606,-1.32202990833103,0.186158191844155,0.309158528752759 +"Tfru26943_t",5.05562344144338,-0.0102147783306774,0.843378129168181,-0.0121117420257888,0.990336464298033,0.995597338528484 +"Tfru26944_t",0,NA,NA,NA,NA,NA +"Tfru26945_t",0,NA,NA,NA,NA,NA +"Tfru26946_t",0.582700866997245,2.61076257348193,3.98225659634252,0.655598781826308,0.512082309527966,NA +"Tfru06765_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru06766_t",10.8368082368089,0.737698151248462,0.613166291921225,1.2030963883175,0.228939022869655,0.362121386192701 +"Tfru06767_t",89.5764166128701,-0.358554608440165,0.25248110402132,-1.42012452706119,0.155571430911652,0.269397138951004 +"Tfru06768_t",6.83346547614836,-0.562211119992069,0.706676438118018,-0.795570772798536,0.426281560087173,0.571405205722984 +"Tfru06769_t",0,NA,NA,NA,NA,NA +"Tfru06770_t",142.554900553794,-1.19621021581564,0.26656932229653,-4.48742640567237,7.20887018011526e-06,4.54079692178383e-05 +"Tfru06771_t",0,NA,NA,NA,NA,NA +"Tfru06772_t",0,NA,NA,NA,NA,NA +"Tfru06773_t",0,NA,NA,NA,NA,NA +"Tfru06774_t",23.9342854131793,2.0980325735488,0.467793601866245,4.48495354613397,7.29298216104734e-06,4.58088523054279e-05 +"Tfru09709_t",172.795744768091,-0.0412176666405974,0.352966318560326,-0.116775070235357,0.90703829963785,0.943066998647855 +"Tfru09710_t",419.117688303768,1.23445963467134,0.218419233676597,5.65178997239387,1.58785538065407e-08,1.6021732830946e-07 +"Tfru09711_t",3.58007230704944,5.26028935315448,1.54962619475507,3.39455371299136,0.000687405543653682,0.00279110109546852 +"Tfru09712_t",291.738187795946,-0.158381120058422,0.160270387808988,-0.988211997385209,0.323048833676387,0.468101838632409 +"Tfru09713_t",234.736321116527,-0.188675933844042,0.226355445460399,-0.833538302824045,0.404541205130327,0.550439699101211 +"Tfru09714_t",838.975769456668,-0.340135235073621,0.18224112076495,-1.86640223482997,0.0619851106924626,0.129647362364235 +"Tfru09715_t",122.958985528783,-4.76078898456155,0.460607714752327,-10.3358863346904,4.84908391458306e-25,2.67956785205849e-23 +"Tfru09716_t",243.21899372523,-0.84738368998733,0.347391473048151,-2.43927602065776,0.0147167225409385,0.039515447176071 +"Tfru09717_t",349.040045069583,-0.865366635926169,0.166657420635204,-5.19248787499458,2.0750238817486e-07,1.73994134408144e-06 +"Tfru09718_t",502.515951891007,2.13476352638907,0.40047978145643,5.33051511021493,9.79345841011762e-08,8.70443205792027e-07 +"Tfru09719_t",303.972257931976,2.52900925810592,0.220186011586081,11.4857853134654,1.55515851038263e-30,1.26103070515809e-28 +"Tfru09720_t",57.2869699867851,0.0409390866463625,0.307447298440665,0.133158062711888,0.894068376529829,0.935055388884414 +"Tfru09721_t",9.27665022759323,-0.313099943802365,0.735365944267339,-0.425774332144676,0.670272292126179,0.781856244020843 +"Tfru09722_t",182.550592982783,-0.642735279991902,0.204260747678332,-3.14664117945987,0.00165157506667199,0.00604601173504391 +"Tfru09723_t",154.440352466921,-0.206944487121242,0.22075065884299,-0.937458072405723,0.348522981165728,0.494203360846575 +"Tfru09724_t",32.4802090286017,0.709504702843271,0.431740279825201,1.64335999210111,0.100308472633205,0.190959422496845 +"Tfru09725_t",0,NA,NA,NA,NA,NA +"Tfru09726_t",144.623905309527,0.687423103835243,0.192491683765039,3.57118339031379,0.000355371949938281,0.0015530607771175 +"Tfru09727_t",226.480622247418,0.495860286860468,0.221750313425996,2.23611989178067,0.0253439187825682,0.0619278198879655 +"Tfru09728_t",250.633668917886,-0.483032927938465,0.210210313537253,-2.29785551341592,0.0215700139712693,0.0543255584826701 +"Tfru09729_t",39.2625423410897,-0.569571562787351,0.314660751065814,-1.81011314839269,0.0702782423890462,0.14363717485542 +"Tfru09730_t",60.1408668435435,-0.471049356579673,0.329804982138357,-1.42826634554011,0.153215210716929,0.266078716213617 +"Tfru12095_t",0,NA,NA,NA,NA,NA +"Tfru26711_t",0,NA,NA,NA,NA,NA +"Tfru26712_t",0.641653521860136,-2.8469004673447,2.95514714948931,-0.963370121124657,0.335361815141188,NA +"Tfru26713_t",121.003042752907,-0.479792865335903,0.436147508111955,-1.10007017445287,0.271301547758184,0.411029558545096 +"Tfru26714_t",0,NA,NA,NA,NA,NA +"Tfru26715_t",181.270018390473,-0.317848537173055,0.181231473211181,-1.75382637210415,0.0794602627473854,0.158269907465867 +"Tfru26716_t",10.2837246738513,2.92636968557091,0.81350711293794,3.59722691913839,0.000321627879350978,0.00141945019520309 +"Tfru26717_t",0,NA,NA,NA,NA,NA +"Tfru26718_t",228.271326536352,0.581804518396601,0.2055481693747,2.83050206755193,0.00464750108071128,0.0148650956390337 +"Tfru26719_t",81.6283107507364,0.688533968004108,0.260289253359577,2.64526467811152,0.00816270409130018,0.0241386518978988 +"Tfru26720_t",133.722547808795,0.462590172297363,0.461410482569034,1.00255670335394,0.316074794833111,0.460680814611855 +"Tfru26721_t",267.853118736326,-0.132919384173582,0.21941318896845,-0.605794869481134,0.544650977032247,0.677069869798461 +"Tfru26722_t",67.0469468415281,-0.28050548679277,0.265506852682672,-1.05649057249767,0.290744145721926,0.432924416583946 +"Tfru26723_t",183.102074601128,-0.13331725507007,0.2149099434116,-0.620340096664294,0.535033901813318,0.669071371112332 +"Tfru26724_t",749.59101531547,-1.55686379331542,0.195956980089296,-7.94492644562073,1.94306047055506e-15,4.72670579685025e-14 +"Tfru26725_t",16.2836640610569,1.6826609866244,0.528249458291706,3.18535298089262,0.00144577544014343,0.00537533414169973 +"Tfru26726_t",0,NA,NA,NA,NA,NA +"Tfru26727_t",67.4624856843792,-0.438138409338942,0.251588958252579,-1.74148504919313,0.0815985916995123,0.161723032433146 +"Tfru26728_t",37.8785947103578,1.18136292209,0.38410542582957,3.07562154202471,0.00210064292804992,0.00746109962383069 +"Tfru26729_t",263.876364487901,-1.01246552539874,0.200375526336231,-5.0528402540529,4.3528795221454e-07,3.47423123058538e-06 +"Tfru26730_t",84.3924263620289,-1.28204751599067,0.246928052666581,-5.19198812020676,2.08060282362981e-07,1.74396596227847e-06 +"Tfru09648_t",1412.3299753793,-0.485407171914216,0.152223914204276,-3.18877079499366,0.00142879116643961,0.00532229465794249 +"Tfru09649_t",67.1664587265719,-0.346541933299442,0.277806463546007,-1.24742214013337,0.212242752624477,0.341701518145154 +"Tfru09650_t",282.8134137249,1.62740385766557,0.270499606282059,6.01628919181723,1.78460637304407e-09,2.06192517443088e-08 +"Tfru09651_t",381.274207920642,0.761591927426758,0.291486255488976,2.61278846973134,0.00898068672431935,0.0261234512720259 +"Tfru09652_t",0,NA,NA,NA,NA,NA +"Tfru09653_t",0,NA,NA,NA,NA,NA +"Tfru09654_t",1716.76430001856,-0.547356839042504,0.148430297767994,-3.68763552504663,0.000226347546321318,0.00103953582734888 +"Tfru09655_t",7.97460794812652,0.533706225878746,0.752870577632966,0.708895050138265,0.478389607023947,0.618189043639441 +"Tfru09656_t",813.727206411977,-4.65630363670978,0.344340296127665,-13.5223895927169,1.15366580112031e-41,1.79298893257448e-39 +"Tfru09657_t",66.1186443576105,-0.00593118436024932,0.259539980264725,-0.0228526809403301,0.981767785665776,0.990307975084512 +"Tfru09658_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru09659_t",3.2659129955822,-0.0720136491304512,1.06421404435062,-0.0676683882464584,0.946049614135148,0.968066863167876 +"Tfru09660_t",0,NA,NA,NA,NA,NA +"Tfru09661_t",0,NA,NA,NA,NA,NA +"Tfru09662_t",2.59869434758606,3.73120506328882,1.59281451088817,2.34252327423126,0.0191538393034217,0.049277264468396 +"Tfru09663_t",80.9755728706301,0.324981929999817,0.24084953789485,1.34931514853766,0.177235761952817,0.297810372588336 +"Tfru09664_t",36.4539949511634,3.25515462808099,0.501065525480123,6.49646495827445,8.22292576338017e-11,1.14731345750903e-09 +"Tfru09665_t",17.9723065844749,-1.14639725960676,0.56597674552577,-2.02552007422462,0.0428139893007447,0.095779396296548 +"Tfru09666_t",0.32955266786588,-0.0642989587579764,3.75808704636274,-0.0171094916016403,0.986349266818334,NA +"Tfru27902_t",108.143335456818,-1.24098177511213,0.248469436496106,-4.99450472706963,5.89869468942689e-07,4.5600271899611e-06 +"Tfru27903_t",0,NA,NA,NA,NA,NA +"Tfru27904_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru18319_t",3.6897991631229,1.72985361066551,1.03924076524717,1.66453594634934,0.0960053737425001,0.184223635801865 +"Tfru18320_t",33.8304928104679,0.764646951551756,0.377218013995908,2.02706902422759,0.0426553541809992,0.0954722298800641 +"Tfru18321_t",35.4027112616065,0.866993213938637,0.355406704505157,2.4394396699572,0.0147100586667577,0.0395116554203116 +"Tfru18322_t",91.7602142655661,-1.01262215252328,0.308385653637319,-3.28362276448239,0.0010248199899499,0.00397564073064286 +"Tfru18323_t",0,NA,NA,NA,NA,NA +"Tfru18324_t",162.103519113844,-0.241343521767043,0.257648069406968,-0.936717757375581,0.34890375956491,0.494586551217395 +"Tfru18325_t",306.847242232764,-0.289509023806663,0.267783788743819,-1.08112976205452,0.279639396132733,0.420699763743651 +"Tfru18326_t",31.0411709393874,-1.11657555804626,0.374766396885038,-2.97939080805255,0.00288822148526903,0.00987147172271241 +"Tfru18327_t",110.966925733862,1.22752913366317,0.307452097664822,3.99258662727159,6.53564449638256e-05,0.000339762424689992 +"Tfru18328_t",5.75073642820371,-4.08659741402779,1.2810326178322,-3.19008068736239,0.00142233076618096,0.00530087636088757 +"Tfru02059_t",0,NA,NA,NA,NA,NA +"Tfru27779_t",5.02250610006283,-0.232418932491281,0.831564750625476,-0.279495892913286,0.779864289469466,0.860237705077956 +"Tfru19265_t",0,NA,NA,NA,NA,NA +"Tfru19266_t",6.25974714868712,5.04398188701196,1.39731949532831,3.60975560984844,0.000306485628050788,0.00136067215944786 +"Tfru19267_t",2.65274905961616,4.81286442179001,1.67482394632602,2.87365393380465,0.00405753293370055,0.0132160656463715 +"Tfru19268_t",693.063528554948,-0.227683275254615,0.162078598994539,-1.40477075114825,0.160089459228361,0.274866409591222 +"Tfru19269_t",0,NA,NA,NA,NA,NA +"Tfru22611_t",299.437728585005,-0.181026441283012,0.258615836716689,-0.699982041244154,0.483938519900943,0.622946282950829 +"Tfru05984_t",0,NA,NA,NA,NA,NA +"Tfru05985_t",201.335847067901,0.751380307519883,0.192992867028946,3.89330610549035,9.88872448526171e-05,0.000493664184653484 +"Tfru05986_t",448.194915695674,-0.834062554569788,0.150815718586641,-5.53034234353122,3.19606430613059e-08,3.06855080099539e-07 +"Tfru05987_t",0,NA,NA,NA,NA,NA +"Tfru05988_t",121.998545693091,6.57655656316535,1.49433851154918,4.40098178045846,1.07762173935237e-05,6.57502031807691e-05 +"Tfru05989_t",399.177995075153,0.252058438583883,0.195670625725347,1.2881771990533,0.197684287099088,0.323404557403332 +"Tfru05990_t",227.736320922667,1.56555718653854,0.27029031848072,5.79213193923633,6.94985100188933e-09,7.39598979658979e-08 +"Tfru05991_t",1974.87525950865,-2.75600565758753,0.317150041647158,-8.68991106945428,3.62723310969319e-18,1.15637431616714e-16 +"Tfru05992_t",84.7022983992415,1.4552044249615,0.270139301276886,5.38686676867486,7.16965396892588e-08,6.53592080751777e-07 +"Tfru05993_t",1713.17260907986,0.0114542541486801,0.20374746265948,0.056217898368744,0.955168222874326,0.974457073798943 +"Tfru05994_t",12.1021374753882,1.40630709691888,0.745440164729267,1.88654591402333,0.0592214273162107,0.124788206697749 +"Tfru05995_t",168.826552645267,1.12137484135241,0.234733248498035,4.7772305309437,1.77725980892826e-06,1.25552634229212e-05 +"Tfru05996_t",513.804195401583,0.847765553655688,0.192308573773408,4.40836067275184,1.0415599051315e-05,6.37934063405662e-05 +"Tfru05997_t",58.8921480421752,0.21137566726234,0.323261693188433,0.653884056528547,0.513186506452836,0.649941373686519 +"Tfru31345_t",93.4399633928927,1.71587359909574,0.319663320100742,5.36775254212771,7.97238334770242e-08,7.20023968206538e-07 +"Tfru31346_t",432.844159346143,0.272747247161317,0.201953021330516,1.35054799063857,0.17684027076248,0.297302077799302 +"Tfru31347_t",543.084249839917,0.368174540366726,0.214287750049603,1.71813153239745,0.0857726264806904,0.16853304483212 +"Tfru31348_t",195.143361446938,0.292270097293388,0.200372102280807,1.45863667629635,0.144665133411447,0.254708967488647 +"Tfru31349_t",69.2463046285787,0.0671140047049275,0.325205269141806,0.206374284408234,0.836498556535023,0.897795784349406 +"Tfru31350_t",24.6729797278838,0.340744541386972,0.403270430081318,0.844952954567639,0.398137106474226,0.543941666741541 +"Tfru31351_t",11.4376057478733,0.526396142766794,0.554512222469179,0.949295834134752,0.342470171721035,0.487855308133225 +"Tfru31352_t",49.1552849287374,0.204819141266862,0.316280000328761,0.647588026602884,0.517251443520742,0.653573131548906 +"Tfru31353_t",46.5318561633774,-0.0647134030166603,0.319044692062064,-0.202834915065979,0.839264066864302,0.899476796069114 +"Tfru31354_t",87.4124057654588,-1.06774061746429,0.289296205052591,-3.69082137551784,0.000223531073703029,0.00102807756462676 +"Tfru31355_t",61.2246041882809,-1.04842182639749,0.319902166776362,-3.27732017873583,0.00104797459145058,0.00405019137926479 +"Tfru31356_t",72.4342143812547,-0.516446990938844,0.30994321505793,-1.66626325677856,0.0956609916537976,0.183751866209938 +"Tfru31357_t",33.5125428652487,-0.311926632692494,0.518752939946567,-0.601300944385246,0.547639560685072,0.679675197821077 +"Tfru31358_t",265.568598526599,-2.07593336627338,0.288502710922357,-7.19554197475828,6.22131434398988e-13,1.1283064426134e-11 +"Tfru31359_t",2.84614769070321,1.69107486431571,1.17354056453666,1.44100248037305,0.149583982054334,0.261211728961922 +"Tfru12096_t",0,NA,NA,NA,NA,NA +"Tfru12097_t",0,NA,NA,NA,NA,NA +"Tfru12098_t",0,NA,NA,NA,NA,NA +"Tfru12099_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru12100_t",5.87023986681852,4.96615205960903,1.37035310919974,3.62399444805081,0.000290087834034983,0.00129610016484387 +"Tfru12101_t",0,NA,NA,NA,NA,NA +"Tfru12102_t",0,NA,NA,NA,NA,NA +"Tfru01005_t",0,NA,NA,NA,NA,NA +"Tfru01006_t",0,NA,NA,NA,NA,NA +"Tfru01007_t",0,NA,NA,NA,NA,NA +"Tfru01008_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru01009_t",1.85800111206954,4.32108436166264,2.27082518776402,1.90286966383239,0.057057554276593,0.120991857562076 +"Tfru01010_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru01011_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru01012_t",683.764500227799,0.0379325724963893,0.16583817247967,0.228732456039574,0.81907686716403,0.885471539279103 +"Tfru01013_t",28.2405253328964,1.40153718092349,0.452480442705558,3.0974536104658,0.00195190943456394,0.00699501757379654 +"Tfru01014_t",60.9787648677165,0.492076501568055,0.369356799694659,1.33225245067871,0.182777246280761,0.304810340667917 +"Tfru01015_t",124.355196925929,0.283064199591411,0.294172738807179,0.962238039932555,0.33593004486221,0.481374977847116 +"Tfru01016_t",297.630600943484,-0.0552050043579706,0.217616182917552,-0.253680602323983,0.79974232104815,0.873030906337382 +"Tfru01017_t",138.810943357214,-0.565462524619934,0.245511832340382,-2.30319866553709,0.0212676678822467,0.0536728018949799 +"Tfru01018_t",56.5526238231059,0.0334513695621917,0.291504485833419,0.114754218846936,0.908639937316679,0.943881561951123 +"Tfru01019_t",81.293557479208,2.49785213069533,0.382901435258634,6.52348594360356,6.86918525756309e-11,9.66262514545958e-10 +"Tfru01020_t",81.6835804306783,4.17199730583028,0.638154054765247,6.5376021270679,6.2512957563295e-11,8.83232317087464e-10 +"Tfru01021_t",10.3968719453148,1.2408369589867,0.684046551820865,1.8139656660555,0.0696830118418525,0.142668173545024 +"Tfru01022_t",14.8527198113714,0.682382414641032,0.697672343008267,0.978084370807496,0.328032597148943,0.473545089608033 +"Tfru01023_t",1.33597132999739,1.37311265536865,2.2411567303724,0.6126803345612,0.540087728090919,0.673115197652632 +"Tfru01024_t",0.309701230418723,-1.80295482361496,4.04923350568494,-0.445258299153085,0.656133100041007,NA +"Tfru01025_t",216.422918841747,-1.53874023786675,0.207772088927323,-7.40590444949026,1.30259600746036e-13,2.57755072033271e-12 +"Tfru01026_t",445.710943551613,1.46340628032631,0.365659601379794,4.00209997167923,6.27827588143904e-05,0.00032775324055658 +"Tfru01027_t",0,NA,NA,NA,NA,NA +"Tfru01028_t",0,NA,NA,NA,NA,NA +"Tfru01029_t",0,NA,NA,NA,NA,NA +"Tfru01030_t",0.873466996280359,0.382755564958922,2.94539377667039,0.129950558051225,0.8966055438448,0.936646434246567 +"Tfru01031_t",0,NA,NA,NA,NA,NA +"Tfru01032_t",28.2394404494459,0.928775204195162,0.456864320857343,2.03293442230779,0.0420591487709455,0.0943170089673106 +"Tfru01033_t",18.9994537984379,-0.70074113005767,0.438469097741533,-1.59815397177828,0.110008714541501,0.205440172850366 +"Tfru01034_t",807.950481593151,-2.50191466763126,0.293178558514291,-8.53375731264231,1.41669861719186e-17,4.28455608820997e-16 +"Tfru01035_t",275.786378550212,-2.44391099678212,0.34607869305831,-7.06172048670545,1.64453537952013e-12,2.79979440318838e-11 +"Tfru01036_t",359.325020901025,-0.457423910874308,0.199438436996409,-2.29355944502586,0.0218158171358549,0.0547966315937634 +"Tfru01037_t",32.0562246224392,-0.079527859228516,1.52249811120911,-0.0522351119144298,0.958341355848997,0.976136880752802 +"Tfru01038_t",0,NA,NA,NA,NA,NA +"Tfru01039_t",0,NA,NA,NA,NA,NA +"Tfru01040_t",0,NA,NA,NA,NA,NA +"Tfru01041_t",0,NA,NA,NA,NA,NA +"Tfru01042_t",0,NA,NA,NA,NA,NA +"Tfru01043_t",9.46064030608026,-6.71687976143154,3.91157917734337,-1.7171785248109,0.0859465580925799,0.168815514315599 +"Tfru01044_t",6.80692272271964,-6.24088554087336,1.35977526463824,-4.58964485027141,4.44000799002317e-06,2.91827837934563e-05 +"Tfru01045_t",4468.73000650467,-5.69618716265637,0.469043340540442,-12.1442661483971,6.15321903120467e-34,6.12040186303824e-32 +"Tfru30995_t",1.01529681534262,0.907175021577512,1.82233401181761,0.497809411279488,0.618618381917445,0.740674052392062 +"Tfru30996_t",136.005941597914,-0.795176761915993,0.24319853974977,-3.26966092285818,0.00107676471271898,0.00414910369673741 +"Tfru30997_t",102.592091840321,-0.575946536965561,0.327858597123686,-1.75669188491123,0.0789703414999876,0.157420169481582 +"Tfru30998_t",25.9111555493439,1.26907640145683,0.482633487193648,2.62948269262476,0.00855148846688732,0.0250566001425685 +"Tfru30999_t",93.2930936136439,-2.07121313058976,0.248872049973592,-8.32240153448142,8.61987227567133e-17,2.44813123768432e-15 +"Tfru31000_t",169.15866144866,-3.31464587826594,0.531861641852858,-6.23215817316442,4.6005260603252e-10,5.78425692303809e-09 +"Tfru31001_t",2.41915373686106,3.60024471951423,1.65244341663203,2.17874009075128,0.0293509817066027,0.0697838065009846 +"Tfru31002_t",0.428790523796186,0.637314986713047,3.47901020122227,0.183188593838886,0.854650043728864,NA +"Tfru31003_t",7.49089276224909,0.139766893172246,0.743438264121993,0.188000671901535,0.850876124471192,0.907266075833307 +"Tfru31004_t",13.7575518889334,0.193547722642073,0.528048237748707,0.36653417018727,0.713966519841159,0.814360670406459 +"Tfru31005_t",13.2468688572359,7.13835461241975,1.49533986677822,4.77373389890265,1.80841295857368e-06,1.27530409707008e-05 +"Tfru31006_t",16.2743881493883,0.480066528362615,0.473186576366503,1.01453961785844,0.310325335060149,0.454342600984309 +"Tfru31007_t",24.8229904746241,0.654530338550408,0.419148888076724,1.5615700224179,0.118389316123458,0.217604541297879 +"Tfru31008_t",21.4296169913318,-3.74499234252737,0.63541279247754,-5.89379437566131,3.77426789949449e-09,4.17126496744132e-08 +"Tfru31009_t",242.811259225023,-0.249224513758817,0.179831431293862,-1.38587849724424,0.165784007750227,0.282663880348169 +"Tfru31010_t",0,NA,NA,NA,NA,NA +"Tfru31011_t",49.9854062131758,-0.853518040378636,0.316711921396228,-2.69493499523445,0.00704023644284451,0.0212345675998464 +"Tfru31012_t",0,NA,NA,NA,NA,NA +"Tfru31013_t",0,NA,NA,NA,NA,NA +"Tfru31014_t",0,NA,NA,NA,NA,NA +"Tfru31015_t",0,NA,NA,NA,NA,NA +"Tfru31016_t",29.9914704329516,-0.409321430222328,0.368737109658093,-1.11006302186907,0.266971870283248,0.406368119223226 +"Tfru31017_t",11.6126729106982,0.398938976834282,0.6410241208532,0.622346279736395,0.533714196039306,0.667926170517232 +"Tfru31018_t",87.7993726498002,-0.311426077800523,0.283842259576708,-1.0971800966669,0.272562671954498,0.412347532682036 +"Tfru31019_t",157.955477443032,0.665842789814711,0.196309488510802,3.39180135848641,0.000694347593371955,0.00281410705173204 +"Tfru31020_t",110.235265867056,-0.446498116670353,0.261589389221697,-1.70686631441288,0.0878469031701854,0.171704252659279 +"Tfru31021_t",102.182920450426,-0.0183695778092786,0.286013045346707,-0.0642263634758716,0.94878998570871,0.970072633750328 +"Tfru31022_t",139.242910521947,-0.0201004983036797,0.260515796945189,-0.0771565430556548,0.938499012160447,0.963291501199358 +"Tfru31023_t",0.291820569502774,-0.0642997256461449,3.90960142620042,-0.0164466191400578,0.986878088073871,NA +"Tfru31024_t",309.867824175499,8.85385900431197,1.2206837516367,7.25319640934079,4.07049143649733e-13,7.57883513717223e-12 +"Tfru31025_t",437.399772379269,1.54432972696369,0.188792687684351,8.18002935339167,2.83774737541892e-16,7.67014326834244e-15 +"Tfru31026_t",21.4341292303339,3.13179680746679,0.551775605708543,5.67585223968936,1.37999861710663e-08,1.40383495685665e-07 +"Tfru31027_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru31028_t",1999.14975028646,0.273861854057877,0.205879563272809,1.33020417230527,0.183451009858922,0.305662234821133 +"Tfru31029_t",154.265415428967,0.811650541575328,0.369793005970408,2.19487802222057,0.0281723487496248,0.067599138524349 +"Tfru31030_t",0,NA,NA,NA,NA,NA +"Tfru31031_t",477.962082606079,0.307076297470995,0.170756976163141,1.79832358461077,0.0721257444065972,0.146649782849064 +"Tfru31032_t",0.648821381546996,1.42185456682538,2.24077578633066,0.634536741917279,0.525730596402191,NA +"Tfru31033_t",551.014270372858,0.0603318725956521,0.178198102644355,0.338566301775173,0.734936472071019,0.82881724590322 +"Tfru31034_t",48.3612484348837,0.297658343942744,0.414634057805967,0.717882041619546,0.472830021681167,0.613516690933703 +"Tfru31035_t",0,NA,NA,NA,NA,NA +"Tfru31036_t",0.993610729877481,3.39532839817898,2.62050094364505,1.29567913585872,0.195086052408408,0.320188035512274 +"Tfru31037_t",263.88352883287,-0.736515283336702,0.279490345261007,-2.63520832051961,0.00840856592594651,0.024708994934701 +"Tfru31038_t",969.548057570564,0.287315429604491,0.1488935798745,1.92966969997407,0.0536477765757222,0.11528351563708 +"Tfru31039_t",4.60799849595727,1.52634968242513,0.891971002876563,1.71120998048449,0.0870423569232043,0.170533830687325 +"Tfru31040_t",0.786540050655994,-0.673172064546771,2.13018352319652,-0.316015994498267,0.75199036792534,0.840510634478805 +"Tfru03206_t",51.3376681705217,-0.857873937123668,0.312686156117066,-2.74356225992458,0.0060776521922098,0.0187636716873576 +"Tfru03207_t",25.0948737955783,-1.45192258232107,0.466031228269891,-3.11550491522044,0.00183630288305496,0.00663809699931675 +"Tfru03208_t",207.855871034084,-1.30253143355162,0.262715523818156,-4.95795381491499,7.12394923103559e-07,5.40088020970788e-06 +"Tfru03209_t",43.8175226749933,1.15382276629037,0.311709198000106,3.70159999670584,0.000214244189039191,0.000989635696738306 +"Tfru03210_t",117.101443583571,-0.661932455631003,0.314768160120734,-2.10292062379216,0.0354727086892909,0.0817505118387736 +"Tfru03211_t",0,NA,NA,NA,NA,NA +"Tfru03212_t",125.023051905545,2.99218543756832,0.298235408772878,10.0329650656842,1.09187525546395e-23,5.43025960384071e-22 +"Tfru03213_t",31.8090322393315,2.69243168752201,0.454003901486261,5.93041530856422,3.02169409401255e-09,3.37958589825092e-08 +"Tfru03214_t",0,NA,NA,NA,NA,NA +"Tfru03215_t",34.9878722122562,0.758744730417896,0.451765376842937,1.67951058073599,0.0930525785152778,0.179697705338849 +"Tfru03216_t",190.95970197641,0.952332534117091,0.203431121791329,4.68135123933472,2.84990165780212e-06,1.95048315295448e-05 +"Tfru03217_t",1876.2869626135,-0.301494863062918,0.213144080623626,-1.41451201544416,0.157211622001592,0.271564996943163 +"Tfru03218_t",129.408058240064,-1.56628366169343,0.512939126490232,-3.0535468651235,0.00226153394761601,0.00796179483209789 +"Tfru03219_t",314.766717330183,-0.954788036182034,0.172056597338746,-5.54926722340233,2.86869420764954e-08,2.77327759685515e-07 +"Tfru03220_t",294.43145385561,-0.0415898837915738,0.215960305543882,-0.192581149053445,0.847287009435866,0.904948137404538 +"Tfru03221_t",11.1534018616397,-0.188150205749652,0.696944452440723,-0.26996442125444,0.787187625365291,0.865287772872063 +"Tfru03222_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru03223_t",0.543317859874192,1.03920595601132,3.30339168662012,0.314587567747556,0.75307481974991,NA +"Tfru03224_t",225.14998291725,-0.354964910691401,0.275054399056029,-1.29052620830505,0.196868018215402,0.322399110761063 +"Tfru03225_t",63.4634654753181,0.0870085022892437,0.280076566679826,0.310659700383677,0.75605933674226,0.843710194778947 +"Tfru03226_t",7.05800549151553,0.021623825628912,0.720025759288192,0.0300320167021372,0.976041519044667,0.986858089700105 +"Tfru03227_t",11.7417499655373,-0.176104789235643,0.537518146776458,-0.327625756063788,0.743194645339399,0.834513881024321 +"Tfru03228_t",155.767511334473,-0.0249265183320169,0.213929411701509,-0.116517491137667,0.907242424589751,0.943164400163179 +"Tfru03229_t",182.534239468013,0.209812274217905,0.194180011306103,1.08050397570098,0.279917817346004,0.421033722172429 +"Tfru03230_t",42.1314020697563,-0.730751780056512,0.397331125730446,-1.83915060445645,0.0658930376413208,0.136053711819611 +"Tfru03231_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru03232_t",10.4769092857389,-0.216370993123969,0.62156289916535,-0.348107960456644,0.72775910620589,0.824086662461436 +"Tfru20797_t",9.79068719004486,0.388308271105845,0.594139338178958,0.653564317582493,0.513392539351403,0.650019586458524 +"Tfru20798_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru20799_t",3.53837471992716,4.20945970769052,1.56461285518931,2.69041615868688,0.00713629643578836,0.0214866560248814 +"Tfru24644_t",14.6960425293682,0.121839836450976,0.486836783530169,0.250268345722536,0.802379834127054,0.874734300456158 +"Tfru01572_t",190.994800719417,-0.260965616953786,0.187979363563921,-1.38826737151414,0.165055643897093,0.281658048830877 +"Tfru01573_t",1097.30167583897,-3.39510360224668,0.320145971467981,-10.6048612346391,2.82883609347781e-26,1.70645153024349e-24 +"Tfru01574_t",33.6428373263949,-3.42735294447352,0.554788797662272,-6.1777616255329,6.50167793701552e-10,7.97738773193023e-09 +"Tfru01575_t",1.83324391385491,4.27803447612657,1.82104264227086,2.34922256998432,0.0188126577080473,0.0486006325183075 +"Tfru01576_t",2.72470573926258,4.84431032414565,2.13955389772857,2.26416839944465,0.0235637593706394,0.0584005464800564 +"Tfru01577_t",0,NA,NA,NA,NA,NA +"Tfru01578_t",0,NA,NA,NA,NA,NA +"Tfru01579_t",0,NA,NA,NA,NA,NA +"Tfru02883_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru02884_t",0.291820569502774,-0.0642997256461447,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru01618_t",2262.08944442843,-0.305610800998206,0.177632161714275,-1.72046997598209,0.0853470467108504,0.167873695323329 +"Tfru16048_t",58.1368923221541,-0.205363965251785,0.308921239516936,-0.664777745851711,0.506192658533396,0.643450624672124 +"Tfru16049_t",10.6687579977458,-1.23527886871863,0.625623558977065,-1.97447626610863,0.048327613553181,0.105963749517017 +"Tfru27670_t",0,NA,NA,NA,NA,NA +"Tfru27671_t",175.496912810624,-0.261969067362703,0.211300161799731,-1.23979586731692,0.215050907192076,0.345303436860286 +"Tfru24739_t",110.370988940969,0.657013627984645,0.241253582315594,2.72333211253699,0.00646270537319996,0.0197643271730275 +"Tfru11445_t",0,NA,NA,NA,NA,NA +"Tfru15028_t",707.444556943096,-0.0896648828841929,0.201385788158696,-0.445239377137851,0.656146772881983,0.771040220840934 +"Tfru15029_t",1.52303709264294,-0.408923685521135,1.8035279964337,-0.226735424307104,0.820629479764107,0.886487829920886 +"Tfru20364_t",0,NA,NA,NA,NA,NA +"Tfru20365_t",0.716369003770763,-0.179176999540447,2.56779524284872,-0.0697785386274287,0.944369929227189,NA +"Tfru14776_t",65.040627242298,0.974988424036965,0.338583848625486,2.87960701018382,0.00398171147438317,0.0129974770706965 +"Tfru14701_t",21.2158562686066,0.193697361431355,0.452369849076313,0.428183624144851,0.66851743778994,0.780277429548309 +"Tfru25653_t",298.185390334528,-0.529900495652377,0.228953414999208,-2.31444678671515,0.0206432269919169,0.0523507558163286 +"Tfru10313_t",100.898026277447,1.17281080551061,0.267929097285807,4.37731779560897,1.20148727179118e-05,7.25756684013131e-05 +"Tfru13710_t",0,NA,NA,NA,NA,NA +"Tfru18298_t",106.908280500761,-1.12230749293731,0.224858512172654,-4.99117192448362,6.00140491367778e-07,4.63462532671183e-06 +"Tfru18299_t",474.727574524298,-0.787886803369764,0.14634516071842,-5.38375713622484,7.29469135694074e-08,6.63369331850198e-07 +"Tfru06263_t",246.42590664885,-0.208349975749618,0.188625351060439,-1.1045703802712,0.269345791473404,0.408869213401261 +"Tfru06264_t",6.21786532060193,-0.0751606637902818,0.903776236832458,-0.0831629121536807,0.933722002362753,0.960512340653184 +"Tfru23915_t",139.145904000419,-0.36142147955617,0.304216721096723,-1.18803949451963,0.234817850138898,0.369198640004818 +"Tfru26014_t",803.251198223905,-0.66999230669413,0.274389818190687,-2.44175352829061,0.0146161215528325,0.0393206876250021 +"Tfru17365_t",241.429675812627,-0.23528392263909,0.195686645929241,-1.20235042877769,0.229227786429588,0.362373233050376 +"Tfru17366_t",0,NA,NA,NA,NA,NA +"Tfru05694_t",109.987101604606,-0.478439771683289,0.258750510899747,-1.84903894496525,0.064452189401443,0.133757418286748 +"Tfru07600_t",0,NA,NA,NA,NA,NA +"Tfru11273_t",230.484158226397,1.36588851718435,0.192007060935188,7.11374108083142,1.12938938351634e-12,1.9669832220308e-11 +"Tfru11174_t",3.92236653292793,-0.437656738374861,0.913980816625295,-0.478846744279412,0.632047659708944,0.751725919343475 +"Tfru11175_t",179.338994415947,-0.0772562349584637,0.184000144536281,-0.419870512347507,0.674580050280563,0.784754211730897 +"Tfru11176_t",32.6298825320218,-0.396229260612853,0.342094502478466,-1.15824503972494,0.246764052921148,0.382662105347512 +"Tfru11177_t",0,NA,NA,NA,NA,NA +"Tfru11178_t",0,NA,NA,NA,NA,NA +"Tfru11179_t",0.510200518493637,-0.977089842999089,2.74627972705618,-0.355786715159734,0.722000298737399,NA +"Tfru01206_t",0,NA,NA,NA,NA,NA +"Tfru25922_t",32.9844507454487,0.0292009820430602,0.338177373016744,0.0863481248983927,0.931189683166214,0.958955692493091 +"Tfru25923_t",18.5015841782312,-0.0385341011709545,0.460434672091902,-0.083690702517866,0.933302349527359,0.960335934824013 +"Tfru23887_t",0,NA,NA,NA,NA,NA +"Tfru21451_t",42.2141232315085,-0.331247727418581,0.308986438621201,-1.0720461677759,0.283699296084868,0.425093080234289 +"Tfru21452_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru21453_t",2.7043946070208,-0.209876260539205,1.21398643427508,-0.172881882872546,0.86274427259137,0.914431296263077 +"Tfru21454_t",32.7006066254744,-0.10698681014701,0.401885974866056,-0.266211853207038,0.790076054771587,0.867103972372393 +"Tfru21455_t",32.3132739279972,-0.0750194518704017,0.378678153167739,-0.198108740213411,0.842959986660231,0.901660588895281 +"Tfru21456_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru03750_t",6.1427325080918,1.16628785746333,0.837512942341141,1.39256099637475,0.163752584483322,0.279970233644598 +"Tfru14461_t",0,NA,NA,NA,NA,NA +"Tfru28872_t",450.527031948884,0.489145866960945,0.193980010519504,2.52163027340265,0.0116812413081366,0.0325561868587917 +"Tfru28873_t",364.254992779971,0.434180583336793,0.174424775943592,2.48921393757275,0.0128025900594032,0.0351388233418497 +"Tfru19443_t",0,NA,NA,NA,NA,NA +"Tfru02320_t",15.1865775050952,0.332175399033989,0.518740849962753,0.640349413503565,0.521945462498854,0.657502519041688 +"Tfru16264_t",102.952345276062,-0.837139298301703,0.3441063238336,-2.43279254207057,0.0149828827038812,0.0401144771997681 +"Tfru16265_t",2.77859225054475,0.497968818720481,1.29876771764564,0.383416381509067,0.701411059020534,0.805334470597145 +"Tfru18052_t",0,NA,NA,NA,NA,NA +"Tfru19477_t",0,NA,NA,NA,NA,NA +"Tfru19478_t",203.448445423826,-0.0756315243444755,0.258177791928296,-0.292943571093368,0.769565284071296,0.853390481504699 +"Tfru19479_t",634.784289038949,-0.0937752793743326,0.166990325378618,-0.561561151292539,0.574415055316162,0.703519342088093 +"Tfru08728_t",4.84851732152342,4.67643604876844,1.40423845714503,3.33022929615254,0.000867744937974071,0.00343293825558772 +"Tfru25692_t",0,NA,NA,NA,NA,NA +"Tfru25693_t",350.41330004451,-0.41411674448551,0.154077047387852,-2.68772507979771,0.00719405996512284,0.0216460153293156 +"Tfru02293_t",400.804866803453,-1.11362575500922,0.172752396336968,-6.44636936229237,1.1456127262121e-10,1.56048769401259e-09 +"Tfru05201_t",0,NA,NA,NA,NA,NA +"Tfru12653_t",0,NA,NA,NA,NA,NA +"Tfru16046_t",73.7841935371432,0.820485687942097,0.341525499592,2.40241413575936,0.0162872577164207,0.0429845315676292 +"Tfru16047_t",69.1163014490963,0.539084155993473,0.326473787745077,1.65123258353105,0.0986910921896183,0.188424043951856 +"Tfru03916_t",0,NA,NA,NA,NA,NA +"Tfru05696_t",0,NA,NA,NA,NA,NA +"Tfru12940_t",0,NA,NA,NA,NA,NA +"Tfru28152_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23684_t",0,NA,NA,NA,NA,NA +"Tfru02215_t",0,NA,NA,NA,NA,NA +"Tfru27776_t",0,NA,NA,NA,NA,NA +"Tfru07951_t",0,NA,NA,NA,NA,NA +"Tfru11845_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru12489_t",0,NA,NA,NA,NA,NA +"Tfru19796_t",869.251391283896,-1.47472931695687,0.200061910467231,-7.37136476160172,1.68890038069029e-13,3.28389144394862e-12 +"Tfru06268_t",0,NA,NA,NA,NA,NA +"Tfru04871_t",118.423139052261,0.175693758666701,0.247641651541236,0.709467723112182,0.478034274389704,0.617976378283362 +"Tfru04872_t",64.4297767804409,0.0237499872819726,0.25740950703745,0.092265385048569,0.92648718975471,0.956313223259404 +"Tfru04873_t",130.588844839104,0.21536012956535,0.203457777685946,1.05850035331545,0.28982738977907,0.431731694838631 +"Tfru10962_t",0,NA,NA,NA,NA,NA +"Tfru10963_t",0,NA,NA,NA,NA,NA +"Tfru19846_t",0.672967708205445,-0.0800558748616175,2.58845138668282,-0.0309280967274458,0.975326882688926,NA +"Tfru26932_t",0.798002799554146,0.626034755458618,2.98194076919355,0.209942049126591,0.833712903025599,0.896195448792143 +"Tfru12659_t",0,NA,NA,NA,NA,NA +"Tfru12782_t",1830.88910222916,-0.632122420702302,0.157963137432946,-4.00170844270951,6.28867602694383e-05,0.000328219611667451 +"Tfru18251_t",145.456900987164,-0.193361083361161,0.243124061143025,-0.79531858118893,0.426428207577727,0.571567544204919 +"Tfru18252_t",17.8321609876298,0.228530986386077,0.537270232862381,0.425355756578113,0.670577353589924,0.782049044989187 +"Tfru12785_t",0,NA,NA,NA,NA,NA +"Tfru12786_t",46.7256732029467,0.0605415827149756,0.311896298447712,0.194108051350039,0.846091277463638,0.90414003634942 +"Tfru12787_t",393.765331199485,0.328145783755933,0.146460212545885,2.24051145394267,0.0250577380245066,0.0613491058952476 +"Tfru02023_t",4.33342205700226,0.0913709510077638,0.93878877279669,0.0973285510600708,0.922465483163052,0.953833742061962 +"Tfru09680_t",0,NA,NA,NA,NA,NA +"Tfru27927_t",0,NA,NA,NA,NA,NA +"Tfru30697_t",0,NA,NA,NA,NA,NA +"Tfru26868_t",79.8070042065299,-0.173714604455454,0.245414815793336,-0.707840738522238,0.479044164516677,0.618602988972548 +"Tfru26869_t",81.5993235881708,0.0568169644993014,0.234330100874708,0.242465497549034,0.808419488286512,0.879163101451552 +"Tfru26870_t",34.8161974013309,0.244828008851456,0.325677150538564,0.751750647678506,0.452201026083017,0.595589628280245 +"Tfru26871_t",17.9023904470746,-0.217032020182515,0.476869778773305,-0.455118000433591,0.64902434872568,0.765489587587916 +"Tfru26872_t",0,NA,NA,NA,NA,NA +"Tfru04210_t",0,NA,NA,NA,NA,NA +"Tfru04211_t",0,NA,NA,NA,NA,NA +"Tfru04212_t",0,NA,NA,NA,NA,NA +"Tfru04213_t",430.28859553649,0.118372175632135,0.150583688688391,0.786088962643806,0.431815370083649,0.576660208924992 +"Tfru03475_t",292.797509849178,-0.551399913025275,0.216979439243992,-2.54125420798618,0.0110455578282775,0.03105912604559 +"Tfru03476_t",4.07299381373663,0.744397806297207,0.914507753079829,0.813987419778853,0.415652157884251,0.56139380165658 +"Tfru03832_t",0,NA,NA,NA,NA,NA +"Tfru03833_t",11.953281269011,-0.550829058040147,0.688969850212484,-0.799496607682131,0.424002512893938,0.569202581642752 +"Tfru23635_t",0,NA,NA,NA,NA,NA +"Tfru23384_t",44.9733759514628,-0.606711138952744,0.314785414202945,-1.9273800868092,0.0539322794247678,0.115735392993221 +"Tfru15627_t",0,NA,NA,NA,NA,NA +"Tfru15628_t",0,NA,NA,NA,NA,NA +"Tfru15629_t",8.16545027970399,2.08987079713106,0.794321159248798,2.63101488962913,0.0085130306179158,0.0249635253182594 +"Tfru15630_t",0,NA,NA,NA,NA,NA +"Tfru27201_t",16499.1375060837,1.07697423950607,0.480388822907427,2.24188030226841,0.0249691094331974,0.0611990657228079 +"Tfru27202_t",0,NA,NA,NA,NA,NA +"Tfru27203_t",0,NA,NA,NA,NA,NA +"Tfru17229_t",1922.03720559646,-0.927004600064773,0.176737463714735,-5.24509394092592,1.56202718265566e-07,1.33632142002422e-06 +"Tfru17230_t",648.883027980049,-1.55782107598541,0.173870822974914,-8.95964630138184,3.25721527946861e-19,1.14437171043183e-17 +"Tfru17231_t",0,NA,NA,NA,NA,NA +"Tfru25355_t",0,NA,NA,NA,NA,NA +"Tfru25356_t",13.0791110760552,0.568071194302772,0.607399681023271,0.935251057994887,0.349658931208972,0.495433167486977 +"Tfru25357_t",43.7257672884048,1.93421553820959,0.373034650880621,5.18508276280367,2.15918959089126e-07,1.80510508196289e-06 +"Tfru29878_t",0,NA,NA,NA,NA,NA +"Tfru29879_t",81.9720928255717,-0.48922459103315,0.267456292377885,-1.82917585031775,0.0673732689876103,0.138624047066537 +"Tfru07958_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00900_t",46.7097365243519,1.95566997420417,0.348885813153265,5.60547290968534,2.07687106472249e-08,2.05483529745753e-07 +"Tfru00901_t",13.9198735460299,2.41507126931082,0.613440148084826,3.93693056584367,8.25304739431368e-05,0.000419208353801044 +"Tfru17854_t",0,NA,NA,NA,NA,NA +"Tfru13179_t",338.783563749401,0.405584774278097,0.195567203772488,2.07388951958392,0.0380895726109533,0.0866657823335842 +"Tfru13180_t",0,NA,NA,NA,NA,NA +"Tfru13848_t",158.119983037322,-0.900331811486611,0.191317447110425,-4.70595769013663,2.52676923684995e-06,1.7477947433028e-05 +"Tfru13849_t",0,NA,NA,NA,NA,NA +"Tfru03966_t",0,NA,NA,NA,NA,NA +"Tfru12772_t",2.66183809295639,-1.30392209736676,1.22318324135219,-1.06600716334644,0.286420403750258,0.428024080924865 +"Tfru12773_t",173.15494096091,-0.183983885895428,0.190283693246267,-0.966892552675619,0.333597749980882,0.479260344368478 +"Tfru12774_t",158.34932597874,-0.631048024208488,0.271108865873351,-2.32765543161279,0.0199304074972252,0.0508948562058305 +"Tfru12775_t",0,NA,NA,NA,NA,NA +"Tfru27907_t",59.8532334035732,0.716813431994786,0.293813440631898,2.43968904367734,0.0146999091693272,0.0394986153451246 +"Tfru27908_t",0,NA,NA,NA,NA,NA +"Tfru27909_t",274.901934062843,-1.11396630138628,0.457278980340931,-2.43607589519147,0.0148475689276382,0.0398236568313211 +"Tfru27910_t",9.05476219063967,0.73424468375856,0.662680239809225,1.10799242175976,0.26786508875188,0.407308718804045 +"Tfru27911_t",6077.01518226444,0.951295373316591,0.206481205732923,4.60717657057399,4.08173383761861e-06,2.70423929206349e-05 +"Tfru12308_t",239.353315752722,-0.837193122490171,0.175132616273002,-4.78033812493916,1.75000617254688e-06,1.23744512295732e-05 +"Tfru12309_t",1.20953043767503,1.26562692975182,1.73368082892611,0.730023028826929,0.465376108238655,0.607295469526595 +"Tfru21687_t",0,NA,NA,NA,NA,NA +"Tfru21688_t",371.683448577266,-0.448381919625321,0.150074176897453,-2.98773532459022,0.0028105283280493,0.00964126670474301 +"Tfru23850_t",2.72355153384745,2.07715039396883,1.6071910994342,1.29241033919369,0.196215078032463,0.321659350012197 +"Tfru23851_t",0,NA,NA,NA,NA,NA +"Tfru20546_t",396.446196228186,-0.266130706687028,0.159496734509891,-1.66856523743139,0.095203572987901,0.183108969015918 +"Tfru20547_t",119.384173266307,0.00125539492438116,0.263939949810192,0.00475636570092537,0.996204983550824,0.998033373555998 +"Tfru20548_t",3.0102058595758,-0.0275929985513709,1.03530632511328,-0.0266520138842498,0.978737286893864,0.98854321151208 +"Tfru20549_t",0,NA,NA,NA,NA,NA +"Tfru05704_t",0.551234434376637,2.52720524514379,3.18606545386198,0.793205689506613,0.427657993224986,NA +"Tfru05705_t",0.51976800175603,2.45431866011486,3.22735766148694,0.760473092091096,0.446971847375086,NA +"Tfru05706_t",1.17887333748779,1.13682876635626,1.88910500551139,0.601781670706287,0.547319477537591,0.679405951926967 +"Tfru05707_t",0,NA,NA,NA,NA,NA +"Tfru05708_t",0,NA,NA,NA,NA,NA +"Tfru05709_t",39.6380478279807,-0.745124234584329,0.396040159500373,-1.88143605316276,0.0599126263791773,0.12603107231563 +"Tfru20496_t",37.0326747948243,0.754510217114178,0.345773991224371,2.18209071897655,0.0291028380418543,0.069348542948967 +"Tfru25803_t",12.0844756758255,-0.41159449566111,0.53418078606608,-0.770515350603035,0.440994252773164,0.58499504339182 +"Tfru25804_t",0,NA,NA,NA,NA,NA +"Tfru25805_t",94.6633718029004,0.705619686857739,0.284336263668955,2.48163803572826,0.013078004643141,0.0357981585021398 +"Tfru25806_t",0,NA,NA,NA,NA,NA +"Tfru25807_t",4.30437228833854,5.53108929343874,1.60297097026457,3.45052368136513,0.000559500078312826,0.00232441279982199 +"Tfru25808_t",74.9861584806318,-0.455031631441574,0.269124794320899,-1.69078301607173,0.0908782521131814,0.176208671804906 +"Tfru25809_t",0,NA,NA,NA,NA,NA +"Tfru05940_t",150.243056692142,0.36575213017764,0.2126134527943,1.72026805157761,0.0853837280175476,0.167931086477961 +"Tfru17094_t",127.317515166213,-0.585007417875897,0.234755614227764,-2.49198478085518,0.0127031480439831,0.0349172750214127 +"Tfru17095_t",93.3090031332845,-0.503426133226532,0.327313216400643,-1.53805623482775,0.124034865596234,0.225549783934903 +"Tfru24722_t",182.410140490214,-0.241136972100233,0.274535128430843,-0.878346510621417,0.379755702545343,0.525598801667581 +"Tfru24723_t",16.5531579614058,-1.02579066837022,0.572674030464142,-1.79122958926361,0.0732564597807637,0.14847668627907 +"Tfru22614_t",22.831521911309,0.353609452712431,0.427896773914493,0.826389620743186,0.408583109304717,0.554792500075208 +"Tfru22615_t",0,NA,NA,NA,NA,NA +"Tfru22616_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru22617_t",0,NA,NA,NA,NA,NA +"Tfru18074_t",69.7290959890098,-0.404937232960248,0.352709158918629,-1.14807688635516,0.250936824999857,0.387206119161557 +"Tfru18075_t",271.4447501181,-0.178790119383347,0.23080170777327,-0.77464816490432,0.438547588249555,0.583097375536183 +"Tfru18076_t",494.914656722114,-0.0993833987906409,0.171471561945279,-0.57959114422925,0.562190366414791,0.692611811424501 +"Tfru18077_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru26525_t",0,NA,NA,NA,NA,NA +"Tfru26526_t",10.1329324780901,-0.133647790604128,0.644603907910305,-0.207333199448621,0.835749648004082,0.89729321767001 +"Tfru26527_t",3.40236634434242,2.55288535257471,1.23950832100757,2.05959517117201,0.0394372582513595,0.0892061693617773 +"Tfru26528_t",0,NA,NA,NA,NA,NA +"Tfru26529_t",0,NA,NA,NA,NA,NA +"Tfru26530_t",200.877505162334,0.163563196752296,0.202111388619313,0.809272539611191,0.418358397890517,0.56402629537899 +"Tfru26531_t",0.717117718586349,-2.9847586779631,2.89081960472132,-1.03249565385829,0.301839982601096,NA +"Tfru26532_t",154.606758757221,0.417466964689034,0.194870686246922,2.14227687462474,0.032171208592556,0.0753839020313478 +"Tfru26533_t",0,NA,NA,NA,NA,NA +"Tfru26534_t",0,NA,NA,NA,NA,NA +"Tfru10914_t",665.647672201268,-0.0734946589690832,0.166686798520649,-0.440914695232921,0.659274754608455,0.773543515158709 +"Tfru10915_t",14.2777649215998,-6.33374206788445,1.26671961048561,-5.0001136916609,5.7296518460421e-07,4.44162134791903e-06 +"Tfru10916_t",0,NA,NA,NA,NA,NA +"Tfru10917_t",159.733238146015,0.259932672852943,0.196742588142738,1.32118152610842,0.186440844591292,0.309559025295135 +"Tfru10918_t",10.6150643706213,1.46310980590864,0.668007483333329,2.19025960399094,0.0285054147207733,0.0682373709969951 +"Tfru10919_t",0,NA,NA,NA,NA,NA +"Tfru23669_t",132.24297285836,-0.0734439195244588,0.205172310367672,-0.357962141152703,0.720371645724474,0.818910789883085 +"Tfru15822_t",16.448850928379,-1.06826128079228,0.489208317481805,-2.18365314451549,0.0289877452348297,0.0691405454924319 +"Tfru15823_t",5.29219701543699,0.166114521995439,0.950451295527182,0.17477436537482,0.861256931750873,0.913806956458756 +"Tfru00316_t",18.6794035665579,-0.092954319528867,0.47467862111052,-0.195825797486726,0.844746517509792,0.903096735543573 +"Tfru00317_t",0,NA,NA,NA,NA,NA +"Tfru29352_t",0,NA,NA,NA,NA,NA +"Tfru00892_t",3.49020206899235,3.26505150338609,1.37648494569023,2.37202122232354,0.0176910745401748,0.0461076334236767 +"Tfru00893_t",0.573677052592043,2.63241690796499,3.1014208502152,0.848777716762411,0.396004991738982,NA +"Tfru00894_t",17.7997883470255,0.252338711539163,0.620961187754039,0.406367928488172,0.684472280930416,0.791816894821809 +"Tfru00895_t",2385.12883525925,1.80735381833294,0.27512544983228,6.56919895791074,5.05866556543460e-11,7.20184067140117e-10 +"Tfru00896_t",0,NA,NA,NA,NA,NA +"Tfru23657_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203641,0.621278915456996,NA +"Tfru23658_t",61.2193046398043,0.511060994607345,0.317395149667883,1.61017266691728,0.107360166701537,0.201672027092529 +"Tfru27014_t",0,NA,NA,NA,NA,NA +"Tfru27015_t",0,NA,NA,NA,NA,NA +"Tfru27016_t",0,NA,NA,NA,NA,NA +"Tfru01596_t",0,NA,NA,NA,NA,NA +"Tfru01597_t",0,NA,NA,NA,NA,NA +"Tfru25847_t",163.909046274639,-0.42615563312537,0.212518751782052,-2.00526132189225,0.0449351174345052,0.0997468684967492 +"Tfru09076_t",664.801838987615,0.0433886842906064,0.139279383788077,0.311522661219016,0.755403318192247,0.84314629001758 +"Tfru09077_t",23.0335670765866,-0.0759327288106695,0.466851280927089,-0.162648646181027,0.870795082828455,0.920218809788499 +"Tfru16052_t",302.236335535256,0.0484990376403008,0.168850205100158,0.287231144383462,0.773935340802164,0.856272143916968 +"Tfru16053_t",0,NA,NA,NA,NA,NA +"Tfru13214_t",650.85765412664,0.0167639698090386,0.139798255225866,0.119915443736789,0.904550130423861,0.941442213592802 +"Tfru13215_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13216_t",124.745804819921,-0.308614690245356,0.243303472027258,-1.26843520840007,0.204642574918753,0.331876871498674 +"Tfru13217_t",1095.51184024939,-0.138803586286536,0.219550686400986,-0.63221658999064,0.527245358176182,0.662386388008474 +"Tfru13218_t",178.753924534738,-0.54175403185277,0.2663274801104,-2.03416497474537,0.0419349646710959,0.0940950981892047 +"Tfru13219_t",0,NA,NA,NA,NA,NA +"Tfru13220_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13221_t",0,NA,NA,NA,NA,NA +"Tfru17071_t",0,NA,NA,NA,NA,NA +"Tfru17072_t",0,NA,NA,NA,NA,NA +"Tfru17073_t",291.797988720946,0.0863248517770271,0.17875991454502,0.482909448668855,0.629160032573527,0.749685950856966 +"Tfru17074_t",0,NA,NA,NA,NA,NA +"Tfru17075_t",270.709502342714,0.842871072419583,0.305519957404682,2.75880855568182,0.00580125096091498,0.0180222093982895 +"Tfru17076_t",1.41829010372041,0.859763887539581,1.51404623210813,0.567858410996115,0.570131113698112,0.6995361146794 +"Tfru06244_t",0,NA,NA,NA,NA,NA +"Tfru06245_t",1.86891895925703,-1.18700886859975,1.65056028309276,-0.719155114029263,0.472045352173768,0.612711691314751 +"Tfru06246_t",17.0033781409808,0.867789824663895,0.496085340370651,1.74927528399756,0.080243446156904,0.159602588427969 +"Tfru06247_t",0,NA,NA,NA,NA,NA +"Tfru06248_t",8.80985413229215,1.02779059514608,0.637783862325117,1.61150298064794,0.107070138084138,0.201228559818862 +"Tfru06249_t",5.13110434355271,3.76432113978009,1.53376330431986,2.45430382196382,0.0141157661948887,0.0381719245337855 +"Tfru06250_t",739.705970163257,-0.281982088617939,0.143396299855483,-1.96645303192708,0.0492463026846792,0.107514608729209 +"Tfru06251_t",1.66943668693934,4.16795661077591,2.47271796675586,1.68557703175674,0.091877296203908,0.177780899969174 +"Tfru04190_t",47.683865042846,-0.547440592977845,0.368364151998989,-1.4861397071541,0.137242171380128,0.244350023507341 +"Tfru04191_t",717.289874171763,-0.0598925864493916,0.151774317950443,-0.394616080363133,0.693126244296163,0.798567070648552 +"Tfru04192_t",0,NA,NA,NA,NA,NA +"Tfru04193_t",3474.27207801541,-5.22981411709574,0.906962452541479,-5.76629617074093,8.10326064374552e-09,8.55832813624468e-08 +"Tfru04194_t",151.909933377764,0.31356746498033,0.24655244144862,1.27180839556065,0.203441205264389,0.330507783948951 +"Tfru04195_t",15.317615333335,3.82520689016276,0.756730111602378,5.05491565819004,4.30581010819461e-07,3.43911599648092e-06 +"Tfru04196_t",0.576886008600942,1.20585270761729,3.20948574135505,0.375715240631722,0.707128606285122,NA +"Tfru04197_t",256.22794269256,1.24180162310973,0.41490568101246,2.9929732947485,0.00276273922681121,0.00950501212852189 +"Tfru04198_t",440.094499102715,1.14380473406476,0.328585216553606,3.48099876817848,0.000499547788674648,0.002102271438612 +"Tfru02003_t",1245.57678011169,7.67012448831485,0.346949780980762,22.1073045978955,2.68853537446132e-108,5.01411847337036e-105 +"Tfru02004_t",6.91269011567535,0.191966541253803,0.750423794235129,0.255810840125966,0.798096903144183,0.872352072887268 +"Tfru02005_t",99.5737537435724,-0.874501018660648,0.246021610719135,-3.55456992621272,0.000378597821766765,0.00164205799440702 +"Tfru02006_t",109.981189523315,-0.935030395335069,0.253172263083841,-3.69325764183504,0.00022139950997966,0.00101953107681991 +"Tfru02007_t",2.66500897090135,0.150925845636372,1.25061199698481,0.120681591093201,0.903943240591598,0.941335895232421 +"Tfru02008_t",1.37946425422022,-1.57875233953089,1.97314302621016,-0.800120578467757,0.423640939409245,0.568819547874904 +"Tfru11698_t",0,NA,NA,NA,NA,NA +"Tfru11699_t",13.0709500389989,-0.539783264262432,0.527705493399173,-1.02288733207127,0.306361119718119,0.449921868752913 +"Tfru11700_t",437.844184788946,3.15063654364966,0.367413066061955,8.57518916629489,9.89240694438345e-18,3.0286192532873e-16 +"Tfru23229_t",18.3429769015231,-1.81733571165777,0.783686794773354,-2.31895665944372,0.020397386449626,0.0518624754308828 +"Tfru23230_t",0.829469232174754,0.6775255036802,2.43016478812053,0.27879817327293,0.780399716414265,0.860423332107566 +"Tfru23231_t",763.526393667428,-0.364636382186884,0.18691004765675,-1.95086559956647,0.0510730357752664,0.11081091038783 +"Tfru23232_t",118.973705818705,0.195148210935371,0.536495088908385,0.363746500144935,0.716047316378826,0.815943937910292 +"Tfru23233_t",163.021124063699,0.122354408890606,0.212630308690589,0.575432588345866,0.56499876959864,0.695297067173517 +"Tfru23234_t",309.153630974665,-1.09869263075321,0.180107267047662,-6.10021266083871,1.05927439941839e-09,1.26233019483405e-08 +"Tfru23235_t",315.458004224811,-0.535046388175502,0.157208710399104,-3.40341439616917,0.000665492632431787,0.00271337677424365 +"Tfru23236_t",100.374300540718,0.539325380086681,0.370159458175388,1.45700823840935,0.14511410611672,0.255218365020998 +"Tfru23237_t",649.703001367878,-0.163051943223666,0.403942193761444,-0.403651675269059,0.686468880180402,0.793111691237508 +"Tfru23238_t",2953.48967183921,-0.750936320528483,0.253441391316146,-2.9629584837299,0.00304697662224561,0.0103445595882671 +"Tfru23239_t",367.145343043847,-0.269246880722153,0.161948501666674,-1.66254629064938,0.0964032898906565,0.184868764783837 +"Tfru23240_t",279.947450093011,-0.234976566510047,0.356371534293095,-0.659358405199651,0.509665645596833,0.646781536085143 +"Tfru11631_t",0,NA,NA,NA,NA,NA +"Tfru11632_t",133.175595224964,-0.440749927665968,0.208584018923549,-2.113057030642,0.0345958868689737,0.0801092548502465 +"Tfru11633_t",1875.79331325819,-0.51560915721104,0.257351161599259,-2.00352372224351,0.0451211039666561,0.100070390127219 +"Tfru11634_t",16.1206784224869,0.859030747756797,0.483495320904042,1.77670953702422,0.0756160423501393,0.152334776109111 +"Tfru11635_t",260.792824017319,0.282630499809951,0.187355388540822,1.5085261332015,0.13141992339282,0.235973835488713 +"Tfru11636_t",393.841752034732,0.740406398059454,0.228589876002747,3.23901657854067,0.00119942601478474,0.0045597340259695 +"Tfru11637_t",301.21101000655,-0.943936908556706,0.257190384671586,-3.67018739741008,0.000242372714385245,0.00110654862259114 +"Tfru11638_t",409.065664391472,1.31277441426417,0.205229023231251,6.39663140034995,1.58842145538442e-10,2.11223245225807e-09 +"Tfru11639_t",1323.37210434617,-0.351562957907941,0.324668184119387,-1.08283772511157,0.278880457438657,0.419753419029814 +"Tfru11640_t",20.018253899287,5.85656073933889,1.33493996348201,4.38713417797671,1.1485394168017e-05,6.96216472048267e-05 +"Tfru11641_t",2100.41538304271,-0.386628446480102,0.156000493958547,-2.47837962989295,0.0131980635325641,0.036095889265402 +"Tfru11642_t",33.5371737912822,0.827460018572511,0.588698095990616,1.40557617598563,0.159850014567545,0.274830859115144 +"Tfru11643_t",6.96493583013041,-0.684097244241336,0.85974618818397,-0.79569674590398,0.426208318708556,0.571341250236448 +"Tfru11644_t",0,NA,NA,NA,NA,NA +"Tfru11645_t",72.2320670499024,2.1856632264252,0.310678730129815,7.03512347147788,1.99084628964951e-12,3.35001052348542e-11 +"Tfru11646_t",0,NA,NA,NA,NA,NA +"Tfru11647_t",465.504912285056,-0.404354043546238,0.231694293014974,-1.74520502117031,0.0809491875291329,0.160801731670641 +"Tfru11648_t",84.9247490829197,-0.849705767330327,0.242330126768611,-3.5063975687252,0.000454216222820024,0.0019340485286743 +"Tfru11649_t",34.5100601167876,-0.238946155117441,0.388639236942373,-0.614827666391471,0.538668536221844,0.671984495019224 +"Tfru11650_t",23.6836348682606,0.651697184498716,0.405652319360086,1.60654125071136,0.108155038988419,0.202790698103285 +"Tfru11651_t",1.84597198310185,-1.46740496527605,1.56410100653407,-0.938177879271181,0.348153004365917,0.493830918855953 +"Tfru11652_t",0,NA,NA,NA,NA,NA +"Tfru11653_t",2945.21507267508,0.0999715303782134,0.227753148987607,0.438946863402768,0.660700038925794,0.774566101160779 +"Tfru11654_t",9.53046275988416,-0.456621756346354,0.664464987675537,-0.687202132265434,0.491955360878885,0.630293163296854 +"Tfru11655_t",1.4357580353541,-2.90563611080746,1.84990939159532,-1.57069104249572,0.116254430849741,0.214720983941339 +"Tfru11656_t",50.030343767397,-0.586491722783437,0.31157852291464,-1.88232397181019,0.0597920416484143,0.125801061586116 +"Tfru11657_t",374.563442512582,0.414327897809187,0.193631106116811,2.13977963622868,0.0323725796658974,0.0757684932987643 +"Tfru11658_t",0,NA,NA,NA,NA,NA +"Tfru11659_t",8.49264534977403,-0.430244793246992,0.753555487989138,-0.570953035449452,0.568031478744803,0.697684517328814 +"Tfru11660_t",22.6488549308135,0.345845081287448,0.430961482294979,0.802496500257366,0.422265812039084,0.567415723412471 +"Tfru11661_t",0.632498767879998,-0.282802512250215,2.61464444740829,-0.108160982473367,0.913867994804773,NA +"Tfru11662_t",101.018397789573,0.0316237329635762,0.211837461444627,0.149283005696528,0.88133032449747,0.927105648049513 +"Tfru11663_t",4.96081923223399,0.0346078320372764,0.869038392634958,0.0398231336274386,0.968234132890369,0.981834159224579 +"Tfru11664_t",192.023470482145,0.0186189849110542,0.202817900685171,0.0918014871870503,0.926855762449282,0.956636627274275 +"Tfru11665_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru11666_t",0,NA,NA,NA,NA,NA +"Tfru11667_t",306.628031283679,0.316271290001344,0.247056684473591,1.28015678132826,0.200490002254022,0.326823967546435 +"Tfru11668_t",32.8162259812555,-0.0652019946578952,0.3825907630342,-0.170422291800251,0.864678042249237,0.915917009917547 +"Tfru11669_t",32.9062200028731,-0.237852807333723,0.385424220558188,-0.617119513115324,0.537155898893943,0.670895140332811 +"Tfru11670_t",300.434296452377,0.186022809091367,0.156933735470528,1.18535895761114,0.235875551849311,0.370422766850577 +"Tfru11671_t",0,NA,NA,NA,NA,NA +"Tfru07120_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru07121_t",15.670623593296,2.24978167650952,0.59614999780991,3.7738516896328,0.000160746344618074,0.00076722183675677 +"Tfru07122_t",4.00082190184945,2.82268605256069,1.26611625536034,2.22940511237441,0.0257869623876198,0.0628251924923723 +"Tfru07123_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203642,0.621278915456996,NA +"Tfru07124_t",0,NA,NA,NA,NA,NA +"Tfru07125_t",19.5593994297939,5.84231794467704,1.22368486138923,4.77436481321208,1.80275331615768e-06,1.27192998788174e-05 +"Tfru07126_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru07127_t",0,NA,NA,NA,NA,NA +"Tfru07128_t",0,NA,NA,NA,NA,NA +"Tfru28163_t",934.279344652978,-0.451790519350507,0.13715693056654,-3.29396784751847,0.000987837973468762,0.00385019398227637 +"Tfru28164_t",317.072453815357,3.05917600515867,0.903878529177314,3.38449902991175,0.000713082709316738,0.00288126208205599 +"Tfru28165_t",398.52818987349,3.24010671512033,0.58461641147403,5.54227806734137,2.98561686290821e-08,2.87761005133014e-07 +"Tfru11368_t",0,NA,NA,NA,NA,NA +"Tfru11369_t",0,NA,NA,NA,NA,NA +"Tfru11370_t",0,NA,NA,NA,NA,NA +"Tfru27661_t",0,NA,NA,NA,NA,NA +"Tfru27662_t",1.08777585714586,3.53990333123837,2.57795187752199,1.37314562079453,0.169707080974876,0.287839672013469 +"Tfru27663_t",22683.6585551253,-0.652894058138989,0.178083049542754,-3.66623359053745,0.000246149097884545,0.00112013355239043 +"Tfru27664_t",1039.56926928552,-0.894389106477844,0.18242349982794,-4.9028173854872,9.44718013181331e-07,7.02184959647897e-06 +"Tfru22358_t",0,NA,NA,NA,NA,NA +"Tfru22359_t",14.6567337919181,-1.22719342482925,0.530881591571634,-2.31161419855647,0.0207989534801862,0.0526680899396434 +"Tfru22360_t",0,NA,NA,NA,NA,NA +"Tfru22361_t",50.9370818482526,0.325262986365509,0.421438361778354,0.771792546347676,0.440237307056223,0.584518135271985 +"Tfru04998_t",0,NA,NA,NA,NA,NA +"Tfru04999_t",44.0210659302144,7.90004125433788,1.30997886699183,6.03066313006951,1.63288247762611e-09,1.89937161378755e-08 +"Tfru05000_t",3.98638673588353,0.688929008696383,0.959088012881397,0.718316775356859,0.472561988975575,0.613240015845608 +"Tfru05001_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru05002_t",497.048818098551,0.544756151670508,0.203599893306164,2.67562100757749,0.00745909406794652,0.0223204339137108 +"Tfru05003_t",86.9094212101426,2.63499068940278,0.535455856877197,4.92102319091282,8.60929272620206e-07,6.43325446452094e-06 +"Tfru05004_t",1667.10836669586,-1.03335213337027,0.312520718451979,-3.30650760848375,0.000944667849719632,0.003703217109253 +"Tfru05005_t",0,NA,NA,NA,NA,NA +"Tfru05006_t",55.1868146708737,-0.146731859474264,0.323977411313306,-0.452907685382932,0.650615216627034,0.766821862249344 +"Tfru05007_t",303.571047433118,0.181565913162451,0.293798175350349,0.617995373681055,0.53657838821358,0.670429858581022 +"Tfru05008_t",515.057215186873,-0.196011605799612,0.237838552898639,-0.824137228429687,0.409861588984421,0.555853979000808 +"Tfru05009_t",6.35530730302574,0.0305133917214831,0.819804475997625,0.0372203282793146,0.970309330218418,0.983280511067199 +"Tfru05010_t",0,NA,NA,NA,NA,NA +"Tfru05011_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru05012_t",107.005138325571,0.394156425403847,0.279674395200315,1.40934040501468,0.158734536722296,0.273510719721099 +"Tfru05013_t",655.616458958216,0.428166494556516,0.210319390127931,2.03579182259931,0.0417712639250425,0.0937465790856851 +"Tfru05014_t",69.4245049382773,7.08907515396858,0.882430168520002,8.03358204067101,9.4667302622641e-16,2.37251313851591e-14 +"Tfru05015_t",4.73867054061497,1.28845330459097,1.00509111009015,1.28192687374918,0.199868299750285,0.326119316740404 +"Tfru05016_t",1.64152991748012,0.503845709048755,1.38271030453962,0.364389928529905,0.715566855152358,0.815687170494054 +"Tfru05017_t",1.34319857444855,-0.234374794721967,1.82963423681819,-0.128099261593155,0.898070420398232,0.937408165935055 +"Tfru05018_t",486.413391689414,-0.351266008210828,0.204428407392468,-1.71828373899356,0.0857448739039195,0.16849330739922 +"Tfru05019_t",53.9802874435181,5.98106888903976,0.732226073937723,8.16833639489935,3.12671049048514e-16,8.3803330271925e-15 +"Tfru05020_t",2.19942662075036,-0.746796156436654,1.20665055675877,-0.61890010513288,0.535982169252204,0.669938891459557 +"Tfru05021_t",34.7416288795719,-0.629441062978675,0.353489993886693,-1.7806474691344,0.0749700598226909,0.151292149579064 +"Tfru05022_t",82.5958890168242,1.07691555327198,0.334736423248424,3.21720457792176,0.0012944626088805,0.00488040316488301 +"Tfru05023_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru05024_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru05025_t",301.83139203339,-0.36492336496609,0.184990879195251,-1.97265598473602,0.0485347698964716,0.106313805450038 +"Tfru05026_t",11.0781965998809,5.88893198479961,1.42213754362519,4.14090184961157,3.45942975505863e-05,0.000190600782664234 +"Tfru05027_t",51.801676682634,-0.35387946491966,0.30699064917572,-1.15273695101085,0.249018369906269,0.385143822978736 +"Tfru05028_t",53.0916169481096,-1.25776137450622,0.327469118819131,-3.840854914936,0.000122606566407088,0.000600292049046296 +"Tfru05029_t",421.40487088727,-1.6380666444433,0.23270502606124,-7.03924050188848,1.93290495633789e-12,3.25741061165979e-11 +"Tfru05030_t",57.3890122889412,0.111088819014541,0.430149385005045,0.258256370663503,0.796209055503585,0.871054341407354 +"Tfru05031_t",0.982272335473057,3.38314972886282,2.23841438728222,1.51140456748515,0.130685406361189,0.234994327041894 +"Tfru05032_t",282.028995624814,0.155642218817869,0.236005334151794,0.659486021268329,0.509583719620462,0.646732655387657 +"Tfru05033_t",34.8393787064674,0.966429457581971,0.465717034256288,2.07514302998446,0.0379732807363516,0.0864803116800192 +"Tfru05034_t",2143.16872329679,-0.675732759803367,0.466518955541908,-1.44845724225382,0.147489215775635,0.258373008538261 +"Tfru05035_t",1.57662627570769,-0.611993808911963,1.74381831446081,-0.350950442392384,0.725625527716348,0.822671346019045 +"Tfru05036_t",391.379369777237,-0.996820772548045,0.234981837707873,-4.24211837932462,2.21419839871571e-05,0.000126833274029326 +"Tfru05037_t",23.5672348638356,-1.22509875114916,0.511095769755225,-2.39700428695758,0.0165297303188079,0.0435576786217969 +"Tfru05038_t",27.6681862827125,-0.571604731494996,0.391975383157347,-1.4582669117911,0.144766986775,0.254828155106536 +"Tfru05039_t",0,NA,NA,NA,NA,NA +"Tfru15321_t",387.743061988914,-0.26697341876556,0.175910978625638,-1.51766206322867,0.129099612341548,0.232666236447403 +"Tfru15322_t",0,NA,NA,NA,NA,NA +"Tfru15323_t",153.733911659042,1.27533172308765,0.462273506175989,2.75882503766532,0.00580095839302499,0.0180222093982895 +"Tfru15324_t",175.109926771754,0.432650296779957,0.218361050922878,1.98135287841586,0.0475517142327304,0.10455957600005 +"Tfru15325_t",119.147884820712,0.305081609918263,0.22376638815805,1.36339336944018,0.172758569657971,0.292019394935452 +"Tfru15326_t",7.28116026169893,0.100357504104614,0.778623816327358,0.128890873872809,0.897443998027937,0.937140569049329 +"Tfru15327_t",6.41245368359522,0.00893145714056747,0.768346330855629,0.0116242595062846,0.990725391679089,0.995682704005094 +"Tfru15328_t",220.794143310627,-1.38786931501921,0.223362581306703,-6.21352648639705,5.18084946410774e-10,6.42367928015132e-09 +"Tfru15329_t",156.948876348796,0.58788664402089,0.189143551830881,3.10815059953267,0.00188262107546969,0.00678604036024689 +"Tfru15330_t",19.2999906562794,-0.375544477644612,0.447062787868435,-0.840026250977369,0.400893668085111,0.546972144797487 +"Tfru15331_t",226.835518856206,0.248142875529119,0.208993771178841,1.18732187150581,0.235100684190214,0.369517052614439 +"Tfru15332_t",314.956421394481,-1.1469765331343,0.194813440743102,-5.88756365453654,3.91930237019845e-09,4.31292218090352e-08 +"Tfru15333_t",0,NA,NA,NA,NA,NA +"Tfru15334_t",0,NA,NA,NA,NA,NA +"Tfru15335_t",1.78806735503592,2.10922363039633,1.64342998338407,1.28342774059234,0.199342260260074,0.325545810319647 +"Tfru15336_t",34.355400078467,1.23145942648566,0.362345250603673,3.39858028892066,0.000677365778550466,0.00275626293162899 +"Tfru15337_t",0.484403283075242,-0.97736723404593,2.78203855340015,-0.351313332035393,0.725353294090627,NA +"Tfru15338_t",2462.79255672,-0.322036474902138,0.206960643370111,-1.55602760823581,0.119701527493698,0.219511650713615 +"Tfru15339_t",1048.30692450757,0.590565187848717,0.190481587938811,3.1003793817512,0.00193272914046042,0.00693514160069012 +"Tfru15340_t",8.13201043318672,0.132334704555738,0.653805869412335,0.202406724605709,0.839598771727771,0.89969933020194 +"Tfru15341_t",54.2175763496533,0.919923099698938,0.341146536978357,2.69656291354146,0.0070059161951373,0.0211453006671844 +"Tfru15342_t",911.670898559581,0.565878495396776,0.355945734878316,1.58978866705687,0.111882449266186,0.208209646979648 +"Tfru15343_t",63.2280337949908,4.58111060199175,0.590504398524622,7.75796186012784,8.63050957572803e-15,1.94121411361601e-13 +"Tfru15344_t",0.525437198958242,2.46470302181811,3.2184532812315,0.765803572850068,0.443793187997663,NA +"Tfru15345_t",60.9316171890697,4.24678388181577,0.65474103774609,6.48620391419956,8.80260119668592e-11,1.22285670255637e-09 +"Tfru15346_t",251.743054684388,-0.701116643074685,0.211906508488731,-3.30861306750268,0.000937593174251886,0.00367870533656332 +"Tfru15347_t",125.878900057071,-0.267687275410397,0.213098552997135,-1.25616655601597,0.209055589493024,0.337541598214694 +"Tfru15348_t",99.757035579666,-0.521972493855373,0.23938383850269,-2.18048343246659,0.0292216456013558,0.0695575865303491 +"Tfru15349_t",465.06337301033,-0.340865251412615,0.25506025594177,-1.33641068520857,0.181415075710054,0.303058102141599 +"Tfru15350_t",512.62911311518,-0.670743973982974,0.212878783290486,-3.1508258531697,0.00162809532984052,0.00596678602053097 +"Tfru15351_t",1.07667163333488,3.491490273075,2.22351401630075,1.57025782049433,0.116355142752279,0.214836077452026 +"Tfru15352_t",3.39582407783089,3.19454677953392,1.33314619131224,2.39624641344807,0.0165639506081568,0.0436427142230456 +"Tfru15353_t",74.8063940027169,-0.00194966782289949,0.267706127390325,-0.00728286588695374,0.994189165118359,0.997229358543683 +"Tfru15354_t",52.7454067504839,-0.325900216941696,0.322880380459376,-1.0093528026634,0.312805465050615,0.457285669072622 +"Tfru15355_t",199.282801541386,-0.62501319430619,0.322830074730268,-1.93604389190939,0.0528623254862381,0.113985821792274 +"Tfru15356_t",0,NA,NA,NA,NA,NA +"Tfru15357_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15358_t",94.7969580529354,-0.531055547996279,0.272564546938055,-1.94836619054851,0.0513711622765561,0.11133900946633 +"Tfru15359_t",639.815632461511,-1.44965988981984,0.231721336232096,-6.25604837859141,3.94854305428148e-10,4.99821230513685e-09 +"Tfru15360_t",50.958595666907,1.22683055016811,0.554903427727482,2.21089019974592,0.0270434414997601,0.0652930189699744 +"Tfru15361_t",27.3389856490143,0.720259387756004,0.422597849969783,1.70436122144849,0.0883136239179253,0.172435779382583 +"Tfru15362_t",247.839406029356,-0.320031636444918,0.175068582064327,-1.82803580557547,0.0675441781028714,0.138911845795098 +"Tfru15363_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15364_t",458.949227949939,8.81731449114047,1.19145607522052,7.4004528362563,1.35720868518249e-13,2.67851237869349e-12 +"Tfru16857_t",110.509472237942,3.05188817948256,0.472652422410974,6.4569396765493,1.06841459851573e-10,1.46066699540513e-09 +"Tfru16858_t",1039.17987480753,-0.369353251551988,0.19468551152412,-1.89717893571257,0.0578043259521222,0.122301677262433 +"Tfru16859_t",11087.841980971,-0.409135433709484,0.289755904724546,-1.4120003321362,0.157949863386609,0.272448370657857 +"Tfru16860_t",4869.73351596874,-0.229109206554044,0.303640027731158,-0.754542173724531,0.45052373143805,0.594114731576428 +"Tfru16861_t",53.0782430878322,0.0907961113260965,0.293198048766631,0.30967501901203,0.756808101473448,0.844251087178535 +"Tfru16862_t",0,NA,NA,NA,NA,NA +"Tfru16863_t",42.8782284997958,-0.0256345115125277,0.362633671984206,-0.0706898269326854,0.943644617514424,0.966533937756193 +"Tfru16864_t",204.187840083182,-0.235105906558093,0.195443555714884,-1.20293506582058,0.229001449420301,0.362194518588434 +"Tfru16865_t",124.933200445493,-0.381207605130174,0.216259305950135,-1.76273387845827,0.0779453840101833,0.155960455444605 +"Tfru16866_t",29.2554452276747,-0.953591719479654,0.372085070429179,-2.56283252208894,0.0103822116171359,0.0295202510470718 +"Tfru16867_t",183.712503855248,-0.24361538762145,0.176882455669772,-1.37727275833542,0.168427934294544,0.286168931788027 +"Tfru16868_t",1.50435491722831,4.01763219194037,1.93904670058245,2.07196257353345,0.0382689316553718,0.0870207976475535 +"Tfru16869_t",372.982870563522,1.08378366121973,0.192853658353513,5.61972052006961,1.91266606980256e-08,1.90670230031988e-07 +"Tfru16870_t",594.762053166011,1.28184039096578,0.218161362130231,5.87565267492503,4.2118057978071e-09,4.60030325792693e-08 +"Tfru16871_t",37.4211111059462,0.0277675516797983,0.343861498122165,0.0807521395429191,0.935639070812841,0.961713478015566 +"Tfru16872_t",4.07013696939221,1.56724163182087,1.0215653817795,1.53415695145311,0.124991045272326,0.22683259756687 +"Tfru16873_t",3.77590065018276,-0.20837815055353,1.04167066795997,-0.200042256120759,0.841447533366854,0.900774696103998 +"Tfru16874_t",131.387976132316,-0.258718350585821,0.234211349531179,-1.10463626593544,0.269317230098524,0.408853589038459 +"Tfru16875_t",68.3991904790041,0.0356684020042772,0.297277633415888,0.119983469978643,0.904496242400539,0.941442213592802 +"Tfru16876_t",0,NA,NA,NA,NA,NA +"Tfru16877_t",20.9686964692805,-0.0248092854972152,0.459608316462592,-0.0539791918652858,0.956951742553169,0.975392741347933 +"Tfru16878_t",969.998787177951,0.0801462478173783,0.20113935363245,0.398461297453669,0.690290181576114,0.796160289820317 +"Tfru16879_t",552.618926124407,-0.429599916091204,0.167039549029531,-2.57184552153726,0.0101158017589893,0.0288949130014269 +"Tfru16880_t",327.120176069389,1.64749899271958,0.228819475748497,7.19999461291659,6.02149385937032e-13,1.09295241340396e-11 +"Tfru16881_t",802.495762161757,0.353543939174033,0.134688994888176,2.62489106454139,0.00866766935153995,0.0253373093113198 +"Tfru16882_t",4.04821095671,-0.308309956022799,0.897688649170592,-0.343448651498109,0.731260964180372,0.826504741091698 +"Tfru16883_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru16884_t",0,NA,NA,NA,NA,NA +"Tfru16885_t",680.89604443927,0.00161302298507937,0.13777713152128,0.0117074798064746,0.990658996004572,0.995682704005094 +"Tfru16886_t",0.925008667434054,3.30780020445551,2.67420280606979,1.23692944938492,0.216113275784165,0.346548186857489 +"Tfru16887_t",177.596397559846,-0.212383302365179,0.219607985863481,-0.967101909022594,0.333493091275142,0.479157569672547 +"Tfru16888_t",0.317617804921169,-0.064299183294079,3.80307376634159,-0.0169071617445728,0.986510679338551,NA +"Tfru16889_t",0,NA,NA,NA,NA,NA +"Tfru16890_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru20552_t",0,NA,NA,NA,NA,NA +"Tfru20553_t",6.72636723367465,1.20096111255948,0.73842790040857,1.62637559048756,0.103869780217407,0.196434483798003 +"Tfru20554_t",269.479030574567,-0.472149598111579,0.226634229243673,-2.08331106773784,0.0372228785532757,0.0850135750609562 +"Tfru20555_t",3.00390794994009,-0.401961084524121,1.12954099305705,-0.355862325488721,0.721943671165468,0.819949219014625 +"Tfru20556_t",234.146611041634,-0.107773712396718,0.182398035417685,-0.590871015413735,0.55460684787389,0.685599936777379 +"Tfru20557_t",52.3596541168697,1.25913625417034,0.2887075860727,4.36128565687663,1.2930042434436e-05,7.77470042135081e-05 +"Tfru20558_t",61.3577895294386,-0.0382151120074599,0.272880149244961,-0.140043576321686,0.888625560689738,0.931665017587823 +"Tfru20559_t",0,NA,NA,NA,NA,NA +"Tfru20560_t",642.540685090055,-0.280821955598801,0.23990890945229,-1.17053575142297,0.241785435527009,0.377286776155094 +"Tfru20561_t",30.3239345850082,2.5036731113081,0.470081641567803,5.32603890455692,1.00377640492204e-07,8.90389058349396e-07 +"Tfru20562_t",105.498036509127,5.22474910256627,0.534077372223526,9.78275690807505,1.33523028734765e-22,6.1613306867712e-21 +"Tfru20563_t",79.5042200042354,-0.837703434907786,0.296745919442099,-2.82296530473855,0.00475817205010836,0.0151843562642842 +"Tfru20564_t",112.678004872887,0.242396319244919,0.222794269513864,1.08798273749961,0.276602728343406,0.417028365691555 +"Tfru20565_t",68.8063448868097,1.67142960547225,0.264587586590052,6.3171127074149,2.66495230957567e-10,3.44948714218065e-09 +"Tfru20566_t",306.788700552665,-0.388805903799031,0.221158497380049,-1.7580418948628,0.0787403811607299,0.157045693822042 +"Tfru20567_t",75.8537330594541,2.21960548350325,0.331287565499837,6.69993599112112,2.08510853001747e-11,3.115135440707e-10 +"Tfru20568_t",573.998573222349,-0.274477276423582,0.153270015840246,-1.79080869091623,0.0733240001331866,0.148600119802655 +"Tfru20569_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20570_t",69.2712851810047,-0.605189704828468,0.267523078088078,-2.26219625294988,0.0236852807263326,0.0586432772049257 +"Tfru20571_t",679.296612422838,0.140031635595858,0.145879590493841,0.959912453289824,0.337099278053628,0.482432653973666 +"Tfru22767_t",514.643006421495,-0.301439556130323,0.188272336358274,-1.60108256986144,0.109358632211876,0.204465011604158 +"Tfru22768_t",377.869365744232,0.134938731762199,0.211864912244888,0.636909294382016,0.524183928317107,0.659354559112908 +"Tfru22769_t",26.9689971905973,0.463004992457396,0.42757828236675,1.08285432528179,0.27887308798303,0.419753419029814 +"Tfru22770_t",0,NA,NA,NA,NA,NA +"Tfru22771_t",92.0880917488329,-0.474834822790779,0.32618860766647,-1.45570633563114,0.145473817717578,0.255710339343339 +"Tfru22772_t",39.6622474723718,-0.764248069432911,0.324352103889995,-2.35622972771624,0.0184614965707049,0.0478038057679482 +"Tfru22773_t",370.309231563501,-0.562132201653811,0.194191584362946,-2.89472998275342,0.00379484808426177,0.0124528885814924 +"Tfru22774_t",3.14624137603164,-1.29491764600677,1.16410572840096,-1.11237116562041,0.265978596941898,0.405115451435057 +"Tfru22775_t",39.6178810663446,0.176084652950497,0.354642678574536,0.496512866579561,0.619532611822754,0.741332398684342 +"Tfru22776_t",38.1787637645271,-1.15850482836462,0.378806894715869,-3.05829921399286,0.0022259719368039,0.0078501815231124 +"Tfru22777_t",93.5440965044465,-0.102341231282346,0.248544505629979,-0.411762195357907,0.680513733196441,0.789113852276495 +"Tfru22778_t",2.3450953411085,3.56853930608694,1.6607559637791,2.14874393584391,0.0316547038117485,0.0743120189971996 +"Tfru22779_t",84.7007505813897,2.79050244750525,0.386090710594843,7.22758245907022,4.91667617165186e-13,9.09381923318749e-12 +"Tfru22780_t",367.933701652913,-0.323359829772885,0.188528922296828,-1.71517359688597,0.0863134041245763,0.169402261186356 +"Tfru22781_t",0,NA,NA,NA,NA,NA +"Tfru22782_t",253.083112161891,0.506563429984133,0.175326457710101,2.88925833898798,0.0038615168841501,0.0126420052468226 +"Tfru22783_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru22784_t",38.1804724686216,0.341996940278686,0.342376166302814,0.998892370259815,0.317846832664561,0.462811458362581 +"Tfru22785_t",652.686813568637,-0.333843939427993,0.154150914808499,-2.16569547993098,0.0303344646762883,0.0718321150624625 +"Tfru22786_t",469.382517001698,0.345337919172979,0.156521793912113,2.20632482251568,0.027361264578234,0.0659712455570864 +"Tfru22787_t",152.65829458907,-0.153072681188116,0.184769802772818,-0.828450747313538,0.407415277088964,0.553576218884768 +"Tfru22788_t",522.377216483992,-0.282071826092481,0.164314369142755,-1.7166595201873,0.0860414004384677,0.168957316996833 +"Tfru22789_t",0.386816335904883,-0.0642980542470361,3.57112922694147,-0.0180049643014752,0.985634893113946,NA +"Tfru14548_t",222.88915628573,-0.207983140343757,0.18654863933668,-1.11490033421468,0.264893133480132,0.403972329869825 +"Tfru14549_t",4.46697217515765,4.54132199166757,1.49723390916392,3.03314129066413,0.00242022254781731,0.00845264990951177 +"Tfru14550_t",230.966773902577,0.341338739082691,0.203581225034917,1.67667101435384,0.093606831665489,0.180565496696573 +"Tfru14551_t",0,NA,NA,NA,NA,NA +"Tfru14552_t",0,NA,NA,NA,NA,NA +"Tfru14553_t",620.596048810419,2.1576496186916,0.260853623003866,8.27149569112798,1.32288811549196e-16,3.69615930395882e-15 +"Tfru14554_t",5.46242215437036,-0.146459272361832,0.775371352789814,-0.188889197201916,0.850179660550138,0.906869110295605 +"Tfru14555_t",2.20734319525281,-0.300887063466337,1.18171201251427,-0.254619619907354,0.799016904036364,0.872633140363744 +"Tfru14556_t",72.3830463136649,-0.00191715975509608,0.272452883306244,-0.00703666531926969,0.994385599714775,0.997242911453825 +"Tfru14557_t",0,NA,NA,NA,NA,NA +"Tfru14558_t",0,NA,NA,NA,NA,NA +"Tfru14559_t",247.392225668004,0.202525417834341,0.193428676717622,1.04702891665851,0.295086241661488,0.437763812387385 +"Tfru14560_t",378.151379484835,0.585657637455596,0.279293005159429,2.09692912689054,0.0359998496900272,0.0827778317130184 +"Tfru14561_t",203.296933096882,-0.502185025270212,0.199844324539864,-2.51288109595546,0.0119749688314445,0.0332671055669971 +"Tfru14562_t",72.0668515168054,0.451565679179152,0.27572544128641,1.63773671762878,0.10147662761335,0.192722923114967 +"Tfru14563_t",43.8917740820361,0.864650590599473,0.334615208041843,2.58401462282416,0.00976576537941305,0.0280310156715742 +"Tfru14564_t",101.718029168971,1.72514856569134,0.594789995963016,2.90043305603715,0.00372647427671019,0.0122825470269181 +"Tfru14565_t",410.110093131619,-0.0855431476553372,0.165677830856667,-0.516322233415423,0.605629370230198,0.729932881961518 +"Tfru14566_t",144.777892137324,-0.422008304563243,0.204874876419655,-2.05983433370729,0.0394143810781784,0.0891791275436474 +"Tfru14567_t",420.818665008792,-0.985397820653599,0.292538271941071,-3.36844069705894,0.000755946575808858,0.00303463396710354 +"Tfru14568_t",4100.41683691775,0.377357657377434,0.182565808944487,2.06696784879461,0.038737183608162,0.0879280276758393 +"Tfru14569_t",23.4218508146804,0.242418363562708,0.496277918052696,0.488473000196973,0.625214845602815,0.746485675622087 +"Tfru14570_t",520.488919765346,0.232445408390591,0.199628859298212,1.16438780048008,0.244266889247638,0.379578737769902 +"Tfru14571_t",1139.47323616976,0.052062130115636,0.132207638605348,0.393790636190442,0.693735618242178,0.79906776832478 +"Tfru14572_t",121.993870214066,0.130651088862143,0.202105372523225,0.646450350285117,0.517987741459079,0.654281840718714 +"Tfru14573_t",1798.90814753577,-0.0690020771477794,0.154854893386798,-0.445591841747134,0.655892104731076,0.770908319094663 +"Tfru14574_t",512.1870346891,0.339686052909399,0.143341314501887,2.36977073978854,0.0177991182297316,0.046340654488296 +"Tfru14575_t",407.861878805975,1.17610708630921,0.175561486245536,6.69911785016639,2.09681445091074e-11,3.13053418354785e-10 +"Tfru14576_t",244.617711590669,-0.37172300517505,0.194042183337913,-1.91568141927014,0.055405658910532,0.118203094074748 +"Tfru14577_t",13.2324216367896,-0.746066330075181,0.579344703033839,-1.28777621710922,0.197823873399447,0.323561959122972 +"Tfru14578_t",210.542143143214,0.384285981965562,0.179844267507674,2.13677081450019,0.0326166370440231,0.0762599599921893 +"Tfru14579_t",985.779703512587,-0.408503925418649,0.185062584905997,-2.20738257614931,0.0272873426193163,0.0658142825541868 +"Tfru14580_t",0,NA,NA,NA,NA,NA +"Tfru14581_t",54.6253228470054,-0.229864086304455,0.310716119238677,-0.739788096181404,0.459428583105781,0.602138856402222 +"Tfru14582_t",39459.9151316986,0.782406617020793,0.308306339091909,2.53775715194604,0.0111565371215516,0.0313082508815455 +"Tfru14583_t",82.7410014837893,-0.602680468312287,0.259564794442641,-2.32188833468888,0.0202389491023802,0.0515298840627154 +"Tfru14584_t",537.304218548384,0.772560105795161,0.152796936579255,5.05612300279619,4.27865428930643e-07,3.4186463047011e-06 +"Tfru14585_t",46.9936796865224,1.52622020904498,0.328127980947664,4.65129552389014,3.29856233843342e-06,2.22421889527388e-05 +"Tfru14586_t",681.697580428162,1.41634159914833,0.217282821552227,6.51842418572371,7.10498322077047e-11,9.98176550413328e-10 +"Tfru14587_t",202.537905220719,-0.483460164965194,0.224840504021204,-2.15023608432936,0.0315365452308231,0.0741451709492407 +"Tfru14588_t",65.2302261508992,3.58536156056279,0.629729934585184,5.6934907547702,1.24467959008576e-08,1.27254130772588e-07 +"Tfru14589_t",77.4264437942673,-0.184616168507666,0.258487684093096,-0.714216497994445,0.475093316756372,0.615489923531555 +"Tfru14590_t",269.162811991366,0.740128007346223,0.296425920538544,2.49683970282209,0.0125305585568955,0.0345191901161154 +"Tfru14591_t",76.2514108266829,0.905975666876013,0.432100908788557,2.0966761431167,0.0360222537762517,0.0828208382486658 +"Tfru14592_t",0,NA,NA,NA,NA,NA +"Tfru14593_t",114.001820568879,0.229113978316617,0.301241698196979,0.760565285908067,0.446916760747342,0.59082031458004 +"Tfru14594_t",133.143927316221,0.733967282654035,0.256291251492106,2.86380154757893,0.00418590174046102,0.0135788492464876 +"Tfru14595_t",242.824244837198,-0.816019530185856,0.170149872507722,-4.79588681530645,1.6195671361424e-06,1.152126907402e-05 +"Tfru14596_t",71.8890735302106,-1.26140207732534,0.292701095056195,-4.30952291819465,1.63607104089455e-05,9.63052864156237e-05 +"Tfru14597_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru14598_t",10.5895170160152,2.03426100203454,0.952070329549123,2.13667093585188,0.0326247655450559,0.0762709968555678 +"Tfru14599_t",61.7405210525678,0.231073295860208,0.358790293283029,0.644034412820437,0.519553119001163,0.655619163066884 +"Tfru14600_t",155.588814406196,-1.26072142053995,0.227579585110011,-5.53969469594791,3.02999415492695e-08,2.91661372848452e-07 +"Tfru14601_t",0.594766669516892,-0.173529398978432,2.63742294744989,-0.0657950592058873,0.94754098989697,NA +"Tfru14602_t",261.129377834307,1.03952292985368,0.431945091601578,2.40660896504069,0.016101399858366,0.0425981576442588 +"Tfru14603_t",469.905874581564,0.707839333425473,0.381746816976443,1.85421148768649,0.0637089092317177,0.13260838807718 +"Tfru14604_t",6.61601931976264,2.47093421608993,1.27611236082811,1.93629831662038,0.0528311748601738,0.113929629347725 +"Tfru14605_t",86.8895056705882,0.115640864030392,0.275269886786687,0.420099944023319,0.674412443586845,0.784600014943785 +"Tfru14606_t",224.758102058986,-0.15336695206957,0.188175504775859,-0.815020808644835,0.41506039915612,0.560754385895582 +"Tfru14607_t",320.683108537928,0.669092796660535,0.192286868543488,3.47965933258314,0.000502051734794352,0.00211222372239605 +"Tfru01687_t",42.0317430540043,-5.68045138009669,0.732568145368475,-7.75416105110531,8.89294103560767e-15,1.99622889044032e-13 +"Tfru01688_t",11.8166040134868,-4.13778572323234,0.908089315744431,-4.55658452477252,5.19921222965616e-06,3.3668509751072e-05 +"Tfru01689_t",136.403509676638,-1.33831737644257,0.2424748419377,-5.51940715064547,3.40145259845337e-08,3.2601502849416e-07 +"Tfru01690_t",0,NA,NA,NA,NA,NA +"Tfru01691_t",0,NA,NA,NA,NA,NA +"Tfru01692_t",18.6420277603124,0.323050073928621,0.574837578709151,0.5619849604371,0.574126266008725,0.703230478674967 +"Tfru01693_t",243.017572857545,0.330601194778457,0.205644664375031,1.6076332239554,0.107915531259832,0.202477329778257 +"Tfru01694_t",625.513637138386,0.471746745100338,0.16739824651049,2.81811043385556,0.0048307191734427,0.0153829674305133 +"Tfru01695_t",0,NA,NA,NA,NA,NA +"Tfru01696_t",1421.78244359987,-0.141793403323789,0.137549664970834,-1.03085240777471,0.302610037558436,0.446022961048327 +"Tfru01697_t",2.12163049340938,-1.01499841742022,1.64833568082015,-0.615771671529425,0.53804522659301,0.671581270002876 +"Tfru01698_t",195.867714315105,5.15253628030777,0.469857504121247,10.9661679022118,5.55783013641171e-28,3.79220239185652e-26 +"Tfru01699_t",2800.71967591732,-0.182926228706474,0.212427206931238,-0.861124294524505,0.389169589982396,0.535416206049427 +"Tfru01700_t",94.2841455636273,1.81816882865897,0.336662298968833,5.40057153482248,6.64289148751533e-08,6.07800128743226e-07 +"Tfru01701_t",436.246127932776,0.501624289778215,0.187418599383458,2.67649150846493,0.00743974510018274,0.022271468076791 +"Tfru01702_t",8.04091935482438,-3.18742307063177,0.909218578762887,-3.50567305275336,0.000455454314097217,0.00193858264539667 +"Tfru01703_t",380.098935769686,-0.681537189029399,0.305610394353285,-2.23008510712349,0.0257417933351325,0.0627356348513847 +"Tfru01704_t",0,NA,NA,NA,NA,NA +"Tfru01705_t",19.8868424827782,0.580534174671696,0.55639642982379,1.04338227845127,0.296771277835903,0.43961750052737 +"Tfru01706_t",0,NA,NA,NA,NA,NA +"Tfru01707_t",0,NA,NA,NA,NA,NA +"Tfru01708_t",0,NA,NA,NA,NA,NA +"Tfru01709_t",144.958722139203,-0.958300450358469,0.19443178055236,-4.92872331691887,8.2768690937304e-07,6.19519499390255e-06 +"Tfru01710_t",3982.05886426931,-0.748065503168565,0.228203824349004,-3.27805857462103,0.00104523703653812,0.00404223343316452 +"Tfru01711_t",0,NA,NA,NA,NA,NA +"Tfru01712_t",25.2079691126505,1.75989178125448,0.546362035873578,3.22110920177789,0.00127695482126663,0.00482251922037582 +"Tfru01713_t",232.034640092379,0.0598044805992862,0.169084653930605,0.353695496362615,0.723567098097713,0.8210430287191 +"Tfru01714_t",297.644749955244,0.0227131221717214,0.185257283810678,0.12260312633609,0.902421378666005,0.940232330286089 +"Tfru01715_t",28.7780242643659,-0.367375402504702,0.363719843790936,-1.01005047917008,0.312471105977814,0.456975975415505 +"Tfru01716_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru01717_t",22.7026554592123,-1.24327550710622,0.444564389087157,-2.79661515322694,0.00516410047209289,0.016307685701346 +"Tfru01718_t",7.79749410184814,-0.450614785724051,0.72256050863639,-0.623636055857035,0.532866625947721,0.667275911409467 +"Tfru01719_t",350.753784997489,-0.45999579739566,0.185105706077991,-2.48504385489796,0.0129535475793308,0.035487868138747 +"Tfru01720_t",248.831501847053,0.130388602121035,0.178932833527054,0.728701376661096,0.466184350527181,0.607853983034159 +"Tfru01721_t",957.457795776803,-3.30247040161933,0.269341766075522,-12.2612636344463,1.46202045105679e-34,1.51481563401161e-32 +"Tfru01722_t",539.74757882168,-1.60854980008733,0.488498889665059,-3.29284228504642,0.00099180092413948,0.00386294895270476 +"Tfru01723_t",116.898076634593,0.536327828459489,0.295739939244787,1.81351166105287,0.0697529417140528,0.142772163486419 +"Tfru01724_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru01725_t",1088.89855273989,-0.518190682719107,0.159885978491449,-3.24100141618623,0.00119110592160703,0.00453426612103509 +"Tfru01726_t",28.1779720798411,-0.941947195732143,0.397494175440715,-2.36971320318788,0.0178018880748947,0.0463424747139866 +"Tfru01727_t",44.0085086443034,0.369391396433555,0.501390993888016,0.736733210082463,0.461284606767213,0.603751652111248 +"Tfru01728_t",185.41225747771,-1.14844134212478,0.203345170590698,-5.64774338524328,1.62567592937402e-08,1.63811919402929e-07 +"Tfru01729_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru01730_t",297.131712027404,0.822130808411209,0.163894084236787,5.0162323566446,5.26945957878581e-07,4.13083038020211e-06 +"Tfru01731_t",74.6738366292806,-0.404241815507542,0.258989437698295,-1.56084286332347,0.118560831203135,0.217866113993444 +"Tfru01732_t",939.903671317718,0.323222599091947,0.13172064400451,2.45384921653497,0.0141336231444359,0.0382063638087299 +"Tfru01733_t",361.354382383532,-0.201525552925911,0.160935447344069,-1.25221358160494,0.2104920483632,0.339346783054921 +"Tfru01734_t",248.267571987696,-0.522821316734459,0.17544161388061,-2.98003025149008,0.0028821991835589,0.00985619926520905 +"Tfru01735_t",3737.57195630147,1.75526072003237,0.216445832334298,8.10946878072197,5.0841540502865e-16,1.32333897921495e-14 +"Tfru01736_t",32.9760982933045,3.80554103838001,0.567960304195665,6.70036446256459,2.07900353501634e-11,3.11016705305252e-10 +"Tfru01737_t",237.961478078768,3.2209337731626,0.214395374395942,15.0233361248468,5.16418287026424e-51,1.19148879006715e-48 +"Tfru01738_t",3814.80931643717,0.39585605591556,0.263713983268331,1.50108102349951,0.133334606374182,0.238684089797967 +"Tfru01739_t",249.39433556399,0.126569236447957,0.21537930217931,0.587657380106952,0.556762288155631,0.687656733384273 +"Tfru01740_t",4.36396573988862,0.233249948582304,0.976039737130943,0.238975873326571,0.811124291073871,0.880527824710575 +"Tfru01741_t",57.991815719867,-2.13892780228875,0.316340526194158,-6.76147260681975,1.36596146338245e-11,2.09672274008911e-10 +"Tfru01742_t",66.3955477314785,-1.06109992115337,0.266429211615013,-3.98267109946879,6.81450318813493e-05,0.000352947422704142 +"Tfru01743_t",437.350525843799,-1.79040487879542,0.222180636456916,-8.05832995776209,7.73438149239418e-16,1.96476115550263e-14 +"Tfru01744_t",39.7949132868763,-1.91991239491998,0.347523404899965,-5.52455566402103,3.30320501634369e-08,3.16734054266375e-07 +"Tfru01745_t",24.36891060857,1.50641601714175,0.516782650004632,2.91498953598432,0.00355700468637061,0.0117969420392671 +"Tfru01746_t",91.2067842352496,-0.306475285211157,0.23090642381756,-1.32727050267473,0.184419217740446,0.306908246061212 +"Tfru01747_t",508.878408888629,-1.52594326957214,0.48230546031787,-3.16385236146081,0.00155695754703749,0.00573575471649368 +"Tfru01748_t",644.394069152346,0.748114703449582,0.329389328108585,2.27121718771339,0.0231338334465376,0.0575069635158849 +"Tfru01749_t",3.39899173915841,-1.65621165057665,1.13922428232718,-1.45380648593039,0.145999964782646,0.25644271125767 +"Tfru01750_t",1.87332726576919,-3.28439495069603,1.75780324366833,-1.86846563318537,0.0616971960864432,0.129165879178166 +"Tfru01751_t",0,NA,NA,NA,NA,NA +"Tfru01752_t",67.5488521038666,-0.369420316300412,0.263797290533319,-1.40039465740363,0.161395169007928,0.276741026846263 +"Tfru01753_t",6.65996031665723,-0.7859916035623,0.904554220574711,-0.868927020276262,0.384887049334524,0.531255221666872 +"Tfru01754_t",174.851047153454,-0.945897571599437,0.200825993800882,-4.71003555713655,2.47673578475541e-06,1.71501692026071e-05 +"Tfru01755_t",418.008647605802,-0.366245505258005,0.150722370190909,-2.42993461948687,0.0151015467262386,0.040398352346787 +"Tfru01756_t",55.0795475987643,-0.177971688387568,0.3175306403528,-0.560486661034753,0.575147535547101,0.704093549095049 +"Tfru01757_t",815.723111383196,0.234526620029058,0.294693412882867,0.795832583208355,0.426129350462371,0.571284694599726 +"Tfru01758_t",1549.47378270043,1.48352391678443,0.306414277727372,4.84156263143968,1.28822058778413e-06,9.33626190239922e-06 +"Tfru01759_t",1.32070315655005,1.47093771643312,1.68403226406816,0.87346171912392,0.382411462925094,0.528424829603828 +"Tfru01760_t",268.148442894058,2.36717663840365,0.236970104546203,9.98934714966171,1.69695664776646e-23,8.27405006035152e-22 +"Tfru01761_t",182.55201162191,0.0688710510344909,0.247860697148173,0.277861927392705,0.781118350954641,0.860942068178521 +"Tfru01762_t",183.422383150511,-0.638015164354858,0.298838772263603,-2.1349812125184,0.0327625447787044,0.07655311674122 +"Tfru01763_t",9.88345734797792,-6.77408417068449,1.32324375963418,-5.11930180767091,3.06668857573629e-07,2.50300839988979e-06 +"Tfru01764_t",146.55406950377,0.267956525427631,0.196919844971685,1.36073906348118,0.173596165084943,0.293191621356956 +"Tfru01765_t",0,NA,NA,NA,NA,NA +"Tfru01766_t",342.474744634806,-0.518772514853413,0.192693927420147,-2.69220998190715,0.0070980239610884,0.0213800506391869 +"Tfru01767_t",189.022407256555,-0.0695392335520494,0.329554523145746,-0.21100979858588,0.832879625335553,0.895586701340974 +"Tfru01768_t",129.685225181586,0.756875374382878,0.281437109116072,2.6893232976989,0.00715970410415149,0.0215484370428873 +"Tfru01769_t",376.008400531194,6.49299488650198,2.29496165648036,2.82923894095028,NA,NA +"Tfru01770_t",1576.7656351465,1.9861458375488,0.148227108253456,13.3993428121977,6.10009099078591e-41,9.10133575825258e-39 +"Tfru01771_t",0,NA,NA,NA,NA,NA +"Tfru01772_t",104.165400017372,0.85141969053142,0.307735096924912,2.76672923900899,0.00566217604440265,0.0176612543378023 +"Tfru01773_t",75.8383000966591,-0.869571886206852,0.28825556859698,-3.01666986153745,0.00255567985240261,0.00887724896737084 +"Tfru01774_t",257.1038296175,-0.404776493817696,0.177669761364597,-2.2782520261681,0.0227115661594215,0.0566823852261094 +"Tfru01775_t",4.04769262806155,-0.0977332348615325,1.26595868547812,-0.077200967126839,0.938463672288851,0.963291501199358 +"Tfru01776_t",48.0297060059656,1.29748972955238,0.361417163844529,3.59000584186567,0.000330670550527171,0.00145505444765987 +"Tfru01777_t",0,NA,NA,NA,NA,NA +"Tfru01778_t",221.552828310357,2.45328986435337,0.4413399487196,5.55873056919222,2.71743803775547e-08,2.63616225769256e-07 +"Tfru01779_t",196.48914459768,-0.860670412369847,0.21863368670888,-3.93658646718914,8.26488490662922e-05,0.000419428853084721 +"Tfru01780_t",88.7854517976969,-0.144256263419284,0.228641821344119,-0.630926846940088,0.528088356930064,0.66318486213427 +"Tfru01781_t",91.2618911482811,-0.765833679271711,0.271127797549411,-2.82462250714866,0.00473363486814496,0.0151146737550413 +"Tfru01782_t",162.75030534163,-0.0762280454005427,0.286402794456945,-0.266156779458387,0.790118467765425,0.867103972372393 +"Tfru01783_t",109.831620331122,-1.45074034173494,0.231242340594534,-6.27367954330952,3.5261388163517e-10,4.4838060630654e-09 +"Tfru01784_t",169.027247525061,-0.157021205520515,0.22115527057623,-0.710004356266928,0.477701434773422,0.617724510904789 +"Tfru01785_t",19.8132691828883,-0.164564435111102,0.52397580684776,-0.314068766077431,0.75346881120073,0.841700708529117 +"Tfru01786_t",27.2658221887112,-0.422678897875594,0.428787060639182,-0.985754787575719,0.324253457109875,0.46933077028321 +"Tfru01787_t",60.9817452823417,-0.522591406823954,0.282659216088188,-1.84883908636083,0.0644810515514443,0.133792502662834 +"Tfru01788_t",822.47593964066,0.0481773583099716,0.145864643562286,0.330288115977873,0.741182271647966,0.833383201340508 +"Tfru01789_t",0,NA,NA,NA,NA,NA +"Tfru01790_t",0,NA,NA,NA,NA,NA +"Tfru01791_t",46.4044597478846,-1.00760690069116,0.327911388806613,-3.07280239444625,0.00212058859001036,0.00752358475656813 +"Tfru01792_t",211.987567250292,0.858900961284898,0.191831205526531,4.47737873995746,7.55651225897243e-06,4.73843497774735e-05 +"Tfru01793_t",57.730521917943,-1.06063188475553,0.408713452730191,-2.59505009602828,0.00945771329356275,0.0272727256165358 +"Tfru01794_t",741.888406901681,0.14480045274725,0.132228281790909,1.09507928853089,0.273481901537343,0.413353478517305 +"Tfru01795_t",239.097519320763,0.510794627951445,0.167994831950853,3.04053774761879,0.00236156087195937,0.00827100662197978 +"Tfru01796_t",1326.63881831058,-0.978355326759235,0.124538910159657,-7.85582052633186,3.97163437167145e-15,9.28789730804672e-14 +"Tfru01797_t",47.5219000281304,2.52017482808321,0.445517970901824,5.65672990245901,1.54284269579029e-08,1.56027200776262e-07 +"Tfru01798_t",4.3858673266123,3.59386046780799,1.33171971196833,2.6986613140209,0.00696189880008714,0.0210323022605224 +"Tfru01799_t",42.1577945113811,0.581306208923578,0.332983325471497,1.74575170723777,0.0808541058755649,0.160674381947713 +"Tfru01800_t",4522.03915097405,1.57007231479993,0.26177569522691,5.9977772704948,2.0003662674726e-09,2.28876263118797e-08 +"Tfru01801_t",169.029303631317,2.53393971453176,0.371836935006205,6.81465308036028,9.44915097662996e-12,1.47059804490249e-10 +"Tfru01802_t",104.561042675627,-0.877850367663394,0.234327546492332,-3.74625339958536,0.000179495281858181,0.000848743800546398 +"Tfru01803_t",66.1964766105067,0.617058079150043,0.26259946532535,2.34980706600272,0.0187831441798665,0.0485411970837659 +"Tfru01804_t",257.725733795893,1.38316898203318,0.285466853836897,4.84528751216582,1.26428458286247e-06,9.17467216746497e-06 +"Tfru01805_t",0,NA,NA,NA,NA,NA +"Tfru01806_t",205.09599071531,-0.156475119466943,0.21225478540319,-0.737204200931016,0.460998179146725,0.603447344522648 +"Tfru01807_t",381.478701357138,0.10591806141926,0.202452841102282,0.523173993719103,0.600853177320329,0.725984873943817 +"Tfru01808_t",83.6132352715297,0.168781774999618,0.257094066708927,0.656498133777264,0.511503667927681,0.648563835797725 +"Tfru01809_t",732.454671047683,0.31610862239387,0.150565097604912,2.09948140320907,0.0357744854770995,0.0823527036594823 +"Tfru01810_t",94.738449012817,2.8646313002575,0.507723117101237,5.64211319865175,1.67975596177073e-08,1.68805291533134e-07 +"Tfru01811_t",316.153271514461,-0.695680318014466,0.232113258436871,-2.99715889863169,0.00272508631563582,0.00940003571885475 +"Tfru01812_t",312.753084469179,-0.299385195690296,0.167666270807276,-1.78560180439884,0.0741637545471609,0.149921852295679 +"Tfru11002_t",1.13487557338218,1.33463549197752,1.8990931220343,0.702775170154832,0.482195873376507,0.621343653738602 +"Tfru11003_t",21.9539083525079,3.43536836384881,0.639732826239116,5.37000482536558,7.87345353993672e-08,7.1252685088469e-07 +"Tfru11004_t",1924.25765447447,0.678076308371069,0.240377614457458,2.82087959771759,0.00478921742761283,0.0152703641587085 +"Tfru11005_t",37.6502380230144,1.46722259113337,0.393950237592893,3.72438559778099,0.000195791473304397,0.000916505578864757 +"Tfru11006_t",4.44573689703871,5.55705578491986,1.44028637646826,3.85829920751343,0.000114178815981934,0.000562598393147441 +"Tfru11007_t",101.030742099079,0.256290897805729,0.216408658101322,1.18429133129107,0.236297759149372,0.370877610615257 +"Tfru11008_t",299.590025958316,0.759845674424665,0.2709982212291,2.80387698110497,0.00504921663436472,0.0160013407359222 +"Tfru11009_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru11010_t",41.771450106078,-0.574050593672669,0.395329747913148,-1.45208043842627,0.146479240396912,0.257073823720428 +"Tfru11011_t",109.187014028944,-0.447254223851943,0.229844698210877,-1.94589750093603,0.0516670532079499,0.111850324124001 +"Tfru11012_t",516.217755887212,-0.0701035270777783,0.161763968906222,-0.433369232665272,0.664746548853983,0.777517913836738 +"Tfru11013_t",598.740551608996,-0.123755751060615,0.234690015938103,-0.527315789578598,0.597974311201328,0.723504626949545 +"Tfru11014_t",1873.54101707552,-0.770681819071627,0.170729138603083,-4.51406142722558,6.35977831525447e-06,4.05270386965119e-05 +"Tfru11015_t",117.933513060705,2.92868401009896,0.367005719586934,7.97994105758134,1.4640318585671e-15,3.5808779229215e-14 +"Tfru11016_t",168.62014938025,-0.376897739332166,0.190518444179179,-1.97827428706956,0.0478977722030809,0.105196481050535 +"Tfru11017_t",0,NA,NA,NA,NA,NA +"Tfru11018_t",0,NA,NA,NA,NA,NA +"Tfru11019_t",13.2013249270977,-0.256393787869572,0.535631524440405,-0.478675686867828,0.632169364910035,0.751782857812744 +"Tfru11020_t",45.0176803552227,-0.404238401049013,0.301915747915435,-1.33891128183959,0.180599556453982,0.302169413385177 +"Tfru11021_t",154.828812855215,-0.404393807747393,0.254458088305397,-1.58923542356431,0.112007251781735,0.208372593090211 +"Tfru11022_t",151.711960150258,-0.668893255323593,0.247268946333393,-2.70512438072885,0.00682788184264476,0.0207028851969096 +"Tfru11023_t",52.0222060640806,0.484926265089287,0.309749497809756,1.56554334556862,0.117455562203171,0.216332440301784 +"Tfru11024_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru11025_t",12.00408904113,4.45796446562751,0.993625051129503,4.4865660950878,7.23802704274605e-06,4.55659761509583e-05 +"Tfru11026_t",142.779997022371,-2.66791627977145,0.298668869953046,-8.93268950390068,4.15775347680934e-19,1.44938509051391e-17 +"Tfru11027_t",0,NA,NA,NA,NA,NA +"Tfru11028_t",31.2801252713843,0.0974838278317741,0.532716948606571,0.182993666874618,0.854802987815993,0.90993582892513 +"Tfru11029_t",1.90170031510425,3.24701431104545,2.01448351786095,1.61183463764114,0.106997928573657,0.201160420151079 +"Tfru11030_t",111.23759050176,-1.31672967027494,0.331482438667384,-3.97224563560115,7.11982457759537e-05,0.000366580500395467 +"Tfru11031_t",12.7879890392382,-1.2350120344654,0.571477411283796,-2.1610863528114,0.0306886695728545,0.0724867994765682 +"Tfru11032_t",21.1796312927709,-1.28546304319638,0.471615311353711,-2.72566011376226,0.00641730429300391,0.0196604065814411 +"Tfru11033_t",10.1294913436208,3.17265358247353,0.818343103722608,3.87692346650355,0.000105785615589186,0.000525173486443207 +"Tfru11034_t",93.1866920913318,0.00272569958396148,0.282648867979052,0.0096434123492173,0.992305789427656,0.996386532375112 +"Tfru11035_t",0,NA,NA,NA,NA,NA +"Tfru11036_t",0,NA,NA,NA,NA,NA +"Tfru11037_t",1.17882053780469,3.66874803123094,2.15379201065775,1.70339011988002,0.0884950854408527,0.172654521154763 +"Tfru11038_t",251.977564056208,-0.321119319507961,0.379702152111039,-0.845713719879189,0.397712467502148,0.543501056863506 +"Tfru11039_t",1232.60303475352,-0.298230973825014,0.278257399197767,-1.07178092904207,0.283818440892354,0.425243134978302 +"Tfru11040_t",336.648423872498,-0.0700001818469406,0.22926777858801,-0.305320626727621,0.760121967636007,0.846555343901161 +"Tfru11041_t",11.3637800125242,-1.37469106917544,0.736942294903485,-1.86539852398549,0.0621255641110993,0.129856180518016 +"Tfru11042_t",263.081566975296,-0.832385057797707,0.223290363344204,-3.72781451618034,0.000193147443229457,0.000905454499261679 +"Tfru11043_t",348.36588293275,-0.725369490414969,0.271770952099106,-2.66904716936213,0.00760667668131892,0.0227013500637308 +"Tfru11044_t",1.47855768180991,3.99532961686523,1.99130612647814,2.00638644342015,0.0448150335643866,0.0995296666836332 +"Tfru11045_t",1.48667930227075,0.896620806195832,1.5693770808119,0.571322735089245,0.567780893216365,0.697608366191724 +"Tfru11046_t",139.377191811093,1.08731492284383,0.216464908647549,5.02305398892258,5.08562410320226e-07,4.00761505034037e-06 +"Tfru11047_t",104.659517519454,-0.532119059552268,0.247305827085666,-2.15166405831571,0.0314238228739226,0.0739500689714394 +"Tfru11048_t",479.393479416365,12.3155306309228,3.03622754060555,4.0561948886303,4.98786455083632e-05,0.000265641738285331 +"Tfru11049_t",723.911336464531,0.217858014316584,0.289259645008173,0.753157303744976,0.451355392878275,0.594895977185853 +"Tfru11050_t",4.64426540858242,3.69351846085038,1.32111164578261,2.79576557563564,0.00517769419112102,0.0163436947809998 +"Tfru11051_t",0,NA,NA,NA,NA,NA +"Tfru11052_t",0,NA,NA,NA,NA,NA +"Tfru11053_t",1507.84544663575,-0.64190053675506,0.138354983130526,-4.63951873818296,3.49221471992163e-06,2.3442531919461e-05 +"Tfru11054_t",0,NA,NA,NA,NA,NA +"Tfru11055_t",324.643956748265,-1.14448501058527,0.48775558188315,-2.34643139534476,0.018954155221733,0.0488871722787121 +"Tfru11056_t",309.242684922061,0.681421737234007,0.179852397176247,3.78878317961059,0.000151386964222758,0.000727047265945348 +"Tfru11057_t",973.239860487952,-0.594438980771144,0.12365393183316,-4.80727925071714,1.52998210567271e-06,1.09466111013284e-05 +"Tfru11058_t",24.752744745301,0.0821539108493977,0.386929246085557,0.212322825634204,0.831855189086455,0.894743073569224 +"Tfru11059_t",292.030290383447,0.40503385451317,0.167013495630553,2.42515644010671,0.0153017913068551,0.0408252213201128 +"Tfru11060_t",151.818245985955,-0.0171479077648586,0.204717054813494,-0.0837639432654065,0.933244116338861,0.96032132837986 +"Tfru11061_t",198.662302410576,0.124954655103455,0.261660997671055,0.477544059740003,0.632974754314603,0.752452664972692 +"Tfru11062_t",0.991057627173172,-1.2762982714965,2.28612285418549,-0.558280701826597,0.576652720654909,0.705294998811721 +"Tfru11063_t",631.305916255025,-0.973090305651974,0.373113038431148,-2.60803082557391,0.00910647533014741,0.026406182675395 +"Tfru11064_t",4.98160953717746,-1.23672901663528,0.946255075724089,-1.30697213506508,0.191222175260264,0.315694325931301 +"Tfru11065_t",292.546275136908,-0.287942313847355,0.244329082613606,-1.17850200543961,0.238596533310634,0.373182447027571 +"Tfru11066_t",35.8113240866972,1.37341676331683,0.397120458456515,3.45843870309497,0.000543315889752987,0.00226474382802605 +"Tfru11067_t",60.9017084999346,1.47460451262103,0.375321500577058,3.9289103085057,8.5331656383957e-05,0.000431770850073018 +"Tfru11068_t",209.993737582058,0.883853316869294,0.434088542333164,2.03611298312254,0.041739011325756,0.0936835897573383 +"Tfru11069_t",56.0594905105962,-0.126069151388504,0.298960835489501,-0.421691193035655,0.673250433579061,0.783970401676374 +"Tfru11070_t",97.308355190417,-0.0661899466404198,0.276020319712482,-0.239800992584049,0.810484537449636,0.880089468613433 +"Tfru11071_t",0,NA,NA,NA,NA,NA +"Tfru11072_t",0,NA,NA,NA,NA,NA +"Tfru11073_t",133.864566415408,-0.762697422613266,0.231132549381407,-3.29982698090128,0.00096744452961589,0.00378322707894524 +"Tfru11074_t",52.6380391489979,0.0224992430715919,0.29439735724235,0.0764247453929091,0.939081183197345,0.963491352860981 +"Tfru11075_t",0.29973714400522,1.69074106487515,3.82362864481613,0.44218234089426,0.658357263677278,NA +"Tfru11076_t",0,NA,NA,NA,NA,NA +"Tfru11077_t",225.351146111481,-0.403013198742305,0.169490002523059,-2.3777992373767,0.0174163053907502,0.0455027918100619 +"Tfru11078_t",114.33597830262,-0.931613631291153,0.23135687143236,-4.02673854259619,5.65558603342195e-05,0.000297326792172853 +"Tfru11079_t",1374.1002732704,0.573584644804191,0.179882306747906,3.18866627393229,0.00142930782879651,0.00532244745565157 +"Tfru11080_t",85.4275263899229,-0.276055880223696,0.254946653478633,-1.08279860299022,0.278897825780757,0.419753419029814 +"Tfru11081_t",25.4515998669021,2.09152927428941,0.621112834028113,3.36739020626121,0.00075883235410954,0.00304512606866981 +"Tfru11082_t",1.08552847984563,2.36087513303718,1.92518589275848,1.22631021862228,0.220081957382911,0.351120807542318 +"Tfru11083_t",94.039001480651,-0.885037282359019,0.271839390482668,-3.25573597258138,0.00113098870572406,0.00433373219022529 +"Tfru11084_t",5.39411488013815,0.134797421586169,0.857256947194291,0.157242728714356,0.875053554486223,0.922543702722243 +"Tfru11085_t",40.9839319412847,-0.208163075272647,0.460299357866299,-0.452234120502751,0.651100330059662,0.766968018671258 +"Tfru11086_t",1.3291091957146,1.62765476326338,1.84284799713088,0.883227898230059,0.377113151117233,0.52297634911412 +"Tfru11087_t",0,NA,NA,NA,NA,NA +"Tfru11088_t",0,NA,NA,NA,NA,NA +"Tfru11089_t",23.7323174816929,0.632493262004459,0.478652219442597,1.3214046364206,0.186366480939729,0.309458513387086 +"Tfru11090_t",0,NA,NA,NA,NA,NA +"Tfru11091_t",6.17636926402953,2.06695821274028,1.0802805918835,1.91335309388135,0.0557028649570088,0.118692765661036 +"Tfru11092_t",4.86234572698864,1.25000436121695,1.30456194840926,0.958179381777276,0.337972312188198,0.483342088745087 +"Tfru11093_t",0,NA,NA,NA,NA,NA +"Tfru11094_t",342.516632560945,1.0553834833631,0.294367039006451,3.58526378131611,0.000336737676636115,0.00147971513903716 +"Tfru11095_t",4.21599289483142,2.87440839728123,1.15663114240124,2.48515563165087,0.012949480797883,0.0354810700608009 +"Tfru11096_t",0,NA,NA,NA,NA,NA +"Tfru25138_t",61.0239242735889,1.75345274566304,0.296173978753525,5.92034706439303,3.21262923189156e-09,3.58239373242318e-08 +"Tfru25139_t",3.6033764037798,2.15399749971926,1.24821667865825,1.72565992471329,0.0844086117585834,0.166349483194531 +"Tfru25140_t",177.371734634133,0.387273761535105,0.217383016028143,1.78152722605048,0.0748263611889799,0.151097533466514 +"Tfru25141_t",0,NA,NA,NA,NA,NA +"Tfru25142_t",3.89005852398074,-0.758606159666869,0.955951923743089,-0.793560994884031,0.427451047260232,0.572492785019988 +"Tfru25143_t",150.901198251056,0.0556243299079487,0.275459559546083,0.201932835439109,0.839969231846438,0.899880871647836 +"Tfru25144_t",34.0333580125611,1.00528963781449,0.42078598605701,2.38907585120548,0.0168908147019122,0.044358730376403 +"Tfru25145_t",3.25653831068478,0.244472309477037,1.55517866771276,0.157198857309809,0.875088128840079,0.922543702722243 +"Tfru25146_t",0,NA,NA,NA,NA,NA +"Tfru25147_t",194.84404740406,1.3828111798089,0.242917021263148,5.6925248490962,1.25174373939992e-08,1.27917921861964e-07 +"Tfru25148_t",0,NA,NA,NA,NA,NA +"Tfru25149_t",66.9888457775654,-0.482957117745609,0.311871616587032,-1.54857669649727,0.121483511453682,0.221979179158509 +"Tfru25150_t",0.736444242303851,2.98748829480178,2.82777386011002,1.05648062489889,0.290748688137478,NA +"Tfru25151_t",156.750602859375,-0.0361039644566255,0.258050515810189,-0.139910452584338,0.888730742556478,0.931665017587823 +"Tfru25152_t",771.974438581966,-1.00788222807002,0.189195445731335,-5.32720131911237,9.97375980612032e-08,8.85413504406874e-07 +"Tfru25153_t",75.7936188712835,1.27398984417745,0.273744175620743,4.65394319820155,3.25646546751237e-06,2.1984825690174e-05 +"Tfru25154_t",175.062318238206,-0.485437873813179,0.246360399315277,-1.97043792412411,0.048788202782155,0.106739419263365 +"Tfru25155_t",303.857607020643,0.460650808679606,0.310233457698736,1.48485212425714,0.137583000654203,0.244814318388928 +"Tfru25156_t",3.91828885972136,1.16098553208476,1.07183604652011,1.08317455440512,0.278730951853136,0.419643370499373 +"Tfru25157_t",117.915699924388,-1.32222243062003,0.368992192002679,-3.58333444250884,0.00033923580815326,0.00148864654636666 +"Tfru25158_t",146.03451698505,0.672591137720002,0.273567041622531,2.45859710925283,0.013948104864374,0.0377870217727502 +"Tfru25159_t",214.983350896078,-0.23470800612262,0.173084972064366,-1.3560276396228,0.175090374028306,0.29504326601485 +"Tfru25160_t",0,NA,NA,NA,NA,NA +"Tfru25161_t",284.492901006438,0.197414870208609,0.240039216627209,0.822427572387902,0.410833592223472,0.556767336439464 +"Tfru25162_t",345.613407579297,-0.302838811879039,0.225370998960445,-1.34373461215474,0.179034220568666,0.299976480970783 +"Tfru25163_t",76.5016348650166,0.728544754912527,0.294027065680877,2.47781527603739,0.0132189563759922,0.0361221298772534 +"Tfru25164_t",583.858920380697,-0.419370945577124,0.426015775450399,-0.984402385413427,0.324917705661387,0.469928327099939 +"Tfru25165_t",332.516527376001,-0.787003144962751,0.150003907525494,-5.24655095954081,1.54972997326752e-07,1.32783142426214e-06 +"Tfru25166_t",170.997904888088,-0.735593623905009,0.195745073799943,-3.75791640435768,0.000171334097182617,0.000813418984927233 +"Tfru25167_t",90.4586426659842,-0.634050040923309,0.271774080529233,-2.33300408813308,0.0196479307534655,0.0503343280978202 +"Tfru30140_t",539.801114186175,-0.224256724963117,0.224492918342605,-0.998947880488917,0.317819939954436,0.462802411098983 +"Tfru30141_t",59.7059487661082,-0.209768894621207,0.272018739604411,-0.771156042139847,0.44061444588888,0.584768504951263 +"Tfru30142_t",1.04676324796322,0.948299252238178,1.82148117389623,0.520619848191855,0.602631619831656,0.727566254077384 +"Tfru30143_t",67.1832526343205,-0.24937695979044,0.254518234536624,-0.979799974820886,0.327184864557842,0.472534671450988 +"Tfru30144_t",329.839812390822,-0.32741548001392,0.269277896373325,-1.21590180413469,0.224022330753715,0.355979818394501 +"Tfru30145_t",0,NA,NA,NA,NA,NA +"Tfru30146_t",224.482629810697,1.91466805400001,0.272068685539282,7.0374436889157,1.95798621979852e-12,3.29719575613927e-11 +"Tfru30147_t",0,NA,NA,NA,NA,NA +"Tfru30148_t",18.2997994299802,1.99035948001122,0.611542665743692,3.25465350416844,0.00113530787032098,0.00434699574641291 +"Tfru30149_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30150_t",23.745584357831,0.771548698988793,0.403149160863996,1.9138045514848,0.0556451337324005,0.118614924557684 +"Tfru30151_t",57.9409057186478,0.526871663892936,0.307386299541253,1.7140375634153,0.0865218273325644,0.169707142480525 +"Tfru30152_t",0.962144297256873,3.35547159037783,2.16009581058066,1.55339016627964,0.120329950782667,0.220303034891695 +"Tfru30153_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30154_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru30155_t",68.8521647063212,-0.6152843300376,0.259888842776606,-2.36749036035565,0.0179091865681203,0.0465784538517761 +"Tfru30156_t",141.295075327001,-0.168672275773203,0.204425726512037,-0.825102978236306,0.409313129023953,0.555312065201022 +"Tfru30157_t",94.6436392025086,-1.22678938877287,0.267201677937395,-4.59124882090114,4.40601676239291e-06,2.89678775388817e-05 +"Tfru30158_t",2.0735821969683,-1.04911271375938,1.27857455365553,-0.820533077840393,0.411912280462969,0.557773324243543 +"Tfru30159_t",168.10709084222,-0.477450336816978,0.201969131261217,-2.36397678118182,0.0180799456785587,0.0469407406364435 +"Tfru30160_t",230.9121634178,1.53806363655795,0.209744050444051,7.33305013087,2.24972733124541e-13,4.31069329394455e-12 +"Tfru30161_t",723.630949988111,0.178389155489819,0.160273296974079,1.11303104670436,0.265695095724083,0.404810146524948 +"Tfru30162_t",83.0213731444409,-1.69458517584098,0.257030004094334,-6.59294692777984,4.31180747842703e-11,6.20168710586099e-10 +"Tfru30163_t",3.1888061982925,0.732987853165451,1.07769588842234,0.680143499701467,0.496413603364969,0.634407060490407 +"Tfru30164_t",0,NA,NA,NA,NA,NA +"Tfru30165_t",18.3553979380897,-0.38657095442878,0.497984029451037,-0.776271790994833,0.437588525246592,0.582271906475934 +"Tfru30166_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30167_t",132.435621377231,-0.716845940048207,0.2545781117896,-2.81581921952762,0.00486530354798224,0.0154776820758838 +"Tfru30168_t",2.11962747298496,-3.44691475201435,1.64617975011366,-2.09388722694247,0.0362700273716919,0.0832707440068183 +"Tfru30169_t",155.883725702882,-3.79833627525788,0.35837749128864,-10.5987021160285,3.02144148155954e-26,1.81773818164791e-24 +"Tfru30170_t",0,NA,NA,NA,NA,NA +"Tfru27506_t",73.5070122143203,-0.987804368358913,0.294714796923426,-3.35172980342608,0.000803083565168161,0.00320146244896036 +"Tfru27507_t",557.039567625169,-0.141791908229975,0.178058793621904,-0.796320728371666,0.425845640501949,0.570991877924248 +"Tfru27508_t",62.0919434413772,1.61761022122728,0.301773774689008,5.36034061572878,8.30651847750215e-08,7.47486463717322e-07 +"Tfru27509_t",99.2529818663489,-0.486722229811858,0.251914149092846,-1.93209564275991,0.0533477020458908,0.114866420221958 +"Tfru27510_t",265.582783464565,-0.643926742296973,0.206469262003438,-3.11875354253095,0.00181617808103728,0.00657809766201881 +"Tfru27511_t",151.850334981483,0.0618693114710325,0.19826255016159,0.312057478432548,0.75499684127455,0.842818700505009 +"Tfru27512_t",747.760778765089,-0.7805948694671,0.17760288521783,-4.39516997997922,1.10686106639555e-05,6.73689166873333e-05 +"Tfru27513_t",1227.40996881601,-0.737850625272892,0.122520257621564,-6.02227451685529,1.71982871902937e-09,1.99222395092533e-08 +"Tfru27514_t",241.229120544944,-0.214920498347265,0.190031159512214,-1.13097504061407,0.258065596861092,0.395573622872907 +"Tfru27515_t",149.825027184004,-0.38884274254546,0.269614553062062,-1.4422171879422,0.149241113243037,0.260735059670506 +"Tfru27516_t",1495.94446810854,-0.64955956090951,0.248831374566765,-2.61044075346385,0.00904256337374338,0.0262548739367381 +"Tfru27517_t",4.9380567546164,4.69072804191748,1.39450140263448,3.36373131863173,0.000768963650027752,0.00308191376927312 +"Tfru27518_t",0.625271523428835,2.74124551423173,3.04558826885075,0.900070945987107,0.368082496537474,NA +"Tfru27519_t",0,NA,NA,NA,NA,NA +"Tfru27520_t",0,NA,NA,NA,NA,NA +"Tfru27521_t",101.34932425364,0.900821227954251,0.27323000600563,3.29693374868824,0.000977465552218742,0.00381707887954204 +"Tfru27522_t",389.042848701855,-0.0577933740390267,0.155470343868957,-0.37173246421671,0.710092051417474,0.811595940489406 +"Tfru27523_t",161.720606090435,1.33189079859577,0.224765893375427,5.92568017591135,3.11007368791284e-09,3.47322600476494e-08 +"Tfru27524_t",632.237271881399,-0.464964834523778,0.154548125298107,-3.00854399642124,0.00262502790660497,0.00908850936723688 +"Tfru27525_t",413.43987288939,0.112522126136157,0.179991226746924,0.625153393139366,0.531870387641181,0.666475883281614 +"Tfru27526_t",0,NA,NA,NA,NA,NA +"Tfru27527_t",40.4633860558334,1.6063816989678,0.381621609873142,4.20935727277547,2.56098158162912e-05,0.000144770820401262 +"Tfru27528_t",135.328780474153,1.30289439359122,0.220502184452088,5.90875957455343,3.44693340587963e-09,3.83124167322374e-08 +"Tfru27529_t",182.454292817303,1.01622784458917,0.417558205721821,2.4337393701375,0.0149437509308778,0.0400240720240601 +"Tfru27530_t",22.9432326399462,2.88485594990246,0.660690783456469,4.36642378271126,1.26297329869519e-05,7.60843672269137e-05 +"Tfru27531_t",14.3274437541628,0.0684757605123761,0.593215289876428,0.115431550199322,0.908103072654044,0.943697065272976 +"Tfru27532_t",33.8589567094191,-0.0932484197906416,0.336001616685513,-0.277523723577554,0.781377992162303,0.861101017559205 +"Tfru27533_t",28.1468419993002,1.32195707569969,0.489070556346309,2.70299869527131,0.00687170161033383,0.0208075608225235 +"Tfru27534_t",1164.38355180014,-2.01542006299175,0.225366482410727,-8.94285628205654,3.79238793221435e-19,1.32615065504621e-17 +"Tfru27535_t",91.9139980363997,0.286756443082864,0.254247137498285,1.12786498170426,0.259376944900312,0.397184811965035 +"Tfru27536_t",855.869045000678,2.00725991554544,0.196132121590784,10.2342232331196,1.39308579033369e-24,7.49453365088172e-23 +"Tfru27537_t",52.2462270112817,0.568026202142427,0.33633494506565,1.68887060496064,0.0912442295531625,0.176739298719039 +"Tfru27538_t",22.2837392302109,1.38044618239885,0.526189922744737,2.62347514220359,0.00870377961335026,0.0254262612905337 +"Tfru27539_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru27540_t",326.033512185699,1.57886031153109,0.325689056362105,4.84775364934491,1.24867325078582e-06,9.07315173785278e-06 +"Tfru27541_t",83.9549747789623,1.3468139893089,0.367641467801912,3.6633897622087,0.000248899362005557,0.00113103913130647 +"Tfru27542_t",51.4268223536189,-0.342697025224174,0.292910112036769,-1.16997335066792,0.242011693422269,0.377451850591033 +"Tfru27543_t",43.0853186326154,1.74358909583397,0.365784426862518,4.76671221568792,1.8725648036283e-06,1.31661955090171e-05 +"Tfru27544_t",45.1183049584277,1.34401463033665,0.331460700523238,4.05482347745907,5.01721765245528e-05,0.000266901191019608 +"Tfru27545_t",0.603492576452704,1.20697926142752,3.16664675258034,0.381153742659806,0.703089170925675,NA +"Tfru27546_t",352.181898037784,-0.982778461241241,0.248391387353309,-3.95657221336482,7.60329111623777e-05,0.000389475063358666 +"Tfru27547_t",187.142109297149,-0.427739420855167,0.216317843611399,-1.97736540691286,0.0480003412621437,0.105390722794739 +"Tfru27548_t",0.686553479910102,1.4216132721838,2.21646931099198,0.641386400043391,0.52127166675642,NA +"Tfru27549_t",109.090550599601,0.808835614271118,0.339039363025521,2.38566875259919,0.0170480988493763,0.0446973350807218 +"Tfru27550_t",5073.0876107625,0.483858292507533,0.288395273519915,1.67776082666667,0.0933937995597742,0.180201158216031 +"Tfru27551_t",1087.25442628894,-0.981754864478129,0.216529434978547,-4.53404805944927,5.78638540085021e-06,3.71590545971385e-05 +"Tfru27552_t",466.651867766635,0.476146459869275,0.172080599419279,2.7669967531269,0.00565753186084005,0.0176551381903616 +"Tfru27553_t",117.143882622062,-0.778097058210361,0.227644978823885,-3.41802864368173,0.000630764683290601,0.00258638944889037 +"Tfru27554_t",287.712501546642,0.28716261397813,0.187704406319083,1.5298661315919,0.126049868176741,0.228385485080254 +"Tfru27555_t",115.318530470598,1.15243976405783,0.231931437536104,4.9688812189526,6.73403026746124e-07,5.13834290439081e-06 +"Tfru27556_t",0.796916866351753,1.79354510089373,2.10418234077449,0.852371520347221,0.394007921864215,0.539816179450329 +"Tfru27557_t",6.37854371516441,2.11654468615973,0.849866208180683,2.49044457325893,0.0127583394011209,0.0350517598572412 +"Tfru27558_t",0.680287814167604,1.49131678739415,2.54938796390852,0.584970513906318,0.558567543345192,NA +"Tfru27559_t",0,NA,NA,NA,NA,NA +"Tfru27560_t",0.349084237541777,-0.0642986208092009,3.68934358532082,-0.0174282007956734,0.986095011588046,NA +"Tfru27561_t",20.2541434359976,-0.31121407961162,0.55375614984872,-0.562005640382757,0.574112176172387,0.703230478674967 +"Tfru27562_t",234.373955400014,0.0281140727682981,0.220450144328873,0.127530298761596,0.898520694014742,0.937468682335591 +"Tfru27563_t",617.739191771354,-1.90993315742248,0.363166609239242,-5.25911003058182,1.44754259711646e-07,1.25129406425131e-06 +"Tfru27564_t",413.489853706373,0.442719832475911,0.247126860781106,1.79146787636352,0.0732182450998037,0.148426116425145 +"Tfru27565_t",153.588406641666,0.0215840481932343,0.236965182192033,0.0910853147013932,0.927424801304178,0.956883825235697 +"Tfru27566_t",151.274095141486,0.29599634361787,0.207498931159786,1.42649575091033,0.15372529255142,0.26679891797602 +"Tfru27567_t",960.024536018669,1.44541250833796,0.221956144926835,6.51215360049807,7.40809073780636e-11,1.03685472615451e-09 +"Tfru27568_t",1110.42374355715,0.0914512651129209,0.169216847328888,0.540438298883901,0.588894801518342,0.71592512673043 +"Tfru27569_t",55.1904500940126,-0.134863210106981,0.281838225591949,-0.478512841271709,0.632285236767155,0.751808471608586 +"Tfru27570_t",1.79067325742332,4.22917164055373,1.9467128713299,2.17246811424458,0.0298203721749969,0.0707696071629271 +"Tfru27571_t",11.4509521024349,5.93520399437189,1.31570512501882,4.5110442161476,6.45092708339368e-06,4.10030525777764e-05 +"Tfru27572_t",233.136445981922,0.224899931823912,0.199682908624708,1.1262853359503,0.260044762687841,0.397880754013392 +"Tfru27573_t",1877.46940620774,0.125176994588956,0.184355605968757,0.678997494712311,0.497139449341205,0.635153329694364 +"Tfru27574_t",5.08621605384419,-0.479882448192115,0.883759943554556,-0.543000903912874,0.587129180074398,0.714360718172503 +"Tfru27575_t",59.0922155768225,-0.233832078166129,0.296739785406845,-0.788003798835176,0.430694483835133,0.575493614438491 +"Tfru27576_t",3.37961364861129,-0.101349195289903,1.10927026760869,-0.091365646632166,0.927202057562986,0.956798380283206 +"Tfru27577_t",133.725570373002,-0.0576409996428054,0.219313961247555,-0.262824123530111,0.792686141120722,0.868826889798725 +"Tfru27578_t",66.8996218996831,1.0899374791655,0.281044786273035,3.87816295622943,0.000105248212089022,0.000522737458178499 +"Tfru27579_t",306.77254618482,0.889593648452476,0.242573559876293,3.6673149740893,0.000245110793480612,0.00111586239993818 +"Tfru27580_t",2204.75343159859,-1.34713780787678,0.179886198692079,-7.48883359408108,6.94883748071016e-14,1.41763885887232e-12 +"Tfru27581_t",950.82617821193,0.024368509100382,0.257967433921117,0.0944635093274356,0.92474096812689,0.955347960424678 +"Tfru27582_t",84.0802665259737,-0.152993648381662,0.241475850982327,-0.633577427139326,0.526356636039729,0.661529820551981 +"Tfru27583_t",166.864511949883,-0.502890517632458,0.272924889972953,-1.84259675869905,0.065387907526279,0.1352479111794 +"Tfru27584_t",566.048202645908,0.337861455739183,0.168851357980918,2.0009401154912,0.0453988437997798,0.100566774645063 +"Tfru27585_t",388.846282662356,0.0583371867330026,0.162455870005144,0.359095591505284,0.719523579442372,0.818321867462155 +"Tfru27586_t",137.048402236237,-0.033858926352532,0.193012773959998,-0.175423240948546,0.860747080094654,0.913439217246828 +"Tfru27587_t",305.362533654329,0.568383284680932,0.182869248275094,3.10814032453341,0.00188268653247421,0.00678604036024689 +"Tfru27588_t",28.0956369375081,6.35777043087362,1.08241904221497,5.87366831413424,4.26255819550526e-09,4.65119709485167e-08 +"Tfru27589_t",199.543122616139,-2.31014608510798,0.26895690447012,-8.58927971995837,8.75162195437749e-18,2.69781404048166e-16 +"Tfru27590_t",816.422207163082,-0.167450628703186,0.195474901198483,-0.856634932037435,0.391646673924672,0.537502456762995 +"Tfru27591_t",111.888891082468,-0.358946724926361,0.336404153330954,-1.06701038430174,0.285967146779549,0.427489462622825 +"Tfru27592_t",31.85311060074,1.01483785416494,0.356136043987953,2.84957917429798,0.00437771085359123,0.0141090393006008 +"Tfru27593_t",92.2192694326318,1.26995775392616,0.266607686915916,4.76339511668575,1.90362575794535e-06,1.33635961301182e-05 +"Tfru27594_t",25.9214418635805,-1.04146026954812,0.399344696539776,-2.60792312649228,0.00910934093015048,0.0264110700889711 +"Tfru27595_t",28.5455026272198,-0.218152694673884,0.361221065951522,-0.603931263253515,0.545889342493602,0.678380617926973 +"Tfru27596_t",233.481695135353,-0.528639521256129,0.257634310434573,-2.05189875666959,0.0401795027264964,0.0906651815909446 +"Tfru27597_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru27598_t",55.0311635777085,1.23382428065472,0.288131176079302,4.28216167873184,1.8508641655292e-05,0.000107534631424049 +"Tfru27599_t",247.490755667865,0.819770913554511,0.202177057100522,4.05471780681288,5.0194861630851e-05,0.00026695841333138 +"Tfru27600_t",518.672186888921,-1.73153911925015,0.257289695184694,-6.72992020923021,1.69756151109206e-11,2.57833942980011e-10 +"Tfru27601_t",0,NA,NA,NA,NA,NA +"Tfru27602_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru27603_t",3485.76400805359,0.809091547371469,0.402709334293975,2.0091204212834,0.0445243644404203,0.0990216909645837 +"Tfru27604_t",90.5583764365496,0.0429963434365341,0.290842591073684,0.147833724344868,0.88247399357348,0.927698246802314 +"Tfru27605_t",176.549310721068,0.164981061901943,0.193807962430942,0.851260494319111,0.394624664981117,0.540396500169944 +"Tfru27606_t",58.2463277206077,1.15187814080433,0.314034773830313,3.66799551130838,0.000244459474706137,0.00111382196103019 +"Tfru27607_t",14.2148540364726,-0.315780251687052,0.518309367012602,-0.609250520605341,0.542358398183153,0.675044822386906 +"Tfru27608_t",519.16609144365,0.610815587998788,0.23075083428797,2.64707856803026,0.00811904872188382,0.0240286049187728 +"Tfru27609_t",148.277893029497,0.284148736418559,0.18892574078727,1.50402340747473,0.132575339803632,0.237648066063699 +"Tfru27610_t",3.72811358765911,2.72278242272137,1.27094180271292,2.1423344616641,0.032166577608469,0.0753809431285377 +"Tfru27611_t",81.6467054904729,1.80595293246402,0.361805991553196,4.99149537217791,5.99136186478171e-07,4.6284666390685e-06 +"Tfru27612_t",2.50954058045134,0.488541311149671,1.15065286696459,0.424577494373641,0.671144702117197,0.782466057167268 +"Tfru27613_t",90.5990420751317,-0.682324773816057,0.314355274849173,-2.17055296477349,0.0299649808288728,0.0710398592108234 +"Tfru27614_t",5.40350297625416,2.4338517172035,1.00961814519203,2.41066558559185,0.0159234412996415,0.0421985336040234 +"Tfru27615_t",0,NA,NA,NA,NA,NA +"Tfru27616_t",21.4340223124451,0.529329521832605,0.822458263994794,0.643594386493946,0.519838491320145,0.655682220039614 +"Tfru27617_t",225.10409099408,-0.352463564923925,0.335142200005927,-1.05168362837533,0.292944724730125,0.435592514747205 +"Tfru27618_t",0.45779671522348,-0.897755407628854,2.80924069001506,-0.319572264071129,0.749292602683769,NA +"Tfru23260_t",0,NA,NA,NA,NA,NA +"Tfru23261_t",0,NA,NA,NA,NA,NA +"Tfru23262_t",648.580626707093,0.953080201550977,0.136086377080825,7.00349455981858,2.49655610226516e-12,4.14487578402777e-11 +"Tfru23263_t",0,NA,NA,NA,NA,NA +"Tfru23264_t",0,NA,NA,NA,NA,NA +"Tfru23265_t",0,NA,NA,NA,NA,NA +"Tfru23266_t",0,NA,NA,NA,NA,NA +"Tfru23267_t",38.8945483445194,2.54333654346192,0.646070345412739,3.93662479870844,8.26356545080696e-05,0.000419428853084721 +"Tfru23268_t",90.1019512105242,0.655810895202739,0.410071655651725,1.59925926643348,0.109763006370677,0.205015530176577 +"Tfru23269_t",318.598533481144,-0.249709847787691,0.187128428360323,-1.33443031599061,0.182062870133776,0.303936075905856 +"Tfru23270_t",71.5661844567575,1.77155289585421,0.279269891418959,6.34351553922633,2.24580307725369e-10,2.93924402742325e-09 +"Tfru23271_t",610.602272206503,-0.270958239600079,0.249606920350403,-1.08553977277434,0.277682658136481,0.418290226095069 +"Tfru23272_t",15.2234182525954,-0.677189684596858,0.482101112558424,-1.40466318570213,0.160121457862878,0.27489400329635 +"Tfru23273_t",103.550075091459,1.04311417948238,0.32569976098339,3.20268635240286,0.00136152178677226,0.00510314144832745 +"Tfru23274_t",216.438264252493,0.0785998634383631,0.335299306238929,0.234417017798283,0.814661248373337,0.882612128508268 +"Tfru23275_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23276_t",0.685744147476737,1.48376364471346,2.54258508249333,0.583564992546265,0.559513018657583,NA +"Tfru23277_t",22.4070336985085,1.10734467736427,0.521894219093711,2.12177992560872,0.0338562231576173,0.0786977850298584 +"Tfru23278_t",14.920211044154,2.66350728259532,0.708726077746604,3.75816181487769,0.000171166180589809,0.000812794212094191 +"Tfru23279_t",0,NA,NA,NA,NA,NA +"Tfru23280_t",7.56274647989478,3.02857643067094,0.907475820098746,3.33736322620849,0.000845773377732647,0.00335312811225095 +"Tfru23281_t",462.372370793247,2.15885366192305,0.21493234456784,10.0443405401072,9.72962710719542e-24,4.87134350467636e-22 +"Tfru23282_t",1.06197862172747,3.50930097629244,2.54885754911432,1.3768133011246,0.168569977420964,0.286323322304279 +"Tfru23283_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23284_t",281.50252188447,0.680848098810212,0.187944637313215,3.6225992321109,0.00029165751770237,0.00130259334387927 +"Tfru23285_t",1449.47809959662,1.06879209163245,0.412063164784199,2.59375790649034,0.0094933307675571,0.02736133194822 +"Tfru23286_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru23287_t",55.3370695698101,0.826716972859012,0.301998211704576,2.73748963012977,0.00619100718891327,0.0190656283757073 +"Tfru23288_t",163.928307827552,2.54991365192843,0.369242975745509,6.9057878400533,4.99255661394277e-12,8.0499579985619e-11 +"Tfru23289_t",12.8108597650306,-0.00111010611692555,0.596757865458497,-0.00186022871449318,0.998515753085171,0.999214455475917 +"Tfru23290_t",243.899073622263,-0.5310824899498,0.185060638706492,-2.86977551607883,0.0041076330337648,0.0133598063211243 +"Tfru23291_t",1324.80621394002,0.020182371506378,0.257149023492154,0.0784851182100396,0.937442167652733,0.962604070294479 +"Tfru23292_t",51.5827093324553,0.425457322834691,0.344008458768096,1.23676413178404,0.216174661804895,0.346610469350448 +"Tfru23293_t",313.455220924093,-1.05398925371462,0.172898624138962,-6.09599560993328,1.08758398105408e-09,1.29397137204982e-08 +"Tfru23294_t",57.0879857169391,0.135446559111225,0.289755443343561,0.467451301512313,0.64017702594883,0.758572660599079 +"Tfru23295_t",374.007966983777,-0.116125582731347,0.186047415957724,-0.62417197322286,0.53251465082067,0.666947108700352 +"Tfru23296_t",125.70093184385,-0.484308935916692,0.246117387717607,-1.96779650721949,0.0490914562361807,0.107281202086293 +"Tfru23297_t",0,NA,NA,NA,NA,NA +"Tfru23298_t",36.7996844319076,1.39968509643895,0.341631188710411,4.09706473733408,4.18421917087582e-05,0.0002272332565984 +"Tfru23299_t",68.3617085802763,0.819884863135738,0.309608101824318,2.64813762399851,0.00809365688328278,0.0239724776400038 +"Tfru23300_t",9.77387370720377,-0.182204332399512,0.653541829345942,-0.278795211290241,0.780401989648797,0.860423332107566 +"Tfru23301_t",291.282012409323,-0.741061828596328,0.179664301611012,-4.12470269247358,3.71213956331186e-05,0.000203472161221943 +"Tfru23302_t",16.1229232482143,1.31401683969947,0.587880458874066,2.23517693072523,0.0254057353783963,0.0620044010652682 +"Tfru23303_t",2.88961272314447,1.28268721675814,1.23139525482959,1.04165353222483,0.297572340011757,0.44062914975937 +"Tfru23304_t",0.515060383262483,-0.899262580644207,2.72757051753078,-0.329693613735895,0.741631479694669,NA +"Tfru23305_t",170.331188457982,4.42226678261423,0.35145609952254,12.5827003390237,2.62887451680658e-36,2.97142483263289e-34 +"Tfru23306_t",448.068348399918,-0.364892775992223,0.16562580607603,-2.20311547238429,0.027586610935523,0.0664287016071664 +"Tfru23307_t",33.0295065955743,-0.104331218586285,0.473514275659748,-0.220333839863476,0.825611167260504,0.889908872672065 +"Tfru23308_t",105.728589587325,-0.25390425747692,0.220896810168063,-1.14942473494182,0.25038088553076,0.38658325065046 +"Tfru23309_t",39.6479939959697,-0.386023235365863,0.350782827982965,-1.10046217936475,0.271130799518566,0.410941810642014 +"Tfru23310_t",91.8658186516113,0.791319723955571,0.24785929496573,3.19261669837712,0.00140989961483321,0.00525717317227046 +"Tfru23311_t",11.867959818091,-0.176073159627478,1.00860138219067,-0.174571602554271,0.861416263777757,0.913889356878227 +"Tfru23312_t",0,NA,NA,NA,NA,NA +"Tfru23313_t",464.925031164972,-0.131451826879595,0.151874210507579,-0.865530931421928,0.386747446346892,0.533132605435383 +"Tfru23314_t",55.4085139676341,-0.713960774844804,0.317783571535332,-2.24668874918672,0.0246599257806729,0.0606071973392773 +"Tfru23315_t",1049.28186824469,-0.894433005615153,0.255803359391908,-3.49656473527708,0.000471290128204542,0.00200027936074676 +"Tfru23316_t",335.333685150393,-0.0806596295469171,0.26377179822654,-0.305793227665843,0.759762085178567,0.846407261003351 +"Tfru23317_t",91.7139982868779,1.13071145700574,0.297277615636697,3.80355397625223,0.000142634896954165,0.000689960965806897 +"Tfru23318_t",4.52226136815531,2.02845131736546,1.15147462734791,1.76161182295212,0.078134904991074,0.156167320239594 +"Tfru23319_t",23.1000376613019,1.93693705200375,0.445699595901319,4.34583533352047,1.38746628859019e-05,8.28039881030624e-05 +"Tfru23320_t",90.9474143652284,-0.726658564980568,0.283676996487457,-2.56157028584691,0.0104200154774323,0.0296014148749599 +"Tfru23321_t",17.5758886433285,-1.05016625127808,0.533139777456095,-1.96977658708755,0.0488639810084518,0.106878019445773 +"Tfru23322_t",1386.08121909322,-4.14352481975987,0.580070193220577,-7.14314382670625,9.12200889723745e-13,1.6202425326998e-11 +"Tfru23323_t",0,NA,NA,NA,NA,NA +"Tfru23324_t",32.7891564526258,1.18692008159234,0.387006540771867,3.06692512024496,0.00216273027485412,0.0076524748697605 +"Tfru23325_t",1.3999967135222,-1.17390247895417,1.76472219858275,-0.665205254343676,0.505919220248253,0.643176104814582 +"Tfru23326_t",2.50345865396688,-1.05113456106295,1.19729658958821,-0.877923290021624,0.379985349178449,0.525884120624185 +"Tfru23327_t",216.510935108661,-0.0803390934818175,0.191170678984279,-0.420247989433694,0.674304300565907,0.784514984750727 +"Tfru23328_t",491.960235515413,-0.613524284496368,0.165674319416072,-3.70319483827527,0.000212901242168785,0.000985058879416459 +"Tfru23329_t",1.96310539322577,-1.07277359534869,1.3447279233178,-0.797762563524282,0.425008289854987,0.570142392073045 +"Tfru23330_t",2.64003200510918,0.659795158672831,1.10932688257725,0.594770729020789,0.551996736063959,0.683368031004852 +"Tfru23331_t",135.399630466514,-0.173147684029505,0.239210327500495,-0.723830303811388,0.469169922533375,0.610324509782431 +"Tfru23332_t",203.760390666631,2.32915124809165,0.19587106847945,11.8912469624681,1.31429541182787e-32,1.20548898838966e-30 +"Tfru23333_t",0.78734938308936,-0.792185672268105,2.13703866087519,-0.37069318715258,0.710866065251889,0.812107327224976 +"Tfru23334_t",150.823258257634,-0.253146212414041,0.236053376153203,-1.07241089510935,0.283535516475434,0.424961482635964 +"Tfru23335_t",322.390250826299,0.335428570639098,0.170547016929283,1.96678063726076,0.0492085057726836,0.107472200140738 +"Tfru23336_t",0,NA,NA,NA,NA,NA +"Tfru23337_t",0,NA,NA,NA,NA,NA +"Tfru23338_t",4.79460827068741,4.65317454609329,1.42989990127272,3.2541960048753,0.00113713792130986,0.00435251354180173 +"Tfru23339_t",42.3692804502038,1.79936946364485,0.554598763782065,3.24445271275782,0.00117676554324612,0.00448425214674751 +"Tfru23340_t",26.6561374389223,2.47816482880922,0.572853464092079,4.32600129727222,1.518405280149e-05,8.98992332532665e-05 +"Tfru23341_t",44.0723301719219,2.70737480188185,0.483902964069791,5.59487129219439,2.20785495977993e-08,2.17385807302573e-07 +"Tfru23342_t",38.0579814208702,0.255038574700082,0.323990916636309,0.787178163350706,0.431177578309605,0.57602145980002 +"Tfru23343_t",12.0724678701728,5.12788031144206,1.18141210705589,4.34046704009229,1.4218019500409e-05,8.46950429649063e-05 +"Tfru23344_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru23345_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru23346_t",0,NA,NA,NA,NA,NA +"Tfru23347_t",0,NA,NA,NA,NA,NA +"Tfru23348_t",11.8094896550277,4.46213034525703,0.988525518169488,4.51392529908567,6.36386401310982e-06,4.05302437715987e-05 +"Tfru23349_t",194.4139464794,5.33038978762523,0.346088798065395,15.4017980859872,1.59180744150894e-53,4.24102982630597e-51 +"Tfru23350_t",171.973502969536,0.706080268839929,0.241503165568289,2.92368949772741,0.00345909605888861,0.0115234548672115 +"Tfru23351_t",1.97663178016612,2.2797563893062,1.59045037979187,1.43340302738935,0.151742693740995,0.264013176235985 +"Tfru23352_t",12.1215164801856,1.47117101323503,0.6049703178396,2.43180693308839,0.0150237131301666,0.0402093637710031 +"Tfru23353_t",89.0699832312805,0.658690373716922,0.231272423737688,2.84811463066612,0.0043979080520626,0.0141659732592345 +"Tfru23354_t",55.2567263488419,0.707644166986847,0.281074361018414,2.51764040100579,0.0118143872198493,0.0328577092059434 +"Tfru23355_t",1728.38615235819,-0.697642889743447,0.3063132298625,-2.27754736567079,0.022753559512445,0.0567570956184262 +"Tfru23356_t",446.856635169572,0.19979333115308,0.250008578952018,0.799145901274951,0.424205816577281,0.569407195765582 +"Tfru23357_t",3.20104480287733,-1.61933705566509,1.15257759076639,-1.40497010234975,0.16003016889431,0.274866409591222 +"Tfru23358_t",750.929745902452,0.0856790353502786,0.491996261746394,0.174145703965619,0.861750955351773,0.914201098823127 +"Tfru23359_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru23360_t",944.175014079021,-0.512969100694714,0.186637340618195,-2.74848055054587,0.00598721869211229,0.0185228026443839 +"Tfru23361_t",0,NA,NA,NA,NA,NA +"Tfru23362_t",0,NA,NA,NA,NA,NA +"Tfru23363_t",54.4436181846128,0.0829524394426109,0.291091551952675,0.284970274424512,0.775666915666554,0.857467304154975 +"Tfru23364_t",11.3635461192673,-0.0657481658582885,0.57312846860326,-0.114718024771165,0.908668626550127,0.943881561951123 +"Tfru23365_t",5.06617568820072,-1.10726474371131,0.894120090321664,-1.23838481619731,0.215573407950203,0.345993464567237 +"Tfru23366_t",85.3723191759043,-0.903911937027001,0.240607222767691,-3.75679469065539,0.000172103578862431,0.000816898853646067 +"Tfru23367_t",16.8574546366279,3.71015142169057,0.714087010477631,5.19565734602702,2.0399770668066e-07,1.7124788730357e-06 +"Tfru23368_t",2276.3148563157,0.175654218788127,0.245637428455887,0.715095496204773,0.474550036726299,0.614999700152561 +"Tfru23369_t",0,NA,NA,NA,NA,NA +"Tfru23370_t",21.6438089031432,-0.716431368060033,0.526471457228974,-1.36081711215816,0.173571492743382,0.293172076045048 +"Tfru23371_t",133.401740319564,3.35412110422836,0.333317456221152,10.0628426193285,8.06357988765526e-24,4.05534646934213e-22 +"Tfru23372_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru23373_t",108.920414826978,0.0555007903830672,0.238994809825718,0.232225923330888,0.816362544145581,0.88364256809722 +"Tfru23374_t",67.3720308871292,-0.679317842761326,0.291556357007297,-2.32997095221739,0.0198076864318955,0.0506508252223287 +"Tfru23375_t",0.428790523796186,0.637314986713047,3.47901020122227,0.183188593838886,0.854650043728864,NA +"Tfru23376_t",297.043340902477,3.20284350028424,0.308128854378764,10.3944939098342,2.62677676725478e-25,1.47336501381359e-23 +"Tfru23377_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23378_t",35.2519498329242,0.18099399490514,0.48594072521453,0.372461054432588,0.709549603495213,0.811141866968737 +"Tfru23379_t",61.6702013391539,1.08487209925455,0.355080025766656,3.05528900678713,0.00224843743851999,0.00791942553888534 +"Tfru23380_t",42.2778215912477,-0.57867184547082,0.328310780461384,-1.76257339054659,0.0779724682866436,0.155986756078938 +"Tfru23381_t",14.8891638004067,-1.25639082621046,0.542418651594815,-2.31627511796732,0.0205432520043173,0.0521444913073178 +"Tfru23382_t",31.1379350820465,-0.632344060305905,0.374535216791222,-1.68834339724692,0.0913453291846774,0.176904505638031 +"Tfru23383_t",1972.75591297007,1.89596822984814,0.27884959871415,6.79925034352194,1.05164935525592e-11,1.62878287686004e-10 +"Tfru04415_t",11.5771314422365,2.27189511383439,0.697077061068657,3.25917354151843,0.00111737295276008,0.00428933219258502 +"Tfru04416_t",4.57968821966246,1.8714826948287,0.996482559633553,1.87808876004505,0.0603690237015393,0.126848065950657 +"Tfru04417_t",3.26324770843049,0.871739031442354,1.26429556950116,0.689505723559807,0.490505072667022,0.628795023845111 +"Tfru04418_t",5.44454931138909,0.775468562732155,0.804634149773132,0.963752983826003,0.335169783595882,0.480685662087525 +"Tfru04419_t",358.455002327337,0.854820763279127,0.204759157115495,4.17476207326328,2.98297646169671e-05,0.000166398338017877 +"Tfru04420_t",551.495341673402,0.0634033597706901,0.143123654121057,0.442997072427053,0.657767852253447,0.772544976826668 +"Tfru04421_t",346.328153969763,-1.34442246687137,0.21351957336309,-6.29648348250106,3.04473707444126e-10,3.91841378527863e-09 +"Tfru04422_t",48.2758006126963,-0.813589625384569,0.398509560206023,-2.04158119811217,0.0411930919147898,0.0926068706231035 +"Tfru04423_t",271.122940257978,-0.0320072556169188,0.192575610641718,-0.166206174864311,0.867994700198706,0.918367644082819 +"Tfru07339_t",60.8961516272902,0.12784789533454,0.282633722964107,0.452344801581855,0.65102060542158,0.766968018671258 +"Tfru07340_t",417.82936344216,0.26148914891183,0.229256188157854,1.14059799656,0.254037251356965,0.390987805884663 +"Tfru07341_t",46.0927738445253,-1.54354745745152,0.350499940136042,-4.40384513861092,1.06348872685678e-05,6.50119576811113e-05 +"Tfru07342_t",95.2549723046173,-1.6916485665786,0.361792685471108,-4.67574009788456,2.92895366760492e-06,2.0009152344627e-05 +"Tfru07343_t",2.97881936750938,-5.04061950689545,1.59696239896049,-3.1563795804939,0.00159740831281915,0.00586546317323914 +"Tfru07344_t",525.514787562918,0.302748546786499,0.178837748784798,1.69286713148468,0.0904807609407645,0.175716684131351 +"Tfru07345_t",4983.92525999764,-3.68077832855818,0.355210192473367,-10.3622542555114,3.68180816107013e-25,2.04463688944788e-23 +"Tfru07346_t",15.2207471114608,-3.23442987969115,0.654668393737857,-4.94056213898465,7.78976620560217e-07,5.85376096681826e-06 +"Tfru07347_t",58.2051523482926,-0.342455075833264,0.330395405363909,-1.03650072087435,0.299968603291083,0.443063446518904 +"Tfru07348_t",32273.5921709597,0.428106300921403,0.349976694080178,1.22324231345338,0.221238188138425,0.352582115683112 +"Tfru07349_t",4.10856357837582,0.241373106529611,1.00886722772394,0.239251608037821,0.81091048697579,0.880397866639407 +"Tfru07350_t",462.412623234667,0.430103972469129,0.306737835396728,1.40218754531159,0.160859249833231,0.275991261213409 +"Tfru07351_t",601.894151876359,0.471080934309064,0.178633988966874,2.63712934494466,0.00836109438553396,0.0245830654641384 +"Tfru07352_t",2.78503853628712,0.0099485101663882,1.15242941650505,0.00863264163852992,0.993112234066704,0.996687063971231 +"Tfru07353_t",106.081886880797,-0.222531365454916,0.222910056842001,-0.998301147142261,0.318133351528213,0.463108131078535 +"Tfru07354_t",87.6511098653894,1.00703087107966,0.278601221806955,3.61459603281079,0.00030081629937415,0.00133922195742858 +"Tfru07355_t",0,NA,NA,NA,NA,NA +"Tfru07356_t",136.905913751429,-0.329470179892966,0.214501769323162,-1.53597884498843,0.124543568893252,0.226249618020855 +"Tfru07357_t",64.2491306362405,-0.027978715616517,0.260090937202847,-0.107572820173646,0.914334558210335,0.948374425270254 +"Tfru07358_t",341.433937163462,-0.375916516243882,0.158685854798771,-2.36893525715055,0.0178393759395298,0.0464238643635671 +"Tfru07359_t",182.180624239273,-0.112771750477341,0.282353884933081,-0.399398614628831,0.689599514583027,0.795609709061148 +"Tfru07360_t",213.269244801856,-1.38759976625673,0.216599470197889,-6.40629344563488,1.490998695536e-10,1.99453381985031e-09 +"Tfru07361_t",88.4892220738879,2.88097326957341,0.462728647088241,6.22605340668267,4.78331070632844e-10,5.99051447160775e-09 +"Tfru07362_t",29.052713351674,4.01408691297746,0.62042470462176,6.46990179964649,9.80666280400249e-11,1.34894353751429e-09 +"Tfru07363_t",18.6592000060032,-1.44780519768031,0.541638754395667,-2.67300887525247,0.00751742615632597,0.0224769535575919 +"Tfru07364_t",555.670487963073,-0.142970558561908,0.139815016586126,-1.02256940672634,0.306511480644477,0.449936175837819 +"Tfru07365_t",270.164104697854,-0.0765930136379624,0.210699938112445,-0.363517020100342,0.716218701070895,0.816020168638374 +"Tfru07366_t",0.804420711571944,-1.89268340548495,2.37757838671213,-0.796055102142092,0.426000008788226,0.571164641545681 +"Tfru07367_t",88.2479419374037,0.53906954578588,0.229718061219773,2.34665721503782,0.0189426728791095,0.0488631879938303 +"Tfru07368_t",32.1641091347521,0.589689553158944,0.358907134609556,1.64301429616452,0.100379975407709,0.19105577089346 +"Tfru07369_t",36.3624707427728,0.472505572248075,0.405489458182408,1.16527214879041,0.243908849063846,0.379363642931239 +"Tfru07370_t",454.286564942209,-0.590690423120956,0.180601854391948,-3.27067750832182,0.0010729018427542,0.00413564299704428 +"Tfru07371_t",31.987000254686,-2.97998950356407,0.508098782671963,-5.86498060060893,4.49185211451756e-09,4.88472547730335e-08 +"Tfru07372_t",140.008657569192,0.16302513037913,0.198344549435337,0.82192896574795,0.411117326336849,0.557016936882109 +"Tfru07373_t",973.287333721437,0.127626496527183,0.30267881410653,0.421656523612068,0.673275742637172,0.783970401676374 +"Tfru07374_t",98.9220093295923,-0.132686501455598,0.24794207085235,-0.535151218990234,0.59254529480909,0.719348615141615 +"Tfru07375_t",135.310789211566,-0.124171345886933,0.203427383366,-0.610396416806522,0.541599241188725,0.674212427289112 +"Tfru07376_t",9.1226509014189,0.807240079329289,0.677782696041282,1.19100131066214,0.233653070349957,0.367939467663386 +"Tfru07377_t",2.79971024119417,0.0373207892874985,1.11858335205631,0.0333643346460422,0.973384050647929,0.985161053830183 +"Tfru07378_t",169.342397699104,1.15333164908555,0.217483585192322,5.30307447371557,1.13868439644682e-07,9.98971258035276e-07 +"Tfru07379_t",291.542772007642,0.863184946410707,0.164893348722319,5.23480754741851,1.65156857834869e-07,1.40808018222643e-06 +"Tfru07380_t",23.6738502745983,4.04685059286263,0.632202692541775,6.40119164407895,1.54168913891356e-10,2.0525284312246e-09 +"Tfru07381_t",1280.22700795183,-1.37363288664238,0.894713975495466,-1.53527599239936,0.124716048683606,0.226480458417648 +"Tfru07382_t",173.99897860075,-0.0473955966951273,0.196018190538388,-0.241791828426482,0.808941471045779,0.879331147939372 +"Tfru07383_t",31.0998335412156,0.418621045913195,0.392301890357808,1.06708903577136,0.28593163240894,0.427489462622825 +"Tfru07384_t",1.84600743216939,-4.34790018217043,2.30790526832047,-1.88391622561463,0.0595763081069508,0.125417907575351 +"Tfru07385_t",0,NA,NA,NA,NA,NA +"Tfru07386_t",1755.57529364779,-0.853607902022538,0.161441564788406,-5.28741097833957,1.24059701890071e-07,1.08119528592298e-06 +"Tfru07387_t",158.199512273756,0.26688021579011,0.212568155833231,1.25550421578427,0.209295778650422,0.337758835174245 +"Tfru07388_t",51.5243024604705,0.598545450701954,0.327616603432531,1.82696922082344,0.0677043973292985,0.139202977696803 +"Tfru07389_t",39.9020717988108,0.506942580228804,0.330082069527031,1.53580768853998,0.124585553482446,0.226298570484306 +"Tfru07390_t",276.857175363494,-0.658764799674153,0.264099090682338,-2.49438495972152,0.012617561930711,0.0347204028045385 +"Tfru07391_t",124.175154548796,-0.757952292230905,0.236235849095033,-3.20845585094071,0.00133449796092685,0.00501192555219715 +"Tfru07392_t",152.295300323807,-0.663621682987915,0.270939027246964,-2.44933957920731,0.0143118446805236,0.0386181678261537 +"Tfru07393_t",115.020849831349,0.403776150073776,0.302464142215331,1.33495543344876,0.18189093314097,0.303694351215675 +"Tfru07394_t",0,NA,NA,NA,NA,NA +"Tfru07395_t",63.2627987539013,0.561993429207426,0.424605993609679,1.32356452255839,0.185647714225265,0.308502442584188 +"Tfru07396_t",6.65189439389366,1.96015862663277,0.920138183521005,2.13028723482817,0.0331479067825829,0.0773405081103215 +"Tfru07397_t",118.398633646366,0.755286550271453,0.286064445369108,2.64026712336414,0.00828407037281034,0.0244265474233854 +"Tfru07398_t",0.45779671522348,-0.897755407628854,2.80924069001506,-0.319572264071129,0.749292602683769,NA +"Tfru07399_t",716.867106364044,0.591886382609119,0.237736530386085,2.48967368055676,0.0127860429561447,0.0351063233172027 +"Tfru07400_t",44.598310778869,1.07453979571652,0.334278409795572,3.21450552661675,0.00130669399457324,0.00491410041985366 +"Tfru07401_t",775.005766526457,0.577656751172376,0.167351418996332,3.4517589073149,0.000556945134041445,0.00231594799328271 +"Tfru07402_t",334.967084878505,0.505695591562105,0.219682808976008,2.30193520339288,0.0213388265865897,0.0538038462153985 +"Tfru07403_t",4.31584712149038,1.09186716744902,1.06602354530888,1.02424301250555,0.305720507318759,0.449187562617767 +"Tfru07404_t",135.295593112097,-1.50419905095335,0.350089399075375,-4.29661410749969,1.73426714026838e-05,0.000101604446594781 +"Tfru07405_t",20.3222483213987,1.29361940286934,0.451827016036198,2.8630855547728,0.00419537264515583,0.0135997160774316 +"Tfru07406_t",8.83892292510118,2.95594155811277,0.853750636941792,3.46230085250795,0.000535578107479821,0.00223623844130567 +"Tfru07407_t",17.0598647288487,2.01049445678353,0.508726677706629,3.95201302563285,7.7496521212964e-05,0.000395975375512816 +"Tfru07408_t",742.014890866365,-0.845301845403169,0.148181786365822,-5.7044922060552,1.16690433026244e-08,1.19960123616323e-07 +"Tfru07409_t",179.863543174237,-2.98815683782258,0.29213781540244,-10.2285862366232,1.4765917591172e-24,7.92472987267218e-23 +"Tfru07410_t",11.7356408981817,0.039014725426729,0.682416803451686,0.0571714020366896,0.954408658756351,0.973948556060696 +"Tfru07411_t",255.705507525011,0.397890859964977,0.178022783200616,2.23505583280646,0.0254136834989639,0.0620170359510208 +"Tfru07412_t",309.302750706834,0.156530045989446,0.155728608920927,1.00514637017612,0.314826374619458,0.459369817706577 +"Tfru07413_t",29.0225852448931,0.756385464605562,0.386276976880322,1.95814275734044,0.0502132637841661,0.109238483217 +"Tfru07414_t",17.2942872826494,-1.12864205737171,0.512187403953166,-2.20357245933934,0.0275544259128272,0.0663654812665812 +"Tfru07415_t",16.571510340218,-0.232202131865292,0.470059552885892,-0.493984497155107,0.621317128155699,0.743030743193573 +"Tfru07416_t",62.957531710124,-0.25577540009571,0.278014329074226,-0.92000797565877,0.357568591383274,0.503643091142154 +"Tfru07417_t",245.076453424378,-0.411735635537327,0.275381866559768,-1.49514432697029,0.134876779464921,0.240982143096354 +"Tfru07418_t",0,NA,NA,NA,NA,NA +"Tfru07419_t",251.658567725627,-1.16377249252418,0.195977924831459,-5.93828357721935,2.88021539958244e-09,3.23428101568766e-08 +"Tfru07420_t",231.172091144807,0.338657799388453,0.235276862748595,1.43940120346778,0.150036883591732,0.261777925842594 +"Tfru07421_t",1291.81991867678,-0.782813184281422,0.143558015084728,-5.45293959253619,4.95439030684727e-08,4.61036403605995e-07 +"Tfru07422_t",145.48829164109,-0.45260809385185,0.323194184860715,-1.4004215269124,0.161387127397414,0.276741026846263 +"Tfru07423_t",181.188169363367,-1.86594254121165,0.209942540667672,-8.88787253539691,6.22900808234142e-19,2.13157799514986e-17 +"Tfru07424_t",12.2695628721865,7.02060316589022,1.29377775159448,5.42643677187821,5.74901774086224e-08,5.30131920232785e-07 +"Tfru07425_t",132.877573908463,1.6025802095488,0.308144252155144,5.20074672281064,1.98489437355636e-07,1.66811626286862e-06 +"Tfru07426_t",21.3429324584436,0.135128784309197,0.423400674566324,0.319151084129957,0.74961194795019,0.839003466208647 +"Tfru07427_t",257.542532048706,-1.22821015933021,0.218896241079514,-5.61092393945706,2.01249210626608e-08,1.99555043589875e-07 +"Tfru07428_t",45.2685542294193,-2.04173745785888,0.39025617894705,-5.23178765130048,1.67878539050417e-07,1.42910677213706e-06 +"Tfru07429_t",1061.5082378286,0.368373689927749,0.163967256713402,2.24662958514716,0.0246637097890258,0.0606098413394529 +"Tfru07430_t",0,NA,NA,NA,NA,NA +"Tfru07431_t",0,NA,NA,NA,NA,NA +"Tfru07432_t",0,NA,NA,NA,NA,NA +"Tfru07433_t",0,NA,NA,NA,NA,NA +"Tfru07434_t",108.668568274963,-0.589189866001426,0.230121623671848,-2.56034116481642,0.0104569451907968,0.0296837180834643 +"Tfru07435_t",7.41968366192405,1.76640985430963,0.753378310136133,2.34465185756469,0.0190448532317006,0.0490613248421714 +"Tfru07436_t",1346.53259707713,-1.67837562002185,0.162982253626221,-10.2979041133582,7.20131627492372e-25,3.93086483494617e-23 +"Tfru07437_t",274.545520462283,-0.216873826027476,0.156915118677011,-1.38210918014778,0.166938180161417,0.284117844837298 +"Tfru07438_t",116.786722384423,0.453832550893758,0.229787693709102,1.97500807623007,0.0482672315034267,0.105883223000068 +"Tfru07439_t",201.080286586309,0.0559902209460493,0.207311609830691,0.270077594746266,0.787100558626102,0.865236493152738 +"Tfru07440_t",143.833872636418,0.0495464321728769,0.229181148514383,0.216188951377768,0.828840465441202,0.892387758549128 +"Tfru07441_t",681.723129919637,0.667388907639749,0.172813821575569,3.86189542916802,0.000112510725551842,0.00055481930512188 +"Tfru07442_t",287.791360572898,-0.129194372290135,0.228796238772782,-0.564670000621985,0.572298242722812,0.701667039631845 +"Tfru07443_t",129.85763714616,-0.198571540540562,0.271729759327865,-0.730768470232105,0.46492058524558,0.606842569567018 +"Tfru07444_t",506.021321632906,-0.603376928912988,0.178954591881246,-3.37167614739602,0.000747122448712787,0.0030040604387697 +"Tfru07445_t",370.379998172878,0.208823403640137,0.164893792901514,1.26641154870433,0.205365778399704,0.332760362046435 +"Tfru07446_t",4804.78340118614,-0.650959956208184,0.190086267402508,-3.42455015348256,0.00061581816718809,0.00253206147008441 +"Tfru07447_t",1815.95249630422,-0.528961545664013,0.176326109904365,-2.99990481245749,0.00270063989725515,0.00932289386095483 +"Tfru07448_t",43.8317160240164,2.31419847738685,0.443947017389121,5.21278077505012,1.86030693413132e-07,1.57048921862916e-06 +"Tfru07449_t",1436.78264285946,-0.132592989041515,0.141971051974267,-0.933943837124969,0.35033286450129,0.496230981489802 +"Tfru07450_t",0.491510525144322,0.831723412507742,3.36482954730803,0.247181439895863,0.804767808532194,NA +"Tfru07451_t",256.9981260955,-0.0579243584674354,0.176087063575558,-0.328952946861883,0.742191253440607,0.833913546215774 +"Tfru07452_t",684.966453423773,0.687102350034347,0.31647974201924,2.17107845718787,0.0299252421886491,0.0709606823672354 +"Tfru07453_t",97.93276100403,-0.51040502559636,0.265244235786947,-1.92428319538048,0.0543190957998202,0.116415420173162 +"Tfru07454_t",416.01728349435,1.20016093697104,0.152739970953023,7.85754331025876,3.91740575705655e-15,9.18988897724588e-14 +"Tfru07455_t",413.743710883929,-0.579315057709939,0.179471185951337,-3.22790009236925,0.00124702519098139,0.00472463581753232 +"Tfru07456_t",66.6756757813751,-0.430555714259471,0.330056057944902,-1.30449268812192,0.192065650940904,0.316603716600929 +"Tfru07457_t",227.622056146104,0.052224278408623,0.183788962775661,0.284153507478954,0.776292743110673,0.857927827421128 +"Tfru07458_t",249.868484919119,0.804696942837086,0.233985474319651,3.4390893074746,0.000583674649515343,0.00241364350631068 +"Tfru07459_t",632.604934847033,-0.335145506141169,0.146931003328018,-2.28097201101234,0.0225501031535401,0.0563255619470885 +"Tfru07460_t",456.166175999645,-0.79586696170175,0.162889473037679,-4.88593244768895,1.02940491355808e-06,7.57831643599665e-06 +"Tfru07461_t",388.890681936313,0.877673773520318,0.200600818807103,4.37522527943559,1.21307131298202e-05,7.32358672364109e-05 +"Tfru07462_t",108.50849834871,0.0508327589766738,0.223004760988228,0.227944725266907,0.819689212096743,0.88585908733113 +"Tfru07463_t",275.300465867614,-0.605582854460235,0.191371589101909,-3.16443447693666,0.00155384644870279,0.00572712179215556 +"Tfru07464_t",1160.92720586551,-0.618134762931899,0.137091265700823,-4.50892884949261,6.51557537663784e-06,4.1378710819851e-05 +"Tfru07465_t",373.462035484011,-0.716289112380685,0.240884701064851,-2.97357660828715,0.00294350918883035,0.0100389722106101 +"Tfru07466_t",106.84719896786,-0.115966604945938,0.259665592752199,-0.446599812153804,0.655164031263742,0.770295299169033 +"Tfru07467_t",50.0964615177919,0.360209034836846,0.309351061034332,1.16440213145695,0.244261084220799,0.379578737769902 +"Tfru07468_t",66.3541116374997,1.15163489528088,0.29830741043156,3.86056415298172,0.000113125533846647,0.000557654063323339 +"Tfru07469_t",213.744984922266,1.13317417052393,0.186153922840737,6.08729675545654,1.14833009228159e-09,1.35833126137749e-08 +"Tfru07470_t",92.0586895201631,-3.75083232937207,0.670253177020311,-5.59614255921447,2.19173502628804e-08,2.15893617466225e-07 +"Tfru07471_t",50.9308150407443,0.670551995042819,0.289524330829616,2.31604712847929,0.0205556956114191,0.0521583296806756 +"Tfru07472_t",0,NA,NA,NA,NA,NA +"Tfru07473_t",30.2191250805698,1.12082876242601,0.396073968226146,2.82984707994253,0.00465702571030274,0.0148870497638302 +"Tfru07474_t",89.1370910113125,0.691176650442057,0.243927464587864,2.833533532642,0.00460364776919403,0.0147501269970741 +"Tfru07475_t",1808.69303577106,-0.641302893637625,0.295773572893613,-2.16822242556571,0.0301417673553457,0.0714287117124774 +"Tfru07476_t",173.531259658429,-0.299144463927896,0.185975859170383,-1.6085123373665,0.107723016355332,0.202217841472264 +"Tfru07477_t",163.912921081459,5.53499906646756,0.73706413771556,7.50952160502967,5.93438247422787e-14,1.21845394287357e-12 +"Tfru07478_t",49.4660581217734,-0.195095898401486,0.311081079083906,-0.627154499322231,0.530557965644227,0.665129244404985 +"Tfru07479_t",146.962493641327,0.159488745905901,0.209044703640727,0.762940859673751,0.445498666812426,0.589463839185372 +"Tfru07480_t",127.134475838225,0.428062132539341,0.205392457218818,2.08411807490719,0.0371494283196876,0.0848978051459827 +"Tfru07481_t",1.84345894222544,-0.623535754331542,1.5362742699439,-0.405875283164321,0.684834239859727,0.791995529190451 +"Tfru07482_t",240.748447759704,-0.0725673013161245,0.175341619845951,-0.413862386921482,0.678974891385976,0.788105288585558 +"Tfru07483_t",33.5964296366184,-0.171034288500203,0.416798016392307,-0.410352933012088,0.681547067566961,0.789861911457127 +"Tfru07484_t",1637.16954562391,0.0927171163465172,0.168332929885173,0.550796070678288,0.581773478055658,0.709928595359086 +"Tfru07485_t",378.084674018936,-0.250522867772735,0.164760041936864,-1.5205317067638,0.128377396155823,0.231663129008814 +"Tfru07486_t",69.6406091130987,-0.0016179285538537,0.314540452148489,-0.00514378529948163,0.995895871223667,0.997864189666479 +"Tfru07487_t",273.472086648713,-0.545064323882644,0.196099194612116,-2.77953371996647,0.00544370014398816,0.0170606370567785 +"Tfru07488_t",72.912679803512,0.299236366218066,0.273586301530744,1.09375493050569,0.274062475595053,0.414007303666371 +"Tfru07489_t",192.658971905744,0.527772662062975,0.186272327243517,2.83333906798195,0.00460644961516317,0.0147569914668411 +"Tfru07490_t",0,NA,NA,NA,NA,NA +"Tfru07491_t",86.6847015842442,-0.520284056050751,0.351033535434291,-1.48214914967331,0.138300613410012,0.245726240720551 +"Tfru07492_t",353.24200104869,0.619901461275186,0.280261299518953,2.21186964571705,0.0269756731480019,0.0651757751948901 +"Tfru07493_t",6.39671710298053,5.07682813581339,1.3835619474416,3.66938982761209,0.000243130090044974,0.00110919403169654 +"Tfru07494_t",1.70194315676371,4.16395041343004,1.83190391387719,2.27301791425136,0.0230251004154668,0.0573130627625567 +"Tfru07495_t",16069.774897729,2.40886008891987,0.375979638138778,6.40688974765899,1.48518134898299e-10,1.98794010707173e-09 +"Tfru07496_t",26.120097725211,2.73177921103268,0.507234777890967,5.38563073768552,7.21910380731434e-08,6.5729675837142e-07 +"Tfru07497_t",13.4786973519428,2.6573316134832,0.648483300252758,4.0977641404913,4.17160016662109e-05,0.000226657955156543 +"Tfru07498_t",75.9069216340406,3.84951745402568,0.379505065334312,10.1435206158173,3.54102780737567e-24,1.8429814495132e-22 +"Tfru07499_t",6.60917320593295,0.836216164402819,0.725553884368876,1.15252110479734,0.249107002351503,0.385254281848293 +"Tfru07500_t",634.781795401429,0.341750268532654,0.318613397587644,1.0726173824459,0.2834428224106,0.424851005662663 +"Tfru07501_t",224.211103550399,0.677823863749876,0.215139356717798,3.15062698936573,0.00162920414315733,0.00596948079958432 +"Tfru07502_t",200.75053720843,-0.433908514417817,0.185864999682454,-2.33453590056837,0.0195676785033573,0.0501689362934054 +"Tfru07503_t",243.912845953656,0.952745510804166,0.185422069139632,5.13825304196503,2.77304313427841e-07,2.2791298327268e-06 +"Tfru07504_t",784.29063375804,-0.0330434344530984,0.148166014647624,-0.223016287045879,0.823522830478591,0.888556597536923 +"Tfru07505_t",0,NA,NA,NA,NA,NA +"Tfru07506_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru07507_t",0,NA,NA,NA,NA,NA +"Tfru07508_t",0,NA,NA,NA,NA,NA +"Tfru07509_t",0,NA,NA,NA,NA,NA +"Tfru07510_t",0,NA,NA,NA,NA,NA +"Tfru07511_t",0,NA,NA,NA,NA,NA +"Tfru07512_t",0,NA,NA,NA,NA,NA +"Tfru25579_t",877.051597560895,0.0814620821577929,0.142462707673813,0.571813378307473,0.567448412840159,0.697327970907979 +"Tfru25580_t",59.2908297956147,4.04944380195514,0.421300364230494,9.61177379789704,7.13097789126989e-22,3.11094123209786e-20 +"Tfru25581_t",0,NA,NA,NA,NA,NA +"Tfru25582_t",3.09847997232,5.0297847821169,1.68123574685773,2.99171891361321,0.00277411560567045,0.00953535666639606 +"Tfru25583_t",0,NA,NA,NA,NA,NA +"Tfru25584_t",120.759662614265,-0.930456339715614,0.258667192342404,-3.59711771442567,0.000321762891371193,0.0014196603007573 +"Tfru25585_t",242.352514786133,-0.248311113495078,0.19153626063901,-1.29641830046517,0.194831410529609,0.319883131659648 +"Tfru25586_t",125.75913236537,-0.577583341789273,0.237295643474008,-2.43402421272238,0.0149319962084265,0.0400060720802873 +"Tfru25587_t",44.5457147995801,-0.237675477418159,0.3309548621947,-0.718150734641072,0.472664350593511,0.613337285689266 +"Tfru25588_t",105.54887566114,-0.239320493223114,0.292286954020988,-0.818786093360599,0.412908466589016,0.558564523831128 +"Tfru25589_t",3.45419300200869,-0.931928074203782,1.02443568616768,-0.909698956007711,0.362981294931635,0.509094333307246 +"Tfru25590_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru25591_t",30.0179830895405,-0.0940723528364462,0.40015163624211,-0.235091761013138,0.8141375132777,0.882300980444285 +"Tfru25592_t",574.449267779621,-0.333170460556206,0.132267899465712,-2.5189064157065,0.0117719940297256,0.0327636385753658 +"Tfru25593_t",134.98227763351,-0.515234256068132,0.220502108924488,-2.33664094452982,0.0194578616004058,0.0499102513028174 +"Tfru25594_t",1163.54016672267,-0.248037288941272,0.132196135804374,-1.8762824452624,0.0606165062613472,0.127284425795548 +"Tfru25595_t",172.50429238621,1.07891601082591,0.211649964324692,5.09764324444083,3.4390816304426e-07,2.78058695409341e-06 +"Tfru25596_t",64.2317858262471,-0.044534380504372,0.25880205066956,-0.172078932099475,0.863375475440974,0.914999002595926 +"Tfru25597_t",165.702531751891,2.35325819915082,0.284804279396086,8.26272064500153,1.42389205178087e-16,3.96845630371804e-15 +"Tfru25598_t",537.067362925382,-0.53435322158583,0.180784097911942,-2.95575345264111,0.0031190630927466,0.010549286990429 +"Tfru25599_t",342.946223638179,-0.367571164568523,0.191237342981428,-1.92206793316627,0.0545972103640225,0.116803897136681 +"Tfru25600_t",277.336578014061,-0.472892664411138,0.237134744896677,-1.99419391121779,0.0461308673070575,0.101986447726163 +"Tfru25601_t",18.5631804869163,0.318933626344616,0.517337237607918,0.616490759140619,0.537570668994499,0.671134414649792 +"Tfru25602_t",33.6007120207851,-0.496769716733681,0.360869111999007,-1.3765925101815,0.168638267841356,0.286374112928868 +"Tfru25603_t",59.613273491716,-0.39161549453045,0.394028838218878,-0.99387521050658,0.320283624367595,0.465118909437855 +"Tfru25604_t",0,NA,NA,NA,NA,NA +"Tfru25605_t",9.98986185055378,0.275513507888425,0.625150612234574,0.440715409209332,0.659419039648548,0.773631689417829 +"Tfru25606_t",1106.70597094795,0.249795699764491,0.136558136623373,1.8292260420441,0.0673657527116573,0.138621326377978 +"Tfru25607_t",34.0413563745924,2.84978205531992,0.768807754277311,3.70675508859656,0.000209931777277175,0.000974745472087796 +"Tfru25608_t",3.87153748228984,3.31461507537379,1.57895120356664,2.09925111547876,0.0357947702162605,0.0823824514027057 +"Tfru25609_t",5.17543184310868,2.26224183950828,1.15120474851604,1.96510815510831,0.049401720938669,0.107772028620882 +"Tfru25610_t",44.4293907629366,-1.79108783946064,0.61518275260278,-2.91147278086506,0.00359729248326791,0.0119058571096622 +"Tfru25611_t",18.4364043401589,-1.14494289086796,0.633111071295708,-1.80843921829506,0.0705381687208028,0.144036881019303 +"Tfru25612_t",29.2407241280483,0.000922012906589044,0.461210768730668,0.00199911400405195,0.998404938863314,0.999208591886279 +"Tfru25613_t",1.29293514460045,0.0201778286798352,1.8274597541498,0.011041462682839,0.991190366399841,0.995808179944707 +"Tfru25614_t",87.0944080648671,-0.637615595810378,0.248692139781949,-2.56387514446349,0.0103510772645346,0.0294504334071045 +"Tfru25615_t",135.770590364782,0.300383413197944,0.419710655141016,0.715691654520946,0.474181765049029,0.614771631433048 +"Tfru25616_t",736.040121578221,0.160454096170313,0.389476117447948,0.411974159601088,0.680358363324608,0.789000897916199 +"Tfru25617_t",554.450293892409,-0.874236816131686,0.155696216297283,-5.61501645269551,1.9654354309141e-08,1.95234997531547e-07 +"Tfru25618_t",0,NA,NA,NA,NA,NA +"Tfru25619_t",53.3592188470172,0.104854741016947,0.345148791607511,0.303795764512435,0.761283493763372,0.847469388699974 +"Tfru25620_t",321.235400420739,-0.345247848281892,0.175468554140491,-1.96757675455321,0.0491167565293703,0.107326011631254 +"Tfru25621_t",104.060494376862,-0.484154451342107,0.218742082988535,-2.21335759780382,0.0268730015524008,0.0650040828731874 +"Tfru25622_t",239.178622003118,-0.618442232483336,0.202091030002119,-3.0602161435708,0.00221177308416272,0.0078050270614257 +"Tfru25623_t",14.8978484241042,-0.565426519889358,0.526674797224391,-1.07357808436855,0.283011824403076,0.424403955383332 +"Tfru01854_t",49.9973412526693,-3.41852552416226,0.417366532024771,-8.19070352281952,2.5970360653801e-16,7.0536003814571e-15 +"Tfru01855_t",0.34743332878183,-1.94360805271459,3.66213660969954,-0.530730625276716,0.595605460502085,NA +"Tfru01856_t",0.309701230418723,-1.80295482361496,4.04923350568494,-0.445258299153085,0.656133100041007,NA +"Tfru01857_t",0,NA,NA,NA,NA,NA +"Tfru01858_t",45.2934984230835,-0.317827075494697,0.411372923561477,-0.772600862358895,0.439758633982383,0.584117646657115 +"Tfru01859_t",20.9368643588062,-0.0958388960897814,0.422751195223381,-0.226702838862798,0.820654819495126,0.886487829920886 +"Tfru01860_t",264.504804351961,0.0474011831741816,0.212274548349397,0.223301302689198,0.823301013463004,0.888445763117895 +"Tfru01861_t",475.826862043679,-0.0173739228860903,0.160700008982612,-0.108114013160822,0.913905252415991,0.948048556089268 +"Tfru01862_t",93.1450803588215,-0.210762795705618,0.269623053382455,-0.781694269319973,0.434394270349719,0.57929589860724 +"Tfru01863_t",7.99127632921332,-3.99390162229629,1.04185175895129,-3.83346439450895,0.000126351096775134,0.000617275168266208 +"Tfru01864_t",0.873414196597263,3.23458289385844,2.69891849611459,1.19847372142397,0.230732647409308,0.364263307634051 +"Tfru01865_t",1.06518757773636,2.3180293051162,2.21392676856023,1.04702167119271,0.295089583274177,0.437763812387385 +"Tfru01866_t",150.505844753079,-0.626970424079432,0.212629033748221,-2.94865857699303,0.00319156353888423,0.0107572906074943 +"Tfru01867_t",2.11285301964395,4.48739991808167,1.6752914123191,2.67857871477403,0.0073935351851216,0.0221420202653582 +"Tfru01868_t",0.688953103485635,0.0514777450150726,2.58145661830287,0.0199413558415387,0.984090154504904,NA +"Tfru01869_t",858.468297623818,0.214952881044317,0.267374178731265,0.803940313400136,0.421431446485009,0.566702864407529 +"Tfru01870_t",1.79071133548727,0.194537471360987,1.30848904209773,0.14867336683929,0.881811377822472,0.92728422613466 +"Tfru01871_t",26.9479735962278,0.554336558110835,0.526112473112607,1.05364648519213,0.292044798265128,0.434551546914512 +"Tfru01872_t",618.441406790535,0.012697214819651,0.159449416770672,0.0796316165766401,0.936530248664155,0.962057230035171 +"Tfru01873_t",29.0227796920741,2.0911975738529,0.44735422473535,4.67458997417546,2.94541486284678e-06,2.00787038167868e-05 +"Tfru01874_t",161.690132541013,0.669864457781023,0.25383817345385,2.63894294804642,0.00831649754937281,0.0244963431370049 +"Tfru01875_t",0.719670821290657,2.91593978402048,2.96161471286028,0.984577693836585,0.324831550905257,NA +"Tfru01876_t",64.6636784935944,0.172040070069492,0.281296283512847,0.611597380246352,0.54080417180588,0.673618575438628 +"Tfru01877_t",0.331952291441413,-1.88946190119366,4.04108740625553,-0.46756274023393,0.64009731538694,NA +"Tfru01878_t",172.105816406348,-0.506413541812275,0.262775884613446,-1.92716901155991,0.0539585705058695,0.115765907984553 +"Tfru01879_t",2247.72335690704,-0.817226892488411,0.430347440651237,-1.89899326751361,0.0575653611893436,0.121872366230017 +"Tfru01880_t",106.184094028483,-1.78632345819516,0.448468014745138,-3.98316802862813,6.80026393667155e-05,0.000352416727604279 +"Tfru01881_t",0,NA,NA,NA,NA,NA +"Tfru01882_t",27.7368863427489,2.59914939900714,0.744002889034168,3.49346680949216,0.000476792248753817,0.00201844572068679 +"Tfru01883_t",0.845302381179645,3.16242273850231,2.83971649763879,1.11364030216814,0.265433529329678,0.404549331680618 +"Tfru01884_t",337.585445856516,0.203798369943704,0.158825862251857,1.28315607454743,0.199437401557244,0.325653658751723 +"Tfru01885_t",554.698434117087,-0.462786090891601,0.14608970873454,-3.16782129898369,0.00153585894333849,0.00566735748588878 +"Tfru01886_t",344.178496901724,0.754212049020881,0.248192248035632,3.03882194141939,0.00237505185063412,0.00831045347360718 +"Tfru01887_t",930.468818379631,6.43603709312051,0.987826492205047,6.51535177878643,7.25195017606498e-11,1.01754636326228e-09 +"Tfru01888_t",56.5182717930041,0.826798771629617,0.305152886740122,2.70945748035392,0.00673933427267829,0.0204732321192534 +"Tfru01889_t",53.8556579829367,0.881509505088351,0.338931737779957,2.60084673941232,0.00929939888106609,0.0268750706299405 +"Tfru01890_t",190.614349813306,5.00881372684409,0.359693590599591,13.9252237397243,4.45145343416589e-44,7.84437227217579e-42 +"Tfru01891_t",154.85865748477,-0.0192229671847639,0.214681610328955,-0.0895417504802053,0.928651374735326,0.957487227797687 +"Tfru01892_t",154.755299789158,0.442402823597659,0.200891748698079,2.20219509494414,0.0276515303991742,0.0665420699283353 +"Tfru01893_t",64.9701492896453,0.199198525959521,0.27900623521833,0.713957255484425,0.475253611227454,0.61559068290719 +"Tfru01894_t",122.688950675015,2.2637485421166,0.399464969510359,5.66695133465989,1.45360605735852e-08,1.47603010724518e-07 +"Tfru01895_t",2273.67659608558,-0.320478410731995,0.170110595798324,-1.88394149834111,0.0595728891330449,0.125417907575351 +"Tfru01896_t",430.644835519932,0.683479508807592,0.197099985509801,3.46767914284603,0.000524973698118577,0.002196879462209 +"Tfru01897_t",7.16581652616336,-0.0149078919272875,0.899957850550258,-0.016565100152382,0.986783566780173,0.993620814565836 +"Tfru01898_t",2.85527020079013,0.488559729168859,1.19700414251347,0.408152078858291,0.683162027600393,0.79091439541135 +"Tfru01899_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru01900_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru01901_t",42.2378214161866,3.77934064971768,0.760239236629679,4.97125176868322,6.65219966772631e-07,5.08283470685268e-06 +"Tfru01902_t",1.80640664123275,4.28102338498405,2.44479877821033,1.75107392196829,0.0799331775706856,0.159070292906984 +"Tfru01903_t",0,NA,NA,NA,NA,NA +"Tfru01904_t",0,NA,NA,NA,NA,NA +"Tfru01905_t",0,NA,NA,NA,NA,NA +"Tfru24328_t",1612.86934617547,0.237255455542208,0.209202179399474,1.13409648132377,0.256754079446868,0.394139261816374 +"Tfru24329_t",279.885237654459,1.38701619276458,0.226834583964983,6.11465927514251,9.6763482945602e-10,1.1586766978719e-08 +"Tfru24330_t",1.71190724317722,2.07890723860007,1.75847099338999,1.18222435650891,0.237116690709667,0.371635746733995 +"Tfru24331_t",0.454587759214581,0.744285552931865,2.81168721762522,0.264711362012911,0.791231824027659,NA +"Tfru24332_t",16.6241488042701,2.25795872614244,0.714081685608788,3.16204542372127,0.00156665124382522,0.00576861711694774 +"Tfru24333_t",6.35981564375115,5.0642997684253,1.42049554500141,3.56516413321118,0.000363628554945264,0.00158357794506227 +"Tfru24334_t",231.70191695699,4.1601156282755,0.261192015520362,15.9274226663762,4.08865642273679e-57,1.27089070473402e-54 +"Tfru24335_t",196.171648269037,0.65261114959892,0.192355416884954,3.39273601007681,0.000691982921081594,0.00280553945177646 +"Tfru24336_t",612.891875922695,0.299647836762408,0.177209828042145,1.69092109660613,0.0908518734516455,0.17617753468918 +"Tfru24337_t",1554.8459426498,-0.637742445910983,0.203871510460508,-3.12815873326509,0.00175905154041758,0.00639811042979772 +"Tfru24338_t",8.91071065308919,1.05103289465904,0.634193382359619,1.65727508973446,0.0974638711800137,0.18645784881107 +"Tfru24339_t",0.813146618507756,-0.711929190647015,1.93197597300881,-0.368497952662566,0.712501971451486,0.81332094516817 +"Tfru24340_t",103.282309391334,0.0388617248808939,0.219477782683738,0.177064504687897,0.85945772250074,0.912825975328311 +"Tfru24341_t",55.7064061223454,0.575719884882,0.315890671625995,1.82252892090348,0.0683747695947158,0.140336330110945 +"Tfru24342_t",115.797827140463,-0.229979822454781,0.224880649535227,-1.02267501863808,0.306461526687641,0.449921868752913 +"Tfru24343_t",363.782997008995,-0.324406425189376,0.184424816623013,-1.75901720348462,0.0785745865730108,0.156854807555435 +"Tfru24344_t",9.05997021098818,1.03701127354486,0.682597266260766,1.51921392716023,0.128708656807568,0.232160390853424 +"Tfru24345_t",1.73344766744826,0.140195026161186,1.43170340089116,0.0979218363761114,0.921994360393664,0.953586796775704 +"Tfru24346_t",92.5254794629939,0.759835611908184,0.318089378745006,2.3887487689971,0.0169058585508132,0.044384242027107 +"Tfru24347_t",159.603141092026,0.492067257401622,0.332723359225739,1.47890805907551,0.13916488914127,0.24683763125059 +"Tfru24348_t",64.1884193708934,1.13790804531402,0.316676599963395,3.59328111216791,0.000326539968957326,0.00143829256155579 +"Tfru24349_t",48.5096456973997,-0.443208156829437,0.339293386387559,-1.30626818738866,0.191461371563971,0.315950706690756 +"Tfru24350_t",285.046122411982,-1.06258125302941,0.193053037690121,-5.50408978663681,3.71080406968782e-08,3.53394872679206e-07 +"Tfru24351_t",0.428790523796186,0.637314986713047,3.47901020122227,0.183188593838886,0.854650043728864,NA +"Tfru24352_t",0,NA,NA,NA,NA,NA +"Tfru24353_t",47.823993153917,-0.0891049212883055,0.32407595243664,-0.27495073490751,0.783354087841968,0.86259911857426 +"Tfru24354_t",130.752161216557,0.179937926762774,0.228249045593731,0.788340324905683,0.430497666381548,0.575333678109343 +"Tfru24355_t",0,NA,NA,NA,NA,NA +"Tfru24356_t",27.9614672072425,1.73940737827728,0.482551893197741,3.60460170770588,0.000312632002624658,0.0013852116845654 +"Tfru24357_t",2.60450920598236,4.77900922976116,1.81418771143694,2.63424187014029,0.00843253946472887,0.0247664348058572 +"Tfru24358_t",2.62791340290643,2.77587720857327,1.40192036695047,1.98005341388363,0.047697527080782,0.104808115470584 +"Tfru24359_t",1254.66024795595,0.399110269654712,0.147707874161167,2.70202432958473,0.00689187191265939,0.0208559165239519 +"Tfru24360_t",0,NA,NA,NA,NA,NA +"Tfru24361_t",895.182143350977,-0.284321671278062,0.458347554997952,-0.620318943949274,0.535047825236703,0.669071371112332 +"Tfru24362_t",13.119276928342,1.31052025475727,0.552443956127312,2.37222299243556,0.0176814158697743,0.046087827529181 +"Tfru24363_t",33.3471139944879,-1.48160858670403,0.453399328832312,-3.26777851771367,0.00108395155104345,0.00417464045987825 +"Tfru24364_t",682.100104774502,0.777764169610875,0.178173747124406,4.36520072212333,1.27006080332448e-05,7.64495986508924e-05 +"Tfru24365_t",292.47735447243,0.0402072905624044,0.166351644811743,0.241700589182068,0.809012172995392,0.879331147939372 +"Tfru24366_t",328.557303369028,1.36809713432838,0.195217907883551,7.00805140860572,2.41660020978587e-12,4.02407088504523e-11 +"Tfru24367_t",121.876195600607,-2.84283757119812,0.707739135625838,-4.01678729929815,5.89969280679427e-05,0.000309288182281696 +"Tfru24368_t",5.1720286925416,-0.237410626232354,0.863202145386768,-0.275034796311794,0.783289505200182,0.862570443653991 +"Tfru24369_t",19.9043530194436,-0.369588288328325,0.489097920410335,-0.755652953948883,0.449857297903188,0.593620656077438 +"Tfru24370_t",46.3416724083358,-0.560905526739968,0.310884084520453,-1.80422721737325,0.0711956942330795,0.145114721032452 +"Tfru24371_t",679.375370595558,-0.16128148607225,0.141890913156226,-1.13665831366294,0.25568115229537,0.392761630061801 +"Tfru24372_t",40.9324564084877,0.218674708140327,0.433731625896043,0.504170540224196,0.614141540418365,0.736930334811163 +"Tfru24373_t",100.541321463238,0.501810307835975,0.290745963825573,1.72594075334104,0.0843580720231883,0.166279166098199 +"Tfru24374_t",44.9876504292212,-3.22012149796258,0.422117592471935,-7.62849394431878,2.37511998655029e-14,5.10126538378075e-13 +"Tfru24375_t",981.888478446136,-3.45659717247341,0.258632345790099,-13.3649067053613,9.69564960252445e-41,1.41822639283985e-38 +"Tfru24376_t",1806.71594534838,-0.488414949829886,0.179649989234514,-2.71870291732839,0.00655384425511868,0.0199977756511804 +"Tfru24377_t",29.4527049232733,1.1229115888443,0.39133733126396,2.86942108287361,0.00411223936353008,0.0133709017805903 +"Tfru24378_t",129.975118160719,0.437197122838264,0.216759650189954,2.01696728360252,0.0436989276174148,0.097457100157224 +"Tfru23689_t",44.4431192714535,2.55938803179041,0.557745286105212,4.5888115875669,4.45776544893545e-06,2.92737062051571e-05 +"Tfru23690_t",298.158804411794,2.79370116850473,0.346886626147705,8.05364334603999,8.0365177258448e-16,2.02999172352603e-14 +"Tfru23691_t",10.789047902611,3.28496376111248,1.00183144974333,3.27895851338476,0.00104190951893825,0.00403145488136896 +"Tfru23692_t",464.74510060847,3.69928654091131,0.222621323704059,16.6169461189125,5.2541743291844e-62,1.99302409300249e-59 +"Tfru23693_t",1278.01252977241,1.09521777136061,0.576142164173896,1.90095056301077,0.0573084882982055,0.121408932990708 +"Tfru23694_t",158.814296561424,0.268498831385249,0.201479493823769,1.33263602309871,0.182651277604807,0.304691084734315 +"Tfru23695_t",247.524307451438,-0.0495080204332293,0.193517484615263,-0.25583228580951,0.798080342820364,0.872352072887268 +"Tfru23696_t",21.6977645066534,-0.309185734869151,0.453247421994074,-0.682156632041899,0.495139913952568,0.633118021072331 +"Tfru23697_t",116.7939534214,0.00851493005472015,0.20654979694769,0.041224586906162,0.967116852813995,0.98119022466917 +"Tfru23698_t",1.90434429555559,0.896032930141812,1.34330106280423,0.667038056436344,0.504747825028871,0.642150146358519 +"Tfru23699_t",10.5118038741371,1.08215907529581,0.596923223024222,1.8128949143798,0.0698480307775983,0.142888384716879 +"Tfru23700_t",1.23041500864149,3.72333052546476,2.01189735250222,1.85065630750695,0.064219013564953,0.133400870285891 +"Tfru23701_t",5.27731104212487,-0.826025290319865,0.79958820346022,-1.03306337780527,0.301574240265583,0.444818526141419 +"Tfru23702_t",125.616467007286,0.163123446700222,0.224645048863642,0.726138624133388,0.467753793052706,0.609063926352231 +"Tfru23703_t",0.912384474438061,-0.10305699565687,1.99999525039728,-0.0515286201986725,0.958904296517986,0.9763103660467 +"Tfru23704_t",261.987104914185,-0.312761699532087,0.182299373828493,-1.71564878673875,0.0862263434485296,0.16924623455342 +"Tfru23705_t",0,NA,NA,NA,NA,NA +"Tfru23706_t",525.937996899002,-0.140237326199013,0.141942245072405,-0.987988643743641,0.323158209937801,0.468161099688924 +"Tfru23707_t",150.544778812611,-0.161499335009936,0.217492332198439,-0.742551856322849,0.457753045353805,0.600569419335101 +"Tfru23708_t",74.153026557191,0.292984777421529,0.284604523286898,1.02944525982176,0.303270490284868,0.446555271568876 +"Tfru23709_t",296.960981391688,-0.2346735349993,0.308619873965948,-0.760396704151309,0.447017492776107,0.590889855915176 +"Tfru23710_t",65.9461407840453,1.21377637212842,0.275520553945181,4.40539319026601,1.0559217161598e-05,6.4584662497011e-05 +"Tfru23711_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru23712_t",90.4200333029685,1.83639130482541,0.283447223768523,6.47877682628177,9.24691545493437e-11,1.27981427261244e-09 +"Tfru23713_t",0,NA,NA,NA,NA,NA +"Tfru23714_t",0,NA,NA,NA,NA,NA +"Tfru23715_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru23716_t",2939.86503058534,-0.64296005527211,0.196156215399212,-3.27779598501926,0.0010462098114218,0.0040452964028369 +"Tfru23717_t",118.497324062052,-0.205273716076672,0.203393826287458,-1.00924260988412,0.312858296100727,0.457333028526079 +"Tfru23718_t",0,NA,NA,NA,NA,NA +"Tfru23719_t",1223.07853878708,-4.78821955015709,0.419665418700888,-11.4096118879165,3.74396074906393e-30,3.00322012774376e-28 +"Tfru23720_t",56.8710918756793,0.672654955306553,0.28003020249441,2.40208002320743,0.0163021417798512,0.0430136681246251 +"Tfru23721_t",27.1143806471795,-0.676034801815346,0.387750032692097,-1.7434809666468,0.0812496361429363,0.161248504341446 +"Tfru23722_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23723_t",0,NA,NA,NA,NA,NA +"Tfru23724_t",4.40635708672092,-1.48536332431424,0.919064836924295,-1.61616815771681,0.106057961272549,0.199846524650976 +"Tfru23725_t",0,NA,NA,NA,NA,NA +"Tfru23726_t",239.331719431911,1.10739634279676,0.197815781084449,5.59811930436433,2.16689618463472e-08,2.13729116844976e-07 +"Tfru23727_t",0,NA,NA,NA,NA,NA +"Tfru23728_t",0.652779052371481,-2.8680226793753,3.0047031535581,-0.954511155612509,0.339824965203938,NA +"Tfru23729_t",11.5112882678729,-1.16279159544498,0.875373075796352,-1.32833831379513,0.184066367908678,0.306434970899072 +"Tfru23730_t",0.436707098298631,2.23787216569085,3.36311468578252,0.66541654828228,0.505784103448651,NA +"Tfru23731_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru23732_t",65.412344105557,-0.731679368944139,0.284068801255987,-2.5757118194926,0.0100033980926575,0.0286396378807311 +"Tfru23733_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23734_t",0.291820569502774,-0.0642997256461447,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru23735_t",0,NA,NA,NA,NA,NA +"Tfru23736_t",0.786540050655994,-0.673172064546771,2.13018352319652,-0.316015994498267,0.75199036792534,0.840510634478805 +"Tfru23737_t",72.4094170402479,-0.881299428189055,0.28894775999626,-3.05003031759257,0.00228818266709534,0.00804675174255085 +"Tfru23738_t",0,NA,NA,NA,NA,NA +"Tfru23739_t",53.556935184572,6.26625830138189,0.812354566403531,7.71369862438758,1.22222899079175e-14,2.70024529258829e-13 +"Tfru23740_t",1224.20325531767,-0.177546263404533,0.160367106584253,-1.1071239432212,0.268240344941533,0.407744272212967 +"Tfru23741_t",705.385850904764,0.246489735934378,0.197745828799428,1.24649777662006,0.212581704963675,0.342173371482095 +"Tfru23742_t",12.5864256034799,-7.12585556702544,1.4773361135382,-4.8234491133904,1.4109677657573e-06,1.01404812452307e-05 +"Tfru23743_t",179.721748666471,-0.562071984137285,0.180525141007256,-3.11353854095421,0.00184858364420457,0.00667602097100182 +"Tfru23744_t",207.196809731804,1.02335309329756,0.316367467475435,3.23469761750081,0.00121771619341805,0.00462219952657665 +"Tfru23745_t",1753.38455744015,-0.397417698235835,0.127832273803805,-3.10889954790122,0.00187785551653553,0.00677408227918524 +"Tfru23746_t",139.795716084452,-0.17641320262829,0.198199519213948,-0.890078862592292,0.373423541912671,0.519630595536006 +"Tfru23747_t",405.496915029465,0.0405399878458255,0.164581013195585,0.246322385910023,0.805432682255287,0.876835436803416 +"Tfru23748_t",183.37036065248,-0.0549818922552804,0.241837936511308,-0.227350154605332,0.820151476266108,0.886095876210373 +"Tfru23749_t",155.709581526734,0.373599203204428,0.218263902739774,1.71168570943155,0.0869546035716796,0.170391736969984 +"Tfru23750_t",218.09452747267,0.0101513746395661,0.182726934704609,0.0555548893543061,0.955696402048474,0.974784630386101 +"Tfru23751_t",62.7200749777241,0.10124756700747,0.279805642819105,0.361849625287674,0.717464405736698,0.816944265248231 +"Tfru23752_t",2326.50942566962,1.46042637190935,0.248822475132671,5.86935071331741,4.37505090125102e-09,4.76929562445191e-08 +"Tfru23753_t",3674.37042692865,-0.451150479486805,0.300495851063589,-1.50135343929037,0.133264169873438,0.238614965207274 +"Tfru23754_t",0,NA,NA,NA,NA,NA +"Tfru23755_t",189.44249499188,2.70352678400348,0.22392496582791,12.073360261585,1.46046499010645e-33,1.42109593385141e-31 +"Tfru23756_t",2.35367558685022,3.57566653610547,1.61350560199827,2.21608560371723,0.026685640004693,0.0646626919992452 +"Tfru23757_t",204.252200856483,0.71851233746907,0.178762248148861,4.01937402840639,5.83529713587343e-05,0.00030619917913446 +"Tfru23758_t",105.421916499729,0.572421495822846,0.23658759311663,2.41949076146466,0.0155422555271278,0.0413646900579284 +"Tfru23759_t",38.0860575349407,0.596407781577467,0.33287125980937,1.79170704589822,0.0731799053010778,0.148375274564062 +"Tfru23760_t",1916.69022831814,-0.482043512949931,0.315575655185187,-1.52750538588617,0.126635388977224,0.229129275229225 +"Tfru23761_t",1025.47542118825,0.904805412132968,0.267353618261554,3.38430210152529,0.000713594400093382,0.00288227680639099 +"Tfru23762_t",0,NA,NA,NA,NA,NA +"Tfru23763_t",205.785512737241,-0.203153361706027,0.181687201292304,-1.11814899597241,0.263503363520725,0.402319912375073 +"Tfru23764_t",31.1194757767798,-0.943358333092667,0.385294632678693,-2.44840766800756,0.0143489201424385,0.0387042102914033 +"Tfru23765_t",116.956524418588,-0.801518697952627,0.477123990665149,-1.67989603045373,0.0929775462809802,0.179591564463369 +"Tfru23766_t",0.953325528810066,-1.19317314338285,2.0133514062309,-0.592630347434746,0.553428564828539,0.684597130270987 +"Tfru23767_t",210.268645151119,-0.265958461630598,0.171938645599607,-1.54682189511911,0.121906198991974,0.222442782995546 +"Tfru23768_t",625.041880005205,-0.136352166395478,0.280876724148821,-0.485451996097878,0.627355756474031,0.748133523199703 +"Tfru23769_t",442.873973106103,-0.855237787577508,0.263837098944357,-3.24153726295283,0.00118886890404707,0.00452652025732791 +"Tfru23770_t",3.13535577273737,1.8378865214261,1.21968529326336,1.50685306412829,0.131848324455888,0.236610175713477 +"Tfru23771_t",0.32955266786588,-0.0642989587579764,3.75808704636274,-0.0171094916016403,0.986349266818334,NA +"Tfru23772_t",1.12812044297758,2.39404729337509,1.92117337470602,1.24613807628967,0.21271370810664,0.342287373269097 +"Tfru23773_t",0.771119630933357,1.74215383853612,2.45432488015482,0.70983016658586,0.477809459722911,0.617757117770004 +"Tfru23774_t",65.1026662988029,0.656599312205363,0.559847459002206,1.17281824119662,0.2408687015135,0.376152504352253 +"Tfru23775_t",9.03148953730656,4.6762669236799,1.56383101958764,2.99026356755153,0.00278736820941813,0.0095735574780199 +"Tfru23776_t",22.9837478524276,4.48578123957379,1.17157195059389,3.82885680841017,0.000128739880525404,0.000628396625116365 +"Tfru23777_t",0,NA,NA,NA,NA,NA +"Tfru23778_t",49.8139898686965,-0.0437856848348569,0.295826633790803,-0.148011300651923,0.882333849845185,0.927618638145486 +"Tfru30176_t",717.669377708116,-0.198590074418677,0.183371500026909,-1.0829931281008,0.278811473244346,0.419708130168054 +"Tfru30177_t",2.03399414388685,0.50052481008504,1.39505316749893,0.358785472658643,0.719755581233345,0.818377783264862 +"Tfru30178_t",102.252187545577,0.788429862074962,0.247901346973716,3.18041782224989,0.00147062843521948,0.00545724828058565 +"Tfru30179_t",24.0145662160412,3.18016309705774,0.535651107923178,5.93700460993695,2.90276508396935e-09,3.25307373957106e-08 +"Tfru30180_t",0.82838329897236,1.84399882453873,2.38213369271976,0.774095438125211,0.438874354997675,0.58335855941367 +"Tfru30181_t",102.815565420829,0.885574626473819,0.316058277027557,2.80193461409209,0.00507971679310233,0.0160820571268397 +"Tfru30182_t",458.325512882004,0.659672749781869,0.211236727492785,3.1229074489634,0.00179074049314003,0.00649963870199059 +"Tfru30183_t",77.2992255426714,1.19052164268725,0.246867022453746,4.82252198310655,1.41754401147936e-06,1.01844735078357e-05 +"Tfru30184_t",30.8233576113987,0.313030867988313,0.547390361385474,0.571860394465141,0.567416557620288,0.697327970907979 +"Tfru30185_t",2.74964667673524,1.6293445636072,1.15291329137571,1.41324120017993,0.15758481626495,0.272041668312988 +"Tfru30186_t",101.270742833809,0.129579781384829,0.259992896954842,0.498397390476922,0.618203975695035,0.740455176668712 +"Tfru30187_t",269.198799568898,0.00869128828687614,0.174073732138666,0.0499287754682753,0.960179146386671,0.977003362766929 +"Tfru30188_t",0,NA,NA,NA,NA,NA +"Tfru30189_t",6.76798100170502,0.392139576165438,0.950267899891811,0.412662130552956,0.679854173859366,0.788648708244383 +"Tfru30190_t",48.6762074801229,0.97270267131438,0.331028518366133,2.93842559582291,0.00329883829004642,0.0110753076704529 +"Tfru30191_t",9.25395362251217,0.0822964465426843,0.891322481825802,0.0923307200488275,0.926435281539527,0.956313223259404 +"Tfru30192_t",9.34145582728544,0.376207346047367,0.624043430120468,0.602854429498188,0.546605533900507,0.678816290186468 +"Tfru30193_t",296.577994775633,0.344622606551612,0.162530186120603,2.12036062209324,0.0339756448587462,0.0789343851280744 +"Tfru30194_t",169.842593355558,0.333400510505689,0.276196853535915,1.20711190673407,0.227389050031466,0.360102387468455 +"Tfru30195_t",3.89586064452185,1.5448384752335,1.09908196705791,1.40557166938951,0.15985135357917,0.274830859115144 +"Tfru30196_t",44.7791140330032,-0.57201146403181,0.312239867566663,-1.83196165335833,0.0669571339215134,0.137908498269605 +"Tfru30197_t",25.4202199285381,-0.103541926279034,0.394989787099805,-0.262138236634639,0.793214868624222,0.86917582288726 +"Tfru30198_t",1.80744667843652,4.26018015526462,1.77030041706435,2.40647299983648,0.0161073946312443,0.0426002708399015 +"Tfru30199_t",10.8231953242332,1.27142570272246,0.60326615134188,2.10757009968877,0.0350681921985084,0.0810352236863829 +"Tfru30200_t",203.806393872672,0.325710814620901,0.306032681625638,1.06430075667322,0.287192475327429,0.428834240580989 +"Tfru30201_t",162.127464546775,3.30608128297507,0.431213192736993,7.66692981258467,1.76162111578349e-14,3.84634932402289e-13 +"Tfru30202_t",165.677479772954,-0.810349750695367,0.185715130121681,-4.36340189495828,1.2805538043636e-05,7.70190651482329e-05 +"Tfru30203_t",110.067419388011,-0.925278826465912,0.236553152964893,-3.91150494030081,9.172277971689e-05,0.00046129344046382 +"Tfru15297_t",0,NA,NA,NA,NA,NA +"Tfru15298_t",7.73010013041166,0.125321477205386,0.723538962852948,0.173206259288702,0.862489303803402,0.914376495460699 +"Tfru15299_t",3.2689169056327,0.874279919624503,1.22922283320888,0.711246078420296,0.476931759237429,0.617050108205206 +"Tfru15300_t",127.520095421315,1.35663940669644,0.280498772250967,4.83652529317537,1.32128466760799e-06,9.55524670210417e-06 +"Tfru15301_t",2.90156198910507,1.78700785780039,1.77217815242966,1.00836806691833,0.313277797125028,0.457826635735806 +"Tfru15302_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15303_t",0,NA,NA,NA,NA,NA +"Tfru15304_t",51.8360158100449,2.6517029552208,0.384532455444043,6.89591455202064,5.35193593588712e-12,8.60462113830127e-11 +"Tfru15305_t",7.94264820043704,4.50244537057792,1.25109020888216,3.59881752619645,0.000319667380475577,0.00141246909675092 +"Tfru15306_t",1706.20905674317,0.365049344396413,0.334835977926654,1.09023333351704,0.275610373362534,0.415812333548168 +"Tfru15307_t",1.2718455276756,1.5650908748368,1.83998323243459,0.850600618118642,0.394991245971042,0.54073306122045 +"Tfru15308_t",1273.0893307812,-0.229173567649883,0.189772940413269,-1.20761983848072,0.227193524775292,0.35992008809167 +"Tfru15309_t",28.397415882969,0.595131839818182,0.43272669139938,1.37530651944211,0.169036436180656,0.286919639114378 +"Tfru15310_t",160.76938777749,-1.08785497228365,0.262113873698597,-4.15031435357964,3.32018967883386e-05,0.000183698009919164 +"Tfru15311_t",79.6035586056651,-1.51698954052575,0.338029865771016,-4.48773819752771,7.19833097228472e-06,4.53543488625372e-05 +"Tfru15312_t",319.922706068611,-0.0709040478878132,0.161158156545098,-0.439965617675525,0.659962009587607,0.774106382315023 +"Tfru08978_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru08979_t",31.4415925696496,0.75285876496542,0.397080395625033,1.89598573301602,0.0579619310995876,0.122538070849119 +"Tfru08980_t",301.608366580634,0.65705517011615,0.285044566837934,2.30509627811895,0.0211611819007751,0.0534281645915329 +"Tfru08981_t",10.7114259537162,-0.597810180395602,0.617563474279496,-0.968014148008122,0.333037303918704,0.478701018734784 +"Tfru08982_t",167.024925570938,-0.808189922674812,0.234142950176197,-3.45169445446311,0.000557078179300613,0.00231607089963733 +"Tfru08983_t",0.554443390385536,1.03861455020554,3.28367491578666,0.316296398651485,0.751777544413166,NA +"Tfru08984_t",0.360209768053121,-0.0642984428696687,3.65262828856368,-0.0176033359515355,0.985955295385567,NA +"Tfru08985_t",1.23041500864149,3.72333052546476,2.01189735250222,1.85065630750695,0.064219013564953,0.133400870285891 +"Tfru08986_t",0.704434140826052,-0.000475302479351497,2.24891313216082,-0.000211347638356673,0.999831368983648,NA +"Tfru08987_t",373.863456844857,-0.734529572612679,0.214761228775373,-3.4202149838738,0.000625716653293718,0.00256663099353252 +"Tfru08988_t",70.1507420046121,-0.233161189603656,0.25448867468499,-0.916194757555585,0.359564754650255,0.505627345841829 +"Tfru08989_t",1.29835923401636,-1.02103794820084,2.13822891809503,-0.477515732557997,0.632994920618448,0.752452664972692 +"Tfru08990_t",143.72285743018,0.101388276412231,0.24908202246136,0.407047748409702,0.683972919101929,0.791525618155085 +"Tfru08991_t",8.5087570833119,0.889043402431308,0.672013511309846,1.32295465413849,0.185850458188625,0.30878494834903 +"Tfru08992_t",987.636516740135,-0.0177624260810933,0.296245166287998,-0.0599585346949606,0.952188659760975,0.972399939706056 +"Tfru08993_t",313.220859549453,0.0579004178827114,0.250949940282525,0.230724971751442,0.817528472231774,0.884538797021091 +"Tfru08994_t",886.314448620916,-0.292176611364575,0.135977623530349,-2.14871097007636,0.031657318548673,0.0743120189971996 +"Tfru08995_t",1118.80642894634,-0.447962237646209,0.164877869925622,-2.71693367853604,0.00658898094928603,0.0200928455709254 +"Tfru08996_t",29.1643691399493,-0.953012232114942,0.488392933302263,-1.9513227303908,0.0510186667790404,0.110708762097369 +"Tfru08997_t",0,NA,NA,NA,NA,NA +"Tfru08998_t",0,NA,NA,NA,NA,NA +"Tfru26390_t",83.2160659925226,1.13453378089178,0.442759148323023,2.56241747954592,0.0103946286142395,0.0295405445570388 +"Tfru26391_t",206.146218978802,-0.266157732841042,0.181525085033425,-1.46623114261058,0.142585327079714,0.251839603823217 +"Tfru26392_t",5.80712505461254,-0.533397069794911,0.918588600801551,-0.580670247082833,0.56146271792571,0.692163469603249 +"Tfru26393_t",0,NA,NA,NA,NA,NA +"Tfru26394_t",0,NA,NA,NA,NA,NA +"Tfru26395_t",0,NA,NA,NA,NA,NA +"Tfru26396_t",132.393044229136,0.605163543914239,0.296119986296958,2.04364302282306,0.0409888257762989,0.0922310397017464 +"Tfru26397_t",84.8801873502961,1.39442088777226,0.261141614153376,5.33971152890736,9.30945921805059e-08,8.31055832867859e-07 +"Tfru26398_t",620.11492790281,0.378722780013895,0.16640089036849,2.27596606709991,0.0228480406469023,0.0569610281472288 +"Tfru26399_t",5.43347658056084,0.357118997957449,0.779218520012421,0.458304042814275,0.646734020018432,0.763713981005303 +"Tfru26400_t",26.9606553901371,0.478105533664452,0.416737016137898,1.1472595789433,0.251274354449013,0.387621188769166 +"Tfru26401_t",10.6186010123361,1.94677623213176,0.631948018897603,3.08059551405477,0.00206587082845469,0.00734925912268574 +"Tfru26402_t",0,NA,NA,NA,NA,NA +"Tfru26403_t",0,NA,NA,NA,NA,NA +"Tfru26404_t",4.13982496503803,1.3118073361876,0.935989912870368,1.40151866825651,0.161059029055453,0.27624931562393 +"Tfru26405_t",305.836176655825,-0.373798213903609,0.169682301054723,-2.20292989651913,0.0275996900671419,0.066445897558373 +"Tfru26406_t",189.964529709271,-0.592025493028744,0.218857796182107,-2.70506924293495,0.00682901529670743,0.0207035169791808 +"Tfru26407_t",166.894693690705,0.0467464419271395,0.183486153665719,0.254768226338777,0.798902117343574,0.872592942222996 +"Tfru26408_t",33.5588837713512,1.06740181436179,0.342684707941756,3.11482184534248,0.00184056039329326,0.00665026503098211 +"Tfru26409_t",115.635463515249,-0.39685040172719,0.247991641329863,-1.60025716834272,0.109541544480977,0.204704389235494 +"Tfru26410_t",1338.64897156506,-0.54374784295586,0.231771979152186,-2.34604651064753,0.0189737396321838,0.0489320457442121 +"Tfru26411_t",431.552040897728,2.73676675252751,0.180187622299245,15.1884281373248,4.21916044099355e-52,1.02635663771126e-49 +"Tfru26412_t",88.608189525946,0.517341692950649,0.234430826192547,2.20679891528316,0.0273281108870792,0.0659055087987966 +"Tfru26413_t",58.6369680447186,0.613431976698729,0.285215806266197,2.15076430976691,0.0314948074681641,0.0740859566047416 +"Tfru26414_t",472.475302487371,-1.11999378893621,0.232896841466121,-4.80896942133555,1.51710409182873e-06,1.08614170105973e-05 +"Tfru26415_t",1085.01556699937,-0.108315564899184,0.169268573565541,-0.639903572279143,0.522235291346608,0.657790737299476 +"Tfru26416_t",941.951181963755,-0.539233025633063,0.199882565561586,-2.69774917145998,0.00698100187655617,0.0210814764535592 +"Tfru26417_t",202.06798746171,-1.18954571342082,0.198318426347753,-5.99816030879016,1.99565461075718e-09,2.28570881211595e-08 +"Tfru26418_t",14.9138486267962,0.793217532824313,0.59340338639479,1.33672565915656,0.181312203108785,0.302954091800404 +"Tfru26419_t",6.06154433071632,-0.148403555774605,0.738806550279105,-0.200869301603432,0.84080077222326,0.900352613359911 +"Tfru26420_t",0,NA,NA,NA,NA,NA +"Tfru26421_t",15.1853056688432,-0.846606552437852,0.510002588870729,-1.6600044213745,0.0969135630767004,0.185663303454813 +"Tfru26422_t",13.6294872287221,-0.355513952613558,0.497308022998119,-0.714876768869066,0.474685193038015,0.615103619951988 +"Tfru26423_t",1015.89830835196,-0.679895994071853,0.181111581072896,-3.7540172199049,0.000174022900683001,0.000825658791029377 +"Tfru26424_t",0,NA,NA,NA,NA,NA +"Tfru26425_t",0,NA,NA,NA,NA,NA +"Tfru26426_t",617.874493063042,-0.126752946590453,0.131790218003928,-0.961778108498729,0.33616107687877,0.481551872274651 +"Tfru26427_t",218.824477179359,-1.58613433834582,0.276146772243615,-5.74380908188397,9.25701561277176e-09,9.66738261380457e-08 +"Tfru26428_t",1524.44802102842,-1.04660455305402,0.161058463226517,-6.49828970230548,8.12382530937541e-11,1.13419345242559e-09 +"Tfru26429_t",132.560615554326,-0.363248180109147,0.240103994602322,-1.51287853711383,0.130310514657325,0.234546350171379 +"Tfru26430_t",177.245420883702,-1.06006201654449,0.192579554788809,-5.50454079981126,3.70131740127801e-08,3.52641479100051e-07 +"Tfru26431_t",212.968595396374,-0.238603006955043,0.227259656210194,-1.0499136139428,0.293757831776587,0.436424606688796 +"Tfru26432_t",0,NA,NA,NA,NA,NA +"Tfru26433_t",122.749086218943,0.401276977305984,0.201700017040758,1.98947418643449,0.0466488882805443,0.102968943655053 +"Tfru26434_t",414.873141503918,0.984807730013238,0.202164721161007,4.87131347327868,1.10858790640045e-06,8.11866544599368e-06 +"Tfru26435_t",195.985164184219,-1.23848857808971,0.376500579043031,-3.2894732359712,0.0010037510212513,0.00390405767389714 +"Tfru26436_t",61.9496501399696,0.955170808846898,0.336217577430253,2.84093061447701,0.00449820981634591,0.0144516129327909 +"Tfru26437_t",1.99640770671783,0.996288950000551,1.49041850761071,0.668462545864182,0.503838382232394,0.641405176015983 +"Tfru26438_t",0.656737956049442,2.79996060668216,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru26439_t",17.2040566331004,-0.728171037735132,0.517403206022958,-1.40735702689639,0.159321547127621,0.274217416157808 +"Tfru26440_t",19.0239066788345,-0.199066494872097,0.548779573457885,-0.362743995039338,0.716796131641717,0.816423096653347 +"Tfru26441_t",290.722811915622,2.1938475128674,0.263220472544089,8.33463860794463,7.77352598267777e-17,2.2190243812797e-15 +"Tfru26442_t",255.233671533541,-0.22952595732518,0.183968744102613,-1.24763561573893,0.212164529363032,0.341624733228625 +"Tfru26443_t",433.016633183786,-1.44675322933654,0.216349044840912,-6.68712556785439,2.27596585842965e-11,3.37548813198513e-10 +"Tfru26444_t",1.5057981426644,-1.64030263151785,2.07629905882737,-0.790012702911998,0.429520349767869,0.574370544204405 +"Tfru26445_t",257.99283633429,-0.761243638348618,0.181403945291661,-4.19640067433314,2.71190311081935e-05,0.000152570114681089 +"Tfru26446_t",483.462899126679,-0.837781742686904,0.149534710447691,-5.60259046330231,2.11171760012444e-08,2.08746642627142e-07 +"Tfru26447_t",2064.28914662678,-0.435930307562029,0.215606461576598,-2.0218796059002,0.0431887911364631,0.0964828454416094 +"Tfru26448_t",176.072598487878,0.176885934847328,0.236662224613895,0.747419387001495,0.454810446423361,0.597703533792098 +"Tfru26449_t",2341.54144823865,-0.0317201566052495,0.213281047726576,-0.148724684838919,0.881770882174628,0.92728422613466 +"Tfru26450_t",3326.35284368387,-0.971426083991364,0.151283620757012,-6.42122444670759,1.35182536758487e-10,1.82032802205472e-09 +"Tfru26451_t",18.5380726013613,3.29764349740078,0.680559201669447,4.84549101578744,1.26298927395303e-06,9.17031961492091e-06 +"Tfru26452_t",342.01944010951,-0.0781586088154933,0.176928687429735,-0.44175204118062,0.658668646506261,0.77311608060052 +"Tfru26453_t",0.29973714400522,1.69074106487515,3.82362864481613,0.44218234089426,0.658357263677278,NA +"Tfru26454_t",0,NA,NA,NA,NA,NA +"Tfru26455_t",11.2752761457598,3.14665189566047,1.01337034095242,3.10513517960579,0.00190192080886376,0.00684434598848223 +"Tfru26456_t",115.978834976879,0.672749100241076,0.216435415578656,3.10831338966606,0.00188158429787447,0.00678425271249082 +"Tfru26457_t",266.651869382604,-0.122078343447382,0.217008416334024,-0.562551192758699,0.573740534945432,0.703051765798412 +"Tfru26458_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru26459_t",990.269551364006,0.597250704014041,0.369760692904481,1.61523578756471,0.106259643266238,0.200125457906119 +"Tfru26460_t",184.738497101867,0.502006117231155,0.320758179488865,1.56506100025606,0.117568606922739,0.216433776666193 +"Tfru26461_t",0.984586915472279,3.41018960997892,2.71729528102557,1.25499412367574,0.20948089318307,0.337935730515181 +"Tfru26462_t",360.382974465443,-1.66007075179024,0.189965701431164,-8.73879199920616,2.35616220806716e-18,7.64216090094826e-17 +"Tfru26463_t",1.14735410518409,3.62846893968228,2.53213193803236,1.43296993540623,0.151866429343087,0.264146319165173 +"Tfru26464_t",1136.85226647147,2.22645845418595,0.167300960551169,13.3081032341412,2.07687555260689e-40,3.01821265372352e-38 +"Tfru26465_t",97.8507558149354,-1.17329707849041,0.329917859317261,-3.55633090284488,0.000376070348322342,0.00163267786526751 +"Tfru26466_t",54.5399930435482,-0.110820488535724,0.301728240198992,-0.367285768354456,0.713405868625506,0.813928596035829 +"Tfru26467_t",1.15637791958929,3.61255351983173,2.06658912893263,1.7480753524033,0.0804509803092896,0.159972717842905 +"Tfru26468_t",0.599474288010439,2.68841024197286,3.0130515071984,0.892254989850011,0.37225627368432,NA +"Tfru26469_t",0,NA,NA,NA,NA,NA +"Tfru26470_t",26.0985818704261,0.921565190816972,0.426525190597379,2.16063484908419,0.0307235572277311,0.0725615460908213 +"Tfru26471_t",131.999544553897,2.51863093063597,0.313356051907695,8.03760104616677,9.16143429956399e-16,2.30115487793762e-14 +"Tfru26472_t",88.697626877986,0.1286806223964,0.300312780601819,0.428488664846457,0.668295384381068,0.780160174349189 +"Tfru26473_t",0,NA,NA,NA,NA,NA +"Tfru26474_t",353.588968906967,-0.374029377588118,0.18802477895361,-1.98925577612512,0.0466729782990704,0.10299164408728 +"Tfru26475_t",1036.15626805995,-0.532181634518931,0.173347521902861,-3.07002735705187,0.0021403916443519,0.00758062430773785 +"Tfru26476_t",7.54619742777638,0.390455644354091,0.691853513018357,0.564361728324029,0.572507979445086,0.701836578658031 +"Tfru26477_t",645.739114419748,-0.224104617791536,0.169965688885793,-1.31852857633002,0.187326765439658,0.310523147214247 +"Tfru26478_t",60.9280591826795,0.477231799963189,0.274177310662742,1.74059552487995,0.0817545026344076,0.161933208927439 +"Tfru26479_t",383.07367385637,-0.474402354659323,0.266172738486657,-1.78231007937391,0.0746986799276483,0.15086426930432 +"Tfru26480_t",420.006115325824,2.60772497235537,0.272245860365454,9.57856611246483,9.84015284598227e-22,4.24321041797848e-20 +"Tfru26481_t",617.66194946291,-0.0407856917491214,0.148233310889468,-0.27514525246983,0.783204646283945,0.862556074847289 +"Tfru26482_t",113.29604946722,0.234061855642353,0.268852644921916,0.870595324477216,0.383975150267716,0.530181064236975 +"Tfru26483_t",138.001781061375,0.428311490070588,0.226850781908531,1.88807588171897,0.059015764176783,0.124413413929578 +"Tfru26484_t",1.0957596343473,3.55688506853345,3.38310498356462,1.05136703880402,0.293090048201008,0.435663873455006 +"Tfru26485_t",84.7094431304454,-0.186696272912686,0.298726507991148,-0.624973907297904,0.531988183449822,0.666586167941718 +"Tfru26593_t",323.375078008198,1.00871030028702,0.196821698775428,5.12499539716886,2.97545015167265e-07,2.43653766536531e-06 +"Tfru26594_t",36.4290291749672,1.83762526907902,0.405712347439473,4.52937969641944,5.91571059164285e-06,3.7967662582985e-05 +"Tfru26595_t",0,NA,NA,NA,NA,NA +"Tfru26596_t",65.5910451434583,0.516136325705969,0.299183632535791,1.7251489372308,0.0845006352179309,0.166472202128283 +"Tfru26597_t",27.8020027576699,3.19677261316737,0.499113537154479,6.40490063922658,1.50467338703436e-10,2.01042330757188e-09 +"Tfru26598_t",139.421909728362,-0.395144417836487,0.275419238346226,-1.43470158515127,0.151372152323456,0.263521245592118 +"Tfru26599_t",0,NA,NA,NA,NA,NA +"Tfru26600_t",140.629051063346,0.584211539002559,0.210827792941033,2.77103664015474,0.00558781386632268,0.0174609430785118 +"Tfru26601_t",143.079248906307,-0.168659637395135,0.200128552562512,-0.842756494441005,0.399364644087724,0.545285872410669 +"Tfru26602_t",1157.15722255535,0.153539046182958,0.191178813318636,0.803117476867356,0.421906837118356,0.567069546256009 +"Tfru26603_t",238.492279665154,2.47494097542918,0.478279462786032,5.17467541050659,2.28307533270194e-07,1.90015715678205e-06 +"Tfru26604_t",0,NA,NA,NA,NA,NA +"Tfru26605_t",0,NA,NA,NA,NA,NA +"Tfru26606_t",0,NA,NA,NA,NA,NA +"Tfru26607_t",0,NA,NA,NA,NA,NA +"Tfru26608_t",0,NA,NA,NA,NA,NA +"Tfru26609_t",1.54022842350761,-4.09538828434101,1.83163631689228,-2.23591782198861,0.0253571546666603,0.0619398735472448 +"Tfru26610_t",0.90488062921787,3.28377334187813,2.25266314371103,1.45772942174943,0.14491513889244,0.254988663292146 +"Tfru26611_t",287.196312631408,-0.435078059677969,0.215449097389536,-2.01940070740394,0.0434455880880922,0.0969462470169422 +"Tfru26612_t",20.4386798269559,1.71781298990846,0.643243519517631,2.67054845915377,0.00757274398926573,0.0226211973411328 +"Tfru26613_t",2.34740992110772,3.59148166613888,1.58979554221812,2.25908399587533,0.0238781604709156,0.0590600591320147 +"Tfru26614_t",116.996154014736,-1.6433067412452,0.323849149387089,-5.074296919894,3.88931348757484e-07,3.1242941798968e-06 +"Tfru26615_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru26616_t",1.53015215264671,4.0386118579041,1.91650191326111,2.10728297736579,0.0350930580065543,0.0810592050971913 +"Tfru26617_t",4.21436764488348,5.48547844903669,1.47267744587447,3.72483361132718,0.000195444089876373,0.000915070864316573 +"Tfru26618_t",510.116782990688,-0.23956369162106,0.247144245617361,-0.969327410487081,0.332381857298764,0.478127392103506 +"Tfru26619_t",12.2129756048728,1.1001710100865,0.61123428731984,1.79991704148432,0.0718737383797949,0.146215927739003 +"Tfru26620_t",6.89868059994849,1.63580346999765,0.811163502147602,2.01661374761902,0.0437358372271521,0.0975199797891466 +"Tfru26621_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru26622_t",8912.69194341618,0.75287890290912,0.243418300408237,3.09294289561001,0.00198182266084671,0.00708404266886269 +"Tfru26623_t",5660.02373969626,2.57662924138394,0.244464678880244,10.5398835250395,5.65689158788153e-26,3.3404019455617e-24 +"Tfru26624_t",54.2741865821012,-0.298321739261983,0.358686157079823,-0.831706865106573,0.405574424694099,0.551577274225445 +"Tfru26625_t",3794.7398784599,-0.490580693420027,0.431166685550074,-1.1377982340963,0.255204742530999,0.392325779139436 +"Tfru26626_t",338.921217807886,1.99253392089572,0.328493375621691,6.06567458818537,1.31400941866554e-09,1.54613726549605e-08 +"Tfru26627_t",117.223990518713,0.317833271405033,0.219919889387647,1.44522295045719,0.148395271903615,0.25968302331714 +"Tfru26628_t",1.02681894900507,-3.51040020097916,2.07547102333045,-1.69137519219426,0.0907651672542099,0.17606215265575 +"Tfru26629_t",0.85408767287976,-2.01698202790127,2.37497011631265,-0.84926627667754,0.395733141428875,0.541483718829678 +"Tfru26630_t",2.94634054026097,2.26627041322907,1.25432220316263,1.8067689525984,0.070798311501969,0.144475810286684 +"Tfru26631_t",3.22795850064515,1.08523284800788,1.24357510102367,0.872671740624713,0.382842025045902,0.528889167933783 +"Tfru26632_t",1.45084246954341,0.262882192386087,1.56384490741831,0.168099912682562,0.86650467804258,0.917140993091498 +"Tfru26633_t",142.752958294738,1.21353435045533,0.219941861428604,5.51752332445028,3.43810464900338e-08,3.29245965103533e-07 +"Tfru26634_t",330.709636853322,-0.833220649606823,0.487647792305863,-1.70865256185597,0.0875153261733368,0.171325489831987 +"Tfru26635_t",0,NA,NA,NA,NA,NA +"Tfru26636_t",2.79926083835996,2.84011994733457,1.43486657155336,1.97936170766032,0.0477752965575814,0.104948089611177 +"Tfru26637_t",1.49097419148205,-0.366946263812494,1.42242366289493,-0.257972553033659,0.796428089946268,0.871081060160174 +"Tfru26638_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru26639_t",0,NA,NA,NA,NA,NA +"Tfru26640_t",0,NA,NA,NA,NA,NA +"Tfru26641_t",0,NA,NA,NA,NA,NA +"Tfru26642_t",14.4077415974061,2.1135246122257,0.719524476052617,2.93739084988561,0.00330986662459734,0.0111056694240612 +"Tfru26643_t",50.0794252258818,1.00755360675643,0.379254126733514,2.65667143937076,0.00789163139077564,0.023461290426123 +"Tfru26644_t",81.1481229193955,-0.799538584651737,0.251613390548249,-3.17764719480786,0.00148475301888706,0.00550054172532569 +"Tfru26645_t",138.250613337021,-0.752240516251895,0.219759502171758,-3.42301702005115,0.000619301994833512,0.00254218243660565 +"Tfru26646_t",123.034212685007,0.393231850339238,0.27631978168058,1.42310423071268,0.154705942112825,0.268126615386435 +"Tfru26647_t",15.9272539609294,0.942860178539316,0.526878010677263,1.78952273473577,0.0735306694452317,0.148897609680084 +"Tfru26648_t",3176.10905722138,-1.82930841316467,0.158947305621755,-11.5088985372162,1.1898840370017e-30,9.75443397366233e-29 +"Tfru26649_t",1217.57532280863,-0.505438625877526,0.218753297344905,-2.31054174731185,0.0208581800554183,0.0527822331117438 +"Tfru26650_t",62.8230051679254,0.625051956833621,0.275976988368118,2.26486983762531,0.0235206682014881,0.0583066630869855 +"Tfru26651_t",335.740223202344,-0.884812669214439,0.191233006663862,-4.62688259025133,3.71210809216086e-06,2.47695226900895e-05 +"Tfru26652_t",77.9291550770569,1.5187435807808,0.453738503834538,3.34717809475263,0.000816387429766308,0.00324928875656589 +"Tfru26653_t",388.054972493976,-0.689379870652889,0.154433220499619,-4.46393508095358,8.0467954277384e-06,5.02475674310227e-05 +"Tfru26654_t",2.14921739509734,0.73389610977091,1.38455733896602,0.53005830030772,0.596071509744607,0.72225665338843 +"Tfru26655_t",151.461348327039,-0.0969478177912351,0.214547616874493,-0.451870867658941,0.651362012588095,0.767084858853871 +"Tfru26656_t",444.004251683948,-0.00968536972439036,0.150283892162348,-0.064447157875892,0.948614181489011,0.969981513305801 +"Tfru26657_t",325.91895274228,0.220777033909933,0.176801033958548,1.24873157677175,0.211763267418151,0.341052239840113 +"Tfru26658_t",1.47109051014167,-2.01805935329432,2.07858271660803,-0.970882388836334,0.331606848963516,0.47725796011598 +"Tfru26659_t",457.494596253117,-0.409042394191458,0.249446469629648,-1.6398002938216,0.101046697094599,0.192085711456479 +"Tfru26660_t",0,NA,NA,NA,NA,NA +"Tfru26661_t",39.8229122148791,0.044238254360835,0.310998913958938,0.142245687606086,0.886885945174321,0.930326105132472 +"Tfru26662_t",26.9095550428911,-1.22254253759859,0.553615241017287,-2.20828916370172,0.027224122235732,0.0657042872463801 +"Tfru26663_t",169.484940432084,-0.516517998428898,0.206296610548471,-2.50376386240984,0.0122880015893476,0.0339338559429631 +"Tfru26664_t",196.989586581615,-3.81463151801912,0.594533051740561,-6.41618074361277,1.39735535794422e-10,1.87937577588892e-09 +"Tfru26665_t",335.118548090168,-0.45374555495879,0.229597167825121,-1.97626808404012,0.0481244223530755,0.105611352447718 +"Tfru26666_t",0,NA,NA,NA,NA,NA +"Tfru26667_t",479.618290313178,0.873409808101803,0.300622073865276,2.90534157013773,0.0036685251630595,0.0121147400249774 +"Tfru26668_t",65.3522223256681,-0.213515550431021,0.505205080457342,-0.422631439568528,0.672564184508476,0.78350874235072 +"Tfru26669_t",137.409417867849,-0.483011287751585,0.250331567536413,-1.92948613115414,0.0536705401769459,0.115317462476963 +"Tfru02248_t",0,NA,NA,NA,NA,NA +"Tfru02249_t",24.8128772529479,-0.64489910609126,0.4535980374761,-1.4217413939434,0.155101338614898,0.268746569153128 +"Tfru02250_t",62.3628356896098,-0.676628411528526,0.398001401386946,-1.70006539969615,0.0891186246387433,0.173642740266529 +"Tfru02251_t",27.9000783904106,0.408776560567304,0.375629127200894,1.08824510924756,0.276486915545519,0.41688184126583 +"Tfru00129_t",0,NA,NA,NA,NA,NA +"Tfru19400_t",570.414035580735,0.520890816279998,0.148073988774114,3.51777392229647,0.000435182945985191,0.0018618608929743 +"Tfru19401_t",25.5419298758303,-1.2307588502357,0.772159075781546,-1.59391877766894,0.110954228063717,0.206912392639446 +"Tfru19402_t",97.8708388558038,-0.521139575684564,0.323020266324282,-1.61333399174834,0.106671965400105,0.20064872967342 +"Tfru19403_t",27.9516106033062,-0.824998620953851,0.46793792019608,-1.76305143342124,0.0778918153438884,0.155881143467426 +"Tfru19404_t",129.029523405797,0.150500780299364,0.220957944532404,0.681128622090764,0.495790107714875,0.633718808079211 +"Tfru19405_t",124.153155081735,0.28075823050093,0.211607129628439,1.32679003299139,0.184578148418685,0.30705857144207 +"Tfru19406_t",89.6956673402444,0.549275765052212,0.237321216687653,2.31448234051123,0.0206412788375004,0.0523507558163286 +"Tfru19407_t",168.055011036409,0.387868056398046,0.240482928190132,1.61287148038794,0.106772432424958,0.200787079881569 +"Tfru19408_t",469.927095073519,0.296435888657793,0.170583147979152,1.73777944755728,0.0822496834280295,0.162725240021155 +"Tfru19409_t",200.15230280538,0.403927249254626,0.240454357845845,1.67984998431005,0.0929865071391857,0.179591564463369 +"Tfru19410_t",17.2978464225781,3.21382267104949,0.74900528584058,4.29078770444556,1.78040458532917e-05,0.000103899490533681 +"Tfru19411_t",5.7775875360329,0.401783668789536,0.768003834467158,0.523153206739252,0.600867641647066,0.725984873943817 +"Tfru19412_t",24.099674852434,-0.504087902505608,0.392078672884505,-1.28568049569505,0.198554590922195,0.324567361393523 +"Tfru19413_t",27.6330169747555,-0.316563308173306,0.48110391371637,-0.65799362496962,0.510542227591675,0.647728744529574 +"Tfru19414_t",51.7936472335094,-0.417741096454719,0.398465959421039,-1.04837335932456,0.294466622738388,0.437100418974936 +"Tfru19415_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru19416_t",1549.25593485674,-0.828522413630702,0.26063966229934,-3.17880404816961,0.00147884028043349,0.00548226693326179 +"Tfru19417_t",193.896861781696,0.277646357434611,0.178308036683735,1.55711633978154,0.119442866282499,0.219127088072984 +"Tfru19418_t",63.2954298192985,-0.0165370374979603,0.264842724700683,-0.0624409732857488,0.95021166663657,0.97125997256572 +"Tfru19419_t",28.5894438388144,5.34961160068345,0.88906769075296,6.01710269794285,1.77566437923044e-09,2.05265334747817e-08 +"Tfru19420_t",0.488301569135423,2.37761170701572,3.99532948934563,0.595097779383681,0.551778112921887,NA +"Tfru19421_t",81.2111740725426,0.0678900150972577,0.254882362958487,0.266358230162497,0.789963331040686,0.867103972372393 +"Tfru19422_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru19423_t",21.5354943555775,0.0932951910704745,0.507261760992737,0.183919227201142,0.854076820979032,0.909422364331085 +"Tfru19424_t",2.66131317922674,0.0390988442794215,1.30262134824448,0.0300155101343259,0.976054683445569,0.986858089700105 +"Tfru19425_t",5.42357187891164,-0.201898733175565,0.802134974764731,-0.251701695509265,0.801271646358761,0.873816365145165 +"Tfru19426_t",994.847769457475,-0.362602997189084,0.245615294901885,-1.4763046305155,0.139862131633451,0.247772857275124 +"Tfru19427_t",0.291820569502774,-0.0642997256461449,3.90960142620042,-0.0164466191400578,0.986878088073871,NA +"Tfru19428_t",11.7242921542055,1.70370530457238,0.730493001444585,2.33226779887448,0.0196866074236687,0.0504045617368385 +"Tfru19429_t",0,NA,NA,NA,NA,NA +"Tfru19430_t",7.66158311154455,-0.01789687309526,0.690924814699976,-0.0259027794551444,0.979334883107112,0.988968264774712 +"Tfru19431_t",60.7193853687323,0.0133262112275497,0.287397831301735,0.0463685170037304,0.963016529303027,0.978773525834987 +"Tfru19432_t",492.425917527654,-0.668500471534518,0.25957831392078,-2.57533251309482,0.0100143761202381,0.0286644180685002 +"Tfru19433_t",27.2246511637914,-0.614442658977086,0.410939799247468,-1.4952133137318,0.13485877997501,0.240982143096354 +"Tfru19434_t",500.296703455904,1.26206606807766,0.197318413523171,6.39608866472798,1.5940746243828e-10,2.11849109819994e-09 +"Tfru19435_t",5.13408464453563,0.882395152385485,1.05614789267117,0.83548446056524,0.403444992674793,0.549449214146039 +"Tfru19436_t",1.22195476528185,0.467691748539834,1.93215152993379,0.242057489432964,0.808735617297139,0.879228113198874 +"Tfru19437_t",118.380034336073,-0.354271069286077,0.262891010163088,-1.34759674386089,0.177788118443631,0.298476276683282 +"Tfru19438_t",75.0921198433223,-1.5696519627839,0.251808514563965,-6.23351424594172,4.56085857953292e-10,5.73760624001949e-09 +"Tfru19439_t",0,NA,NA,NA,NA,NA +"Tfru19440_t",1.99367086475549,0.900219722637034,1.27604904223337,0.705474235583805,0.480515160102142,0.61993084765568 +"Tfru19441_t",84.2070593305734,4.57825795759205,0.441437026601709,10.3712595040715,3.3507880349551e-25,1.86543871199739e-23 +"Tfru19442_t",0,NA,NA,NA,NA,NA +"Tfru03490_t",0,NA,NA,NA,NA,NA +"Tfru03491_t",2.37632325102402,0.840882012744783,1.22351687268621,0.687266380641436,0.491914880408995,0.630293163296854 +"Tfru03492_t",0.773632671809766,-0.00232330585243538,3.04431302244969,-0.000763162603616191,0.9993910844003,0.999703771013217 +"Tfru03493_t",1.41897943377169,3.92280669495864,1.97034129948395,1.99092750884634,0.0464888574105916,0.102640595959699 +"Tfru03494_t",0,NA,NA,NA,NA,NA +"Tfru03495_t",0,NA,NA,NA,NA,NA +"Tfru03496_t",0,NA,NA,NA,NA,NA +"Tfru03497_t",0,NA,NA,NA,NA,NA +"Tfru03498_t",961.628186063891,-2.1721985245169,0.186252529915826,-11.6626524509417,1.97783392661549e-31,1.68303890789562e-29 +"Tfru03499_t",7083.86403421911,-0.075504250577126,0.171773776427218,-0.43955632895524,0.660258476200927,0.774291799275663 +"Tfru03500_t",905.93433791523,0.187735389399168,0.268222361672309,0.699924451595604,0.483974486266533,0.622956749447577 +"Tfru03501_t",4.04778210966567,0.328213224909036,1.05345560659664,0.311558667355128,0.755375950335153,0.84314629001758 +"Tfru03502_t",12.9130213381776,1.90657743666302,0.729925671030416,2.6120158700153,0.00900100757175447,0.0261613700592032 +"Tfru03503_t",1632.51989742851,-0.0604325751985393,0.178911552175895,-0.337779055983628,0.735529694107652,0.829319086811893 +"Tfru03504_t",543.889198560601,0.810282395881618,0.157204431300405,5.15432287231924,2.54549034687116e-07,2.10525033122604e-06 +"Tfru03505_t",9.78581063970508,4.21482054556384,1.00706740349036,4.18524175338795,2.84862762898661e-05,0.000159420570984547 +"Tfru03506_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru03507_t",0.840594762686098,0.628599123452512,2.12261659076773,0.296143508058209,0.767120488715186,0.851679558361239 +"Tfru03508_t",563.647059063616,-0.542298271719596,0.199820239359516,-2.71393064815569,0.00664900842044001,0.0202457989453299 +"Tfru03509_t",1031.21917847919,-0.149572649869493,0.178495848670497,-0.837961504335064,0.402052324138626,0.548052808760047 +"Tfru03510_t",1506.28406112436,0.0324029799906259,0.124680452352258,0.2598882132628,0.794950003420277,0.870315090330976 +"Tfru16434_t",80.5115475380009,2.80168037038074,0.427689816385722,6.55072967146353,5.72566237682609e-11,8.11014708818784e-10 +"Tfru16435_t",716.821246292382,-0.461622356406623,0.264849257157274,-1.74296262470731,0.0813401436406595,0.161353697454171 +"Tfru16436_t",1283.59153908017,0.0360434762255512,0.193077959072428,0.186678357274486,0.851912826176762,0.907852437971332 +"Tfru16437_t",389.609995908135,-0.00307436704029229,0.265230482693565,-0.0115913035676381,0.990751684942276,0.995682704005094 +"Tfru16438_t",0.685744147476737,1.48376364471346,2.54258508249333,0.583564992546265,0.559513018657583,NA +"Tfru16439_t",61.407214252793,-0.594766053693949,0.283781330213504,-2.09586040507483,0.0360945760155449,0.0829700709971134 +"Tfru16440_t",128.994901767376,1.80062431771488,0.339517829486989,5.30347499109436,1.1361877587254e-07,9.97171844716647e-07 +"Tfru16441_t",568.632235052755,0.810201199198007,0.211327926335872,3.83385770752477,0.000126149132412277,0.000616557672720411 +"Tfru16442_t",2.01845372178213,4.43395227048791,1.83489735169764,2.41645793776182,0.0156723368618846,0.0416366214350637 +"Tfru06252_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru06253_t",0,NA,NA,NA,NA,NA +"Tfru06254_t",67.8242226633741,-0.303519245827227,0.260952861489255,-1.16311905566027,0.244781201723441,0.380245942567544 +"Tfru06255_t",20.8995842922737,-0.480253762838029,0.416480769245863,-1.15312350125467,0.248859696752031,0.384973630040717 +"Tfru06256_t",2.15582027922665,1.19574189129449,1.61664655415082,0.739643361268029,0.459516423621858,0.602185346114825 +"Tfru06257_t",5.16943060808888,0.212943618933929,0.913857576013134,0.233016199157568,0.815748826859558,0.883421024531414 +"Tfru00703_t",43.0010355450995,-0.362117434611286,0.313339502520883,-1.15567118635848,0.247815678191007,0.383871042309116 +"Tfru00704_t",26.8808737281457,-1.43232841833089,0.41175207266487,-3.47861859944219,0.00050400535831333,0.00211864010500607 +"Tfru00705_t",6.47493375772628,-1.47304906887829,0.795980680343977,-1.85060907287564,0.0642258135152868,0.133400870285891 +"Tfru00706_t",178.965912962953,2.0763248730829,0.382545043763181,5.42766115241654,5.70973065020618e-08,5.26726182817866e-07 +"Tfru00707_t",670.455363319482,-0.856243968008569,0.234138736889323,-3.65699405140856,0.000255190300326993,0.00115633912154649 +"Tfru00708_t",72.7159170801022,-0.269100066043249,0.273485513633068,-0.983964607369652,0.325132915189383,0.470177994439028 +"Tfru00709_t",1.63286462816208,1.16053532312515,1.74075655951911,0.666684446356904,0.504973715787998,0.642302458615254 +"Tfru00710_t",278.891979902567,-0.453241989362211,0.198706010568744,-2.2809676872125,0.0225503590279675,0.0563255619470885 +"Tfru00711_t",0.676985996647709,-1.60360687761276,2.54779858384524,-0.629408811112742,0.529081451009757,NA +"Tfru00712_t",3.61786115281138,-2.0595052120927,1.19609385437465,-1.72185920407514,0.0850950266791288,0.167451569249881 +"Tfru00713_t",118.868842423218,-0.869993371634077,0.290243711553027,-2.99745812572112,0.00272241256478375,0.00939226039769697 +"Tfru00714_t",24.7828466601862,-0.254139497570093,0.429559216955032,-0.591628552104138,0.554099350035898,0.685161801967148 +"Tfru00715_t",0,NA,NA,NA,NA,NA +"Tfru00716_t",87.1604852764405,1.86714924310424,0.321340750074477,5.81049631169247,6.22879051580442e-09,6.65713141087407e-08 +"Tfru00717_t",116.48738231887,-0.374236211644684,0.275279963998053,-1.3594749367496,0.173996139270962,0.293512745676049 +"Tfru00718_t",0.45779671522348,-0.897755407628854,2.80924069001506,-0.319572264071129,0.749292602683769,NA +"Tfru00719_t",11.7962168474098,5.07777896178677,1.13727360092117,4.46487015760664,8.01173238191462e-06,5.00565524029171e-05 +"Tfru00720_t",218.510282526743,0.466058610375058,0.172543964654527,2.7011006227208,0.00691104262545957,0.0209040591914833 +"Tfru00721_t",14.1981961766894,-3.73991106137088,0.877476310144777,-4.26212197199241,2.02494861212651e-05,0.000116799870977813 +"Tfru00722_t",1390.3561653314,0.399288929501577,0.273558471606732,1.45961090934736,0.144397039290149,0.254336985622031 +"Tfru00723_t",0.689762435919001,-0.10208651821377,2.25347538874552,-0.0453018119139966,0.963866743224371,NA +"Tfru00724_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00725_t",0,NA,NA,NA,NA,NA +"Tfru00726_t",36.7708134349311,0.363853228339904,0.348622316872145,1.04368885963587,0.296629365714533,0.439494551783598 +"Tfru00727_t",34.5525842319881,0.131282542791873,0.378712739346623,0.346654678209055,0.728850762737982,0.824613521564938 +"Tfru00728_t",1614.17525711155,-0.954694388053821,0.307782606773864,-3.10184645604507,0.00192317681935644,0.00690447638005422 +"Tfru19539_t",0.54958352561669,0.924014500100226,2.70977606673152,0.340992937181984,0.733108898760436,NA +"Tfru19540_t",4.53401297373469,-0.62957369510474,1.1190504365564,-0.562596353603235,0.573709775581616,0.703051765798412 +"Tfru19541_t",4.25242355873358,-0.40132462960518,0.976464331710161,-0.41099773598725,0.681074194817801,0.789600107750848 +"Tfru19542_t",10.4731662992317,0.84148079237296,0.876779729109574,0.959740245394972,0.337185962786318,0.482495003015205 +"Tfru19543_t",9.97801278209587,0.545670655060235,0.769752580560523,0.708890972035307,0.478392137926339,0.618189043639441 +"Tfru19544_t",0,NA,NA,NA,NA,NA +"Tfru19545_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru19546_t",0,NA,NA,NA,NA,NA +"Tfru19547_t",4.23311702299709,1.65359457473556,0.934786152339308,1.76895493220287,0.0769013958632491,0.154340708404584 +"Tfru19548_t",1.92755035020574,1.3524096056571,1.47106167077803,0.919342562261052,0.357916422074722,0.503969841691816 +"Tfru19549_t",0.745468056709052,2.96260161093888,2.94260314408509,1.0067961821131,0.314032729723174,0.458570565783938 +"Tfru19550_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru19551_t",4.08676850526854,-2.28550303213617,1.15959317900277,-1.97095246291606,0.0487293134559027,0.106656433754827 +"Tfru19552_t",2.71990525925804,1.05873833459481,1.43517373244979,0.737707436149614,0.460692252366627,0.603265426710453 +"Tfru19553_t",22.2536163520659,0.69407944428443,0.449325974751762,1.54471248778325,0.1224158229433,0.2231907224009 +"Tfru19554_t",482.716444150392,-0.921715217288308,0.158633253003294,-5.81035312482163,6.23412052037791e-09,6.6596476012438e-08 +"Tfru19555_t",219.047543298054,-0.573473485125332,0.273166877749501,-2.09935219763802,0.0357858652549645,0.0823704272761601 +"Tfru19556_t",465.883717469403,-0.679451964020694,0.229907189832181,-2.95533151667269,0.00312333237867921,0.0105621303467574 +"Tfru18630_t",9.76085873685832,-2.67382494648811,0.742748432688219,-3.59990654818452,0.000318331566247578,0.00140740032647586 +"Tfru18631_t",102.112098848537,0.473416309451633,0.419410331120805,1.12876644737507,0.258996370214037,0.396710612921098 +"Tfru18632_t",14.9637348706143,-1.29080327824878,0.803730387922626,-1.60601527283929,0.108270554276089,0.202956278138779 +"Tfru18633_t",2.99440815963846,-1.77775857232966,1.26328546317571,-1.40725008254322,0.159353245509529,0.274227269089062 +"Tfru18634_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru18635_t",48.7436930405926,-0.643560416874465,0.393947798295511,-1.63361851407458,0.102338977868423,0.194113596465404 +"Tfru18636_t",5.48980581076227,-0.402218188336238,0.84772685418068,-0.474466729881971,0.635167117552351,0.75448210813148 +"Tfru18637_t",953.449095896334,-0.40082434469566,0.227205303254307,-1.7641504795644,0.077706647528018,0.155607978854424 +"Tfru18638_t",480.002544725864,0.182883934517791,0.178937083533154,1.02205719969671,0.306753828787756,0.450203337154566 +"Tfru18639_t",313.764129335544,0.202256154350473,0.236005308594806,0.85699832582039,0.391445809871689,0.537487846277813 +"Tfru18640_t",865.795145172959,1.36717732784403,0.368399285564953,3.71112915093582,0.000206336790022463,0.000960844228194489 +"Tfru18641_t",512.308344044538,-0.243259425962547,0.186234384079783,-1.30620039454333,0.191484418695114,0.315964114900586 +"Tfru18642_t",507.088607193826,4.20289763485051,0.379807264806619,11.065869519348,1.83672775303714e-28,1.31749894592856e-26 +"Tfru18643_t",0,NA,NA,NA,NA,NA +"Tfru18644_t",8.06628853031609,3.96591539657609,1.78233987212167,2.22511736319691,0.0260733604236671,0.0634469725216559 +"Tfru18645_t",409.059646947911,0.0870131350805654,0.145342880252052,0.598674905366321,0.549389694661422,0.681257832808213 +"Tfru18646_t",70.4159183228033,1.99743147467854,0.307972281006803,6.48575082195276,8.82909826965976e-11,1.22577679450983e-09 +"Tfru18647_t",40.2490888697044,0.532834755385931,0.510486881626306,1.04377756718925,0.296588312703682,0.439462820332919 +"Tfru18648_t",44.7944717805237,1.79121832534975,0.385073590395014,4.65162600092178,3.29327953151799e-06,2.22132597695517e-05 +"Tfru18649_t",83.8459350659695,0.462300795354213,0.270637740468752,1.70819041924269,0.0876010156649623,0.171373315610302 +"Tfru18650_t",0.825174342963461,3.12580869760336,2.25758920392829,1.38457815627587,0.166181494558129,0.283082801660141 +"Tfru18651_t",8.81890624287482,5.55179310908202,1.35307434256365,4.10309539870745,4.07659056413624e-05,0.000221980770864645 +"Tfru18652_t",56.811133853712,-0.563904194653139,0.318591508269188,-1.76999128983902,0.0767285917310456,0.154090621225844 +"Tfru18653_t",419.68790230953,-0.016766108172328,0.195387318967177,-0.085809602490858,0.9316177729534,0.959308261649815 +"Tfru18654_t",1.66576910564956,1.99510343462469,1.5683601644309,1.27209519845758,0.203339296986528,0.330409748533979 +"Tfru18655_t",9.17427694278551,-1.12053827184471,0.626312431976663,-1.78910431062058,0.0735980180892952,0.149007024139536 +"Tfru18656_t",9.39637727274925,-1.15289710088634,0.715386921985724,-1.61157139647759,0.107055239192579,0.201217456381114 +"Tfru18657_t",106.112351777688,-1.00237249551742,0.292532259748934,-3.42653660275864,0.000611331362780348,0.00251592421828322 +"Tfru18658_t",17.6832552179991,2.47528547994948,0.571596539268916,4.33047667348621,1.48786907685887e-05,8.8231345893221e-05 +"Tfru18659_t",3.31833169213002,0.186471482043741,1.03604332246374,0.17998425162406,0.857164931682451,0.911756234365649 +"Tfru18660_t",97.3791987384244,0.844385988609301,0.296547158366888,2.8473919401535,0.00440790560628481,0.0141940902832596 +"Tfru18661_t",1182.40415451006,-0.165597990411566,0.223578117916572,-0.740671725635326,0.458892506926157,0.601641142648353 +"Tfru18662_t",0.659946912058341,1.42178238952714,2.23340299169958,0.636599124659179,0.524385995518853,NA +"Tfru18663_t",349.353843351745,0.983277086350389,0.158636297552546,6.19831086277522,5.7072334148911e-10,7.04511218010274e-09 +"Tfru18664_t",743.363598525912,0.144243021420719,0.147853827101446,0.975578544353481,0.329273361235896,0.474937988170879 +"Tfru18665_t",336.787551421219,-0.507844284492077,0.288377338588382,-1.7610408882265,0.078231482732793,0.156281405298572 +"Tfru18666_t",0.317617804921169,-0.0642991832940792,3.80307376634159,-0.0169071617445729,0.986510679338551,NA +"Tfru18667_t",625.363270159315,0.192739619298743,0.155823423097615,1.23691044303399,0.216120332617068,0.346548186857489 +"Tfru18668_t",2.70041176764608,-0.841647179509137,1.12784152292914,-0.746245959559354,0.455518849524894,0.598269474904174 +"Tfru18669_t",205.086479185392,-0.0609966242079985,0.168921230322732,-0.361095074263085,0.718028375365187,0.817369025466576 +"Tfru18670_t",154.10200401733,0.18749080794708,0.201442696309669,0.930740162745133,0.351987988920545,0.497476762063117 +"Tfru18671_t",171.443882463395,-0.204953549369373,0.215979933792834,-0.948947181204167,0.342647476432803,0.488032235891691 +"Tfru18672_t",88.0440185436742,0.968109077879741,0.283266672610501,3.4176596525032,0.000631620372651334,0.00258894943954887 +"Tfru18673_t",153.310129401231,-1.32453582631058,0.219843525014502,-6.0249026039007,1.6921148967388e-09,1.96379562207921e-08 +"Tfru18674_t",3246.29932972182,-2.02431878665168,0.216263323136588,-9.3604350349003,7.94090519235606e-21,3.213697255062e-19 +"Tfru18675_t",232.353200183803,1.78543317575679,0.202090124349922,8.83483634591309,1.0024490525304e-18,3.36859005940396e-17 +"Tfru18676_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru18677_t",200.530813081483,0.78394042294616,0.333495282839775,2.35067919483226,0.0187391822267486,0.0484443685150323 +"Tfru18678_t",95.5246590129741,-0.472826171509754,0.240206668853807,-1.96841400684642,0.0490204215705668,0.107157358346287 +"Tfru18679_t",608.816432954789,0.779775151004329,0.152640142431634,5.10858505883261,3.24580280749289e-07,2.63957364940737e-06 +"Tfru04937_t",112.307188645782,0.730963481241716,0.225326210595052,3.24402331762183,0.00117854097942771,0.00449025316983181 +"Tfru02009_t",98.4293441305801,0.0154948982535153,0.299543326690771,0.0517284041166812,0.95874510431968,0.9763103660467 +"Tfru09743_t",29.5491847080377,-0.0211250711007076,0.393902922256371,-0.0536301456706593,0.957229838294415,0.97548768915539 +"Tfru09744_t",32.5053865082131,0.03956320735137,0.337492979254316,0.117226756653677,0.906680364351246,0.942892849222057 +"Tfru09745_t",0,NA,NA,NA,NA,NA +"Tfru09746_t",138.528044626765,0.0426306785509507,0.192520356030595,0.221434654651147,0.824754011567134,0.889466675469847 +"Tfru09747_t",0,NA,NA,NA,NA,NA +"Tfru16725_t",76.104112829529,2.00376502309868,0.310691671910687,6.44936831031215,1.12317306272951e-10,1.53272031365161e-09 +"Tfru02732_t",0,NA,NA,NA,NA,NA +"Tfru31140_t",257.871510428276,0.398929679980996,0.173879978827673,2.29428185275065,0.0217743142707468,0.0547108064869555 +"Tfru31141_t",246.452853543844,-1.03386372474387,0.229912702014922,-4.49676644954034,6.89947025127565e-06,4.35694537876831e-05 +"Tfru06041_t",0,NA,NA,NA,NA,NA +"Tfru27672_t",0,NA,NA,NA,NA,NA +"Tfru12522_t",43.1707765685747,-0.362194415103358,0.432397940793543,-0.837641396808351,0.402232135798869,0.548164364826373 +"Tfru07952_t",20.865904338674,2.67969561137629,0.968585638120062,2.76660679852464,0.00566430282155176,0.017661942842113 +"Tfru07953_t",4.08528170259603,3.55828660113947,1.89900717129396,1.87376153967597,0.060963299605664,0.127892636405583 +"Tfru07954_t",156.904328822216,-0.538133079876551,0.210413763166503,-2.55749943244311,0.0105427730027468,0.0298970172074851 +"Tfru08734_t",0,NA,NA,NA,NA,NA +"Tfru08735_t",0,NA,NA,NA,NA,NA +"Tfru15940_t",0,NA,NA,NA,NA,NA +"Tfru15941_t",0,NA,NA,NA,NA,NA +"Tfru15942_t",0,NA,NA,NA,NA,NA +"Tfru27273_t",0,NA,NA,NA,NA,NA +"Tfru27274_t",0,NA,NA,NA,NA,NA +"Tfru30175_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19342_t",183.84086186294,0.0880821300141297,0.213950712997965,0.411693556800474,0.680564048192435,0.789131309183291 +"Tfru19343_t",91.0456669991742,0.277619087027483,0.278753347119827,0.99593095435781,0.319283694037466,0.464178840623521 +"Tfru10019_t",2.84143348712845,2.13944259572276,1.28068901841218,1.67054028336659,0.0948125162483561,0.182518836618013 +"Tfru25335_t",156.684854206242,0.240840888528414,0.223198452061758,1.07904372231836,0.28056823722952,0.421728601598271 +"Tfru25336_t",1.80519930113628,3.16252656110244,1.69957070599743,1.86077963684744,0.0627753022763438,0.1309696340957 +"Tfru25337_t",5.29575009351716,-0.127240122567409,0.873869226156325,-0.145605450745838,0.884232864775936,0.928761980273405 +"Tfru25338_t",427.957018881266,0.210854520564276,0.146606735171266,1.4382321543274,0.150368194749473,0.262172031668216 +"Tfru19174_t",128.673267461176,-1.67889453803007,0.217040019541183,-7.73541460961536,1.03066658588557e-14,2.29287457178122e-13 +"Tfru23013_t",2033.55722842697,0.0314523919126151,0.152505162635402,0.206238211015906,0.836604841294502,0.897866798454465 +"Tfru04995_t",1.50174761032892,-1.85346531205012,1.65269603187193,-1.12147985855014,0.26208366024103,0.400516613474709 +"Tfru04996_t",46.1791638876477,-0.0778065861582824,0.513261695532464,-0.151592427090365,0.879508406681729,0.925798322822873 +"Tfru15835_t",0,NA,NA,NA,NA,NA +"Tfru15836_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15837_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru05946_t",66.041449244158,-1.02419233418224,0.31832801867599,-3.21741183337277,0.00129352776457868,0.00487770031529418 +"Tfru05947_t",39.542693625358,-0.127493279908442,0.342212171529797,-0.372556240003113,0.709478747069184,0.811141866968737 +"Tfru00608_t",16.2065920311023,-0.474013543368966,0.509175589661151,-0.930943181475796,0.351882956005052,0.497450606745819 +"Tfru17217_t",102.83765372697,0.0790879884495863,0.268097741535754,0.294996847032517,0.76799628829506,0.852355910341852 +"Tfru17218_t",76.2503391381659,0.0549027373256128,0.246393363943396,0.222825551982908,0.823671280320757,0.888631086269695 +"Tfru14244_t",0.51976800175603,2.45431866011486,3.22735766148694,0.760473092091096,0.446971847375086,NA +"Tfru21910_t",0,NA,NA,NA,NA,NA +"Tfru17722_t",3.50280627400733,-0.318528038174199,1.27311339176855,-0.250196125681872,0.802435681257257,0.874734300456158 +"Tfru26934_t",148.665789688998,-0.00973782588305583,0.231138712166759,-0.0421297920706173,0.966395230610364,0.980739443854974 +"Tfru20641_t",0,NA,NA,NA,NA,NA +"Tfru27756_t",0,NA,NA,NA,NA,NA +"Tfru15943_t",0,NA,NA,NA,NA,NA +"Tfru14042_t",4.04398762230934,0.990961863095689,0.95983230739157,1.03243228579033,0.301869653828365,0.445210253974743 +"Tfru14043_t",152.274077240599,-0.27844819595684,0.22334753983667,-1.24670366264371,0.21250617535829,0.342076401101816 +"Tfru14044_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru27839_t",0,NA,NA,NA,NA,NA +"Tfru23463_t",237.77127717708,0.208389552244569,0.187217477134135,1.1130881338352,0.265670579464997,0.404800351880898 +"Tfru01002_t",49.7646338501549,1.02176273378362,0.569426513286384,1.79437154741289,0.0727538851649299,0.147645262059406 +"Tfru21099_t",210.311376145627,0.425179811954927,0.213457579874964,1.99187029199892,0.0463852912886323,0.102498303617653 +"Tfru18033_t",0,NA,NA,NA,NA,NA +"Tfru18034_t",182.768256246256,0.37467624600085,0.196674423772717,1.90505831319397,0.0567724914388703,0.120524412673299 +"Tfru30718_t",434.190621675091,-0.501372817916326,0.149992463390078,-3.3426534012741,0.00082981475426044,0.00329803839466323 +"Tfru30719_t",15.2751314929608,-1.38989402852651,0.543646155022763,-2.55661520951677,0.0105696063916414,0.0299503407248587 +"Tfru23867_t",423.253743971348,-1.02379026323801,0.152244929270241,-6.72462635140204,1.76043601272262e-11,2.66386463588453e-10 +"Tfru02965_t",12.957587931445,-0.355959306773839,0.556225888651263,-0.639954583266467,0.522202126347296,0.657785984558591 +"Tfru02966_t",17.5175272795107,0.0143094389739338,0.480145312721775,0.0298023089985375,0.976224717271555,0.986940830850494 +"Tfru02967_t",630.8732157553,-0.383072742276416,0.164851356167846,-2.32374638086923,0.0201390910386774,0.0513165043203461 +"Tfru02968_t",141.550951381244,-0.579327249414284,0.315666567304006,-1.83525057582787,0.0664685704993418,0.137065014998182 +"Tfru29904_t",3.84541979984821,0.847372071268027,1.01841613992398,0.832048941537081,0.405381320015902,0.551381666582952 +"Tfru01935_t",1.74076777341042,0.748416815698587,1.45144513616497,0.515635622078053,0.606108925857775,0.730306760024605 +"Tfru12106_t",0,NA,NA,NA,NA,NA +"Tfru12107_t",9.48848784089455,5.66561167560526,1.30417332758472,4.34421679677943,1.39773429415819e-05,8.33945441302594e-05 +"Tfru16897_t",0,NA,NA,NA,NA,NA +"Tfru20397_t",0,NA,NA,NA,NA,NA +"Tfru30929_t",0,NA,NA,NA,NA,NA +"Tfru30930_t",59.1994724212593,0.362451732162497,0.281320883040807,1.2883925581519,0.197609347942011,0.323329229927051 +"Tfru30931_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30932_t",0,NA,NA,NA,NA,NA +"Tfru15466_t",0,NA,NA,NA,NA,NA +"Tfru30399_t",0,NA,NA,NA,NA,NA +"Tfru10674_t",65.0565082426919,0.75472281000441,0.454669560066056,1.65993696585881,0.0969271339475943,0.185663303454813 +"Tfru02165_t",0.745375195198057,-1.62634389717816,2.4942967649357,-0.65202501965322,0.514385032244956,0.650833164950369 +"Tfru16969_t",0.707643096834951,-1.54713741705834,2.20194470640699,-0.702623191470993,0.482290605755276,NA +"Tfru09669_t",402.490165312105,1.69056880270233,0.417530014532409,4.0489755080137,5.14423273376678e-05,0.000273073834396823 +"Tfru09670_t",132.995093986724,0.418433223233197,0.252438828123908,1.65756284935617,0.0974057334228535,0.186399342796363 +"Tfru07772_t",0,NA,NA,NA,NA,NA +"Tfru27651_t",0,NA,NA,NA,NA,NA +"Tfru03783_t",363.558566974942,6.59966512648969,0.392404888988903,16.8185089219832,1.78597368686715e-63,7.54152662492206e-61 +"Tfru03784_t",0,NA,NA,NA,NA,NA +"Tfru03785_t",5.35289203605883,-0.662014313627449,0.856622244367211,-0.772819428844602,0.439629253386969,0.584084457750096 +"Tfru03786_t",0,NA,NA,NA,NA,NA +"Tfru03787_t",669.094536670025,0.110453597481244,0.152544312052483,0.724075489902521,0.469019391054301,0.61016415577488 +"Tfru14031_t",0,NA,NA,NA,NA,NA +"Tfru14032_t",0,NA,NA,NA,NA,NA +"Tfru14033_t",0,NA,NA,NA,NA,NA +"Tfru14034_t",0,NA,NA,NA,NA,NA +"Tfru14035_t",0,NA,NA,NA,NA,NA +"Tfru06573_t",0,NA,NA,NA,NA,NA +"Tfru06574_t",426.097390347971,0.425379639926081,0.160876709846391,2.64413438298337,0.00819001333429079,0.0242130116805057 +"Tfru03072_t",0,NA,NA,NA,NA,NA +"Tfru08332_t",0.899211432015659,3.27189454780564,2.66220941703565,1.22901471494638,0.219066288971779,0.350018101462726 +"Tfru08333_t",3.1209225905354,5.04861212213017,1.56511359346991,3.22571610341537,0.00125657932122045,0.00475359114417068 +"Tfru03184_t",387.748573299611,-1.04117655518828,0.160897441695802,-6.47105724127524,9.73195556727183e-11,1.34031486520335e-09 +"Tfru03185_t",137.923662856587,-0.896880510793482,0.226748979380747,-3.95538940568936,7.64100898225408e-05,0.000391228050841561 +"Tfru03186_t",81.3384939094653,-1.27253882571691,0.25613232334141,-4.9682867399,6.75470312206794e-07,5.1500090439925e-06 +"Tfru06097_t",45.4989432633636,4.42036899330976,0.557909911889543,7.92308740014808,2.3168460473647e-15,5.57537790752924e-14 +"Tfru02655_t",0,NA,NA,NA,NA,NA +"Tfru02656_t",4.31027538711641,-1.25658425821957,1.01790309885945,-1.23448318374073,0.217022909166899,0.347506648339205 +"Tfru11620_t",315.393028466032,-0.706953084095867,0.281775195856593,-2.50892589018256,0.0121098888080305,0.0335461457511725 +"Tfru11621_t",3.82622987821786,-2.23004460075186,1.23520889196044,-1.80539875908153,0.0710123052156294,0.144780485626837 +"Tfru17318_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02294_t",251.66560509082,1.88992283447456,0.359662758034179,5.25470817385813,1.48259364753046e-07,1.27671983646934e-06 +"Tfru02295_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02296_t",9.98460046271331,2.11888983883607,0.75454082884599,2.80818447170943,0.00498216784660413,0.015806764446697 +"Tfru17333_t",11.830654272774,-0.171175076090095,0.539785035017779,-0.31711712067834,0.751154734404865,0.839954179873133 +"Tfru11565_t",2.75056819361601,-1.22567240382806,1.13711324139678,-1.077880688754,0.281087004469356,0.422253131965646 +"Tfru11566_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru27280_t",0,NA,NA,NA,NA,NA +"Tfru27281_t",0,NA,NA,NA,NA,NA +"Tfru15050_t",0,NA,NA,NA,NA,NA +"Tfru15051_t",288.607098438571,2.2733418509597,0.221724733522931,10.2529916930742,1.14736234677847e-24,6.20240804852709e-23 +"Tfru08154_t",0.933045244318584,0.584826915290469,2.88708347185102,0.202566680524659,0.839473735128991,0.899608417553478 +"Tfru08155_t",0,NA,NA,NA,NA,NA +"Tfru06822_t",0,NA,NA,NA,NA,NA +"Tfru20584_t",0.552792481625589,-1.01067528614974,2.69796592512519,-0.374606393927247,0.70795321709804,NA +"Tfru19270_t",0,NA,NA,NA,NA,NA +"Tfru23666_t",3.9361438618253,-0.12025524282624,0.964858095879808,-0.124635159656908,0.900812392034662,0.938949342542767 +"Tfru23667_t",61.5953572975827,1.01748351646243,0.29999457750428,3.391673025983,0.00069467286087224,0.00281450561433722 +"Tfru23668_t",59.379494706893,1.15629479011468,0.283867038832108,4.07336756980285,4.63382046864265e-05,0.000248991361556357 +"Tfru27262_t",27.8008045920267,-0.37601903990564,0.368247129720583,-1.02110514803185,0.307204624335031,0.450656751404294 +"Tfru27263_t",0,NA,NA,NA,NA,NA +"Tfru21891_t",109.295994050012,0.391279332959178,0.25474598789119,1.5359587650358,0.124548493923902,0.226249618020855 +"Tfru29367_t",86.8288181013159,-2.11883457496279,0.315875412827518,-6.70781735113954,1.97556985696633e-11,2.96136995304129e-10 +"Tfru25136_t",3.19307542869179,-1.08284554421352,1.20156300291549,-0.901197474943954,0.367483333279697,0.513664168309263 +"Tfru11524_t",259.786258592931,0.000698194451832182,0.194987626288378,0.00358071158217795,0.997143011617037,0.998302791446242 +"Tfru08163_t",0,NA,NA,NA,NA,NA +"Tfru15513_t",0.495528813586586,-1.01195050526167,2.77178898670578,-0.365089301572104,0.715044746654808,NA +"Tfru24270_t",11.7714764981059,1.08578575349441,0.693087454885564,1.56659270895861,0.117209923162255,0.215986667795082 +"Tfru24271_t",7.53354214619356,5.32209525796731,1.33982575873802,3.97222939121589,7.12031025567067e-05,0.000366580500395467 +"Tfru16812_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru16717_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13853_t",0,NA,NA,NA,NA,NA +"Tfru27665_t",0,NA,NA,NA,NA,NA +"Tfru11106_t",0,NA,NA,NA,NA,NA +"Tfru00839_t",7.34699035171573,0.60041300991499,0.767909724328398,0.781879680505547,0.434285287645455,0.579254111538547 +"Tfru19839_t",0.302946100014118,-0.0642994823553775,3.86217820065486,-0.0166485022220039,0.986717030731985,NA +"Tfru19840_t",1.44251316575871,-4.01598850563256,2.09797832029719,-1.91421830567995,0.0555922677087244,0.118513521749024 +"Tfru02964_t",270.73738264974,1.70611732042302,0.425930877904831,4.0056201814141,6.18549740402222e-05,0.000323135928809564 +"Tfru30251_t",0,NA,NA,NA,NA,NA +"Tfru27275_t",0.34743332878183,-1.94360805271459,3.66213660969954,-0.530730625276716,0.595605460502085,NA +"Tfru27276_t",0,NA,NA,NA,NA,NA +"Tfru24138_t",0.486802906650774,-2.44669574681573,3.26370424051703,-0.749668342014999,0.453454478863212,NA +"Tfru24139_t",451.269242580723,-0.2210225310882,0.162559802801789,-1.35963828251991,0.17394441739601,0.293469737001334 +"Tfru24140_t",71.3589604833983,0.0676453171912063,0.285806884043501,0.236681902948532,0.812903575465515,0.881430111175522 +"Tfru09897_t",40.8232651458353,-0.533757329397263,0.321137136761726,-1.66208534702511,0.0964956631437092,0.184994866008629 +"Tfru09898_t",11.6447453529091,1.35890604945535,0.575222279156719,2.36240162924065,0.01815695947102,0.0471352224755166 +"Tfru15826_t",183.546977225338,5.5908878037195,0.383957256788393,14.5612244719228,4.95620308139456e-48,9.99277702356848e-46 +"Tfru02841_t",242.685604238898,-0.484413545330051,0.188284181610023,-2.57277877083362,0.0100885672106651,0.0288392047738773 +"Tfru07956_t",59.561489716395,0.692550021736854,0.279074822239571,2.48159262874075,0.0130796710459928,0.0357983414466576 +"Tfru07957_t",0,NA,NA,NA,NA,NA +"Tfru09470_t",5.24180699812559,1.3950446570823,1.0545541609701,1.32287625303093,0.185876533633268,0.308805346500819 +"Tfru03513_t",0.480384994632977,0.831707744683091,3.38883080158151,0.245426164178792,0.80612647230076,NA +"Tfru03514_t",6.93936775639475,0.169925019652669,0.891398967124727,0.190627346361837,0.848817563758451,0.905995750543482 +"Tfru05894_t",0,NA,NA,NA,NA,NA +"Tfru28254_t",5.54192857523559,-0.758055960932694,0.824596151028903,-0.91930572315529,0.357935685151538,0.503969841691816 +"Tfru30476_t",0,NA,NA,NA,NA,NA +"Tfru26387_t",331.033616821061,-0.196497621755445,0.176650264118355,-1.11235396525528,0.265985989427468,0.405115451435057 +"Tfru26388_t",200.096403520524,-0.496901304404319,0.265306214543359,-1.87293503568914,0.0610773564041086,0.128071885723222 +"Tfru26389_t",13.8660755243349,-0.104423220137718,0.521489640121443,-0.200240258106374,0.841292683283704,0.900774696103998 +"Tfru25466_t",52.4573954095879,1.62245267410534,0.618127763883261,2.62478530961401,0.00867036178470585,0.0253418697586153 +"Tfru25467_t",3.9513819468019,1.84428692578754,1.2724547736993,1.44939290881498,0.14722788787969,0.258023502799332 +"Tfru31417_t",0,NA,NA,NA,NA,NA +"Tfru00157_t",0,NA,NA,NA,NA,NA +"Tfru22203_t",306.894319076846,-0.0773345403606365,0.221866133098104,-0.348563970898799,0.727416680274375,0.823865653063791 +"Tfru09490_t",265.295736318635,-0.0632707530623806,0.19707068032032,-0.321056145741923,0.748167843026337,0.838163704606769 +"Tfru15002_t",2.62290005900881,0.258414001335529,1.18544286296481,0.217989419320667,0.827437355357888,0.891233420584731 +"Tfru04721_t",0,NA,NA,NA,NA,NA +"Tfru23514_t",0,NA,NA,NA,NA,NA +"Tfru04653_t",0,NA,NA,NA,NA,NA +"Tfru17321_t",0,NA,NA,NA,NA,NA +"Tfru17322_t",9.3304773541111,-0.454792859229253,0.698952819873612,-0.650677479649471,0.515254703583346,0.651675629623921 +"Tfru23245_t",0,NA,NA,NA,NA,NA +"Tfru00696_t",0,NA,NA,NA,NA,NA +"Tfru24056_t",0,NA,NA,NA,NA,NA +"Tfru19139_t",0,NA,NA,NA,NA,NA +"Tfru19140_t",0,NA,NA,NA,NA,NA +"Tfru22433_t",0,NA,NA,NA,NA,NA +"Tfru09442_t",70.9497507968144,-0.116616839390936,0.245790179380094,-0.474456870836152,0.635174146528383,0.75448210813148 +"Tfru06826_t",0,NA,NA,NA,NA,NA +"Tfru06827_t",0,NA,NA,NA,NA,NA +"Tfru06828_t",0,NA,NA,NA,NA,NA +"Tfru19385_t",0,NA,NA,NA,NA,NA +"Tfru19386_t",0,NA,NA,NA,NA,NA +"Tfru25986_t",22.11706232386,0.0330926119758436,0.433825468536542,0.0762809340988613,0.939195594028295,0.963520393965311 +"Tfru25987_t",2124.89161897077,0.0489629220908817,0.175325119494423,0.279269292569564,0.780038170128152,0.860264662870907 +"Tfru25988_t",16.0594839752889,1.90517500057382,0.540132476557792,3.52723652670416,0.000419921456749093,0.0018041547709819 +"Tfru25989_t",0.565760478089598,1.20537413523411,3.22823932677649,0.373384378672358,0.708862384231571,NA +"Tfru25990_t",56.1964713524467,-0.107193975291212,0.286098440744079,-0.374675146821575,0.707902077984857,0.810044406652066 +"Tfru25991_t",830.274658460155,-0.917203472450866,0.185222902870636,-4.95189017252075,7.34960824474966e-07,5.55877771265622e-06 +"Tfru25992_t",7.24725811120281,2.94844101106741,1.02573897151688,2.87445548325731,0.00404724820362606,0.0131902453468984 +"Tfru25993_t",127.076598388902,-0.377614390568233,0.221444638097133,-1.70523158209231,0.0881512420159195,0.172148760586063 +"Tfru25994_t",0.488301569135423,2.37761170701572,3.99532948934563,0.595097779383681,0.551778112921887,NA +"Tfru25995_t",0.688204388670049,2.85256041546746,2.42674611925328,1.17546717921412,0.239807860483933,NA +"Tfru19308_t",197.832517225032,-0.423441025508261,0.175071604346195,-2.41867335990667,0.0155772209708461,0.0414380370055314 +"Tfru19309_t",0.510200518493637,-0.977089842999089,2.74627972705618,-0.355786715159733,0.722000298737399,NA +"Tfru19310_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19311_t",62.5376621855032,0.0570972684633995,0.318172208414138,0.179453977919658,0.857581250956902,0.911895680924382 +"Tfru19312_t",423.657383930532,-0.749017855274012,0.17180023631212,-4.35981853897585,1.30170341930972e-05,7.82070403332924e-05 +"Tfru19313_t",61.4553765479074,-1.15648532064165,0.334488320283818,-3.45747594313714,0.000545260922400038,0.00227200510953507 +"Tfru19314_t",140.627861636224,-1.97684558347991,0.219172817040018,-9.01957464514846,1.88821010545306e-19,6.87124262764868e-18 +"Tfru19315_t",203.796815668906,-0.899003304863075,0.215523575898374,-4.17125273240169,3.02929653306976e-05,0.000168897998032141 +"Tfru31361_t",0,NA,NA,NA,NA,NA +"Tfru01348_t",406.662051015344,-0.378790060653283,0.167958404847007,-2.25526112252806,0.0241169433692206,0.0595145211823968 +"Tfru01349_t",427.886892789451,-0.689740212201769,0.251807406414196,-2.73915776356166,0.00615968077485424,0.0189828774085979 +"Tfru01350_t",1715.31867624306,-0.625978074079651,0.184245554540548,-3.39752063837115,0.000679994585538423,0.00276494891430776 +"Tfru01351_t",82.3928771994199,0.104670229395224,0.258913607871891,0.404267007267592,0.686016384138186,0.792742638354552 +"Tfru01352_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru01353_t",491.337113903514,-0.198316244283485,0.163355974881748,-1.21401279890157,0.224742836747047,0.356795395218764 +"Tfru25848_t",169.202139656673,0.607271450301417,0.190155058486294,3.19355927281413,0.00140530484602691,0.00524440928032054 +"Tfru25849_t",0.754324903219801,1.73675318800612,2.40985665114056,0.720687343450132,0.471101901197468,0.611877462062524 +"Tfru25850_t",14.169996777616,0.694823407348343,0.577217123244994,1.20374704659174,0.228687362278228,0.361825603943919 +"Tfru25851_t",226.555562091469,-0.296118146672566,0.177009390204653,-1.67289512906747,0.0943479428777472,0.18183835356562 +"Tfru25852_t",536.358670292425,-0.00187867997996559,0.258910990497252,-0.00725608432595886,0.994210533147783,0.997229358543683 +"Tfru25853_t",0,NA,NA,NA,NA,NA +"Tfru25854_t",0.349084237541777,-0.0642986208092012,3.68934358532082,-0.0174282007956735,0.986095011588046,NA +"Tfru25855_t",0.29973714400522,1.69074106487515,3.82362864481613,0.44218234089426,0.658357263677278,NA +"Tfru25856_t",3037.55481908372,1.0340906227645,0.207322696764266,4.98783123557524,6.10608715063072e-07,4.7089672788117e-06 +"Tfru25857_t",58.0706854338656,-0.321615954972835,0.298584753565991,-1.0771345526916,0.281420158616626,0.422696855693966 +"Tfru25858_t",0,NA,NA,NA,NA,NA +"Tfru25859_t",49.8322201261538,0.633671208282875,0.379459899781992,1.66992930912313,0.0949333506880224,0.182718843790777 +"Tfru25860_t",1776.68300351771,-0.425067100519804,0.241225749841754,-1.762113293455,0.0780501577137067,0.156086366690444 +"Tfru25861_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25862_t",224.099411125639,0.401309705415524,0.331498081749396,1.2105943518518,0.226050910013463,0.358389017150842 +"Tfru25863_t",0,NA,NA,NA,NA,NA +"Tfru25864_t",63.6510596985194,2.47321793977326,0.342385970509479,7.2234792100069,5.0674049382483e-13,9.34172343640831e-12 +"Tfru25865_t",907.21706241759,-8.39298042186662,0.433996751722362,-19.3388093080379,2.5325545293966e-83,2.57629865308618e-80 +"Tfru25866_t",86.5867840190104,1.90511406298629,0.284605031931318,6.69388749052773,2.17318527030447e-11,3.23592058213001e-10 +"Tfru25867_t",69.7413798639489,-0.075375970016759,0.302898692248374,-0.248848779957595,0.803477756734944,0.875539594689262 +"Tfru25868_t",135.467946175732,-0.605057665642308,0.250416530993027,-2.4162049655546,0.0156832302874482,0.041660616478705 +"Tfru25869_t",126.328503906964,-0.454761932782145,0.233857428595342,-1.94461187533644,0.051821708955761,0.112098380671751 +"Tfru25870_t",64.134896794661,0.279040208868512,0.275308236184989,1.01355561582624,0.310794845402187,0.454910964035379 +"Tfru25871_t",269.867179588053,-0.619253059958444,0.213732117052589,-2.8973327382804,0.00376350361310917,0.0123736169915357 +"Tfru25872_t",0,NA,NA,NA,NA,NA +"Tfru25873_t",371.057556450552,-1.00374791201832,0.232975483510818,-4.30838428530063,1.64451475960683e-05,9.66810396243032e-05 +"Tfru25874_t",93.0257404401551,0.61351333897196,0.231589813068304,2.64913784783363,0.00806974089839573,0.0239375372580461 +"Tfru25875_t",0,NA,NA,NA,NA,NA +"Tfru25876_t",0,NA,NA,NA,NA,NA +"Tfru10266_t",455.303450676356,0.510882734603137,0.153592203862963,3.32622829645021,0.000880297960094092,0.00347829596520229 +"Tfru10267_t",0,NA,NA,NA,NA,NA +"Tfru10268_t",13.3344481621605,-1.08337504308785,0.583507402124964,-1.85666032537465,0.0633594954523883,0.132003864105795 +"Tfru10269_t",341.331944439605,-0.660052824794771,0.206630475982022,-3.1943633757694,0.00140139600178687,0.00523156672560302 +"Tfru10270_t",526.21547128,-0.627133618219887,0.18110538156173,-3.46281050740685,0.000534564722010155,0.00223242367579535 +"Tfru10271_t",0.599474288010439,2.68841024197286,3.0130515071984,0.892254989850011,0.37225627368432,NA +"Tfru21990_t",54.9138979176091,1.45273605291371,0.299390341116882,4.85231436489983,1.22028988331526e-06,8.87844199889322e-06 +"Tfru21991_t",4518.47849014978,-0.939073296230925,0.217924723212047,-4.30916365242863,1.63873076277849e-05,9.64111316271887e-05 +"Tfru21992_t",0,NA,NA,NA,NA,NA +"Tfru21993_t",201.492335389991,0.288710071312144,0.274024631145903,1.05359167934952,0.292069900298842,0.434551546914512 +"Tfru21994_t",1.51658768764241,2.86582773144971,1.82956432447902,1.56639900172177,0.1172552365239,0.21601252510736 +"Tfru21995_t",10.06318362399,5.75319489143063,1.34307449672546,4.28360072762715,1.8389278877627e-05,0.000106952198877675 +"Tfru21996_t",145.74822127704,2.38771924230539,0.229567059604752,10.4009662641337,2.45431641497527e-25,1.38356678506666e-23 +"Tfru21997_t",279.40515615872,-0.218827138354522,0.201424177395355,-1.08639956327094,0.277302254707827,0.417857827926284 +"Tfru21998_t",245.329389331798,4.00331324670744,0.243424085933481,16.4458386743266,8.9832185599729e-61,3.29581035036383e-58 +"Tfru21999_t",0,NA,NA,NA,NA,NA +"Tfru22000_t",384.11896425479,-0.0206430016084617,0.231125393805973,-0.0893151603488073,0.928831446005476,0.957540548233569 +"Tfru22001_t",7.62897654152646,-0.293322011072365,0.667957956771969,-0.439132445535792,0.660565570652251,0.774458339724594 +"Tfru22002_t",468.136478828917,0.858229811396983,0.186224599856062,4.60857379777072,4.05440469320822e-06,2.6877244382109e-05 +"Tfru22003_t",16.8522005947905,-0.63473495727138,0.499165244753534,-1.27159285215217,0.203517817724713,0.33051618839378 +"Tfru22004_t",172.784675183492,-0.671293750120665,0.185405638582006,-3.62067602288021,0.000293834264584056,0.00131167496487202 +"Tfru22005_t",124.146538089707,2.34685521698399,0.440933397397494,5.32247099184539,1.02367112109193e-07,9.06240494067931e-07 +"Tfru22006_t",23.5843950647735,1.81602604517668,0.599615283220128,3.02865203072215,0.00245647443286506,0.00856455800085996 +"Tfru22007_t",495.276026284585,0.646901082582344,0.29325215935285,2.20595505250474,0.0273871469776313,0.0660123154937414 +"Tfru22008_t",45.1941394823183,6.46137188293197,0.889786183822665,7.26171298274477,3.82218571052592e-13,7.13432161814597e-12 +"Tfru10635_t",0,NA,NA,NA,NA,NA +"Tfru10636_t",0,NA,NA,NA,NA,NA +"Tfru10637_t",81.5375783871431,5.0766550608142,0.491368940886554,10.3316563958126,5.06778088289911e-25,2.79352059505621e-23 +"Tfru10638_t",0,NA,NA,NA,NA,NA +"Tfru10639_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru10640_t",82.0845266313742,-0.760964966075811,0.261805700115764,-2.90660197902235,0.00365377779512545,0.0120731650752853 +"Tfru10641_t",0,NA,NA,NA,NA,NA +"Tfru10642_t",145.73294382297,-0.302633562730907,0.204814754475462,-1.47759649203966,0.139515813868836,0.247257199428615 +"Tfru10643_t",0,NA,NA,NA,NA,NA +"Tfru10644_t",65.162170166511,-0.0625773674178477,0.332203432211035,-0.188370622787831,0.850586127064642,0.907102655094104 +"Tfru10645_t",49.0413649157242,0.37709604030762,0.356180233871892,1.05872253552186,0.289726161581785,0.431638363480252 +"Tfru10646_t",352.738112306922,0.770169574269145,0.198541455816354,3.87913733735052,0.000104827561084018,0.00052090675308719 +"Tfru10647_t",0,NA,NA,NA,NA,NA +"Tfru10648_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru10649_t",250.003591627737,0.148561081921956,0.181024289925474,0.820669325553591,0.411834647654257,0.557718710789197 +"Tfru07164_t",226.762946496893,5.81712945781921,1.2368518809537,4.70317387829316,2.56148096355899e-06,1.76931925816204e-05 +"Tfru07165_t",337.729231402407,-0.32544863885995,0.185391443558149,-1.75546741863452,0.0791793889461653,0.157766624342519 +"Tfru07166_t",15.5258678126044,-0.399933185278567,0.539893575937888,-0.740763000529899,0.458837152683164,0.601623696884792 +"Tfru07167_t",226.5751254038,-0.341022690866106,0.176712293603108,-1.92981871217197,0.0536293041250903,0.11528351563708 +"Tfru07168_t",0.679385620223242,-2.91729581017437,2.41677228712755,-1.2071041304606,0.227392044392898,NA +"Tfru07169_t",104.919654456896,-0.291543563930041,0.240966616503806,-1.20989192677416,0.226320365491132,0.358663771398635 +"Tfru07170_t",233.846974785224,-0.85279644036413,0.176876394153574,-4.82142597063397,1.42535617832806e-06,1.0234029923318e-05 +"Tfru07171_t",2.2619415761401,1.18935551518433,1.2809004194666,0.928530818718607,0.353132289036666,0.498775678677222 +"Tfru07172_t",18.1552126752965,0.17216282791622,0.486724165256371,0.353717444510973,0.723550647903351,0.8210430287191 +"Tfru07173_t",0,NA,NA,NA,NA,NA +"Tfru07174_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru07175_t",6258.4786583602,-0.224626916634817,0.247347198657137,-0.908144170842971,0.363802056033648,0.510015661114573 +"Tfru07176_t",0,NA,NA,NA,NA,NA +"Tfru07177_t",33.4201119031445,0.607418018974421,0.51509317802831,1.17923910640695,0.238302978126374,0.372926414269509 +"Tfru07178_t",0,NA,NA,NA,NA,NA +"Tfru07179_t",3509.33452781863,-0.616359611239886,0.330216248975319,-1.86653325859187,0.0619667953989918,0.129633284822344 +"Tfru07180_t",0,NA,NA,NA,NA,NA +"Tfru07181_t",549.577944148323,0.700200891228737,0.206358506487751,3.39312831414729,0.000690992622104598,0.00280378099434202 +"Tfru07182_t",77.4781913543857,2.74055844599759,0.628896602402778,4.35772499887414,1.31421366788178e-05,7.88951230879675e-05 +"Tfru07183_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru07184_t",143.645563977238,0.418042687186203,0.225515005277798,1.85372448574427,0.0637785867791802,0.132704050959283 +"Tfru07185_t",225.548324322118,-0.15793925328049,0.281780739909042,-0.560504076082248,0.575135660186102,0.704093549095049 +"Tfru07186_t",3.92516539702004,1.49824515651191,1.05433961844941,1.42102708680847,0.15530888505461,0.2690465862313 +"Tfru07187_t",0,NA,NA,NA,NA,NA +"Tfru07188_t",7.13723580187351,-0.43839248907115,0.756428015699214,-0.579556124274318,0.562213988306302,0.692611811424501 +"Tfru07189_t",163.892374652759,3.18991137313029,0.238043400865501,13.4005452851543,6.0020546536116e-41,9.01516665421662e-39 +"Tfru07190_t",10.0121628410835,0.498265161302363,0.831002516480619,0.599595249617976,0.54877601381996,0.680873789755611 +"Tfru07191_t",5.76259916852892,-0.401376209185038,0.837980477054518,-0.47898038221113,0.63195258493396,0.751725919343475 +"Tfru07192_t",341.585281170741,0.364930292736828,0.22428923716951,1.62705218200473,0.10372601559958,0.196278703738785 +"Tfru07193_t",109.632994495707,-0.100140827637798,0.265228091051575,-0.377564937562836,0.705753815653911,0.808408475581011 +"Tfru07194_t",0,NA,NA,NA,NA,NA +"Tfru07195_t",1.01208785933372,2.15778650789093,2.02094006554829,1.06771425074672,0.285649428168184,0.427214261053458 +"Tfru07196_t",398.639916801611,0.0852717516014984,0.145411597121912,0.58641644331853,0.557595696961685,0.688534081770168 +"Tfru07197_t",0,NA,NA,NA,NA,NA +"Tfru07198_t",186.056215116719,0.981368434287521,0.231667949642175,4.23609927831321,2.27436249774457e-05,0.000129980165218395 +"Tfru07199_t",0,NA,NA,NA,NA,NA +"Tfru07200_t",23.0815616871521,4.71276681629074,0.758136190588113,6.21625358978693,5.09164936415061e-10,6.33604951892165e-09 +"Tfru07201_t",67.0161764327921,0.058412553855819,0.281178864206947,0.207741623896836,0.835430715434447,0.89729321767001 +"Tfru07202_t",15.4015677839659,-0.451295764762627,0.508059432787774,-0.888273567299637,0.374393614501689,0.520430378419118 +"Tfru07203_t",3.55301812865674,-2.08028039910694,1.15392987187467,-1.80277887747834,0.0714229487257655,0.145471932333694 +"Tfru07204_t",59.3587144579521,2.83066863351144,0.473346704835474,5.98011690922266,2.22977530050877e-09,2.53311529062875e-08 +"Tfru07205_t",12.64074797422,3.29217392642835,0.762964068740944,4.31497898958879,1.59618083616571e-05,9.42049765648435e-05 +"Tfru07206_t",631.697824192137,-0.122101903986234,0.14987132338717,-0.814711588759391,0.41523741828727,0.560935197758744 +"Tfru07207_t",3.04077009825205,-1.03503319589138,1.07235098447592,-0.965200023942922,0.3344446349748,0.480113148218181 +"Tfru07208_t",485.495838417558,0.0226019333454311,0.167095657447154,0.13526343946179,0.892403590452935,0.934065005549915 +"Tfru07209_t",5.42221887762109,-0.59902980867094,0.820901185791111,-0.729722187078642,0.46556001630751,0.607386936479332 +"Tfru07210_t",115.471845003554,-0.407511623576643,0.219956585908601,-1.85269116581932,0.0639266369574632,0.132937942307009 +"Tfru07211_t",68.8045164211697,0.312061197456565,0.302774331604821,1.03067256660272,0.302694393654584,0.446117914388514 +"Tfru07212_t",778.728242391922,-0.197963323609896,0.128337738931959,-1.54251839916589,0.122947670359654,0.223959699059829 +"Tfru07213_t",31.8062134366242,-0.47346754510794,0.361537597516816,-1.30959421194339,0.190333147550562,0.31457468740725 +"Tfru07214_t",27.2050428670544,-0.608271593344838,0.375749552716765,-1.61882186937251,0.105485595284506,0.198901981840698 +"Tfru07215_t",5.23687434569264,-0.606687328436712,0.819398010936044,-0.740406152247867,0.459053586888265,0.601781822549166 +"Tfru07216_t",3.67129808960084,-1.43506650903732,1.02237020338177,-1.40366621042989,0.160418268813262,0.275297972244522 +"Tfru07217_t",301.716110255033,-0.887828934062917,0.163130691746553,-5.44243958360874,5.25557880461334e-08,4.87442410473463e-07 +"Tfru07218_t",311.62672535495,0.242572554871228,0.293909020944128,0.825332118395035,0.409183061919053,0.555205976458039 +"Tfru07219_t",593.662168103464,-0.432327045854759,0.191943284085766,-2.25236870315078,0.024298981800282,0.0598672685023678 +"Tfru07220_t",73.4474162172952,-0.776866353290753,0.275726579213861,-2.81752435875322,0.00483954435565222,0.015408877888675 +"Tfru07221_t",0,NA,NA,NA,NA,NA +"Tfru07222_t",285.107487987643,-1.08200661629678,0.18917037850434,-5.71974653141565,1.06683079423228e-08,1.10382215325559e-07 +"Tfru07223_t",165.362904917238,0.928473105548646,0.204991735956001,4.52931968802846,5.91739084403269e-06,3.7967662582985e-05 +"Tfru07224_t",9.59695455718845,3.38025807140286,0.905487776179318,3.73307973926028,0.000189152679345442,0.000889004951241797 +"Tfru07225_t",179.187928045731,-0.0507665861149371,0.210140942714203,-0.241583507998157,0.809102902334659,0.879331147939372 +"Tfru07226_t",122.763387522336,-0.153679188676833,0.220617985280672,-0.696585042608024,0.486062519121071,0.624925557415383 +"Tfru07227_t",4.17243153505611,1.95275154755744,1.09144831349184,1.78913790366311,0.0735926091638055,0.149007024139536 +"Tfru07228_t",5.60262162046255,-0.900371462073603,0.797497338958896,-1.12899619608638,0.258899438351772,0.396589283388957 +"Tfru07229_t",56.9335850588825,-0.631503514444148,0.374279124981705,-1.68725283429851,0.0915547460439541,0.177218060583264 +"Tfru07230_t",271.311904047276,0.700585872806929,0.180951629611259,3.87167484654329,0.000108090079811356,0.000535307808404104 +"Tfru07231_t",168.547082102369,1.10754196972195,0.211915325084241,5.22634202732474,1.7289640409905e-07,1.46680118413068e-06 +"Tfru07232_t",0,NA,NA,NA,NA,NA +"Tfru07233_t",2.24987454076698,-1.16227349157988,1.44653771403586,-0.803486476918131,0.421693609890625,0.566919143950993 +"Tfru07234_t",57.5372746999689,-1.12713624656791,0.66787800448705,-1.68763792039174,0.0914807553271983,0.177105476143832 +"Tfru07235_t",0,NA,NA,NA,NA,NA +"Tfru07236_t",1169.37410058363,-0.0546972034341971,0.158952472349775,-0.344110428894972,0.730763240190581,0.826239913175047 +"Tfru07237_t",0.841404095119464,0.514153912375721,1.92468385607481,0.267136813535851,0.789363824080674,0.866785848728005 +"Tfru07238_t",14.2421572703673,-0.0625635521587177,0.555162124244682,-0.112694201254881,0.910272998691615,0.944981431984337 +"Tfru07239_t",11.2745521556939,-0.697154397380884,0.564879021089623,-1.23416585030208,0.2171411097716,0.347562440043513 +"Tfru07240_t",54.6733071129007,0.546552299618401,0.302688893823761,1.80565693281309,0.0709719437306228,0.144724564983265 +"Tfru07241_t",0,NA,NA,NA,NA,NA +"Tfru07242_t",118.574354493834,2.93905488079384,0.395281787323283,7.43534100241792,1.04298551367546e-13,2.08970597995137e-12 +"Tfru07243_t",31.5275241527316,0.0413760649345959,0.401810469064845,0.102974083853247,0.917983539678691,0.950560848471249 +"Tfru07244_t",13.6704063227923,-0.555401286489255,0.564202144530546,-0.984401232560692,0.324918272276338,0.469928327099939 +"Tfru07245_t",597.792204135043,0.31115629922649,0.141431122412925,2.20005536205838,0.0278029673732312,0.06685617382754 +"Tfru07246_t",157.40018232437,-0.0902548300062372,0.221757194651723,-0.406998429737467,0.684009141494477,0.791526607375719 +"Tfru07247_t",0.956871703205773,-1.09356532160962,2.05346051548879,-0.532547528117101,0.594346833041554,0.720836547330177 +"Tfru07248_t",12.6212402544483,0.830010884485516,0.561662577726997,1.47777494424589,0.139468026950777,0.247231243022448 +"Tfru07249_t",56.8324801261232,0.525817826442723,0.321075909264189,1.63767449151742,0.101489614544198,0.192731232371587 +"Tfru07250_t",23.9515264046568,0.213480063784864,0.388581043902501,0.549383628292552,0.58274220699603,0.710723193055648 +"Tfru07251_t",41.148302810471,-1.00974030572301,0.365978935376976,-2.75901208544403,0.00579763908303266,0.0180159903746558 +"Tfru07252_t",747.335156288655,-0.367546471708918,0.15125730501436,-2.4299419566812,0.015101241021292,0.040398352346787 +"Tfru07253_t",432.002438064824,0.795274655712209,0.157363162670877,5.05375363721887,4.33210348354402e-07,3.45888248168802e-06 +"Tfru07254_t",1.63987900872017,-0.134956714856588,1.37931438717112,-0.0978433315216665,0.922056698856103,0.953587288373363 +"Tfru07255_t",476.307531347946,-0.903471578379447,0.185094076465912,-4.88114798501309,1.05470055741211e-06,7.75688415211407e-06 +"Tfru07256_t",66.8689510863116,0.759813818599339,0.292658660125039,2.59624580483867,0.00942486140337835,0.0271917646538567 +"Tfru07257_t",744.150062673098,0.762572580216031,0.299751458760448,2.54401624388909,0.0109585988258451,0.0308494895248319 +"Tfru07258_t",0,NA,NA,NA,NA,NA +"Tfru07259_t",0.698168475083553,0.244817495267256,3.09364309159246,0.0791356623951199,0.936924717958365,NA +"Tfru07260_t",30.102551577727,5.1031962224995,1.04126175159376,4.90097347250922,9.53629338730186e-07,7.08573193917051e-06 +"Tfru07261_t",0.825174342963461,3.12580869760336,2.25758920392829,1.38457815627587,0.166181494558129,0.283082801660141 +"Tfru07262_t",87.2582218535085,0.849367020474865,0.279212211625024,3.0420124375346,0.00235002184059196,0.00823445886839643 +"Tfru07263_t",128.993998803593,0.0952589407127154,0.478056285249954,0.199263023313058,0.842057002247584,0.901125410524599 +"Tfru07264_t",784.402758838003,-0.442614360760083,0.140338862963143,-3.1538972984007,0.00161105770886993,0.00591073303680475 +"Tfru07265_t",61.4427425479451,-0.316235695684306,0.379263169203385,-0.833815992068346,0.404384682200535,0.550339560270062 +"Tfru07266_t",629.67323890895,-0.399228159368557,0.235004806418628,-1.69880848588853,0.0893552742104894,0.174014186984925 +"Tfru07267_t",81.824425706065,0.67687514190138,0.306147302662987,2.21094595971828,0.0270395794983817,0.0652930189699744 +"Tfru07268_t",255.794811313478,0.381514618026776,0.181232380772228,2.10511287442756,0.0352814838172949,0.081385240963828 +"Tfru07269_t",361.232912241542,0.48068779289748,0.277535617841352,1.7319859578249,0.0832760626487127,0.1644650796045 +"Tfru07270_t",0,NA,NA,NA,NA,NA +"Tfru07271_t",2.21383266208124,0.31937193919853,1.35967163807812,0.234889020447582,0.814294871608009,0.88242878300345 +"Tfru07272_t",2800.42097546041,1.57092654573247,0.319910333624373,4.91052141997074,9.08345327237032e-07,6.76948665453372e-06 +"Tfru07273_t",0,NA,NA,NA,NA,NA +"Tfru07274_t",0,NA,NA,NA,NA,NA +"Tfru07275_t",97.5451611693598,-0.612373692466776,0.244584821686257,-2.50372728873709,0.0122892717791652,0.0339338559429631 +"Tfru07276_t",62.0286764786038,-0.709665359804753,0.501667442160204,-1.41461314840146,0.157181951567682,0.271534702901175 +"Tfru07277_t",168.919804874319,-0.26898865209056,0.284739300242838,-0.944683968321743,0.344820244097488,0.490440232786895 +"Tfru07278_t",78.0117018581626,-0.372607921095162,0.260614773299104,-1.42972678171058,0.152795450528818,0.265493958294639 +"Tfru07279_t",2.39810219800015,1.35541235513014,1.27206747503912,1.0655192289139,0.286641028675947,0.428296583106403 +"Tfru07280_t",252.736072451216,1.83040843967379,0.249348079250357,7.34077617592545,2.12358687284132e-13,4.07597549006764e-12 +"Tfru07281_t",663.745861544725,-0.339823829345792,0.18423620727894,-1.84450078714053,0.0651101912166733,0.134804194495613 +"Tfru07282_t",493.17350870436,0.106475991399308,0.212728699208358,0.500524808338246,0.616705592310091,0.73917728183984 +"Tfru07283_t",84.9950912471762,2.30000572615033,0.480064819938998,4.79103160786203,1.65925982510978e-06,1.1758782421139e-05 +"Tfru07284_t",969.22473026261,0.862186307586325,0.237784074968579,3.62592115430882,0.000287933205754736,0.00128817241218222 +"Tfru07285_t",13.0677836963907,-0.502568947586747,0.593388390518335,-0.846947725330023,0.397024259304508,0.542802608906293 +"Tfru07286_t",0,NA,NA,NA,NA,NA +"Tfru07287_t",0.662407153251654,2.80970655814638,2.95110964444903,0.952084773749893,0.341053990388873,NA +"Tfru07288_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru07289_t",872.504072033876,-0.138082596619569,0.126230436593067,-1.09389304470767,0.274001889580522,0.414007303666371 +"Tfru07290_t",51.6236312996062,-0.141488764118482,0.360043451303082,-0.392976913220892,0.694336533067418,0.799549864165105 +"Tfru07291_t",253.179994027831,-0.514121148194368,0.199895101015213,-2.57195471816611,0.0101126117500203,0.0288894882519089 +"Tfru07292_t",132.958570347113,-0.138391191898088,0.223090352971844,-0.620336962376647,0.535035964894582,0.669071371112332 +"Tfru07293_t",282.873858424736,-0.0103096734234819,0.166923895200917,-0.0617627177407565,0.950751793711381,0.971545826366865 +"Tfru07294_t",446.033227080521,0.464617956064688,0.203317261962323,2.28518696140412,0.0223018674043175,0.0558295069920164 +"Tfru07295_t",359.286421863951,-0.44565112318454,0.161074113490327,-2.76674577638636,0.00566188884727885,0.0176612543378023 +"Tfru07296_t",87.2346580414199,1.22654847908357,0.24411199865751,5.02453171424984,5.04662404415013e-07,3.97968449993234e-06 +"Tfru07297_t",0.625271523428835,2.74124551423173,3.04558826885075,0.900070945987107,0.368082496537474,NA +"Tfru07298_t",0,NA,NA,NA,NA,NA +"Tfru07299_t",31.2067768225014,0.212780221458184,0.422295064760861,0.503866228175502,0.61435538404464,0.737028865983332 +"Tfru07300_t",39.7398584923695,1.35298118488628,0.333325096931205,4.05904385041108,4.92740609137632e-05,0.000262998684295259 +"Tfru07301_t",857.401363212482,-5.35667934856667,0.22261555910575,-24.0624661191002,6.18167806230444e-128,2.30576591723956e-124 +"Tfru07302_t",0,NA,NA,NA,NA,NA +"Tfru07303_t",2.87866074560879,0.562356097468422,1.3507980770195,0.416313960639658,0.677180278212689,0.786838410591349 +"Tfru07304_t",2290.52629197753,0.536598127024211,0.254059131198906,2.11209935455577,0.0346779283574205,0.0802700808989992 +"Tfru07305_t",159.792664298167,4.9411516414402,0.455426744403728,10.8494981951696,2.00523194682792e-27,1.29328792420775e-25 +"Tfru07306_t",677.327768096658,-0.176964226435659,0.25869091499108,-0.684075922966837,0.493927224660157,0.632023515602876 +"Tfru07307_t",38.4922012115775,-0.151463960329552,0.341966264052907,-0.442920768073537,0.65782304504402,0.772569256301698 +"Tfru07308_t",114.522811281124,0.313444681056502,0.222570725717509,1.40829248790936,0.159044479150971,0.273891472956266 +"Tfru07309_t",155.463922381374,-0.793543701678254,0.191759373622767,-4.13822639637596,3.50000922046925e-05,0.000192694234573436 +"Tfru07310_t",100.924409808568,0.893834208736458,0.299569508345441,2.98372893046831,0.00284758923400607,0.00975494367932891 +"Tfru07311_t",50.1638181722213,-0.568150784901881,0.519440346080405,-1.09377484669613,0.274053738473244,0.414007303666371 +"Tfru07312_t",992.227407427833,0.00431712609764184,0.209785426664571,0.0205787702524473,0.983581675764596,0.991601329051383 +"Tfru07313_t",8.8655534172066,-0.3714617393819,0.66673555082075,-0.55713504240869,0.577435166909179,0.705866235275695 +"Tfru07314_t",123.622855254933,-0.612566142043305,0.219953691656588,-2.78497777159248,0.00535313926675967,0.0168215749494638 +"Tfru07315_t",2.95686761846807,-1.55748225397121,1.2085961856625,-1.28867050256117,0.197512661515639,0.323194659992688 +"Tfru07316_t",156.007919022471,2.81144909478293,0.537822580883233,5.22746570098611,1.71849264809413e-07,1.4595774369771e-06 +"Tfru07317_t",8.96989428174026,4.07394822721522,1.03976715470207,3.91813514092254,8.92366746534538e-05,0.000449699792556698 +"Tfru07318_t",62.0215695747261,-0.397426261341744,0.264492672027552,-1.5025983831429,0.132942640591377,0.238249222968851 +"Tfru07319_t",735.602201758302,0.0200412228609402,0.173960078455318,0.115205873893002,0.90828194298625,0.943697065272976 +"Tfru07320_t",233.870662001904,2.61913256637796,0.364305270445074,7.1893897202699,6.50815618221707e-13,1.17461722062918e-11 +"Tfru07321_t",28.1046718294361,2.68671167930784,0.676250096529744,3.97295570543355,7.09862535691002e-05,0.000365800680376804 +"Tfru07322_t",326.584539907793,0.917471258083469,0.339700261384669,2.70082588204001,0.00691675385936376,0.0209156804989273 +"Tfru07323_t",47.835559701519,0.0296945712724134,0.334896099416122,0.0886680117331456,0.929345755311214,0.957856119589317 +"Tfru07324_t",126.076255157334,-0.0688135497922337,0.224640123990305,-0.306327954997049,0.75935495660161,0.846058989882276 +"Tfru07325_t",648.891724465791,0.0554250698812567,0.136545069209507,0.405910445555641,0.684808402765459,0.791995529190451 +"Tfru07326_t",248.354168442856,0.152608167186,0.198267287024516,0.769709262058597,0.441472374685764,0.585351723767249 +"Tfru07327_t",51.0466389657352,-0.0194084428631063,0.389992384707101,-0.0497662098650535,0.960308693923356,0.977063353831715 +"Tfru08742_t",870.288055124628,0.478042247719372,0.353467324920421,1.35243688458897,0.176235596689158,0.296530535591561 +"Tfru08743_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru08744_t",0,NA,NA,NA,NA,NA +"Tfru08745_t",0.309701230418723,-1.80295482361496,4.04923350568494,-0.445258299153085,0.656133100041007,NA +"Tfru08746_t",0.502283943991191,-2.48369053665678,3.23957080071676,-0.766672713591339,0.443276130926153,NA +"Tfru08747_t",166.815513539861,0.325643391035687,0.215387697731098,1.51189410753737,0.13056080331152,0.234883503063651 +"Tfru08748_t",314.189368039653,-0.0532878207854273,0.165310579066188,-0.322349731556452,0.747187761717136,0.837367779613098 +"Tfru08749_t",84.3727664156705,-0.807914415495085,0.246900527003932,-3.27222637107704,0.00106704103782193,0.00411497283238868 +"Tfru08750_t",266.679735257512,0.696721974091156,0.203067153655114,3.43099295750438,0.000601376213047451,0.00247905685172259 +"Tfru08751_t",10.232706193312,1.11869312804587,0.593326526388533,1.88545948696268,0.0593678291818699,0.125061372090573 +"Tfru08752_t",113.750976101714,0.515687447309468,0.235062167912983,2.1938343030188,0.028247323778124,0.0677427246200617 +"Tfru08753_t",370.487007922293,-0.548218570994193,0.337079384269259,-1.62637822595604,0.103869219916507,0.196434483798003 +"Tfru08754_t",0,NA,NA,NA,NA,NA +"Tfru08755_t",272.08967807586,-0.609639280570056,0.188170042104329,-3.23983176999051,0.00119600239840543,0.00454826400617052 +"Tfru08756_t",1420.26255737623,-0.0748340327885044,0.177289962881006,-0.42209965850538,0.672952277188976,0.78379765617951 +"Tfru08757_t",0,NA,NA,NA,NA,NA +"Tfru08758_t",115.474456118098,1.09827988720187,0.227323113754824,4.83136038857187,1.35603291043133e-06,9.78021802624983e-06 +"Tfru08759_t",88.1162470145132,0.192445282204008,0.282095955824771,0.682197948004433,0.495113792036786,0.633118021072331 +"Tfru08760_t",705.466298389208,0.787613329911169,0.39636030452573,1.98711455440423,0.046909703724851,0.103401799346869 +"Tfru08761_t",9.72889767881856,3.11093559323293,0.790093954022955,3.93742488142435,8.23607023437405e-05,0.000418440980352534 +"Tfru08762_t",19.8710983167466,-0.0896894471721634,0.427421699643142,-0.209838310144398,0.833793871482748,0.896225293875601 +"Tfru08763_t",174.405931184066,0.330916636566522,0.191295242998106,1.72987383993546,0.0836528181061989,0.165107158410506 +"Tfru08764_t",54.5220470496501,-0.43021776396248,0.275838173602176,-1.55967449444817,0.118836822432582,0.218229924184884 +"Tfru08765_t",238.961225407559,-0.484228971402955,0.1886548110006,-2.56674594639102,0.0102657795079779,0.0292672796673306 +"Tfru08766_t",878.005119012657,-2.51526326537402,0.321083190464256,-7.83368092779066,4.73790235110839e-15,1.09880056598763e-13 +"Tfru08767_t",15.3740885512007,0.849313712713599,0.54853158337227,1.54834058504376,0.121540317940499,0.221992354158847 +"Tfru08768_t",225.781020005756,-0.42698767342941,0.20047943948182,-2.12983273762659,0.0331854248517648,0.0774119041257553 +"Tfru08769_t",146.140777187925,-0.18258166741641,0.215874476450368,-0.845777001610412,0.397677157625345,0.543501056863506 +"Tfru08770_t",520.582889727185,0.665868312556589,0.270654728575155,2.46021311381483,0.0138854535596025,0.0376355154007392 +"Tfru08771_t",2954.30835940857,0.887803924263869,0.309887159618867,2.86492646341264,0.00417106091371849,0.0135365926985237 +"Tfru08772_t",80.6423697925175,1.51998851565509,0.273618776001382,5.55513235556398,2.77401485880868e-08,2.68755205801464e-07 +"Tfru08773_t",47.504890158589,-0.447856470757431,0.36558405187176,-1.22504378531952,0.220558723681016,0.351670416290504 +"Tfru08774_t",16.3738349100026,-0.996554887926922,0.516385918790123,-1.92986456768965,0.053623620667357,0.115283057688324 +"Tfru08775_t",0,NA,NA,NA,NA,NA +"Tfru08776_t",11.1618853954636,1.00182473500707,0.573125505334992,1.74800235843893,0.0804636190339389,0.159983634859591 +"Tfru08777_t",27.2849380731361,-1.05391722993569,0.377779799654102,-2.78976597187215,0.00527461528849576,0.0166261817121881 +"Tfru08778_t",15.5881551050583,-0.543788777588369,0.571530253277863,-0.951461054720393,0.341370379493362,0.487019130047901 +"Tfru08779_t",49.7245216356037,-0.703510251713956,0.30252000924564,-2.32549990153782,0.0200452451744815,0.051129768293241 +"Tfru08780_t",347.158845361636,0.989365807005027,0.176198381142871,5.61506751984741,1.96485505117531e-08,1.95234997531547e-07 +"Tfru08781_t",16.5939625770304,-0.531829811678169,0.539687047399256,-0.985441126002651,0.324407436935734,0.469462556651907 +"Tfru08782_t",0,NA,NA,NA,NA,NA +"Tfru08783_t",681.458602180247,-0.318270628783145,0.361444875169241,-0.88055095160533,0.378560916030363,0.524444127145547 +"Tfru08784_t",1.5939793938976,2.942607404678,2.09931284998157,1.40170027764267,0.161004767702469,0.276177412522515 +"Tfru08785_t",9.17453497989769,2.14326453422448,0.705482480739228,3.03801241382876,0.00238144144160535,0.00833150843569296 +"Tfru08786_t",250.69775126297,-0.039025045389884,0.178927293221228,-0.218105604166453,0.82734683102293,0.891178807252884 +"Tfru08787_t",166.114554161585,-0.339932058665392,0.277751371136139,-1.22387175722987,0.221000609356666,0.352253659810711 +"Tfru08788_t",61.3311114583103,1.72327540668544,0.492223564559045,3.50100143667285,0.000463513345049632,0.00197101057613733 +"Tfru08789_t",0,NA,NA,NA,NA,NA +"Tfru08790_t",0.51976800175603,2.45431866011486,3.22735766148694,0.760473092091096,0.446971847375086,NA +"Tfru08791_t",0,NA,NA,NA,NA,NA +"Tfru08792_t",247.930166869168,0.498196648807347,0.168801501258885,2.95137569922012,0.00316361851761911,0.0106757814270681 +"Tfru08793_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08794_t",265.472153397085,0.912349390372018,0.26942905277735,3.38623240874458,0.000708593451929771,0.00286561645359383 +"Tfru08795_t",1.43277025143474,0.766011751769013,1.83453663135143,0.417550534929751,0.676275768980984,0.785950652219682 +"Tfru08796_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08797_t",53.3838257350702,-0.706670912313636,0.279610956496259,-2.52733627168537,0.0114931398909486,0.0321079104680351 +"Tfru08798_t",151.827595018863,1.05328333300525,0.245002403620484,4.29907346801713,1.71513615535582e-05,0.000100588960054673 +"Tfru08799_t",6.61192494117296,1.01138570810399,0.823704591955996,1.22785003019386,0.219503270690146,0.350566131309889 +"Tfru08800_t",0,NA,NA,NA,NA,NA +"Tfru08801_t",0.668260089711898,-2.89805749373386,2.42187418865582,-1.19661768861013,0.231455602745748,NA +"Tfru08802_t",369.843945242916,-0.302711544974293,0.205275492530157,-1.47465993744881,0.140303991971571,0.248378685360209 +"Tfru08803_t",17.3134774566097,-0.021694926662648,0.622867526709493,-0.0348307236006647,0.972214721598461,0.984487827219292 +"Tfru08804_t",13.954511097432,0.0714312322830343,0.594706198004773,0.120111800621357,0.904394584525534,0.941442213592802 +"Tfru08805_t",0,NA,NA,NA,NA,NA +"Tfru08806_t",226.249979611787,0.626334748298174,0.173569820555371,3.60854638377854,0.000307917467210293,0.00136648679678095 +"Tfru08807_t",489.328999365415,-0.0874441923317139,0.148411412560313,-0.589201267093778,0.555726267271716,0.686718229890177 +"Tfru08808_t",309.196859389082,0.352237283295322,0.267640642702887,1.31608293769623,0.188146207069904,0.311650663476016 +"Tfru08809_t",29.5015622251754,0.570033260725325,0.497834150598347,1.14502643107188,0.252198208669518,0.388665191435327 +"Tfru08810_t",239.294269409844,0.783160971133597,0.279543739504297,2.80156862937565,0.00508548230638939,0.0160934804888284 +"Tfru08811_t",112.907202792947,0.116540614732831,0.270612321389408,0.430655241913874,0.666719067575217,0.778848143456173 +"Tfru08812_t",262.436235745458,0.0455310681665357,0.189211781272577,0.240635481893931,0.809837647522421,0.879728499735549 +"Tfru08813_t",24.9701282343245,-0.390396996167514,0.390497832594814,-0.999741774681233,0.31743548993254,0.462332829929081 +"Tfru08814_t",20.1863230914922,-0.375719068433153,0.473554721896385,-0.793401588159775,0.427543885750278,0.572582859379524 +"Tfru08815_t",20.9223468724953,-0.712605909804013,0.531324533650484,-1.34118766341924,0.179859530721337,0.301111332850353 +"Tfru08816_t",14.2573156475271,3.47700460049547,0.741057091904432,4.69195239945679,2.70610097744354e-06,1.85774662193823e-05 +"Tfru08817_t",77.1070630826231,3.62575744086949,0.424680435865037,8.53761354342621,1.37022303252755e-17,4.15522919620144e-16 +"Tfru08818_t",218.841515130684,0.911044499326595,0.26880009613236,3.38930124071825,0.000700709864697733,0.00283629711917802 +"Tfru08819_t",1965.42189307085,-0.749414261504982,0.199082352995072,-3.76434299791268,0.000166987545305662,0.000794806734143072 +"Tfru08820_t",309.474933786629,-0.203418229475042,0.162373892031292,-1.25277670523437,0.210286981557563,0.339065032223217 +"Tfru08821_t",123.83495987681,0.573682111992359,0.263037360016675,2.18099098909748,0.0291840829745149,0.0694765813998351 +"Tfru08822_t",5.01609477312624,-0.35895096279216,0.82073256624498,-0.437354355797571,0.661854380906224,0.775167982462613 +"Tfru08823_t",37.5445204456421,-0.418948196593998,0.363794007147111,-1.15160829580292,0.249482070888292,0.385647792960352 +"Tfru08824_t",133.736439368295,-0.481768117860957,0.221475203155993,-2.17526888335951,0.0296099728900346,0.0703248639795154 +"Tfru08825_t",25.3560752654107,-0.94642780945336,0.397509286723112,-2.38089483960308,0.0172706414649345,0.0451855220932002 +"Tfru08826_t",50.8316415533086,0.348420341415188,0.432749429286842,0.805131833424653,0.420743607633997,0.56622020077263 +"Tfru08827_t",0,NA,NA,NA,NA,NA +"Tfru08828_t",273.245678451077,-0.084554530311253,0.155763660413225,-0.542838619013821,0.587240920789048,0.714418993653995 +"Tfru08829_t",300.957362895995,3.57369571521056,0.551982650394314,6.47428993041294,9.52588366582085e-11,1.31274185000659e-09 +"Tfru08830_t",13.5176487110235,0.559543091113946,0.90923254773133,0.61540151912741,0.538289588422301,0.671698967877954 +"Tfru08831_t",157.584938852727,1.0970561040852,0.272703269203823,4.02289311487953,5.74875895010344e-05,0.000301941387710197 +"Tfru08832_t",48.5826844927897,-0.312273741599584,0.347158124265335,-0.899514428073447,0.368378714210274,0.514787113582637 +"Tfru08833_t",3.81569055241734,4.30126102887029,1.59110027068774,2.70332493062245,0.00686496008750265,0.0207955883538589 +"Tfru08834_t",516.104419544135,0.155178371601353,0.240919403875613,0.644109063467018,0.519504713492106,0.655605925789633 +"Tfru08835_t",108.075061408805,0.596329370897631,0.25291048766007,2.35786730876554,0.0183802616055564,0.0476210456180992 +"Tfru08836_t",138.600719914476,0.738836666623897,0.237548938062552,3.11025034525453,0.00186928839789501,0.0067464399846622 +"Tfru08837_t",149.015047359197,-0.188097152187553,0.198029684048537,-0.949843217148449,0.342191922756344,0.487778058831464 +"Tfru08838_t",699.90615322189,-0.252608046205523,0.263746929446141,-0.957766775658738,0.338180376217757,0.483516055692417 +"Tfru08839_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru08840_t",44.2833091369097,2.23395196424901,0.752862008719176,2.96727944613592,0.00300447752193509,0.0102129594632173 +"Tfru08841_t",105.529868749238,-2.41983756873687,0.258179819926537,-9.37268284339735,7.07118504568948e-21,2.86690437178498e-19 +"Tfru08842_t",292.087118522612,0.407824348188911,0.213954908210622,1.90612289103197,0.0566342634239748,0.120299431988284 +"Tfru08843_t",0,NA,NA,NA,NA,NA +"Tfru08844_t",0,NA,NA,NA,NA,NA +"Tfru08845_t",0,NA,NA,NA,NA,NA +"Tfru08846_t",0,NA,NA,NA,NA,NA +"Tfru08847_t",2.9767132217445,0.864229688374827,1.28439780772076,0.672867614052109,0.501031517472322,0.638776652673497 +"Tfru08848_t",11.3892663816669,2.49048605648761,0.934056622041855,2.66631165361623,0.00766885641383305,0.0228594840891827 +"Tfru08849_t",1.02526090175612,-0.987160095931557,1.8164629998072,-0.543451804983825,0.586818765368056,0.714132420491045 +"Tfru08850_t",21.6833225510501,0.843280671396214,0.446405043382416,1.88904826210445,0.0588853621138074,0.124185300047777 +"Tfru08851_t",6.54979105042423,1.68962322801275,0.974856806608883,1.73320144718508,0.083059869904982,0.164110522510241 +"Tfru08852_t",157.96074375871,0.0676364583772613,1.33654493755,0.0506054502748292,0.959639919700952,0.97675527665822 +"Tfru08853_t",2832.89495648556,2.24996491874695,0.360307145006883,6.24457480215657,4.24954525255423e-10,5.36708932009952e-09 +"Tfru08854_t",5924.16950471122,1.79973331210579,0.202323641316381,8.89531890784566,5.82517747137378e-19,1.99950110137033e-17 +"Tfru08855_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru17773_t",49.2462549536208,2.83610520411575,0.611293543295053,4.63951441205858,3.49228782035224e-06,2.3442531919461e-05 +"Tfru17774_t",47724.8651897247,0.515914774038048,0.156942318698111,3.28728910288654,0.00101156926161209,0.0039303680685553 +"Tfru17775_t",24.3230676540569,-5.64536776710353,1.31829432920751,-4.28232727853516,1.8494868394166e-05,0.000107482512246542 +"Tfru17776_t",0.360209768053121,-0.0642984428696687,3.65262828856368,-0.0176033359515355,0.985955295385567,NA +"Tfru17777_t",8.56018713470274,-5.57596877559259,1.78418357403201,-3.12522144960211,0.00177671250560259,0.00645605226098163 +"Tfru30254_t",0.446671184712135,-0.848473925636496,3.44516391107621,-0.246279697435774,0.805465725115252,NA +"Tfru30255_t",1.13281193533998,-3.66665353327968,2.16787764887499,-1.69135630656207,0.0907687719991974,0.17606215265575 +"Tfru30256_t",7.46027572388974,0.849637975875805,0.720904050817277,1.17857289733992,0.238568289069835,0.373182447027571 +"Tfru30257_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru30258_t",506.525432416279,-1.33116746770546,0.285093616978923,-4.66922929321098,3.02331793135235e-06,2.0543196401107e-05 +"Tfru30259_t",154.030641377067,0.505291044926267,0.187441959714321,2.69572002819634,0.00702366734612247,0.0211931610093327 +"Tfru30260_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30261_t",26.093615067883,-0.513154944068337,0.412319123115367,-1.2445577110057,0.213294373286524,0.343024437636706 +"Tfru30262_t",252.780444831108,0.102054244330244,0.193024869315515,0.528710340238224,0.597006403023531,0.722968956059612 +"Tfru30263_t",59.528899983721,0.284519596021884,0.278015101062123,1.02339619299423,0.306120558679029,0.449657265898967 +"Tfru30264_t",1.32889633182152,1.60376041065168,1.98694387049501,0.807149328406612,0.419580455235844,0.565062618135647 +"Tfru30265_t",101.130662137342,0.734332144436521,0.284004550214437,2.58563513817671,0.00971997614833979,0.0279333588987968 +"Tfru30266_t",24.5329155536017,-0.162524923727601,0.412017103332581,-0.394461594950856,0.693240276154935,0.798616223830104 +"Tfru30267_t",92.0226668757044,-0.432209412204165,0.236442475902105,-1.82796856002774,0.0675542703091375,0.13891983547905 +"Tfru30268_t",250.635671835732,1.05457582376641,0.218152852104987,4.83411430834237,1.33739726070996e-06,9.65826095343301e-06 +"Tfru30269_t",12.3607338712908,1.0216506077792,0.558305545626347,1.82991305707529,0.0672629406685889,0.138486164872403 +"Tfru30270_t",1.90134038550509,-0.788079998074844,1.44275861136017,-0.546231359750384,0.584906912222376,0.712615367452242 +"Tfru30271_t",728.396914236112,-0.274441429095251,0.1291403454807,-2.12514089283016,0.0335748582812943,0.0781411531130788 +"Tfru30272_t",60.8078489660386,-0.407671476699192,0.297689310230306,-1.36945285802772,0.170857761169161,0.289506109552228 +"Tfru30273_t",97.0050911620778,1.20279296943112,0.249548145397825,4.81988342375235,1.43642132716958e-06,1.03101697569131e-05 +"Tfru30274_t",5.52615917147572,1.34682105036166,0.890847768855241,1.51184197507994,0.130574068244012,0.234888485435334 +"Tfru30275_t",126.842374710446,1.59022270900671,0.213455739973461,7.44989433970913,9.34150156665484e-14,1.88006119659834e-12 +"Tfru30276_t",41.0617497846235,-0.707234881962037,0.415707330244522,-1.70128075813827,0.0888902794135218,0.173289586522179 +"Tfru30277_t",789.348401261866,-0.246624749669598,0.174869913810184,-1.41033265411968,0.158441480827661,0.273099225271338 +"Tfru30278_t",164.563035921844,-0.22569368361639,0.216622861946469,-1.04187379664554,0.297470194169488,0.440507043307956 +"Tfru30279_t",322.627878830353,-0.57217755873336,0.184759790300935,-3.09687274380103,0.001955738114705,0.00700534875273655 +"Tfru30280_t",73.0820791455157,-0.0730803199642076,0.311679100056022,-0.234472956162515,0.814617825911237,0.882610670290121 +"Tfru30281_t",9.70098457348374,0.422771374881065,0.604589775903883,0.699269805297332,0.484383433303757,0.623329932925606 +"Tfru30282_t",118.804871037331,-0.159984376654199,0.211813196722643,-0.755308824613462,0.450063705021298,0.593822999550562 +"Tfru30283_t",80.7286815079301,6.87935533393404,0.764427321385492,8.99935826661127,2.27040873322351e-19,8.18224596610983e-18 +"Tfru30284_t",0,NA,NA,NA,NA,NA +"Tfru30285_t",18.8162540977715,1.40110097960988,0.497926965325035,2.81386845296736,0.00489492546467161,0.015560856803885 +"Tfru30286_t",179.069551755932,1.38107890924138,0.230431106846532,5.99345690840772,2.05426617365566e-09,2.34923234371046e-08 +"Tfru30287_t",23.0431923850071,0.923069879574239,0.443896992929674,2.07946864762943,0.0375742965929534,0.0856501077358217 +"Tfru30288_t",20.7130856522894,0.318439820217524,0.514149471467785,0.619352616095175,0.535684089252517,0.669717329616856 +"Tfru30289_t",37.5185658197557,1.66856606630196,0.406752083491957,4.1021696852229,4.0929392461983e-05,0.000222762598078594 +"Tfru30290_t",124.596202290191,2.34946083933119,0.547567683227321,4.29072224548325,1.7809295171581e-05,0.000103903030745564 +"Tfru30291_t",60.8809187228828,-0.114273147726799,0.275090569259271,-0.415401909394783,0.677847709126949,0.787368647441798 +"Tfru30292_t",407.787383616234,-0.240634258494491,0.167434162350104,-1.43718734048627,0.150664769128304,0.262484628140389 +"Tfru30293_t",160.488583490774,-0.066632351128136,0.274275877809238,-0.242939159142824,0.808052529494636,0.879112129215398 +"Tfru30294_t",142.721550837879,0.0685843274047289,0.25776427167333,0.266073831565172,0.790182348165563,0.867131555945146 +"Tfru30295_t",314.685331717495,0.21086173859427,0.180223972603174,1.16999828351668,0.24200165960211,0.377451850591033 +"Tfru30296_t",27.814016773708,-0.348455582595699,0.376105989722637,-0.926482406867997,0.354195335863983,0.49996162829618 +"Tfru30297_t",260.207875298967,1.42040905621299,0.214243050139289,6.62989560356573,3.3592436634795e-11,4.88498201355888e-10 +"Tfru30298_t",85.1021492413032,1.11905926868288,0.272707145636799,4.10352015554914,4.06910984847929e-05,0.000221627350715421 +"Tfru30299_t",18.4730968255263,2.12215448641803,0.532784499547643,3.98313856394065,6.80110744648294e-05,0.000352416727604279 +"Tfru30300_t",32.1342621179087,0.690649077741048,0.36309457641747,1.9021189590752,0.0571556044035905,0.121165333575102 +"Tfru30301_t",8.30181734366535,0.29084142382279,0.810045475980013,0.359043328364896,0.719562676005306,0.818324746633404 +"Tfru30302_t",155.686827870191,0.330385451353303,0.196795815136747,1.67882356199358,0.0931864351356335,0.179909628910928 +"Tfru30303_t",46.8100388266102,-0.338386425433552,0.378093151605424,-0.894981630840778,0.370796907548394,0.517004223471002 +"Tfru30304_t",89.9824114098679,-0.360880076695325,0.232039589308574,-1.55525217817643,0.119886021824386,0.219759944993837 +"Tfru30305_t",3.66561935971776,-0.329304703098209,1.14817928195402,-0.286805996479734,0.77426087122679,0.856409568581015 +"Tfru30306_t",161.439739985424,-0.950502485280968,0.351119218445971,-2.70706482398721,0.00678810012899999,0.0205962148707999 +"Tfru30307_t",29.1141793625994,1.27847703735113,0.373699650805279,3.42113522074791,0.000623603183485084,0.00255843065928436 +"Tfru30308_t",223.014086015395,0.0714453452021771,0.307050460126061,0.23268274918997,0.816007765736133,0.883490238834369 +"Tfru30309_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30310_t",111.85501703033,-1.18111678462425,0.229637294725226,-5.14340140628084,2.69808279511752e-07,2.22160018229324e-06 +"Tfru30311_t",0.630940720631046,2.75244433675264,2.45442760740107,1.12142005266439,0.262109104438659,NA +"Tfru30312_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30313_t",38.5202848363722,0.33524959240114,0.339919086081269,0.986262925880505,0.324004107597022,0.469030525745236 +"Tfru30314_t",391.368682953666,-0.370156833128086,0.203565182249173,-1.81837006229777,0.0690075908981626,0.141419799650886 +"Tfru30315_t",59.4536858116276,-0.0053533820751846,0.30785874386843,-0.0173890856823364,0.986126216204262,0.993219909890973 +"Tfru30316_t",1.36924091765324,0.783668721795774,1.66213830639479,0.471482257993059,0.637296386561971,0.756179470570131 +"Tfru30317_t",2.29335520907762,2.58562954291316,1.48835601435874,1.73723861627769,0.0823450613586516,0.162885139933412 +"Tfru30318_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30319_t",258.563580628191,0.0070259041360279,0.164939361664141,0.042596891761558,0.966022873258015,0.980613775276199 +"Tfru30320_t",0,NA,NA,NA,NA,NA +"Tfru30321_t",4281.71874725987,1.57788957922097,0.352317266070271,4.47860417634559,7.51327019763809e-06,4.71263977082793e-05 +"Tfru30322_t",75.2986402063737,0.928418775520482,0.330528790717201,2.80888927559365,0.00497127410248668,0.0157766753280845 +"Tfru30323_t",311.602027910195,1.80008664742314,0.278247856720437,6.46936392840477,9.84163084010545e-11,1.35292197912506e-09 +"Tfru30324_t",0,NA,NA,NA,NA,NA +"Tfru30325_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30326_t",402.930001013239,0.825217201050224,0.202593630885694,4.07326329777771,4.63589644720648e-05,0.000249043116871054 +"Tfru30327_t",0,NA,NA,NA,NA,NA +"Tfru30328_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru30329_t",6.31332480693798,-0.572688320033252,0.774133395454376,-0.739779892452661,0.459433561748183,0.602138856402222 +"Tfru30330_t",0.466522622159292,0.639256604859819,3.38956973072843,0.188595206956383,0.850410089696191,NA +"Tfru30331_t",0,NA,NA,NA,NA,NA +"Tfru30332_t",367.060675323659,-0.935010107203988,0.17010650422915,-5.49661584923549,3.8714879362417e-08,3.67446564941006e-07 +"Tfru30333_t",0,NA,NA,NA,NA,NA +"Tfru30334_t",897.268933441759,0.163636829717694,0.186145754726811,0.879079031148733,0.379358426272694,0.525243849293671 +"Tfru30335_t",480.527857075575,0.373967146849045,0.170718698734658,2.19054590751238,0.0284846692269907,0.0681950039901639 +"Tfru30336_t",220.701071292913,0.708087805454073,0.223884851371183,3.16273209695694,0.00156296091329729,0.00575692317965659 +"Tfru30337_t",278.850486594146,0.810805591922834,0.256661433100055,3.159047240287,0.00158285830979522,0.0058215889849165 +"Tfru30338_t",687.178658701883,0.936979924326879,0.163174812804495,5.74218476628196,9.34627599347091e-09,9.75149914843258e-08 +"Tfru30339_t",141.378540765248,-0.155363469324556,0.217160644345997,-0.715431057005975,0.474342727602033,0.614909073432199 +"Tfru30340_t",143.913303643646,-0.0998324165386025,0.204163735265867,-0.488982122160914,0.624854353904838,0.746224143030431 +"Tfru30341_t",154.923640665972,0.519744404365974,0.210129163549593,2.47345202153868,0.0133814770529967,0.0364949374172638 +"Tfru30342_t",8.6684015820015,-0.725974372088968,0.824438721914405,-0.880568018934391,0.37855167473378,0.524444127145547 +"Tfru30343_t",341.330883264114,-1.27426500752648,0.199782384104115,-6.3782650969988,1.79105293749261e-10,2.37182039888075e-09 +"Tfru30344_t",101.480790575706,-0.1378471992613,0.225545254397836,-0.611173130772919,0.541084969466298,0.673797107537044 +"Tfru30345_t",295.884710709503,-1.3910854527776,0.182991632590659,-7.60190743742569,2.91797423589189e-14,6.23132284344089e-13 +"Tfru30346_t",673.042104421206,-1.48762503679352,0.151776450334983,-9.80142198285837,1.11011696962064e-22,5.15444352284438e-21 +"Tfru30347_t",26.297850384193,-0.0712276341891334,0.389917334821549,-0.182673679337011,0.855054069072358,0.910103916866279 +"Tfru30348_t",62.0039319800975,0.280516020581517,0.275528684536466,1.01810096851963,0.308629975127909,0.452363536797603 +"Tfru30349_t",75.3604273209978,0.576959476693833,0.255973163482381,2.25398424133452,0.0241971593712815,0.0596664198688057 +"Tfru30350_t",737.820799404834,0.407593794186433,0.154783729842129,2.63331161874801,0.00845567277901596,0.0248213479530925 +"Tfru30351_t",1023.16423931151,-0.830609320514024,0.314903064445978,-2.63766667998404,0.00834785896790121,0.0245533079808234 +"Tfru30352_t",596.085995445976,-0.449212286082882,0.15491592848998,-2.89971657828548,0.00373500214163841,0.012305218302645 +"Tfru30353_t",19.5799350826075,-0.888026685765236,0.588050549464431,-1.51011964290147,0.131012898146649,0.235375183472908 +"Tfru30354_t",541.411093028138,-0.30258804099975,0.27483216892884,-1.1009920788352,0.270900104665786,0.410643751179916 +"Tfru30355_t",23.9671647996637,1.0731419176859,0.414218889846859,2.59076045054982,0.00957641260808015,0.0275652879959915 +"Tfru30356_t",219.519258597501,2.98312234651697,0.283122962346306,10.536490300169,5.8646888532256e-26,3.4539930667155e-24 +"Tfru30357_t",60.8221618917513,0.504195065936104,0.388493750613119,1.29782027417529,0.194349101139558,0.319348963546498 +"Tfru30358_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30359_t",352.332209646793,0.5883777613806,0.248332149463886,2.36931771681929,0.0178209372393534,0.0463866684597265 +"Tfru30360_t",57.6514718485159,0.210076183537169,0.296451899133397,0.708634972996542,0.478551027564252,0.618324513081204 +"Tfru30361_t",81.7074287741665,0.392232965662016,0.249651284113388,1.57112336535738,0.116153996265633,0.214606326791453 +"Tfru30362_t",60.7600878427146,1.07755778017199,0.288974305438813,3.72890516523848,0.000192313505046039,0.000902301099146824 +"Tfru30363_t",1454.29807051737,-0.0361873656332046,0.29315787553371,-0.123439854949568,0.90175879869881,0.939794147635758 +"Tfru30364_t",147.909292008001,0.379312959287082,0.238430076579461,1.59087714406144,0.111637227222161,0.207839709278093 +"Tfru30365_t",33.2680426099913,0.352290292934641,0.386886401508978,0.910578122054946,0.362517702240326,0.508693095249765 +"Tfru30366_t",118.555144957398,0.529162746947096,0.262175450099052,2.01835353671435,0.0435544547225264,0.0971542606090044 +"Tfru30367_t",0,NA,NA,NA,NA,NA +"Tfru30368_t",212.127288947777,-1.15412040327529,0.191313792907518,-6.03260426619215,1.61338176642545e-09,1.87766427106612e-08 +"Tfru30369_t",112.899756620099,2.30354860992599,0.336264767581361,6.85040132659343,7.36430936591521e-12,1.16229367848507e-10 +"Tfru30370_t",13.8150018676154,2.52128383253149,0.688523053238038,3.66187278795416,0.000250378188578293,0.00113706653011002 +"Tfru30371_t",956.444750381707,-0.00149565272803768,0.2377385105513,-0.00629116723483021,0.994980407905481,0.997431647432236 +"Tfru30372_t",61.0646443292455,-0.470816800772772,0.287143330298103,-1.63965779836845,0.101076338228871,0.192125738879066 +"Tfru30373_t",514.737775645975,-2.40277515150624,0.211474292957914,-11.362020025689,6.46326144740353e-30,5.11122937077354e-28 +"Tfru30374_t",0.629289811871099,1.29357831785875,2.55634486173089,0.506026529215182,0.612838026048592,NA +"Tfru30375_t",16.1157470227196,5.54350633402174,1.12372383379971,4.93315721112469,8.09109791335939e-07,6.06629049584533e-06 +"Tfru30376_t",495.881900227761,0.358167019770371,0.311717022154343,1.14901334965605,0.250550476022065,0.386738371844528 +"Tfru30377_t",667.910449413294,-1.19602997084272,0.17660748478337,-6.77224961507033,1.2679512425986e-11,1.95163334314695e-10 +"Tfru30378_t",84.0063450044503,0.27816173893603,0.278953122153077,0.997163024342805,0.318685385455381,0.463706740672466 +"Tfru30379_t",1.4451732723412,0.26137997648838,1.84892594544781,0.141368548119472,0.887578799671288,0.930931945293099 +"Tfru30380_t",255.406518646101,-0.305132286465233,0.168823988014413,-1.80739887769494,0.0707001088260626,0.144314888318796 +"Tfru30381_t",2.87922497025586,0.0583058327782261,1.1021163650971,0.0529035178359674,0.957808781495769,0.975772056166938 +"Tfru30382_t",1778.36715496746,-3.27257095695283,0.287122905094177,-11.3978052565309,4.28792720890442e-30,3.42727896197432e-28 +"Tfru30383_t",268.722174319009,1.07404877379888,0.231677937184768,4.63595621944052,3.55291166666066e-06,2.38423277660766e-05 +"Tfru30384_t",28.332887712723,1.76528786936929,0.421086823225916,4.19221825999101,2.76240036318028e-05,0.000155099147335611 +"Tfru30385_t",122.755352633894,-0.840289721046794,0.234484020126826,-3.58356923679619,0.000338930869637746,0.00148760009070264 +"Tfru30386_t",15.2386632412564,-0.310689925087607,0.505168709255657,-0.615022109238306,0.538540119500564,0.671861746720699 +"Tfru30387_t",2.72000395493976,-0.0811665636769101,1.12236342282685,-0.0723175417392696,0.942349204957629,0.965568842522223 +"Tfru30388_t",1787.66204768157,0.00732178594047439,0.232382925043433,0.0315074179357452,0.974864876426119,0.986306456209589 +"Tfru30389_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30390_t",0.717117718586349,-2.9847586779631,2.89081960472132,-1.03249565385829,0.301839982601096,NA +"Tfru30391_t",12.1745555611583,-1.75833291303279,0.648398837628908,-2.71180762671127,0.00669174161147672,0.020350751089122 +"Tfru30392_t",7.02421938419236,-1.86585311684032,1.01158753122489,-1.84448014555996,0.0651131967157094,0.134804194495613 +"Tfru30393_t",1.26208648722049,-0.306733998850889,1.93062135870951,-0.158878382582445,0.873764692545157,0.922012667998395 +"Tfru30394_t",10.2305079171344,-1.26523052979001,0.716806954480405,-1.76509243092814,0.0775482325666916,0.155349490424113 +"Tfru30395_t",1.80348654190508,-4.33095591019821,2.34580604857115,-1.84625489939215,0.0648552029752792,0.134381950058953 +"Tfru30396_t",17.1474078784448,-0.697395416679043,0.602259980262243,-1.157964067902,0.246878700163902,0.382765886598477 +"Tfru30397_t",2.47452797343503,0.424793615669768,1.28862271500394,0.329649330811672,0.74166494355808,0.833549010035145 +"Tfru25474_t",526.043814581433,0.479011098216756,0.347891618079672,1.37689749715975,0.168543941137469,0.286300827526114 +"Tfru25475_t",4256.82322306198,-3.68482758096769,0.478794802060261,-7.69604758679881,1.40339563216039e-14,3.08526466087912e-13 +"Tfru25476_t",51.1569739916613,-1.77685943665038,0.619972539411117,-2.86602925726055,0.00415655829217423,0.0134993142619155 +"Tfru25477_t",0,NA,NA,NA,NA,NA +"Tfru25478_t",35.8336489733496,-0.158218597008544,0.417426120862288,-0.379033771728773,0.70466278547169,0.807783288370457 +"Tfru25479_t",150.242848833866,-0.0354069451904767,0.197857995584942,-0.17895129830766,0.857975942618803,0.912056580508652 +"Tfru25480_t",6.09780606277225,2.32799036205393,0.924220477998829,2.51886905502746,0.011773243137761,0.0327636385753658 +"Tfru25481_t",127.16089783536,0.205633296631019,0.227785954104812,0.902747921570265,0.366659696551473,0.512769106343933 +"Tfru25482_t",16.5741107468501,3.4748854288596,0.809706564753612,4.2915366876357,1.77440878496886e-05,0.00010360362276964 +"Tfru25483_t",833.067357334658,-1.29750794705388,0.175366144321314,-7.39885085616369,1.37368027888945e-13,2.70624688746003e-12 +"Tfru25484_t",1.48337748475086,-0.578576027371818,1.77711849210555,-0.325569752350231,0.74474990046064,0.835685050210042 +"Tfru25485_t",485.891290698293,2.77455365736849,0.499196519764418,5.55803886348779,2.72822647530584e-08,2.64548130491094e-07 +"Tfru25486_t",163.745346981865,-0.273787929725309,0.292529820925453,-0.935931690174863,0.349308359569418,0.495093165748168 +"Tfru25487_t",17.585301426102,0.639234119387444,0.512991003070294,1.24609226197258,0.212730525333723,0.342289817208607 +"Tfru25488_t",29.6181443781205,0.220745494702513,0.424084611792143,0.520522293345336,0.602699593899381,0.72760906847924 +"Tfru25489_t",8.02954946743722,-2.60725200161237,0.788585893618898,-3.30623718064171,0.000945580105175341,0.00370484642048742 +"Tfru25490_t",153.659316289791,0.533702985657028,0.201491651535253,2.64875979520993,0.00807877292846224,0.0239469728194844 +"Tfru25491_t",1.14600110389353,1.30108563453489,1.73943445483881,0.747993481970813,0.454464089082342,0.597410062476524 +"Tfru25492_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25493_t",1450.76755650766,1.21472619198883,0.202704888698205,5.9925845883143,2.0653194612481e-09,2.36050508548389e-08 +"Tfru25494_t",0,NA,NA,NA,NA,NA +"Tfru25495_t",9.72875201762447,2.86821883828769,0.759245531193436,3.77772238419266,0.000158269160963795,0.000757174823080317 +"Tfru25496_t",8.99669807761573,1.91245487069048,0.742860338204283,2.57444740597332,0.0100400349655389,0.0287151415372219 +"Tfru25497_t",114.043776738434,-0.85031887061015,0.321046058648611,-2.64858841186035,0.00808287041710195,0.0239500383866995 +"Tfru25498_t",35.1000564346147,5.05497494451309,0.71194186176718,7.10026368159564,1.24519084261142e-12,2.14860224037345e-11 +"Tfru25499_t",27.7501282696069,0.0537591626378826,0.373439079697637,0.143956981367376,0.885534439612712,0.929474756520612 +"Tfru25500_t",233.317838879775,0.0653667205487328,0.1827919951224,0.357601658130392,0.720641437257146,0.819015166519158 +"Tfru25501_t",237.251291549679,0.153831165576309,0.183758530307999,0.83713754849079,0.402515256509292,0.54848340481478 +"Tfru25502_t",0.984586915472279,3.41018960997892,2.71729528102557,1.25499412367574,0.20948089318307,0.337935730515181 +"Tfru25503_t",0,NA,NA,NA,NA,NA +"Tfru25504_t",18.7464262583641,-0.486419561950358,0.522816004009015,-0.930383841007995,0.352172382023113,0.49770257070455 +"Tfru25505_t",1028.40287013637,-0.357464882875774,0.168934597486973,-2.11599570599112,0.0343451727773953,0.0796688398381123 +"Tfru25506_t",14.0876966648588,-1.14782295790486,0.530295271592399,-2.16449781733507,0.030426163927933,0.0719578937659454 +"Tfru25507_t",5.14763479238991,-5.83701344158401,1.53221733881575,-3.8095205515005,0.000139236533196991,0.000675360557639504 +"Tfru25508_t",1383.18946191735,-0.368822942527552,0.133493211278658,-2.76285916710522,0.00572974831270529,0.0178372189787654 +"Tfru25509_t",364.056796350329,0.499643425780931,0.305403571969302,1.6360104191288,0.101837406805951,0.1933260806105 +"Tfru03589_t",560.046417689753,-0.611385764804774,0.173958593169979,-3.51454764989606,0.000440503635659651,0.00188282493622288 +"Tfru03590_t",45.2076862134957,-0.0327289924446287,0.306490943906859,-0.106786164796357,0.914958623602745,0.948701538001734 +"Tfru03591_t",96.5753844288327,0.144419907107801,0.227037417076731,0.636106193275584,0.52470720910236,0.659938593891807 +"Tfru03592_t",14.1011727063799,-1.07636559162946,0.559703625588763,-1.92309919468042,0.0544675934753162,0.116626936660694 +"Tfru03593_t",3.86456060054373,0.312152495953852,1.04495706478103,0.298722795868424,0.765151562209978,0.850126195812903 +"Tfru03594_t",0,NA,NA,NA,NA,NA +"Tfru03595_t",0.690511150734587,-2.93798693437607,2.97105459796238,-0.988870058595025,0.322726721481569,NA +"Tfru03596_t",1294.78882798847,-4.17752902225255,1.87379723256223,-2.22944561431558,0.0257842701038313,0.0628251924923723 +"Tfru03597_t",1.022463442176,-3.50691324645658,2.7101779833399,-1.29397894456172,0.195672693766324,0.320958288367806 +"Tfru03598_t",1.68321968666771,-1.35349392093977,1.77090511305448,-0.764294998620931,0.444691465162837,0.588539029588663 +"Tfru03599_t",1227.63198101891,-1.1824592360589,0.32329873949905,-3.65748173930746,0.00025470539911326,0.00115460944544354 +"Tfru03600_t",1.34970934797734,0.660150985017863,1.61669722403521,0.408333097381186,0.683029143542442,0.79084237324641 +"Tfru03601_t",0.871219618980124,-0.696071865959064,2.1115083070711,-0.329656228975294,0.74165973069936,0.833549010035145 +"Tfru03602_t",0,NA,NA,NA,NA,NA +"Tfru03603_t",0,NA,NA,NA,NA,NA +"Tfru06169_t",0,NA,NA,NA,NA,NA +"Tfru06170_t",0,NA,NA,NA,NA,NA +"Tfru06171_t",300.474043810956,-0.593537871869045,0.296593757498414,-2.00118126853097,0.0453728588254693,0.100519162592952 +"Tfru06172_t",244.785597254332,-0.515971161484972,0.207045083960665,-2.49207154120596,0.0127000453951765,0.0349152083330027 +"Tfru06173_t",2.84292968390615,-2.27098069729372,1.57874500670153,-1.43847213302577,0.150300138785391,0.262073790885629 +"Tfru06174_t",86.1210460388781,-0.332565989179471,0.349550267886952,-0.951411055096161,0.341395750545743,0.487024279526628 +"Tfru06175_t",61.5393561852824,-0.00679036059533659,0.364993284297075,-0.0186040699582017,0.985156956041694,0.992451251516989 +"Tfru06176_t",394.710928296821,-0.645900176297657,0.234030420563704,-2.7598983702285,0.00578193453093653,0.0179846691872633 +"Tfru06177_t",25.0517158355378,8.05257957726452,1.2967965862288,6.20959344185359,5.3121854773759e-10,6.57923137707098e-09 +"Tfru06178_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru06179_t",0,NA,NA,NA,NA,NA +"Tfru06180_t",0,NA,NA,NA,NA,NA +"Tfru06181_t",0,NA,NA,NA,NA,NA +"Tfru06182_t",1.24495454112012,-1.22547685412834,2.26847098739868,-0.540221524073197,0.589044270593362,0.715993234395197 +"Tfru06183_t",405.029592447923,-2.85276637029323,1.38887258667369,-2.05401589581772,0.0399741532370924,0.0902837369508658 +"Tfru06184_t",35.9308478552516,-1.1886990622798,0.528641381468736,-2.24859253162742,0.0245384320114276,0.0603549959793109 +"Tfru06185_t",31.617841169821,-0.955219368769176,0.711904634375528,-1.34177995569179,0.179667353212507,0.300834607578626 +"Tfru06186_t",9.92041641112143,1.0945694347393,0.628375024383049,1.74190474201926,0.0815251140563765,0.161620343040279 +"Tfru06187_t",0,NA,NA,NA,NA,NA +"Tfru06188_t",17.8862212349893,0.854369497288074,0.483220881385155,1.76807238718455,0.0770488029760828,0.154594962399564 +"Tfru06189_t",1.51296600235126,0.398789998990092,1.61205513204216,0.247379876198715,0.804614246755502,0.87639396711871 +"Tfru06190_t",1336.92466489797,2.55352037395916,0.865057554733853,2.95185026705511,0.00315876063004721,0.0106642122341917 +"Tfru06191_t",19.5176736404363,1.1702115936064,0.513148354911503,2.28045473089008,0.022580732742594,0.0563888416401757 +"Tfru06192_t",6.67293152973868,2.40011990499379,0.928801197673615,2.58410509267797,0.00976320400840999,0.0280308538432605 +"Tfru06193_t",3.31836516887672,4.09682760223512,1.49916219775254,2.73274473461033,0.00628089896133007,0.0193006341829695 +"Tfru06194_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru06195_t",0,NA,NA,NA,NA,NA +"Tfru06196_t",0,NA,NA,NA,NA,NA +"Tfru06197_t",0,NA,NA,NA,NA,NA +"Tfru06198_t",0,NA,NA,NA,NA,NA +"Tfru06199_t",304.067845883001,4.61190955532855,0.318876319393976,14.4630042271357,2.07537871555457e-47,4.07429611000977e-45 +"Tfru06200_t",25.9613725894024,-8.17296107232401,1.27098909204417,-6.43039434679897,1.27273319398101e-10,1.72107364841662e-09 +"Tfru06201_t",8.58681476317359,2.63639946089484,0.899344967808495,2.93146629520724,0.00337365972612899,0.011279131262439 +"Tfru06202_t",28.1236972736043,-0.444827204436421,0.38800893207954,-1.14643547521539,0.251615011220947,0.388033623974972 +"Tfru06203_t",0.513409474502536,-2.51028518389237,2.63648035081407,-0.952134986751282,0.341028527399002,NA +"Tfru20889_t",0,NA,NA,NA,NA,NA +"Tfru20890_t",0.582700866997245,2.61076257348193,3.98225659634252,0.655598781826308,0.512082309527966,NA +"Tfru20891_t",0,NA,NA,NA,NA,NA +"Tfru20892_t",4.71065299122033,5.6542333112177,1.43564889890133,3.93845132716276,8.20092255526531e-05,0.00041684453051746 +"Tfru20893_t",105.846646635555,3.86217190190108,0.325669316321537,11.8591826381578,1.92848468198227e-32,1.74030190253078e-30 +"Tfru20894_t",83.1242306309545,-0.0487563932994201,0.260577860613819,-0.187108732816246,0.851575381282141,0.907665715725785 +"Tfru20895_t",38.2442393331415,-0.0645321798244525,0.338106785491767,-0.190863308852534,0.848632686967234,0.905909827537644 +"Tfru20896_t",235.053984040402,-0.41207542739779,0.247260727343467,-1.66656238467413,0.0956014536971648,0.183669030280929 +"Tfru20897_t",715.497508084638,-0.0929983139658261,0.170686175954069,-0.54484971290734,0.585856884482484,0.713355662389444 +"Tfru20898_t",147.447422968505,-0.00710176760179693,0.198230294472352,-0.0358258439796014,0.971421225775388,0.984009839072694 +"Tfru20899_t",67.6549235073567,0.382751013693311,0.274639267140869,1.39364999651338,0.163423322912833,0.279618804800397 +"Tfru20900_t",91.1919537520504,0.545740990943499,0.265841084566061,2.05288430806068,0.04008379925728,0.0904857199291837 +"Tfru20901_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20902_t",0.906584337660913,1.93416310277841,2.35417424443371,0.821588761898832,0.411310987456332,0.557110688087679 +"Tfru20903_t",0,NA,NA,NA,NA,NA +"Tfru20904_t",46.0229819000308,4.31313636140856,0.506319666377343,8.51860326158875,1.61489014970905e-17,4.86568429595377e-16 +"Tfru20905_t",81.776482815152,-0.815956863757041,0.295087947770788,-2.76513110725499,0.00568999214652336,0.0177331881686663 +"Tfru20906_t",138.997609390081,0.0320601823811121,0.268044966008603,0.119607478023233,0.904794095649401,0.94159244258568 +"Tfru20907_t",62.6629770137408,0.14869861454742,0.354913127393738,0.418971864014639,0.67523669514761,0.785109997786965 +"Tfru20908_t",0,NA,NA,NA,NA,NA +"Tfru20909_t",0.524535005013881,-2.53832154473351,3.20745160642307,-0.791382647722699,0.428720732702308,NA +"Tfru20910_t",34.8956251920426,0.146181063462734,0.359112754806281,0.407061741768514,0.683962641728637,0.791525618155085 +"Tfru20911_t",0,NA,NA,NA,NA,NA +"Tfru20912_t",121.031375572735,0.246796675087446,0.236402071352141,1.04397001970351,0.296499260581275,0.439389051238838 +"Tfru20913_t",12.8562479632582,0.716207293284388,0.528559114938588,1.35501833766995,0.175411714632105,0.295455270073493 +"Tfru20914_t",173.26376807728,0.0382865161475821,0.220127036626618,0.173929185320948,0.86192111562757,0.914234192605209 +"Tfru20915_t",279.541303484744,0.49250062832108,0.159069776782956,3.09612949915103,0.00196064713559795,0.00702068526314916 +"Tfru20916_t",165.47785985043,0.324238339303686,0.2495426459715,1.29933037313677,0.193830575102758,0.31859050167448 +"Tfru20917_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20918_t",1073.30253647709,0.713072091826425,0.284117102955033,2.50978235526808,0.0120805593235758,0.0334773300720191 +"Tfru20919_t",1418.41201753432,1.12595832513992,0.214179403548781,5.25708030970152,1.4636040914261e-07,1.26371371782855e-06 +"Tfru20920_t",194.410798274048,-0.44393136967616,0.202330791340674,-2.1940870528633,0.0282291518649114,0.0677064000360858 +"Tfru20921_t",0,NA,NA,NA,NA,NA +"Tfru20922_t",0,NA,NA,NA,NA,NA +"Tfru20923_t",0,NA,NA,NA,NA,NA +"Tfru20924_t",20.6420832320478,0.675553694822078,0.520813941587643,1.2971113883064,0.194592863644001,0.319655628916086 +"Tfru20925_t",53.2193035869734,1.97246435761033,0.330646823106031,5.96547197726381,2.43927911130387e-09,2.75991236152581e-08 +"Tfru20926_t",9.5452459181403,2.59122255377619,0.728734199019999,3.55578557622362,0.000376851347337916,0.00163543400299061 +"Tfru20927_t",11.6982292552109,1.96255578330904,0.674296665235131,2.91052274835838,0.00360824699210229,0.0119403471363669 +"Tfru20928_t",317.823874601189,-0.654228667370485,0.206739573366765,-3.16450622740648,0.00155346337706099,0.00572665300257369 +"Tfru20929_t",3395.80721241376,0.232191836882713,0.232980674221787,0.996614151187824,0.318951834383653,0.463907327842085 +"Tfru20930_t",441.688782525463,0.842109394892656,0.241294135711643,3.48997041477631,0.000483074023543946,0.00203984842394594 +"Tfru20931_t",204.752622458937,0.110824419527438,0.191678207401672,0.578179549098139,0.56314290452075,0.693432638413997 +"Tfru20932_t",167.64475701267,-1.99331294813443,0.219725290003809,-9.0718412436724,1.17022518021294e-19,4.35043846065873e-18 +"Tfru20933_t",112.258821554334,-0.820106379822438,0.25955931672012,-3.15961064386199,0.00157980103085593,0.00581225498447407 +"Tfru20934_t",163.194772078343,1.33499096779762,0.383810322268058,3.47825707216192,0.000504685660166138,0.00212110142244473 +"Tfru20935_t",23.2447205518489,1.83330069440349,0.492339429242407,3.72365198786639,0.00019636155727459,0.000918789808029546 +"Tfru20936_t",114.011382508516,-0.273339766421963,0.240310197254173,-1.13744555805451,0.255352071322581,0.39239078249103 +"Tfru20937_t",56.457924057906,-0.75965108559484,0.280988379936523,-2.70349644268723,0.00686141824314152,0.0207876729770553 +"Tfru20938_t",90.7730782379272,-0.602101875876886,0.256429956997567,-2.34801691240232,0.0188736643037617,0.0487357340623269 +"Tfru19483_t",15.6404115322647,1.13609839868957,0.721259354967591,1.57515932495686,0.115219673292821,0.213161634148412 +"Tfru19484_t",424.477149675111,0.89561605669715,0.293375992671997,3.05279259062781,0.00226722583847401,0.00797806828066798 +"Tfru19485_t",198.555284625153,0.55975824566088,0.196879608267301,2.84314993608126,0.0044670050615312,0.0143596054692715 +"Tfru19486_t",174.607772135825,-0.177875413982309,0.262629499053695,-0.67728649912987,0.498224195181012,0.636248644117036 +"Tfru19487_t",72.2925866062359,-2.23048131925207,0.350581465295629,-6.36223400279078,1.98840197524525e-10,2.61921343178274e-09 +"Tfru19488_t",297.262054865038,0.505084762351329,0.206568219830029,2.44512327582108,0.0144802637881607,0.0389973891190176 +"Tfru19489_t",235.636136054117,-0.275854341050189,0.48035221844255,-0.574275147400368,0.565781624126791,0.69612965658993 +"Tfru19490_t",74.9418921577903,-1.21642075133475,0.273031489403327,-4.45523977469804,8.37994850102659e-06,5.21823170431205e-05 +"Tfru19491_t",4.50461799709097,1.45407171819084,0.967823325620289,1.50241441769231,0.132990115146169,0.238315219550906 +"Tfru19492_t",2.03815686066973,-4.50225585937515,1.73050871391561,-2.60169499475558,0.00927643125961555,0.0268225493010589 +"Tfru19493_t",6.57332100635401,2.757279399572,0.893203517675048,3.08695537468216,0.00202217951806674,0.00720882568944095 +"Tfru19494_t",2.08138658702334,4.47075122980116,1.68682498525869,2.65039424295433,0.00803978935427578,0.0238602951529893 +"Tfru19495_t",117.425736746655,0.331810265531068,0.238274111251685,1.39255693280325,0.163753814048605,0.279970233644598 +"Tfru19496_t",166.32972806461,0.010660358834758,0.193351438603067,0.0551346238320095,0.956031212255955,0.974872659255391 +"Tfru19497_t",244.66798166149,0.100699684736202,0.187545827876687,0.536933750413325,0.59131337683661,0.718046303505335 +"Tfru19498_t",46.1225229364599,-0.218255893584645,0.307171279340865,-0.710534832725844,0.477372538384162,0.617433899797402 +"Tfru19499_t",0,NA,NA,NA,NA,NA +"Tfru19500_t",4379.18055855921,0.149878380514226,0.40034215673454,0.374375713356632,0.708124809312062,0.810092175658332 +"Tfru19501_t",79.452123509413,1.67793208423567,0.267129626729669,6.28134027954043,3.35666537260113e-10,4.28779515061719e-09 +"Tfru19502_t",5.09680565588594,5.75550827286864,1.42163266294676,4.0485200030074,5.15425296808032e-05,0.000273411190864275 +"Tfru19503_t",22.7870100536187,-4.27962787171457,0.685783042789738,-6.24049824023822,4.3617930298563e-10,5.49954523989769e-09 +"Tfru19504_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru19505_t",29.7697287420489,2.1975505313014,0.423711200437072,5.1864348382449,2.14357977597477e-07,1.79339496771272e-06 +"Tfru19506_t",16.8785407877297,3.33749064022169,0.73390341324948,4.54758838829267,5.42641329102101e-06,3.50687639194485e-05 +"Tfru19507_t",4.52865213930202,4.57320729605798,1.40922535982752,3.24519230665684,0.00117371330993679,0.00447488910222755 +"Tfru19508_t",12.3082487313235,3.4430092484134,0.837210567211363,4.11247705566069,3.9143638419123e-05,0.000213875641557611 +"Tfru19509_t",27.638475904383,3.00672368695278,0.502757407807735,5.98046620548774,2.22499885675166e-09,2.52897279909101e-08 +"Tfru19510_t",19.3623918594204,0.751895703438523,0.469298135856036,1.6021706586731,0.109117876477005,0.204117191203224 +"Tfru19511_t",495.943425227207,-0.352340647615479,0.171682433431428,-2.05228129968351,0.0401423323160483,0.090599576163086 +"Tfru19512_t",165.560105272283,-2.42201345481708,0.331910919140297,-7.29717919823333,2.93863303151001e-13,5.5593074594416e-12 +"Tfru19513_t",5324.60750056834,0.66098365456376,0.183676834661056,3.59862285183372,0.000319906723715927,0.00141324762668031 +"Tfru19514_t",72.3904485432063,-0.447164894668466,0.278579988748312,-1.60515798955131,0.108459040119397,0.203173459267775 +"Tfru19515_t",48.9678769832586,-0.146724840198021,0.348925692608937,-0.420504546687152,0.674116908619814,0.784419300936486 +"Tfru19516_t",5090.97075578225,-1.46475490844692,0.32872850169524,-4.45581962285971,8.35732796830928e-06,5.20704342791653e-05 +"Tfru19517_t",0,NA,NA,NA,NA,NA +"Tfru19518_t",0,NA,NA,NA,NA,NA +"Tfru19519_t",407.258726902377,0.314644331671872,0.180122212767372,1.74683803201016,0.0806654374010268,0.160327929754439 +"Tfru19520_t",11.1598339274678,1.34180131963747,0.648551825903338,2.06891919202992,0.0385536702945872,0.0875792875754021 +"Tfru19521_t",1.77924858658911,-0.372347390842838,1.38894057212962,-0.268080145626338,0.788637628155194,0.866330273399886 +"Tfru19522_t",5.33831491577803,1.11541888562655,1.19669520393739,0.932082690693984,0.351293792699936,0.497120144206423 +"Tfru19523_t",138.138328710922,2.2664830285354,0.557171336056357,4.06783852984524,4.74512428471635e-05,0.000254057132755866 +"Tfru19524_t",67.7523180078482,0.481546441681153,0.329614736306438,1.4609372356261,0.144032666770536,0.253835032862793 +"Tfru19525_t",0.552792481625589,-1.01067528614974,2.69796592512519,-0.374606393927247,0.70795321709804,NA +"Tfru19526_t",0,NA,NA,NA,NA,NA +"Tfru19527_t",0,NA,NA,NA,NA,NA +"Tfru19528_t",5.72989398862176,4.9425142696913,1.47551346458185,3.34969106574163,0.000809017374106312,0.00322339484288753 +"Tfru06778_t",0,NA,NA,NA,NA,NA +"Tfru06779_t",0,NA,NA,NA,NA,NA +"Tfru06780_t",0,NA,NA,NA,NA,NA +"Tfru06781_t",0,NA,NA,NA,NA,NA +"Tfru06782_t",256.944136098972,1.96469465763379,1.00981615265636,1.94559638649628,0.0517032414211783,0.111907015764601 +"Tfru06783_t",0,NA,NA,NA,NA,NA +"Tfru06784_t",61.7517609924702,0.241624110572273,0.280703118664768,0.860781710305237,0.389358280109999,0.535642876128705 +"Tfru06785_t",366.022091978464,-0.594477760551815,0.262640178550772,-2.26346846027937,0.0236068267225756,0.0584795019216402 +"Tfru06786_t",6.05227352206984,-2.0391039697173,0.908658376576376,-2.24408206899516,0.0248271214346574,0.0609110916145179 +"Tfru06787_t",1.05507642561678,-2.29037340821572,1.95969076732758,-1.16874225587085,0.242507491610777,0.377920594822728 +"Tfru06788_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203642,0.621278915456996,NA +"Tfru06789_t",0,NA,NA,NA,NA,NA +"Tfru06790_t",2.27552734784476,1.72367865498535,1.36258511192016,1.26500622963385,0.205869094726747,0.333286338251201 +"Tfru06791_t",0,NA,NA,NA,NA,NA +"Tfru06792_t",0,NA,NA,NA,NA,NA +"Tfru06793_t",0,NA,NA,NA,NA,NA +"Tfru06794_t",163.955117145411,-0.193612081648191,0.194725763438624,-0.994280768138908,0.320086195942735,0.464983062780632 +"Tfru06795_t",84.4266842155989,-0.00409889763603001,0.282092367079406,-0.0145303386917811,0.988406875040207,0.994450002850199 +"Tfru07591_t",159.295137536856,-0.887701581017743,0.294620114243923,-3.01303793631277,0.00258646582740084,0.00896609436450292 +"Tfru07592_t",9.21105528037464,-0.425958314186383,0.660006687741425,-0.645384845483965,0.518677821647329,0.654894761549632 +"Tfru07593_t",108.568670344116,-0.724199049463108,0.393668972943121,-1.83961424251676,0.065824891875619,0.13595063493691 +"Tfru07594_t",0,NA,NA,NA,NA,NA +"Tfru11973_t",32.1284263489623,0.216902298759515,0.389672305498376,0.556627442338006,0.577782000172737,0.70617449423111 +"Tfru11974_t",15.7919045579074,0.287472260948373,0.481972845089976,0.596449081886984,0.550875259847816,0.68243540962858 +"Tfru11975_t",3.49134615410557,-1.20018701555163,1.16175955439148,-1.0330769486809,0.301567889866463,0.444818526141419 +"Tfru11976_t",339.080978452783,-0.325676447196973,0.164749918108795,-1.97679277134394,0.0480650591303684,0.105492253600598 +"Tfru11977_t",3.81896472736127,-0.496925466214304,0.933125775096083,-0.532538570337033,0.594353035402602,0.720836547330177 +"Tfru11978_t",0,NA,NA,NA,NA,NA +"Tfru11979_t",2.328489222988,4.63989282010507,2.88505055321396,1.60825355900132,0.107779657335829,0.202290232403207 +"Tfru08309_t",1144.51912856051,-0.182561385416414,0.222035163834502,-0.822218347146533,0.410952638524683,0.556891438255775 +"Tfru08310_t",823.228290356045,-0.732008592875365,0.149595605833723,-4.89324929563106,9.91846384716007e-07,7.33829900840641e-06 +"Tfru13166_t",0,NA,NA,NA,NA,NA +"Tfru13167_t",27.1385231120384,-0.220246527964698,0.385816135564704,-0.570858778734931,0.568095375203163,0.697684517328814 +"Tfru22040_t",0,NA,NA,NA,NA,NA +"Tfru26746_t",38.8148814448311,-0.867193961344608,0.362422107461351,-2.39277335320138,0.0167215669139985,0.0439908920396352 +"Tfru26747_t",12.5088911867546,-1.13408927936841,0.545606048089662,-2.078586341444,0.0376553874516544,0.0858174716057053 +"Tfru26748_t",101.8112827533,-0.767790223887336,0.217564340478964,-3.52902604442005,0.000417092080103444,0.0017933757449981 +"Tfru00655_t",52.7103787878898,-0.305709465781792,0.409418939451574,-0.746691069522327,0.455250061681665,0.597986640476327 +"Tfru00656_t",0,NA,NA,NA,NA,NA +"Tfru00657_t",242.705058450702,0.0583496779328318,0.194767129845916,0.29958688603664,0.764492288404635,0.849731185224521 +"Tfru00658_t",0.656737956049442,2.79996060668216,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru00659_t",1.5077095344313,3.99326699152103,1.87815820650892,2.12616113897222,0.0334898446278662,0.0779838438010248 +"Tfru06428_t",290.666067090716,-0.472872319172966,0.182998066359764,-2.58402904784428,0.00976535693994975,0.0280310156715742 +"Tfru06429_t",1117.40233493837,-0.321121090261874,0.153452388500453,-2.09264315400947,0.0363810212651606,0.0834656336149969 +"Tfru06430_t",0,NA,NA,NA,NA,NA +"Tfru06431_t",59.4722999094474,-0.0933857756035922,0.276743650917271,-0.337445051743964,0.735781427706342,0.829519336661525 +"Tfru06432_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30704_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30705_t",0,NA,NA,NA,NA,NA +"Tfru30706_t",0,NA,NA,NA,NA,NA +"Tfru30707_t",21.8507974252359,0.142372053687043,0.5310843886937,0.268078024355475,0.788639260946196,0.866330273399886 +"Tfru30708_t",12.9413241347335,0.4063295814839,0.516139229377219,0.787248010530381,0.431136697279936,0.576015717576561 +"Tfru30709_t",22.5384501638246,0.64877223584966,0.43879752437861,1.47852300846136,0.139267843279664,0.246954625829878 +"Tfru30710_t",0.775414520144649,-0.651194111522314,2.13249453829636,-0.305367305673172,0.760086419618203,0.846555343901161 +"Tfru10928_t",0,NA,NA,NA,NA,NA +"Tfru10929_t",0,NA,NA,NA,NA,NA +"Tfru10930_t",60.0717963245166,0.591444140299133,0.312244597248414,1.89416933234747,0.0582025373408078,0.122953821567612 +"Tfru10931_t",51.7135341167744,0.862685739240321,0.287371348779439,3.00198938726645,0.00268221526399031,0.00926500657633944 +"Tfru10932_t",1.15656165884732,-0.457113657878896,1.93039374578366,-0.236798144874494,0.812813390808289,0.881430111175522 +"Tfru10933_t",35.9674698747912,0.586612401070333,0.377294945182793,1.55478468121572,0.119997358680937,0.219919114093456 +"Tfru10934_t",439.522366433827,-0.0640784898283109,0.165769033918354,-0.38655283386565,0.699087281594241,0.803408306566659 +"Tfru10935_t",561.58342993083,-0.579349297635273,0.161414745011314,-3.58919687042634,0.000331698281708614,0.00145900305515699 +"Tfru10936_t",31.7085522197307,-0.45996928882347,0.348993027684656,-1.31798990906801,0.187507025934165,0.310752905835798 +"Tfru10937_t",16.2932044611832,-1.05920952734476,0.475151622412171,-2.22920322142127,0.0258003863028581,0.0628510553453756 +"Tfru10938_t",18.9321854341608,2.03884229776693,0.499561976718747,4.08125996930065,4.4792220227448e-05,0.000241321590922072 +"Tfru25818_t",128.914496238932,1.7276575947687,0.316542073175354,5.45790825667472,4.81776463045686e-08,4.49818825321754e-07 +"Tfru25819_t",0,NA,NA,NA,NA,NA +"Tfru15372_t",0,NA,NA,NA,NA,NA +"Tfru15373_t",0,NA,NA,NA,NA,NA +"Tfru15374_t",0,NA,NA,NA,NA,NA +"Tfru08682_t",169.782407437861,-0.748760789638598,0.317307251214254,-2.35973425370294,0.0182880305042594,0.0474424623490583 +"Tfru08683_t",66.5239750559633,-0.62115172553512,0.250691930936793,-2.47774917690403,0.0132214053322171,0.0361244111018214 +"Tfru08684_t",152.362507459543,-1.40632445249567,0.244320818590145,-5.75605656779832,8.6101543751119e-09,9.04672558286405e-08 +"Tfru08685_t",229.116253299949,-1.94192512057831,0.423627736511207,-4.58403676910078,4.5608398246191e-06,2.98979482352008e-05 +"Tfru25347_t",111.008475329277,-0.682063656431748,0.245459871659324,-2.77871756316402,0.00545739534752238,0.0170915908029039 +"Tfru25348_t",5.51511556528252,1.7745512886861,0.960848415213623,1.84685873503946,0.0647676166660694,0.134262621432626 +"Tfru25349_t",87.4289324037835,0.372914525817275,0.269057761948226,1.38600173850043,0.165746372635778,0.282621243397236 +"Tfru25350_t",1254.86652270258,-0.736270327437256,0.37017905310006,-1.98895729315684,0.0467059170277441,0.103054167709841 +"Tfru25351_t",3.61746454966027,-0.703861537470518,1.09807926922319,-0.640993375613446,0.521526986889109,0.657194480100127 +"Tfru25352_t",0,NA,NA,NA,NA,NA +"Tfru29024_t",0,NA,NA,NA,NA,NA +"Tfru29025_t",352.290225418002,2.21153391298568,0.390097630300142,5.66918058764961,1.4348207223297e-08,1.45761633071896e-07 +"Tfru29026_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru29027_t",0,NA,NA,NA,NA,NA +"Tfru23006_t",5.2325633303502,-1.90114881425523,0.922429691714535,-2.06102300406391,0.0393008454942397,0.0889875477702434 +"Tfru23007_t",83.3681277537854,-1.26068774648883,0.281207553854903,-4.48312191193597,7.35588764034705e-06,4.61780548081254e-05 +"Tfru17221_t",111.287995720744,-0.165038650672701,0.313367688324951,-0.526661352850014,0.598428778093597,0.72393708398566 +"Tfru17222_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru19190_t",37.6716889291813,0.0534968517297097,0.354984023498556,0.150702139218745,0.88021068565729,0.92636327980297 +"Tfru19191_t",0.71390876257745,-1.62698517217104,2.520298957801,-0.645552452075213,0.518569238819387,NA +"Tfru19192_t",96.6138007593462,0.176349688479146,0.277906145040683,0.634565631693139,0.52571174911856,0.660867772020074 +"Tfru19193_t",154.868741032287,-0.518252367221555,0.197014793099574,-2.6305251451835,0.0085253062599904,0.0249865906485122 +"Tfru27083_t",3.0186280248715,3.94914684665816,1.53402962389349,2.57436152806157,0.0100425276397786,0.0287186006361161 +"Tfru27084_t",0,NA,NA,NA,NA,NA +"Tfru27085_t",1.84242580870614,-1.5235746527671,1.43674773622236,-1.06043295865775,0.288947674631869,0.430701213006986 +"Tfru27086_t",568.359500416945,-0.148646288094576,0.38469052665504,-0.386404857398191,0.69919685327512,0.80345171371417 +"Tfru07946_t",232.881644657546,0.782205068762996,0.246577711693185,3.17224563157715,0.0015126500703456,0.00559093452920471 +"Tfru21576_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru21577_t",21.9007022556473,0.237471683413189,0.414173474358344,0.573362849422191,0.56639903898021,0.69663720006469 +"Tfru21578_t",94.3715369600256,-0.374374994288874,0.233863125364788,-1.60082951814191,0.10941468379629,0.204552721022552 +"Tfru21579_t",4.82578338091983,3.10685744977064,1.23249934186689,2.52077818156449,0.0117095641253953,0.0326148158215738 +"Tfru21580_t",0,NA,NA,NA,NA,NA +"Tfru20977_t",17.0909967354186,1.89962577312348,0.688624020007204,2.75858192269216,0.00580527522023307,0.0180300873247274 +"Tfru20978_t",104.244131000133,-0.697544731755626,0.290238086806378,-2.40335353444142,0.0162454733010898,0.0428894293356599 +"Tfru26935_t",5496.44719272859,-2.75716270289967,0.203776007093114,-13.5303598408413,1.03515688738133e-41,1.62005672304855e-39 +"Tfru05713_t",0,NA,NA,NA,NA,NA +"Tfru11540_t",18.4862808628765,-0.998236411280218,0.450901939236766,-2.21386586398345,0.02683800759056,0.0649334713380252 +"Tfru11541_t",0,NA,NA,NA,NA,NA +"Tfru11542_t",28.6025552518402,0.68657346710606,0.382898475280444,1.79309532795396,0.0729576825752986,0.148005160989411 +"Tfru11543_t",0,NA,NA,NA,NA,NA +"Tfru11544_t",8.20156493768477,0.964622985243256,0.876114628505118,1.10102371751189,0.270886334838502,0.410643751179916 +"Tfru11545_t",3.25349789042206,5.12576297874854,2.093286296473,2.44866790910779,0.0143385581087414,0.0386809221882393 +"Tfru11546_t",2753.94696219103,0.615204355240136,0.205056129089038,3.00017540550083,0.00269824173108107,0.00931605213538943 +"Tfru11547_t",0,NA,NA,NA,NA,NA +"Tfru11548_t",0,NA,NA,NA,NA,NA +"Tfru27267_t",2.6349356013992,4.81773923038812,1.65104016433446,2.91800244140648,0.00352281591700463,0.011690483425647 +"Tfru27268_t",0,NA,NA,NA,NA,NA +"Tfru27269_t",255.575792642443,0.00753453655541521,0.19490914089786,0.0386566608456994,0.969164127196695,0.982435185993018 +"Tfru27270_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru27271_t",196.937960558932,-0.647110293761879,0.223443052735564,-2.89608598629249,0.0037784885216918,0.0124137658713245 +"Tfru03751_t",116.232991027006,0.0842570977075254,0.237898886362439,0.354171887879961,0.723210070122211,0.820762746923686 +"Tfru03752_t",21.5221842900345,0.00384038100710365,0.532332443255538,0.00721425315281813,0.994243908721412,0.997229358543683 +"Tfru01684_t",0,NA,NA,NA,NA,NA +"Tfru01685_t",213.711687226612,-1.06292103345032,0.62783592809781,-1.69299172901862,0.0904570415607759,0.175685896913145 +"Tfru01686_t",0,NA,NA,NA,NA,NA +"Tfru15693_t",1.85589157802871,0.773556097668161,1.36739124717596,0.565716724650511,0.571586364087572,0.701013964723798 +"Tfru02653_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru02654_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru14679_t",52.463075032594,7.2661952130685,1.07149479473759,6.78136305351629,1.19047292195985e-11,1.8374333788594e-10 +"Tfru14680_t",16.5159119923239,0.742392417164517,0.646545356869359,1.14824491317865,0.250867472960564,0.387147568946175 +"Tfru14681_t",22.8834009891959,0.880385158938907,0.574711517625218,1.53187317800202,0.125553733509936,0.227613815792011 +"Tfru14682_t",12.5970017115113,-0.299614273003288,0.573771911232013,-0.522183583995861,0.601542514673797,0.726520264466698 +"Tfru14683_t",533.714912195422,-0.0495042012656488,0.151219331132912,-0.327366884212296,0.743390410324148,0.834610654074313 +"Tfru14684_t",112.586857794434,-0.38463968607733,0.231950298106431,-1.65828493956424,0.0972599673729676,0.18618407918972 +"Tfru14685_t",217.460901765402,0.495942976637345,0.291051660259998,1.70396889746073,0.0883868980309984,0.17250359971516 +"Tfru14686_t",0,NA,NA,NA,NA,NA +"Tfru19241_t",1.45875904404585,0.92806378369053,1.56937330227312,0.591359482378282,0.554279582342156,0.685271077937104 +"Tfru19242_t",0,NA,NA,NA,NA,NA +"Tfru19243_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru19244_t",0,NA,NA,NA,NA,NA +"Tfru19245_t",4.23562883102003,-0.399886143394625,0.906248327385016,-0.441254489868686,0.659028769190578,0.773376532666621 +"Tfru19246_t",67.1473523978376,0.18075362919045,0.32520501250767,0.555814400881004,0.578337739791169,0.706564759546874 +"Tfru19247_t",35.8136598280944,-1.14438890369684,0.340033065953857,-3.36552241025917,0.000763988608991338,0.00306362033134315 +"Tfru19248_t",0,NA,NA,NA,NA,NA +"Tfru19249_t",179.367959702495,-0.711820534839327,0.24823244695176,-2.86755637137823,0.00413655105905093,0.0134440913014173 +"Tfru19250_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19251_t",0,NA,NA,NA,NA,NA +"Tfru05133_t",0,NA,NA,NA,NA,NA +"Tfru24057_t",555.17515403929,-0.835038121844192,0.149176797101154,-5.59764077303501,2.17288399394479e-08,2.1422530301535e-07 +"Tfru24058_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru24059_t",0,NA,NA,NA,NA,NA +"Tfru24060_t",1.42620667822285,1.64601565407259,1.65303815830914,0.995751759146484,0.319370774663115,0.464245124510296 +"Tfru24061_t",394.606600699802,0.193470553209857,0.214956509853889,0.900045099082427,0.368096250779363,0.514424509331968 +"Tfru24062_t",0,NA,NA,NA,NA,NA +"Tfru24063_t",0,NA,NA,NA,NA,NA +"Tfru24064_t",7.47388280229476,0.964037978550012,0.696764967877886,1.38359134427517,0.166483620190576,0.283468002119985 +"Tfru24065_t",4495.32040787672,-1.08165821782774,0.256430893382876,-4.21812755693488,2.46339456583991e-05,0.000139925813156084 +"Tfru18767_t",35.217658164462,-2.70210778514483,0.49357829228425,-5.47452719737661,4.38681266350901e-08,4.13209445696443e-07 +"Tfru18768_t",186.701275735014,-0.354993278782904,0.192055059339441,-1.84839326807571,0.0645454718783556,0.133904802626219 +"Tfru18769_t",0,NA,NA,NA,NA,NA +"Tfru24412_t",219.587134514207,0.255847311435462,0.17313512543948,1.47773197833789,0.13947953144735,0.247232053999026 +"Tfru24413_t",280.881823385036,-1.97169684468397,0.176717858692397,-11.1573151648244,6.59533361413812e-29,4.92011887614704e-27 +"Tfru24414_t",8.73991205561897,-2.5381021669351,0.779676057663953,-3.25532911006617,0.00113261034571562,0.00433889413507628 +"Tfru24415_t",7.7492123857241,0.00392244723722422,0.657114279398564,0.00596920103579899,0.995237294936835,0.997567313580377 +"Tfru24416_t",0.800874537176237,-1.92760000366825,2.99459407733538,-0.643693253204937,0.519774365791139,0.655682220039614 +"Tfru24417_t",0.783331094647095,0.516723664818941,2.13239389028815,0.242320927279114,0.808531499288465,0.879163101451552 +"Tfru24418_t",0,NA,NA,NA,NA,NA +"Tfru24419_t",12.1059445650981,2.33069860704064,0.671125753399547,3.47281950548706,0.000515021588728688,0.00215990564596899 +"Tfru24420_t",1.46178426079672,3.95587923340926,2.37090150272851,1.66851268551507,0.0952139958229599,0.183113278896437 +"Tfru24421_t",1.10232320755918,2.36064681865829,2.23213907114938,1.05757156853257,0.290250810226503,0.4322761118566 +"Tfru24422_t",205.919867067918,-0.576635720058166,0.236367448332266,-2.4395733174205,0.0147046184541255,0.0395017838198691 +"Tfru24423_t",81.7704160411622,-2.22359408161631,0.27391569207154,-8.11780466025864,4.74692025307421e-16,1.24398214594614e-14 +"Tfru24424_t",0,NA,NA,NA,NA,NA +"Tfru24425_t",85.5771401371308,-0.990314696390623,0.314957039693451,-3.144285002661,0.00166493202216616,0.0060874332063517 +"Tfru27626_t",0,NA,NA,NA,NA,NA +"Tfru27627_t",0,NA,NA,NA,NA,NA +"Tfru27628_t",0,NA,NA,NA,NA,NA +"Tfru27629_t",0.975913808219563,-0.112272267531157,1.8040473277627,-0.0622335488672528,0.950376846127029,0.971295726382451 +"Tfru27630_t",0,NA,NA,NA,NA,NA +"Tfru19575_t",2.81423628490713,-0.243502911071215,1.40166781545222,-0.17372369429247,0.8620826153148,0.914292907342679 +"Tfru19576_t",470.629360657512,1.11220615565799,0.247967846366918,4.48528376542922,7.28169601116535e-06,4.5763649741612e-05 +"Tfru19577_t",19.4634881639069,7.68572527160556,1.29685093072877,5.92645236973114,3.09549114826557e-09,3.45866659501664e-08 +"Tfru19578_t",0,NA,NA,NA,NA,NA +"Tfru19579_t",318.353518975673,-0.616148835498508,0.236121579568792,-2.60945584314541,0.00906863491672006,0.0263237418205182 +"Tfru19580_t",17.3470774450534,1.94598540976045,0.566892470798871,3.43272403497994,0.000597549971754005,0.0024651001599732 +"Tfru19581_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru19582_t",162.40041949509,-1.10747659525829,0.411286000708835,-2.69271648767427,0.00708725072101241,0.0213504739717671 +"Tfru19583_t",0,NA,NA,NA,NA,NA +"Tfru19584_t",529.246148219084,0.997237012650687,0.177297130532818,5.6246652704066,1.85868029539546e-08,1.85453700450068e-07 +"Tfru19585_t",83.1568703938388,1.46506836791425,0.295914791918902,4.9509805117,7.38404986286891e-07,5.57728774657463e-06 +"Tfru19586_t",1592.56240018467,-0.788507972659106,0.144032239698369,-5.47452413647384,4.38688848514186e-08,4.13209445696443e-07 +"Tfru19587_t",602.336120529939,-0.377387575241704,0.197829536330254,-1.90764019489839,0.0564377362802972,0.119995870981669 +"Tfru19588_t",0,NA,NA,NA,NA,NA +"Tfru19589_t",2.73878821431206,3.81805417789539,1.61865567514735,2.35878095416916,0.0183350748065577,0.0475376777584267 +"Tfru23506_t",0.877432485039527,1.93368371299172,2.91627085150733,0.663067256593213,0.507287480191882,0.64436652515434 +"Tfru30482_t",0,NA,NA,NA,NA,NA +"Tfru30483_t",336.717557750789,-0.0305640575959346,0.210288310308693,-0.145343588291085,0.884439601601583,0.928790002165746 +"Tfru30484_t",0,NA,NA,NA,NA,NA +"Tfru30485_t",0,NA,NA,NA,NA,NA +"Tfru30486_t",165.6646441077,-0.350924081287216,0.287519514652075,-1.22052265465134,0.222266806832916,0.353818275618511 +"Tfru30487_t",93.032351640468,-0.676834319031764,0.331349309908397,-2.04266101902816,0.0410860061580648,0.0924125445042703 +"Tfru30488_t",34.4706064693238,1.2151914301623,0.39154414335531,3.10358729860905,0.00191189820685355,0.00687251555884716 +"Tfru30489_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru30490_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru30491_t",29.9725540324062,1.0850208828749,0.464854127013271,2.33411046567717,0.019589938434186,0.0502202545426213 +"Tfru30492_t",0,NA,NA,NA,NA,NA +"Tfru30493_t",0,NA,NA,NA,NA,NA +"Tfru30494_t",0,NA,NA,NA,NA,NA +"Tfru30495_t",0,NA,NA,NA,NA,NA +"Tfru30496_t",0,NA,NA,NA,NA,NA +"Tfru30497_t",0,NA,NA,NA,NA,NA +"Tfru30498_t",0,NA,NA,NA,NA,NA +"Tfru30499_t",0,NA,NA,NA,NA,NA +"Tfru30500_t",0,NA,NA,NA,NA,NA +"Tfru30501_t",0,NA,NA,NA,NA,NA +"Tfru30502_t",0,NA,NA,NA,NA,NA +"Tfru30503_t",0,NA,NA,NA,NA,NA +"Tfru30504_t",0,NA,NA,NA,NA,NA +"Tfru30505_t",165.059384729125,-0.196804244319465,0.214898124188888,-0.915802522996807,0.359770479977648,0.505819850435601 +"Tfru30506_t",77.622187509613,-0.0379503373936078,0.267974791638154,-0.141619057380786,0.887380913041905,0.930801688876914 +"Tfru30507_t",0,NA,NA,NA,NA,NA +"Tfru30508_t",0,NA,NA,NA,NA,NA +"Tfru30509_t",6.0881018057642,6.00682223306506,1.43730373758173,4.17922953652899,2.92498350550957e-05,0.000163244715344898 +"Tfru30510_t",131.833916004021,-1.12007266885852,0.211230388393863,-5.30261141578749,1.14157749986823e-07,1.00111694541736e-06 +"Tfru30511_t",97.1516862661455,-0.470792281239898,0.255182964082432,-1.8449204982501,0.0650491043663352,0.13470888828709 +"Tfru30512_t",430.077740332638,-0.860983703374724,0.241303607582733,-3.56805151816692,0.000359645800946241,0.00156867531186452 +"Tfru30513_t",980.290856796286,0.0913898718334912,0.290156885394546,0.314967096883543,0.75278663619342,0.841148580458772 +"Tfru30514_t",203.674497946391,-0.889811163865696,0.212651940385277,-4.18435478300155,2.85977186814957e-05,0.00015993939675106 +"Tfru30515_t",339.68644339855,-1.58577047375035,0.31047901097303,-5.10749653827034,3.26455076154525e-07,2.65385564995941e-06 +"Tfru30516_t",331.447724562828,-0.648820028657084,0.188267562723615,-3.44626561937055,0.000568391379890113,0.00235610281199124 +"Tfru30517_t",654.731279849731,0.0463146174793125,0.232008272248505,0.199624854021173,0.841773988310216,0.900918670132648 +"Tfru30518_t",58.2665020113485,-0.337327644587095,0.292267787539852,-1.15417318968516,0.248429171888895,0.384524854199701 +"Tfru30519_t",112.629780700674,0.235318490029981,0.700225964786237,0.336060788750983,0.736825026559023,0.830182540596185 +"Tfru30520_t",0,NA,NA,NA,NA,NA +"Tfru30521_t",0.43991605430753,0.637895037967285,3.45149561225243,0.184816992292508,0.853372579534641,NA +"Tfru30522_t",0,NA,NA,NA,NA,NA +"Tfru30523_t",13.7183939932968,-0.383959646424487,0.53809230984573,-0.713557208306077,0.475501026066236,0.615839870564951 +"Tfru30524_t",28.9794514911134,-0.164560332976569,0.395140651353741,-0.416460145046555,0.677073325324159,0.786754985501282 +"Tfru30525_t",42.9998403834184,0.117744979326122,0.304128774565865,0.387155011866928,0.698641453365503,0.803035388121846 +"Tfru30526_t",22.3302470296387,1.49115727751146,0.637208659512027,2.34013969404211,0.0192765282259316,0.0495359629918876 +"Tfru30527_t",12.1924587616281,-1.194965438243,0.545799299784195,-2.18938616944997,0.0285687840398686,0.0683495696368309 +"Tfru30528_t",336.471577782067,-0.823294968291394,0.197807308334007,-4.16210591623452,3.15326022426828e-05,0.000175155035540144 +"Tfru30529_t",0,NA,NA,NA,NA,NA +"Tfru30530_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30531_t",89.9577891398675,-1.02488829867513,0.268126044554872,-3.82241232990475,0.00013215246976897,0.000643930388292958 +"Tfru30532_t",238.936137064274,2.62486170987541,0.320447335315921,8.19124211873264,2.58543886906219e-16,7.03063449448504e-15 +"Tfru30533_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru30534_t",43.4995631295576,-0.886568567267197,0.350503144349286,-2.52941687274482,0.0114252234814843,0.031950081408924 +"Tfru30535_t",75.8028446371143,-0.0698441759802962,0.360853294879536,-0.193552828729504,0.846526036816696,0.904308004962179 +"Tfru30536_t",7.61152424576214,1.48317839604836,0.835896960772261,1.7743555314259,0.0760043604778032,0.152993127135567 +"Tfru30537_t",0,NA,NA,NA,NA,NA +"Tfru30538_t",58.6890740691339,2.25219287954125,0.363236031881175,6.20035646760398,5.63354167886251e-10,6.9618256638842e-09 +"Tfru06277_t",7.10059285333024,2.10137194908932,0.800306626038243,2.62570854809955,0.0086468820964029,0.0252930625169908 +"Tfru06278_t",31.9229892970633,-0.800851777424839,0.415768331527452,-1.92619715523466,0.0540797609082438,0.11597403690365 +"Tfru06279_t",54.4180330029232,2.64168799655775,0.371456610464144,7.11170005362644,1.14622159919718e-12,1.99474645334625e-11 +"Tfru06280_t",196.562578786034,-0.909305703269616,0.208317053060084,-4.365008480642,1.27117826758754e-05,7.64962883264562e-05 +"Tfru06281_t",1460.94406610784,0.324967337861406,0.274525136487811,1.1837434707034,0.236514625420604,0.371128131184128 +"Tfru06282_t",264.866150725507,-0.398727049460666,0.301426907398585,-1.32279846182882,0.185902408902375,0.308825409088119 +"Tfru06283_t",0,NA,NA,NA,NA,NA +"Tfru06284_t",4.1847843078523,0.742688034552169,0.899293941474473,0.825856819778487,0.408885317686677,0.555068143262637 +"Tfru06285_t",2.20081186593414,0.773175443248666,1.33683962248968,0.578360657659694,0.563020649752795,0.693320245486275 +"Tfru26949_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru26950_t",0,NA,NA,NA,NA,NA +"Tfru26951_t",0,NA,NA,NA,NA,NA +"Tfru26952_t",0,NA,NA,NA,NA,NA +"Tfru26953_t",33.8262496960022,2.44692948369004,0.496985816516566,4.92353987250756,8.499254931384e-07,6.35315047977201e-06 +"Tfru26954_t",3.33832048257481,-0.364103834502882,1.17506524531947,-0.30985839803635,0.756668640315993,0.844179669505081 +"Tfru26955_t",0,NA,NA,NA,NA,NA +"Tfru26956_t",56.3587691020278,1.3071983003096,0.317399524278574,4.11846332561704,3.8140725400618e-05,0.000208854767424965 +"Tfru26957_t",66.4602462513465,1.13613814357753,0.451885125680932,2.51421894417417,0.0119296347097339,0.0331493946863477 +"Tfru26958_t",4.18528299496108,4.47662276637286,1.54629747753209,2.89505921817682,0.00379087010338046,0.0124453092142665 +"Tfru26959_t",0,NA,NA,NA,NA,NA +"Tfru26960_t",2.19822850310057,4.55263457524235,1.73598618262014,2.62250622776907,0.00872856725270315,0.0254853666165031 +"Tfru26961_t",17.6851646423971,2.01119355490287,0.789955078146206,2.54595939761859,0.0108977863130075,0.0307246734297189 +"Tfru26962_t",84.0334518736735,-0.235070825969259,0.255177120824003,-0.921206514166248,0.356942617924786,0.503014658343725 +"Tfru26963_t",87.6987246292683,-0.181889730937139,0.229081363311209,-0.793996195535297,0.427197646160611,0.572256139407103 +"Tfru26964_t",362.150224640567,-0.439664390026416,0.170063551766824,-2.58529464696377,0.00972958114682351,0.0279522498159063 +"Tfru26965_t",0.660756244491707,1.3633518892086,2.54015830105915,0.536719262197215,0.591461548590085,NA +"Tfru26966_t",0,NA,NA,NA,NA,NA +"Tfru26967_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru26968_t",55.3644908258866,5.73697324004799,0.751350650043177,7.63554705079221,2.24863566958844e-14,4.85288970929502e-13 +"Tfru26969_t",62.298583421701,0.563951159170638,0.333785471557391,1.68956173119018,0.0911118324800699,0.176509424475169 +"Tfru26970_t",6.41325981922332,5.09614648353508,1.3734696706694,3.71041792357258,0.0002069173750314,0.000962555924218223 +"Tfru26971_t",39.8560788734319,-0.227218263182534,0.389393008016689,-0.5835191143771,0.559543893366583,0.690292284523683 +"Tfru26972_t",5.04662018282806,-0.689518147226136,0.859905058356419,-0.801853809935771,0.422637527675894,0.567847023436783 +"Tfru26973_t",2.29031123719921,-1.8043081618072,1.40344022805247,-1.28563235237386,0.198571400264936,0.324571131896674 +"Tfru26974_t",3.40557530035132,2.05363375559501,1.15579986943832,1.77680739537806,0.0755999346989417,0.152316036960957 +"Tfru26975_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru26976_t",0,NA,NA,NA,NA,NA +"Tfru26977_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru26978_t",0,NA,NA,NA,NA,NA +"Tfru26979_t",2.22513297842172,3.47991087983901,1.7533246445182,1.98474988115806,0.0471723061181074,0.103888625361469 +"Tfru26980_t",7.64197111942176,6.35608368030487,1.39295839562098,4.56301042463752,5.04253098863496e-06,3.27581548695647e-05 +"Tfru26981_t",816.393937563422,-0.909367806293139,0.287417452269131,-3.16392689140403,0.00155655890410452,0.00573523020643054 +"Tfru26982_t",156.307583459378,0.359037616257133,0.219398442726452,1.63646383171819,0.101742549359521,0.193178777862567 +"Tfru26983_t",0,NA,NA,NA,NA,NA +"Tfru26984_t",0,NA,NA,NA,NA,NA +"Tfru26985_t",65.3441884548304,1.18021303630587,0.728285599428931,1.62053600569791,0.105117186352993,0.198290848835131 +"Tfru26986_t",24.7092397367742,-0.104880687417176,0.445170675969225,-0.235596576950693,0.813745729899218,0.88196181099058 +"Tfru26987_t",1.51016854277114,-0.962612439525767,1.87279751526389,-0.51399707212348,0.607254037694461,0.73108195390047 +"Tfru26988_t",36.3759091549322,0.665216136888008,0.504719881945986,1.31799075226285,0.187506743666031,0.310752905835798 +"Tfru26989_t",169.429721972331,-1.19301313426515,0.280660194703087,-4.25073863975351,2.13066683243869e-05,0.000122392971219347 +"Tfru26990_t",239.593041508309,-0.527234272237572,0.247981783624142,-2.12610081487551,0.0334948661033919,0.0779874223256253 +"Tfru26991_t",0,NA,NA,NA,NA,NA +"Tfru26992_t",11.4228077245208,4.01116509760441,0.910923398638268,4.40340549337152,1.06564717421425e-05,6.51083367701747e-05 +"Tfru26993_t",56.6289147886966,-0.621145918394171,0.315854068456715,-1.96655981488265,0.049233980106379,0.107498192661538 +"Tfru26994_t",31.873298677322,0.906023870409552,0.3577686297523,2.53242960691337,0.0113275111493285,0.0317145390380637 +"Tfru26995_t",11.5512741570092,0.406509553270625,0.562959699031199,0.722093524581226,0.470236979119149,0.611215216208999 +"Tfru26996_t",14.1972493425363,2.45946373990631,0.647627916413124,3.79764935632795,0.000146074761266835,0.000704862690200896 +"Tfru26997_t",27.8457678248721,1.58907648149354,0.386636210050697,4.11000428874774,3.956517689469e-05,0.000215967965586137 +"Tfru26998_t",1420.86741859726,0.719641177559871,0.199247298111807,3.61179892716059,0.000304080304565973,0.00135187072232548 +"Tfru26999_t",0,NA,NA,NA,NA,NA +"Tfru27000_t",169.464570854204,-0.770594848919938,0.248100997547034,-3.10597239244816,0.0018965442149562,0.00682609513199097 +"Tfru27001_t",44.3430000659861,0.702028691488731,0.42909850915992,1.63605483706562,0.101828111117943,0.193324832611094 +"Tfru27002_t",0,NA,NA,NA,NA,NA +"Tfru27003_t",160.736168943757,0.279028277509964,0.192421460302041,1.45008917961634,0.14703365209831,0.257824424818631 +"Tfru27004_t",0,NA,NA,NA,NA,NA +"Tfru27005_t",0,NA,NA,NA,NA,NA +"Tfru27006_t",0.662407153251654,2.80970655814638,2.95110964444903,0.952084773749894,0.341053990388873,NA +"Tfru27007_t",160.665855233704,3.42997231021794,0.362252433525994,9.4684589882039,2.84002404667266e-21,1.19025726899876e-19 +"Tfru27008_t",0,NA,NA,NA,NA,NA +"Tfru27009_t",3.21798717554893,2.37086301757508,1.33891044652163,1.77074054783452,0.0766038563762307,0.153922993867844 +"Tfru27010_t",100.32524609782,3.30907317137041,0.435898218824401,7.59138952275337,3.16492950628319e-14,6.72022033687076e-13 +"Tfru27011_t",0.468173530919239,2.32078854886818,3.30621704190527,0.701946823046676,0.482712326965295,NA +"Tfru27012_t",1.58973040068493,4.10072866362855,2.07605853410857,1.97524713116499,0.0482401097122404,0.105834100123511 +"Tfru27013_t",0,NA,NA,NA,NA,NA +"Tfru27765_t",0,NA,NA,NA,NA,NA +"Tfru27766_t",2.30573364068581,2.5441956040246,1.60264587567592,1.58749705261717,0.112400113977058,0.208961508776702 +"Tfru27767_t",1.92509010901243,0.757974417776766,1.45218171538592,0.521955627003149,0.601701226047355,0.726580702639476 +"Tfru27768_t",10.3617808798033,1.02799170346618,0.605463526924024,1.69785900843401,0.089534375542298,0.174332636561391 +"Tfru27769_t",0.759994100422013,1.74200446425315,2.4629861159977,0.707273359333375,0.479396617768862,0.618915275781202 +"Tfru09238_t",5.03915056526504,2.70494758294999,1.06450852003389,2.54102952869167,0.0110526584453294,0.031071284512809 +"Tfru09239_t",10.9463525089307,4.36305054544051,0.978131269263584,4.46059816564842,8.17312107687632e-06,5.09937133260363e-05 +"Tfru25056_t",1.88019796889715,1.52581278241402,1.70100495282852,0.89700666648667,0.369715359752236,0.516139339483191 +"Tfru25057_t",0,NA,NA,NA,NA,NA +"Tfru25058_t",0.547879817173648,2.56217437095786,3.9848133483012,0.642984789249956,0.520233969800582,NA +"Tfru25059_t",0.573677052592043,2.632416907965,3.1014208502152,0.848777716762412,0.396004991738982,NA +"Tfru25060_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25061_t",0,NA,NA,NA,NA,NA +"Tfru25062_t",0,NA,NA,NA,NA,NA +"Tfru25063_t",0,NA,NA,NA,NA,NA +"Tfru25064_t",30.2537132503883,-0.354942145786777,0.364496036596349,-0.973788766268116,0.330161432012511,0.475820261989825 +"Tfru25065_t",286.688116668879,-0.230838640248012,0.160544673575186,-1.43784676942213,0.150477535865004,0.262278280626749 +"Tfru25066_t",472.157098474747,-0.192073593515299,0.140635316584424,-1.36575646985511,0.172015413449192,0.291159049538112 +"Tfru25067_t",4.80891247726622,-5.73735809422333,1.44111448966575,-3.98119520368852,6.85696073854676e-05,0.000354900049326264 +"Tfru25068_t",71.4490945826676,-2.35937161961082,0.410517692356355,-5.74730800533376,9.06754675733662e-09,9.47836041238644e-08 +"Tfru25069_t",0.967866294142181,0.597618472831682,2.90590719765317,0.205656420588491,0.837059302147522,0.898268385617911 +"Tfru25070_t",11.8065529476762,3.15327652868777,0.736978184192823,4.27865654142992,1.88024732190296e-05,0.00010910016869118 +"Tfru25071_t",373.006068752288,-1.01066045637705,0.223076089654803,-4.53056379973749,5.88264860703558e-06,3.77664015563558e-05 +"Tfru25072_t",0,NA,NA,NA,NA,NA +"Tfru25073_t",0,NA,NA,NA,NA,NA +"Tfru25074_t",0,NA,NA,NA,NA,NA +"Tfru25075_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25076_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru25077_t",0,NA,NA,NA,NA,NA +"Tfru25078_t",1033.74080592575,2.87689462658379,0.288728613339388,9.96400943193714,2.19046478426971e-23,1.05424950262271e-21 +"Tfru25079_t",0.68484977146706,2.88159052822323,3.84337020507655,0.749756170877594,0.453401570332273,NA +"Tfru25080_t",186.446909550609,1.22311889526029,0.256602020655073,4.76659884492656,1.87361831103775e-06,1.31694653897691e-05 +"Tfru25081_t",1497.12415939091,2.56107666224108,0.909746182706144,2.81515516187478,0.00487536884618543,0.0155008885889516 +"Tfru25082_t",62.9332217011927,-0.422455960174713,0.292165845819594,-1.44594574013134,0.148192421273872,0.259429473412802 +"Tfru25083_t",27.8161885099062,0.484188128787284,0.464204638003242,1.04304888221281,0.29692565380148,0.439817071419493 +"Tfru25084_t",78.38548626132,1.0150020192347,0.415146915199023,2.44492246497388,0.0144883285456661,0.0390144137711476 +"Tfru25085_t",0,NA,NA,NA,NA,NA +"Tfru25086_t",5.93866573892082,1.13011060045761,0.766902347958915,1.47360430368399,0.140588161939531,0.248763683128297 +"Tfru25087_t",486.080599606057,-1.21149616185807,0.190894785877664,-6.34640781982627,2.20400504640739e-10,2.8896094281545e-09 +"Tfru25088_t",188.896854430343,0.998692111161793,0.190301360501687,5.24795045358039,1.53800645132657e-07,1.31930181604786e-06 +"Tfru25089_t",48.4655765832637,-0.77059750849068,0.406042871870394,-1.89782301790203,0.0577193999719874,0.122152262068376 +"Tfru25090_t",17.9227803644407,-0.3873054134401,0.503894025149859,-0.768624738753181,0.442116115066724,0.586066377728679 +"Tfru25091_t",80.0618211059327,0.662282610314564,0.245805343189513,2.69433772968862,0.00705286597625009,0.0212661466402414 +"Tfru25092_t",12.710401578869,1.32854247696875,0.672823927182443,1.97457674035499,0.0483162007862824,0.105956911078028 +"Tfru25093_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25094_t",0.623772860944186,-1.49167977608377,2.5754633409972,-0.579188898688112,0.562461720605794,NA +"Tfru25095_t",121.959246751816,-0.716718339892521,0.218302466942276,-3.28314356649958,0.00102656370874742,0.00398102509127833 +"Tfru25096_t",0,NA,NA,NA,NA,NA +"Tfru15219_t",92.9343053501159,-0.236771067480861,0.221432759394842,-1.06926846835101,0.284948714516209,0.426422750309111 +"Tfru15220_t",60.8162716938984,-0.359026291451217,0.263629001973317,-1.36186189214325,0.173241474588498,0.292747221480715 +"Tfru15221_t",0,NA,NA,NA,NA,NA +"Tfru15222_t",0,NA,NA,NA,NA,NA +"Tfru15223_t",141.292166339553,-0.53876851725562,0.225338439966797,-2.39093035939633,0.0168057402553913,0.0441602051092707 +"Tfru15224_t",31.6199375399481,0.966759544654458,0.371932864817917,2.59928507562176,0.0093418156990983,0.0269802342683985 +"Tfru15225_t",19.8828029568136,-0.829183071482176,0.450052452668405,-1.84241429319153,0.0654145726504132,0.135277964878603 +"Tfru15226_t",148.561281221056,-0.649156663929983,0.205691334281152,-3.15597478230499,0.00159962689903268,0.00587264599743296 +"Tfru15227_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15228_t",0,NA,NA,NA,NA,NA +"Tfru15229_t",2732.41645804315,2.33848908064478,0.282738187976213,8.27086393027857,1.32991764070703e-16,3.71116668316999e-15 +"Tfru15230_t",215.268885582884,2.27006442349744,0.338452958906712,6.7071785421239,1.98423433182898e-11,2.97037888604232e-10 +"Tfru15231_t",1.79864921669007,0.649312400616044,1.84361534222261,0.352195160099532,0.724691906397852,0.821902643550597 +"Tfru15232_t",0,NA,NA,NA,NA,NA +"Tfru15233_t",0,NA,NA,NA,NA,NA +"Tfru15234_t",102.722974859626,0.725360184835201,0.697946274101909,1.03927796701625,0.298675478811158,0.441736532896756 +"Tfru15235_t",53.7171016720581,3.41075726864861,0.494447032146143,6.89812466634545,5.26934964132578e-12,8.48403201243676e-11 +"Tfru15236_t",7.42148163639007,3.78638436711012,1.0446524316821,3.62453984911831,0.000289476386397227,0.00129414333351377 +"Tfru15237_t",0,NA,NA,NA,NA,NA +"Tfru15238_t",55.5661149535893,1.37683022355316,0.347812493607318,3.9585415960003,7.54088094482423e-05,0.000386543553699419 +"Tfru15239_t",7.26852193470482,2.33741869738335,0.971402357963352,2.40623123695519,0.0161180589216684,0.0426184024890051 +"Tfru15240_t",183.820914248552,1.24291830328575,0.365900758141504,3.39687271925543,0.000681606628124038,0.00277049697374064 +"Tfru15241_t",471.464245895478,0.276356509530639,0.145831777717146,1.89503627986115,0.0580875953849712,0.122772553415458 +"Tfru15242_t",26.3137260607327,0.725867444496394,0.444640027441642,1.63248335664441,0.102577701775439,0.194459016029043 +"Tfru15243_t",111.789643572038,-0.194393037041406,0.26035475306439,-0.746646776190523,0.455276805023774,0.597986671543639 +"Tfru15244_t",53.8149801345833,-0.0248571729281156,0.30202189964262,-0.0823025514293132,0.934406125558751,0.960842029044934 +"Tfru15245_t",72.1924723934235,-0.861726555198475,0.291832462965307,-2.95281253648919,0.00314893127736662,0.0106374463377306 +"Tfru15246_t",0,NA,NA,NA,NA,NA +"Tfru15247_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15248_t",125.675742533774,1.14553749687763,0.305751136405487,3.74663365227339,0.000179223532419997,0.000847817090585403 +"Tfru15249_t",9.69675293088662,0.591527698067184,0.634139076015552,0.932804364909816,0.350920987142233,0.496759002085596 +"Tfru15250_t",865.929011251796,-0.0793394326449904,0.172297837931537,-0.460478399482389,0.645172872435482,0.762433672251879 +"Tfru15251_t",3.6613623769119,-0.695126750557367,1.13378156011629,-0.613104653497867,0.539807143452796,0.672917276804633 +"Tfru15252_t",1.4357580353541,-2.90563611080746,1.84990939159532,-1.57069104249572,0.116254430849741,0.214720983941339 +"Tfru15253_t",51.2590649552103,-0.231017446272766,0.413723653505762,-0.558385879838385,0.576580912727451,0.705294998811721 +"Tfru15254_t",206.734647474165,-0.483571132816684,0.193767218546229,-2.49562922172676,0.0125733949856813,0.0346201500713027 +"Tfru15255_t",4.62865803298431,0.105810736161128,0.885684966978431,0.119467688970841,0.904904837137302,0.94159244258568 +"Tfru15256_t",0,NA,NA,NA,NA,NA +"Tfru15257_t",0,NA,NA,NA,NA,NA +"Tfru15258_t",0,NA,NA,NA,NA,NA +"Tfru15259_t",4.09529965820638,4.40711749132643,1.48084437653728,2.97608415924958,0.00291954729907427,0.00997092454651032 +"Tfru15260_t",405.92658769407,-0.400326612923449,0.180001651837505,-2.22401632894369,0.02614734563806,0.0635924359247753 +"Tfru15261_t",183.843159797212,0.860004788933337,0.209220745330919,4.11051393385053,3.94779455499854e-05,0.0002155969793579 +"Tfru15262_t",0,NA,NA,NA,NA,NA +"Tfru15263_t",5.91360513406432,3.01112894352159,1.26252617613359,2.38500317889882,0.0170789737715803,0.0447657694401392 +"Tfru15264_t",12.467790345436,6.07857108923939,1.37907918047839,4.40770274490749,1.04472791205379e-05,6.39524361919144e-05 +"Tfru15265_t",124.493113910953,3.05632295376217,0.730499842113773,4.18387900662429,2.86576677255402e-05,0.000160219486309665 +"Tfru15266_t",53.928853479306,6.72765606676756,0.937948247716402,7.17273696405661,7.35130161075641e-13,1.31617704038983e-11 +"Tfru15267_t",28.4404936649124,0.143342778979284,0.420644854661182,0.340769124811339,0.733277395563493,0.827738732609249 +"Tfru15268_t",410.607510856151,0.782183979769799,0.205268476521587,3.8105411655235,0.000138662919223484,0.000673161850807283 +"Tfru15269_t",498.470380827589,-1.07181774553428,0.296249544996755,-3.61795575262746,0.000296939144816809,0.00132354074108747 +"Tfru15270_t",26.1709582111702,2.81249623170153,0.898456410986909,3.1303646980627,0.0017458940497409,0.00635438426300232 +"Tfru15271_t",169.677132974294,0.796011639612628,0.195567980223923,4.07025546155974,4.69616127930101e-05,0.000251736741151513 +"Tfru15272_t",0.325534379423615,1.7930591610128,4.03874525235237,0.443964411958994,0.657068313926604,NA +"Tfru24971_t",427.576475083453,0.296747183901174,0.19854002420967,1.49464665919347,0.135006682090017,0.241156480579024 +"Tfru24972_t",103.957475083749,2.71680281876041,0.265814705449689,10.2206641057134,1.60239283640003e-24,8.55884288272854e-23 +"Tfru24973_t",231.507757448688,0.47353588105087,0.298317558164435,1.58735504528987,0.112432254787475,0.208989523433862 +"Tfru24974_t",17.5932568295789,0.611255043468194,0.534045216525661,1.144575448957,0.252385067186348,0.388926379097326 +"Tfru24975_t",0,NA,NA,NA,NA,NA +"Tfru24976_t",0,NA,NA,NA,NA,NA +"Tfru24977_t",0,NA,NA,NA,NA,NA +"Tfru24978_t",0,NA,NA,NA,NA,NA +"Tfru24979_t",0,NA,NA,NA,NA,NA +"Tfru24980_t",0,NA,NA,NA,NA,NA +"Tfru24981_t",0,NA,NA,NA,NA,NA +"Tfru24982_t",428.600361731508,-0.36902105489979,0.188166518307088,-1.9611408991346,0.0498625888652387,0.108584678291723 +"Tfru24983_t",308.897170293692,-0.432150516312348,0.254624852275693,-1.69720477969857,0.0896579518021178,0.174499926630145 +"Tfru24984_t",0.468173530919239,2.32078854886818,3.30621704190527,0.701946823046676,0.482712326965295,NA +"Tfru24985_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru24986_t",0,NA,NA,NA,NA,NA +"Tfru24987_t",2.78600446710743,0.80511488176097,1.24477589686981,0.64679504462254,0.517764599929066,0.654110739283799 +"Tfru24988_t",750.493453510987,0.0644645184288204,0.192186203253118,0.335427399769784,0.737302701911004,0.830481376454188 +"Tfru24989_t",271.28880844491,0.161175193726551,0.19579232512656,0.823194645767485,0.410397313180032,0.556344887867154 +"Tfru24990_t",183.03789901263,-0.0198099860940378,0.184522247443727,-0.107358252831162,0.914504772447926,0.948450660706455 +"Tfru24991_t",0,NA,NA,NA,NA,NA +"Tfru24992_t",0,NA,NA,NA,NA,NA +"Tfru24993_t",1058.49340119596,0.892717710331907,0.141779047799708,6.29654186698341,3.04359102757422e-10,3.91841378527863e-09 +"Tfru24994_t",0,NA,NA,NA,NA,NA +"Tfru24995_t",69.2413744585793,2.10574432833276,0.429995076606135,4.89713590432938,9.72435861743661e-07,7.20862805209998e-06 +"Tfru24996_t",0.800125822360652,0.492497128579756,2.43570271381356,0.202199195241137,0.839761002241406,0.899785829868517 +"Tfru24997_t",199.15847586253,0.520719591597382,0.221240921674829,2.35363145143065,0.018591033294484,0.0480947087192869 +"Tfru24998_t",160.689362877209,0.642481599925353,0.194343889209041,3.30590070282213,0.000946716311584871,0.00370864888032022 +"Tfru24999_t",966.332807089076,0.206525850530675,0.145846768481189,1.41604680502271,0.15676180114388,0.271041027121827 +"Tfru11354_t",18.5458178276764,-0.48444952612774,0.455499364873706,-1.06355697392039,0.287529442437208,0.429208719882278 +"Tfru11355_t",0,NA,NA,NA,NA,NA +"Tfru11356_t",0,NA,NA,NA,NA,NA +"Tfru11357_t",0.386816335904883,-0.0642980542470359,3.57112922694147,-0.0180049643014752,0.985634893113946,NA +"Tfru11358_t",0,NA,NA,NA,NA,NA +"Tfru11359_t",9.47203888060079,0.0425181445237298,0.607224602528732,0.0700204575813741,0.944177376804171,0.96681413309285 +"Tfru11360_t",55.0243460982018,0.802021059205449,0.282851699861013,2.8354825500414,0.00457565146609313,0.0146751332489487 +"Tfru11361_t",102.740906463299,-0.279141928556436,0.245728887461938,-1.13597522635459,0.255966932624059,0.393146657890772 +"Tfru11362_t",9.24405261937311,0.0259268714083052,0.616685686392651,0.0420422785551687,0.96646499448173,0.980751182393267 +"Tfru11363_t",4.49093936387531,0.448381302024019,0.877767072697693,0.510820371338358,0.609476843240524,0.733150071335945 +"Tfru11364_t",507.094469087518,-0.903379151894281,0.170328884043574,-5.30373434292669,1.13457390743345e-07,9.96537050563607e-07 +"Tfru11365_t",0,NA,NA,NA,NA,NA +"Tfru11366_t",50.0558250157526,-0.68333238809956,0.479843239691661,-1.4240742216951,0.154424987729257,0.267743354925688 +"Tfru20774_t",27.047785303721,0.18054585863605,0.411966979277511,0.438253228335638,0.661202726882595,0.774668465481754 +"Tfru20775_t",132.065138341457,0.156938977097374,0.33790296234668,0.464449840887628,0.642325488365297,0.760514465644659 +"Tfru20776_t",0.850971578381857,3.16307563855707,2.2516864189552,1.40475850097491,0.160093103173439,0.274866409591222 +"Tfru20777_t",0.385165427144936,-2.07679782548222,4.02498416437306,-0.515976645042454,0.605870721136016,NA +"Tfru08647_t",42.3843867175236,-0.0597186901215355,0.337451339600424,-0.176969782346244,0.859532125109494,0.912825975328311 +"Tfru08648_t",4.42654913083083,3.63440617285155,1.33066211081039,2.73127651514639,0.00630895135312481,0.0193735361255397 +"Tfru08649_t",0,NA,NA,NA,NA,NA +"Tfru08650_t",0,NA,NA,NA,NA,NA +"Tfru08651_t",55.5590872444306,0.681447027970521,0.344302885258443,1.97920800884084,0.0477925915904867,0.104975777779477 +"Tfru09990_t",15.6183195716163,2.30390393399227,0.830564601546902,2.77390094605684,0.00553885401211015,0.0173224640568789 +"Tfru09991_t",0,NA,NA,NA,NA,NA +"Tfru09992_t",0,NA,NA,NA,NA,NA +"Tfru09993_t",0,NA,NA,NA,NA,NA +"Tfru09994_t",0,NA,NA,NA,NA,NA +"Tfru09995_t",767.899958085831,1.40869850133495,0.178898755740981,7.87427780310858,3.42716686486935e-15,8.09071671263459e-14 +"Tfru09996_t",286.144569223109,0.95025652074097,1.06922076603149,0.888737434709514,0.374144207429508,0.520212932546744 +"Tfru09997_t",0,NA,NA,NA,NA,NA +"Tfru09998_t",220.416370178197,-1.02067666809871,0.284265681193482,-3.59057295911848,0.000329951852576195,0.00145217747505511 +"Tfru09999_t",482.147467812896,0.472504758848922,0.181498798257126,2.60334924190261,0.0092317859209055,0.026734907985231 +"Tfru10000_t",0.468173530919239,2.32078854886818,3.30621704190527,0.701946823046676,0.482712326965295,NA +"Tfru10001_t",20643.4263370969,1.02025376208701,0.380323518980342,2.68259445227668,0.00730535194849581,0.0219248728184707 +"Tfru10002_t",1176.18224510994,-0.712253755748694,0.412954996368856,-1.72477330946857,0.0845683335728045,0.166590907962271 +"Tfru10003_t",194.783359178242,0.65738157190947,0.323974711716161,2.02911384171679,0.0424466963836858,0.0950812796583813 +"Tfru10004_t",201.959727011424,0.470014464737291,0.334205383580645,1.40636413364022,0.159616024893798,0.274595021686771 +"Tfru10005_t",2.66078440364722,-0.445555826629388,1.17521877123708,-0.379125859400951,0.704594404200407,0.807766448681575 +"Tfru10006_t",0,NA,NA,NA,NA,NA +"Tfru10007_t",0,NA,NA,NA,NA,NA +"Tfru10008_t",853.776378169307,0.137018416277162,0.158590501594848,0.86397618331017,0.387600974126819,0.533980289378776 +"Tfru10009_t",226.405298376296,0.509645833512836,0.190736375845952,2.67199075819942,0.00754027250824788,0.0225362311344268 +"Tfru10010_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru10011_t",89.1045889977959,-0.293680535076983,0.253228806024611,-1.15974378937142,0.246153135911123,0.381979419060528 +"Tfru10012_t",223.69331166438,2.12136111344032,0.264853933814213,8.00955108685827,1.15127907633058e-15,2.85333618253361e-14 +"Tfru10013_t",98.7052857161812,-0.322293304107599,0.247202763214303,-1.30376092854674,0.192315108128506,0.31675096555166 +"Tfru10014_t",60.7809613989914,1.76946226434747,0.342692073857068,5.16341753817593,2.42481428917479e-07,2.00915748951247e-06 +"Tfru10015_t",33.7514289381686,-0.643712727331467,0.390944932359462,-1.64655600840374,0.099649338951111,0.189927401739218 +"Tfru10016_t",16.2779318580771,-0.337361847911895,0.479322604500971,-0.703830457282788,0.481538363774278,0.620787051876692 +"Tfru10017_t",311.690449153293,-0.465281309370012,0.184431011447028,-2.52279324241331,0.0116426832781159,0.0324689410298111 +"Tfru10018_t",15.5467772536229,7.35960306064123,1.37499517054015,5.35245738917767,8.67677395122194e-08,7.7767801773467e-07 +"Tfru24871_t",346.159471725719,-0.516585533620595,0.165132223160646,-3.12831453324553,0.0017581192869615,0.00639575904457061 +"Tfru24872_t",72.4101817956719,-0.1391719083051,0.263911032130856,-0.527344034015576,0.597954700669768,0.723504626949545 +"Tfru24873_t",33.5049208019525,6.61002270984771,1.0795156224358,6.12313761141591,9.17503869411531e-10,1.10218661285186e-08 +"Tfru24874_t",0,NA,NA,NA,NA,NA +"Tfru24875_t",62.1808150129267,-0.552338730250277,0.299194627579319,-1.84608505413035,0.0648798566177349,0.134408145062011 +"Tfru24876_t",249.681729574297,-0.237552600746208,0.180656585973109,-1.31494016377331,0.188530013070657,0.312072785260688 +"Tfru24877_t",6.61337203682799,5.1405889000197,1.36422919742774,3.76812701979426,0.000164477009609062,0.000783690754747881 +"Tfru24878_t",264.907474684237,0.784357117088712,0.202579459657242,3.87184919150155,0.000108012777084331,0.000535043371214549 +"Tfru24879_t",54.7560423920135,0.701168983059433,0.283673185756375,2.47174924619634,0.0134453788236686,0.0366424230484296 +"Tfru24880_t",133.437197716616,1.62319977703949,0.22346539590087,7.2637634587484,3.76466111220621e-13,7.03281433148372e-12 +"Tfru24881_t",128.05696935048,-0.361539292213587,0.231184833301444,-1.56385385256728,0.117851893999655,0.216794787745543 +"Tfru24882_t",117.24093923079,1.58090175223008,0.234548441202618,6.74019296024398,1.58176424260165e-11,2.41425247061486e-10 +"Tfru24883_t",13.0433091047744,-1.22118100845532,0.549429549183272,-2.22263438555609,0.0262404636075478,0.063770395866752 +"Tfru24884_t",41.8444026416757,-0.762431444101418,0.351797574904177,-2.16724474098234,0.0302161975317754,0.0715851310455023 +"Tfru24885_t",1.12245124577537,2.39073712502676,1.92191501186665,1.2439348827942,0.213523529739103,0.343220325760333 +"Tfru24886_t",55.804904363907,-0.147636303529743,0.289055199086475,-0.510754707046716,0.609522828089109,0.733150071335945 +"Tfru24887_t",36.6182352797796,0.0468582513789555,0.368869781742562,0.127031960052663,0.898915102989712,0.937714179402897 +"Tfru24888_t",9.1080683595127,0.878071868288612,0.779216576756664,1.12686497500273,0.259799573907197,0.397678842763488 +"Tfru24889_t",1.09986296636587,1.2107652049123,1.94400020800908,0.622821540822925,0.533401801297004,0.667656389018981 +"Tfru24890_t",1192.427495301,1.45441284418106,0.167970274467639,8.65875137009003,4.76959868024892e-18,1.50131671538637e-16 +"Tfru24891_t",0,NA,NA,NA,NA,NA +"Tfru24892_t",4542.883363283,-2.33042494872678,0.239048278163091,-9.74876274631372,1.86730107179223e-22,8.51124195248679e-21 +"Tfru24893_t",92.1615964117112,-0.582848057683241,0.312711307971049,-1.8638534738795,0.062342283950263,0.130199730758388 +"Tfru24894_t",724.712022415123,0.0631560475784092,0.153712814802152,0.410870412201476,0.681167559074039,0.78962653952538 +"Tfru24895_t",86.5886073152225,0.316689498981373,0.292092502333601,1.08420961322615,0.278271870274785,0.419011734895523 +"Tfru24896_t",420.33518313265,1.65086306996574,0.376676053970779,4.38271308346508,1.17210432408882e-05,7.08964723597507e-05 +"Tfru24897_t",262.010966221117,-0.00252391730660077,0.194130366614826,-0.0130011463461998,0.989626878286244,0.995170759669106 +"Tfru24898_t",0,NA,NA,NA,NA,NA +"Tfru24899_t",248.493950825818,0.0652457101161586,0.238038697498233,0.274097072458746,0.784010023557173,0.862939277391902 +"Tfru24900_t",0,NA,NA,NA,NA,NA +"Tfru24901_t",60.9512582720379,-0.909122121555404,0.361912218399379,-2.51199621161219,0.0120050377423304,0.033324943565809 +"Tfru24902_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru24903_t",0.49471948115322,-0.930141747203738,3.35262236899834,-0.277437076064619,0.781444515928767,NA +"Tfru24904_t",0.879083393799475,3.23965091592716,2.79077656987407,1.16084209352286,0.245706121247573,0.381365073411518 +"Tfru24905_t",14.3999460947995,2.20655877099617,0.664535732036199,3.3204516546237,0.000898719232589854,0.00354357583251602 +"Tfru25658_t",1384.24119202285,-0.0437242467850527,0.154213110246851,-0.283531320489307,0.776769575978959,0.858092853073158 +"Tfru25659_t",1.93314544102449,3.30416862765941,1.75929759011225,1.87811808884964,0.0603650122926004,0.126848065950657 +"Tfru25660_t",105.52214424297,-1.8739428891946,1.19380527591406,-1.56972240532258,0.116479706380504,0.215012852919472 +"Tfru25661_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru25662_t",45.5641241025309,-1.58397128428584,0.722518591524275,-2.19229138580945,0.0283584733624605,0.0679602155470829 +"Tfru25663_t",0,NA,NA,NA,NA,NA +"Tfru25664_t",4.08461021342207,2.00638983757087,1.23484946883559,1.62480519950567,0.104204072815066,0.196933554264582 +"Tfru25665_t",0,NA,NA,NA,NA,NA +"Tfru25666_t",373.376437679984,0.974794368766141,0.269350656708364,3.61905324708967,0.000295682799523065,0.00131925459595817 +"Tfru25667_t",0,NA,NA,NA,NA,NA +"Tfru25668_t",0,NA,NA,NA,NA,NA +"Tfru02869_t",30.4298026375974,2.10641993551019,0.402674902385909,5.23106834577804,1.68533179737764e-07,1.43413405419435e-06 +"Tfru02870_t",25.1715465074622,4.08494147916915,1.23918333179402,3.29647871655535,NA,NA +"Tfru02871_t",16.7924279391957,1.90894663778695,0.529662569686836,3.60408068653146,0.000313259736939975,0.00138771831209751 +"Tfru04036_t",11.1000589416676,2.30796509106069,0.759812498803571,3.03754557169683,0.00238513337128912,0.00834312048287753 +"Tfru04037_t",250.098245196246,0.169768079683172,0.23967427760442,0.708328325342335,0.478741390969413,0.618354725566772 +"Tfru04038_t",19.8719293916047,2.1059501621369,0.675782080825899,3.11631548377717,0.00183126242670598,0.00662844138924145 +"Tfru04039_t",0,NA,NA,NA,NA,NA +"Tfru04040_t",81.4689640538381,0.653095885254135,0.234925299652049,2.78001512064236,0.00543563674056946,0.0170401387104559 +"Tfru04041_t",745.262093913699,-0.76958137369435,0.253599361981371,-3.034634502554,0.00240827344455601,0.00842011555837578 +"Tfru04042_t",10.0666306009991,1.14855915636291,0.665744873813172,1.72522418352894,0.084487079058399,0.166460148721452 +"Tfru04043_t",5.18869774704208,2.36012522909122,0.966129885200599,2.44286535924845,0.0145711722774423,0.0392091902812503 +"Tfru04044_t",0,NA,NA,NA,NA,NA +"Tfru04045_t",21.0937118499618,4.29312441994314,0.808816732109724,5.30790752652324,1.1089087250583e-07,9.75142525218259e-07 +"Tfru04046_t",99.3426002040044,0.427200505479019,0.301697712793314,1.41598854536787,0.156778858225235,0.271047574127521 +"Tfru04047_t",143.501730139181,-0.544312773076512,0.243279227318983,-2.23739930069254,0.0252602542086391,0.0617840971791631 +"Tfru04048_t",1682.62279095206,0.762670729740447,0.36555991727611,2.08630840991354,0.036950695369323,0.0845731808514469 +"Tfru04049_t",271.198865371257,0.116547890650581,0.234503841736152,0.496997788128831,0.619190611104876,0.741160928305457 +"Tfru04050_t",4.05751154354274,-0.917697078082061,1.02602278509465,-0.894421733526513,0.371096288394066,0.517196097537626 +"Tfru04051_t",0,NA,NA,NA,NA,NA +"Tfru04052_t",0,NA,NA,NA,NA,NA +"Tfru04053_t",0,NA,NA,NA,NA,NA +"Tfru04054_t",0,NA,NA,NA,NA,NA +"Tfru04055_t",0,NA,NA,NA,NA,NA +"Tfru04056_t",0,NA,NA,NA,NA,NA +"Tfru04057_t",821.934627097611,2.37442745976568,0.191117771920981,12.4238967203291,1.93882738280217e-35,2.12700768760356e-33 +"Tfru04058_t",0,NA,NA,NA,NA,NA +"Tfru15598_t",48.372372559291,2.95686001400158,0.466739171227464,6.3351443295951,2.37119201157131e-10,3.08710164159196e-09 +"Tfru23021_t",1548.07289273767,-0.0217174631893499,0.506284513483412,-0.0428957683100482,0.965784622046851,0.980613775276199 +"Tfru23022_t",414.551921717992,-0.470022204596419,0.170823156523581,-2.75151340229177,0.00593205924092177,0.0183750153372774 +"Tfru23023_t",8.25646978344352,-0.393121159691748,0.667914052685722,-0.588580458984183,0.556142745607154,0.687156994793138 +"Tfru23024_t",32.4980219503886,3.16970885595531,0.475420193986095,6.66717336800384,2.60776984262352e-11,3.84970466600006e-10 +"Tfru23025_t",0.309701230418723,-1.80295482361496,4.04923350568494,-0.445258299153085,0.656133100041007,NA +"Tfru23026_t",0,NA,NA,NA,NA,NA +"Tfru23027_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru23028_t",888.541907240775,-0.119929768731029,0.214464277589791,-0.559206270055011,0.576020954491448,0.704830451695933 +"Tfru23029_t",268.863483500208,-0.554424927793328,0.173987529572685,-3.18657853901945,0.00143966394198346,0.00535477464211234 +"Tfru23030_t",651.109838728324,0.0245010894410201,0.15111616643008,0.162134138390525,0.871200223300499,0.920464134913848 +"Tfru23031_t",500.581032109301,-0.0853144441132603,0.14381778319117,-0.593212064740672,0.553039239442876,0.684304648572541 +"Tfru23032_t",201.758503246612,-0.299349233882572,0.177023348072984,-1.69101554761666,0.090833833244307,0.176157815251958 +"Tfru23033_t",0,NA,NA,NA,NA,NA +"Tfru23034_t",0,NA,NA,NA,NA,NA +"Tfru23035_t",346.178571006303,0.2644761047673,0.235722155713791,1.12198237779745,0.261869932655002,0.400262880263553 +"Tfru23036_t",295.085429246789,-0.29020442311757,0.160633791804849,-1.80662125855893,0.070821352562857,0.144503638655479 +"Tfru23037_t",45.7529348688566,1.87449839342748,0.581393870455976,3.22414543510297,0.00126349213573228,0.00477651249960953 +"Tfru23038_t",29.573896309095,-0.528188202809844,0.385469448517191,-1.37024660408667,0.170609934865423,0.289108074679198 +"Tfru23039_t",665.601812963208,-0.0836878842281342,0.145023938985783,-0.577062551282231,0.56389720093843,0.694208666978495 +"Tfru23040_t",1.66897806165846,1.22143650950254,1.4909082731217,0.819256644773372,0.412640002846269,0.558277465573533 +"Tfru23041_t",3.48434131459742,3.21380966159152,1.3972348453052,2.30012132347695,0.0214413475328585,0.054050164202002 +"Tfru23042_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru23043_t",113.477164325849,0.24280517132475,0.26549689125342,0.914531127571619,0.360437829422206,0.506557773863835 +"Tfru23044_t",5.46017741443559,2.13793584465652,0.929906383682415,2.29908717928178,0.0214999893755597,0.0541796827187284 +"Tfru23045_t",0,NA,NA,NA,NA,NA +"Tfru23046_t",36.0319837624864,5.37941982633782,0.73360435536154,7.33286244420767,2.25288145138775e-13,4.31148426612304e-12 +"Tfru23047_t",72.3677729169201,5.0829462827743,0.579306557199148,8.77419083144771,1.72137108625401e-18,5.64872212761948e-17 +"Tfru23048_t",276.088292685652,-0.163193506969988,0.177419025237785,-0.91981965717188,0.357667009267816,0.50375001053579 +"Tfru23049_t",0,NA,NA,NA,NA,NA +"Tfru23050_t",52.1595613242268,-0.412976219904132,0.39250196817062,-1.05216343711329,0.292724571313653,0.435294080132861 +"Tfru23051_t",94.293998584384,-0.273488921707516,0.360980332745707,-0.757628316277762,0.448673523605089,0.592565819645202 +"Tfru23052_t",0.713855962894354,1.61516451045754,3.05320491147692,0.529006259745679,0.596801107488134,NA +"Tfru23053_t",2.49952369435474,2.64758084843873,1.48358879168241,1.78457862669367,0.074329690794865,0.150216586598255 +"Tfru23054_t",876.224255811558,-1.05110258979609,0.149121499711903,-7.04863210084918,1.80685167551489e-12,3.06343488621388e-11 +"Tfru23055_t",312.637228181495,-1.00806121583188,0.177929222522745,-5.66551801631696,1.46581021434991e-08,1.48774751007487e-07 +"Tfru23056_t",112.824668356273,-1.03936533171556,0.349968369197886,-2.96988363290586,0.0029791257557001,0.0101480722089145 +"Tfru02265_t",918.832761265788,-0.350706680353184,0.12510633266429,-2.80326881049474,0.00505874862630386,0.0160228439400288 +"Tfru02266_t",10.6209516008427,-1.41455744575285,0.639328671037337,-2.21256688435022,0.0269275202355168,0.0651041043385494 +"Tfru02267_t",308.29522813501,-0.019774684772854,0.174677496350472,-0.113206825069087,0.909866584832489,0.944647159424342 +"Tfru02268_t",0,NA,NA,NA,NA,NA +"Tfru02269_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203641,0.621278915456996,NA +"Tfru29826_t",77.9868605476529,0.189996327086507,0.270384483658025,0.702689461007715,0.482249296936529,0.621343653738602 +"Tfru29827_t",195.292010137167,-0.41423052676129,0.179082916153385,-2.31306556570979,0.0207190345762938,0.0525132495829507 +"Tfru29828_t",128.243647103506,0.333079149905123,0.283173285643275,1.17623789669452,0.239499824707015,0.374354384477092 +"Tfru29829_t",156.934300332472,-0.443700607568643,0.249889367427746,-1.77558818182585,0.0758008193341769,0.152610861523829 +"Tfru29830_t",0,NA,NA,NA,NA,NA +"Tfru29831_t",0,NA,NA,NA,NA,NA +"Tfru29832_t",336.806075067104,0.24297126672771,0.17501057958472,1.38832330767804,0.165038617961873,0.28165047048854 +"Tfru29833_t",2207.32331327598,0.368243533834119,0.162726510851559,2.26295968559195,0.0236381745505972,0.0585395979243516 +"Tfru29834_t",0.658296003298394,-0.179318062241752,2.26625645106868,-0.0791252296963975,0.936933016027184,NA +"Tfru29835_t",462.114740401696,0.342033927507669,0.215577047815755,1.58659713997008,0.112603915614541,0.209256466947889 +"Tfru29836_t",0,NA,NA,NA,NA,NA +"Tfru29837_t",449.137152361219,-0.878417975203483,0.310550053118357,-2.82858742538582,0.00467539291608652,0.0149372296162764 +"Tfru29838_t",0,NA,NA,NA,NA,NA +"Tfru29839_t",140.932579646366,-0.864349816435631,0.316140988064498,-2.73406438604313,0.00625578103503158,0.0192340128539644 +"Tfru29840_t",0,NA,NA,NA,NA,NA +"Tfru29841_t",553.04150487161,-0.105545385702168,0.172607742546281,-0.611475384274073,0.540884909721863,0.673622942658613 +"Tfru29842_t",0.47567737613943,-2.41802624700338,3.28163764064798,-0.736835236484526,0.46122255215901,NA +"Tfru29843_t",6.32295226258571,2.37950317799731,0.999830543333968,2.37990646901301,0.0173170328102452,0.045285720296014 +"Tfru29844_t",4.47778507658045,3.00486240866362,1.19948841580436,2.50511999038239,0.0122409858131532,0.0338339215139395 +"Tfru29845_t",262.4175761573,2.47023497279943,0.489948524923441,5.04182551255854,4.61111656067814e-07,3.66075873103856e-06 +"Tfru29846_t",92.8882919746754,-0.157565646783806,0.235832251393993,-0.668125949069491,0.5040531990821,0.641605653250904 +"Tfru29847_t",376.907031039805,-0.485923361474639,0.16573595554356,-2.93191275170778,0.00336881374876247,0.0112679796289499 +"Tfru29848_t",84.9604681890335,0.45042260626005,0.320994272193119,1.4032107276639,0.160554009556697,0.275488670848645 +"Tfru29849_t",118.156940618916,0.342648337963993,0.220492044133612,1.55401678691118,0.120180412455639,0.220137308132036 +"Tfru29850_t",63.0116797242178,0.363323721163692,0.31082282070248,1.16890941386658,0.242440130276424,0.37786824399933 +"Tfru29851_t",0,NA,NA,NA,NA,NA +"Tfru29852_t",0,NA,NA,NA,NA,NA +"Tfru29853_t",0,NA,NA,NA,NA,NA +"Tfru29854_t",1.66093054758108,1.85951516475096,1.96619776777874,0.945741672187786,0.344280362053808,0.489921441009997 +"Tfru29855_t",3.00974987166039,4.99326662523678,1.64244738013714,3.04013795852617,0.0023646980344045,0.00827764778359983 +"Tfru29856_t",0,NA,NA,NA,NA,NA +"Tfru29857_t",0,NA,NA,NA,NA,NA +"Tfru29858_t",2777.60001477329,-0.323183346602433,0.224781046997044,-1.43776955806547,0.150499449499942,0.262278280626749 +"Tfru29859_t",95.9576282344067,4.19032734908436,0.505274847873152,8.29316433763261,1.10274819941973e-16,3.0926697622824e-15 +"Tfru29860_t",0,NA,NA,NA,NA,NA +"Tfru29861_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru29862_t",140.584992137012,-1.15893354252099,0.25086959173281,-4.61966527914359,3.84359600753771e-06,2.55554600857676e-05 +"Tfru29863_t",0.991959821117534,2.12602777546709,2.27741069036802,0.933528495522925,0.350547164811789,0.496377446914764 +"Tfru29864_t",0,NA,NA,NA,NA,NA +"Tfru29865_t",25.8169912142024,0.152915394721136,0.430728682846544,0.355015583616508,0.722577916656231,0.820294905892587 +"Tfru12568_t",0,NA,NA,NA,NA,NA +"Tfru12569_t",6.23940574487298,-0.535000816291999,0.981118873099385,-0.545296631183859,0.585549520698132,0.713097800142798 +"Tfru12570_t",1.11132571526402,2.39070885205999,1.92542150776412,1.24165479736236,0.214363954514823,0.344323928948664 +"Tfru12571_t",28.656343017782,3.34807037165246,0.919296563159836,3.64199161165616,0.000270536890686619,0.00121995075832491 +"Tfru23579_t",43.1449081941847,0.478156033777351,0.362766993688644,1.31808031628077,0.187476762977272,0.310748774657928 +"Tfru03297_t",44.6988480656841,0.284638310663683,0.293694892001881,0.969163299788884,0.332463719024892,0.478176250299847 +"Tfru03298_t",34.7537694567559,4.46617675571607,0.776630694928595,5.75070852192714,8.8870217562159e-09,9.3070447779182e-08 +"Tfru03299_t",0,NA,NA,NA,NA,NA +"Tfru03300_t",804.627869539045,2.12053617810435,0.177739042609952,11.930615507803,8.19651903283442e-33,7.70748302331236e-31 +"Tfru03301_t",6.24369019859629,2.95270212671638,1.08969075102995,2.70966980670942,0.00673502199773559,0.0204629096265711 +"Tfru03302_t",2.10479078394741,2.44849540878629,1.61254781587487,1.51840173958369,0.12891315341484,0.232367620282225 +"Tfru03303_t",0.793707910342854,3.08262177957958,2.26646805060142,1.36009937522022,0.173798478772404,0.29328984730255 +"Tfru03304_t",0.81950514576125,3.12084755903502,2.31762833064049,1.34656947266974,0.178118931512571,0.298823214936382 +"Tfru03305_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru03306_t",8.81499323519549,2.95797428920346,0.821514871880579,3.60063389045189,0.000317442307253612,0.00140430101528678 +"Tfru03307_t",4.11229177728338,1.26347480556586,1.12856742136825,1.11953861297365,0.262910427567969,0.401606400175493 +"Tfru03308_t",28.4537767416045,-0.919146952782267,0.457823984137814,-2.00764264133787,0.0446812798612746,0.0992720185937978 +"Tfru03309_t",215.423020939438,-0.47367790963082,0.197783070993766,-2.39493656990365,0.0166232407272249,0.0437680149970933 +"Tfru03310_t",0.656737956049442,2.79996060668215,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru03311_t",1.51658768764241,2.86582773144971,1.82956432447902,1.56639900172177,0.1172552365239,0.21601252510736 +"Tfru03312_t",1.45781877203755,2.76361327115859,2.13871000159503,1.29218700482885,0.196292390927696,0.321762521714043 +"Tfru03313_t",35.5463439750553,0.741423677959088,0.407100837898654,1.82122857271952,0.0685721188578135,0.140651087896422 +"Tfru03314_t",14.0938205396262,0.147319350944869,0.562674496283386,0.261819847741371,0.79346033640626,0.869279534402393 +"Tfru03315_t",36.3072150708052,2.10264529277437,0.630597513560663,3.33436978034024,0.000854929202213401,0.00338762669007364 +"Tfru03316_t",3.34776796345512,1.21168606424994,1.05446419886266,1.14910118860067,0.250514258345359,0.386709139313639 +"Tfru29891_t",0,NA,NA,NA,NA,NA +"Tfru29892_t",131.732193564191,-1.71030021766149,0.348309092770363,-4.91029448602157,9.09397197566592e-07,6.77506966762328e-06 +"Tfru29893_t",0,NA,NA,NA,NA,NA +"Tfru08352_t",0,NA,NA,NA,NA,NA +"Tfru10367_t",0,NA,NA,NA,NA,NA +"Tfru10368_t",156.193645197917,0.0253969833500253,0.200700334756477,0.126541808616519,0.899303056524674,0.937900293817149 +"Tfru10369_t",53.3599616189329,-1.33532883322841,0.365110188411294,-3.65733106227146,0.000254855122852796,0.00115505420199384 +"Tfru10370_t",12.6748441591322,1.01866646166064,0.645357007325432,1.57845417357801,0.114461308094731,0.2119655387826 +"Tfru10371_t",1.78164821016465,-0.869077266442569,1.60215156235747,-0.542443852917245,0.587512776735189,0.714555510207789 +"Tfru10372_t",0,NA,NA,NA,NA,NA +"Tfru10373_t",2.03149459177612,-1.01315078448114,1.41718312006225,-0.714904637331999,0.474667971342135,0.615103619951988 +"Tfru10374_t",72.3501214353582,-0.125839232512451,0.290987040759376,-0.432456483917818,0.665409673181973,0.77789415968445 +"Tfru10375_t",18.9758428324402,-0.713530035651593,0.513174680470377,-1.3904233057593,0.164400373463883,0.280882537454898 +"Tfru10376_t",280.389336929671,0.033742173821838,0.187854639218619,0.179618528252422,0.857452057814723,0.911888284256486 +"Tfru10377_t",0,NA,NA,NA,NA,NA +"Tfru10378_t",0,NA,NA,NA,NA,NA +"Tfru10379_t",0,NA,NA,NA,NA,NA +"Tfru10380_t",310.796371712003,-1.28486213456934,0.181505676886875,-7.07890880663825,1.45293952770412e-12,2.48789492196007e-11 +"Tfru10381_t",1.14600110389353,1.30108563453489,1.73943445483881,0.747993481970813,0.454464089082342,0.597410062476524 +"Tfru10382_t",78.0880307454512,2.11120425521198,0.284781770868976,7.41341079792396,1.23091846580738e-13,2.44653243914469e-12 +"Tfru10383_t",233.487658583202,0.45184070883014,0.226952036151122,1.99090837206356,0.0464909616283946,0.102640595959699 +"Tfru10384_t",136.171663751767,-0.739723000555682,0.251066548009412,-2.94632242495305,0.00321577002688213,0.0108256518052981 +"Tfru16459_t",0,NA,NA,NA,NA,NA +"Tfru16460_t",86.0858554624981,-0.483036815036148,0.243978294474638,-1.97983519835761,0.0477220498526853,0.104851705841655 +"Tfru16461_t",9.15350012660772,-0.928420012258763,0.648638763565476,-1.43133599841516,0.152333941530388,0.26477427861526 +"Tfru16462_t",725.867609996818,0.939628248918926,0.455872051529001,2.06116660533893,0.0392871482688131,0.0889659690047653 +"Tfru29441_t",232.093928886913,0.489159150224876,0.215345719369675,2.27150626284406,0.0231163482739627,0.0574742199618536 +"Tfru29442_t",13.5488833696528,1.05222397042142,0.525576988286883,2.00203584607299,0.0452808763960325,0.100355121186691 +"Tfru29443_t",149.889630117934,0.329857700716017,0.200348462469346,1.64641992581544,0.099677333485876,0.189950504377887 +"Tfru29444_t",1258.74305977467,0.453011785672344,0.147482134909194,3.07163837810775,0.00212887462641818,0.00754700049726578 +"Tfru29445_t",13.3758799306627,5.28633411660493,1.2218224951263,4.32659747032935,1.51430327093522e-05,8.96800931556769e-05 +"Tfru29446_t",10.2081589971834,5.7891830583898,1.39383343489038,4.15342530425459,3.27535161199225e-05,0.000181441507614818 +"Tfru29447_t",0.950116572801167,-0.159175878600357,1.80662176350912,-0.0881069196748631,0.929791696665666,0.958089146432967 +"Tfru29448_t",0,NA,NA,NA,NA,NA +"Tfru01354_t",0,NA,NA,NA,NA,NA +"Tfru01355_t",89.561885058958,-0.618169306800207,0.350994695857661,-1.76119273053315,0.0782057880270792,0.156257971256676 +"Tfru01356_t",23.7057280319892,3.85475594582242,0.606419767331901,6.35658029879601,2.06294625868582e-10,2.71421147968188e-09 +"Tfru01357_t",40.3979546796446,-0.414166214102565,0.324315308227612,-1.27704799494661,0.201585303338609,0.328179172817201 +"Tfru01358_t",2.44731835196177,1.82239896986931,1.38532954432355,1.31549852332008,0.188342413302649,0.311906408888064 +"Tfru01359_t",45.7763047194174,1.58478007467804,0.318753839200181,4.97179917473176,6.63344003429185e-07,5.07046528620402e-06 +"Tfru01360_t",201.488758285195,0.165515039130208,0.232191112294956,0.712839684061426,0.475944966041529,0.616236525311509 +"Tfru01361_t",142.544032346311,5.09549486409726,0.461750352295351,11.0351726615208,2.5855441707583e-28,1.81963768998651e-26 +"Tfru01362_t",165.453444330556,-7.17976386596662,0.61285641747369,-11.7152462816054,1.06481360422315e-31,9.16558787019776e-30 +"Tfru01363_t",121.419950017639,-0.0943060251521041,0.203573247655805,-0.463253527848383,0.643182652177795,0.761046196242945 +"Tfru01364_t",55.466453236296,-0.0470606539371768,0.298144411769888,-0.157845165226504,0.874578808036824,0.922388017147226 +"Tfru01365_t",0,NA,NA,NA,NA,NA +"Tfru01366_t",9.57833101562764,2.57137142348435,0.746370860179743,3.44516588290318,0.000570709036356688,0.00236352113872366 +"Tfru01367_t",1.49097419148205,-0.366946263812494,1.42242366289493,-0.257972553033659,0.796428089946268,0.871081060160174 +"Tfru01368_t",0,NA,NA,NA,NA,NA +"Tfru01369_t",594.432839980503,0.0714060789379695,0.149898848120334,0.476361758835177,0.6338166737285,0.753029524767417 +"Tfru01370_t",0,NA,NA,NA,NA,NA +"Tfru01371_t",4.30728760319705,-0.168753168164244,0.966018965139388,-0.174689291053302,0.861323782886187,0.913834562481884 +"Tfru18175_t",0,NA,NA,NA,NA,NA +"Tfru18176_t",146.469207509662,0.285183049173403,0.196790794930093,1.44916864264261,0.147290492237056,0.258092798016388 +"Tfru18177_t",25.3569077993182,-0.7712924850745,0.420815244198832,-1.83285300546306,0.0668244340539073,0.137684665266659 +"Tfru18178_t",242.965412586108,2.2750367145052,0.459004507859278,4.95645832568312,7.17897567571836e-07,5.43891251261262e-06 +"Tfru18179_t",151.298621762127,-1.79168556249996,0.221709255769864,-8.08123935231531,6.41118349026427e-16,1.6454390655059e-14 +"Tfru18180_t",162.521306708239,-1.67079874533195,0.239688072455423,-6.97072127209287,3.15320147751769e-12,5.18125176702246e-11 +"Tfru18181_t",2.45236854106986,-1.05733802318672,1.34654064699528,-0.785225478002543,0.43232137992194,0.577116163593976 +"Tfru18182_t",148.432652489696,-0.0113097432777382,0.190539023269192,-0.0593565721272743,0.952668102459163,0.972660225047266 +"Tfru18183_t",0,NA,NA,NA,NA,NA +"Tfru18184_t",0,NA,NA,NA,NA,NA +"Tfru18185_t",6.48747801016809,0.35583445842824,0.728516139037414,0.488437303390976,0.625240124644147,0.746485675622087 +"Tfru18186_t",259.379515410131,0.90979404728841,0.245813619488745,3.70115394411686,0.000214621211646006,0.00099117266129542 +"Tfru18187_t",0,NA,NA,NA,NA,NA +"Tfru18188_t",101.052704483155,0.382391823980355,0.327275308221974,1.16841024780579,0.242641323262785,0.377991054142724 +"Tfru18189_t",11.1638735142413,-0.0700220722701649,0.658582907885172,-0.106322334563796,0.915326611607405,0.948907243272824 +"Tfru11184_t",0.495528813586586,-1.01195050526167,2.77178898670578,-0.365089301572105,0.715044746654807,NA +"Tfru11185_t",0,NA,NA,NA,NA,NA +"Tfru11186_t",0,NA,NA,NA,NA,NA +"Tfru11187_t",252.664733211471,-0.323497187910009,0.174578716828598,-1.85301618540146,0.0638800388131048,0.132890432109805 +"Tfru19277_t",1147.46838308374,-0.0120886015814768,0.142453236343689,-0.0848601400133258,0.932372581096064,0.95986468397488 +"Tfru19278_t",55.7214739898005,-0.443548019390821,0.286059028465722,-1.5505471782163,0.121010239066365,0.221331247981796 +"Tfru19279_t",71.7022736174174,-0.331718929723675,0.364244622818108,-0.910703711031376,0.362451508249176,0.508657841168961 +"Tfru01598_t",0,NA,NA,NA,NA,NA +"Tfru01599_t",53.1939910517798,5.93832985093606,0.733558604447095,8.09523576567132,5.7153547263996e-16,1.47872414770894e-14 +"Tfru01600_t",0,NA,NA,NA,NA,NA +"Tfru01601_t",3786.74077033735,2.02453498505951,0.35291817009825,5.7365563935002,9.66208881168925e-09,1.00622404655935e-07 +"Tfru17687_t",2468.44119993085,-1.66192260315674,0.179709755296534,-9.24781518073099,2.29128104446128e-20,8.84118444397299e-19 +"Tfru17688_t",2.48177256850174,-0.224995213035468,1.20647582131988,-0.186489616335057,0.852060820991531,0.907923685844425 +"Tfru17689_t",62.1004640461523,-0.774985857424571,0.270876069678784,-2.861034783706,0.00422260720727772,0.0136780936892279 +"Tfru17690_t",48.8315967798806,-0.474323353025632,0.290453882473573,-1.63304187565401,0.102460189776914,0.194277645277247 +"Tfru17691_t",239.975319851858,0.145015557395152,0.176738087728217,0.820511069567262,0.411924821407385,0.557773324243543 +"Tfru17692_t",42.6484695714635,0.914926976293574,0.527994578041784,1.73283403721083,0.083125171191116,0.164196057480775 +"Tfru16911_t",41.4751141124809,-0.57701739562762,0.319394326199118,-1.80659876615308,0.0708248620380674,0.144503638655479 +"Tfru16912_t",0.969648142477064,-0.00294099785735888,1.8048233775998,-0.00162952114531565,0.998699830812049,0.999235613983086 +"Tfru16913_t",21.6800429843044,-0.577674875989465,0.520336238119268,-1.11019535767381,0.266914852802192,0.40630896515529 +"Tfru16914_t",3.6068311211765,3.30342886142576,1.32788641433239,2.48773451235782,0.012855966318439,0.0352680223347224 +"Tfru16915_t",19.1707925577259,3.37870685318317,0.665472261852186,5.07715655011575,3.83125191085754e-07,3.07986414385746e-06 +"Tfru16916_t",628.289899838091,-0.330685988548781,0.342862109171786,-0.964486829260845,0.334801908496803,0.480459980377453 +"Tfru16917_t",139.152768954601,1.52843631831278,0.320291621675674,4.77201467311708,1.82392212881538e-06,1.28443603659182e-05 +"Tfru16918_t",131.568010439336,1.05625779787453,0.241953334077387,4.36554347102611,1.26807079212188e-05,7.63708943156287e-05 +"Tfru16919_t",0,NA,NA,NA,NA,NA +"Tfru16920_t",0,NA,NA,NA,NA,NA +"Tfru07598_t",76.6575613701681,-1.3049765819309,0.282604084214427,-4.61768479234271,3.88045079983038e-06,2.57851807898468e-05 +"Tfru07599_t",0,NA,NA,NA,NA,NA +"Tfru14409_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14410_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru24305_t",331.009522335211,-0.653408567401268,0.24720957878625,-2.64313612202802,0.00821420044660501,0.0242684892402667 +"Tfru27827_t",484.777790465381,0.10599328193098,0.150422535496916,0.704636985281724,0.481036175709705,0.620363299792507 +"Tfru27828_t",0,NA,NA,NA,NA,NA +"Tfru27829_t",0,NA,NA,NA,NA,NA +"Tfru27830_t",70.8805343359632,-0.191623560027498,0.255033740178666,-0.751365524786074,0.452432704748881,0.595803123354863 +"Tfru27831_t",0.521326049004982,-1.01136520467185,2.73709054725885,-0.369503743924262,0.711752283066349,NA +"Tfru27832_t",2.15308343726431,1.10047068795313,1.46041384334194,0.753533454212448,0.451129415870728,0.594754677720353 +"Tfru27833_t",164.688058596988,-0.564260354659838,0.24121491211795,-2.33924324870895,0.0193228479566464,0.0496378945442775 +"Tfru27834_t",165.812236348335,-0.533415145537951,0.232164222403526,-2.29757686182507,0.0215858838206693,0.0543532943189221 +"Tfru07664_t",1045.38939509396,-0.348455027984687,0.150686376071881,-2.31245210793619,0.0207527816405994,0.0525809185006922 +"Tfru07665_t",0,NA,NA,NA,NA,NA +"Tfru07666_t",0,NA,NA,NA,NA,NA +"Tfru07667_t",153.368858948881,-0.323721949814536,0.238987094833382,-1.35455828709173,0.175558330995877,0.295593975413159 +"Tfru07668_t",28.1554760167102,-0.422413728040951,0.390565839068524,-1.08154294561035,0.279455668127256,0.420479887904262 +"Tfru07669_t",0,NA,NA,NA,NA,NA +"Tfru06151_t",1845.25902654106,3.08944910885953,0.417084478929347,7.40725024529833,1.28945010071425e-13,2.5537958631845e-12 +"Tfru24653_t",18.2330629044641,5.1695018344241,1.30717106033409,3.95472481857337,7.66227917502725e-05,0.000392227374055604 +"Tfru24654_t",0,NA,NA,NA,NA,NA +"Tfru05635_t",45.1867575836198,1.68440344630239,0.334688780480825,5.03274547740296,4.83504880259045e-07,3.82361809900969e-06 +"Tfru05636_t",276.944892488769,1.53930675645304,0.171743342264012,8.96283218994737,3.16443948427725e-19,1.11880182714257e-17 +"Tfru05637_t",77.8308958298531,-0.778243624872759,0.237700037755461,-3.27405764097267,0.00106014983499158,0.00409283307005545 +"Tfru05638_t",321.868405586676,-0.701500954490776,0.157389822157994,-4.45709223679396,8.30788629034608e-06,5.17912242835502e-05 +"Tfru05639_t",639.753799244102,-0.906550388624564,0.23282802120598,-3.89364812675425,9.87478577631898e-05,0.000493078325912581 +"Tfru05640_t",90.3049133488302,1.09704359737559,0.232808871317525,4.71220701843164,2.4504824813776e-06,1.69894045641978e-05 +"Tfru05641_t",19.5070335410786,0.964431512496396,0.493658051690459,1.95364282866215,0.050743471872405,0.110234799117106 +"Tfru27666_t",36.5645831516729,-0.962646320245982,0.357698519530762,-2.69122254547993,0.0071190687463031,0.0214376693409935 +"Tfru27667_t",1.65695033720275,-0.629020992890931,1.3816141924785,-0.455279770803831,0.64890797771027,0.765392671084423 +"Tfru27668_t",23.1221298627868,-0.206835772559115,0.482775068165844,-0.428430932328224,0.668337408358084,0.780168537401102 +"Tfru17829_t",80.8391127536367,-0.187424588127358,0.243977607433209,-0.768204058147703,0.442365962930918,0.586362843543825 +"Tfru17830_t",54.3535234258878,0.301606255152529,0.337059276261298,0.894816658060805,0.370885104014747,0.517030561096925 +"Tfru17831_t",46.9163557888672,-0.122691961831428,0.35048448241698,-0.350063891517624,0.726290748834436,0.823173653343193 +"Tfru17832_t",3123.4376475188,-2.00580282279815,0.161385969727803,-12.4286071842625,1.82791435709262e-35,2.01520804491295e-33 +"Tfru17833_t",84.656334234122,0.0563595693183353,0.315987819679345,0.178359942403879,0.858440306169615,0.912115750466505 +"Tfru17834_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru17835_t",666.004512121513,2.53207474916875,0.232018396837636,10.9132499132845,9.96296538910079e-28,6.57732051351256e-26 +"Tfru15521_t",0,NA,NA,NA,NA,NA +"Tfru15522_t",5.95659919951987,0.55918354268124,0.814393788456339,0.686625500596164,0.492318754663464,0.630594786795104 +"Tfru04003_t",0.605892200028237,-0.223238624654695,3.17277552058034,-0.0703606741815323,0.94390659109721,NA +"Tfru04004_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru13177_t",58.1368923221541,-0.205363965251785,0.308921239516936,-0.664777745851711,0.506192658533396,0.643450624672124 +"Tfru13178_t",87.5257525861488,-0.59872570952507,0.260710730729927,-2.2965134877601,0.0216465388644068,0.0544631298241062 +"Tfru02063_t",8.2253941198033,-0.153868315994667,0.667013860157072,-0.230682336883425,0.817561596592184,0.884538797021091 +"Tfru02064_t",547.111522643877,0.209083685723292,0.212248528937663,0.98508897456104,0.324580368572375,0.469567004670697 +"Tfru21914_t",361.749172678577,-0.128133130743162,0.184929430865496,-0.692875818324215,0.48838748632268,0.627086170045988 +"Tfru21915_t",208.425485357293,-0.218015938598889,0.188276647948785,-1.1579552800313,0.246882286552681,0.382765886598477 +"Tfru21916_t",36.3074352726252,-0.11660897095045,0.320928447293521,-0.363348814771163,0.716344332484894,0.81610641826076 +"Tfru21917_t",195.498465414225,0.151254591466183,0.197788300167539,0.764729720302269,0.444432504781159,0.58823108740921 +"Tfru21918_t",4.84612287851711,1.37655863286293,0.94110828457476,1.46269951654387,0.143549618524409,0.253203062939492 +"Tfru13256_t",20.8265286924876,-0.178067333908749,0.504887753603328,-0.352686973763776,0.72432312605158,0.821666248523975 +"Tfru13257_t",170.148862720381,-0.537699300617224,0.189003195565825,-2.8449217432938,0.00444223353240567,0.0142943474414434 +"Tfru04005_t",47.7418707962786,-0.40463279312718,0.333494435612935,-1.21331197740526,0.225010565318428,0.357093777607886 +"Tfru04006_t",11.1922258246849,-0.666262740644563,0.565673880011018,-1.17782129277665,0.238867858076732,0.373470914053183 +"Tfru04007_t",0.497179722346533,0.840907762044576,2.76412580766625,0.30422195679818,0.760958798021097,NA +"Tfru19209_t",172.458433907791,-0.206155071870957,0.238532211755136,-0.864265125259411,0.387442263562345,0.533860230176412 +"Tfru19210_t",12.6097579995121,0.0227211691734851,0.562816088989769,0.0403705040029482,0.967797745467195,0.981569543349761 +"Tfru19211_t",41.4008136293221,0.389440961005268,0.378330409130767,1.02936732445068,0.303307097666265,0.446579792484935 +"Tfru19212_t",96.1731031173804,-0.45271057967251,0.235308748237996,-1.92390033546322,0.0543670771920558,0.116489725951001 +"Tfru19213_t",1703.88370572432,-1.09356701569986,0.199872872224017,-5.47131285767582,4.46713895614236e-08,4.19708521572065e-07 +"Tfru19214_t",30.0531199735538,1.08007574522325,0.373061522130483,2.89516790435835,0.00378955773681507,0.0124428260196481 +"Tfru19215_t",228.030593633438,-0.0896576850145697,0.2449962043077,-0.36595540436196,0.714398352850967,0.814725351188249 +"Tfru06776_t",393.350343315258,-0.570948044728782,0.18526643509845,-3.08176731756824,0.00205775619541296,0.00732155542978412 +"Tfru06777_t",3.24504455074689,1.80875386017491,1.22050404256905,1.48197285472947,0.138347517958408,0.245770555001522 +"Tfru10669_t",0,NA,NA,NA,NA,NA +"Tfru10670_t",0,NA,NA,NA,NA,NA +"Tfru08067_t",17.9188559788922,-1.81320051426537,0.548215880302436,-3.30745711573528,0.000941471255245141,0.00369197944495992 +"Tfru08068_t",79.0917593822051,-1.52284528157653,0.281304612202164,-5.41350982358623,6.18012021928469e-08,5.66848731588489e-07 +"Tfru08069_t",2.49985309480686,0.934959613478082,1.21023570896239,0.772543403367,0.439792650502961,0.584128161320847 +"Tfru08070_t",226.455620465946,0.527638574226276,0.267400852615405,1.97321201135123,0.0484714125690045,0.106216607587812 +"Tfru08071_t",0,NA,NA,NA,NA,NA +"Tfru08072_t",763.540857366133,0.0422479393993764,0.179958896774714,0.234764383181708,0.814391613304371,0.882448160441165 +"Tfru24066_t",0,NA,NA,NA,NA,NA +"Tfru24067_t",0,NA,NA,NA,NA,NA +"Tfru24068_t",30.0937198253964,-1.32861264100019,0.380052445255162,-3.49586657733034,0.00047252490754139,0.00200362020287539 +"Tfru24069_t",311.496471557065,-0.979817353144128,0.246809405935943,-3.9699352195614,7.18921753731621e-05,0.000369617938169393 +"Tfru24070_t",0,NA,NA,NA,NA,NA +"Tfru24071_t",560.335438994227,0.896284710134497,0.147162951559526,6.09042357900764,1.12612330975745e-09,1.33347299853819e-08 +"Tfru24072_t",4.200861813733,0.696506867307307,1.02977902083913,0.676365368892203,0.498808699044596,0.636644365969608 +"Tfru24073_t",14.3377829736874,-0.477599986098535,0.521533216358165,-0.915761395666391,0.359792055365699,0.505819850435601 +"Tfru24074_t",96.9518575416015,-0.538571864917888,0.243420621199636,-2.21251536646186,0.0269310756392555,0.0651041043385494 +"Tfru06447_t",0,NA,NA,NA,NA,NA +"Tfru06448_t",69.9054927520311,-0.45232387552926,0.282374890524817,-1.60185586858867,0.109187485306751,0.204225448594106 +"Tfru06449_t",14.9440438934542,0.3906802230363,0.517042490810901,0.75560564166318,0.449885672402529,0.593623097008937 +"Tfru10226_t",173.680036655227,-0.193798711185176,0.206254663559099,-0.939608869157258,0.347418225225393,0.493060928038134 +"Tfru10227_t",1150.84383292952,-0.168806747864456,0.268270506643488,-0.629240798686782,0.529191422563755,0.664085681113426 +"Tfru30025_t",0,NA,NA,NA,NA,NA +"Tfru15689_t",52.9407851907797,2.64272065616205,0.34402906870502,7.68167837127738,1.57017654403828e-14,3.44177777233857e-13 +"Tfru15690_t",95.8532111672089,-1.35118853015154,0.294209265004629,-4.59261039971083,4.37735806704155e-06,2.88133157471735e-05 +"Tfru15845_t",274.635995097871,1.16880265614091,0.170373417438681,6.86024072130604,6.87446078631013e-12,1.08805114849802e-10 +"Tfru09261_t",401.439982802603,0.0610030739329754,0.239977143128039,0.254203684308498,0.79933820441163,0.872856258342634 +"Tfru09262_t",290.173980297201,-0.743876128674116,0.175946064645767,-4.22786454571613,2.35919742439883e-05,0.000134348189206224 +"Tfru09263_t",12.7910082585289,0.747314260509351,0.782777371206281,0.954695789631372,0.33973155969352,0.485175949584646 +"Tfru09264_t",53.9259989503914,0.101205208721716,0.2896948831376,0.349351040051494,0.72682578484242,0.823497665630811 +"Tfru09265_t",452.562886500876,0.0824910187331042,0.236434487438106,0.34889588074455,0.727167477792599,0.823708465505813 +"Tfru09266_t",0,NA,NA,NA,NA,NA +"Tfru09267_t",203.100290538275,1.52385365807567,0.251115041684153,6.06834878490606,1.29232012420845e-09,1.52221707262027e-08 +"Tfru22604_t",0.930677864636266,3.31849648338162,2.16553191405887,1.53241633699212,0.125419728530199,0.227407722960857 +"Tfru22605_t",114.300349348054,-0.405353894866062,0.273732362829787,-1.48084022903101,0.138649153623849,0.246189150912547 +"Tfru24000_t",59.3226851633152,-3.6590575322907,0.395573507120752,-9.25000655105486,2.24478913128638e-20,8.67674969916912e-19 +"Tfru19817_t",0,NA,NA,NA,NA,NA +"Tfru19818_t",37.9105261535007,-0.100233221571324,0.346061740191066,-0.289639708556003,0.772091885450525,0.855086943130778 +"Tfru19819_t",1.61681861526411,-0.0607717716469744,1.37813535393417,-0.0440970993694407,0.964827004905252,0.979888744317459 +"Tfru19820_t",52.7058356436724,-0.272652498191432,0.290208241268383,-0.939506393752908,0.347470811081491,0.493082033606224 +"Tfru14314_t",195.346749284037,-0.195832895429856,0.260250503585499,-0.752478449539368,0.451763384910993,0.59515331730092 +"Tfru14315_t",76.9781063288682,0.461910070330614,0.338364724393672,1.36512478113174,0.172213834512951,0.291406745531517 +"Tfru14316_t",175.231558560706,-2.46112645249166,0.224448397029218,-10.9652217840134,5.61626871303756e-28,3.82042838291127e-26 +"Tfru14317_t",5.35506267797921,0.34422823744227,0.791534406050339,0.434887270611429,0.663644254729072,0.77655330026334 +"Tfru14318_t",28.9934157066579,0.722117714138743,0.398951483849724,1.81003892295523,0.0702897513728976,0.143647578826176 +"Tfru14319_t",47.1650839271097,0.00550950426533299,0.383884767345097,0.0143519741703639,0.988549174499016,0.994548461464957 +"Tfru14320_t",93.1713986047798,0.230153390478766,0.286398254095541,0.803613105832649,0.421620451751328,0.566854842616528 +"Tfru11914_t",0,NA,NA,NA,NA,NA +"Tfru11915_t",0,NA,NA,NA,NA,NA +"Tfru11916_t",4.70237525426525,0.0321925367878906,0.861028219283703,0.0373884805014543,0.970175257478188,0.983223396384633 +"Tfru11917_t",61.3874371697822,2.95823129763188,0.35675899825579,8.29195987233622,1.11397514596369e-16,3.120245778056e-15 +"Tfru11918_t",71.1752028433437,-0.818113592973394,0.693481295039048,-1.17971976868868,0.238111688684044,0.372724706500041 +"Tfru11919_t",24.0208571938112,0.416472967745781,0.471077127231662,0.884086583004424,0.376649475379112,0.522689604947264 +"Tfru11920_t",500.174775991207,0.708951926865276,0.142016816139617,4.9920280297532,5.97485814771483e-07,4.6173109580752e-06 +"Tfru11921_t",18.3469492393561,3.63878432902019,0.722202327661636,5.03845555414081,4.69303367646409e-07,3.72051341407249e-06 +"Tfru11922_t",0,NA,NA,NA,NA,NA +"Tfru15045_t",0,NA,NA,NA,NA,NA +"Tfru29476_t",2.37568870441979,4.65172222249396,2.16130086789454,2.15227888518154,0.0313753958111266,0.0738671742323809 +"Tfru08672_t",5.94073372907467,4.08027820603354,1.35741992431263,3.00590711315786,0.00264789870975791,0.00915919213668964 +"Tfru12651_t",90.6844267231307,-0.339952645880101,0.270099628965021,-1.25861944787835,0.208167819074552,0.336350862095768 +"Tfru12652_t",747.061527156721,0.124579055839393,0.213198413153467,0.584333879397672,0.558995702619175,0.689854348364966 +"Tfru31408_t",0,NA,NA,NA,NA,NA +"Tfru21879_t",0.868852239297807,1.93486425065149,2.37804596764606,0.813636185749066,0.415853401576566,0.561563936962744 +"Tfru21880_t",3.86894835126601,0.645971975574097,0.919701913314374,0.702371025027204,0.482447810162154,0.621492084926553 +"Tfru21881_t",92.3950636313989,-0.941561324767584,0.2959108338924,-3.18190892973509,0.00146307816252297,0.00543283379413707 +"Tfru24311_t",0,NA,NA,NA,NA,NA +"Tfru24312_t",180.124997833639,-0.505411466758295,0.203943103847026,-2.47819836623354,0.0132047708771217,0.0361098206537125 +"Tfru25721_t",0.860842803284366,-3.25397261436233,2.23286040955334,-1.45731125888575,0.145030480343289,0.255131437673542 +"Tfru04101_t",936.451228374808,-0.573729598726541,0.489318714466689,-1.17250696072774,0.240993579130786,0.376321260183295 +"Tfru04102_t",954.23840817797,0.267698183188795,0.490112823596841,0.546197059738636,0.584930487046367,0.712615367452242 +"Tfru04103_t",0,NA,NA,NA,NA,NA +"Tfru04104_t",233.715011802681,0.0713404004477033,0.19344851839237,0.368782356363175,0.712289956759835,0.813318838381893 +"Tfru20994_t",0,NA,NA,NA,NA,NA +"Tfru20995_t",277.005652863089,-0.543304438527623,0.231443183062065,-2.3474635603414,0.0189017219456604,0.0487631743105337 +"Tfru13844_t",52.1834871690208,0.020709096256359,0.374468835095274,0.0553025894694016,0.955897399227164,0.974845467974661 +"Tfru13845_t",11.8296004003632,-1.8321612333323,0.640402095748388,-2.86095446204185,0.00422367714763699,0.01367957953171 +"Tfru13846_t",138.969205695672,-1.7175006484351,0.345525690609391,-4.97068870741858,6.67154914140766e-07,5.09414090019459e-06 +"Tfru13847_t",0,NA,NA,NA,NA,NA +"Tfru23008_t",539.389462218904,-1.83095111906113,0.162722948761262,-11.251953906928,2.26517700989336e-29,1.74809177522115e-27 +"Tfru23009_t",0,NA,NA,NA,NA,NA +"Tfru23010_t",0,NA,NA,NA,NA,NA +"Tfru23011_t",666.013287519856,-0.498531926287694,0.167023475127158,-2.98480154306544,0.00283762360417871,0.00972676003392857 +"Tfru19672_t",0,NA,NA,NA,NA,NA +"Tfru14546_t",279.522791759946,-0.0674555629719261,0.178568113452399,-0.377758165597174,0.70561025386335,0.80836241092933 +"Tfru14547_t",0,NA,NA,NA,NA,NA +"Tfru19806_t",971.751112025885,-0.727044923598358,0.134187999626715,-5.41810687707436,6.02334079978781e-08,5.53830596134968e-07 +"Tfru19807_t",0,NA,NA,NA,NA,NA +"Tfru16431_t",400.796071429286,-0.537378668537414,0.157556248969194,-3.41070996582614,0.000647939746675688,0.00265063313682847 +"Tfru16432_t",0.767910674924458,3.04296823343115,2.33292927929048,1.3043551128805,0.192112532235952,0.316603716600929 +"Tfru10863_t",140.773887563478,-1.17872446545399,0.220702374004002,-5.34078743272882,9.25437189971779e-08,8.26797776908919e-07 +"Tfru10864_t",71.5187853077934,-1.48406356489165,0.361343585156111,-4.1070704610696,4.00709019563838e-05,0.000218355681953706 +"Tfru14036_t",117.184733356462,0.198445729384068,0.214700539797205,0.924290779946387,0.355334941876458,0.501254081260329 +"Tfru22613_t",668.457676821609,0.0736445703101937,0.150485834843252,0.489378753733884,0.624573574952312,0.745928630526322 +"Tfru31109_t",84.5848771144559,-0.479877481819774,0.233722590516508,-2.0531925508753,0.0400539065933977,0.0904273609966952 +"Tfru09683_t",161.118115415692,1.15342226993463,0.285818931798079,4.0354998973598,5.44861634488097e-05,0.000287323359562762 +"Tfru18765_t",20.0217886891988,0.71781578387008,0.458915040375451,1.56415833153521,0.117780390017766,0.216716692312555 +"Tfru17052_t",77.5698945636515,-0.369781878073774,0.34726709276054,-1.06483420336277,0.286950964132205,0.42859642804686 +"Tfru03149_t",0,NA,NA,NA,NA,NA +"Tfru03150_t",207.87960168537,1.61420321215519,0.20131032060927,8.0184821487034,1.07059838521732e-15,2.66518263194257e-14 +"Tfru10888_t",0,NA,NA,NA,NA,NA +"Tfru10889_t",823.337968976827,-0.147333906663581,0.13289553283522,-1.10864453846062,0.267583556430417,0.407022360695489 +"Tfru10890_t",625.304832190184,0.334573542025021,0.15244549865142,2.19470922385221,0.0281844626555653,0.0676137071745687 +"Tfru10891_t",1514.34239373362,0.94585689482347,0.288839479748926,3.27468009444436,0.00105781688876284,0.00408453105081303 +"Tfru10892_t",145.301344135095,-0.347622247428955,0.292703893581933,-1.18762426824927,0.234981472314476,0.369381822228424 +"Tfru18028_t",0,NA,NA,NA,NA,NA +"Tfru18029_t",20.9739877243477,-0.225627980906891,0.42288911227607,-0.533539347212128,0.593660281231945,0.720339450934162 +"Tfru18030_t",28.6268765109294,-0.0743594395412631,0.446607062487343,-0.166498575116847,0.867764604413626,0.91827376456461 +"Tfru18031_t",5.16569533383834,0.0706689767415982,0.899143559936841,0.0785958771106164,0.937354066984836,0.962587628854921 +"Tfru18032_t",28.4954963780189,-0.603379457012619,0.384115247679879,-1.57082922549191,0.116222321610505,0.214697115777392 +"Tfru03287_t",266.263204718916,0.765579379481927,0.182140190919766,4.20324243439038,2.63118515620739e-05,0.000148215262511758 +"Tfru29899_t",0,NA,NA,NA,NA,NA +"Tfru09082_t",1480.66747165589,0.625638765572222,0.215434325857323,2.90408115365314,0.00368332672305555,0.0121564447812982 +"Tfru30625_t",109.882999005843,0.586791852974867,0.328922701462847,1.78398100941399,0.07442675105206,0.150372004021405 +"Tfru30626_t",17.7997344781215,0.726963903534719,0.51166015331004,1.42079444496866,0.155376526104797,0.269138594616919 +"Tfru30627_t",5836.63316064517,-0.856977779484732,0.319619241259656,-2.68124589779791,0.00733485960420581,0.0219986810429008 +"Tfru30628_t",0,NA,NA,NA,NA,NA +"Tfru30629_t",0,NA,NA,NA,NA,NA +"Tfru20800_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20801_t",46.2378870856302,-5.3094143196805,0.615357665934194,-8.62817612196332,6.23380365716721e-18,1.95395694464149e-16 +"Tfru20802_t",147.976367194624,0.193293548672232,0.195326887376882,0.989590072662521,0.322374524250038,0.467306292681899 +"Tfru20803_t",83.9639658527716,0.981812988365141,0.25340947756255,3.87441305593157,0.000106881993224354,0.000530263579774117 +"Tfru20804_t",0.385165427144936,-2.07679782548222,4.02498416437306,-0.515976645042454,0.605870721136016,NA +"Tfru16936_t",9.02612916837161,6.57642993379255,1.3418798748839,4.90090808937838,9.5394680552429e-07,7.08573830323054e-06 +"Tfru12776_t",0,NA,NA,NA,NA,NA +"Tfru23058_t",0,NA,NA,NA,NA,NA +"Tfru20658_t",116.174287804241,0.949819036050433,0.263619975854726,3.60298582446519,0.000314582690723827,0.00139330311070636 +"Tfru23244_t",0,NA,NA,NA,NA,NA +"Tfru18376_t",123.502780811995,-1.38305619954591,0.218307083927727,-6.33537022556622,2.36772033866449e-10,3.08437608727074e-09 +"Tfru05098_t",11.1224894673838,-0.149226859170704,0.632354533312585,-0.235986066849209,0.813443481921676,0.881762332917133 +"Tfru26709_t",0.328743335432514,-0.064298973527051,3.76106262432427,-0.0170959592938454,0.986360062458801,NA +"Tfru26710_t",0,NA,NA,NA,NA,NA +"Tfru13323_t",0,NA,NA,NA,NA,NA +"Tfru13324_t",0,NA,NA,NA,NA,NA +"Tfru13325_t",0,NA,NA,NA,NA,NA +"Tfru13326_t",0,NA,NA,NA,NA,NA +"Tfru13327_t",16.7757668742884,1.21334676471335,0.538630387596794,2.25265189757849,0.0242811061222489,0.059835176904854 +"Tfru13328_t",5.1615829510316,-1.82174631766448,0.897449725089576,-2.02991461998905,0.0423652187280115,0.0949272722399778 +"Tfru13329_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru07335_t",0,NA,NA,NA,NA,NA +"Tfru07336_t",0,NA,NA,NA,NA,NA +"Tfru07337_t",0.317617804921169,-0.0642991832940792,3.80307376634159,-0.0169071617445729,0.986510679338551,NA +"Tfru12641_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru12642_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru12643_t",1.49733271873554,1.80904153477603,1.66737751865589,1.08496217235455,0.277938409600048,0.418590956046371 +"Tfru19257_t",5.7087636562675,2.22211278966289,0.878582369587156,2.52920257289827,0.0114322023095734,0.0319576177477208 +"Tfru00956_t",0,NA,NA,NA,NA,NA +"Tfru02084_t",0,NA,NA,NA,NA,NA +"Tfru10228_t",0,NA,NA,NA,NA,NA +"Tfru16732_t",0,NA,NA,NA,NA,NA +"Tfru16733_t",306.565378682788,0.521768651671556,0.168643564321551,3.09391380436378,0.00197534867481334,0.0070642862483737 +"Tfru25342_t",8.69168315899019,2.62477958081848,0.797436653822735,3.29152111109499,0.000996471372958029,0.00387978937487834 +"Tfru25343_t",0,NA,NA,NA,NA,NA +"Tfru23128_t",0,NA,NA,NA,NA,NA +"Tfru23129_t",188.951134273571,0.960637555125448,0.19723248481938,4.87058486336656,1.11268398475735e-06,8.14330248800713e-06 +"Tfru02314_t",0,NA,NA,NA,NA,NA +"Tfru02715_t",0,NA,NA,NA,NA,NA +"Tfru25737_t",298.851498454193,-0.581913735161733,0.183663613832211,-3.16836701086231,0.00153297865728342,0.00565860102743249 +"Tfru25738_t",0,NA,NA,NA,NA,NA +"Tfru25739_t",177.821659378327,-0.549267288270566,0.181012348397586,-3.03441888430796,0.00240999554029374,0.00842218928666052 +"Tfru25740_t",3.1957135749724,-0.116788972290359,1.11837878360989,-0.104427027767273,0.916830474878109,0.950026207416061 +"Tfru25741_t",74.3652952338916,-0.0593070254889369,0.267432743996353,-0.221764263428212,0.824497400415602,0.889308006231682 +"Tfru01842_t",139.844872576436,-0.372075299085239,0.193417149479554,-1.92369342680531,0.0543930224501874,0.116523005880654 +"Tfru01843_t",31.4800635843272,-0.151612632071015,0.351640731047378,-0.431157766108125,0.666353660422888,0.778624462603564 +"Tfru01844_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru01845_t",289.372137672606,-0.453748689471585,0.171293546584436,-2.64895379025805,0.00807413707583526,0.0239375372580461 +"Tfru07150_t",0,NA,NA,NA,NA,NA +"Tfru02714_t",0,NA,NA,NA,NA,NA +"Tfru22969_t",157.580873886093,0.239118614123879,0.187502351294798,1.27528328297029,0.202208992515132,0.329003071791251 +"Tfru19071_t",238.55995085298,0.185222299117929,0.300844935250534,0.615673649163089,0.53810993215285,0.671587122550791 +"Tfru19561_t",0,NA,NA,NA,NA,NA +"Tfru19562_t",0.793707910342854,3.08262177957958,2.26646805060142,1.36009937522022,0.173798478772404,0.29328984730255 +"Tfru23873_t",21.6375770491456,-0.280535665517947,0.426487358268139,-0.657781901571793,0.510678285581049,0.647864635298672 +"Tfru11001_t",0.95257681399448,0.84191372327182,2.05320489158308,0.410048566864012,0.681770321029122,0.789957017066102 +"Tfru06797_t",56.1976639462103,-0.0571913380120091,0.282988505181419,-0.20209774236358,0.839840312784783,0.899785829868517 +"Tfru22920_t",0,NA,NA,NA,NA,NA +"Tfru22921_t",0.54958352561669,0.924014500100227,2.70977606673152,0.340992937181985,0.733108898760435,NA +"Tfru22922_t",80.3542845744808,-0.256482906107239,0.290189022105567,-0.883847721896019,0.376778421149341,0.5227489175403 +"Tfru24748_t",458.103457987187,-0.0798287564926434,0.175433674522543,-0.455036678162866,0.64908285189133,0.765518245432545 +"Tfru24749_t",424.991671166284,-0.200024995064588,0.168848760817926,-1.18463999436916,0.236159816879989,0.37068710210227 +"Tfru24750_t",0,NA,NA,NA,NA,NA +"Tfru25996_t",36953.862642888,0.857807251549233,0.375512712488007,2.28436274731079,0.0223502210208163,0.0559255306849137 +"Tfru20940_t",53.2596966304613,-0.38014016592371,0.333901950950814,-1.13847842110904,0.254920764464152,0.391997162890457 +"Tfru20941_t",40.5644416546823,-0.529977342010868,0.384648399425784,-1.37782281897451,0.168257998917679,0.285947879421569 +"Tfru20779_t",0,NA,NA,NA,NA,NA +"Tfru12770_t",24.4765210763343,-0.817275579431176,0.432014651019016,-1.89177746056395,0.058520637606737,0.123497583181403 +"Tfru12771_t",77.8303789998281,-0.512251805291653,0.279366962941817,-1.83361625833452,0.0667109771015473,0.137514199828003 +"Tfru02829_t",4.18373767719825,-2.16295694612699,1.12823143889336,-1.91712167518443,0.0552224755670443,0.117871149565136 +"Tfru19253_t",0,NA,NA,NA,NA,NA +"Tfru15279_t",0,NA,NA,NA,NA,NA +"Tfru01209_t",8.11576851098438,-0.641084936017314,0.812693792306027,-0.788839464613392,0.430205840401958,0.575081036208089 +"Tfru01210_t",555.649857240779,-0.400397198265154,0.191484443397774,-2.09101685317278,0.0365265532554271,0.0837394244884716 +"Tfru03477_t",12.3351327943824,-0.0235069008358135,0.540686500963809,-0.0434760268545837,0.965322074251398,0.980302569277897 +"Tfru11549_t",2.55116973202115,-1.534406532464,1.30265556551711,-1.17790655725245,0.238833860649899,0.373443848343795 +"Tfru19197_t",0,NA,NA,NA,NA,NA +"Tfru03584_t",290.483955334753,-0.359927105031573,0.163980282615831,-2.1949413630101,0.0281678042216118,0.0675954812866901 +"Tfru21970_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru08932_t",19.2090027313885,-0.554322192933166,0.460991356611806,-1.20245680311085,0.22918659271287,0.362333706196243 +"Tfru03872_t",0,NA,NA,NA,NA,NA +"Tfru03902_t",0,NA,NA,NA,NA,NA +"Tfru13711_t",1870.18677554609,-0.512880439969917,0.120852758119041,-4.2438455518303,2.19721605962082e-05,0.000126021771948523 +"Tfru18472_t",0,NA,NA,NA,NA,NA +"Tfru26543_t",42.3539044030923,0.933619314394593,0.410054865685065,2.27681559840737,0.0227972396511507,0.0568470443891646 +"Tfru26544_t",134.389721106756,0.908900212674948,0.20010755688987,4.54205841499112,5.57075989239215e-06,3.58964704992331e-05 +"Tfru26545_t",0,NA,NA,NA,NA,NA +"Tfru03479_t",491.053320040737,0.066995146276568,0.16961411299666,0.394985683048009,0.692853453993349,0.798376083841579 +"Tfru03871_t",0,NA,NA,NA,NA,NA +"Tfru06439_t",0,NA,NA,NA,NA,NA +"Tfru06440_t",272.296134418098,0.597499163386336,0.342641742844986,1.74380143652448,0.0811937199160247,0.161206125951085 +"Tfru06441_t",918.965396499579,0.902750827975547,0.387714480338288,2.3283907972379,0.0198913618750834,0.050824144167641 +"Tfru06442_t",0,NA,NA,NA,NA,NA +"Tfru06805_t",58.9495283246132,0.0801004389275189,0.332196787959829,0.241123460041417,0.8094594306365,0.879409788724445 +"Tfru06806_t",0,NA,NA,NA,NA,NA +"Tfru06807_t",76.4662384539297,-0.00236515484389771,0.337146362896129,-0.00701521684404583,0.994402712699622,0.997242911453825 +"Tfru25406_t",793.116944036647,-0.16855031595693,0.131262586088864,-1.28406974888352,0.19911755165891,0.325250040590206 +"Tfru25407_t",0,NA,NA,NA,NA,NA +"Tfru15073_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15074_t",309.194923726326,0.149168344046338,0.163958552682943,0.909793003203644,0.362931685224932,0.509094333307246 +"Tfru15075_t",0,NA,NA,NA,NA,NA +"Tfru15076_t",582.694704744051,0.260954868240351,0.237457437014923,1.09895428637997,0.271788005935073,0.411487997079349 +"Tfru07821_t",0,NA,NA,NA,NA,NA +"Tfru07822_t",0,NA,NA,NA,NA,NA +"Tfru07823_t",0,NA,NA,NA,NA,NA +"Tfru07824_t",0,NA,NA,NA,NA,NA +"Tfru12108_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru12109_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru12110_t",11.2514615021086,0.0978607483843502,0.548307196169081,0.178477957371497,0.858347630734268,0.912094871282262 +"Tfru12111_t",13.6489390211836,0.440477060381052,0.653485269972195,0.674042829457799,0.500284084687074,0.638041817602958 +"Tfru12112_t",375.689526744265,0.473336034098631,0.174274547618349,2.71603651001986,0.00660686316955985,0.0201364017070338 +"Tfru08062_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08063_t",0,NA,NA,NA,NA,NA +"Tfru08064_t",366.532141982129,0.798554771860396,0.236757210527129,3.37288469517972,0.000743850955902227,0.00299251921500842 +"Tfru08065_t",0,NA,NA,NA,NA,NA +"Tfru05072_t",67.0938597255904,3.91430581323087,0.427588371042357,9.15437855264572,5.46715685182093e-20,2.07733396169359e-18 +"Tfru05073_t",0.68409323871679,-0.113489565422565,2.5831553704463,-0.0439344712753211,0.964956637715105,NA +"Tfru23939_t",0,NA,NA,NA,NA,NA +"Tfru06147_t",0,NA,NA,NA,NA,NA +"Tfru06148_t",74.1656564128227,0.0187292732011037,0.259022674547178,0.0723074658766694,0.942357223340947,0.965568842522223 +"Tfru06149_t",48.3692265909128,-0.625782095767006,0.296897426421767,-2.10773836374732,0.0350536269275483,0.08100993087965 +"Tfru06150_t",62.8553473763485,0.0463000545931421,0.270362251631212,0.171251919651482,0.864025684445984,0.915355967711295 +"Tfru21734_t",5070.2323376518,-0.535253507133448,0.202834003468166,-2.63887463631045,0.00831817348304028,0.0244980553428664 +"Tfru21735_t",0,NA,NA,NA,NA,NA +"Tfru21736_t",77.7289563582148,2.47121859167696,0.383958854694284,6.43615471153698,1.22538135645809e-10,1.66105601196438e-09 +"Tfru21737_t",0.522976957764929,0.925043033499293,2.74298213840062,0.33723990417184,0.735936058184115,NA +"Tfru21738_t",167.431517583226,-0.919336263123082,0.444416295797754,-2.06863760806254,0.038580106045957,0.0876253050452239 +"Tfru07518_t",0,NA,NA,NA,NA,NA +"Tfru16281_t",24.4831201381878,1.22535030869789,0.495422838967163,2.47334239021448,0.0133855831991761,0.0365016878271672 +"Tfru16282_t",0,NA,NA,NA,NA,NA +"Tfru26381_t",1.20296686446314,2.49367642833854,2.18312405485039,1.14225136349818,0.253349551431378,0.390144014383421 +"Tfru26382_t",173.946191395966,0.535391301569171,0.184079598609391,2.90847712410134,0.00363193747238388,0.012007238930192 +"Tfru26383_t",0,NA,NA,NA,NA,NA +"Tfru26384_t",0,NA,NA,NA,NA,NA +"Tfru26385_t",9629.49798551009,-0.435344461702306,0.362432314809691,-1.20117451980213,0.229683511118304,0.362939841758641 +"Tfru26386_t",0,NA,NA,NA,NA,NA +"Tfru00374_t",0,NA,NA,NA,NA,NA +"Tfru13977_t",0.816355574516654,-1.95551924042449,2.10083444607876,-0.930829768178304,0.351941628584012,0.497470703449137 +"Tfru13978_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13979_t",0,NA,NA,NA,NA,NA +"Tfru13980_t",0,NA,NA,NA,NA,NA +"Tfru13981_t",0.522976957764929,0.925043033499293,2.74298213840062,0.33723990417184,0.735936058184115,NA +"Tfru01636_t",85.0385146628927,2.36112989370173,0.413875598095421,5.70492656384482,1.16393258808832e-08,1.19784380829929e-07 +"Tfru25363_t",40.8646785553603,0.249605889979676,0.377221857890728,0.661695192784881,0.508166586185429,0.645263443905243 +"Tfru25364_t",109.01865591681,-1.59362069007689,0.403801740444145,-3.9465424005455,7.92878860107753e-05,0.000404389901759606 +"Tfru25365_t",7.58432985256479,2.22390327308693,1.47182170124081,1.51098687511679,0.130791794873424,0.235135206677427 +"Tfru25366_t",29.6470686846273,6.54390116516168,3.57535031722371,1.83028251347495,NA,NA +"Tfru24319_t",22.5680258494081,-0.344059684469655,0.508700752802196,-0.676349863007653,0.498818541433292,0.636644365969608 +"Tfru24320_t",33.1080425088808,-0.583088520801592,0.42720577560412,-1.36488913329188,0.172287898183741,0.291510029587369 +"Tfru24321_t",60.0236716488785,-1.25880942015606,0.279264506278471,-4.50758829659802,6.55686474773182e-06,4.15945410008859e-05 +"Tfru24322_t",0,NA,NA,NA,NA,NA +"Tfru24323_t",0,NA,NA,NA,NA,NA +"Tfru24324_t",758.234467896671,-0.73221955556688,0.183726907575164,-3.98536918315746,6.73752884530719e-05,0.000349445876148262 +"Tfru24325_t",152.265689598284,-0.838696357951824,0.247884691364541,-3.38341328516504,0.000715908112165117,0.00289049676172746 +"Tfru24326_t",13.2223763769684,-0.466535231254756,0.61925621319374,-0.753379976356889,0.451221611841549,0.594754677720353 +"Tfru24327_t",225.667613554674,-1.39270647659757,0.225594850543859,-6.17348522468517,6.68007955043099e-10,8.18730450923579e-09 +"Tfru14773_t",7.41483849896218,-5.36596306437988,1.34133986239648,-4.00045000883883,6.32221424430302e-05,0.00032950897714835 +"Tfru14774_t",0,NA,NA,NA,NA,NA +"Tfru18755_t",53.3189253081997,2.08460369165189,0.378265980208731,5.51094679595978,3.56908603958639e-08,3.40768539103854e-07 +"Tfru18756_t",0,NA,NA,NA,NA,NA +"Tfru18757_t",32.0263438993551,0.298386493380551,0.46585396621859,0.640515086310419,0.521837784345801,0.657475066917695 +"Tfru18758_t",0,NA,NA,NA,NA,NA +"Tfru18759_t",0,NA,NA,NA,NA,NA +"Tfru18760_t",0,NA,NA,NA,NA,NA +"Tfru18761_t",15.665463665585,0.269832881432711,0.487242418863401,0.553795956563378,0.579718495841351,0.707884108300384 +"Tfru20861_t",0,NA,NA,NA,NA,NA +"Tfru20862_t",0,NA,NA,NA,NA,NA +"Tfru20863_t",28.4585205433882,-1.20681993683915,0.398589457958183,-3.02772668153646,0.00246400834702019,0.00858681202216004 +"Tfru20864_t",29.5329044387536,-0.687671406411486,0.387442712150701,-1.77489828778611,0.0759146830705933,0.152826356671753 +"Tfru20865_t",453.429413361528,-0.719275699251967,0.155347747661373,-4.63010059740194,3.65488124919069e-06,2.44386741430797e-05 +"Tfru29226_t",0,NA,NA,NA,NA,NA +"Tfru12175_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru12176_t",172.159429563268,0.202319878658313,0.278460541870161,0.72656570047418,0.467492046234656,0.608814198122293 +"Tfru12177_t",33.3230319179037,0.380743722727089,0.46008205320236,0.827556128470903,0.407921922586795,0.554130053262063 +"Tfru12178_t",0,NA,NA,NA,NA,NA +"Tfru22207_t",12.9972233212443,3.15729813382914,1.08139206713998,2.91966089799368,0.00350412452619753,0.0116388107593204 +"Tfru22208_t",4.67745719134467,3.05034311349905,1.33285577408717,2.28857703346645,0.0221039395691882,0.055414603736802 +"Tfru22209_t",0,NA,NA,NA,NA,NA +"Tfru22210_t",0,NA,NA,NA,NA,NA +"Tfru22137_t",7.66882384476139,-0.87651952540515,0.764845077207357,-1.1460092396823,0.25179132899324,0.388191008825909 +"Tfru11372_t",1476.29675675514,-0.832234120852017,0.250343228691921,-3.3243724034421,0.000886177744803988,0.00349835596866132 +"Tfru26907_t",50.8598145326251,1.9639672401188,0.802157006548743,2.44835764580392,0.0143509126358206,0.0387049198348596 +"Tfru26908_t",21.3843893674383,-0.391625011369424,0.415342946462943,-0.942895538986516,0.345734336927193,0.491365622685628 +"Tfru19557_t",65.1197661683024,1.38818794292673,0.354123006500392,3.92007273587064,8.85222474567964e-05,0.000446501667361529 +"Tfru19558_t",28.4597122757966,0.309796917849026,0.438432580579298,0.706601041007704,0.479814441840517,0.619368895408282 +"Tfru01991_t",0,NA,NA,NA,NA,NA +"Tfru01992_t",23.7095014336695,-0.323608072585172,0.511111133975728,-0.633146200647118,0.526638174342528,0.661794656185027 +"Tfru01993_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru01994_t",85.190773763955,-0.200699907735862,0.233928475812529,-0.857954154742165,0.39091777895788,0.537210177875077 +"Tfru01995_t",185.237989515448,-0.209758786194388,0.190929219037893,-1.09862066817943,0.271933558736204,0.4116526680544 +"Tfru01384_t",42.6187118859197,-0.899541815565227,0.314944638009421,-2.85619028553939,0.00428758085644041,0.013868486712984 +"Tfru01385_t",6.26697117652085,-0.294996382645619,0.830107014677125,-0.35537150925096,0.722311290041737,0.8201517717055 +"Tfru01386_t",586.35965371612,0.25860027595181,0.154143980512514,1.67765406791747,0.0934146511271083,0.18022585277799 +"Tfru01387_t",40.8740961688446,-0.621897017754753,0.414104329758625,-1.50178825253348,0.133151803158034,0.238528564370191 +"Tfru01388_t",66.1633932855005,-0.251400935863923,0.253668823287554,-0.991059652525528,0.321656452991262,0.466658331255311 +"Tfru01389_t",426.487387508696,0.0582035073974608,0.201983876743709,0.288159175552974,0.773224897118122,0.855824589391868 +"Tfru01390_t",0,NA,NA,NA,NA,NA +"Tfru01391_t",51.3587361193918,0.822865427221708,0.41378925360447,1.98860995072691,0.0467442722095649,0.103122152121175 +"Tfru01392_t",48.1712686827137,0.884221321663658,0.373116647543323,2.36982543525076,0.0177964855087413,0.0463391908883806 +"Tfru01393_t",0,NA,NA,NA,NA,NA +"Tfru01394_t",0,NA,NA,NA,NA,NA +"Tfru01395_t",0,NA,NA,NA,NA,NA +"Tfru01396_t",0,NA,NA,NA,NA,NA +"Tfru02962_t",0.524535005013881,-2.53832154473351,3.20745160642307,-0.791382647722699,0.428720732702308,NA +"Tfru02963_t",77.8974606644295,9.6906199636197,1.22216524371326,7.92905870418724,2.20813154399641e-15,5.3309583554088e-14 +"Tfru12647_t",496.576964099889,-1.84246431527899,0.218688069990617,-8.42507922520896,3.60506236622284e-17,1.05880965559143e-15 +"Tfru12648_t",265.20033664265,-1.95491836605779,0.209485998037885,-9.33197628656902,1.03914931988111e-20,4.15288603195343e-19 +"Tfru22016_t",0,NA,NA,NA,NA,NA +"Tfru22017_t",0,NA,NA,NA,NA,NA +"Tfru22018_t",0,NA,NA,NA,NA,NA +"Tfru22019_t",19.8221569828274,1.13487509818008,0.498851130470636,2.27497750102199,0.0229072795447567,0.0570489248253111 +"Tfru30608_t",322.416073816483,-0.11868074498423,0.281890351369184,-0.421017407682737,0.673742370501227,0.784268919786615 +"Tfru30609_t",0.987528803393014,-0.912828281415871,2.04518473763539,-0.446330477935832,0.655358543706967,0.770483515873183 +"Tfru30610_t",331.127896300132,-0.258680498407652,0.30522641612444,-0.847503639076206,0.396714459556407,0.542507439432537 +"Tfru30611_t",70.1739854834318,-0.463236062869686,0.385456633684778,-1.2017851617739,0.229446775835462,0.362616965129414 +"Tfru30612_t",37.6175633934891,-0.428616546398263,0.485427081400179,-0.882967932406963,0.377253597788875,0.52310628987082 +"Tfru30613_t",130.495398193098,-0.0374166639998741,0.238466502816656,-0.156905324470841,0.875319463518123,0.922560497011189 +"Tfru30614_t",43.3854346080222,0.418170994804977,0.373582160098564,1.11935482865309,0.262988793639028,0.401698689710718 +"Tfru30615_t",849.155423909164,-0.740631510689748,0.164655142780841,-4.49807700009433,6.85708642579319e-06,4.33140260257555e-05 +"Tfru30616_t",20.6878616147088,0.650691126969568,0.529967641260177,1.22779406950645,0.219524282498623,0.350574671208733 +"Tfru30617_t",308.118807756521,-1.17584795418771,0.234548583195281,-5.01323835842025,5.35215280223594e-07,4.19108396480197e-06 +"Tfru13973_t",0,NA,NA,NA,NA,NA +"Tfru03296_t",86.3071160399925,2.21502060802532,0.346961610153831,6.3840509820186,1.72463631588211e-10,2.28657350411384e-09 +"Tfru19068_t",0,NA,NA,NA,NA,NA +"Tfru19069_t",0,NA,NA,NA,NA,NA +"Tfru27745_t",239.30160298489,0.287571587261918,0.169823227318542,1.69335839273925,0.0903872695526344,0.175565621644503 +"Tfru27746_t",1811.56804893164,-0.218741458398302,0.325968761016808,-0.671050372176684,0.50218844062465,0.639923549574655 +"Tfru27747_t",261.188331606135,0.249731167452,0.178125684373087,1.40199414997859,0.160916993618415,0.276069169580693 +"Tfru27748_t",91.3685827761042,-0.564107047614175,0.233708547397707,-2.41372022502122,0.0157905820821074,0.041886123858903 +"Tfru27749_t",2.60141901950207,-0.566087009175025,1.23568968631289,-0.458114213823489,0.646870387656802,0.7637541163682 +"Tfru31271_t",62.7315307867307,-0.396795521221908,0.389979910586599,-1.01747682496018,0.30892665151349,0.45270943300628 +"Tfru31272_t",9.79007384446295,-0.718046919147162,0.599575411592655,-1.19759233828454,0.231075760297825,0.364650649800122 +"Tfru25398_t",1836.8499084887,-0.264361366270777,0.187126525632181,-1.41274127426707,0.15773181095333,0.272190448695776 +"Tfru25399_t",1511.08820586302,-0.0699997069573015,0.17265374827062,-0.405434041591632,0.685158492607488,0.792201232928063 +"Tfru16056_t",306.851950676768,-0.158085907406584,0.21481477474021,-0.73591729245704,0.461781032850803,0.604154069636442 +"Tfru16057_t",0.996254710328826,-0.0440727161714924,1.80191944077524,-0.024458760571744,0.980486678161731,0.989506306694604 +"Tfru16058_t",221.118051706502,0.154950419108368,0.239823695691195,0.646101373184938,0.518213706139149,0.654430732702324 +"Tfru16059_t",106.144260444386,-0.251524610402501,0.228853423262398,-1.09906422555064,0.271740052751435,0.411443229861113 +"Tfru16060_t",218.484773814554,-0.267303824904864,0.16963265614305,-1.57578045986292,0.115076407115687,0.212931789272349 +"Tfru16061_t",166.552497064403,0.277673103589815,0.26832571220244,1.0348359883615,0.300745512831453,0.443976555222158 +"Tfru16062_t",0.355349903284276,-0.0642985193854191,3.66846126281734,-0.0175273813130137,0.986015889070386,NA +"Tfru00697_t",164.22915651247,1.83106795006055,0.32814385685746,5.58007688334061,2.40412293773079e-08,2.35055794436064e-07 +"Tfru00698_t",0,NA,NA,NA,NA,NA +"Tfru00699_t",0,NA,NA,NA,NA,NA +"Tfru00700_t",0,NA,NA,NA,NA,NA +"Tfru00701_t",68.5701823485368,0.0427365865102181,0.266859664423446,0.160146294879562,0.872765833717241,0.921387771054854 +"Tfru00702_t",89.7747141819542,-0.361607323268291,0.238463155529862,-1.51640752410914,0.129416337692888,0.233124407402354 +"Tfru01378_t",2943.06193886042,-0.930479828028864,0.294422312661639,-3.16035771751513,0.00157575546017315,0.0057992776185948 +"Tfru01379_t",232.261760606041,0.224109674346196,0.168339400438924,1.33129661720226,0.183091430871647,0.305152384786078 +"Tfru03654_t",292.006826113609,0.0450835377111573,0.178994979055497,0.251870404125578,0.801141236323792,0.873810422036761 +"Tfru03655_t",110.314847435541,-0.0719863649129462,0.247837713151084,-0.290457670859247,0.771466129304505,0.854674014586033 +"Tfru03656_t",10864.5869499251,1.368422345074,0.84143184739956,1.62630205797784,0.103885414205679,0.196447449930131 +"Tfru03657_t",199.821857339125,0.135891783882566,0.193188440166563,0.703415710408985,0.481796718698073,0.621038768869031 +"Tfru03658_t",0,NA,NA,NA,NA,NA +"Tfru03659_t",8.34596472504986,0.295326975645724,0.700278221998809,0.421728059460096,0.673223521092241,0.783970401676374 +"Tfru03660_t",0,NA,NA,NA,NA,NA +"Tfru03661_t",1.56017272246576,-0.369576584150996,1.42568044008625,-0.259228206938601,0.795459168769695,0.870616989293123 +"Tfru03662_t",165.11309696997,-0.345281820006395,0.261516686042679,-1.32030512175444,0.186733166254726,0.309837504506285 +"Tfru03663_t",0,NA,NA,NA,NA,NA +"Tfru03664_t",382.346770452421,-0.105439420817982,0.165962317559074,-0.635321453500737,0.525218784390401,0.660433554031755 +"Tfru21739_t",157.113383903888,0.219809936605973,0.199160703304231,1.10368126321686,0.269731426207207,0.409371308728963 +"Tfru21740_t",1481.15230293345,0.235305362775755,0.234146030059521,1.00495132339395,0.31492028927908,0.459419028000423 +"Tfru21741_t",40.6333541410828,0.187097982920431,0.334952750471869,0.558580225589593,0.576448238622608,0.705237608941888 +"Tfru21742_t",85.6743238766385,0.302102177454404,0.305768386877108,0.988009848041689,0.323147825157604,0.468161099688924 +"Tfru21743_t",61.0445092156863,-0.417807189225764,0.267774673376657,-1.56029389918467,0.118690444444216,0.218032680510675 +"Tfru21744_t",0.325534379423615,1.7930591610128,4.03874525235237,0.443964411958994,0.657068313926604,NA +"Tfru21745_t",282.264042573174,0.405605554664038,0.226731972002214,1.78892086141287,0.0736275615808002,0.14903116294916 +"Tfru11626_t",0,NA,NA,NA,NA,NA +"Tfru11627_t",0,NA,NA,NA,NA,NA +"Tfru05330_t",265.65463519522,-0.155635640025595,0.178005049146928,-0.874332726916814,0.381937081645555,0.527914816028984 +"Tfru05331_t",638.984335919217,-0.237758848217566,0.137484683991839,-1.72934789035613,0.0837468502942047,0.16524903099844 +"Tfru05332_t",387.454359099239,0.378037475916179,0.209967010104626,1.80046129974325,0.0717878290852645,0.146072575574181 +"Tfru05333_t",404.689932050415,-0.244303696147664,0.205259726872028,-1.19021738882064,0.233960960378682,0.3681355781433 +"Tfru05334_t",0,NA,NA,NA,NA,NA +"Tfru05335_t",1625.93714914627,-0.085209037338632,0.175472548719129,-0.485597536256353,0.627252543604588,0.748100859083111 +"Tfru05336_t",81.1629395906558,0.247166384586863,0.295725612273324,0.835796340691722,0.403269485467275,0.549277042465926 +"Tfru05337_t",0.468173530919239,2.32078854886818,3.30621704190527,0.701946823046676,0.482712326965295,NA +"Tfru05338_t",619.778933788077,0.231176309706372,0.14239536256303,1.62348201195136,0.104486405598785,0.197333819181504 +"Tfru05339_t",0,NA,NA,NA,NA,NA +"Tfru05340_t",62.5283715408959,-0.922109032463925,0.292244990058645,-3.1552603597375,0.00160354937205955,0.00588608085069586 +"Tfru05341_t",0,NA,NA,NA,NA,NA +"Tfru14769_t",329.356105968104,-0.855010413398221,0.182848833837116,-4.67605067779582,2.9245236373987e-06,1.99849890091551e-05 +"Tfru14770_t",46.2052698145623,0.3418576175967,0.407944848776771,0.837999593870999,0.402030931592616,0.548052808760047 +"Tfru14771_t",218.100089732368,0.136725575244366,0.186730582008493,0.732207728234616,0.464041788030676,0.605978248111013 +"Tfru14772_t",67.4030809117695,-0.245451520684771,0.250966478206986,-0.978025122870527,0.328061898805838,0.473556843090471 +"Tfru21905_t",0,NA,NA,NA,NA,NA +"Tfru21906_t",40.9287970412327,-0.508707151300571,0.332116830433585,-1.53171144815649,0.125593656091853,0.227646532064519 +"Tfru13243_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13244_t",0,NA,NA,NA,NA,NA +"Tfru13245_t",2.28329685664113,-0.708180115992454,1.29475070098383,-0.546962527577188,0.584404476587991,0.71222878260305 +"Tfru13246_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru13247_t",1.53908310554091,0.889040657504026,1.5327393805689,0.580033806643661,0.561891820176219,0.692501731127473 +"Tfru13248_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13249_t",1871.10417810139,-1.17875008092907,0.18355236118561,-6.4218737003176,1.34607086754681e-10,1.81367044043935e-09 +"Tfru13250_t",0,NA,NA,NA,NA,NA +"Tfru13251_t",6957.20121000703,-0.666401674405301,0.237093297833849,-2.81071494004147,0.00494315596182719,0.0156941169564041 +"Tfru13252_t",962.04430170843,0.308422702666782,0.146646696885341,2.10316842600233,0.0354510492488477,0.0817090094942546 +"Tfru23257_t",99.9476744778207,-0.0774570319204434,0.276673467515649,-0.279958293854333,0.779509502555024,0.859980017418968 +"Tfru23258_t",3.82590558078786,0.909740649476537,0.997349554089738,0.912158275647739,0.361685404727264,0.507971092425238 +"Tfru11108_t",43.551190280012,0.0475782001564173,0.563172975637296,0.0844823921150992,0.932672901845116,0.960085531635789 +"Tfru11109_t",30.3805057359824,-1.34704222305764,0.523057326434037,-2.57532426176143,0.0100146150526186,0.0286644180685002 +"Tfru11110_t",0,NA,NA,NA,NA,NA +"Tfru11111_t",64.4299120804965,0.275838024197964,0.267299458934542,1.03194381798398,0.302098437325048,0.445444922080286 +"Tfru11112_t",0,NA,NA,NA,NA,NA +"Tfru06423_t",26.6378168568358,-0.611744173583433,0.491732222261189,-1.2440595630898,0.213477642047325,0.343171213117305 +"Tfru06424_t",0,NA,NA,NA,NA,NA +"Tfru06425_t",0,NA,NA,NA,NA,NA +"Tfru04059_t",396.817561651781,0.425179100178172,0.187661710856704,2.26566782449742,0.0234717289646137,0.0582434077201523 +"Tfru04060_t",62.2860376013572,-0.0169083550701395,0.313276933825576,-0.053972550304497,0.956957034038273,0.975392741347933 +"Tfru04061_t",132.752720284002,-0.0893802616593547,0.228322451077498,-0.391465058462503,0.695453511408653,0.800440288066167 +"Tfru04062_t",788.949060697712,-0.537627250710444,0.373422863077746,-1.43972772925398,0.149944444990934,0.26171866158923 +"Tfru15789_t",0,NA,NA,NA,NA,NA +"Tfru15790_t",241.496604632006,-0.517977759365872,0.263532160272355,-1.96552010513841,0.0493540710207081,0.10771836448639 +"Tfru15791_t",64.6114428713103,0.0261345432288283,0.253575893554806,0.103063989492281,0.917912185004594,0.950560848471249 +"Tfru15792_t",0,NA,NA,NA,NA,NA +"Tfru15793_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru15794_t",0,NA,NA,NA,NA,NA +"Tfru15795_t",10618.827864853,2.33924578952097,0.401617993376637,5.82455424831333,5.72652351978396e-09,6.14969272422097e-08 +"Tfru15796_t",0.971168111662075,3.35206124882867,3.52805638885936,0.950115553542047,0.342053540991985,0.487682885099103 +"Tfru15797_t",4817.90144490182,2.21742617008421,0.477483769753711,4.64398228913199,3.41756871748841e-06,2.29754244209645e-05 +"Tfru15798_t",104.253913600166,0.230080535274766,0.216010536924518,1.06513570379747,0.286814524313315,0.428469998940791 +"Tfru15799_t",10.4270946909161,0.74133668540563,0.706441269613483,1.0493960606396,0.293995870539776,0.436617907096491 +"Tfru15800_t",3.87980945105466,5.37665953834286,1.53847151060566,3.49480604696163,0.000474406362920823,0.00201045529296876 +"Tfru15801_t",10.7961232357851,3.26080775002866,0.788494131319198,4.13548765996918,3.54201649309795e-05,0.000194671731619676 +"Tfru15802_t",213.376208696865,0.202079686327232,0.227808087276543,0.887061072954453,0.375046020430103,0.521058163438946 +"Tfru15803_t",126.147127486028,0.124703082373426,0.294671899008783,0.423192991231611,0.672154459983081,0.783247094121736 +"Tfru15804_t",111.587653819146,0.172198427468107,0.235935514816876,0.7298537806051,0.465479566681639,0.607386936479332 +"Tfru15805_t",293.066903717516,0.279257985967506,0.213861482580725,1.30578906775369,0.191624298783017,0.316136249899435 +"Tfru15806_t",446.936899976825,-0.81671243742396,0.159811102294871,-5.11048622840374,3.21330735704352e-07,2.61504795093214e-06 +"Tfru15807_t",0,NA,NA,NA,NA,NA +"Tfru15808_t",778.688025569669,0.420649700340654,0.167505063040547,2.51126558627562,0.0120299152645098,0.0333652426763299 +"Tfru01619_t",54.5249488840617,-0.683694131144213,0.293953468573439,-2.32585835595747,0.0200261082731864,0.0510926018187313 +"Tfru01620_t",172.720356757757,-0.377215958890485,0.198561800549067,-1.89974082551326,0.0574671398974932,0.121710475149607 +"Tfru01621_t",1.95395063924563,-0.168886627775029,1.47957196527423,-0.114145598685852,0.90912237589083,0.944026534563761 +"Tfru01622_t",15.3750185395674,-0.42364634001234,0.597251200146871,-0.709326896133755,0.478121641457153,0.618017923981234 +"Tfru01623_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru09966_t",0,NA,NA,NA,NA,NA +"Tfru09967_t",39.9827497642636,-0.0218396938536669,0.321661305125906,-0.0678965530066427,0.945867982725123,0.967969520937777 +"Tfru09968_t",261.215024205673,-0.171536321543137,0.247396176941939,-0.693366905113468,0.48807932577574,0.626726450792419 +"Tfru09969_t",0,NA,NA,NA,NA,NA +"Tfru09970_t",655.275704620392,-0.0765781319096809,0.159228724337938,-0.480931642378519,0.630565082886994,0.750873677103124 +"Tfru09971_t",54.3001906971499,0.308265788667781,0.300502128585387,1.02583562425645,0.30496907104353,0.448466246793758 +"Tfru09972_t",939.844426351833,-0.855746275300258,0.15708111833353,-5.44779846476045,5.09970943362155e-08,4.73771262451018e-07 +"Tfru27954_t",50.3830888573269,-0.0515139952498879,0.484006149460109,-0.106432522205244,0.915239190626316,0.948907243272824 +"Tfru27955_t",19.0488853959231,4.14151676825736,0.704145777511986,5.8816184098851,4.06274137388983e-09,4.45488250600952e-08 +"Tfru27956_t",1594.8478031369,-0.0276192878302036,0.188734573855768,-0.146339312749928,0.883653532806508,0.928371329650251 +"Tfru27957_t",18.0017931040338,-2.08873526183844,0.550851719599945,-3.79182852212095,0.000149542159837615,0.000719267899670283 +"Tfru27958_t",0.34743332878183,-1.94360805271459,3.66213660969954,-0.530730625276716,0.595605460502085,NA +"Tfru27959_t",3.88115981497975,0.40869392093324,0.943740526300627,0.433057508439615,0.664972991260489,0.777637552908056 +"Tfru27960_t",58.7058480895568,-0.0325316092618043,0.402585105004351,-0.0808067880739221,0.935595609624381,0.961713478015566 +"Tfru27961_t",3409.98909739175,-1.12869934655441,0.160114931640011,-7.04930723820362,1.7981073509719e-12,3.05092058489394e-11 +"Tfru27962_t",180.961281510331,0.247036817548035,0.203487185803259,1.21401658081252,0.224741392595132,0.356795395218764 +"Tfru27963_t",36.4162504910636,-0.0769733183037939,0.37701711084609,-0.204163991737809,0.838225349101114,0.898916254390863 +"Tfru27964_t",48.133696123846,0.0150433196819901,0.312495047620486,0.0481393858767952,0.961605157185933,0.978022376727381 +"Tfru27965_t",336.14948099367,-0.741497908783338,0.201739011895582,-3.67553058685114,0.000237355600003295,0.00108585820279512 +"Tfru27966_t",113.230172644625,-0.143365328089775,0.2558002769722,-0.560458064341174,0.575167035949763,0.704093549095049 +"Tfru01813_t",0,NA,NA,NA,NA,NA +"Tfru01814_t",4.61200001303595,2.92626335423314,1.3486409079116,2.16978688475684,0.0300229943793139,0.0711698563932894 +"Tfru01815_t",9.91893419337119,1.88100246739189,0.858460050812623,2.19113570353253,0.0284419737182315,0.0681146465290552 +"Tfru29355_t",15.150141749614,2.30434187334394,0.902382713270861,2.55361925650305,0.0106609763132722,0.0301329439114715 +"Tfru05040_t",0,NA,NA,NA,NA,NA +"Tfru05041_t",0,NA,NA,NA,NA,NA +"Tfru28869_t",0,NA,NA,NA,NA,NA +"Tfru12800_t",0.513409474502536,-2.51028518389237,2.63648035081407,-0.952134986751282,0.341028527399003,NA +"Tfru12801_t",0,NA,NA,NA,NA,NA +"Tfru12802_t",0,NA,NA,NA,NA,NA +"Tfru12803_t",78.8698934623764,5.55407870570466,0.801659141846813,6.92822973727901,4.2613932479833e-12,6.92592453811665e-11 +"Tfru12804_t",175.506532581325,-0.352780724606907,0.205335390967237,-1.71807072782303,0.0857837153065758,0.168540035867015 +"Tfru12805_t",48.4157937669555,0.010416493629951,0.300382637539314,0.0346774158296272,0.972336969651234,0.984567069984373 +"Tfru12806_t",2.9907671514109,0.978329560735618,1.07545290772399,0.909690748622438,0.362985624512231,0.509094333307246 +"Tfru12807_t",349.484512075221,-0.00729507563898751,0.151888147923118,-0.0480292619189754,0.961692921872476,0.978022376727381 +"Tfru12808_t",0,NA,NA,NA,NA,NA +"Tfru12809_t",1.20467057290619,1.16777674392627,1.9382051114726,0.602504212280724,0.546838560135902,0.678997280062222 +"Tfru23019_t",0,NA,NA,NA,NA,NA +"Tfru23020_t",130.333769389734,-0.747367428061398,0.228043064590197,-3.27730829878316,0.00104801868978205,0.00405019137926479 +"Tfru08963_t",0,NA,NA,NA,NA,NA +"Tfru08964_t",1803.44928124219,-0.604188098893683,0.167309024759043,-3.6112104518201,0.000304771219052238,0.00135440426576432 +"Tfru08965_t",489.34399225677,-1.10160318674025,0.258635174926642,-4.25929376022694,2.05073814471806e-05,0.000118044032095654 +"Tfru08966_t",81.8114774316657,-0.361378882298191,0.27891240716226,-1.29567159085883,0.195088652915343,0.320188035512274 +"Tfru08967_t",370.33082553049,0.0380397669278012,0.179871196772039,0.211483370380924,0.832510107279227,0.895275392864787 +"Tfru08968_t",0,NA,NA,NA,NA,NA +"Tfru08969_t",2.48927641372193,-1.45361943459246,1.26450279830585,-1.14955810025884,0.250325923890321,0.386525057035007 +"Tfru08970_t",2.73990819207001,-0.6519555122767,1.48279953941852,-0.439678793353527,0.660169764019894,0.774248013690719 +"Tfru08971_t",2.17332564369185,3.44096897006478,1.62704096694127,2.1148631411129,0.0344416134621304,0.0798015642698498 +"Tfru08972_t",474.793395197691,0.706498691914173,0.333918066586248,2.11578456696559,0.0343631342656479,0.0796956232044849 +"Tfru08973_t",31.372694489339,0.0919942533638514,0.350997498531935,0.262093757786372,0.793249159181067,0.86917582288726 +"Tfru08974_t",0,NA,NA,NA,NA,NA +"Tfru08975_t",14.463380583306,0.972308954808275,0.673923897331077,1.44275779306667,0.149088712625792,0.260597952550919 +"Tfru08976_t",64.5748258968886,-0.486506829675741,0.319559094996131,-1.52243149168272,0.127900999091673,0.230915162929303 +"Tfru08977_t",211.53465984478,0.746503402828581,0.243678843534255,3.06347236387652,0.00218784411995889,0.00772789637068812 +"Tfru18333_t",12.303850120832,3.53115202457456,0.905752870531123,3.89858220653933,9.67575529440283e-05,0.000484220490806653 +"Tfru18334_t",13.9349328032999,0.974904845353028,0.578676856253016,1.68471373067453,0.0920438160895187,0.178072320546631 +"Tfru18335_t",1.40872262045801,-0.562489204852704,1.79460819273402,-0.313432874724468,0.753951811157228,0.841946087206166 +"Tfru18336_t",57.9316917597571,0.886288831857061,0.304941154014788,2.90642578146104,0.00365583614177229,0.0120781831787517 +"Tfru18337_t",0,NA,NA,NA,NA,NA +"Tfru18338_t",131.903571086036,0.0801209273282339,0.250788085157665,0.319476610214013,0.749365125174769,0.838860556865009 +"Tfru18339_t",7.89370291538487,6.40076829248702,1.76556115780682,3.62534498688114,0.000288575955085247,0.0012903755993622 +"Tfru18340_t",0,NA,NA,NA,NA,NA +"Tfru18341_t",0.325534379423615,1.7930591610128,4.03874525235237,0.443964411958994,0.657068313926604,NA +"Tfru18342_t",12.6797381542492,2.01138555789639,0.615235491170358,3.26929376923647,0.00107816299982502,0.00415377654262074 +"Tfru18343_t",298.891233505395,-0.821964978923821,0.163759954859845,-5.01932831886346,5.18524627189251e-07,4.07178286192822e-06 +"Tfru25367_t",47.2853330884145,-0.00139760907003355,0.38936448198081,-0.00358946214848233,0.997136029720154,0.998302791446242 +"Tfru25368_t",674.75064738834,0.195536375514673,0.169484487152008,1.15371252437575,0.248618047444266,0.384718856765044 +"Tfru25369_t",51.0607216568343,0.166174973152058,0.279365745857146,0.594829450698053,0.551957479289718,0.683368031004852 +"Tfru25370_t",101.385688398218,0.290326418926744,0.246126848199975,1.17958045231562,0.238167121339464,0.372765939966236 +"Tfru25371_t",1001.44502240276,-1.86067704984254,0.358273927179144,-5.193448109642,2.06434498624073e-07,1.73228499407827e-06 +"Tfru25372_t",0,NA,NA,NA,NA,NA +"Tfru25373_t",0,NA,NA,NA,NA,NA +"Tfru25374_t",144.506155585858,-0.79650243167176,0.304221702074856,-2.61816440523291,0.0088404201004219,0.0257648915024668 +"Tfru25375_t",277.265722863325,-0.908817041651985,0.229847652677524,-3.9539974894895,7.68562159074986e-05,0.000393242366714636 +"Tfru25376_t",0.782169650549255,-1.84098088665509,2.99516899839699,-0.614650087404209,0.538785828885672,0.672035309317754 +"Tfru25377_t",0,NA,NA,NA,NA,NA +"Tfru25378_t",10244.1513472781,0.602292551262798,0.279528398238903,2.15467392600318,0.0311873595624702,0.0734631204092288 +"Tfru25379_t",115.67785410967,-0.135096455144622,0.366121723156293,-0.368993279011066,0.71213273441646,0.813222298001856 +"Tfru25380_t",3.41819949334731,4.14945259155673,1.5289590368646,2.71390697298595,0.00664948360965887,0.0202457989453299 +"Tfru25381_t",126.222170839013,0.714501796471861,0.22218180778654,3.21584293327163,0.00130061995206865,0.00489643775031069 +"Tfru25382_t",93.2461026129943,1.25660246366398,0.249892401473729,5.02857412331558,4.94140497857517e-07,3.90358783694008e-06 +"Tfru25383_t",115.991086152891,5.93073734316007,0.486954350383238,12.179247065957,4.00966338117535e-34,4.0240478237984e-32 +"Tfru25384_t",118.285792265193,-0.372078104992481,0.207476133465161,-1.79335376449436,0.0729163755871984,0.147934773424123 +"Tfru25385_t",0.900225810407419,-1.99349541030915,2.07108972823731,-0.9625345455244,0.335781158843718,0.481236593883282 +"Tfru25386_t",591.893531647043,-0.607924158557525,0.380508281376689,-1.59766341052562,0.110117905986692,0.20560977273337 +"Tfru25387_t",236.192122125552,0.610727912655751,0.18398494320952,3.31944506980802,0.000901965477824495,0.00355387102001975 +"Tfru31276_t",141.278764316772,0.0311679919417401,0.275776178641806,0.113019159578039,0.910015365389178,0.94475779920257 +"Tfru31277_t",4.6810212066177,3.08696423068671,1.202088567143,2.56800065740871,0.0102286962077837,0.0291727056365745 +"Tfru31278_t",24.5130520432866,4.80746019585048,1.92411109878173,2.49853566090564,NA,NA +"Tfru31279_t",0,NA,NA,NA,NA,NA +"Tfru31280_t",80.6976619446312,1.20771749061059,0.264518327255622,4.5657233022024,4.97774996217216e-06,3.23843151608758e-05 +"Tfru31281_t",2144.38434516866,-0.0117785196631352,0.130486972423658,-0.0902658667326063,0.928075943791625,0.957280380955619 +"Tfru31282_t",0.689762435919001,-0.102086518213769,2.25347538874552,-0.0453018119139964,0.963866743224372,NA +"Tfru31283_t",0,NA,NA,NA,NA,NA +"Tfru31284_t",0,NA,NA,NA,NA,NA +"Tfru31285_t",53.5935714256453,0.189123650014721,0.309318645369645,0.61142014180462,0.540921471613849,0.673630990747201 +"Tfru31286_t",154.626085539779,3.46165111219431,0.523004052305128,6.61878449495212,3.62164367071884e-11,5.25631552209388e-10 +"Tfru31287_t",129.209106819687,-0.547453419604984,0.265787131233751,-2.05974389002121,0.0394230311745279,0.0891830018888037 +"Tfru17080_t",164.685734271911,-1.59455203551792,0.318721344972742,-5.00296594711688,5.64549163759586e-07,4.38605397086028e-06 +"Tfru17081_t",102.994707670503,-0.754712393211008,0.334345345141262,-2.25728398549153,0.0239903353916833,0.0592650204627422 +"Tfru17082_t",254.671843323049,-0.443635622533192,0.225923887942332,-1.96365079661887,0.0495706022823557,0.108075019881064 +"Tfru02219_t",0,NA,NA,NA,NA,NA +"Tfru02220_t",1011.55056160528,1.52907922532497,0.140547075737533,10.8794808949314,1.44382841270527e-27,9.47591785230028e-26 +"Tfru02221_t",0,NA,NA,NA,NA,NA +"Tfru06126_t",27.2113751958683,1.9561788645594,0.428634641365594,4.56374421425011,5.02492955337687e-06,3.26627718282237e-05 +"Tfru06127_t",19.2859711755645,0.151985859766128,0.565799187551774,0.268621558867509,0.78822092030374,0.865998242336657 +"Tfru06128_t",2.73394446730528,0.226204358198734,1.51187395823423,0.149618529353416,0.881065588433916,0.926957872750613 +"Tfru06129_t",1.90053105307172,-0.7268873626814,1.48486916523382,-0.489529569136778,0.624466825710446,0.745853047186016 +"Tfru06130_t",151.786049458145,0.150587023032154,0.210443032379852,0.715571436740858,0.474256015906388,0.614832279209 +"Tfru03971_t",608.134189157526,4.41294795515725,0.544506897896763,8.10448494262037,5.29694292986729e-16,1.37523877923933e-14 +"Tfru03972_t",433.946155226377,0.126496866930238,0.174004804735473,0.726973413880966,0.467242242351483,0.608615618837385 +"Tfru03973_t",0.54958352561669,0.924014500100227,2.70977606673152,0.340992937181985,0.733108898760435,NA +"Tfru03974_t",11.4135424810273,-0.349439963141894,0.579109909718263,-0.603408709258484,0.546236829833447,0.678626637708035 +"Tfru03152_t",78.5412720009119,-0.660120794857128,0.261230489916863,-2.52696687537206,0.0115052353636743,0.032133678701988 +"Tfru03153_t",259.222801252256,-0.999581841356084,0.22490388399975,-4.44448456638124,8.81028320377929e-06,5.46188748201054e-05 +"Tfru03154_t",0,NA,NA,NA,NA,NA +"Tfru03155_t",0,NA,NA,NA,NA,NA +"Tfru03156_t",48.1775181217682,0.542529804760066,0.33233811932771,1.63246336549522,0.102581909885562,0.194459016029043 +"Tfru03157_t",168.319175642615,0.377741395534694,0.187037061788752,2.01960719400806,0.0434241483506794,0.0969215558081386 +"Tfru03158_t",0,NA,NA,NA,NA,NA +"Tfru03159_t",2.96727667805704,-0.388130464052999,1.03645789991467,-0.374477790255594,0.708048877373684,0.810092175658332 +"Tfru03160_t",0,NA,NA,NA,NA,NA +"Tfru11687_t",66.7321486167477,8.50284115640211,1.26145306662319,6.74051328692198,1.57828069636037e-11,2.41105269519079e-10 +"Tfru11688_t",26779.486925243,1.12352254865058,0.348849042736497,3.22065538674629,0.00127897837865665,0.00482934640025912 +"Tfru11689_t",461.167329220969,-0.504428524260628,0.191977678805055,-2.62753736476236,0.00860053958113165,0.0251838382605948 +"Tfru11690_t",58.204685586817,-0.00501133034340395,0.343430652821158,-0.0145919716316459,0.988357704282106,0.994450002850199 +"Tfru11691_t",202.887679502766,0.466225063693538,0.214577688470156,2.17275648282688,0.0297986501652211,0.0707279447128697 +"Tfru11692_t",0,NA,NA,NA,NA,NA +"Tfru11693_t",91.5840130139446,-0.645329832716065,0.260224362757686,-2.47989783076913,0.0131420033390204,0.0359513549354939 +"Tfru11694_t",5.68621609228741,5.93173365257907,1.51932292557369,3.90419544965353,9.45393578381326e-05,0.000474392562425428 +"Tfru11695_t",23.3392950003114,-0.343182960718743,0.406185133985229,-0.844892961373675,0.398170604696358,0.54395422616924 +"Tfru31254_t",112.437780865305,-0.25666293180276,0.22040880458334,-1.1644858393382,0.244227178732987,0.379569740280851 +"Tfru31255_t",43.7575923730256,-0.0829973172915275,0.335203239489934,-0.247602968926617,0.804441613376637,0.876314093084637 +"Tfru02257_t",301.049669171138,-0.138934659912091,0.198168629983684,-0.701093104007077,0.483244913637229,0.622280896019331 +"Tfru02258_t",91.3202119085962,-0.315494231350415,0.259865831844035,-1.21406584740916,0.224722580370383,0.356795395218764 +"Tfru02259_t",508.819670326217,-1.54368174561125,0.27606540119678,-5.59172478303759,2.24824988039923e-08,2.21114057576058e-07 +"Tfru02260_t",66.9320638206422,0.688901091178627,0.269436387197876,2.55682277491604,0.0105633019833221,0.0299400580530329 +"Tfru02261_t",59.3276098692079,0.0410662455500251,0.299260130281615,0.137225916166581,0.890852226545672,0.932999804861816 +"Tfru02262_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02263_t",30.0779167930435,0.059520646907025,0.409288139834142,0.145424802514788,0.884375483240611,0.928781009616371 +"Tfru02264_t",5.78797907334781,1.2302556556865,0.834088931170095,1.47496940639249,0.140220768681503,0.248270611148005 +"Tfru27999_t",155.693690294726,-0.161761623707906,0.222566976888476,-0.726799752458165,0.467348634752143,0.608689951140397 +"Tfru28000_t",524.053415350433,-0.308048447668106,0.176468620479997,-1.74562733493473,0.0808757291922332,0.160703082599856 +"Tfru28001_t",0,NA,NA,NA,NA,NA +"Tfru28002_t",103.733394553343,-0.541943769864156,0.375939056751838,-1.44157346817492,0.149422737691439,0.261011619539057 +"Tfru28003_t",476.613654976925,-0.491765471016971,0.194281835496238,-2.53119634041389,0.0113674197614115,0.0318122863899448 +"Tfru13352_t",68.4234950713193,-0.911704348766274,0.319572254573105,-2.85288956009075,0.0043323675180476,0.0139951479581272 +"Tfru13353_t",5410.39384398002,-2.57784567954919,0.287956186911064,-8.95221494353711,3.48419702688316e-19,1.2221995213424e-17 +"Tfru13354_t",29.1989814649427,0.36399245098084,0.379338038597487,0.959546404380157,0.337283554179366,0.482603794037096 +"Tfru09094_t",465.389061787142,-0.0449315141423736,0.154344628356226,-0.291111615745202,0.770965956397667,0.85429608873495 +"Tfru09095_t",2.62697896506886,0.557629262084615,1.21624006390039,0.458486181006356,0.64660318837879,0.763680371308107 +"Tfru09096_t",415.318509266991,-0.615982434061785,0.210246213508913,-2.92981463866255,0.00339164254448828,0.0113243178963047 +"Tfru09097_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru09098_t",1.36827933894457,2.70277550698711,2.18317375728765,1.23800292943471,0.215714974616907,0.346195850263634 +"Tfru09099_t",52.3372642389009,-0.855956043844182,0.332198499357846,-2.57664030842638,0.00997657063893247,0.0285742723351468 +"Tfru09100_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru09101_t",32.1061812770308,-0.901926338266012,0.354088628754014,-2.54717679423866,0.010859839922324,0.0306292649605055 +"Tfru09102_t",561.47699771102,0.139744269582562,0.174695645183283,0.799929897714099,0.423751414385803,0.568899619313393 +"Tfru30863_t",5.8135011041401,-0.204780813502179,0.81900208031875,-0.250036988211898,0.802558744441935,0.874751117742683 +"Tfru30864_t",51.1888002846801,0.155389378595036,0.343708713328024,0.452096128406084,0.651199732673534,0.766989743751367 +"Tfru30865_t",9.53696769929251,2.78334620191584,0.797690973470702,3.48925372667272,0.000484371152631903,0.00204416865847671 +"Tfru30866_t",67.9660503983486,8.53321939237538,1.20838496023861,7.06167295452797,1.64509814128361e-12,2.79979440318838e-11 +"Tfru30867_t",38.9068578040513,0.893138234242785,0.577020220849074,1.54784564209647,0.121659464581926,0.222078596324509 +"Tfru30868_t",1555.99614487381,-0.464299203098129,0.222979644103748,-2.08224927869245,0.0373197062156966,0.0851825624790708 +"Tfru30869_t",167.844157503269,-0.746830900386247,0.210132944644252,-3.55408763557094,0.000379292802707174,0.00164475352152423 +"Tfru30870_t",184.031072379109,-0.240891061966021,0.18475364614334,-1.30385011064478,0.192284693169621,0.316747492502291 +"Tfru30871_t",38.7556453218913,0.953025263116234,0.387552489392172,2.45908693454901,0.0139290883944344,0.0377446419987217 +"Tfru30872_t",402.656999990268,0.732985557155827,0.158457271951542,4.6257615578538,3.73224475854536e-06,2.48890457974509e-05 +"Tfru30873_t",73.6862845782954,0.485482265626966,0.283752991775076,1.71093267630389,0.0870935416476422,0.170619175601736 +"Tfru30874_t",19.0866309548707,-0.185119921869077,0.465119233801049,-0.398005303621265,0.690626276302243,0.796465838588281 +"Tfru30875_t",5.4161975687544,-0.980223657602673,0.832535009480082,-1.17739632140494,0.239037357445882,0.373709819045675 +"Tfru30876_t",6472.58411636456,-0.728421642722384,0.238536571909272,-3.05371053542029,0.00226030059205164,0.00795870472783443 +"Tfru30877_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30878_t",12.8078187242995,4.16692614559656,1.35543569278644,3.07423374474548,0.00211044008658094,0.00749351882241495 +"Tfru30879_t",0.486802906650775,-2.44669574681573,3.26370424051703,-0.749668342014999,0.453454478863212,NA +"Tfru30880_t",0.679385620223242,-2.91729581017437,2.41677228712755,-1.2071041304606,0.227392044392898,NA +"Tfru30881_t",0,NA,NA,NA,NA,NA +"Tfru30882_t",46.176871428216,-0.168639809617386,0.318250224387281,-0.529896907196418,0.596183410637017,0.722353133563772 +"Tfru30883_t",14.6098777790063,-0.0904883324816363,0.535964239973832,-0.168832779750482,0.865928173913103,0.916817280774888 +"Tfru30884_t",119.393941589899,-0.35978642592251,0.263501460076318,-1.36540581527823,0.172125537157049,0.291279358909245 +"Tfru30885_t",52.202246480794,-0.476704323616863,0.295241815729496,-1.61462332982542,0.106392290055495,0.200307853238157 +"Tfru30886_t",0,NA,NA,NA,NA,NA +"Tfru30887_t",0,NA,NA,NA,NA,NA +"Tfru30888_t",169.404447377984,-0.0207508637698797,0.231471327812238,-0.0896476637776585,0.92856720664691,0.957477442416301 +"Tfru30889_t",83.4966637457628,1.0652303963208,0.242478540135997,4.39309142872336,1.11750102107112e-05,6.79722703566964e-05 +"Tfru30890_t",1.30390842883649,1.48950384213288,1.68619390202968,0.88335264428365,0.377045768445079,0.522915306302341 +"Tfru30891_t",89.7902533711825,0.113745508571245,0.25496312217861,0.446125336085126,0.655506712285244,0.770616859466527 +"Tfru23200_t",1371.07922927577,-0.0129964605241465,0.161566224437167,-0.0804404544911606,0.935886953101323,0.961755409035463 +"Tfru23201_t",6.29911402967903,1.89309337929852,0.931886209830854,2.03146409865012,0.0422079378673639,0.0945937962619272 +"Tfru23202_t",12.6559969881439,0.480937075288675,0.568134674984605,0.846519489946125,0.39726300590747,0.543012647175788 +"Tfru23203_t",74.0045951759666,0.186112701449125,0.261945978128357,0.710500320634537,0.477393932175793,0.617433899797402 +"Tfru23204_t",34.168316851232,-0.705881533290057,0.333571619251764,-2.11613186659412,0.0343335939203145,0.0796584938769063 +"Tfru23205_t",202.169961800475,2.26435755258592,0.398658800107751,5.67993871444428,1.34743012624229e-08,1.37257561335013e-07 +"Tfru23206_t",130.146282198386,2.33379314079603,0.43712231186468,5.3389934063089,9.34640430305815e-08,8.33688833409491e-07 +"Tfru23207_t",51.9627933546995,2.90903377117746,0.462839624411737,6.28518739050227,3.27458461894133e-10,4.19731980366020e-09 +"Tfru17063_t",5.12120810507063,0.250752113567393,0.867444713382757,0.289069850445615,0.772527924996688,0.855476247472829 +"Tfru17064_t",5.62540220797525,-0.0543556245849044,0.76325848131418,-0.0712152251375115,0.943226464275389,0.966238305968014 +"Tfru17065_t",0,NA,NA,NA,NA,NA +"Tfru17066_t",51.9470010925242,-0.709727352159095,0.285155958135364,-2.48890942626626,0.0128135604826639,0.0351603094166279 +"Tfru17067_t",324.761241516351,0.39538667730522,0.163091470926928,2.42432467533738,0.0153368868825363,0.0409056761328998 +"Tfru17068_t",2715.4836580049,0.682909134023233,0.203739363354838,3.35187625394637,0.000802658875041221,0.00320090976896339 +"Tfru17069_t",3003.62559082705,0.344184601267479,0.257074536864423,1.33885139098392,0.180619056773765,0.302179449098965 +"Tfru17070_t",469.512365074276,-0.537210322683865,0.1700808193588,-3.1585591174192,0.00158551148503804,0.00582655944747971 +"Tfru20233_t",373.918123655974,-0.288764598802229,0.194770707588131,-1.48258740946232,0.138184064308206,0.245613457522745 +"Tfru20234_t",435.245371077153,-1.2070018940713,0.22648362977681,-5.32931185914296,9.85855871859497e-08,8.75881477261434e-07 +"Tfru20235_t",251.943650989645,-1.07511919602973,0.24190649658237,-4.44435850718728,8.81545011015981e-06,5.46357722141724e-05 +"Tfru20236_t",835.24889478051,0.92636110223622,0.43063297543806,2.15116155769047,0.0314634501247776,0.0740277558654882 +"Tfru20237_t",0.573677052592043,2.63241690796499,3.1014208502152,0.848777716762411,0.396004991738982,NA +"Tfru20238_t",581.533834678388,-0.189914287639149,0.256121858158483,-0.741499725968855,0.458390497867239,0.60130000247751 +"Tfru20239_t",6.09167651717391,0.437592604930404,0.879192970821224,0.49772077286021,0.618680864572147,0.740709236030848 +"Tfru20240_t",653.466204102509,-0.622969802043025,0.174577054116572,-3.56845179451272,0.000359096904810107,0.00156658649700783 +"Tfru12322_t",122.673560376302,0.102978937991387,0.231170490425527,0.445467489392044,0.655981949142708,0.770914190488309 +"Tfru12323_t",132.340046243305,-0.940585951344219,0.205297839185096,-4.5815677119533,4.61503123708216e-06,3.02266312806259e-05 +"Tfru12324_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru12325_t",46.3788644389926,-1.00836447665415,0.33423781604502,-3.01690720872328,0.00255367969451389,0.00887305566887452 +"Tfru23527_t",0,NA,NA,NA,NA,NA +"Tfru23528_t",2063.76494105305,-0.785278255558204,0.309961046088513,-2.53347401380868,0.0112938113832624,0.0316419001949689 +"Tfru23529_t",84.3101889646274,-0.595575037942566,0.233162696990095,-2.55433242808933,0.01063916269408,0.0300788859390487 +"Tfru19074_t",9.71887946575706,0.655695943178078,0.834967819905991,0.785294867114643,0.432280704588651,0.577096287800884 +"Tfru19075_t",0,NA,NA,NA,NA,NA +"Tfru15686_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15687_t",352.095011044392,-0.787021552157037,0.172789559542402,-4.55479806905755,5.24359244834963e-06,3.39460801255611e-05 +"Tfru21903_t",0.355349903284276,-0.0642985193854191,3.66846126281734,-0.0175273813130137,0.986015889070386,NA +"Tfru14406_t",0,NA,NA,NA,NA,NA +"Tfru15503_t",0,NA,NA,NA,NA,NA +"Tfru09182_t",507.814084678036,-0.0302320415128555,0.15910336812821,-0.1900150943913,0.849297302402085,0.906230267367153 +"Tfru09183_t",1.91135867611368,-0.182506512177937,1.41252648033621,-0.12920572797651,0.897194863934346,0.937076139498905 +"Tfru08377_t",0,NA,NA,NA,NA,NA +"Tfru17855_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13626_t",0,NA,NA,NA,NA,NA +"Tfru24730_t",0,NA,NA,NA,NA,NA +"Tfru09186_t",0,NA,NA,NA,NA,NA +"Tfru07966_t",235.819653087313,-2.34169198730851,0.412361034909647,-5.67874214357233,1.35688846973212e-08,1.38158161749795e-07 +"Tfru06124_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru29418_t",35.1929113091517,1.44744321900284,0.41107942542162,3.52107921119691,0.000429794207486652,0.00184162250881701 +"Tfru29419_t",120.552958339423,1.83646468738698,0.279910431566134,6.56090120368768,5.34835489364773e-11,7.5949354390759e-10 +"Tfru24384_t",10.3459953499123,1.45257793368595,0.63497347423158,2.28761986544997,0.022159668002757,0.0555107868705732 +"Tfru22972_t",132.050976423949,0.298155026088728,0.230807453845473,1.29179114938092,0.196429481233919,0.321940079825347 +"Tfru22973_t",0,NA,NA,NA,NA,NA +"Tfru22974_t",0,NA,NA,NA,NA,NA +"Tfru17323_t",0,NA,NA,NA,NA,NA +"Tfru20742_t",943.843142331659,-0.0930240493851244,0.123473299771706,-0.753394050026359,0.451213157177144,0.594754677720353 +"Tfru20743_t",21.6745621474393,-0.561331524055335,0.428309884947881,-1.31057335770721,0.190001945227582,0.314143287100568 +"Tfru20744_t",0,NA,NA,NA,NA,NA +"Tfru27770_t",696.375061365619,-0.342241739507179,0.270690192818004,-1.26433002963385,0.206111595478407,0.333606531193083 +"Tfru27771_t",126.058848671972,0.699615852928128,0.23131271789303,3.02454555590698,0.00249006967599451,0.00867142569432553 +"Tfru14434_t",0,NA,NA,NA,NA,NA +"Tfru08645_t",0,NA,NA,NA,NA,NA +"Tfru08646_t",0,NA,NA,NA,NA,NA +"Tfru15313_t",0.899211432015659,3.27189454780564,2.66220941703565,1.22901471494638,0.219066288971779,0.350018101462726 +"Tfru06910_t",0,NA,NA,NA,NA,NA +"Tfru06911_t",0,NA,NA,NA,NA,NA +"Tfru06912_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru06913_t",422.090563740091,0.314818278253835,0.200952127896737,1.56663321532783,0.11720044936516,0.215986667795082 +"Tfru22935_t",0,NA,NA,NA,NA,NA +"Tfru25520_t",132.530645960884,-0.653278504960652,0.212618245555005,-3.07254207302566,0.00212243911327303,0.00752734026292066 +"Tfru04994_t",0,NA,NA,NA,NA,NA +"Tfru27740_t",168.754458083805,-0.469573411896739,0.24314505841181,-1.93124801698183,0.0534523885217277,0.115047552905969 +"Tfru27741_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru27742_t",43.3841738528338,-0.0497248648180631,0.305895414727347,-0.16255511663156,0.870868728574674,0.920228218369059 +"Tfru28863_t",25.9337611317187,-0.883683120856918,0.61191772630142,-1.4441208072172,0.148704996110636,0.260123324445524 +"Tfru27462_t",0,NA,NA,NA,NA,NA +"Tfru27463_t",0,NA,NA,NA,NA,NA +"Tfru01921_t",368.83233410253,-0.735422786096878,0.287276289966755,-2.55998427918289,0.0104676898355879,0.029702916003608 +"Tfru01922_t",381.727710396587,-0.506034864903708,0.24455989574037,-2.06916536078722,0.0385305720183985,0.0875445890123614 +"Tfru01923_t",112.801884192611,-0.573312199165731,0.22842621669899,-2.50983537463748,0.0120787457564639,0.0334764495392769 +"Tfru01924_t",0.488301569135423,2.37761170701572,3.99532948934563,0.595097779383681,0.551778112921887,NA +"Tfru09330_t",0,NA,NA,NA,NA,NA +"Tfru09331_t",1.98083380786642,-0.577685265625886,1.4174049340108,-0.407565440026529,0.683592741301994,0.791290242595356 +"Tfru16000_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru22202_t",0,NA,NA,NA,NA,NA +"Tfru15406_t",3.66445133053871,-0.10436509756636,0.968586453891514,-0.107749904148514,0.914194082131628,0.94830422053793 +"Tfru01381_t",0,NA,NA,NA,NA,NA +"Tfru00637_t",169.370848476558,-2.05255977477748,0.223780339705248,-9.1722077885886,4.63428661561644e-20,1.76687111511918e-18 +"Tfru00638_t",0,NA,NA,NA,NA,NA +"Tfru16447_t",77.1801854561086,-3.7951394819952,0.432566592903197,-8.77353809623598,1.73138333410019e-18,5.67325900690516e-17 +"Tfru16448_t",0,NA,NA,NA,NA,NA +"Tfru04276_t",1.75132832836421,-0.354193734202056,1.43230938202423,-0.247288566735134,0.804684906496353,0.8764282756175 +"Tfru28712_t",0,NA,NA,NA,NA,NA +"Tfru28713_t",17.1126873562205,2.1387063795286,0.596403454692085,3.58600602109655,0.000335781208264691,0.0014766111343235 +"Tfru28714_t",113.007064446905,0.716706585105809,0.228300286562021,3.13931531098234,0.00169343124289767,0.00618254342839313 +"Tfru28715_t",24.4084679772409,0.96360848128398,0.410992412896503,2.34458946454235,0.0190480401011578,0.0490613248421714 +"Tfru28716_t",118.903186658845,0.0415933094338427,0.225474793900716,0.184469885587999,0.85364484955103,0.909092159550419 +"Tfru28717_t",0,NA,NA,NA,NA,NA +"Tfru17828_t",0,NA,NA,NA,NA,NA +"Tfru22799_t",0,NA,NA,NA,NA,NA +"Tfru19189_t",0,NA,NA,NA,NA,NA +"Tfru29463_t",0,NA,NA,NA,NA,NA +"Tfru02969_t",58.3796132545427,-0.258885578508966,0.325711891244502,-0.794829987691879,0.426712404655748,0.571851139764411 +"Tfru04946_t",62.1556447121657,0.288194148904829,0.293428777237574,0.982160480706678,0.326020793388568,0.471187946789547 +"Tfru04947_t",153.520946991165,0.0144677701036662,0.234475416262692,0.0617027163626288,0.950799576748943,0.971550293472803 +"Tfru04948_t",145.368520596807,-0.241028025147872,0.28309625263362,-0.851399560769913,0.394547435665459,0.540356869848416 +"Tfru04949_t",0.665051133702999,-1.5236181711714,2.541686933272,-0.599451549766593,0.54887180985079,NA +"Tfru09139_t",13.3159379603535,-0.177607349164045,0.562953285780994,-0.315492161872096,0.75238800134937,0.840871084654127 +"Tfru09140_t",4.61717521023928,1.4765923690828,1.02293609628061,1.4434844702926,0.148884044090623,0.260355126328188 +"Tfru09141_t",44.6063372240085,0.177146363343798,0.309703634403558,0.57198671137636,0.567330977391075,0.697315794698777 +"Tfru09142_t",0,NA,NA,NA,NA,NA +"Tfru09143_t",0,NA,NA,NA,NA,NA +"Tfru09671_t",80.2550873234116,0.583496373504217,0.259064133893867,2.25232402777632,0.0243018028216755,0.0598672685023678 +"Tfru09672_t",3.92037963863465,0.770744970594012,1.07603781860143,0.716280559354113,0.473818128388167,0.614406959460407 +"Tfru28125_t",0,NA,NA,NA,NA,NA +"Tfru00642_t",0.656737956049442,2.79996060668216,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru21732_t",0,NA,NA,NA,NA,NA +"Tfru12361_t",25.9135370052894,3.36745602893344,0.679735031636642,4.95407161938587,7.26764364508559e-07,5.5005026979038e-06 +"Tfru12362_t",16.1367049375924,3.43920864158957,0.761476505463766,4.51650000612294,6.28701153873816e-06,4.01436000676063e-05 +"Tfru12363_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru09184_t",208.235604101237,-0.91386195780114,0.213990777716894,-4.27056701952906,1.94976616939062e-05,0.000112783062473409 +"Tfru09185_t",0,NA,NA,NA,NA,NA +"Tfru30213_t",359.285889933211,0.0315192867433351,0.17257891437835,0.182636951083343,0.855082889184417,0.910103916866279 +"Tfru20599_t",0,NA,NA,NA,NA,NA +"Tfru20600_t",291.746499402386,0.166649059577334,0.292890761168211,0.568980253636699,0.569369540592079,0.698788599228318 +"Tfru15906_t",3410.52476290158,-0.2791105356737,0.390843325858533,-0.714123837372944,0.475150607136312,0.615528512833449 +"Tfru30230_t",2.72304010888348,1.65232567854629,1.20885029169498,1.36685716163372,0.171670081652467,0.290728447020977 +"Tfru30231_t",443.189247952293,5.69622609057099,0.587984069482638,9.68772180440713,3.40028546534606e-22,1.52501780990871e-20 +"Tfru22420_t",5.05170903762113,0.877475516678351,0.940972497476338,0.932519833503865,0.351067941638364,0.496894797234163 +"Tfru22421_t",1.58837739939437,1.94131369573617,1.82548844040169,1.0634489119575,0.287578421562148,0.429210074995723 +"Tfru22422_t",21.7563825030714,-0.151819336913946,0.429101738076875,-0.353807322231698,0.723483285649914,0.821031181625935 +"Tfru02752_t",62.4842268250581,0.0684674188218392,0.299337776181028,0.228729630103327,0.819079063717279,0.885471539279103 +"Tfru27634_t",14.3312548693552,2.11866288912218,0.586866707982434,3.61012621827851,0.000306048042008583,0.00135926873985951 +"Tfru27635_t",0,NA,NA,NA,NA,NA +"Tfru25723_t",0,NA,NA,NA,NA,NA +"Tfru09468_t",0,NA,NA,NA,NA,NA +"Tfru09469_t",23.4444463327727,0.242207015801001,0.405674642094796,0.597047462839454,0.550475692639214,0.682150941376833 +"Tfru14954_t",2.56498053766522,2.74904000890993,1.41299258106509,1.94554454549064,0.051709473860991,0.111909682333331 +"Tfru14955_t",0,NA,NA,NA,NA,NA +"Tfru14956_t",235.634408836113,-0.0893894273391674,0.166308643204738,-0.537491170733216,0.590928382126813,0.71783734763438 +"Tfru04718_t",1.09911425155029,3.55307889949004,2.0955495327877,1.69553563105874,0.0899738569196059,0.174931145158887 +"Tfru04719_t",0,NA,NA,NA,NA,NA +"Tfru04720_t",0,NA,NA,NA,NA,NA +"Tfru01046_t",1.39419657674505,-0.0530505968888838,1.5012716074835,-0.035337107971961,0.971810933914894,0.984177759249307 +"Tfru01047_t",6.24793262312274,3.06939992413657,1.25842779556122,2.4390751181459,0.0147249070211291,0.0395325598767838 +"Tfru01048_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru01049_t",0,NA,NA,NA,NA,NA +"Tfru20678_t",0,NA,NA,NA,NA,NA +"Tfru20679_t",0.934972753847558,0.977753102249584,2.35167828707593,0.415768222899791,0.677579613775307,0.787208707716241 +"Tfru20680_t",1.01373876809366,3.41885200466488,2.15365791310927,1.58746288528665,0.112407846477333,0.208961508776702 +"Tfru23259_t",0,NA,NA,NA,NA,NA +"Tfru15589_t",3.50639052646698,-1.79473225204607,1.11710876280934,-1.60658685330927,0.108145028340609,0.202788917826797 +"Tfru15590_t",142.792328499617,0.645800081596123,0.203144845568487,3.17901288506186,0.00147777521879738,0.00547922620886108 +"Tfru15591_t",188.07276600875,0.432589989516621,0.248742770008609,1.73910578185508,0.0820161578338404,0.162334979421716 +"Tfru15592_t",0,NA,NA,NA,NA,NA +"Tfru01989_t",0,NA,NA,NA,NA,NA +"Tfru01990_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru04218_t",75.2674412327856,3.18407500769505,0.370968126326479,8.58314982266921,9.2310002861141e-18,2.83777179125321e-16 +"Tfru16137_t",0,NA,NA,NA,NA,NA +"Tfru16138_t",100.425817417484,0.525941765507337,0.246630993204454,2.13250475406122,0.032965374085671,0.0769788263811891 +"Tfru16139_t",0,NA,NA,NA,NA,NA +"Tfru16140_t",264.233572711356,-0.101621455272874,0.164027503790418,-0.619539119504724,0.535561259216893,0.669601172138216 +"Tfru18292_t",422.467180910789,-0.85743566175796,0.148835685423532,-5.76095483632177,8.36394200543292e-09,8.80456359744067e-08 +"Tfru18293_t",0,NA,NA,NA,NA,NA +"Tfru18294_t",0,NA,NA,NA,NA,NA +"Tfru10385_t",14.396353910358,-0.114180400221092,0.574427443216248,-0.19877253701841,0.84244067958658,0.901277422876221 +"Tfru10386_t",89.3859038747477,1.32378389262694,0.285238668011483,4.64096926919335,3.46778700117112e-06,2.32990312477363e-05 +"Tfru10387_t",0,NA,NA,NA,NA,NA +"Tfru23470_t",0,NA,NA,NA,NA,NA +"Tfru23471_t",115.381394454894,1.736640760839,0.256258093724708,6.77692062559642,1.22764287248392e-11,1.8921933530434e-10 +"Tfru23472_t",8.73008986578543,2.65944506720529,0.803693447270134,3.30902917802614,0.000936200799123685,0.00367435896279974 +"Tfru14957_t",3.05014035349073,3.07029867366169,1.47996974486375,2.07456854055105,0.0380265402864156,0.0865461758519473 +"Tfru14958_t",1.5397790206734,1.07539053476264,1.81817942260604,0.591465573414782,0.554208515432812,0.685258926816925 +"Tfru14959_t",117.711323155061,0.916428025668669,0.226847269457769,4.0398459627008,5.34863178955826e-05,0.000282783792700954 +"Tfru14960_t",0,NA,NA,NA,NA,NA +"Tfru14961_t",0,NA,NA,NA,NA,NA +"Tfru14962_t",533.473905391712,1.92388575848445,0.410247530227131,4.68957304244905,2.73775695496456e-06,1.87775055630116e-05 +"Tfru20530_t",0,NA,NA,NA,NA,NA +"Tfru20531_t",0.674618616965392,1.48395953074114,2.55272703868086,0.581323231295416,0.561022626283776,NA +"Tfru20532_t",0,NA,NA,NA,NA,NA +"Tfru20533_t",48.4184331741402,5.82156865957195,0.918834337171564,6.33581966199958,2.36082795207591e-10,3.07718867603138e-09 +"Tfru24649_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru27079_t",160.749890901769,-1.5076957872444,0.253456949038404,-5.94852811479222,2.70564419724448e-09,3.04283000675032e-08 +"Tfru27080_t",71.585904180108,-1.3980150903726,0.269557241352833,-5.18633846880295,2.14468874960335e-07,1.79365225022881e-06 +"Tfru27081_t",255.462079142539,-1.67552749353133,0.240294402510822,-6.97281116839946,3.1066950391467e-12,5.10858449493777e-11 +"Tfru18346_t",0,NA,NA,NA,NA,NA +"Tfru23416_t",0,NA,NA,NA,NA,NA +"Tfru23417_t",0.881535817058103,-0.599640793065095,2.10872122787907,-0.284362287976873,0.776132756389303,0.857812785223596 +"Tfru26888_t",0.480384994632977,0.831707744683091,3.38883080158151,0.245426164178792,0.80612647230076,NA +"Tfru26889_t",187.459903419729,-0.352318631294114,0.183703549923096,-1.91786512259347,0.0551281156598796,0.117714648265252 +"Tfru26890_t",395.919178542808,-0.579468092325313,0.226347809097445,-2.56007820281505,0.0104648611540929,0.0296986549110573 +"Tfru29994_t",4.22130216243447,0.8249480486658,0.923288520756798,0.893488904193903,0.371595411537074,0.517666063504495 +"Tfru29995_t",0.468922245734825,-0.929889919371657,3.40795083825486,-0.272858959387992,0.784961635432942,NA +"Tfru29996_t",1.508854852398,-0.988566635195038,1.56585049283233,-0.631328878280649,0.527825508514064,0.662955278909576 +"Tfru13338_t",16.0722623983242,3.2962767847642,0.730259895301239,4.51384062848537,6.36640655077825e-06,4.05349014527503e-05 +"Tfru16898_t",17.036477572306,4.26320671493088,0.770233083092797,5.53495663651888,3.11305363829546e-08,2.99270362650569e-07 +"Tfru16899_t",3.37143264338615,3.09176108077987,1.3964833630147,2.21396198670454,0.0268313939985012,0.0649334713380252 +"Tfru08662_t",96.6310754635645,3.38410814949909,0.545520783496415,6.20344494999672,5.52403690980534e-10,6.83195555534840e-09 +"Tfru08663_t",41.3921408288131,0.0355051672845801,0.519228798996174,0.068380581649597,0.945482679242592,0.967694111036405 +"Tfru26705_t",680.115211707636,-5.89675696670478,1.31023447047936,-4.50053566713703,6.77824294266316e-06,4.28280849962737e-05 +"Tfru26706_t",0,NA,NA,NA,NA,NA +"Tfru26707_t",0,NA,NA,NA,NA,NA +"Tfru15678_t",42.6888962779698,0.631613423308519,0.385590183577466,1.63804331699649,0.101412657966446,0.192631454171786 +"Tfru15679_t",636.427976662241,-0.501383151579546,0.22426346076627,-2.23568810481389,0.0253722087622695,0.0619698823638101 +"Tfru15680_t",0,NA,NA,NA,NA,NA +"Tfru15681_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru24266_t",324.964882142698,-1.52191125699519,0.264410575747055,-5.75586378379625,8.6199874420601e-09,9.05280708368395e-08 +"Tfru24267_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru24268_t",233.226002792611,-2.08980412445044,0.262611878606199,-7.95776693553232,1.75171915388838e-15,4.27053100915272e-14 +"Tfru23779_t",33.6537102791544,4.61068128407156,0.703033321979043,6.55826849158794,5.44361343211994e-11,7.72040992464159e-10 +"Tfru18458_t",0,NA,NA,NA,NA,NA +"Tfru18459_t",11.1154995325964,6.88119152461884,1.29277527406365,5.32280564354298,1.02178899864978e-07,9.04932243362961e-07 +"Tfru18460_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru18461_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru03746_t",10.6979486877107,0.00611465746292428,0.640757246085954,0.00954286120098599,0.99238601394482,0.996386532375112 +"Tfru08857_t",6.12530463828601,5.01846851118712,1.40001036380025,3.58459382940906,0.000337603181338291,0.00148293605463218 +"Tfru16921_t",19.2362715545245,-2.34688458226698,0.582440147391206,-4.02940043329577,5.59192941079498e-05,0.000294118402382119 +"Tfru01539_t",115.400455774426,1.45777160304728,0.575085174022425,2.53487947333247,0.0112486020840132,0.0315310263827925 +"Tfru01540_t",600.890155943664,-0.413489511905859,0.222888125094254,-1.85514374860035,0.0635757018828737,0.132390019332635 +"Tfru01541_t",0,NA,NA,NA,NA,NA +"Tfru01542_t",0,NA,NA,NA,NA,NA +"Tfru19344_t",0,NA,NA,NA,NA,NA +"Tfru19345_t",0,NA,NA,NA,NA,NA +"Tfru05782_t",0,NA,NA,NA,NA,NA +"Tfru05783_t",0,NA,NA,NA,NA,NA +"Tfru05784_t",92.504771034661,0.700494967874048,0.348113485487677,2.01226036070597,0.0441924986107644,0.0983716052226883 +"Tfru05785_t",43.0822115441098,-0.282983643088204,0.361819124212425,-0.782113559376323,0.434147838688678,0.579139812234167 +"Tfru05786_t",143.393244399403,2.95974714340917,0.272226140041824,10.8723840515626,1.56068515779436e-27,1.02129046290753e-25 +"Tfru05787_t",1.41897943377169,3.92280669495864,1.97034129948395,1.99092750884634,0.0464888574105917,0.102640595959699 +"Tfru05788_t",70.9676949785339,0.478477480028978,0.298389948505005,1.60353082409863,0.108817509457134,0.203742647172312 +"Tfru05789_t",0,NA,NA,NA,NA,NA +"Tfru05790_t",0,NA,NA,NA,NA,NA +"Tfru05791_t",35.4249592807945,1.05609633918939,0.39395439988331,2.68075782248454,0.00734556548231195,0.0220189868060731 +"Tfru05792_t",32.8860097531143,0.800726008896688,0.402660785927259,1.98858701140404,0.0467468062100714,0.103122152121175 +"Tfru11498_t",186.377570770423,-1.17573798703205,0.347716780163312,-3.38130931294097,0.000721412849013041,0.00291114669327657 +"Tfru19340_t",1.63456833660513,0.395695405885797,1.81384339885974,0.218153014827272,0.827309892109324,0.891178807252884 +"Tfru19341_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru01570_t",0,NA,NA,NA,NA,NA +"Tfru01571_t",59.8591141840915,0.288722515252409,0.277532349737394,1.04032022041972,0.29819115294583,0.441282682201129 +"Tfru22416_t",419.459174362593,0.488957244150168,0.150978116468998,3.23859679525524,0.0012011925372949,0.00456489879175749 +"Tfru22417_t",37.2820296140358,-1.3836871965669,0.334031344846603,-4.1423872876431,3.43709295756177e-05,0.000189603501085118 +"Tfru22418_t",34.9401845236176,-1.30069395500656,0.363979113073208,-3.57354009691471,0.000352187283447923,0.00154103409662136 +"Tfru22419_t",210.503667755606,-0.960872364170591,0.216150564069679,-4.44538448606981,8.77348133549457e-06,5.44243792394141e-05 +"Tfru22954_t",1558.84378046373,-0.312977776007646,0.303943832025186,-1.02972241259928,0.303140331372444,0.446481119849641 +"Tfru22955_t",1.22105257133749,-2.54767978596114,1.85520285172787,-1.37326211178919,0.169670876664258,0.287821891893133 +"Tfru22956_t",8.96660461445452,-0.59619186297875,0.681897801139257,-0.874312634507229,0.381948020605063,0.527914816028984 +"Tfru13970_t",6.50090570142672,1.93644578373457,0.858931683235314,2.25448172599783,0.0241658790168761,0.0596024214676754 +"Tfru13971_t",0,NA,NA,NA,NA,NA +"Tfru04679_t",2201.0595362548,-0.725499998935028,0.123932739011515,-5.85398180272299,4.79941159616215e-09,5.20149305191811e-08 +"Tfru04680_t",11.8058495496072,2.39907411285873,0.699788088210523,3.42828658171871,0.000607403898676436,0.00250022057244411 +"Tfru04681_t",1887.51360241849,0.284130123214991,0.198194690436162,1.43359099373305,0.151689015123747,0.263981349803223 +"Tfru04682_t",69.3453216032967,0.803786296033013,0.296742288135942,2.7087015507031,0.00675470709559788,0.0205143635227956 +"Tfru26909_t",561.84054753133,-0.430088684905074,0.144856649122071,-2.96906415764621,0.00298708222596063,0.010167437295361 +"Tfru26910_t",440.832463894063,-0.339572759676663,0.159975625261934,-2.12265311744004,0.033782930345252,0.0785600562268017 +"Tfru00145_t",21.7663491294911,-0.581688370563591,0.457663509984452,-1.27099573785848,0.20373016491094,0.330732706420051 +"Tfru00146_t",123.128680681028,-0.547509252778225,0.262975525076369,-2.08197798110386,0.0373444810007677,0.0852217278267748 +"Tfru00147_t",75.1190799656781,-1.48243781447663,0.497458425568131,-2.98002353218479,0.00288226240658414,0.00985619926520905 +"Tfru00148_t",0,NA,NA,NA,NA,NA +"Tfru00149_t",0,NA,NA,NA,NA,NA +"Tfru00150_t",0,NA,NA,NA,NA,NA +"Tfru00151_t",0.466522622159292,0.639256604859819,3.38956973072843,0.188595206956383,0.850410089696191,NA +"Tfru22991_t",0,NA,NA,NA,NA,NA +"Tfru22992_t",173.302177667993,-0.894948070712272,0.259481720423941,-3.44898310852151,0.000562701900512065,0.00233511376478027 +"Tfru22993_t",0,NA,NA,NA,NA,NA +"Tfru22994_t",0,NA,NA,NA,NA,NA +"Tfru22995_t",140.218044969377,6.50118331699173,0.548672497983613,11.8489323610784,2.1794983698926e-32,1.95108694072786e-30 +"Tfru22996_t",1187.74934579506,7.9434084857563,0.417983515501338,19.0041190409837,1.57670953900574e-80,1.41147037931794e-77 +"Tfru22997_t",0,NA,NA,NA,NA,NA +"Tfru22998_t",0,NA,NA,NA,NA,NA +"Tfru22999_t",0,NA,NA,NA,NA,NA +"Tfru23000_t",0,NA,NA,NA,NA,NA +"Tfru23001_t",79.8511579766621,1.29648426435273,0.344145402662038,3.76725725325442,0.000165050899273194,0.000785923218241293 +"Tfru23002_t",29.9648044438355,-1.95340406854685,0.418383905573817,-4.66892737154347,3.02776384491178e-06,2.05649028373674e-05 +"Tfru23003_t",0,NA,NA,NA,NA,NA +"Tfru16760_t",1.9110994259602,0.42357099794879,1.4729001127396,0.287576186793107,0.773671175369627,0.856066440725738 +"Tfru16761_t",16.4398508863811,-0.219349887803951,0.45107759080461,-0.486279727203218,0.626768850775287,0.747672700725076 +"Tfru16762_t",191.815910706331,-0.138229826429151,0.192113027133852,-0.719523441441798,0.471818464197973,0.612523767547459 +"Tfru03999_t",10.3906162331172,-0.968011670610356,0.652126413335372,-1.48439267420461,0.137704777113123,0.244900898902709 +"Tfru02229_t",6.51463342744626,-0.508343808652589,0.72368494311115,-0.702438006333528,0.482406050278153,0.621474062009272 +"Tfru02230_t",116.48046396377,-0.426483546082365,0.239432148776754,-1.78122924703824,0.0748750075739927,0.151113957030026 +"Tfru24033_t",686.198776259727,0.135675807109409,0.180789706711828,0.750462012340509,0.452976494547935,0.596295156048631 +"Tfru24034_t",534.977364477552,0.174110845937312,0.149439522296205,1.16509236152539,0.243981608462943,0.379384189057586 +"Tfru24035_t",450.618058723319,-0.182864781241477,0.2966414873241,-0.61645045974869,0.537597258776891,0.671134414649792 +"Tfru24036_t",207.678457293287,2.62607713933304,0.221513195221287,11.8551724952983,2.0230718760566e-32,1.81832725245569e-30 +"Tfru24037_t",0,NA,NA,NA,NA,NA +"Tfru24038_t",9.30435039161141,1.3796103108173,0.827126940915533,1.6679547510449,0.0953247096037388,0.183287727806173 +"Tfru24039_t",0,NA,NA,NA,NA,NA +"Tfru24040_t",0,NA,NA,NA,NA,NA +"Tfru24041_t",276.357987239294,-0.214152865066441,0.258856468706491,-0.827303509688458,0.408065054998441,0.554257202819998 +"Tfru24042_t",0,NA,NA,NA,NA,NA +"Tfru24043_t",46.1201954271348,-0.786719214000433,0.299032063410104,-2.63088581548359,0.00851626437868106,0.0249664653909985 +"Tfru24044_t",471.680889202219,-0.403290119909548,0.157519990971124,-2.56024722591228,0.0104597724282812,0.029687978052623 +"Tfru24045_t",333.65485817582,-1.26704044232619,0.257530870072608,-4.91995558423332,8.6563853739052e-07,6.46407659716793e-06 +"Tfru24046_t",115.528363746325,-0.311254285762765,0.212075216342412,-1.4676598762027,0.142196634824621,0.251272063748521 +"Tfru24047_t",0,NA,NA,NA,NA,NA +"Tfru24048_t",4092.81421299197,-0.430063279405754,0.203301517041951,-2.11539631215349,0.0343961838526973,0.0797432738487805 +"Tfru19847_t",10.2698219209465,1.73769886788542,0.767432371312472,2.26430227970914,0.0235555294722694,0.0583866153050602 +"Tfru19848_t",11.4751106568746,-0.981797430324253,0.617669706928237,-1.58951850691671,0.11194337918206,0.208288395917401 +"Tfru19849_t",3.85208206874182,-0.206294813438603,0.932106747170727,-0.221321017216945,0.824842486348241,0.889508738229346 +"Tfru19850_t",0,NA,NA,NA,NA,NA +"Tfru19851_t",2.34982886761966,-2.76118149822795,1.57748924851285,-1.75036470190272,0.0800554028022568,0.15928519867661 +"Tfru19852_t",0,NA,NA,NA,NA,NA +"Tfru19853_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19854_t",0,NA,NA,NA,NA,NA +"Tfru11169_t",0,NA,NA,NA,NA,NA +"Tfru04640_t",7.10101141678322,1.64247128695966,0.773880566018035,2.1223834259218,0.0338055528575972,0.0786044958912233 +"Tfru04641_t",24.5456346578531,-0.201165778294436,0.447119286147155,-0.449915234093098,0.652771562531369,0.768300495367386 +"Tfru04642_t",0.649570096362582,-1.49205395594978,2.54969767558225,-0.585188577547356,0.558420924466185,NA +"Tfru04643_t",85.4772633167122,0.880985937380446,0.276724462638333,3.18362145861986,0.00145445079811676,0.00540259068246525 +"Tfru04644_t",0.745468056709052,2.96260161093888,2.94260314408509,1.0067961821131,0.314032729723174,0.458570565783938 +"Tfru04645_t",1.80744667843652,4.26018015526462,1.77030041706435,2.40647299983648,0.0161073946312442,0.0426002708399015 +"Tfru04646_t",49.1665895841544,2.41075431525976,0.373790635460301,6.44947755925201,1.12236377004935e-10,1.53255040718148e-09 +"Tfru04647_t",1.46823366579725,0.167702746496488,1.56485467810505,0.107168255840579,0.914655498531888,0.948519070346307 +"Tfru04648_t",2605.86047508782,0.801660650199033,0.253009130765257,3.16850481946764,0.00153225208595158,0.00565777952212447 +"Tfru04649_t",15.6528943501978,4.12515981697536,0.778547424506767,5.2985337657353,1.1673629150831e-07,1.0225276727812e-06 +"Tfru04650_t",5.43575883911976,5.8621822122191,1.47081647923073,3.98566530563021,6.72913097479659e-05,0.000349091217468585 +"Tfru31297_t",0,NA,NA,NA,NA,NA +"Tfru31298_t",0,NA,NA,NA,NA,NA +"Tfru31299_t",0,NA,NA,NA,NA,NA +"Tfru09979_t",9.54917134507157,1.85591170519534,0.662013289336173,2.80343572416247,0.00505613093327378,0.0160187160654965 +"Tfru09980_t",6.35501441283613,1.53754751955041,1.02981796835771,1.49302844463123,0.135429741307942,0.241834964531377 +"Tfru09981_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru09982_t",8.27354094026759,-0.310108785513671,0.719326437658953,-0.431109951307948,0.666388425232737,0.778624462603564 +"Tfru09983_t",30.1164901490064,0.695025329062943,0.436189159286905,1.59340349081392,0.111069703115486,0.207045125487693 +"Tfru09984_t",248.353740358268,-0.328349498291093,0.199405163467092,-1.64664491421397,0.0996310528804206,0.189910822201159 +"Tfru09985_t",25.679274591837,-2.04073093466392,0.498670781228775,-4.09234110255137,4.27039858668565e-05,0.000231688534230363 +"Tfru09986_t",820.446845714168,-0.949936645610422,0.189562336750579,-5.01120983152007,5.40888960675367e-07,4.23102716710922e-06 +"Tfru09987_t",38.4969236043885,3.75344997025084,0.702489340930581,5.34307035218311,9.13852745339921e-08,8.17100457079802e-07 +"Tfru14464_t",15.9193937460445,1.72668525403175,0.556543745465648,3.10251488422904,0.00191883898461998,0.00689414295646094 +"Tfru14465_t",1.76634120774289,-0.0860092051534715,1.69723373668179,-0.050676110953124,0.959583612882104,0.97675527665822 +"Tfru14466_t",322.37569153505,-2.52174451934569,0.295002339288907,-8.54821872065242,1.25002666447541e-17,3.81138920312801e-16 +"Tfru14467_t",43.3388991364647,3.13624900492291,0.413176672263428,7.59057617590603,3.1848608502575e-14,6.75613135817658e-13 +"Tfru14468_t",246.289903999978,0.273951281565333,0.478173039563304,0.572912437337582,0.56670398298529,0.696820786726597 +"Tfru14469_t",71.5887805506845,1.21913951328885,0.3713399982819,3.2830815934979,0.00102678941822049,0.00398121053010646 +"Tfru14470_t",178.058980410024,-0.00241663420478025,0.206331374693996,-0.0117123932720571,0.990655075895021,0.995682704005094 +"Tfru14471_t",48.0121251967319,-0.780373522128963,0.315928418488671,-2.4700959978912,0.0135076798081607,0.0367789128956275 +"Tfru14472_t",6.45797651990796,1.70384828498815,0.867897893038674,1.9631897930097,0.0496241249317542,0.10817063562605 +"Tfru14473_t",1.09344505434807,3.54933909891073,2.07159121958386,1.71333951667536,0.0866500964508934,0.16992894835007 +"Tfru14474_t",461.037964569223,0.188159812484763,0.243518426729042,0.772671764564757,0.439716660973914,0.584096561763781 +"Tfru14475_t",0,NA,NA,NA,NA,NA +"Tfru14476_t",0,NA,NA,NA,NA,NA +"Tfru14706_t",7.43262385247236,-0.448925370299687,0.724926812153785,-0.619269921836541,0.535738555739721,0.669725757372136 +"Tfru13028_t",5.29965496465855,-0.240241999729406,0.779488807201755,-0.308204553432701,0.757926687869091,0.844993487820576 +"Tfru13029_t",44.2048828478115,-0.504334386372785,0.415103327544271,-1.21496107814023,0.224380936570766,0.35632195845127 +"Tfru13030_t",135.647356694159,-1.70296859331768,0.45382996337785,-3.75243754432279,0.00017512346921578,0.00083017649672721 +"Tfru13031_t",21.7521550576152,0.656154342661507,0.503556680501639,1.30303969358097,0.192561210464641,0.317086299036029 +"Tfru23519_t",0,NA,NA,NA,NA,NA +"Tfru23520_t",710.269244976005,-1.48675262710323,0.306308201245805,-4.85378001978517,1.21130098889927e-06,8.83026584090089e-06 +"Tfru23521_t",378.867715612256,-2.49257299225179,0.346458046039686,-7.19444394709272,6.27158246463861e-13,1.13558265015058e-11 +"Tfru23522_t",207.014828560819,-2.63837408953241,0.285098673745073,-9.254248905737,2.15741854692876e-20,8.41167719168392e-19 +"Tfru23523_t",93.8264131725189,0.378962545080457,0.252759216078635,1.49930258116705,0.133795153071535,0.239374492424731 +"Tfru23524_t",694.563328545511,0.452970199703725,0.139845492995165,3.23907614040436,0.00119917556241377,0.00455955641977918 +"Tfru23525_t",555.299386017388,0.493348720893727,0.172551443584732,2.85913992166323,0.00424791370534229,0.0137521059924143 +"Tfru23526_t",841.85715245519,0.0580971835393683,0.35497694147741,0.163664668745999,0.869995132692587,0.919894692887655 +"Tfru12753_t",283.418261609672,1.41034624328758,0.360438067204608,3.91286706819171,9.12067477329321e-05,0.000459007648811113 +"Tfru12754_t",449.025679573005,1.62488562743111,0.359154528325971,4.52419640928584,6.06254058710815e-06,3.87766957243442e-05 +"Tfru12755_t",166.252190117812,0.517038085056357,0.258503079948571,2.00012350011157,0.0454869297624506,0.10073198971736 +"Tfru12756_t",0,NA,NA,NA,NA,NA +"Tfru12757_t",350.991863958823,-1.4495108099668,0.198258981051497,-7.31119872743768,2.64769606265663e-13,5.03444671896817e-12 +"Tfru12758_t",0,NA,NA,NA,NA,NA +"Tfru12759_t",39.2876625914482,3.42082721128028,0.715796065556214,4.77905282787788,1.76122918274964e-06,1.24498765350401e-05 +"Tfru12760_t",48.4252239087136,0.923253623026576,0.299031966578248,3.08747467232734,0.00201864973060931,0.0072018780441633 +"Tfru12761_t",48.1976579455705,0.662143916888596,0.321172501812129,2.06164572979514,0.0392414769102874,0.0889123128752331 +"Tfru12762_t",0,NA,NA,NA,NA,NA +"Tfru12763_t",0.360209768053121,-0.0642984428696686,3.65262828856368,-0.0176033359515355,0.985955295385567,NA +"Tfru12764_t",1.41999381216345,-0.0139297011032561,1.61643668010774,-0.0086175358890814,0.993124286262665,0.996687063971231 +"Tfru12765_t",88.8832347396944,-0.633628855325491,0.302708869723598,-2.09319553769288,0.03633170293208,0.0833781287551221 +"Tfru12766_t",0,NA,NA,NA,NA,NA +"Tfru12767_t",0,NA,NA,NA,NA,NA +"Tfru12768_t",663.42686031066,3.13329314423542,0.400422319263829,7.82497127032264,5.0777286167903e-15,1.17396246326206e-13 +"Tfru12769_t",2464.46626989886,4.15689547959474,0.3614818309652,11.4995972785004,1.32532348156536e-30,1.07857234608846e-28 +"Tfru09749_t",114.777005628793,0.4059204784781,0.224108006331621,1.81127165031955,0.070098811825704,0.143348995674274 +"Tfru09750_t",660.20052582251,-0.428784607097865,0.146725825772415,-2.92235265905369,0.00347397945153267,0.0115644295887701 +"Tfru09751_t",0,NA,NA,NA,NA,NA +"Tfru09752_t",205.699337831644,0.782859349389539,0.244983248772652,3.1955627713797,0.00139558421692209,0.0052116093400161 +"Tfru09753_t",38.2340106526656,0.151729361556597,0.330348326521019,0.459301135726939,0.646017932304786,0.763145576948605 +"Tfru09754_t",0,NA,NA,NA,NA,NA +"Tfru09755_t",7.15437531670296,4.35361351534884,1.28980542126358,3.37540333105729,0.00073707581477531,0.00296686272206321 +"Tfru09756_t",77.9860655308736,4.06697608890739,0.384724698189908,10.5711333533878,4.0556343158902e-26,2.42040255972327e-24 +"Tfru09757_t",510.528588101756,-0.590975097282587,0.20353291447856,-2.90358490073525,0.00368916929622248,0.0121703432855924 +"Tfru09758_t",122.610683126163,-0.0252870778454018,0.233036338793684,-0.108511307619665,0.913590111295411,0.947853446330319 +"Tfru09759_t",0,NA,NA,NA,NA,NA +"Tfru09760_t",0,NA,NA,NA,NA,NA +"Tfru09761_t",124.772226310326,-0.23364308266046,0.209448408463508,-1.11551615204165,0.2646293007979,0.403680986426079 +"Tfru09762_t",67.4804945322086,0.830186090515394,0.306566401113611,2.70801394901633,0.00676871774410543,0.0205513367403445 +"Tfru09763_t",29.4126428780593,1.52259148915114,0.382487689317362,3.9807594640982,6.86954357223472e-05,0.00035531559545238 +"Tfru09764_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru09765_t",0,NA,NA,NA,NA,NA +"Tfru09766_t",241.783061645405,0.385398909648381,0.163779517847569,2.35315694363611,0.0186147755076545,0.04814499894387 +"Tfru09767_t",461.705034107727,0.140260535885547,0.157233626067763,0.892051779211009,0.3723651794407,0.518609292170195 +"Tfru09768_t",50.8516486108631,-0.656013100894115,0.325852258907262,-2.01322250486782,0.0440912267062734,0.098166386581984 +"Tfru09769_t",9.12648206232718,-0.575936330362645,0.627263415590699,-0.91817299725711,0.358528303109925,0.504645498339631 +"Tfru09770_t",79.5896925050041,0.0429340017425308,0.245495864147942,0.174886863742266,0.861168532412522,0.913772544598652 +"Tfru09771_t",0,NA,NA,NA,NA,NA +"Tfru09772_t",4.09571821329028,-1.38402071619107,0.997275453236559,-1.38780184722222,0.165197392189676,0.281865194916641 +"Tfru09773_t",133.123830033309,-0.322908646788334,0.231589592290618,-1.39431415546136,0.163222758160091,0.279382434235017 +"Tfru09774_t",2.34636988390395,3.59543871797872,2.51038880059657,1.4322238519883,0.152079767640402,0.264394096154136 +"Tfru09775_t",66.3648036106274,0.0128726464308796,0.321310900773155,0.0400628998266314,0.968042979690294,0.981729286091571 +"Tfru09776_t",201.19614934199,-0.720277493339132,0.193767274470948,-3.7172298330858,0.000201419194422813,0.000940539814370103 +"Tfru10631_t",0,NA,NA,NA,NA,NA +"Tfru10632_t",36.1712522002015,-0.157790186985373,0.336454074665907,-0.468979866396495,0.639084027307814,0.757642994196334 +"Tfru10633_t",549.538433962095,-0.721914398103535,0.223860129848641,-3.22484579362856,0.00126040539659218,0.00476564838245194 +"Tfru04107_t",683.335313733847,-0.0517196615322559,0.13819754881378,-0.374244420224471,0.708222478594942,0.810162495959661 +"Tfru04108_t",0,NA,NA,NA,NA,NA +"Tfru04109_t",1.44928318944098,-4.01934425619668,2.35288041706922,-1.70826542098694,0.0875871044032932,0.171361080212055 +"Tfru04110_t",873.913955104787,-1.32880563284952,0.205432473085231,-6.4683329412007,9.90899837588354e-11,1.35967739823589e-09 +"Tfru04111_t",0,NA,NA,NA,NA,NA +"Tfru04112_t",72.4318961770446,-0.857977210098793,0.252343832528506,-3.40003241411447,0.000673778653169108,0.00274366198288294 +"Tfru04113_t",368.393353194412,-1.13598032476336,0.202227078110525,-5.61735023507835,1.93908119710503e-08,1.93131451674279e-07 +"Tfru04114_t",292.222677973132,-0.0111904645971186,0.184130943511653,-0.0607744922374246,0.951538805005986,0.971950636970971 +"Tfru04115_t",0,NA,NA,NA,NA,NA +"Tfru04116_t",421.928049640223,0.25399234951235,0.287926140063255,0.882144113266515,0.37769887947768,0.523529104590021 +"Tfru04117_t",102.259594008679,2.41206652669343,0.31547616629221,7.64579636884281,2.07656071379944e-14,4.49887984267487e-13 +"Tfru04118_t",4.20895194121111,0.441028952208779,1.06275739746289,0.414985539749375,0.678152488809509,0.787437650955546 +"Tfru04119_t",284.423591716501,2.0425412621586,0.308049645939802,6.63055870727328,3.34418632450636e-11,4.86941378935929e-10 +"Tfru04120_t",1.93874743552772,4.36692377879386,1.80025684860543,2.42572263073277,0.0152779418591692,0.0407824831593758 +"Tfru04121_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru04122_t",80.7770445391139,0.493719776299925,0.253345267274816,1.9488020503038,0.0513190688296488,0.111301556391854 +"Tfru04123_t",0,NA,NA,NA,NA,NA +"Tfru04124_t",0.573677052592043,2.63241690796499,3.1014208502152,0.848777716762411,0.396004991738982,NA +"Tfru04125_t",399.839387211639,6.00432465514525,0.927394968245407,6.47439856882681,9.5190329870087e-11,1.31260602741377e-09 +"Tfru04126_t",5.87709476241859,5.95317473107414,1.48976326525378,3.99605418519969,6.44069981414356e-05,0.000335138018694566 +"Tfru04127_t",57.4911208738391,-0.433208704800354,0.27369957015171,-1.58278913101774,0.113469534859091,0.210498026371557 +"Tfru04128_t",29.589885006735,0.0371123844709734,0.367291987272552,0.101043272810179,0.919516109200284,0.951751481079566 +"Tfru04129_t",77.5944565657233,0.703538788505298,0.300634928247194,2.34017648117992,0.0192746294926339,0.0495359629918876 +"Tfru04130_t",399.839387211639,6.00432465514525,0.927394968245407,6.47439856882681,9.5190329870087e-11,1.31260602741377e-09 +"Tfru04131_t",0,NA,NA,NA,NA,NA +"Tfru04132_t",0,NA,NA,NA,NA,NA +"Tfru04133_t",0,NA,NA,NA,NA,NA +"Tfru04134_t",0,NA,NA,NA,NA,NA +"Tfru04135_t",932.651916864082,-2.05671050411283,0.184729273516216,-11.1336469037339,8.60417207986502e-29,6.334255629848e-27 +"Tfru04136_t",513.678213148435,-0.506891827494469,0.305920645712657,-1.6569389304002,0.0975318225356456,0.186534504597064 +"Tfru04137_t",0,NA,NA,NA,NA,NA +"Tfru04138_t",37.4637865152491,3.57619703882934,0.549847709466832,6.50397733273646,7.82236887780837e-11,1.09415384678345e-09 +"Tfru04139_t",1.30240976635184,-0.822428825029012,1.6123512399991,-0.510080436958308,0.609995110124493,0.733252259350422 +"Tfru04140_t",10431.505608664,0.258024350153564,0.346570412496866,0.744507727288742,0.45656936810959,0.59946941943672 +"Tfru04141_t",1.2675506384643,3.75404540076155,2.45639229593467,1.52827600337881,0.126444025273568,0.228901256183198 +"Tfru04142_t",0,NA,NA,NA,NA,NA +"Tfru04143_t",365.64235661978,0.178719403266071,0.301329647114587,0.593102620261289,0.553112476988924,0.684319599481017 +"Tfru04144_t",187.602746309857,-0.286912864998249,0.190120078551976,-1.50911396199435,0.131269662144508,0.235779698137567 +"Tfru04145_t",0,NA,NA,NA,NA,NA +"Tfru04146_t",0.987941532675269,3.38698919324794,2.09793381723212,1.61444043917292,0.106431926162405,0.200315070853135 +"Tfru04147_t",0,NA,NA,NA,NA,NA +"Tfru04148_t",1.04997220397212,-0.0262090782438227,1.98742684287828,-0.0131874430184638,0.98947824779061,0.995125294816603 +"Tfru04149_t",0,NA,NA,NA,NA,NA +"Tfru04150_t",376.64520817562,-0.409732718410336,0.151133929646304,-2.7110571356758,0.00670690681745881,0.0203940998063489 +"Tfru04151_t",23.1008585762338,-0.357340027044931,0.458993839546777,-0.778529026441353,0.436257201591958,0.580984003072182 +"Tfru04152_t",52.8979724895811,-0.166744333237158,0.335080775229599,-0.497624291106834,0.618748879253138,0.740728639020815 +"Tfru04153_t",92.9282268783043,-0.395287856713383,0.285668756691899,-1.38372799773729,0.166441757296434,0.283418285649714 +"Tfru04154_t",0.488301569135423,2.37761170701572,3.99532948934563,0.595097779383681,0.551778112921887,NA +"Tfru04155_t",24.0279897349229,3.91153631801287,0.782821605595302,4.99671481989606,5.83152076203648e-07,4.515897392885e-06 +"Tfru04156_t",65.7560442873798,-1.12255241936053,0.267840589519859,-4.19112137324989,2.77579109682911e-05,0.000155772830358665 +"Tfru04157_t",83.8216476285406,-0.795266047599121,0.323241843845607,-2.46028186864004,0.0138827935048444,0.0376328632071727 +"Tfru04158_t",95.7250245093946,1.26153027535331,0.276561910836339,4.56147511976023,5.07954959176421e-06,3.29699303548965e-05 +"Tfru04159_t",2.87801213098691,2.26264490827879,1.94716671208214,1.16201909894983,0.24522770705418,0.380798524085763 +"Tfru04160_t",6.65447635221524,0.264394959419223,0.723559185011653,0.365408891070832,0.714806205333974,0.814986136602697 +"Tfru04161_t",164.67665800925,0.0165872490173335,0.205814795067275,0.0805930837572272,0.935765566675992,0.961755409035463 +"Tfru21673_t",0,NA,NA,NA,NA,NA +"Tfru13888_t",0,NA,NA,NA,NA,NA +"Tfru13889_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru07998_t",0,NA,NA,NA,NA,NA +"Tfru07999_t",1014.17346201416,-0.20703286933006,0.217517009133333,-0.951800827691383,0.341198002209576,0.486835275068556 +"Tfru08000_t",0,NA,NA,NA,NA,NA +"Tfru08001_t",17.8466743626656,-1.04227023594371,0.54823694867917,-1.90113095889429,0.0572848614322562,0.121370368158089 +"Tfru08002_t",759.954571429801,-0.475676399578986,0.195339242536671,-2.43512974352651,0.0148864509177022,0.0398998889183662 +"Tfru08003_t",13.1658208914675,1.84043183922807,0.566776264724969,3.24719285858089,0.00116549384199554,0.00444659941763725 +"Tfru08004_t",84.6583298012344,0.609185427612264,0.301084072108601,2.02330672408513,0.0430415340732732,0.0961826792371297 +"Tfru08005_t",127.68265457819,-0.434534194573519,0.239762228703907,-1.812354668717,0.0699314124329126,0.143045883397184 +"Tfru08006_t",104.070910749557,-0.863895506953887,0.238243759954218,-3.62609919823251,0.000287734858496237,0.00128764369788958 +"Tfru08007_t",109.56459272449,0.738557566444262,0.229589952446035,3.21685491275086,0.00129604121861661,0.00488388659246332 +"Tfru08008_t",3.2039834939928,5.08149606977083,1.6229784632247,3.1309695013909,0.00174230253565451,0.00634234397331621 +"Tfru08009_t",18.5628568629,6.64590463275826,1.25693067566018,5.28740746124891,1.24062086427623e-07,1.08119528592298e-06 +"Tfru08010_t",0,NA,NA,NA,NA,NA +"Tfru08011_t",0,NA,NA,NA,NA,NA +"Tfru08012_t",7.45445191206455,2.20401662241947,0.829616930863296,2.65666784322492,0.00789171556424728,0.023461290426123 +"Tfru08013_t",101.302804130618,-0.378709955144379,0.238546717994791,-1.58757143392201,0.112383281994639,0.208961508776702 +"Tfru08014_t",67.5640486779659,0.484750137462939,0.367105748286371,1.32046457928193,0.186679954561332,0.30983000143588 +"Tfru08015_t",0,NA,NA,NA,NA,NA +"Tfru08016_t",0,NA,NA,NA,NA,NA +"Tfru06899_t",1.9740864953965,2.25051605228744,1.60881717853442,1.39886376296503,0.161853840945685,0.277387372687445 +"Tfru06900_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru06901_t",511.810303400275,2.26296890290322,0.164504108495582,13.756306292885,4.66772838465001e-43,7.62509206193191e-41 +"Tfru06902_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00428_t",0.495528813586586,-1.01195050526167,2.77178898670578,-0.365089301572104,0.715044746654808,NA +"Tfru00429_t",0.328743335432514,-0.0642989735270509,3.76106262432427,-0.0170959592938454,0.986360062458801,NA +"Tfru15375_t",0,NA,NA,NA,NA,NA +"Tfru13868_t",0,NA,NA,NA,NA,NA +"Tfru13869_t",0,NA,NA,NA,NA,NA +"Tfru13870_t",0,NA,NA,NA,NA,NA +"Tfru13871_t",980.118468646784,0.272790467039229,0.396896163057808,0.687309408429572,0.491887771227664,0.630293163296854 +"Tfru13872_t",3.09960885392136,4.01669434027131,2.10650581578944,1.90680429655781,0.056545934767017,0.12016883677579 +"Tfru13873_t",19.3809361915756,0.650212945918339,0.456372069105118,1.42474307683491,0.154231482183803,0.267490744829008 +"Tfru13874_t",0.51976800175603,2.45431866011486,3.22735766148694,0.760473092091096,0.446971847375086,NA +"Tfru13875_t",10.8807046678673,-0.119353592508551,0.628386559077833,-0.189936577707365,0.849358829295737,0.906252710352257 +"Tfru13876_t",554.631758729761,-0.714755228620443,0.152068470229213,-4.700219759843,2.59881668964295e-06,1.79344796528551e-05 +"Tfru13877_t",4.51482002695759,0.715799485829044,0.99251217578238,0.721199702426615,0.470786654857205,0.611716519722727 +"Tfru20092_t",743.414718833822,1.74056766773508,0.166525114329817,10.4522832771502,1.43039401452346e-25,8.25057166109151e-24 +"Tfru20093_t",335.749936944305,0.520063457533462,0.155043517908639,3.35430635571566,0.000795642203723363,0.00317632403127522 +"Tfru20094_t",488.680643403688,0.0910110955030328,0.175281804983475,0.519227283810849,0.603602254870009,0.728384474495352 +"Tfru20095_t",21.0804487136737,0.275434570275086,0.474807983168647,0.580096754980749,0.56184937195003,0.692487550624611 +"Tfru20096_t",1169.94143868479,0.0101364340947041,0.165256111042516,0.0613377262163469,0.951090246175357,0.971714207231431 +"Tfru20097_t",0,NA,NA,NA,NA,NA +"Tfru20098_t",0,NA,NA,NA,NA,NA +"Tfru20099_t",0,NA,NA,NA,NA,NA +"Tfru20100_t",777.985708014223,0.166349544330961,0.296988278995379,0.560121580870702,0.575396511233465,0.704318706365251 +"Tfru20101_t",4.51302081963809,-3.11396796001981,1.16948780518472,-2.66267672584064,0.00775218501839922,0.0230691390372944 +"Tfru20102_t",434.060296270363,0.560023765182916,0.174344188346519,3.21217340534367,0.00131734835298383,0.00495084066159163 +"Tfru20103_t",3.96649722037243,1.88221657798255,1.00596469990345,1.87105628871787,0.0613372794123428,0.128556687886143 +"Tfru20104_t",13.9934608972496,3.4330445759533,0.815648127299875,4.20897745124244,2.5652898475543e-05,0.000144977744414811 +"Tfru20105_t",112.587021955878,-4.27413906504469,0.529473661283288,-8.07242999526253,6.8912684639594e-16,1.76460627257908e-14 +"Tfru20106_t",33.5473802590302,-1.90744361381546,0.369266206288439,-5.16549736025813,2.39800412956704e-07,1.98915242474834e-06 +"Tfru20107_t",8.38689087777513,-1.74032452130077,0.727542581051717,-2.39205864594895,0.0167541650338053,0.0440660728001602 +"Tfru20108_t",0,NA,NA,NA,NA,NA +"Tfru20109_t",118.431997571039,-0.144776379893975,0.246178603226325,-0.588094895318235,0.556468599286319,0.687369867095034 +"Tfru20110_t",22.2329751147738,7.88397686819667,2.68991565980774,2.93093831379091,0.00337939879137145,0.011294943989082 +"Tfru20111_t",54.5878785970739,0.535610637683634,0.338303872228905,1.58322349122042,0.113370534020705,0.210349241534022 +"Tfru20112_t",29.6151966675224,2.16929322473175,0.43551447769186,4.98098992306426,6.32598343202183e-07,4.85845947867703e-06 +"Tfru20113_t",0,NA,NA,NA,NA,NA +"Tfru03080_t",0,NA,NA,NA,NA,NA +"Tfru03081_t",0.939701679041467,3.29757954982876,2.79090766349953,1.18154376547661,0.237386778018834,0.371856659344964 +"Tfru03082_t",4.57013545801922,2.10317109461998,0.991879164337151,2.12039043689912,0.0339731325112685,0.0789343851280744 +"Tfru03083_t",26.2533572239456,0.131799430495428,0.386013518935793,0.34143734359042,0.732774366194411,0.827349824196768 +"Tfru03084_t",6.72646856672184,3.5300224918331,1.28447074767998,2.7482311280417,0.00599177552124988,0.0185317766950763 +"Tfru03085_t",45.2314516058936,-0.82057870859946,0.366434397831898,-2.23936047885958,0.0251324706733437,0.0615118868842336 +"Tfru03086_t",0,NA,NA,NA,NA,NA +"Tfru03087_t",0.385165427144936,-2.07679782548222,4.02498416437306,-0.515976645042454,0.605870721136016,NA +"Tfru03088_t",0.543317859874192,1.03920595601132,3.30339168662012,0.314587567747556,0.75307481974991,NA +"Tfru03089_t",480.495624921675,3.00223834284128,0.350106011010005,8.5752264983405,9.88919864037196e-18,3.0286192532873e-16 +"Tfru03090_t",210.616812542445,-0.288791218875656,0.208407167762703,-1.38570674884119,0.165836466580902,0.282731783505797 +"Tfru03091_t",1434.8051734823,-0.480869022105087,0.139100027521501,-3.45700163165501,0.000546221541770173,0.00227516063741234 +"Tfru03092_t",7.39672443817545,3.76781143193475,1.04437817499859,3.60770793773035,0.000308913941870206,0.001370637196482 +"Tfru03093_t",32.9474510196473,0.544436334800873,0.439432780029481,1.23895248498382,0.215363094977418,0.345705498895038 +"Tfru03094_t",11.9868422732168,2.77606680252026,0.676843583676216,4.10148942750155,4.10499266107565e-05,0.000223364297969543 +"Tfru03095_t",7.74829086884333,0.960415872499164,0.738025505772547,1.30133154611483,0.193144993703025,0.317726731446207 +"Tfru03096_t",1153.72789297472,0.207201518296558,0.332555642582027,0.62305819467625,0.533246280394236,0.667564566494546 +"Tfru03097_t",497.842411768404,-0.59221132584609,0.175496234003564,-3.37449592128606,0.000739510118204999,0.00297612595673941 +"Tfru03098_t",0,NA,NA,NA,NA,NA +"Tfru03099_t",274.180629291486,0.740647511401908,0.218331469856382,3.39230763155264,0.000693065789845475,0.00280942082534717 +"Tfru03100_t",5.5958090890576,2.42603853017321,0.965983308042643,2.51147044671926,0.0120229352361198,0.0333548147495179 +"Tfru03101_t",51.3309486312162,1.93611147352616,0.386618244437171,5.00781197313828,5.50522747703605e-07,4.29191756382726e-06 +"Tfru03102_t",3.87932516696177,1.18465407851967,0.942620857033061,1.25676624878471,0.208838290942289,0.337263743057326 +"Tfru03103_t",3743.24743442582,-0.764336112625115,0.254871540534581,-2.99890725744411,0.00270949769344078,0.00934988846339387 +"Tfru03104_t",315.876895219208,-0.555581425375477,0.153101442092413,-3.62884514856578,0.000284691937883401,0.00127530135505014 +"Tfru03105_t",0.360209768053121,-0.0642984428696687,3.65262828856368,-0.0176033359515355,0.985955295385567,NA +"Tfru03106_t",229.402276678196,4.84598284553396,0.315123176848451,15.3780591259541,2.29731435268551e-53,5.97835990850019e-51 +"Tfru03107_t",0.960493388496926,2.08695386472332,2.02288141517336,1.03167385347918,0.302224929999557,0.445543372201441 +"Tfru03108_t",45.3943423827821,1.2401614711673,0.426868422242199,2.90525465588,0.00366954409216216,0.0121163170231026 +"Tfru03109_t",138.942298516389,0.268851684638316,0.21764390585806,1.23528239202641,0.216725424552848,0.347187022243772 +"Tfru03110_t",1310.06668490258,-1.6352953256876,0.298520187189484,-5.47800582963458,4.30145965210658e-08,4.05845982353057e-07 +"Tfru03111_t",258.264472001389,-0.365280876170276,0.221079681006683,-1.65225892541086,0.098481778739263,0.188104652059802 +"Tfru03112_t",177.636246715897,-0.279445222682158,0.250342046811299,-1.11625364672678,0.264313576934942,0.403320495731347 +"Tfru03113_t",0.29973714400522,1.69074106487515,3.82362864481613,0.44218234089426,0.658357263677278,NA +"Tfru03114_t",0,NA,NA,NA,NA,NA +"Tfru03115_t",59.6551493355385,0.452291075878347,0.295963359519152,1.52819956028739,0.126462997949775,0.228909891144935 +"Tfru03116_t",1.18052424624774,2.4229570403828,1.86865033208089,1.29663479506337,0.19475687442,0.319784214931739 +"Tfru03117_t",121.090281988379,0.812609287691754,0.279037311458642,2.91218863686692,0.00358905817961577,0.0118803611980182 +"Tfru03118_t",910.713961298306,-0.0590581685555663,0.197789499011326,-0.298591021519219,0.76525211688968,0.850156934794703 +"Tfru03119_t",0.991959821117534,2.12602777546709,2.27741069036802,0.933528495522925,0.350547164811789,0.496377446914764 +"Tfru03120_t",0,NA,NA,NA,NA,NA +"Tfru03121_t",29.5760554657756,0.717913057843669,0.360584844288576,1.99096847583844,0.0464843530841553,0.102640595959699 +"Tfru03122_t",80.469405187415,0.0638377861433268,0.244664899771747,0.26091926632256,0.794154766964349,0.869784852924641 +"Tfru03123_t",403.689430399754,0.466273695930753,0.288821941401861,1.61439845486666,0.106441026663342,0.200315352903262 +"Tfru03124_t",2.09031753991755,1.51981334538363,1.42567392932699,1.06603151963443,0.286409393792889,0.428024080924865 +"Tfru03125_t",968.89922138845,0.540449369784339,0.204586521716589,2.64166654406011,0.00824992353898805,0.0243451066459062 +"Tfru03126_t",435.116030442821,0.0381847532719264,0.193498032366958,0.197339232884349,0.843562079537086,0.902218367504898 +"Tfru03127_t",266.279533719675,0.794942139375589,0.188616718418029,4.21459002172739,2.50232328873634e-05,0.000141920920430611 +"Tfru03128_t",154.737357248979,-0.0173535206066186,0.291261948487867,-0.0595804590909048,0.952489782102191,0.972566900421892 +"Tfru03129_t",332.178299346834,-0.414295138960451,0.201745016397217,-2.05355823087467,0.0400184683326117,0.0903564690560784 +"Tfru03130_t",435.590947734713,0.01970903553741,0.161770820684484,0.121833068868768,0.903031223854907,0.940756387716247 +"Tfru03131_t",0.603492576452704,1.20697926142752,3.16664675258034,0.381153742659806,0.703089170925675,NA +"Tfru03132_t",341.140976682535,-0.104537479323794,0.15854963244754,-0.65933599283734,0.509680034423484,0.646781536085143 +"Tfru03133_t",134.386984497375,-1.28049558118069,0.257458459329377,-4.97360072967148,6.57205996075978e-07,5.03018816422038e-06 +"Tfru03134_t",0,NA,NA,NA,NA,NA +"Tfru03135_t",0.34743332878183,-1.94360805271459,3.66213660969954,-0.530730625276716,0.595605460502085,NA +"Tfru03136_t",0,NA,NA,NA,NA,NA +"Tfru03137_t",0,NA,NA,NA,NA,NA +"Tfru03138_t",171.366669459511,1.4967713023208,0.212309845687492,7.04993825168127,1.78997205525886e-12,3.03942144132726e-11 +"Tfru03139_t",216.320802100635,0.0435182648621433,0.213311937434016,0.204012327606395,0.838343865468469,0.898957199424288 +"Tfru03140_t",0,NA,NA,NA,NA,NA +"Tfru03141_t",0,NA,NA,NA,NA,NA +"Tfru03142_t",312.299934304115,-0.507533706729669,0.268089630114703,-1.8931493415561,0.0583380120256879,0.123216752466487 +"Tfru03143_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru03144_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru03145_t",0,NA,NA,NA,NA,NA +"Tfru05365_t",6.83619278542984,0.0144017744810469,0.716780305321764,0.0200923133268595,0.983969731985626,0.9918585083253 +"Tfru05366_t",38.9606497573035,5.21826132629241,0.704916036432505,7.4026707531033,1.33472396944543e-13,2.63879173464565e-12 +"Tfru05367_t",0,NA,NA,NA,NA,NA +"Tfru05368_t",133.537523672504,-0.205151505649156,0.223574627208986,-0.917597440327569,0.358829658465855,0.504918406322361 +"Tfru05369_t",33.768137364727,2.41184571583292,0.683113660298664,3.53066532848785,0.000414515869587623,0.0017836695176641 +"Tfru05370_t",64.2940713294818,0.386372862838054,0.256517587573774,1.50622367258515,0.132009764412653,0.236861903916874 +"Tfru05371_t",477.778610018826,-0.116034519892289,0.160982711626051,-0.720788702838026,0.471039527136757,0.611877462062524 +"Tfru05372_t",44.680388466871,0.596415695879922,0.297898888273495,2.00207425860672,0.0452767455582603,0.100355121186691 +"Tfru05373_t",67.3279834212447,0.56236998667149,0.269572899904442,2.08615178629172,0.0369648759894639,0.0845883358531904 +"Tfru05374_t",23.4082641451206,-0.0530372275298374,0.415346684990881,-0.127693874650768,0.898391237729231,0.937458416319015 +"Tfru05375_t",0,NA,NA,NA,NA,NA +"Tfru05376_t",0,NA,NA,NA,NA,NA +"Tfru05377_t",0,NA,NA,NA,NA,NA +"Tfru05378_t",127.679056353464,0.481573510992322,0.276979106217593,1.73866367600306,0.082093938893404,0.162445831338142 +"Tfru05379_t",348.582284331428,-0.402195172015664,0.211029676098919,-1.90587020484805,0.0566670475872906,0.120334806433586 +"Tfru05380_t",6.86942033893694,0.692431898935415,0.810132869128287,0.854713992385571,0.39270950235173,0.538696822717236 +"Tfru05381_t",535.843069318021,1.5082628812161,0.188057135645255,8.02023744560927,1.05540947741684e-15,2.63029667088962e-14 +"Tfru05382_t",980.101366283592,0.236029500356221,0.243018931950049,0.971239147757984,0.331429203567985,0.477094331758636 +"Tfru05383_t",18.5275210575714,-0.726510279723386,0.478330091520001,-1.51884711541926,0.128800983246066,0.232251093765024 +"Tfru05384_t",77.7792482295065,-0.416216331507878,0.270799559668683,-1.53699042944202,0.124295653053753,0.22590376856759 +"Tfru02234_t",161.012161912843,-0.0588797463533646,0.21586520512989,-0.27276163528965,0.785036452239539,0.863729207075409 +"Tfru02235_t",8.33849295206437,1.01891159239368,0.697662492186623,1.46046491506258,0.144162343253634,0.25404356236349 +"Tfru02236_t",229.695008611052,-1.35315517686176,0.220015178299094,-6.15028102753094,7.73457759801951e-10,9.39228684990106e-09 +"Tfru02237_t",11.1613197548615,-1.29815011343637,0.624558132013324,-2.07850966450738,0.0376624416906701,0.0858248085772525 +"Tfru02238_t",8.62587155520667,-2.42847178463859,0.977118894100217,-2.48533909159013,0.0129428084102662,0.0354671301851055 +"Tfru02239_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru02240_t",87.4570070094411,-0.447386881314517,0.293361390558273,-1.52503668074088,0.127249948882762,0.230073829051237 +"Tfru02241_t",936.817034551701,0.489024779089826,0.306274484502806,1.59668795095252,0.110335282807339,0.205981283719407 +"Tfru02242_t",95.1982531403614,-0.62764535119115,0.242853075471871,-2.58446531908899,0.00975301126110719,0.0280051824510622 +"Tfru02243_t",1071.6671750813,-0.0213368479245469,0.1430951869955,-0.149109473019647,0.881467251069045,0.927206104480411 +"Tfru02244_t",11.7258012521781,0.159864875062019,0.579036638281374,0.276087667848637,0.782480732336547,0.862019138060149 +"Tfru04832_t",276.32582538928,-0.130928025220787,0.199491694769174,-0.65630815043343,0.511625874460859,0.648662308544869 +"Tfru16971_t",288.202190310481,-0.320836953077957,0.194324915413174,-1.65103354037639,0.0987317263911755,0.18848554436872 +"Tfru16972_t",2032.88249166515,-1.58830768376673,0.167860462644897,-9.4620714058601,3.01902290481621e-21,1.26055471286916e-19 +"Tfru16973_t",127.896593730767,-0.390531021519105,0.221207973587275,-1.76544730818677,0.077488618487057,0.155268625816128 +"Tfru16974_t",122.759105639925,0.240327099107339,0.20326532950699,1.18233197806158,0.237074001817642,0.371600795677184 +"Tfru16975_t",256.692214162689,-0.230809439773304,0.214661954198363,-1.07522285742363,0.282274964213547,0.423582787924044 +"Tfru16976_t",0,NA,NA,NA,NA,NA +"Tfru16977_t",80.9450632156846,-0.353232222079798,0.265157568170607,-1.33215968345479,0.182807721550667,0.304838447828324 +"Tfru16978_t",515.200190471487,0.0561309626156584,0.157888705350581,0.355509676838653,0.722207796729868,0.820095093304182 +"Tfru16979_t",428.238269621216,-1.12954395532113,0.250623200343001,-4.50694091279358,6.57689385302107e-06,4.17089499661693e-05 +"Tfru16980_t",0,NA,NA,NA,NA,NA +"Tfru16981_t",20.3638562438153,0.252887977587677,0.459929674940066,0.549840532948066,0.582428754863982,0.710457052044254 +"Tfru16982_t",20.6787887934159,1.61671936012072,0.450144996283998,3.5915524408067,0.000328714013712121,0.00144701408868554 +"Tfru16983_t",77.6350952267053,0.0383141430598869,0.273848731856169,0.139909879443993,0.888731195402354,0.931665017587823 +"Tfru16984_t",63.2054930154561,-0.164593320689425,0.266337596129854,-0.617987558201045,0.536583540076106,0.670429858581022 +"Tfru16985_t",0.317617804921169,-0.0642991832940788,3.80307376634159,-0.0169071617445728,0.986510679338551,NA +"Tfru16986_t",49.6002855498793,0.895651233661506,0.454934895901338,1.96874594965286,0.0489822718749356,0.107084423616397 +"Tfru16987_t",262.343681678553,0.421125917952036,0.161541936703893,2.60691388592153,0.00913623340970497,0.0264718932818743 +"Tfru16988_t",44.2588161515981,1.76337979881495,0.484509039890441,3.6395188812446,0.000273147909868172,0.00122949521778956 +"Tfru16989_t",0,NA,NA,NA,NA,NA +"Tfru16990_t",78.9418723595978,-0.157256609365699,0.265548699805788,-0.592194989019756,0.5537200245711,0.684768422937571 +"Tfru16991_t",0.850971578381857,3.16307563855707,2.2516864189552,1.40475850097491,0.160093103173439,0.274866409591222 +"Tfru16992_t",1.86885957449272,1.51375163307226,1.4632189800661,1.03453526348043,0.30088600016131,0.444008221258745 +"Tfru16993_t",47.58092419796,-0.421288662461339,0.292413233678211,-1.44073049349384,0.149660836580244,0.261325545967533 +"Tfru16994_t",0,NA,NA,NA,NA,NA +"Tfru16995_t",0,NA,NA,NA,NA,NA +"Tfru16996_t",247.895647568717,-0.331164542279753,0.222725157309297,-1.48687533227271,0.137047740444977,0.244100949555001 +"Tfru16997_t",213.051749885848,-0.747347953375266,0.199413685137322,-3.74772650563386,0.000178444671401329,0.000844489690412718 +"Tfru16998_t",266.506227834738,-0.0611622008319923,0.199250236913046,-0.306961747095357,0.758872488851273,0.845753015312559 +"Tfru16999_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru17000_t",0,NA,NA,NA,NA,NA +"Tfru17001_t",2.9681194872371,2.99912944470702,1.45300682222825,2.06408490230468,0.0390096671761719,0.0884176981367963 +"Tfru17002_t",15.8906133196549,0.175646784635326,0.578992053928142,0.303366485677411,0.761610583502068,0.847757443364145 +"Tfru17003_t",52.7608221479678,1.06803836315602,0.513467173996823,2.08005188499671,0.0375207741230834,0.0855455302439494 +"Tfru17004_t",297.548276435081,2.63431593390015,0.426781904264899,6.17251084822251,6.7213914724923e-10,8.22442543216936e-09 +"Tfru17005_t",5.84250040025199,2.9282097991535,1.21170188927744,2.41660908930301,0.0156658311895803,0.0416242790006894 +"Tfru17006_t",370.259799333102,0.367867905437557,0.186028515667571,1.97748127010231,0.0479872555990197,0.105372329307895 +"Tfru17007_t",814.693400778705,-0.0236383902289356,0.18524457859298,-0.127606380756081,0.898460481305922,0.937458416319015 +"Tfru17008_t",53.7013255578733,0.381679586499882,0.337491035419726,1.1309325180303,0.258083495340134,0.395573622872907 +"Tfru17009_t",101.887951142733,-1.06057638865778,0.29422369085494,-3.60466006519059,0.000312561766018003,0.00138517471752137 +"Tfru17010_t",0,NA,NA,NA,NA,NA +"Tfru17011_t",0,NA,NA,NA,NA,NA +"Tfru17012_t",70.6405342994104,0.691980584634141,0.283265741530829,2.44286718504867,0.0145710985640508,0.0392091902812503 +"Tfru17013_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru17014_t",3.00079325995417,3.97789723060316,1.59542441842408,2.49331600084975,0.0126556158553622,0.0348165559733259 +"Tfru17015_t",217.288809010234,0.476275993649976,0.21281889800889,2.23794032440709,0.0252249469449222,0.0617074841718964 +"Tfru17016_t",114.427968815966,-0.538915852185582,0.306656370738397,-1.75739330276403,0.0788507940764498,0.157205424383543 +"Tfru17017_t",859.448269994994,1.08158837816013,0.394953758337332,2.73851901729806,0.00617165909289264,0.0190171734130438 +"Tfru17018_t",644.128476894148,-0.205157554811541,0.236187090304336,-0.868623067192991,0.38505333330066,0.531432492991936 +"Tfru17019_t",328.323447369337,-1.04784847152394,0.225575023716897,-4.64523267806024,3.39693377548351e-06,2.28435630695075e-05 +"Tfru17020_t",61.6502036103601,9.35396158219278,1.22542538594296,7.63323633531137,2.28932645404051e-14,4.92645442706025e-13 +"Tfru17021_t",430.094823499193,-0.244580082789222,0.199785383721817,-1.22421409531028,0.220871473255613,0.352072903950187 +"Tfru17022_t",668.469757425194,-0.568629921904714,0.297744635656541,-1.90979065215015,0.0561601733602464,0.119462473130151 +"Tfru17023_t",331.186871309477,0.338394396793001,0.191906167990217,1.76333257204246,0.077844414809782,0.155813510261071 +"Tfru17024_t",174.558031726465,0.495299399129757,0.213952630991836,2.31499559894945,0.0206131729255833,0.0522923158098564 +"Tfru17025_t",20.2992329872382,0.175920124577219,0.42381451479206,0.415087540509396,0.678077820090718,0.787437650955546 +"Tfru17026_t",130.300526878327,0.319061908167642,0.234050336730642,1.36321918021779,0.172813444162501,0.29209008989931 +"Tfru17027_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru17028_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru17029_t",167.782129781483,4.56871400663124,0.348397913355768,13.1134941728709,2.75602053770317e-39,3.67141307344029e-37 +"Tfru17030_t",10.0018477125192,0.971813625928085,0.587976132246594,1.65281135173785,0.0983692630629497,0.187921818809118 +"Tfru17031_t",4.88335079059895,0.928510464521418,0.892058423748857,1.04086284014826,0.297939210155118,0.441055663663947 +"Tfru17032_t",73.5202498038421,0.721558802419685,0.251711599392246,2.86660926298938,0.00414894912537087,0.0134765575364006 +"Tfru17033_t",3.51262593208022,0.878934094663487,1.0754380688188,0.817280064884498,0.413768396488276,0.559491070836059 +"Tfru17034_t",0,NA,NA,NA,NA,NA +"Tfru17035_t",0.796916866351753,1.79354510089373,2.10418234077449,0.852371520347221,0.394007921864215,0.539816179450329 +"Tfru17036_t",75.7885245668576,0.335455856108156,0.314320470183514,1.06724151918042,0.285862788374213,0.427447665117585 +"Tfru17037_t",394.783304553027,0.0994081302274089,0.176430860379039,0.56343958202008,0.573135590440684,0.70252900175608 +"Tfru17038_t",153.853875815278,-0.150582853355115,0.20471612864177,-0.735569074865705,0.46199298852646,0.604276238135156 +"Tfru17039_t",344.759912573528,0.161041532795958,0.227132627075321,0.709019813091643,0.478312181701457,0.618189043639441 +"Tfru17040_t",236.416692800815,-0.328018313855332,0.211813158945923,-1.54862103699174,0.121472845809215,0.221977814094082 +"Tfru17041_t",381.361648023955,0.302923939362309,0.192391877500711,1.57451522017185,0.11536838563907,0.213366206974828 +"Tfru17042_t",264.971536133792,0.0452956607540155,0.163984521100267,0.276219123915481,0.782379769650751,0.861950341871803 +"Tfru17043_t",0.525437198958242,2.46470302181811,3.2184532812315,0.765803572850068,0.443793187997663,NA +"Tfru17044_t",0.605143485212651,2.6967370322281,3.06659443390694,0.879391484707147,0.379189047549712,NA +"Tfru17045_t",368.361590302317,-0.120001168865116,0.267184556222723,-0.449132130096186,0.653336343710349,0.768833072470166 +"Tfru17046_t",126.4576583171,-2.55475554023646,0.410340730081677,-6.22593701514336,4.78686357723521e-10,5.99161112184139e-09 +"Tfru17047_t",627.662062754571,0.00676863069769486,0.252371530584179,0.0268201040031224,0.978603218309155,0.988497022285561 +"Tfru17048_t",12.0255490147729,0.255009863361588,0.764151202542196,0.333716498139655,0.738593498895661,0.831434714617896 +"Tfru17049_t",0,NA,NA,NA,NA,NA +"Tfru17050_t",55.3914464434403,0.264300310765154,0.312580011625807,0.845544503599132,0.39780689591487,0.543556891786726 +"Tfru17051_t",144.356610652331,1.33720673598932,0.28252383031003,4.73307591264755,2.21142733278899e-06,1.53844400708168e-05 +"Tfru03873_t",0,NA,NA,NA,NA,NA +"Tfru03874_t",137.365063149252,2.2796014800173,0.477855364768339,4.77048422616839,1.83783578045023e-06,1.29382713955571e-05 +"Tfru03875_t",710.844171303185,-0.308808814356464,0.18503235479666,-1.66894495125368,0.0951282899578119,0.18299562740724 +"Tfru03876_t",1029.05640115198,0.564703573645646,0.165774797442202,3.40645008987287,0.000658135824229112,0.0026882788366942 +"Tfru03877_t",859.125219997924,0.199419184476967,0.293501251122006,0.679449180249217,0.496853297468137,0.63486022251424 +"Tfru03878_t",1.5303571986051,0.293013375497568,1.42654714653745,0.205400414706782,0.837259296294128,0.898397249529145 +"Tfru03879_t",363.449517231002,-0.615369488036213,0.201768078356361,-3.04988525959669,0.00228928808231921,0.00804937427844523 +"Tfru03880_t",85.4679938449459,-0.583404778908249,0.279768911485265,-2.08530953568433,0.0370412124097669,0.0847175556765468 +"Tfru03881_t",147.474704052775,0.0267852049959158,0.224185305153797,0.119477969252001,0.904896692991368,0.94159244258568 +"Tfru03882_t",5751.21501498486,-0.59026300029162,0.257569107649439,-2.29166846008174,0.0219247817316798,0.0550270960137932 +"Tfru03883_t",337.928607392061,-0.235191069126876,0.197798630065599,-1.18904296277925,0.234422761130741,0.368700467789764 +"Tfru03884_t",266.09213828287,0.70665489754147,0.172944042892745,4.08603202354716,4.38813243103778e-05,0.000237328187062894 +"Tfru03885_t",0,NA,NA,NA,NA,NA +"Tfru03886_t",10.5327005293572,0.373170440431535,0.739857895071403,0.504381237150306,0.613993500450302,0.736831708942987 +"Tfru03887_t",16.4008439548005,4.5226139403459,0.835071016153154,5.41584350655566,6.1000437681962e-08,5.60192776086299e-07 +"Tfru03888_t",0.465713289725926,0.744691695303956,2.79455999088783,0.266479051346959,0.789870290916877,NA +"Tfru03889_t",0.630940720631046,2.75244433675264,2.45442760740107,1.12142005266439,0.26210910443866,NA +"Tfru03890_t",162.726807689955,0.096325151706919,0.285638031739663,0.337228033396869,0.735945006136902,0.829620170117558 +"Tfru03891_t",8.41729713016706,4.61772710466486,1.32634186158637,3.48155120365563,0.000498518459124535,0.00209872895319923 +"Tfru03892_t",18.5714512426398,2.35406711892007,0.530668517104054,4.43604066012169,9.16285483023915e-06,5.6616424931185e-05 +"Tfru03893_t",79.4266649860071,1.56341222195193,0.268603746561205,5.82051532030913,5.86664650485993e-09,6.2881009951516e-08 +"Tfru03894_t",80.6807028733352,3.87561025880211,0.655913749113558,5.9087193461638,3.44777512505479e-09,3.83124167322374e-08 +"Tfru03895_t",148.685176999124,2.69086828567392,0.247238049986667,10.8837142414731,1.37829868912776e-27,9.07244843019978e-26 +"Tfru03896_t",1617.12858662075,-0.651435175322975,0.187558402954415,-3.47323908212902,0.000514217070216287,0.00215751369168363 +"Tfru03897_t",0,NA,NA,NA,NA,NA +"Tfru03898_t",1111.60120228323,-1.65606444077993,0.40638536467137,-4.07510846784341,4.59929043586825e-05,0.000247373515872943 +"Tfru03899_t",391.250090250698,-1.06002799133712,0.172577250718292,-6.14233907960131,8.13150411523143e-10,9.8475682953939e-09 +"Tfru03900_t",171.033938331445,-0.578681295205067,0.188220312254844,-3.07448908288683,0.00210863438657746,0.00748829539378033 +"Tfru03901_t",1.66723429138752,-1.39760865370164,1.52451041464265,-0.916759006877135,0.359268937975408,0.505374293796583 +"Tfru08459_t",22.8258686967104,2.67771325722116,0.530103047553479,5.05130704224262,4.38797061679843e-07,3.4960050695603e-06 +"Tfru08460_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08461_t",0.328743335432514,-0.0642989735270509,3.76106262432427,-0.0170959592938454,0.986360062458801,NA +"Tfru08462_t",2.86738296882215,1.24694729297286,1.11671447789327,1.11662140829882,0.264156234098148,0.403151699339645 +"Tfru08463_t",466.748558005364,-0.124412583306253,0.201766002245089,-0.616618171158127,0.537486606121216,0.671071143374773 +"Tfru08464_t",910.287577654907,1.23963995395242,0.163775471240764,7.56914295261007,3.7569455068648e-14,7.90229703417615e-13 +"Tfru08465_t",577.28005310844,1.72979738048956,0.165293396926386,10.465011988712,1.25060705762768e-25,7.2509290025149e-24 +"Tfru08466_t",386.64387819702,0.188017900980918,0.216957120421095,0.866613184282642,0.386153987210315,0.53264260300566 +"Tfru08467_t",183.31684363815,0.499234084050382,0.343567206737326,1.45309003379962,0.14619875780292,0.256662080297251 +"Tfru08468_t",628.216415444281,-0.200950752067255,0.406377580205498,-0.494492712825441,0.620958251538305,0.742668507226379 +"Tfru08469_t",107.290138575069,-0.866590343011858,0.330287302530893,-2.62374707223509,0.00869683416979791,0.0254092883446576 +"Tfru08470_t",274.491759412869,-0.213219617379038,0.200413626603111,-1.06389780472007,0.287374997624362,0.429049529475199 +"Tfru08471_t",1.79161352943163,2.16795161466175,1.62658917084958,1.33282063689715,0.182590671700767,0.304612689725171 +"Tfru08472_t",7.4973680950794,3.77408538221157,1.02546936096228,3.68034923897684,0.000232914734495783,0.00106750599181152 +"Tfru08473_t",304.93413323859,-1.60617772330182,0.21963385678111,-7.31297873124617,2.61284385460986e-13,4.9766336566952e-12 +"Tfru08474_t",222.293056703401,-1.25840681377957,0.224526096805604,-5.60472404626134,2.08587018631389e-08,2.06282698938156e-07 +"Tfru08475_t",2757.09436381688,-0.59134067523655,0.393265517916175,-1.50366774684425,0.13266693784464,0.237774170654524 +"Tfru08476_t",5367.00592708154,0.434362061014266,0.329293839216728,1.31907132562048,0.187145268371073,0.310314225838676 +"Tfru08477_t",128.380462639904,-0.140660527878596,0.250028714239926,-0.562577495573642,0.573722619821077,0.703051765798412 +"Tfru08478_t",311.89278483987,3.66704211869439,0.38427670474104,9.54271251275971,1.39144353127701e-21,5.89782314961735e-20 +"Tfru08479_t",0,NA,NA,NA,NA,NA +"Tfru08480_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08481_t",411.486801052816,-0.441900988136436,0.259978570120018,-1.69975928374571,0.0891762130654999,0.173725944325025 +"Tfru08482_t",267.058577503524,0.525764692905271,0.23529515869882,2.2344900584132,0.0254508459563512,0.0620998455593477 +"Tfru08483_t",114.640173730638,-0.170164453569612,0.2372911137294,-0.717112625480206,0.473304606041544,0.613954505489466 +"Tfru08484_t",88.3495301687186,0.993571633421279,0.277294939250229,3.58308606751993,0.0003395586639414,0.00148977120153078 +"Tfru08485_t",2.37397717804206,1.8813482435417,1.62422623882444,1.1583043042719,0.246739875484998,0.382651126973477 +"Tfru08486_t",567.711053117756,3.13904748104718,0.234809792041147,13.3684692352912,9.24233393921592e-41,1.36081206289245e-38 +"Tfru08487_t",12.3878518641065,1.09630340993251,0.547577412619868,2.00209757500273,0.0452742382959547,0.100355121186691 +"Tfru08488_t",6.26803268376471,0.0252860949457905,0.752292204634164,0.0336120656176239,0.973186500734157,0.985026180924899 +"Tfru08489_t",42.8979278626262,-0.00569546659073624,0.389739136125111,-0.0146135352157909,0.988340500865571,0.994450002850199 +"Tfru08490_t",329.57604719149,-0.532132791564411,0.185412885743824,-2.86998818571668,0.00410487135785923,0.0133527646786177 +"Tfru08491_t",0,NA,NA,NA,NA,NA +"Tfru08492_t",978.378119435756,-0.755722726064485,0.279651147160976,-2.70237663509196,0.00688457272053592,0.0208380764789821 +"Tfru08493_t",405.777956129638,-0.995560972654501,0.247970177503278,-4.0148415534418,5.94857431268357e-05,0.000311558841839126 +"Tfru08494_t",135.838348113088,2.11846592725961,0.318233952002188,6.65694503660328,2.79577677274205e-11,4.1083049359138e-10 +"Tfru08495_t",6.41625327397368,0.773869571970065,0.738911390218508,1.04731038418723,0.294956448307723,0.437682357321764 +"Tfru08496_t",35.2974523574582,0.916662825428424,0.374053474221156,2.450619733815,0.0142610523704231,0.0384950370341417 +"Tfru08497_t",348.100288112585,1.09686241629603,0.210289170549653,5.21597195627838,1.8285584141685e-07,1.5454356989838e-06 +"Tfru08498_t",2.04587620714846,1.62405555338655,1.66305076210831,0.976552003336133,0.328790990670708,0.474425684797579 +"Tfru08499_t",0,NA,NA,NA,NA,NA +"Tfru08500_t",0,NA,NA,NA,NA,NA +"Tfru08501_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08502_t",0,NA,NA,NA,NA,NA +"Tfru08503_t",0.162767189711808,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08504_t",0,NA,NA,NA,NA,NA +"Tfru08505_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru08506_t",31.6208666831693,0.390777163932209,0.419147501045276,0.93231419239691,0.351174175228941,0.497013725518479 +"Tfru08507_t",26.9501168103455,4.96875804523455,0.937674500253957,5.29902225547226,1.16424444180631e-07,1.02059501009108e-06 +"Tfru08508_t",96.5106702965054,1.83899356150134,0.45322639899618,4.05756056040513,4.95879610274067e-05,0.000264421865092533 +"Tfru08509_t",287.848296446148,-0.643123489283722,0.201473809821444,-3.19209474349887,0.00141244994383512,0.00526580538781108 +"Tfru08510_t",42.9355303370094,-0.852459467214368,0.383683208197495,-2.22177944982043,0.0262982141809226,0.063896866069813 +"Tfru08511_t",1210.65751765347,-1.25702570886006,0.209160579913418,-6.00985955087906,1.85684118135218e-09,2.13875994022963e-08 +"Tfru08512_t",243.486192039821,0.269018288323945,0.212053031966832,1.26863683970349,0.204570618716975,0.331832314770306 +"Tfru08513_t",828.914058978661,0.727000059752415,0.542758615195716,1.33945374499539,0.180423002958235,0.301919157036436 +"Tfru08514_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08515_t",105.12144786296,0.0403938477064973,0.251397731511526,0.160677057281423,0.872347760260886,0.921163672484601 +"Tfru08516_t",287.724290949948,0.0348599534914748,0.171558036950752,0.203196271716969,0.838981626790467,0.899364547801097 +"Tfru08517_t",343.127218597287,0.119012141011146,0.181082295467959,0.657226818908996,0.511035083544485,0.648190336607051 +"Tfru08518_t",4.8969700390503,4.70074401449923,1.40024593656788,3.35708456046024,0.00078769018227776,0.00314850978377858 +"Tfru08519_t",187.920490085423,2.60369410854815,0.249646195652877,10.4295364955951,1.81772806869302e-25,1.03777434125892e-23 +"Tfru08520_t",1.38702871705819,-2.76602271110678,1.79964464646363,-1.53698271297177,0.124297542723025,0.22590376856759 +"Tfru08521_t",410.796743270063,-0.4953583576595,0.159587389203404,-3.10399437030789,0.00190926963870143,0.00686460788991823 +"Tfru08522_t",579.228524611565,-2.07172877853562,0.180554369749076,-11.4742655157822,1.77679971009921e-30,1.43555153472997e-28 +"Tfru08523_t",10.1248191658257,0.511271918762649,0.590648401487642,0.865611279866211,0.386703367733485,0.533132605435383 +"Tfru08524_t",96.615868173114,-1.19990785257736,0.30186378960537,-3.97499764428854,7.03799527617694e-05,0.000363094362104288 +"Tfru08525_t",50.7809402755725,0.544863058469902,0.37494430426405,1.45318398565721,0.146172677311986,0.25665656035166 +"Tfru08526_t",5.52404132923843,-0.127978293643548,0.794224872144066,-0.161136093985651,0.871986212790411,0.921007295168064 +"Tfru08527_t",244.605980515132,-0.542982633036471,0.183313751372675,-2.96203983045763,0.00305608247217175,0.0103723272258422 +"Tfru08528_t",3.37169970310524,-0.95793547092662,1.35257734102619,-0.708229719566232,0.478802613110184,0.618362426072243 +"Tfru08529_t",120.638377558327,-0.174956724961228,1.40052285163725,-0.124922435043954,0.900584956902978,0.938799726838169 +"Tfru08530_t",76.8680190677507,-2.10075709485292,0.395171448114147,-5.31606497604581,1.06035298799928e-07,9.36491707633148e-07 +"Tfru08531_t",129.458854627386,-0.787725844238596,0.209879491535661,-3.7532292387165,0.0001745710758086,0.000827733194194165 +"Tfru08532_t",0,NA,NA,NA,NA,NA +"Tfru08533_t",1.23272958864071,3.72610254964531,3.28765788493221,1.13336079362836,0.257062771455454,0.394559003166659 +"Tfru08534_t",46.7164466365813,0.0896364572363469,0.293563485977406,0.3053392588588,0.760107778408741,0.846555343901161 +"Tfru08535_t",59.435630465389,-0.242012138751895,0.305945755217309,-0.791029568558637,0.42892673707294,0.573782449234452 +"Tfru08536_t",1.3926385294961,1.57626399016105,1.69154301562867,0.931849781884039,0.351414163275933,0.497174439322376 +"Tfru08537_t",34.5273714320473,3.63245820378076,0.594433466137086,6.11079020733172,9.91390206051339e-10,1.18521970146522e-08 +"Tfru08538_t",6.29584274130617,5.06368399148181,1.3901453714147,3.6425571710739,0.000269942998333036,0.00121751799731829 +"Tfru08539_t",379.067524805396,-1.17298273995735,0.287397083976756,-4.08140097918396,4.47650488341835e-05,0.000241233275441615 +"Tfru08540_t",11.2219245429687,-2.56403724381052,0.665041437498723,-3.85545486226254,0.000115514643913909,0.000568304623168449 +"Tfru08541_t",158.282835349736,0.113893359213885,0.199508862632679,0.570868670749615,0.568088669262596,0.697684517328814 +"Tfru08542_t",101.724836241412,-0.362594465578202,0.222748635300036,-1.62781902160612,0.10356326596699,0.196003880959091 +"Tfru08543_t",48.9080745167995,3.39705870752062,0.422328313412608,8.04364424461817,8.72054485812943e-16,2.19534076406003e-14 +"Tfru08544_t",38.505961037766,2.04411737772028,0.594675654651855,3.43736516154673,0.000587403104080966,0.00242771587614626 +"Tfru08545_t",229.344530911839,-1.6915609305737,0.223966655764648,-7.55273558377928,4.26209738112744e-14,8.91455508314318e-13 +"Tfru08546_t",130.901003156087,2.64774634369087,1.30204984957276,2.03352148503352,NA,NA +"Tfru08547_t",204.782063211251,1.16894042601231,0.333840158350805,3.50149733868736,0.000462651591986298,0.00196771999784366 +"Tfru08548_t",459.741753043579,-0.406354363578974,0.220803665152405,-1.84034247483391,0.0657179731861453,0.135779933521596 +"Tfru08549_t",1237.20819392797,-0.892436289725065,0.182238707022503,-4.897073208574,9.72746055287844e-07,7.20862805209998e-06 +"Tfru08550_t",517.535304082914,0.48931640548049,0.147982633036319,3.30657993739304,0.000944423995162937,0.00370290977781124 +"Tfru08551_t",95.0871355234635,-0.148459500427168,0.279191780653305,-0.531747389123615,0.594900965428502,0.721306945838654 +"Tfru08552_t",16.9788628621162,5.61656065144432,1.11360619537936,5.04357884748565,4.56904363508299e-07,3.62993243000203e-06 +"Tfru08553_t",11.4420739492238,6.91833701517707,1.3291598603506,5.20504509769967,1.9394949930418e-07,1.63180067459682e-06 +"Tfru08554_t",250.238631957093,1.82710736388814,0.235919618931445,7.74461815496181,9.58695113562241e-15,2.14127710993243e-13 +"Tfru08555_t",1.91922104642104,-1.31084832811196,1.6426680213312,-0.797999541653988,0.42487075609466,0.570026228727204 +"Tfru08556_t",63.5864132618953,0.0577443375570198,0.310218382043746,0.186140928131322,0.852334246733814,0.908042102247001 +"Tfru08557_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru08558_t",1433.93039371344,-0.847604174765247,0.172620139901893,-4.91022759712149,9.09707460619915e-07,6.77512577992469e-06 +"Tfru08559_t",255.290330518662,-0.23178808148532,0.242137817851131,-0.957256836384911,0.338437635862267,0.483822056250242 +"Tfru08560_t",73.1983069651006,-0.263773135872695,0.342128540490192,-0.770976708037185,0.440720737623897,0.584822176290923 +"Tfru08561_t",79.5483634990448,0.328618803768807,0.259048080999915,1.26856297294445,0.204596977425193,0.331842181884065 +"Tfru08562_t",206.283090014886,1.21497038539451,0.241627777968539,5.02827280708057,4.94917434147704e-07,3.90834586317065e-06 +"Tfru08563_t",0.554443390385536,1.03861455020554,3.28367491578666,0.316296398651485,0.751777544413166,NA +"Tfru08564_t",2.82841269098135,2.83400342198803,1.37733993423193,2.05759184900741,0.0396293297579133,0.0895863030284948 +"Tfru08565_t",0,NA,NA,NA,NA,NA +"Tfru08566_t",15.7633820053405,1.75144264317166,0.544561361295912,3.21624479379825,0.0012987999371032,0.00489263467301289 +"Tfru08567_t",0,NA,NA,NA,NA,NA +"Tfru08568_t",333.896392337024,0.153061866224822,0.216056391053237,0.70843480018653,0.478675287900085,0.618354725566772 +"Tfru08569_t",333.731872409733,-0.127801163398258,0.223119889247456,-0.572791443332591,0.566785913374365,0.696883240375689 +"Tfru08570_t",210.777751177382,0.985370331240911,0.252636893338293,3.90034217972057,9.60568269639989e-05,0.000481359558319368 +"Tfru08571_t",739.725698866719,1.15794859195488,0.213779461143849,5.41655679062504,6.0757698501242e-08,5.58192648792198e-07 +"Tfru08572_t",0,NA,NA,NA,NA,NA +"Tfru08573_t",65.0230065082931,4.19442384266867,0.47377260771584,8.85324261968394,8.50125869365105e-19,2.86965564953108e-17 +"Tfru08574_t",49.1732447331288,1.03793217751762,0.318894254235239,3.25478481889477,0.00113478309906965,0.00434572993791562 +"Tfru08575_t",47.0998686314773,-0.228596667012038,0.356137513451154,-0.64187752870182,0.520952705711362,0.656727104353633 +"Tfru08576_t",137.12295501336,2.33725820888654,0.265222731850664,8.81243546726815,1.22455879211477e-18,4.07821812016794e-17 +"Tfru08577_t",11.6610651047691,6.96483459606531,1.36529231261712,5.10135048128593,3.37238387481662e-07,2.73258331348284e-06 +"Tfru08578_t",13.8627744577255,-0.020172323917259,0.570447223923016,-0.0353622965829023,0.971790848864191,0.984177759249307 +"Tfru08579_t",284.865571269057,-0.282167518564644,0.207766289452072,-1.35810058171027,0.174431770667239,0.294083199060108 +"Tfru08580_t",298.778492037734,-0.4298777125684,0.203182470322166,-2.11572244341151,0.03436842061239,0.0796979850072829 +"Tfru08581_t",57.7636135762529,0.742445243033185,0.359581657679417,2.06474726165012,0.0389469202209943,0.0883112537533792 +"Tfru08582_t",23.8616109158335,-0.357755986351355,0.400367838915548,-0.893568242944756,0.371552944054714,0.517659618075739 +"Tfru08583_t",7.08832520165745,0.108256844313529,0.712451926325934,0.15194968293763,0.879226621898453,0.92575365356449 +"Tfru28283_t",81.4431423311971,-0.0296341459181551,0.273571165462793,-0.108323352967495,0.913739198620548,0.947964178802516 +"Tfru28284_t",103.835172840442,-0.0164861346477198,0.283927797368149,-0.0580645319004938,0.953697226149188,0.973495628155031 +"Tfru28285_t",116.828713483569,-0.576491100617714,0.453478645665075,-1.27126405207511,0.203634726436985,0.330625738367652 +"Tfru28286_t",2.33288387739476,4.62364466466711,1.65152278348518,2.79962511622754,0.0051161985252846,0.0161792378569201 +"Tfru28287_t",0,NA,NA,NA,NA,NA +"Tfru28288_t",233.159506589538,0.796242424870264,0.21904581265632,3.63504974240049,0.000277927005161477,0.00124799485865045 +"Tfru28289_t",727.65329443141,-1.79848974234518,0.327460214184187,-5.49223894825152,3.96869927963281e-08,3.76353770670264e-07 +"Tfru28290_t",1383.6717631135,0.445018796698878,0.1945489537793,2.28743865260626,0.022170232360627,0.0555248209748021 +"Tfru28291_t",2.81875234620796,0.365993119618234,1.11899274015881,0.327073721288212,0.743612127057285,0.834731374005218 +"Tfru28292_t",0,NA,NA,NA,NA,NA +"Tfru28293_t",642.958011586499,-0.420899482924312,0.131702609571955,-3.19583252216697,0.00139428017909299,0.00520760854607831 +"Tfru28294_t",78.3437113956337,-0.430935981656691,0.241142895691276,-1.78705651029587,0.0739283555492404,0.149567582461761 +"Tfru28295_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28296_t",1597.46421139359,0.2739186364632,0.258950041004709,1.05780495496511,0.290144373359996,0.432160416931452 +"Tfru28297_t",195.761589781144,2.76565793523776,0.228371148991968,12.1103648488235,9.30792127988411e-34,9.17670829267869e-32 +"Tfru28298_t",66.4978471097425,-0.173963590314128,0.265580835883554,-0.655030660383958,0.512448013852577,0.649237461110568 +"Tfru28299_t",0,NA,NA,NA,NA,NA +"Tfru28300_t",0,NA,NA,NA,NA,NA +"Tfru28301_t",22.6123660951884,-0.179293265266748,0.434315074866033,-0.412818425245893,0.679739650975683,0.788641329895689 +"Tfru28302_t",0.302946100014118,-0.0642994823553775,3.86217820065486,-0.0166485022220039,0.986717030731985,NA +"Tfru28303_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28304_t",112.808603075463,3.56345394997058,0.446367142222972,7.98323535245912,1.42546742634388e-15,3.49419069020547e-14 +"Tfru28305_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28306_t",33.733256048933,-0.987868457802028,0.35856024585703,-2.75509755812674,0.00586746373181339,0.0181975940019379 +"Tfru28307_t",35.2189816349557,0.151485553023161,0.477872060301685,0.317000229993624,0.75124342773799,0.839966296483647 +"Tfru28308_t",189.34415563116,0.559523222697781,0.303790350924478,1.84180709161785,0.0655033723796059,0.135411553099536 +"Tfru28309_t",56.3241126631208,3.26730345961473,0.467773004637594,6.98480550870193,2.85250868354369e-12,4.70443215458421e-11 +"Tfru28310_t",31.542327564789,2.68230352513194,0.487465740796988,5.50254777032428,3.74341750592572e-08,3.56046254919752e-07 +"Tfru28311_t",376.174982571453,0.108186565344453,0.286998223592898,0.376959006888887,0.706204069225505,0.808597517101545 +"Tfru28312_t",809.221086754932,0.175698818525489,0.227796482480225,0.771297329144411,0.44053071510806,0.584726730568673 +"Tfru28313_t",1100.93741555231,-0.111281811799117,0.203117842359518,-0.547868225195838,0.58378238811488,0.711642782614032 +"Tfru28314_t",0.991057627173172,-1.2762982714965,2.28612285418549,-0.558280701826597,0.576652720654909,0.705294998811721 +"Tfru28315_t",7.49623379185265,1.57445465752426,0.767260307405406,2.05204758062944,0.0401650385379691,0.0906416822103206 +"Tfru28316_t",77.9923844715543,0.757766380205231,0.349996715994438,2.16506711513623,0.030382545888744,0.0719079290387152 +"Tfru28317_t",190.556463086281,0.364397314698756,0.195049872231597,1.86822636964396,0.0617305246865653,0.129199396098881 +"Tfru28318_t",17.3714548806585,-0.00437242416705933,0.473097180229209,-0.00924212688171371,0.992625954630276,0.996410354995541 +"Tfru28319_t",167.456570264493,0.96113091815482,0.196652405316099,4.88746077938837,1.02144835723384e-06,7.5307204755451e-06 +"Tfru28320_t",772.677285634374,-0.66517152718957,0.135962689749304,-4.89230926819741,9.96596786876067e-07,7.36343218563433e-06 +"Tfru28321_t",129.945173298195,1.02735355921336,0.296005456701104,3.47072506927042,0.000519055147060243,0.00217455151464025 +"Tfru28322_t",704.078989710815,1.38934309615693,0.201111348838985,6.90832767110162,4.90400226638047e-12,7.91858374614682e-11 +"Tfru28323_t",937.768718601237,1.35628293888005,0.145872901204965,9.29770319008283,1.43512209429574e-20,5.65856536310297e-19 +"Tfru28324_t",392.155226140787,0.23137228012895,0.256586230791598,0.901733033043667,0.367198700965067,0.513394572849266 +"Tfru28325_t",379.996922790862,0.534864647665292,1.49572236980673,0.357596208001091,0.720645516492192,0.819015166519158 +"Tfru28326_t",17.1788222705886,3.79139071971503,0.986380147180673,3.84374191892629,0.000121172434925687,0.000594008943681058 +"Tfru28327_t",0,NA,NA,NA,NA,NA +"Tfru22886_t",0.87913619348257,0.423783924946871,2.10989863745482,0.200855110963094,0.840811868597951,0.900352613359911 +"Tfru22887_t",8006.7768887762,0.223180894321842,0.388912397274594,0.573859038400012,0.566063193645434,0.696377213818426 +"Tfru22888_t",4836.09994508148,4.6697366600531,0.369576691566261,12.6353657214226,1.34766090552004e-36,1.53099751601718e-34 +"Tfru22889_t",1754.65628166728,0.789637241157061,0.516163146049038,1.5298210405011,0.126061032046308,0.228385485080254 +"Tfru22890_t",44389.9524458191,-2.15317625891601,0.274653269854651,-7.83961632809065,4.51925124568338e-15,1.05026835803109e-13 +"Tfru22891_t",179.437577648346,-1.22381996483435,1.02351214470698,-1.19570634424149,0.231811174729613,0.365579176270083 +"Tfru22892_t",571.337565164571,0.331260921780138,0.896610035365101,0.369459306403199,0.711785399661808,0.813114515805318 +"Tfru10132_t",398.174046122411,1.22060870586548,0.289140615348965,4.22150552731002,2.42676003259414e-05,0.000138055133526835 +"Tfru10133_t",7.07900273719116,-0.791755532929265,1.07069663549702,-0.739476997199799,0.459617402623069,0.602191353402829 +"Tfru10134_t",2799.83996706522,0.0406511338817986,0.412125127956423,0.098637843519449,0.921425821738227,0.953287254553509 +"Tfru10135_t",6966.96207762769,-0.0510197558697761,0.344677430362481,-0.148021748381149,0.882325604582154,0.927618638145486 +"Tfru10136_t",2.0719860716554,3.33467344421092,2.1058599943944,1.58352096202383,0.113302772741457,0.210258379266485 +"Tfru10137_t",593.96352655735,0.195471589907478,0.163299079890623,1.19701586829762,0.231300369805494,0.3648764556458 +"Tfru10138_t",0,NA,NA,NA,NA,NA +"Tfru10139_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru10140_t",0,NA,NA,NA,NA,NA +"Tfru10141_t",0,NA,NA,NA,NA,NA +"Tfru10142_t",0,NA,NA,NA,NA,NA +"Tfru10143_t",42.624488940414,-1.54315267985607,0.562519723630932,-2.74328635073519,0.00608276164338412,0.0187716775481159 +"Tfru10144_t",480.094324544418,0.458954432871431,0.178535814566419,2.57065751197326,0.0101505655496395,0.0289831152080802 +"Tfru10145_t",394.168221058448,-0.0570276668470659,0.247616973555099,-0.230305968239194,0.817854023270974,0.884700712494775 +"Tfru10146_t",220.892823306031,0.63007567745086,0.370031619182254,1.70276172302055,0.0886126687140014,0.17285378940289 +"Tfru10147_t",25.515071025763,1.44015531977078,0.443136347990121,3.24991467367259,0.0011543963952344,0.00441102805623116 +"Tfru10148_t",161.469250229456,0.0342361124011099,0.233240007538748,0.146784905224385,0.883301799508158,0.928176085688449 +"Tfru10149_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru10150_t",47.6116889788563,1.15195035091413,0.406351641109415,2.83486083080432,0.00458456524353649,0.0146995086175282 +"Tfru10151_t",47.4277851091283,-0.351497229233176,0.289551873834547,-1.21393525995285,0.224772447055215,0.356817092147518 +"Tfru10152_t",0,NA,NA,NA,NA,NA +"Tfru10153_t",9.85180021467989,4.81006215802657,1.15622305341243,4.16015071125795,3.18037658667703e-05,0.000176529831373591 +"Tfru10154_t",1.06604970985283,-0.211957362131062,2.82795952277823,-0.0749506350511097,0.940253988875673,0.964120052736991 +"Tfru10155_t",72.7915015317098,0.193216859000729,0.280129502689917,0.689741198786214,0.490356952468067,0.628784183613345 +"Tfru10156_t",205.88049549645,-0.658419306245429,0.194335908026924,-3.38804759722639,0.00070392047665206,0.00284826256869881 +"Tfru10157_t",32.719868958481,3.91058594011943,0.528359003830807,7.40138033376203,1.34776101224809e-13,2.6622146031873e-12 +"Tfru10158_t",148.791904915185,1.50457329081838,0.448046052745264,3.35807732620244,0.000784866536438366,0.00313834430685915 +"Tfru10159_t",75.3637508673287,1.12091430840004,0.442430370286688,2.5335383456468,0.0112917385082776,0.0316400535639479 +"Tfru10160_t",0,NA,NA,NA,NA,NA +"Tfru10161_t",14.7055812428792,-0.0977525852113946,0.840384401691804,-0.116318895275312,0.907399810995579,0.943219733442678 +"Tfru10162_t",14.6864757111504,1.66397632289072,0.589589819388332,2.82226094849637,0.00476863583894052,0.015215578853078 +"Tfru10163_t",45.4110710549307,0.162044791359428,0.339959638270224,0.476658912169519,0.633605025440646,0.752846809121387 +"Tfru10164_t",51.8368876052843,3.91304034336129,0.450243452110528,8.69094336634727,3.59442199475414e-18,1.14754870531523e-16 +"Tfru10165_t",149.186279383844,0.648124903895675,0.209349676986601,3.09589636451723,0.00196218928436002,0.00702395972232522 +"Tfru10166_t",1124.2081681194,-0.981754151106323,0.354297683330704,-2.77098665132943,0.00558867178614105,0.0174611858961101 +"Tfru10167_t",7.94376907263303,-2.61046234205806,0.805525871975636,-3.24069335681998,0.00119239374732398,0.00453685346227656 +"Tfru10168_t",1147.27952214222,-2.6826570519458,0.528859062102374,-5.07253679511784,3.92547201782231e-07,3.15107832707544e-06 +"Tfru14881_t",663.939761763333,-0.433274277963259,0.14158614396013,-3.06014604144644,0.0022122908705963,0.00780562347216542 +"Tfru14882_t",7.7161434143679,1.03713718010391,0.701344156466905,1.47878494536634,0.139197800687739,0.246849982519144 +"Tfru14883_t",85.895196535281,-0.245592791441854,0.250223252562094,-0.981494680958596,0.326348856136323,0.471631628589107 +"Tfru14884_t",34.040674395249,0.551353794522207,0.3820560098074,1.44312294629301,0.148985840444237,0.260492430401721 +"Tfru14885_t",73.6761137478149,0.56506644677489,0.26586010191388,2.12542778215714,0.0335509341309616,0.0780935939522539 +"Tfru14886_t",5.0572034489942,-0.0936744125278117,0.969075382847774,-0.0966637004569606,0.922993467629329,0.954159259344283 +"Tfru14887_t",700.741684996692,-0.842911532935993,0.341608018240291,-2.46748169811131,0.0136067176957939,0.0370010136126205 +"Tfru14888_t",44.3169426019379,0.768346863066137,0.301559243908159,2.54791348163792,0.0108369343707996,0.0305723674799565 +"Tfru14889_t",479.738103544152,-0.226718019032735,0.148401008309763,-1.52773907411396,0.126577334508911,0.229075639900243 +"Tfru14890_t",123.459412488383,0.764750461868589,0.220901582539167,3.46195103302619,0.000536274715739902,0.00223872936733054 +"Tfru14891_t",475.107647382103,0.577924282447021,0.157859706945609,3.66099933687414,0.000251233409158821,0.00114048756530921 +"Tfru14892_t",49.9350326570441,-0.195950828062848,0.377785645681083,-0.518682565902107,0.603982121262934,0.728685707485955 +"Tfru14893_t",391.1908732744,0.0700097549470022,0.25267409269578,0.277075319436465,0.781722272428755,0.861438005660325 +"Tfru14894_t",267.833005967563,-0.653655890213518,0.163772846119105,-3.99123484572125,6.57301504689412e-05,0.000341387971105803 +"Tfru14895_t",5.87926828254097,0.568272556684627,0.860950064573065,0.660052864931751,0.50921990504834,0.646417553884393 +"Tfru14896_t",48.1234144984578,-3.06771517758462,0.386948016208459,-7.92797752949834,2.22743600898411e-15,5.37176916821814e-14 +"Tfru14897_t",121.261939638126,-1.08779441898837,0.216777485374382,-5.01802305303854,5.22059137695917e-07,4.09666321936698e-06 +"Tfru14898_t",255.795482826579,-0.482043094573405,0.174593139196021,-2.7609509559949,0.0057633330379963,0.0179317938816012 +"Tfru14899_t",7.512919523555,-2.08896202088922,0.864042783557538,-2.41766039904679,0.0156206477460813,0.0415338121132587 +"Tfru14900_t",122.317770543505,-1.36033908600087,0.329219138689211,-4.13201702494294,3.59593779191385e-05,0.000197392906016758 +"Tfru14901_t",17.1073939457308,1.77026621742695,0.497039239290701,3.56162265971839,0.000368569846136851,0.00160322510331248 +"Tfru14902_t",292.137790724572,-0.973505897956343,0.188270343490379,-5.17078728337314,2.33109800859496e-07,1.93724372195898e-06 +"Tfru14903_t",286.098220394029,1.98903598220436,0.238721012944682,8.33205237221944,7.94527843427096e-17,2.26228156945272e-15 +"Tfru14904_t",0.32955266786588,-0.0642989587579764,3.75808704636274,-0.0171094916016403,0.986349266818334,NA +"Tfru14905_t",7.24203773758283,0.717762187370994,0.850697459579524,0.843733784894296,0.398818183956561,0.544705904854622 +"Tfru14906_t",112.2346910533,0.626224473579033,0.295530416025728,2.11898484765276,0.0340917475132439,0.0791548199342668 +"Tfru14907_t",425.148080228768,-0.348282860568891,0.149051217618991,-2.33666565179751,0.0194565758638258,0.0499102513028174 +"Tfru14908_t",80.4850851871178,-0.283614204493202,0.244232316174407,-1.16124765524752,0.245541199825567,0.381135528651422 +"Tfru14909_t",75.0354258599312,1.37891990069097,0.373295730871581,3.69390750189248,0.000220834159936529,0.00101734633581299 +"Tfru14910_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14911_t",0.524535005013881,-2.53832154473351,3.20745160642307,-0.791382647722698,0.428720732702309,NA +"Tfru14912_t",38.6856566872992,0.321424250751503,0.342628248537605,0.938113690635245,0.348185986831528,0.493846402515343 +"Tfru14913_t",6.68644639186514,-0.201721277229899,0.736641667823941,-0.273839080846172,0.784208288943111,0.863072609124505 +"Tfru14914_t",0,NA,NA,NA,NA,NA +"Tfru14915_t",0.674618616965392,1.48395953074114,2.55272703868086,0.581323231295416,0.561022626283776,NA +"Tfru14916_t",42.6303986159313,-0.533222281274433,0.345901692842273,-1.54154284962571,0.123184722571942,0.224336731317444 +"Tfru14917_t",163.984912049206,-0.240748799180784,0.257644976239737,-0.934420700509871,0.350086923804844,0.495945395287531 +"Tfru14918_t",134.736949540067,-0.297103672615865,0.235515493382291,-1.26150372677862,0.207127418122202,0.334887416383101 +"Tfru14919_t",115.687078109603,-0.596662938669578,0.237528676680998,-2.51196170082191,0.0120062117949561,0.033324943565809 +"Tfru14920_t",6266.80625334028,-1.1421357741254,0.287142170634193,-3.9775967828161,6.96152909472054e-05,0.000359480897876894 +"Tfru14921_t",3.9287856777992,0.825519424652652,1.10649926878495,0.746064139345666,0.455628670696454,0.59837859575064 +"Tfru14922_t",0.325534379423615,1.7930591610128,4.03874525235237,0.443964411958994,0.657068313926604,NA +"Tfru14923_t",131.587779498996,1.56694709531677,0.262510681321843,5.96907938155729,2.38596013936837e-09,2.70421888030676e-08 +"Tfru14924_t",4.47102854166386,1.46397666037887,0.90641929349165,1.61512080655237,0.106284535981159,0.200150280956052 +"Tfru14925_t",294.893534989264,0.113333742288689,0.214721231707006,0.527818052214493,0.597625626397333,0.72335649100986 +"Tfru14926_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru01642_t",8.24880325646006,3.49344696049158,0.976377254475693,3.57796839743828,0.000346275306882406,0.00151686071012493 +"Tfru01643_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru01644_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru01645_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru01646_t",10.0076954684103,1.42628618141615,0.645676659528639,2.20897899957755,0.027176101631236,0.0655954653264733 +"Tfru01647_t",11.250928451841,-0.0463217083515258,0.75877530015857,-0.0610479918651087,0.951320988320864,0.971861218725564 +"Tfru01648_t",172.341502706561,2.20170036068083,0.326623685038379,6.74078599175111,1.57532095837156e-11,2.40817507160899e-10 +"Tfru01649_t",261.07779831884,0.284526139098132,0.183750598894211,1.54843652652223,0.121517232699526,0.221992354158847 +"Tfru01650_t",0,NA,NA,NA,NA,NA +"Tfru01651_t",4.85281221073471,3.12880737536411,1.14694160476581,2.72795699655779,0.00637279153743382,0.0195615244284418 +"Tfru00025_t",154.992267109701,-0.231080553259473,0.259978669456405,-0.888844279965907,0.374086774625471,0.520197714435072 +"Tfru00026_t",95.4637567758846,0.676120588693183,0.28256796684631,2.39277153825765,0.0167216496238238,0.0439908920396352 +"Tfru00027_t",560.334869964318,0.62507195519825,0.189564597849396,3.29740870547386,0.000975813920842972,0.0038112941620359 +"Tfru00028_t",71.8649099474917,-0.118624717976684,0.331937041313273,-0.35737113733182,0.720813981118682,0.819095772817044 +"Tfru00029_t",320.755558291511,3.55784804376133,0.22871762323159,15.5556357813267,1.45701179972484e-54,4.1275853263091e-52 +"Tfru00030_t",511.89546199792,-0.161796289173359,0.155572677847205,-1.0400045265806,0.298337797644682,0.441369085645578 +"Tfru00031_t",243.064918301964,-2.76930336738197,0.218939841150573,-12.6486954262354,1.13747886937794e-36,1.29881515799379e-34 +"Tfru00032_t",290.170359731299,-0.11706175624416,0.296703065644253,-0.394541782000045,0.693181086020709,0.798589143680812 +"Tfru00033_t",32.9536508261125,-1.1344123003314,0.424317061988273,-2.67350149677166,0.00750639412219419,0.0224529671818639 +"Tfru00034_t",21.0551972250382,3.21550183723258,0.572886252735954,5.61281026011043,1.99066841954443e-08,1.97566116316649e-07 +"Tfru00035_t",788.103696289328,1.17945041428993,0.459990470956642,2.56407575538908,0.0103450962456146,0.0294409020825096 +"Tfru00036_t",75.7901655797572,-0.243700804330563,0.280432774857771,-0.869016841751691,0.384837919001094,0.531220170680595 +"Tfru00037_t",557.113276198021,-0.565770480127509,0.146820741185158,-3.85347789120615,0.000116451783123949,0.000572789210178899 +"Tfru00038_t",140.540772123324,1.35297554700848,0.215619617996131,6.27482582328272,3.50025908202427e-10,4.45849733953916e-09 +"Tfru00039_t",5067.16190733969,-1.24976910767381,0.124387371553373,-10.0473954233975,9.43275561235817e-24,4.7332975471878e-22 +"Tfru00040_t",302.534014020869,0.375860858813377,0.155683874182065,2.41425684444251,0.0157673431841,0.0418492813638707 +"Tfru00041_t",0.850971578381857,3.16307563855707,2.2516864189552,1.40475850097491,0.160093103173439,0.274866409591222 +"Tfru00042_t",176.425143133707,0.12518993485092,0.205231826831791,0.609992790998867,0.541866583030521,0.674470196230426 +"Tfru00043_t",34.7023036779183,-1.82987563245026,0.48871485216047,-3.74426032759368,0.000180925988901825,0.000853885202788454 +"Tfru00044_t",33.1643570059697,-2.34944763337842,0.412558091557029,-5.69482863494789,1.23495895626742e-08,1.26375772479492e-07 +"Tfru00045_t",270.380873412372,0.696778926142405,0.187504383324416,3.71606739953836,0.000202347626431926,0.000943893359536136 +"Tfru00046_t",21.8005982340922,0.182092868034536,0.434691384363012,0.418901488699554,0.675288129034923,0.785129010743497 +"Tfru00047_t",111.868152816872,0.444829134685933,0.258359365286684,1.72174573270195,0.0851155889392967,0.167477306177375 +"Tfru00048_t",49.7908579568063,1.22025768558517,0.332708246468026,3.66765085788891,0.000244789127467472,0.00111462475538596 +"Tfru00049_t",381.347980386794,-0.132405269667813,0.172917846219701,-0.765711998862077,0.443847685965379,0.587827320196798 +"Tfru00050_t",120.107151566402,2.74294140484913,0.439051046179108,6.24743165679685,4.17256756742911e-10,5.27582272085104e-09 +"Tfru00051_t",197.666508952685,0.179728594685304,0.212211866253901,0.84692999434003,0.397034142836005,0.542802608906293 +"Tfru00052_t",52.3700347517902,-0.863230424746191,0.355525064834754,-2.42804378686329,0.0151805103790305,0.0405514230463955 +"Tfru00053_t",133.82123240658,-0.559326530261089,0.235130631933599,-2.37879057127292,0.017369541239138,0.0454124220714847 +"Tfru00054_t",1.06950377364802,0.180950736470601,2.33097325693904,0.0776288341927266,0.938123305216442,0.962994201024859 +"Tfru00055_t",57.5942062857031,0.131913704036566,0.275038644417854,0.479618797990278,0.631498477254984,0.751584148204144 +"Tfru00056_t",73.8898934832194,0.542684881302231,0.36148348145761,1.50127159092848,0.133285329761221,0.238614965207274 +"Tfru00057_t",0,NA,NA,NA,NA,NA +"Tfru00058_t",9.92014729328885,1.66057525486067,0.816691599437355,2.0332953785795,0.0420226898058144,0.094244693642061 +"Tfru00059_t",131.106932621369,5.40862598913138,0.492834550481278,10.9745268140182,5.06704503371396e-28,3.51085039797271e-26 +"Tfru00060_t",0,NA,NA,NA,NA,NA +"Tfru00061_t",4.23137523649011,5.4885790772299,1.46575442946492,3.74454203712249,0.000180723117890974,0.000853464318236687 +"Tfru00062_t",0,NA,NA,NA,NA,NA +"Tfru00063_t",389.06152898017,2.0358222239808,0.224452090154579,9.07018608104178,1.18813930563714e-19,4.40971105475277e-18 +"Tfru00064_t",380.903564545877,-0.516938665922336,0.19744267035267,-2.61817096070968,0.00884025025924174,0.0257648915024668 +"Tfru00065_t",192.455594681096,-0.303742957559909,0.198741227437227,-1.52833391177403,0.126429654263394,0.228901256183198 +"Tfru00066_t",125.085924134706,-0.0245801961757233,0.218777334775154,-0.112352571627154,0.910543859502695,0.945218775252577 +"Tfru00067_t",502.497967915385,-0.449606643308372,0.185329747704628,-2.42598206103933,0.0152670249055654,0.0407582031953421 +"Tfru00068_t",364.667406218758,-0.181785918732674,0.167967255661888,-1.08226998182671,0.27913258031674,0.420021996065934 +"Tfru00069_t",154.779335280024,0.655217851794019,0.230008672370166,2.84866585699664,0.00439029632011126,0.0141434909520786 +"Tfru00070_t",0.302946100014118,-0.0642994823553774,3.86217820065486,-0.0166485022220039,0.986717030731985,NA +"Tfru00071_t",0,NA,NA,NA,NA,NA +"Tfru00072_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru00073_t",4.45609560283937,-0.645529864687731,0.940629052602979,-0.686274640254171,0.492539937583862,0.630741682965358 +"Tfru00074_t",163.452048065382,-0.065272288022069,0.18776088320089,-0.347635177835378,0.728114184045953,0.824232404092931 +"Tfru00075_t",632.363182230856,-0.388979256048851,0.221082532379414,-1.75943007284402,0.0785044877516967,0.1567428348544 +"Tfru00076_t",1.91861939731153,4.35334405422479,1.71810035396483,2.53381244243309,0.0112829104557206,0.0316192757324102 +"Tfru00077_t",196.809855028027,-0.720018950565386,0.190478322078801,-3.78005718817449,0.000156792341337481,0.000751072902211647 +"Tfru00078_t",0,NA,NA,NA,NA,NA +"Tfru00079_t",0,NA,NA,NA,NA,NA +"Tfru00080_t",30.4844908099799,0.636822141958187,0.571212801149392,1.11485971721358,0.264910541249757,0.403972329869825 +"Tfru00081_t",1095.50400543342,-0.489232956012299,0.484872245952207,-1.00899352375083,0.312977740115323,0.457470757923039 +"Tfru00082_t",6.69621892108592,-0.519993147940926,0.698851943834854,-0.744067684905525,0.456835528100299,0.599616051932587 +"Tfru00083_t",164.901793398255,-0.87429529953441,0.268787798479,-3.25273432976429,0.00114300308327029,0.00437271948779302 +"Tfru00084_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00085_t",20.2475385878662,-0.0198064287710509,0.413207007037734,-0.0479334290893141,0.961769297440751,0.978026030385497 +"Tfru07542_t",728.699404587002,-0.412466297689433,0.184000115183612,-2.24166325807914,0.0249831442234913,0.0612133531554341 +"Tfru07543_t",0,NA,NA,NA,NA,NA +"Tfru07544_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru07545_t",12.7599739555505,0.503403087181705,0.530149816856076,0.94954873353916,0.342341598428817,0.487855308133225 +"Tfru07546_t",237.99007376497,0.648957881670245,0.249429922982947,2.60176435092197,0.00927455559123968,0.0268225493010589 +"Tfru07547_t",836.113315070755,3.64440179212511,0.382352900270498,9.53151339913166,1.55006783221351e-21,6.54538077074307e-20 +"Tfru07548_t",322.428613206739,1.94379106471029,0.259182688572184,7.49969481148015,6.39665889713066e-14,1.30617907041774e-12 +"Tfru07549_t",345.649364091993,-0.0956809065340376,0.17206004157161,-0.556090220948925,0.578149179861723,0.706430369365875 +"Tfru07550_t",171.054104061584,0.139190786979255,0.226414865345212,0.61475993092164,0.538713274653871,0.672002847486408 +"Tfru07551_t",129.606210535438,0.282726540643482,0.278872326288066,1.01382071289295,0.310668309908851,0.454785241742549 +"Tfru07552_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru07553_t",96.1356089577038,0.134306186889521,0.24632271292495,0.54524483469148,0.585585139405706,0.713102373484585 +"Tfru07554_t",86.0984480189609,0.586320402797959,0.228512550687032,2.56581269184193,0.010293439639203,0.0293125307450519 +"Tfru07555_t",12.5570014969564,-1.78795660276459,0.59686881696269,-2.99556041788719,0.00273941026358585,0.00943486637854385 +"Tfru07556_t",203.293343056134,1.29119536762506,0.24572200265067,5.25469983842139,1.48266079311163e-07,1.27671983646934e-06 +"Tfru07557_t",49.472134446948,0.0295104896937408,0.409823060826178,0.0720078797768224,0.942595636977443,0.965680492357756 +"Tfru07558_t",74.2807673789763,2.9331973840367,0.3921617938283,7.47955927935432,7.45722687138523e-14,1.51445315228314e-12 +"Tfru07559_t",1.47069390699056,0.847600154407313,1.56725036243755,0.540819880934042,0.588631738231743,0.715683071745879 +"Tfru07560_t",31.0027360867651,4.10624907922186,0.568977251483457,7.21689499626902,5.31880140400757e-13,9.76495286478174e-12 +"Tfru07561_t",1.75294699323094,-0.48549043595574,1.70074059837816,-0.285458250610768,0.775293085476703,0.857223420432222 +"Tfru07562_t",165.433517456076,-0.994959018080957,0.38614687587119,-2.57663360822542,0.00997676400254892,0.0285742723351468 +"Tfru07563_t",0,NA,NA,NA,NA,NA +"Tfru07564_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru07565_t",4.01678458591729,1.03639608883556,0.968079178775394,1.07056954798531,0.284363021960904,0.425745546660759 +"Tfru07566_t",3.25399425876863,3.0909591279866,1.335561162857,2.31435235910462,0.0206484018891068,0.052357946326559 +"Tfru07567_t",138.898259571064,0.241316668292105,0.265968366575443,0.907313420010253,0.364241079457469,0.510471247934006 +"Tfru07568_t",101.962859071641,5.20985917918587,0.46076512755926,11.3069736999917,1.21197964094909e-29,9.48395257497928e-28 +"Tfru07569_t",1910.22075783021,1.37171767016612,0.303725291592118,4.51631032429212,6.29264291712491e-06,4.01680971150187e-05 +"Tfru07570_t",1.95263694887249,-0.167603142533753,1.39681128846234,-0.119989825338723,0.90449120792774,0.941442213592802 +"Tfru07571_t",210.249901651899,-0.387848145539951,0.227158662181157,-1.70738875557669,0.0877498189519435,0.171559443360225 +"Tfru07572_t",135.775537839651,0.248206565819328,0.220031346880191,1.12805093155421,0.259298410159483,0.397112468249681 +"Tfru07573_t",25.9340563143144,4.00327057036914,0.609010881605308,6.57339744048055,4.91799527208483e-11,7.02391411546001e-10 +"Tfru07574_t",43.8833760720891,3.65128707810783,0.448854486765678,8.13467880073563,4.13031960829803e-16,1.09392370217408e-14 +"Tfru07575_t",0.851368181532968,-1.91702593704403,2.40665114952618,-0.796553309116468,0.425710503358752,0.570934559520479 +"Tfru07576_t",21.9894292536634,3.59260648441805,0.630194521677606,5.70078977337724,1.19253629896404e-08,1.22482617580612e-07 +"Tfru07577_t",178.984437719237,2.07881889081328,0.276915935955324,7.50703957734184,6.04794474040886e-14,1.23836233568482e-12 +"Tfru07578_t",125.62200044767,0.04561366714916,0.235608610263606,0.193599321765559,0.846489629297016,0.904308004962179 +"Tfru07579_t",184.538555359007,-0.531899872845783,0.21948529996218,-2.42339634106446,0.0153761407830965,0.0409908315337343 +"Tfru07580_t",3.27076767978183,3.11459019428657,1.39835904322541,2.22731794768713,0.0259260318625447,0.0631159135302675 +"Tfru04164_t",0.410909862880236,2.15292034771875,4.01003497720278,0.536883184300934,0.591348307146568,NA +"Tfru04165_t",3.73342425977415,2.23245777237525,1.14010550159837,1.95811507728491,0.0502165109623097,0.109238483217 +"Tfru04166_t",57.9790714118734,-0.795634066995025,0.341656682045595,-2.32875312793925,0.019872147814876,0.0507808481499116 +"Tfru04167_t",1.27409290497583,2.6165075659684,1.88654666953417,1.38692967856156,0.165463206935009,0.282245927683346 +"Tfru04168_t",81.1958860927702,3.44292862735719,0.335699719189955,10.2559770847143,1.11245157399672e-24,6.02824848088296e-23 +"Tfru04169_t",31.1729329590746,-1.19148190175791,0.354187008972021,-3.36399097532125,0.000768240553024541,0.00307956718192535 +"Tfru04170_t",155.574973453991,-1.39725764629185,0.210016366867172,-6.65308931458455,2.87003903892276e-11,4.20913982248305e-10 +"Tfru04171_t",0.655087047289495,1.3560631501235,2.54380891862321,0.533083731327371,0.593975620196666,NA +"Tfru04172_t",0,NA,NA,NA,NA,NA +"Tfru04173_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru04174_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru04175_t",0,NA,NA,NA,NA,NA +"Tfru04176_t",517.291555695881,-0.137403090320958,0.148230807623953,-0.926953664514433,0.353950592430466,0.499679193754736 +"Tfru04177_t",0.656737956049442,2.79996060668215,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru04178_t",0,NA,NA,NA,NA,NA +"Tfru04179_t",390.430407820592,-0.0244018176468675,0.1544618591313,-0.15797956715078,0.874472899566409,0.92231978379265 +"Tfru04180_t",1.84497891141045,0.820614673117602,1.70491403802221,0.481323195666543,0.630286813833384,0.750650094952252 +"Tfru04181_t",13108.288123378,1.49705484623326,0.38573862293796,3.8810084269784,0.000104024236039294,0.000517347200568753 +"Tfru04182_t",0.51976800175603,2.45431866011486,3.22735766148694,0.760473092091096,0.446971847375086,NA +"Tfru04183_t",0,NA,NA,NA,NA,NA +"Tfru04184_t",0,NA,NA,NA,NA,NA +"Tfru04185_t",6.39350814697163,6.07733607708155,1.40257531889104,4.33298375868089,1.47101965688238e-05,8.73015643623116e-05 +"Tfru04186_t",0,NA,NA,NA,NA,NA +"Tfru04187_t",16.8898240800838,2.12775751379029,0.604906012051564,3.51750101899948,0.000435630677960132,0.00186342021650377 +"Tfru04188_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru04189_t",98.4554930785094,1.76831131906438,0.29364287904193,6.0219792314864,1.72297007809596e-09,1.99483033356376e-08 +"Tfru09900_t",5257.17897346903,-0.184049163464766,0.188919377284805,-0.974220676089266,0.329946980670764,0.475664353736903 +"Tfru09901_t",71.2131525913657,5.07122875744661,0.548017773949803,9.2537669369664,2.16717280645287e-20,8.42605235548622e-19 +"Tfru09902_t",38.0487663383219,7.68860968222141,1.23726748533,6.21418551233546,5.15915483588631e-10,6.40434355257959e-09 +"Tfru09903_t",13.4254456364705,1.01634653929882,0.545934161606891,1.86166503357717,0.0626503202092154,0.130757639306373 +"Tfru09904_t",261.386508274118,8.58880586885939,0.771693181468893,11.1298195644425,8.98171294975825e-29,6.56897829462711e-27 +"Tfru09905_t",962.809057746716,-0.143490070654046,0.203815933878478,-0.704017924033359,0.481421611367293,0.620741813815753 +"Tfru09906_t",754.945969988085,-0.257077422475264,0.164051271089127,-1.56705535268664,0.117101753908963,0.215855083953739 +"Tfru09907_t",4.04824583796868,5.43767808077588,1.4951695796467,3.63683033335975,0.000276013606872718,0.00123990054632907 +"Tfru09908_t",521.236669870695,-0.270127411939283,0.158042264653754,-1.70920995425553,0.0874120656518925,0.171138310671801 +"Tfru09909_t",70.7797424473976,-0.863323360322616,0.836879853954636,-1.03159773322661,0.302260602739241,0.4455666110726 +"Tfru09910_t",296.829434483678,0.740422124471099,0.161808283529177,4.57592224774813,4.74126624978778e-06,3.09387811860109e-05 +"Tfru09911_t",45.1423032273631,0.275364704042262,0.303730483915733,0.90660871603082,0.364613750937712,0.510766138004702 +"Tfru09912_t",1578.61377914337,0.0663745993180778,0.163880514475909,0.405018250829542,0.685464095549586,0.792427595866068 +"Tfru09913_t",327.340705544872,0.459588520712067,0.248936808609764,1.84620556228197,0.0648623636352745,0.134384345321 +"Tfru09914_t",5.11149866749335,5.75128395570939,1.45774261839557,3.94533567389243,7.96882660103455e-05,0.000406061792648345 +"Tfru09915_t",185.032263938792,-0.354375349310446,0.192313658535217,-1.84269464794957,0.0653736058922681,0.13524323348761 +"Tfru09916_t",2266.34318498843,0.248432562758956,0.154731758740512,1.60556930769192,0.108368573637518,0.203062435177248 +"Tfru09917_t",5.29545218604777,0.0594014711276675,0.876071353132652,0.0678043756541747,0.945941360512813,0.968000349715444 +"Tfru09918_t",26.1639364332486,0.990297887249569,0.548347243363671,1.80596857052638,0.07092324903293,0.144638446633586 +"Tfru09919_t",695.247516244994,0.179060929832139,0.136512306340865,1.31168342717053,0.1896269708394,0.313592818102843 +"Tfru09920_t",428.705922952364,-0.113377592643477,0.15699274809225,-0.722183629634002,0.470181586695475,0.611178713495077 +"Tfru09921_t",126.469785525199,-0.363104526204102,0.24301013789315,-1.49419497207873,0.135124666392622,0.241347967587142 +"Tfru09922_t",1.01694772410256,2.19550897410395,1.98297805223745,1.10717764708828,0.268217129858056,0.407744272212967 +"Tfru09923_t",1.61600928283075,-0.000146022810849157,1.52109936633854,-9.59982063503522e-05,0.999923404513406,0.999923404513406 +"Tfru09924_t",255.932717885244,-0.164541832800544,0.225865054251687,-0.728496195862114,0.466309896509892,0.607911427965945 +"Tfru09925_t",277.714884200427,0.751338017622687,0.234585868562254,3.20282727270633,0.00136085575802028,0.00510149947478961 +"Tfru09926_t",7.4698117141694,1.48529584981393,0.837909048344603,1.77262180513305,0.0762913960592931,0.153446701159969 +"Tfru09927_t",1995.69038481234,1.63550873529476,0.380658667224472,4.29652304312387,1.73497940527342e-05,0.000101619573645693 +"Tfru09928_t",260.961725278818,1.47854499182307,0.434438826590108,3.40334450175207,0.000665662914088098,0.00271357668803126 +"Tfru09929_t",299.356363718794,0.277896967731852,0.186203768233343,1.49243471476691,0.13558522009784,0.242073970944528 +"Tfru09930_t",103.911973003663,-0.713647141990565,0.278848983736237,-2.55926032947497,0.0104895157396466,0.0297610753363705 +"Tfru09931_t",327.500744659587,2.22175343310396,0.356321550971188,6.23524854740994,4.51061346375413e-10,5.68398250669017e-09 +"Tfru09932_t",164.623163107691,3.15378986704162,0.460173816923645,6.8534752544709,7.20771248467607e-12,1.13838112496154e-10 +"Tfru09933_t",344.175072725892,0.206655421632881,0.247601956824309,0.834627578406087,0.403927429396517,0.549972371472535 +"Tfru09934_t",181.321143808567,-0.307879385480392,0.19891230428297,-1.54781468441694,0.121666919997087,0.222078596324509 +"Tfru09935_t",56.6240394104013,0.655700705024179,0.287219576725776,2.2829248357615,0.0224347962609556,0.0560807260493897 +"Tfru09936_t",50.7493140030599,0.274623239221811,0.283777790775801,0.967740422783039,0.333174024624675,0.478836030766776 +"Tfru09937_t",18.0965128571644,0.35948611400698,0.480711513399408,0.747820894625203,0.454568197155581,0.597448110812108 +"Tfru09938_t",41.553377442317,0.0278743944026631,0.318882989806419,0.0874126099343982,0.930343546468045,0.95841298103205 +"Tfru09939_t",5.33584572115582,3.88658459432978,1.41007525714123,2.75629586055528,0.00584600915366117,0.0181461421440967 +"Tfru09940_t",0,NA,NA,NA,NA,NA +"Tfru09941_t",4.51919684048702,0.682014726699073,0.881165992162501,0.773991203434119,0.438935993216758,0.583405839659761 +"Tfru09942_t",0,NA,NA,NA,NA,NA +"Tfru09943_t",114.727641013128,1.20885463580656,0.271674784470478,4.44963870372712,8.6014864819814e-06,5.34725742963177e-05 +"Tfru09944_t",132.985402306912,0.0975068696554383,0.195640229564871,0.49839887160379,0.61820293195391,0.740455176668712 +"Tfru09945_t",1742.02494349158,0.158404724348134,0.399694967456594,0.396314032563687,0.691873376478543,0.797493107004007 +"Tfru09946_t",0,NA,NA,NA,NA,NA +"Tfru09947_t",57.523280986907,2.00890283913481,0.318742991523064,6.30257885682625,2.92733516644097e-10,3.78036705279566e-09 +"Tfru28505_t",7.87208193510051,-0.549216395176688,0.777535168154399,-0.706355696399352,0.479966965021408,0.619386080304861 +"Tfru28506_t",65.7525770982913,-0.1201744541961,0.344744858134824,-0.348589547778264,0.727397475775533,0.823865653063791 +"Tfru28507_t",1.09029548310348,-0.631975720249357,1.93297096301021,-0.326945273541607,0.743709277741772,0.834798557320737 +"Tfru28508_t",100.730976160734,-2.00465945208333,0.40536977265752,-4.94526130782076,7.6041792834851e-07,5.72808927513957e-06 +"Tfru28509_t",255.297411567987,-0.0236958902769965,0.207175871518313,-0.114375723887817,0.908939957223904,0.943904144054262 +"Tfru28510_t",5.4420129140679,3.2548037931706,1.12615080785261,2.8902024226906,0.0038499383496053,0.0126106362934283 +"Tfru28511_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru28512_t",78.9222473377661,-0.304159988488975,0.287323239973111,-1.05859863099636,0.289782610653469,0.431693724717076 +"Tfru28513_t",171.576308187585,-0.536410590650062,0.237577095710374,-2.25783798327088,0.0239557621998589,0.0592212479877215 +"Tfru28514_t",18.9605712015389,0.024291166610361,0.446104400683855,0.0544517529374827,0.956575247099747,0.975242512454 +"Tfru28515_t",244.876637878571,0.263473216967851,0.165033542334172,1.59648283155888,0.110381035855314,0.2060495105882 +"Tfru28516_t",405.965927493394,-0.733443067527242,0.165532659394454,-4.43080580116515,9.38816086594893e-06,5.79126351102362e-05 +"Tfru28517_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28518_t",0.355349903284276,-0.0642985193854192,3.66846126281734,-0.0175273813130137,0.986015889070386,NA +"Tfru28519_t",78.8628841455663,1.86713168635688,0.368915755976788,5.061132944602,4.16772468267158e-07,3.33955167913319e-06 +"Tfru28520_t",33.0471877871782,0.436228732592466,0.340497277175667,1.28115189704559,0.200140318238206,0.326349021651806 +"Tfru28521_t",0.694866657563659,-2.94443191766887,2.90864674526786,-1.01230303145586,0.311393185868731,NA +"Tfru28522_t",7.12703763385676,0.616918510682789,0.736451545107224,0.837690564683341,0.402204513953389,0.548160101228722 +"Tfru28523_t",17.0021606889514,0.714575745523428,0.473080991596074,1.51047232549463,0.130922945790236,0.235278916816382 +"Tfru28524_t",159.556857879637,0.741546260890056,0.357451089227092,2.07453909986254,0.0380292713730138,0.0865461758519473 +"Tfru28525_t",1.9101591539519,1.44501512851383,1.54142802715956,0.937452221610768,0.348525989465661,0.494203360846575 +"Tfru28526_t",105.493862954032,0.654054586655205,0.304197907546567,2.15009561351135,0.0315476525228013,0.0741508735410786 +"Tfru28527_t",5.47008729665401,1.01742313454002,0.927986946961231,1.09637655774325,0.272914018459387,0.412687992761892 +"Tfru28528_t",39.5637428010428,0.755909298653272,0.363221240641927,2.08112636066476,0.0374223415940156,0.0853801084410413 +"Tfru28529_t",8.23038352800417,0.738976082659774,0.669930699721108,1.10306347054615,0.269999602957115,0.40966719418171 +"Tfru28530_t",12.0677699477731,-0.555583873357684,0.596620577859734,-0.931218087298863,0.35174076352252,0.497415822788883 +"Tfru28531_t",22.2415401717199,1.04451691812854,0.515864710960701,2.0247884686342,0.0428890896615291,0.095928225727066 +"Tfru28532_t",2.20236991318309,-0.134593361875088,1.34611118303174,-0.0999868090925105,0.920354797781512,0.952443372530761 +"Tfru28533_t",14.3687381530528,0.59650932735204,0.553818885268004,1.0770837600877,0.281442847550962,0.422702565478191 +"Tfru28534_t",143.488690432762,-0.484077658158995,0.215923186003754,-2.24189753364689,0.0249679954882303,0.0611990657228079 +"Tfru28535_t",0.676176664214344,-1.54721834591084,2.22119719064654,-0.696569558266224,0.486072212353812,NA +"Tfru28536_t",0.652030337555895,-0.0085330117826014,2.26853291439048,-0.00376146703822196,0.996998790601405,NA +"Tfru28537_t",0,NA,NA,NA,NA,NA +"Tfru28538_t",0.385165427144936,-2.07679782548222,4.02498416437306,-0.515976645042454,0.605870721136016,NA +"Tfru28539_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru28540_t",40.4731964797969,-0.328451207411497,0.346349752475317,-0.948322339092489,0.342965381780002,0.488402736756249 +"Tfru28541_t",138.441803393719,-0.0790754220665287,0.267088841604507,-0.296064117061169,0.767181116597268,0.851704617761142 +"Tfru28542_t",880.876729485345,0.305824598752296,0.216145620005094,1.414900744901,0.157097599569638,0.271451843604733 +"Tfru28543_t",0,NA,NA,NA,NA,NA +"Tfru28544_t",0,NA,NA,NA,NA,NA +"Tfru28545_t",85.1351661076981,-0.10237959362063,0.226646023735956,-0.451715816289382,0.651473722619997,0.767084858853871 +"Tfru28546_t",53.7258578193843,0.97421272071442,0.306215877051063,3.18145724544506,0.001465361500854,0.00544040981902996 +"Tfru28547_t",21.9347099395292,0.101817053863917,0.490411440026077,0.207615576542224,0.835529141052163,0.89729321767001 +"Tfru28548_t",1.78257095989889,-1.29507062242754,1.54864855382549,-0.836258568303602,0.403009455956253,0.548989690443785 +"Tfru28549_t",4.32189869048633,-0.5853518589449,1.00647461899981,-0.581586309177469,0.560845366929526,0.691521542164186 +"Tfru28550_t",0.302946100014118,-0.0642994823553774,3.86217820065486,-0.0166485022220039,0.986717030731985,NA +"Tfru28551_t",0.811588571258804,1.83630375407891,2.10639489575853,0.871775637975821,0.383330787468067,0.52946633484758 +"Tfru28552_t",186.063688565478,3.93987557114528,0.61746047831499,6.38077368432868,1.7619553305107e-10,2.33466905250619e-09 +"Tfru28553_t",95.5038925410819,-0.0382984748483809,1.28200782242186,-0.0298738230598551,NA,NA +"Tfru28554_t",1381.2609896137,-0.780929479587929,0.304930992166983,-2.56100396367807,0.0104370165421591,0.0296346650867193 +"Tfru28555_t",176.210966105161,1.24799211521372,0.268797563186085,4.64286989964171,3.43602726815647e-06,2.30925796580606e-05 +"Tfru28556_t",88.6222584594698,0.263168830257597,0.293269050476039,0.897363120419347,0.369525185020512,0.516034796003934 +"Tfru28557_t",14.014441196486,-0.0588737565007733,0.581867228054965,-0.101180739629509,0.919406985794858,0.951726565314011 +"Tfru28558_t",7.76866722002014,0.611009787023088,0.649506075546445,0.940729902347765,0.346843291120005,0.492410102465473 +"Tfru28559_t",53.4669371670485,-0.236929445709719,0.299448101513139,-0.791220396831678,0.428815390990881,0.573702083355806 +"Tfru28560_t",42.6553523885682,-0.766884847427771,0.312341661014702,-2.45527556246067,0.0140776628748344,0.0380780873989356 +"Tfru28561_t",1198.7859143892,-0.487598824429054,0.145590384705638,-3.34911419744448,0.000810703736502325,0.00322896416140275 +"Tfru28562_t",21.7867416957892,-0.0986820070342908,0.418659140002677,-0.235709668332238,0.813657967019597,0.881909400518141 +"Tfru28563_t",45.9759067912034,0.0569665160466303,0.298816020306847,0.19064076948797,0.848807046505724,0.905995750543482 +"Tfru28564_t",1.05610955913608,-0.491229001604325,2.29678106234378,-0.21387715601549,0.830642854903517,0.893524974416761 +"Tfru28565_t",0,NA,NA,NA,NA,NA +"Tfru28566_t",1.12566020178427,1.24623149995068,1.89527802783153,0.65754547968698,0.510830237741532,0.647983943810888 +"Tfru28567_t",25.9542554664453,0.256599124676142,0.457647326682252,0.560691846571848,0.575007626420068,0.704013932889169 +"Tfru28568_t",438.737410769924,0.26345929087603,0.145592522415899,1.80956608556746,0.0703631032178244,0.14377122706244 +"Tfru28569_t",239.940989311226,-1.08816735500545,0.278996932050738,-3.90028430422867,9.60797934551545e-05,0.000481366863113131 +"Tfru28570_t",154.337208364785,1.11910615220012,0.487998273772717,2.29325842394544,0.0218331313309358,0.0548312392289462 +"Tfru28571_t",9.33183755286796,5.64797302052286,3.91153087801403,1.4439290386966,0.148758937263079,0.260197343958399 +"Tfru28572_t",0,NA,NA,NA,NA,NA +"Tfru28573_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28574_t",125.341568288214,0.42937265486743,0.2257302767102,1.90214915395985,0.0571516579230059,0.121165333575102 +"Tfru28575_t",610.484626524366,0.118179678233061,0.146167953709746,0.808519755758072,0.418791437971399,0.564305640423862 +"Tfru28576_t",426.275071882528,-0.183717476452092,0.198726134492497,-0.924475670607018,0.355238712844437,0.501149923944686 +"Tfru28577_t",368.095279286229,0.102325956889638,0.285776911108458,0.358062365824939,0.720296642084271,0.818868172805343 +"Tfru28578_t",2455.86036762995,0.272859736962177,0.13723813732768,1.9882209295123,0.0467872612222089,0.10317261859819 +"Tfru28579_t",2539.11874347427,-0.0396045699815611,0.132920787851758,-0.297956178425084,0.765736609865942,0.850484275100777 +"Tfru28580_t",0,NA,NA,NA,NA,NA +"Tfru28581_t",92.8515067783212,0.62067518012698,0.236417708808116,2.62533286214503,0.00865642962907872,0.0253143728078899 +"Tfru28582_t",301.682510462421,-1.41499368590708,0.168222726836096,-8.41142996859008,4.05041987241412e-17,1.18649733958937e-15 +"Tfru28583_t",70.8216935632275,-1.38637724328203,0.2856997310174,-4.85256754826135,1.21873253224934e-06,8.87015118136497e-06 +"Tfru28584_t",84.7600265527063,-1.4051472639471,0.258656569859603,-5.43248240208942,5.55754359514263e-08,5.13745665672417e-07 +"Tfru28585_t",367.426388989165,-1.28087105714044,0.187870401268449,-6.81784383539055,9.24170206429704e-12,1.44131910940047e-10 +"Tfru28586_t",30.4829210518146,-2.47278785806379,0.618909571053587,-3.99539443840607,6.45866307901685e-05,0.00033599460648163 +"Tfru28587_t",196.835303425948,-0.41505674966002,0.258957014365371,-1.60280172629116,0.108978435599846,0.203973829499484 +"Tfru28588_t",12.273639957772,0.878669690721196,0.566382221167161,1.55137230280727,0.120812488786246,0.221062933418155 +"Tfru28589_t",180.541349577421,-1.71892404429547,0.263886971418974,-6.51386476207015,7.32414439256384e-11,1.02638917661602e-09 +"Tfru28590_t",179.087895649623,0.703522922138564,0.24182429474063,2.90923177463675,0.00362318140832454,0.0119844516580407 +"Tfru28591_t",71.3360515355478,0.249956882388854,0.258954974401575,0.965252291316223,0.334418461402297,0.480113148218181 +"Tfru28592_t",390.587317635935,0.0111891351499924,0.17797402807148,0.0628694830995147,0.949870435713684,0.971047822460642 +"Tfru28593_t",2.08294463427229,2.33148495966435,1.48074797808169,1.5745319218229,0.115364527619491,0.213366206974828 +"Tfru28594_t",5.39009141112667,2.06652779768264,0.909981659390097,2.27095543779169,0.0231496757166271,0.057520788557579 +"Tfru28595_t",66.1213299298187,1.53184908651777,0.291951252836084,5.24693445099832,1.54650890836574e-07,1.32557906431349e-06 +"Tfru28596_t",113.603574319682,-1.50887269009982,0.402842724530845,-3.745562717701,0.000179989872256205,0.000850722986503459 +"Tfru28597_t",798.275773609587,-1.56599999584505,0.326188632410816,-4.80090303659865,1.57951739206209e-06,1.12578341510668e-05 +"Tfru28598_t",126.419417316124,-0.387616386159003,0.218245447531369,-1.77605714365836,0.0757234989991837,0.152510070878486 +"Tfru28599_t",227.448030793231,1.57746252878662,0.206885146004924,7.62482256096372,2.44370283841877e-14,5.24353494955053e-13 +"Tfru28600_t",26.0972712085092,4.03446531521354,0.707842431442371,5.69966582392144,1.20042507782976e-08,1.2317979478143e-07 +"Tfru28601_t",374.420701945535,0.875980789770011,0.226315709142965,3.87061416588033,0.000108561500465422,0.000537285798411354 +"Tfru28602_t",66.9387648855509,0.178083411571642,0.314008653160763,0.567128993991351,0.57062654548179,0.700028618532174 +"Tfru28603_t",95.2950983705623,-0.297119324584026,0.275262374505463,-1.07940405991858,0.280407641868615,0.421572150008034 +"Tfru28604_t",12.1049106031213,6.020878858471,1.29568347510731,4.64687477624299,3.37001595054522e-06,2.26829945784066e-05 +"Tfru28605_t",46.8238182517635,-1.00623783519243,0.321594013914567,-3.12890722978363,0.00175457694428994,0.006383910260642 +"Tfru28606_t",15.9845192051389,1.18274870135196,0.543759889375726,2.17513046559914,0.0296203410358105,0.0703420238095756 +"Tfru28607_t",16.4317751702377,-0.306496116207143,0.523064298199937,-0.58596260012758,0.557900648022696,0.688796629489046 +"Tfru28608_t",0.766259766164511,1.68663246965309,2.44478948501122,0.68988863049096,0.490264226238047,0.628758011365395 +"Tfru28609_t",10.6076247805004,1.81942055248693,0.83480001193418,2.17946876674264,0.0292968624616691,0.0696921536875164 +"Tfru28610_t",305.201937385601,1.58322743358261,0.195238691422771,8.10918892175058,5.09587635791665e-16,1.32457273972328e-14 +"Tfru28611_t",474.42964682313,-1.02416357244242,0.168739804040576,-6.06948418759658,1.28321725071808e-09,1.5130875696033e-08 +"Tfru28612_t",151.821643265806,-0.519857933480061,0.269475028378584,-1.92915067718154,0.0537121592547964,0.115383794146844 +"Tfru28613_t",101.221663900761,0.629550727994685,0.220724226231446,2.8522049380051,0.00434170991515521,0.0140172342615657 +"Tfru28614_t",126.478426114825,0.101587020070357,0.205042393569296,0.495443982592922,0.620286754587042,0.742043047495495 +"Tfru28615_t",4094.18420736254,-2.23236536651808,0.199094077018782,-11.2126156636366,3.53587244111401e-29,2.68246865193667e-27 +"Tfru28616_t",1294.0552365483,-2.14825413782917,0.211658563939781,-10.1496206807884,3.32653838839879e-24,1.73943759655058e-22 +"Tfru28617_t",128.535979428736,-1.17895627681099,0.297541220384143,-3.96232923723607,7.4222091084791e-05,0.000380809353158556 +"Tfru28618_t",236.544383446854,0.480131675041133,0.212284333628573,2.26173861647843,0.023713557351115,0.0587003001347146 +"Tfru28619_t",645.553776721524,1.2859551491533,0.160839533383725,7.99526784304527,1.29292483770889e-15,3.18674646122523e-14 +"Tfru28620_t",568.460155038473,0.70311984956137,0.181501294203789,3.87391094176942,0.000107102565624276,0.000531086765372999 +"Tfru28621_t",2634.9830170879,0.631703287660361,0.186004403562699,3.39617383008582,0.000683349467935044,0.00277642412618165 +"Tfru28622_t",367.251211052539,-0.388835331519329,0.197138575307002,-1.97239597026508,0.0485644215109884,0.106368345411619 +"Tfru28623_t",93.2921455448716,-0.0893498177579219,0.263158612608542,-0.339528381276402,0.734211720342935,0.828263994867068 +"Tfru28624_t",683.29567206004,-0.0709202622394134,0.158314507986937,-0.447970708062114,0.654174336787617,0.769455072124185 +"Tfru28625_t",38.6314817730472,-0.847516378969504,0.348018367501642,-2.43526335995903,0.0148809545317338,0.0398940779132968 +"Tfru28626_t",180.202943051847,-0.20895424849642,0.224446617297458,-0.930975262681255,0.35186636042381,0.497450606745819 +"Tfru28627_t",12.5069719193181,2.55788590818729,0.834565171393396,3.06493248923464,0.00217719136319341,0.00769512677009926 +"Tfru28628_t",167.991337902735,-0.102029935879025,0.213927234596151,-0.476937572121829,0.633406576350872,0.752742097426323 +"Tfru28629_t",1420.56205547848,0.34331081359655,0.14093740716108,2.43590981636389,0.0148543874350744,0.0398323976512059 +"Tfru28630_t",17.8969339587216,3.59712195901977,0.702765764066362,5.1185219072227,3.0793947322003e-07,2.51246278186813e-06 +"Tfru28631_t",7.42336908409115,2.1699478488756,0.777877078288922,2.78957679746623,0.00527769780038312,0.0166297229841379 +"Tfru28632_t",0,NA,NA,NA,NA,NA +"Tfru28633_t",105.215061968714,-0.596211744912154,0.214389423952243,-2.78097554404066,0.00541958197081162,0.0170064840867588 +"Tfru28634_t",17.9618782217617,1.28091194678267,0.465212172442155,2.75339301647774,0.00589810437754199,0.0182824897464529 +"Tfru28635_t",457.780991532546,-0.0455299756539584,0.159953590768621,-0.284644911284419,0.775916199682695,0.85764441169405 +"Tfru28636_t",59.3878041579787,-0.114230457016809,0.282549289130198,-0.404285062505226,0.686003108576107,0.792742638354552 +"Tfru28637_t",281.987112954909,-0.116132794780886,0.171544223261268,-0.676984584925439,0.49841573491205,0.63639614156639 +"Tfru28638_t",60.0962828336801,0.246049882824516,0.294915533597918,0.834306283642475,0.404108411850102,0.550084925321166 +"Tfru28639_t",385.087458872726,-0.0255955752161841,0.188174777210484,-0.136020223303115,0.891805293661896,0.933648429253555 +"Tfru28640_t",94.345272694276,0.601735240470469,0.288772065401077,2.08377233315389,0.0371808810871827,0.0849436625899498 +"Tfru28641_t",23.6415885577498,1.21809985328175,0.415678642800568,2.9303883525865,0.00338538622390651,0.0113098885939734 +"Tfru28642_t",311.915398935487,0.18118097556384,0.220522701027831,0.821597843303102,0.411305817161544,0.557110688087679 +"Tfru28643_t",391.563205415474,1.13015350859079,0.153232515828062,7.37541573655884,1.63832994927249e-13,3.19110742077619e-12 +"Tfru28644_t",0,NA,NA,NA,NA,NA +"Tfru28645_t",143.773636607022,-0.724489063186584,0.242212819168022,-2.99112600924731,0.00277950772069989,0.00955095697670253 +"Tfru28646_t",46.5651156112623,-0.558564036481757,0.321172408721618,-1.73914078953744,0.082010001377888,0.162334979421716 +"Tfru28647_t",259.238461247457,0.148980449849414,0.192058358958461,0.775704065458747,0.437923738900185,0.582608936981853 +"Tfru28648_t",140.99985280858,-0.470674288595329,0.221041988508391,-2.12934335133101,0.0332258635907445,0.0774900820301024 +"Tfru28649_t",346.143752313498,0.847146142276314,0.164038480150341,5.16431352875196,2.41322911550039e-07,2.00103992607998e-06 +"Tfru28650_t",33.607818886516,1.02373522893168,0.361640583239057,2.83080847775028,0.00464305141594352,0.0148551094623039 +"Tfru28651_t",525.188264590704,-0.333203425323157,0.169602560488563,-1.96461317779236,0.0494590255955555,0.10787379327829 +"Tfru28652_t",747.685180628213,-0.175936901928443,0.137610720397106,-1.27851159721233,0.201069098282871,0.327553290817337 +"Tfru28653_t",269.576901064873,-0.247466795382692,0.18003476428837,-1.37455005626754,0.169270981451893,0.28729596275545 +"Tfru28654_t",0,NA,NA,NA,NA,NA +"Tfru28655_t",335.275360074903,-0.181534366063367,0.219798967562582,-0.825910913397169,0.408854629346258,0.555060151942326 +"Tfru28656_t",0,NA,NA,NA,NA,NA +"Tfru28657_t",0,NA,NA,NA,NA,NA +"Tfru28658_t",0,NA,NA,NA,NA,NA +"Tfru28659_t",0.605143485212651,2.6967370322281,3.06659443390694,0.879391484707147,0.379189047549712,NA +"Tfru28660_t",0,NA,NA,NA,NA,NA +"Tfru28661_t",1.53281743979841,0.966788362423466,1.47203899072587,0.656768175649166,0.51132999008161,0.64843411026895 +"Tfru28662_t",0,NA,NA,NA,NA,NA +"Tfru28663_t",0,NA,NA,NA,NA,NA +"Tfru28664_t",0.825174342963461,3.12580869760336,2.25758920392829,1.38457815627587,0.166181494558129,0.283082801660141 +"Tfru28665_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28666_t",0,NA,NA,NA,NA,NA +"Tfru28667_t",0,NA,NA,NA,NA,NA +"Tfru28668_t",2.56344963128735,0.569610656897077,1.23189865024089,0.46238435019447,0.643805720062282,0.761582114012045 +"Tfru28669_t",75.2048567824875,0.265775297587803,0.342641208236121,0.775666473265095,0.437945940430997,0.582608936981853 +"Tfru28670_t",0,NA,NA,NA,NA,NA +"Tfru28671_t",1.87764486619284,-0.719282918925677,1.63107251387666,-0.440987701531502,0.659221900503196,0.773543515158709 +"Tfru28672_t",203.524767792892,-1.09804681256604,0.226655366553714,-4.84456569134807,1.26888931481109e-06,9.20510303580947e-06 +"Tfru28673_t",2.18968633542279,0.784546560406582,1.33529364133706,0.587546091825164,0.556837004189662,0.687711061959309 +"Tfru28674_t",1532.11048088753,-0.161942077593004,0.347357504825447,-0.466211540972413,0.641064089242084,0.759342347689099 +"Tfru28675_t",315.79336563105,-0.365454690402158,0.180112075706656,-2.02904046809924,0.0424541686327619,0.0950885002002814 +"Tfru28676_t",212.191418176233,-0.225454171785902,0.183745697188807,-1.22699021111899,0.219826270125703,0.350885964170861 +"Tfru28677_t",606.825036067147,-1.41042362127326,0.166314309672545,-8.480470646514,2.24284816054198e-17,6.69265891105726e-16 +"Tfru28678_t",24.2609832781997,0.256028795414861,0.389942977002126,0.656580091230788,0.511450953610221,0.648550758785015 +"Tfru28679_t",10.6125724533436,-0.343911281672909,0.648233231324507,-0.530536333304311,0.595740124765286,0.721999546619277 +"Tfru28680_t",414.518589764029,-0.299815767511472,0.259917227866951,-1.15350479062875,0.248703252381239,0.384789408108686 +"Tfru28681_t",1.5907704378887,4.0684172798883,2.3555481981268,1.72716367388433,0.0841382727659896,0.165904365154436 +"Tfru28682_t",61.5058689379332,0.444299169294942,0.347853392277332,1.27725984325235,0.20151052576204,0.328081301218861 +"Tfru28683_t",95.0088485963002,-0.522458067190985,0.251059812444092,-2.08101034611953,0.0374329590716487,0.0853801084410413 +"Tfru28684_t",156.147824096031,-0.608900953977391,0.235179479334406,-2.58909049250672,0.00962298025918389,0.0276779717517717 +"Tfru28685_t",286.08763169171,-0.244155407019279,0.22270088886113,-1.09633782005929,0.272930964292617,0.412687992761892 +"Tfru28686_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru28687_t",2590.04731191659,3.10553055289696,0.500082264514519,6.21003937404543,5.29713271375639e-10,6.56422093764496e-09 +"Tfru28688_t",171.721376078725,-0.267317121281489,0.208673415603161,-1.28103103363129,0.200182765910494,0.326394455855811 +"Tfru28689_t",308.291081381369,-1.54779834281977,1.39818908500924,-1.10700216402386,0.268292992712045,0.407768908447917 +"Tfru28690_t",197.503902564899,-0.781666061475908,0.207288045437923,-3.77091722691744,0.000162648620112628,0.000775639488199579 +"Tfru28691_t",160.516005143148,0.0718963397245273,0.203848952733433,0.352694182434893,0.724317721194823,0.821666248523975 +"Tfru28692_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru28693_t",492.507585002407,0.741239400590692,0.186835147567868,3.967344529334,7.26778921879444e-05,0.000373485930462961 +"Tfru28694_t",658.698269685207,0.619489708339001,0.158240640018008,3.91485846030769,9.04572564758717e-05,0.00045533814663293 +"Tfru28695_t",118.132289265901,0.267151624518412,0.309493367013681,0.863190145547133,0.388032930906291,0.53430360551836 +"Tfru28696_t",309.74652322604,0.30980939765702,0.184010068742517,1.68365459441533,0.0922484412032792,0.178344861275863 +"Tfru28697_t",125.494427839736,2.36652177324388,0.541771363920279,4.3681189720321,1.25321223809256e-05,7.55370048168907e-05 +"Tfru28698_t",286.915226138837,2.31911197839024,0.512660821515647,4.52367702203952,6.07744432707224e-06,3.88609154399648e-05 +"Tfru28699_t",0,NA,NA,NA,NA,NA +"Tfru28700_t",974.339317727192,-0.0303695304576541,0.309278960640356,-0.0981946214342372,0.921777753299076,0.953519118041752 +"Tfru28701_t",35.4899028294242,1.71539132086452,0.374685853411778,4.57821213489828,4.68966973827078e-06,3.06608713440199e-05 +"Tfru28702_t",643.252074228447,0.352254231171807,0.192561913729282,1.82930375145229,0.0673541169884786,0.138621326377978 +"Tfru28703_t",0.32955266786588,-0.0642989587579764,3.75808704636274,-0.0171094916016403,0.986349266818334,NA +"Tfru28704_t",4.2588807816688,-0.358533747566039,0.914555247387967,-0.392030715027917,0.695035519300705,0.80010775793168 +"Tfru28705_t",3.65057622020983,2.21972653352478,1.29063433854543,1.71987252100114,0.0854556164854,0.168037884167073 +"Tfru28706_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28707_t",22.61688504301,-1.16155852102822,0.534679338553518,-2.17243951144739,0.0298225274867545,0.0707696071629271 +"Tfru28708_t",0,NA,NA,NA,NA,NA +"Tfru23513_t",0,NA,NA,NA,NA,NA +"Tfru27017_t",28.9501612555547,1.71608331928261,0.410373532416375,4.18175926010117,2.89262160452628e-05,0.000161557420539552 +"Tfru27018_t",2.11754327915288,-4.56747608186789,1.81214185808902,-2.52048484034494,0.0117193286273781,0.0326338900934081 +"Tfru27019_t",3.63987690774642,2.09944532544862,1.34119038575124,1.5653596594138,0.117498601693203,0.216361568258843 +"Tfru27020_t",13.7780376517407,1.29008273528214,0.672685797944445,1.91780878862658,0.0551352609758021,0.117718673978101 +"Tfru27021_t",0,NA,NA,NA,NA,NA +"Tfru27022_t",5.04740895947155,0.00544363822772499,0.795742477342062,0.00684095468411819,0.994541750449552,0.997259929883103 +"Tfru27023_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru27024_t",64.5166467772346,1.16715387713384,0.318175512666349,3.6682705949083,0.000244196662700495,0.00111305933019085 +"Tfru27025_t",324.103925450016,-2.10789153838973,0.439891622010719,-4.79184288337813,1.65256297817091e-06,1.17187450733413e-05 +"Tfru27026_t",747.024332531729,-0.0798249393736849,0.209220260317972,-0.381535417518206,0.702805995697197,0.806252518057229 +"Tfru27027_t",135.631751656916,-0.478439843670729,0.242353722785676,-1.97413861925213,0.0483659831067018,0.106016719091869 +"Tfru27028_t",11.002441734368,5.8838000759266,1.30589904987353,4.50555506300156,6.61996695876994e-06,4.19583292374034e-05 +"Tfru27029_t",126.219325887694,0.339790622726739,0.297970474195769,1.14034997475453,0.254140525275315,0.391097334041496 +"Tfru27030_t",12.4596196155566,0.884274189548517,0.569080249048281,1.55386554185875,0.120216492627651,0.220185375645048 +"Tfru27031_t",0,NA,NA,NA,NA,NA +"Tfru27032_t",0,NA,NA,NA,NA,NA +"Tfru27033_t",0,NA,NA,NA,NA,NA +"Tfru27034_t",0,NA,NA,NA,NA,NA +"Tfru19622_t",0,NA,NA,NA,NA,NA +"Tfru19623_t",0,NA,NA,NA,NA,NA +"Tfru19624_t",1099.07592526426,0.0108373098590201,0.296318684383711,0.0365731573139226,0.970825346566842,0.983523921351799 +"Tfru19625_t",205.547240171218,0.411114408918452,0.225448816215558,1.82353766952307,0.0682219971691818,0.14009986205233 +"Tfru19626_t",0,NA,NA,NA,NA,NA +"Tfru19627_t",2308.38946905674,-0.207086467221892,0.141986130824186,-1.4584978548244,0.144703365995868,0.254756240637784 +"Tfru19628_t",919.991980059554,-0.34424912956381,0.220650034722651,-1.56015896392909,0.118722320351428,0.21807333629883 +"Tfru19629_t",88.0914807192231,0.525614730860639,0.266060145797468,1.97554853352877,0.0482059325896837,0.105779857962263 +"Tfru19630_t",18.5689659020743,0.0961402055742231,0.434789754541387,0.221118838634161,0.82499990217742,0.889549904159312 +"Tfru19631_t",50.9168769245143,0.582826954882677,0.331392254602923,1.75872232011284,0.0786246843764565,0.156904796309143 +"Tfru19632_t",451.783996871539,-0.151121542118587,0.180282423792295,-0.838248892707899,0.401890932653051,0.547920481360552 +"Tfru19633_t",5.70416623845739,-1.58752912638889,0.836068284361967,-1.89880319117761,0.0575903574732097,0.12191375333432 +"Tfru19634_t",185.784049633738,-0.290476789359085,0.266155310322296,-1.09138077691306,0.275105367390734,0.415175374830358 +"Tfru19635_t",289.764521373306,-1.01907755554748,0.272099104123423,-3.74524406771011,0.000180218486026617,0.000851623673411253 +"Tfru19636_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19637_t",0,NA,NA,NA,NA,NA +"Tfru19638_t",0,NA,NA,NA,NA,NA +"Tfru19639_t",427.119801869591,-0.0857160428623095,0.193882312920764,-0.442103467670822,0.658414335200242,0.773020292822444 +"Tfru19640_t",25.0989730443795,-0.119656966005257,0.502620316714572,-0.238066313728437,0.811829661423207,0.880857476136142 +"Tfru19641_t",4415.43199437532,-1.42915426473128,0.275281652732361,-5.19160739753606,2.08486269260677e-07,1.74622855765492e-06 +"Tfru19642_t",0,NA,NA,NA,NA,NA +"Tfru19643_t",0.680287814167604,1.49131678739415,2.54938796390852,0.584970513906317,0.558567543345192,NA +"Tfru19644_t",35.7984007797345,-1.48097731661318,0.469825699649147,-3.15218456061287,0.00162053809079975,0.00594161901574352 +"Tfru19645_t",80.8129313489598,-0.133876126182577,0.297132886135574,-0.45055977452961,0.652306863807604,0.767863855039668 +"Tfru19646_t",186.069220631206,0.103896835936399,0.254815806839875,0.4077330885587,0.683469642241316,0.791188671875066 +"Tfru19647_t",105.913425117124,-0.862106484539825,0.233458482573056,-3.6927614496511,0.0002218320901278,0.00102110287475528 +"Tfru19648_t",0.518117092996083,0.831756652060372,3.3132644981994,0.251038410157834,0.801784412804665,NA +"Tfru19649_t",0,NA,NA,NA,NA,NA +"Tfru19650_t",1.84614035550829,2.08984802648154,1.58679881578943,1.3170214180188,0.187831445401356,0.311267511890585 +"Tfru19651_t",147.595601863239,1.45772197341043,0.266069904178978,5.47871800047654,4.28418521269156e-08,4.04557236540241e-07 +"Tfru19652_t",0,NA,NA,NA,NA,NA +"Tfru19653_t",14.9455199504045,1.39198590552535,0.602670663493924,2.30969580874477,0.0209050010232689,0.0528708241497072 +"Tfru19654_t",23.1620431060437,0.752537467408577,0.941587897460094,0.799221686513309,0.424161879224974,0.569382369065194 +"Tfru19655_t",276.198435610821,-0.0550892255927654,0.302866670543057,-0.181892664167989,0.855666961611666,0.910478314765606 +"Tfru19656_t",332.189319264871,-1.10845371640633,0.259222715670832,-4.27606706278731,1.90223942658192e-05,0.000110261896832176 +"Tfru19657_t",369.306902466064,-0.0586115944574319,0.148504657758392,-0.394678492527752,0.693080177353722,0.798555377705292 +"Tfru15953_t",348.022346986523,-0.567283753280076,0.163264241852268,-3.47463563879094,0.00051154766918759,0.00214711868650005 +"Tfru15954_t",1087.77885094011,-0.222609962486406,0.14508990105505,-1.53428984972526,0.124958361722385,0.226810067749146 +"Tfru15955_t",24.5120174079534,-0.0216346408086734,0.403457007646062,-0.053623162812065,0.957235401803903,0.97548768915539 +"Tfru15956_t",965.971527562304,0.204698930839265,0.169828043250317,1.20533056214721,0.228075715767829,0.361010999284533 +"Tfru15957_t",2.41259016364917,4.68208744289814,1.62004345188495,2.89009991519083,0.00385119400507805,0.0126118995952073 +"Tfru15958_t",27.0224578140014,0.356753521845098,0.398662183566386,0.894876756690643,0.370852973044323,0.517017974006849 +"Tfru15959_t",0.320826760930068,-1.84871167327482,3.7420388888694,-0.494038605203641,0.621278915456996,NA +"Tfru15960_t",577.06619880959,-0.0343458432798507,0.376223504036339,-0.0912910621249575,0.927261319724729,0.95680337200606 +"Tfru15961_t",131.5581464237,-0.418350779870678,0.204576568348035,-2.04495941665695,0.0408588593092537,0.091994091684215 +"Tfru15962_t",160.236587920042,-0.510046086064475,0.297415156313125,-1.71492970428006,0.0863581158400652,0.169475151920437 +"Tfru15963_t",415.013974615507,0.297154483160608,0.15152479438442,1.96109477902821,0.0498679676693239,0.108585825689771 +"Tfru15964_t",129.917827528358,-0.116305749684649,0.23621222915778,-0.492378189306031,0.622452014979606,0.743862505470835 +"Tfru15965_t",8.91984590103131,-0.187738896204296,0.741395996549373,-0.253223509538865,0.800095500421635,0.873180698441829 +"Tfru15966_t",0.325534379423615,1.7930591610128,4.03874525235237,0.443964411958994,0.657068313926604,NA +"Tfru15967_t",161.486628886295,2.09104355004003,0.237823972446969,8.79240022999069,1.46398176997631e-18,4.82531841120321e-17 +"Tfru15968_t",901.167488224867,0.0126735100726312,0.168881018240844,0.0750440174073165,0.940179689780829,0.96408803928041 +"Tfru15969_t",8.45670200343027,-0.697155956426072,0.63007513322651,-1.106464800247,0.268525391413939,0.407931725202326 +"Tfru15970_t",19.474609399918,1.11076432112105,0.48820320456013,2.27520899237409,0.0228933956914407,0.0570296299615364 +"Tfru15971_t",10.8154999218203,1.58136434076743,0.595653463740292,2.65483949482566,0.00793461523020807,0.0235762996351642 +"Tfru15972_t",8.45102310188869,-0.0721461107139001,0.692993287532077,-0.10410795026721,0.917083681744591,0.950098747288118 +"Tfru15973_t",456.923911663538,-2.50212426058052,0.190610066959519,-13.1269260878646,2.30838019279887e-39,3.11214148884571e-37 +"Tfru15974_t",0,NA,NA,NA,NA,NA +"Tfru15975_t",18.1952793697708,3.86564940630089,0.717716990757465,5.38603579973933,7.20286222798645e-08,6.56084886700597e-07 +"Tfru15976_t",69.233869091637,-0.562294700406497,0.253196935791214,-2.22078003688861,0.0263658633451629,0.0640264780452199 +"Tfru15977_t",57.8344217772226,0.481904948945128,0.282779952112474,1.70416942695235,0.0883494391388598,0.172466063735144 +"Tfru15978_t",193.549838361283,0.770310110042371,0.249765408282656,3.0841344897954,0.00204145287384215,0.00726932622380067 +"Tfru15979_t",23.0896970372151,1.08618531779293,0.443834365882273,2.44727628432685,0.0143940453222905,0.0387932001821847 +"Tfru15980_t",140.440781351241,1.93669249427172,0.430725482589561,4.49634993181306,6.91299302636164e-06,4.36425342538712e-05 +"Tfru15981_t",143.068601487646,-0.13233437799701,0.206502246442647,-0.640837474055103,0.52162828290976,0.657285117477643 +"Tfru15982_t",315.588468703378,-0.625398655656665,0.241675030392104,-2.58776694738381,0.00966003130427689,0.0277782286052407 +"Tfru05165_t",2227.83755138126,0.03740406479151,0.283903034338481,0.13174943648864,0.8951824816367,0.935826977719981 +"Tfru05166_t",23.345620638389,-0.508342583607381,0.627854862866485,-0.809649830992043,0.418141459646668,0.563837191473906 +"Tfru05167_t",0.798474913600705,-0.839624048252289,2.44072771894811,-0.344005618379319,0.730842060822754,0.826239913175047 +"Tfru02416_t",10.1813265701323,2.53610811886491,0.787154541382131,3.2218681155188,0.00127357743402174,0.00481057602926692 +"Tfru02417_t",5.45070279268419,2.47839980992883,0.974619801586253,2.54294013511226,0.0109924060695506,0.0309290982947626 +"Tfru02418_t",5.34786596267509,3.27405273708441,1.25762884441785,2.60335372523994,0.00923166518420307,0.026734907985231 +"Tfru02419_t",21.2296823025265,0.7029631481784,0.494880299825168,1.42047106831035,0.155470585618442,0.269264177847139 +"Tfru02420_t",157.828438167218,0.574973539594741,0.297837589126666,1.93049353266895,0.0535457157801552,0.115170890837085 +"Tfru02421_t",2.06621710925773,1.65972043929619,1.82252893696046,0.910668909358555,0.362469850355791,0.508657841168961 +"Tfru02422_t",1045.64554199321,-1.32158598774659,0.214820167070486,-6.15205734996451,7.64842084001498e-10,9.29585389519362e-09 +"Tfru02423_t",365.811500653777,-0.38586720471167,0.199088041083122,-1.93817369748776,0.0526020345728686,0.113523002289373 +"Tfru02424_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02425_t",151.180329626575,0.851813166838961,0.246951240256309,3.44931722535538,0.000562006049013234,0.00233309133313229 +"Tfru02426_t",3.89926164798524,1.1440547428776,1.16405626360415,0.98281739349555,0.325697319738104,0.470811653257897 +"Tfru02427_t",658.1724550374,-0.705855988859589,0.180558089953782,-3.9093013724296,9.25634281014446e-05,0.000465312111615078 +"Tfru02428_t",637.807697813937,0.628333625802275,0.178968627156158,3.51085905829755,0.000446661146626905,0.00190732235480064 +"Tfru02429_t",1.65775966963612,-0.680829501896237,1.35087645514999,-0.503990945508517,0.614267739753456,0.737028865983332 +"Tfru02430_t",0,NA,NA,NA,NA,NA +"Tfru02431_t",0.466522622159292,0.639256604859819,3.38956973072843,0.188595206956383,0.850410089696191,NA +"Tfru02432_t",0,NA,NA,NA,NA,NA +"Tfru02433_t",0,NA,NA,NA,NA,NA +"Tfru02434_t",4.0456900978989,-1.03832675092955,0.989639567893835,-1.04919688401236,0.294087512487301,0.43667195440563 +"Tfru02435_t",0.510200518493637,-0.977089842999089,2.74627972705618,-0.355786715159733,0.722000298737399,NA +"Tfru02436_t",13.1540738096583,4.19938900095278,1.0019307615295,4.19129660670583,2.77364772207548e-05,0.000155691587710181 +"Tfru02437_t",38826.0647326372,0.493034242635753,0.328327261743457,1.50165490376182,0.133186256046472,0.238552526027987 +"Tfru02438_t",446.148811616678,0.799543531581347,0.159507713711031,5.01256969321134,5.37079130687087e-07,4.20273809257937e-06 +"Tfru02439_t",397.231512603232,-0.274267129892086,0.161028131813689,-1.70322493841893,0.088525981387964,0.172699744025683 +"Tfru02440_t",695.297933135307,-0.660241730542715,0.139414022371362,-4.73583445418429,2.18155612205874e-06,1.51813513717894e-05 +"Tfru02441_t",7.04972389271058,-4.30080876858243,1.29935502252545,-3.30995662773003,0.000933104288313867,0.00366430496095181 +"Tfru02442_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02443_t",0,NA,NA,NA,NA,NA +"Tfru02444_t",214.544430776195,-0.472073284691963,0.254624509625078,-1.85399781579184,0.0637394724802293,0.132634997127618 +"Tfru02445_t",456.645938875527,0.725289204058935,0.252549056189869,2.87187453796562,0.00408044930584909,0.0132810435521964 +"Tfru02446_t",150.315505703276,0.248350297797385,0.332370237129468,0.747209798152429,0.454936930553446,0.597750748886639 +"Tfru02447_t",0,NA,NA,NA,NA,NA +"Tfru02448_t",0,NA,NA,NA,NA,NA +"Tfru02449_t",1.81090657640244,-0.214248249733681,1.72416756752089,-0.124261848888469,0.901107953304605,0.939169934101292 +"Tfru02450_t",19.7939019489861,-1.40353940009221,0.599673306115871,-2.34050671553656,0.0192575920770341,0.0494986689656624 +"Tfru02451_t",154.645791685759,-0.0478705706443476,0.187427844540318,-0.255407998538072,0.798407993671963,0.872481167017452 +"Tfru02452_t",459.977689040052,-0.0280284080262585,0.213492490977158,-0.131285217095796,0.89554968561939,0.936079676996027 +"Tfru02453_t",151.320104158211,-0.543762098126341,0.196717487239021,-2.76417773406004,0.0057066446121854,0.0177776595797201 +"Tfru02454_t",45.7651951235665,0.926632100674417,0.299384093113344,3.09512803782666,0.00196727952947554,0.00703880349634894 +"Tfru02455_t",909.221595411173,-0.389217123836828,0.142242699471063,-2.73628892930289,0.00621364424606069,0.0191307412610866 +"Tfru02456_t",240.997174781025,-0.325051106208979,0.172544227383825,-1.88387123195899,0.0595823953930558,0.125418924839785 +"Tfru02457_t",718.979073177053,-0.083502362501972,0.162143890913533,-0.514989260659235,0.606560524577659,0.730630912706661 +"Tfru02458_t",62.0928354391881,-0.395526409373621,0.302917251174153,-1.30572427895903,0.191646338388168,0.316138059491944 +"Tfru02459_t",243.985529748239,4.6517787711178,0.294807682923714,15.7790282973104,4.33815110529797e-56,1.31199759103471e-53 +"Tfru02460_t",103.927147931447,0.9185050209169,0.329860958011564,2.78452177685332,0.0053606721233104,0.0168405168612699 +"Tfru02461_t",28.1938961347743,0.618891610206713,0.447537996075568,1.38288059479582,0.16670148131391,0.283795766910491 +"Tfru02462_t",54.7609157257358,-0.01370118545777,0.27240700683746,-0.0502967438937621,0.959885918483976,0.976865392918529 +"Tfru02463_t",18.6959028723212,3.87083755084824,0.671412303328387,5.76521688932324,8.15528943967436e-09,8.60921592735435e-08 +"Tfru02464_t",165.314114259821,-0.225992017267555,0.212226080811168,-1.06486448981092,0.286937256442899,0.42859642804686 +"Tfru02465_t",0,NA,NA,NA,NA,NA +"Tfru02466_t",528.294968730898,-0.480525081593626,0.166261448416985,-2.89017740533853,0.00385024476286844,0.0126106362934283 +"Tfru02467_t",140.614846867774,0.0273617640453834,0.214353870714795,0.127647632180103,0.89842783440429,0.937458416319015 +"Tfru02468_t",91.8874767228832,-0.0175938800364479,0.383412545432571,-0.045887596131207,0.963399840617036,0.978883520975631 +"Tfru02469_t",23070.251544942,-0.855624095307349,0.339457849206968,-2.52056064488193,0.0117168046162684,0.0326309217660636 +"Tfru02470_t",290.745379691506,-1.88039670600426,0.234066283067366,-8.03360775145505,9.46474569299594e-16,2.37251313851591e-14 +"Tfru02471_t",3.59461965746276,4.23656064009554,1.48761787679178,2.84788231318661,0.00440111964127904,0.0141742779639984 +"Tfru02472_t",122.220839449635,-1.10561910832195,0.269598499336283,-4.10098391142327,4.11397165406681e-05,0.000223798457992259 +"Tfru02473_t",10.3886271834015,-1.43686975918899,0.614658027744312,-2.3376734612286,0.0194041938941186,0.0498093623975261 +"Tfru02474_t",87.7165166865041,-0.679147183503934,0.342519756155574,-1.98279711257141,0.0473900966859291,0.104306684090391 +"Tfru02475_t",289.875806652596,-0.622537034469897,0.177750500258328,-3.5023081992183,0.000461245739990185,0.0019624866275628 +"Tfru02476_t",15.176610944656,-0.165647578049502,0.583876788291486,-0.283702968453691,0.776638019670046,0.858032229857117 +"Tfru02477_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02478_t",43.4811691325706,0.314141362950878,0.345430832267319,0.909419002608815,0.363128994908835,0.509263498311802 +"Tfru02479_t",13.7024499951785,3.63748101876114,0.788986888802912,4.61031871426925,4.02052109451233e-06,2.66605221022773e-05 +"Tfru02480_t",0,NA,NA,NA,NA,NA +"Tfru02481_t",385.238124871985,0.33735195004915,0.266379733964092,1.26643249104913,0.20535828464882,0.332760362046435 +"Tfru02482_t",2.2232692057687,2.41314706409391,1.49671637786515,1.61229415257413,0.106897945161476,0.200989331489021 +"Tfru02483_t",249.185525162578,-0.126817154467949,0.231755372025709,-0.54720265320918,0.584239513586011,0.712122450523116 +"Tfru02484_t",512.390273802533,-0.539862758620816,0.164037983392639,-3.29108385421082,0.000998021587859695,0.00388514926705513 +"Tfru02485_t",509.962929185885,1.27737635201253,0.201330174350005,6.34468407995245,2.22882341413144e-10,2.92043723701766e-09 +"Tfru02486_t",0,NA,NA,NA,NA,NA +"Tfru02487_t",0,NA,NA,NA,NA,NA +"Tfru02488_t",0,NA,NA,NA,NA,NA +"Tfru02489_t",0,NA,NA,NA,NA,NA +"Tfru02490_t",0.468922245734825,-0.929889919371656,3.40795083825486,-0.272858959387992,0.784961635432942,NA +"Tfru02491_t",14.2060972984743,-0.396598690714272,0.749277103475971,-0.529308434589034,0.596591505445679,0.722730209585054 +"Tfru02492_t",2.50122616994431,-1.08842248838946,1.39929195217691,-0.777838024935522,0.436664508038752,0.581338834896341 +"Tfru02493_t",0,NA,NA,NA,NA,NA +"Tfru02494_t",41.1639724193582,1.74153422735285,0.40015334393669,4.35216712228296,1.34798444233557e-05,8.07059706245855e-05 +"Tfru02495_t",30.2317055906513,1.06389206728976,0.406160941312381,2.61938546786927,0.0088088347095614,0.0256996116282081 +"Tfru02496_t",17.399772121609,3.66284922133738,1.31073461382622,2.79450102461626,0.00519798760575831,0.0164008124371734 +"Tfru02497_t",6.73658669170391,-1.58088141282452,0.876979250701759,-1.80264403240955,0.0714441370616256,0.145488606682364 +"Tfru02498_t",5.06429918606156,5.76320414086924,1.45612746974878,3.95789809656124,7.5612201042986e-05,0.000387497380201976 +"Tfru02499_t",0,NA,NA,NA,NA,NA +"Tfru02500_t",339.178570745397,2.5731835235537,0.317826453126953,8.09619054121295,5.67069787000307e-16,1.46886826771607e-14 +"Tfru02501_t",0.510200518493637,-0.977089842999089,2.74627972705618,-0.355786715159734,0.722000298737399,NA +"Tfru02502_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru02503_t",683.73596705634,0.361984163135019,0.160364627832969,2.25725690276319,0.0239920266450864,0.0592650204627422 +"Tfru02504_t",141.627794116355,-0.177669287687885,0.197104641184001,-0.901395759230386,0.367377935387049,0.513580997811365 +"Tfru02505_t",5.39239817319121,1.08195825027354,0.889043282573202,1.21699164875525,0.22360739331156,0.355522411360664 +"Tfru02506_t",0,NA,NA,NA,NA,NA +"Tfru02507_t",215.089912931003,-0.0546965268837333,0.191874054009583,-0.285064737731562,0.775594544886208,0.857442144735187 +"Tfru02508_t",196.382313444403,-0.230582771134561,0.176819113586824,-1.30406021417666,0.192213052742872,0.316699412529299 +"Tfru02509_t",60.2632283644272,-0.0505474425814078,0.272416322767229,-0.18555218008944,0.852795956961735,0.908385281889505 +"Tfru02510_t",1.13063348385399,0.973424202626474,2.32014640569576,0.419552921417719,0.674812086586751,0.784920631819435 +"Tfru02511_t",187.971724639355,-0.310018688614743,0.252988653858895,-1.22542526665111,0.220415031878756,0.351495540362446 +"Tfru02512_t",626.094577763814,-1.0147061052617,0.145717123933737,-6.96353371428824,3.31841699528298e-12,5.44473404358013e-11 +"Tfru02513_t",72.6345800228451,0.109087455662855,0.402678582690798,0.270904538637009,0.786464454189505,0.864960169284049 +"Tfru02514_t",99.5327936664135,0.187619718792142,0.217288824474652,0.863457746829629,0.387885841199726,0.53430360551836 +"Tfru02515_t",7.77372786442838,2.07024294053484,0.867683260996515,2.38594315874806,0.0170353838425337,0.0446692314465032 +"Tfru02516_t",2.48203181865522,-0.69988613099836,1.14449090583382,-0.611526161921277,0.540851303934616,0.673618575438628 +"Tfru02517_t",19.007073053092,0.396911084223778,0.509687405703796,0.778734337521461,0.436136224489541,0.58089202547616 +"Tfru02518_t",2.91757747285601,-0.757410031944267,1.06480718220526,-0.711311911303639,0.476890972000857,0.617033008809572 +"Tfru02519_t",583.222517630199,0.0851506288269778,0.208083216805983,0.409214304421159,0.682382397788964,0.790461597438768 +"Tfru02520_t",204.306053843183,-1.9315522351554,0.325602066194041,-5.9322480896184,2.98814647404689e-09,3.34373590445847e-08 +"Tfru02521_t",2.7383754850298,1.23334920003439,1.24377286927091,0.99161931451148,0.321383263771898,0.466352683862742 +"Tfru02522_t",118.594431050657,-1.99621630546195,0.279406992602815,-7.14447511447802,9.03404219156073e-13,1.60716903217114e-11 +"Tfru02523_t",27.7144888890016,-3.21621742780899,2.03009178321648,-1.58427193016525,0.11313185063479,0.209997404400811 +"Tfru02524_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02525_t",0,NA,NA,NA,NA,NA +"Tfru02526_t",25.9905776413362,-0.0742414142180683,0.382614276607227,-0.194037229547189,0.846146730887316,0.90414003634942 +"Tfru02527_t",48.3236584689852,0.847639474435859,0.440675624966762,1.92349979534219,0.0544173121738966,0.116552727194163 +"Tfru02528_t",3.12362595575105,0.394855086411201,1.03452156038354,0.381678934042526,0.702699527448229,0.806193439498198 +"Tfru02529_t",111.794197333484,0.290673771582834,0.286858915465838,1.01329871902639,0.310917499205882,0.455046729737328 +"Tfru02530_t",22.2935854003174,1.92006600923101,0.630541325488968,3.04510732542717,0.00232597290995351,0.0081578551519761 +"Tfru02531_t",4017.37499968551,-1.78398976921814,0.391415055148793,-4.55779548014567,5.16933371446739e-06,3.34944089547713e-05 +"Tfru02532_t",1.3673849629349,3.8781764646597,1.96982415569563,1.96879323133803,0.0489768398889395,0.107083008666908 +"Tfru02533_t",1093.77362536927,0.580385311541421,0.205532627929069,2.82381107753713,0.00474563486320515,0.0151465071646508 +"Tfru02534_t",1580.02893693515,0.099009542722989,0.301135305654484,0.328787561152296,0.74231626562455,0.833913546215774 +"Tfru02535_t",99.8064821511735,1.52786555266012,0.335019797232964,4.56052318483639,5.10263278334672e-06,3.31005570119709e-05 +"Tfru02536_t",19.7928366802524,1.73183616017316,0.456979290388262,3.78974758068741,0.000150800444880721,0.000724852653872538 +"Tfru02537_t",2.56430592923309,2.57021761802897,1.71169326582893,1.50156436865122,0.133209651240922,0.238574903550884 +"Tfru02538_t",833.637866994035,-0.697111213308579,0.249448060386635,-2.79461468743466,0.00519616061872886,0.0163973596513187 +"Tfru02539_t",308.803457768584,0.408519393115326,0.26209894459802,1.55864570054592,0.119080260126359,0.218623151897285 +"Tfru02540_t",76.0164283791692,3.08986034242319,0.42075998054798,7.34352240058355,2.08044558413871e-13,4.00691671024305e-12 +"Tfru02541_t",0.679385620223242,-2.91729581017437,2.41677228712755,-1.2071041304606,0.227392044392898,NA +"Tfru02542_t",60.7046417925204,-1.35927894768415,0.443762415074098,-3.06307812809515,0.00219072855843544,0.00773686367962526 +"Tfru02543_t",225.264133308703,0.476203594430732,0.326993826776777,1.45630759798965,0.145307606080842,0.255498446267226 +"Tfru02544_t",1.07100243613267,3.49410760097205,2.59375302154489,1.34712425275206,0.177940218326354,0.298635327044904 +"Tfru02545_t",54.9807170173348,0.214609900057485,0.334113921812071,0.642325524460475,0.520661844789174,0.656399959800682 +"Tfru02546_t",148.694265115421,0.0392489508469222,0.24328427751406,0.161329582198973,0.871833825197385,0.920925143149926 +"Tfru02547_t",29.9928408622813,-0.194927305877239,0.417307601921361,-0.467107009265487,0.640423319615373,0.758784154428083 +"Tfru02548_t",1096.5181434469,-0.0262496498229146,0.314428549300371,-0.0834836718272632,0.933466960061185,0.960372848166658 +"Tfru02549_t",6.58078677351026,3.59194015109289,1.10308394598129,3.25627089776702,0.00112885990991053,0.00432674855005953 +"Tfru02550_t",743.071476372756,3.57508243529998,0.412534018542605,8.66615181926083,4.4697085581639e-18,1.41088966899447e-16 +"Tfru02551_t",166.351853379245,-0.447016025139476,0.226389337374854,-1.97454540184156,0.0483197602530094,0.105956911078028 +"Tfru02552_t",97.6170450643429,-0.257086026348275,0.216957490268997,-1.18496036264765,0.236033119156188,0.370540208102937 +"Tfru02553_t",493.394109065722,-0.341987788857025,0.142616974156137,-2.39794590286719,0.0164873000132962,0.0434509861396102 +"Tfru02554_t",70.995197531317,-1.07759532747506,0.365234323027272,-2.95042185121959,0.00317340313481857,0.010702345111097 +"Tfru02555_t",277.115232039742,0.114387809450658,0.171271739133422,0.667873228995178,0.504214517372269,0.641665011872591 +"Tfru02556_t",287.962251358866,-0.198529228200269,0.209116037540616,-0.949373517857085,0.342430674266588,0.487855308133225 +"Tfru02557_t",0.291820569502774,-0.0642997256461448,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru02558_t",28.3770275402388,7.25990216382124,1.37699868110471,5.27226515423889,1.34750206575566e-07,1.16887969889968e-06 +"Tfru02559_t",0,NA,NA,NA,NA,NA +"Tfru02560_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02561_t",0,NA,NA,NA,NA,NA +"Tfru02562_t",0,NA,NA,NA,NA,NA +"Tfru02563_t",78.8033253703872,0.836248722128109,0.24505331072991,3.41251754419182,0.000643657836563188,0.00263539377648813 +"Tfru02564_t",43.0065265880088,-0.0236405038526641,0.312067536654257,-0.0757544475984878,0.939614457482619,0.963729218994547 +"Tfru02565_t",0,NA,NA,NA,NA,NA +"Tfru02566_t",57.2663256418268,-0.425346310492192,0.267491092357213,-1.59013261617017,0.111804915389922,0.208082661657085 +"Tfru02567_t",21.3882644603432,-0.699454057156605,0.451383128857148,-1.54957953109046,0.121242469001773,0.221574918851844 +"Tfru02568_t",385.704808457943,-0.0031462642151688,0.168803931621556,-0.0186385718919299,0.985129432253856,0.992451251516989 +"Tfru02569_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02570_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02571_t",0,NA,NA,NA,NA,NA +"Tfru02572_t",160.867341078626,-0.535779092808106,0.198909573735997,-2.69358122258721,0.00706889196798168,0.0213009024159728 +"Tfru02573_t",2.22522385616876,-0.722306966892577,1.20963178291936,-0.597129620014894,0.550420843556103,0.682150941376833 +"Tfru02574_t",56.0415345382814,0.172995905890813,0.377363135791472,0.458433507364136,0.646641023246957,0.763684754631498 +"Tfru02575_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02576_t",198.013206596688,0.334484652399769,0.418654411259793,0.798951697160565,0.424318420763971,0.569524184760566 +"Tfru02577_t",3.88037302210022,2.72151252034862,1.20317235092656,2.26194735795981,0.0237006559185006,0.0586748539221286 +"Tfru02578_t",4.4732825040453,0.997708731945312,0.914187465932998,1.09136120229681,0.275113977155237,0.415175374830358 +"Tfru02579_t",105.337044215596,-0.212110716138011,0.301027246900181,-0.704622981215871,0.481044892966898,0.620363299792507 +"Tfru02580_t",34.8257249117556,0.309216213279791,0.360785928764631,0.85706284149878,0.391410155698261,0.537487846277813 +"Tfru02581_t",1108.65980887133,-3.10126824663705,0.340736330331408,-9.10166592338623,8.89566987713805e-20,3.32918213796571e-18 +"Tfru02582_t",144.465356203771,0.247511810081431,0.252409952356495,0.980594496257635,0.326792749503347,0.472090222946354 +"Tfru02583_t",355.389564723325,0.620767553459449,0.16786705634258,3.6979712814681,0.000217329469785377,0.00100243889814442 +"Tfru02584_t",10.4664036000248,3.23841091996892,0.85522145046941,3.7866343485555,0.000152701550045595,0.00073304605105543 +"Tfru02585_t",70.3932918836405,-0.849398724832072,0.375785014149141,-2.26033155354876,0.0238006810505156,0.0588834006091685 +"Tfru02586_t",0,NA,NA,NA,NA,NA +"Tfru02587_t",43.1649914552818,-0.905157234324419,0.332910692168451,-2.71891908436036,0.00654956279784713,0.0199889834195853 +"Tfru02588_t",3.96531323672075,-0.418963605023069,1.03265125065677,-0.405716455344055,0.684950950093306,0.792043105460793 +"Tfru02589_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru02590_t",235.723579003649,-0.257825464111789,0.308467205947996,-0.835827793490811,0.403251788279893,0.549277042465926 +"Tfru02591_t",0,NA,NA,NA,NA,NA +"Tfru02592_t",79.613939780126,0.343157112256867,0.242175608972118,1.41697635741828,0.156489839965672,0.270673361034991 +"Tfru02593_t",0,NA,NA,NA,NA,NA +"Tfru02594_t",757.487953892576,-1.12522274229125,0.220459619107231,-5.1039856951941,3.32573424034708e-07,2.69771411014743e-06 +"Tfru02595_t",2563.92380827425,1.04578628773602,0.433145107259623,2.41440171020836,0.0157610747706597,0.0418376056656818 +"Tfru02596_t",60.9531412675372,-1.0667965465485,0.299802095025529,-3.55833586305547,0.000373211897821305,0.00162184121810501 +"Tfru02597_t",799.125251698453,-0.25979658257896,0.217899304927357,-1.19227816107798,0.233152194754475,0.36725409055498 +"Tfru02598_t",52.6196057289358,-2.24479831173695,0.341023201280669,-6.58253838245284,4.62483356823703e-11,6.63060699917648e-10 +"Tfru02599_t",109.119933804053,0.247594071527141,0.246018987022685,1.00640228839049,0.314222093284193,0.458697439677793 +"Tfru02600_t",676.342252155465,-1.07728880432789,0.224975562628578,-4.78847031980285,1.68057412780059e-06,1.19022939810688e-05 +"Tfru02601_t",160.673631132168,-0.57941085897366,0.267356141354842,-2.16718739295632,0.0302205682805141,0.0715851310455023 +"Tfru02602_t",294.29065380962,-0.338738642606881,0.19431612060277,-1.74323489763027,0.0812925919680328,0.16128796172381 +"Tfru02603_t",70.2982676023078,0.107224230561071,0.271253863794804,0.395291071843252,0.692628087670749,0.79819858919008 +"Tfru02604_t",184.712682339767,-0.257419327077932,0.25552681821216,-1.00740630231697,0.313739563962595,0.458381736615933 +"Tfru02605_t",41.5873557309036,1.53202369889672,0.374768110618883,4.08792438707438,4.35249959328874e-05,0.00023568579941399 +"Tfru02606_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru02607_t",892.421497148283,0.0693017945666373,0.207698454600271,0.333665431935991,0.738632037356256,0.831434714617896 +"Tfru02608_t",694.642069508029,-0.424093786704362,0.214138777512412,-1.98046235077522,0.0476515998193242,0.104738047923441 +"Tfru02609_t",0.317617804921169,-0.0642991832940792,3.80307376634159,-0.0169071617445729,0.986510679338551,NA +"Tfru02610_t",192.350287076392,-0.401091859010319,0.329653470275836,-1.21670752828632,0.223715513722591,0.355643784423326 +"Tfru02611_t",192.884950180386,1.0673818488004,0.187321759287902,5.69811992401746,1.21135832924401e-08,1.24187812223917e-07 +"Tfru02612_t",0.996254710328826,-0.0440727161714926,1.80191944077524,-0.0244587605717441,0.980486678161731,0.989506306694604 +"Tfru02613_t",1.03728862621183,2.23540768726037,2.03150224896171,1.10037175120179,0.271170181392371,0.410941810642014 +"Tfru02614_t",0.38846724466483,2.01650645726725,4.02011131881812,0.501604631649874,0.615945660739487,NA +"Tfru02615_t",208.020828425667,-0.10453485106452,0.176755705724382,-0.591408637339965,0.554246654489482,0.685268224267975 +"Tfru02616_t",21.8079735856322,-0.874110105394799,0.461779935860799,-1.89291486596398,0.0583691919637771,0.123270974440816 +"Tfru02617_t",0,NA,NA,NA,NA,NA +"Tfru02618_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru02619_t",0,NA,NA,NA,NA,NA +"Tfru02620_t",0,NA,NA,NA,NA,NA +"Tfru02621_t",0,NA,NA,NA,NA,NA +"Tfru02622_t",0,NA,NA,NA,NA,NA +"Tfru02623_t",0,NA,NA,NA,NA,NA +"Tfru02624_t",12.3098589822655,-0.607328353740636,0.770145568451087,-0.78858903903335,0.43035223934057,0.575208021765525 +"Tfru02625_t",0,NA,NA,NA,NA,NA +"Tfru02626_t",0,NA,NA,NA,NA,NA +"Tfru02627_t",0,NA,NA,NA,NA,NA +"Tfru09298_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru11496_t",15.9806250499463,3.32540532483508,0.941673016476953,3.53138007211495,0.00041339727602186,0.00177954049574327 +"Tfru11497_t",0.29973714400522,1.69074106487515,3.82362864481613,0.442182340894261,0.658357263677278,NA +"Tfru09341_t",3.72251159315589,2.26780831274328,1.3557923819937,1.67268111464711,0.0943900889711971,0.181888254793817 +"Tfru09342_t",0,NA,NA,NA,NA,NA +"Tfru02297_t",0,NA,NA,NA,NA,NA +"Tfru09073_t",0,NA,NA,NA,NA,NA +"Tfru09074_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru09075_t",10.7654658169946,2.85852093740596,0.969923041232526,2.94716262619507,0.00320704492142915,0.0108011535502761 +"Tfru11528_t",0,NA,NA,NA,NA,NA +"Tfru11529_t",1.14735410518409,3.62846893968228,2.53213193803236,1.43296993540623,0.151866429343087,0.264146319165173 +"Tfru23631_t",0,NA,NA,NA,NA,NA +"Tfru23632_t",5.7391519736204,4.9313660830303,1.46079694827858,3.37580530192199,0.00073599983025347,0.0029632687469015 +"Tfru05305_t",2.46728460285272,-2.07762224771256,1.32948844716036,-1.56272305498414,0.118117749204517,0.217173470218601 +"Tfru05306_t",0.484403283075242,-0.97736723404593,2.78203855340015,-0.351313332035393,0.725353294090627,NA +"Tfru21971_t",0,NA,NA,NA,NA,NA +"Tfru21972_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru12650_t",2.09041040142854,4.45601321565146,1.78265138905154,2.49965486410794,0.0124314351639425,0.0342672150473007 +"Tfru25097_t",0,NA,NA,NA,NA,NA +"Tfru25098_t",0,NA,NA,NA,NA,NA +"Tfru25099_t",33.1618792538219,-0.734787502712622,0.495693427636396,-1.48234263709384,0.138249148783635,0.245654303277313 +"Tfru25100_t",15.4955202106306,-1.51728054342181,0.661633338437306,-2.29323471970962,0.0218344952640022,0.0548312392289462 +"Tfru23453_t",10.8302128932274,-2.21800669572515,0.707939282410382,-3.1330465067192,0.00173002028048774,0.00630285493644 +"Tfru23012_t",0,NA,NA,NA,NA,NA +"Tfru11277_t",31.7266527820102,4.46014436440164,0.616915290125383,7.22975169491284,4.83877928316814e-13,8.95714477727899e-12 +"Tfru11278_t",0,NA,NA,NA,NA,NA +"Tfru11279_t",0,NA,NA,NA,NA,NA +"Tfru11280_t",0,NA,NA,NA,NA,NA +"Tfru11281_t",0,NA,NA,NA,NA,NA +"Tfru11282_t",0,NA,NA,NA,NA,NA +"Tfru11283_t",0,NA,NA,NA,NA,NA +"Tfru11284_t",528.650242754958,0.646985502214087,0.153131965302809,4.22501925665691,2.3892034703594e-05,0.00013598772550011 +"Tfru11285_t",1217.00289410181,0.607218186928595,0.191333116772271,3.17361780946327,0.00150551789730925,0.00556825161820872 +"Tfru11286_t",287.575227023982,0.500704359382484,0.275435237422644,1.8178660220376,0.0690846126759529,0.14153365357816 +"Tfru11287_t",17.7195694113227,0.599404756314675,0.512065510668955,1.17056264057234,0.241774621557478,0.377286776155094 +"Tfru11288_t",6.45003033050869,0.89191417465619,0.897394843039415,0.993892690128838,0.320275113518157,0.465118909437855 +"Tfru11289_t",356.527243532484,-0.543957492096376,0.171028459678759,-3.18050863065765,0.00147016759903124,0.00545644292973785 +"Tfru11290_t",182.741277390317,-0.107175045145395,0.197394687101553,-0.542947972506761,0.587165624731933,0.71436622351186 +"Tfru11291_t",480.779311041525,-0.416374050775099,0.153155367819248,-2.71863831286997,0.00655512431532883,0.0199977756511804 +"Tfru11292_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru11293_t",122.241023518843,-0.734172339173542,0.263856825456429,-2.7824648382832,0.00539477106559254,0.0169367805533214 +"Tfru11294_t",181.991176560606,-0.427982836767021,0.245465832937226,-1.74355360029463,0.0812369601400171,0.161248504341446 +"Tfru11295_t",612.894645801853,-0.143882547803759,0.209495085031179,-0.68680631711405,0.492204788444378,0.630504445388655 +"Tfru11296_t",71.9835915513092,-0.33831952859802,0.318862602704244,-1.06101978008322,0.288680912067214,0.430367626702921 +"Tfru11297_t",5159.11296821893,1.35032455781077,0.42524314861152,3.17541755162846,0.00149621033415092,0.00554023614796451 +"Tfru11298_t",0,NA,NA,NA,NA,NA +"Tfru11299_t",0,NA,NA,NA,NA,NA +"Tfru11300_t",112.56554347591,-0.585596912605233,0.249421686137775,-2.34781875494885,0.0188837076616775,0.0487391739670561 +"Tfru11301_t",21.8563631620994,0.77366217452814,0.513897016545269,1.50548096139801,0.132200468001843,0.237147040227737 +"Tfru11302_t",625.663226592422,-0.597726307814771,0.331057555353687,-1.80550571388164,0.0709955821979325,0.144759578133175 +"Tfru11303_t",134.516020744775,0.580592283270325,0.286912298211773,2.02358799845444,0.0430125609202945,0.0961563393663161 +"Tfru11304_t",153.397144716931,0.631027052613206,0.212770454876835,2.96576445718689,0.00301931633974283,0.0102599908417013 +"Tfru11305_t",1257.63407429388,0.420574484767079,0.173750956220966,2.42055925282056,0.0154966535376001,0.0412678612769502 +"Tfru11306_t",75.3369364927145,-0.103485166353373,0.313645790586081,-0.329942787244169,0.741443192562486,0.833509074218829 +"Tfru11307_t",42.503025424506,-0.684990279263546,0.464794271827672,-1.47374940007332,0.140549076688198,0.248714188051068 +"Tfru11308_t",157.343447745612,0.170214250608365,0.210591204078384,0.808268566359542,0.418935993731624,0.564398479395241 +"Tfru11309_t",17.5697971872875,0.383550918732902,0.602067667144586,0.637056164387569,0.524088260397148,0.659308334327609 +"Tfru11310_t",142.761535475908,-2.06393775657354,0.315781709406896,-6.53596359475681,6.32012888579268e-11,8.92394223747888e-10 +"Tfru11311_t",381.305734556073,-0.211077943707088,0.159191069071193,-1.32594086426224,0.184859285932819,0.307434853175038 +"Tfru11312_t",53.3066217188628,-0.94023736658528,0.306213278826172,-3.07053100436909,0.00213678499974496,0.00756985341951413 +"Tfru11313_t",29.3916239708729,0.402296410747972,0.392526150250247,1.02489072509308,0.305414751417869,0.44891515412662 +"Tfru11314_t",2.51984065239818,-3.73821003416918,1.58025890128511,-2.36556809212032,0.0180024324790234,0.0467720500209594 +"Tfru11315_t",4.21848075878852,-3.55188920376898,1.29252501728781,-2.74802356338305,0.00599557000969254,0.0185409502303329 +"Tfru11316_t",93.7523139439459,-0.781498063943901,0.267443003192724,-2.92211070999955,0.00347667935721699,0.0115716960164361 +"Tfru11317_t",0,NA,NA,NA,NA,NA +"Tfru11318_t",20.162453357284,-0.161003308281831,0.426146469296849,-0.37781213709805,0.705570156764546,0.80836241092933 +"Tfru11319_t",1218.14327140094,-0.227539484895498,0.185574775714376,-1.22613369203642,0.220148368867306,0.351195416298404 +"Tfru11320_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru11321_t",0,NA,NA,NA,NA,NA +"Tfru12730_t",0,NA,NA,NA,NA,NA +"Tfru04663_t",0,NA,NA,NA,NA,NA +"Tfru04664_t",0,NA,NA,NA,NA,NA +"Tfru04665_t",0,NA,NA,NA,NA,NA +"Tfru04666_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00516_t",2.99089637623966,5.00227644349134,2.20995572610619,2.26351884990251,0.0236037239622338,0.0584795019216402 +"Tfru00517_t",1.28999325667971,3.79374326931156,2.58197265429467,1.46931969360765,0.141746097676141,0.250515491273161 +"Tfru00518_t",3.20846699279715,4.07488199648649,1.70783065136947,2.38599886541382,0.0170328036097399,0.0446676991781087 +"Tfru00519_t",0.29973714400522,1.69074106487515,3.82362864481613,0.44218234089426,0.658357263677278,NA +"Tfru00520_t",143.280230772747,0.906984528170985,0.496666690005938,1.82614325949691,0.0678286854987713,0.139407290059923 +"Tfru00521_t",1.318999448107,2.67739578478776,2.25572286976857,1.18693471643636,0.235253372272985,0.369705109997149 +"Tfru00522_t",38.8566696225147,4.50153671376662,0.845099477454104,5.32663530609163,1.00048758076646e-07,8.8782363432012e-07 +"Tfru00523_t",0,NA,NA,NA,NA,NA +"Tfru00524_t",198.792128558202,0.643926131453568,0.236174688533363,2.72648239933046,0.0064013366506448,0.0196302979229146 +"Tfru00525_t",21.1999240163768,0.776118101980438,0.539290364527473,1.43914698468695,0.150108882354093,0.261835852165749 +"Tfru00526_t",737.216134463577,0.321386749549447,0.148707802408357,2.16119628119382,0.0306801805675042,0.0724743974140536 +"Tfru00527_t",418.630672321812,-0.974154121897593,0.156657582660133,-6.21836559300809,5.02359994529657e-10,6.26340761981823e-09 +"Tfru00528_t",9.42851850527267,3.38180934556855,0.963377516977083,3.5103677280949,0.000447487379988951,0.00190975735395742 +"Tfru00529_t",423.199054613453,-0.847994036721976,0.173055330948453,-4.90013241472789,9.57720854033353e-07,7.10669519670638e-06 +"Tfru00530_t",65.5480406310214,0.371675535195338,0.328227787560261,1.13237071717184,0.2574786105602,0.394872288380543 +"Tfru00531_t",691.002976375903,0.388243126831273,0.401942201285422,0.965917800095786,0.33408531460151,0.479776010060433 +"Tfru00532_t",0,NA,NA,NA,NA,NA +"Tfru00533_t",22.9130312552394,-0.507595967101032,0.432325761289148,-1.17410529871603,0.240352851366852,0.375451721476243 +"Tfru00534_t",54.2140325732092,-0.724970989666094,0.296141143181973,-2.4480589960464,0.014362813585261,0.0387323494442873 +"Tfru00535_t",9.58931145275376,0.306654025623453,0.80939256736727,0.3788693373117,0.704784894987954,0.807799137039354 +"Tfru00536_t",457.533029696946,-0.00207677554834425,0.233042377824924,-0.00891157894854838,0.992889682857143,0.996585688762742 +"Tfru00537_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru00538_t",358.456584288508,0.373906038198418,0.149878782623499,2.49472294646056,0.012605551018099,0.0346958838746839 +"Tfru00539_t",199.062177060984,1.59419609791745,0.253271042865292,6.29442702917031,3.08537374035907e-10,3.96842898328942e-09 +"Tfru00540_t",4.03442672412815,-0.178018439853585,1.11158335285585,-0.160148529929155,0.872764073128143,0.921387771054854 +"Tfru00541_t",7.09901605095375,1.44029539085776,0.821186489558812,1.75391997940878,0.0794442196047008,0.158252036916173 +"Tfru00542_t",9.7421868534041,-0.197648347687931,0.687671271831828,-0.287416903663043,0.773793119723577,0.856157117684959 +"Tfru00543_t",163.360872466333,-0.753971160822408,0.193283152126485,-3.90086333199391,9.58502536402552e-05,0.000480539578062032 +"Tfru00544_t",4.00995714979157,-0.428416883033487,1.04813141433089,-0.408743481185497,0.682727920888767,0.790616313230395 +"Tfru00545_t",29.2973717272741,-0.107137895131528,0.364768748749799,-0.293714567102392,0.768976022104273,0.853062524769189 +"Tfru00546_t",65.8666986480527,0.433560071572491,0.252855131382802,1.71465799092729,0.0864079498331853,0.169513492046519 +"Tfru00547_t",0,NA,NA,NA,NA,NA +"Tfru00548_t",0,NA,NA,NA,NA,NA +"Tfru00549_t",47.6948021223373,0.69216960215154,0.298530666346006,2.31858793812926,0.0204173897504004,0.0518956482241864 +"Tfru00550_t",148.050471913708,0.728492002619462,0.238427669914657,3.05540041925595,0.0022476022666612,0.00791848036820633 +"Tfru00551_t",1246.93301188505,-0.0181036977511987,0.238177815077464,-0.0760091688023537,0.939411803653296,0.963698027400108 +"Tfru00552_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru00553_t",1.10340914076158,1.29638122969356,1.89922181264295,0.682585478464739,0.494868812698904,0.632938851766 +"Tfru00554_t",92.3519960016371,1.50511778801811,0.237981150573954,6.32452521717846,2.54012370190005e-10,3.29362505495499e-09 +"Tfru00555_t",351.119267303018,-0.66896439721012,0.199828887071614,-3.34768614795107,0.000814892403139866,0.0032439153294682 +"Tfru00556_t",239.122937501725,-0.934942362677268,0.190852118606601,-4.89877906257065,9.64340039278176e-07,7.15344053001179e-06 +"Tfru00557_t",382.815317854033,0.0244839611311525,0.148787432479042,0.164556647851299,0.869292955931489,0.919325978345464 +"Tfru00558_t",10.5254456621423,3.86358380175597,0.940592945802858,4.1076044839547,3.99783942223315e-05,0.000217904642643882 +"Tfru00559_t",75.1485385041196,0.469492930701641,0.264821082472858,1.77286840729443,0.0762505147733325,0.153392046797949 +"Tfru00560_t",6.43974834864478,-0.576671316155387,0.819045282978857,-0.704077452296704,0.481384540986564,0.620729778017936 +"Tfru00561_t",18.0543480179615,-0.116892577413416,0.460255012733041,-0.253973502035961,0.799516029358717,0.87296525038045 +"Tfru00562_t",186.496211488903,-0.557774828815809,0.190594790908187,-2.92649566212173,0.00342804286481893,0.011438735547137 +"Tfru00563_t",0,NA,NA,NA,NA,NA +"Tfru00564_t",411.150595855665,-0.0756573108537965,0.143671620915411,-0.526598853494812,0.5984721883291,0.723950466180491 +"Tfru00565_t",53.8448547858074,-0.103243629896838,0.401693750630742,-0.25702075208968,0.797162753224613,0.871629002206705 +"Tfru00566_t",101.87887095033,-0.600035681429319,0.319590703441935,-1.87751294066768,0.0604478254114514,0.126965962713119 +"Tfru00567_t",185.983187035345,-0.25946447453638,0.190649272214169,-1.36095182280532,0.173528914878913,0.293122282058275 +"Tfru00568_t",0.554443390385536,1.03861455020554,3.28367491578666,0.316296398651485,0.751777544413166,NA +"Tfru00569_t",190.945162564191,-0.152325583830152,0.184109714278568,-0.827363099372778,0.408031289115033,0.554244977567033 +"Tfru00570_t",149.366796814369,-0.199502468203192,0.20518120794193,-0.972323295121913,0.330889738307374,0.476655016948959 +"Tfru00571_t",91.9470939224814,0.774810462781033,0.249618745408908,3.10397547071952,0.00190939160476948,0.00686460788991823 +"Tfru00572_t",984.590907330711,-2.12194112894189,0.446700240476865,-4.75025741350992,2.03157874127529e-06,1.4208353821794e-05 +"Tfru00573_t",180.759503122633,-1.17995641393285,0.262086065013792,-4.50217150564932,6.72626679978015e-06,4.25717904352601e-05 +"Tfru00574_t",139.875838170629,-1.907761826016,0.256973067100236,-7.42397577903309,1.13655953103861e-13,2.26906354189511e-12 +"Tfru00575_t",228.881587967963,-0.123074403325756,0.179721526232267,-0.684806132609281,0.493466264992834,0.631542003233238 +"Tfru00576_t",95.8687980745343,0.101599237598022,0.258981083176956,0.392303701690061,0.6948338288656,0.799957872833588 +"Tfru00577_t",84.1006590033319,0.114363102593105,0.242572498343635,0.471459474482943,0.637312652989,0.756179470570131 +"Tfru00578_t",0,NA,NA,NA,NA,NA +"Tfru00579_t",224.90216537487,-1.86916314578102,0.310195389569663,-6.02576056457231,1.68316208002597e-09,1.95480889211112e-08 +"Tfru00580_t",31.478002832856,-0.460393063866586,0.406609496298929,-1.13227326970277,0.257519564399145,0.39490803420946 +"Tfru00581_t",88.6839153012289,-1.35500365440519,0.284646584740887,-4.76030181650922,1.9330366762643e-06,1.35615551143558e-05 +"Tfru00582_t",405.287016497846,-0.707157858223467,0.255898748080937,-2.76342836190743,0.0057197646528737,0.0178086161562762 +"Tfru00583_t",142.472391830528,-0.615473814332001,0.232983158094749,-2.6417094667491,0.00824887818930334,0.0243451066459062 +"Tfru00584_t",49.0968634739446,1.2579068341901,0.344204372397329,3.6545347330395,0.000257648783645022,0.0011665344483058 +"Tfru00585_t",0,NA,NA,NA,NA,NA +"Tfru00586_t",1.12095258329072,-0.484036523260755,1.93021490833475,-0.250768202634154,0.801993326803806,0.874432946208184 +"Tfru00587_t",0.510200518493637,-0.977089842999089,2.74627972705618,-0.355786715159734,0.722000298737399,NA +"Tfru00588_t",0,NA,NA,NA,NA,NA +"Tfru00589_t",68.5631607177797,0.315217127612781,0.283040604780579,1.11368164951862,0.265415784457076,0.404549331680618 +"Tfru00590_t",483.640711801813,-0.353540130998833,0.135779901457801,-2.60377366018864,0.009220362541634,0.0267087385039825 +"Tfru00591_t",46.7944780387546,-1.4616460979337,0.329183421744069,-4.44021782807181,8.98678675737116e-06,5.56052771993272e-05 +"Tfru00592_t",21.2038763151111,-1.50161600233496,0.498703087232089,-3.01104212261701,0.00260352732856318,0.00901685880737296 +"Tfru00593_t",0.524535005013881,-2.53832154473351,3.20745160642307,-0.791382647722699,0.428720732702308,NA +"Tfru00594_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru00595_t",4.41999122844993,0.891823897084956,0.994126283112614,0.897093168377614,0.369669203813111,0.516139339483191 +"Tfru00596_t",50.8372634468759,-0.224848579719219,0.379789145155893,-0.592035297972841,0.553826951903451,0.684862812664341 +"Tfru00597_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru00598_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru00599_t",28.0479139683864,0.153425484826817,0.386744428654698,0.396710265123952,0.691581129572965,0.797197305168321 +"Tfru00600_t",1.21108848492398,-0.521972307856375,1.70362614114665,-0.306388998882733,0.759308483488533,0.846058989882276 +"Tfru00601_t",162.78800264182,-0.254553148269162,0.193589935635459,-1.31490899789594,0.188540488360579,0.312072785260688 +"Tfru13195_t",196.93948256675,-0.162731821573987,0.216404217664647,-0.751980822417085,0.452062591711973,0.595442340210343 +"Tfru12934_t",1181.15522569352,-0.424457623289463,0.13004808458259,-3.26385140274711,0.00109908793699954,0.00422929642882562 +"Tfru12935_t",252.464542744719,0.850791495288006,0.238148856735631,3.57251975487109,0.000353562802179168,0.00154575806070908 +"Tfru02113_t",0,NA,NA,NA,NA,NA +"Tfru11200_t",0,NA,NA,NA,NA,NA +"Tfru11201_t",777.752423099568,1.02409486752278,0.144398225032055,7.0921568966339,1.32037691752648e-12,2.27307964724943e-11 +"Tfru19805_t",0,NA,NA,NA,NA,NA +"Tfru09708_t",0,NA,NA,NA,NA,NA +"Tfru09684_t",29.3248785167494,0.355524454791008,0.37623492525198,0.94495335475009,0.344682690398246,0.490275747496678 +"Tfru09685_t",753.793475712517,-0.608758462867755,0.144587025835,-4.21032564541758,2.55002857599825e-05,0.000144333939127064 +"Tfru09686_t",62.6877910004013,-1.11457682144666,0.282197035157911,-3.9496404376572,7.8268678317291e-05,0.000399647050134833 +"Tfru31234_t",0,NA,NA,NA,NA,NA +"Tfru06222_t",0,NA,NA,NA,NA,NA +"Tfru19812_t",26.9755180730352,0.982142249772137,0.500261466465884,1.96325784736234,0.0496162207539693,0.108163941211166 +"Tfru19813_t",18.6631558876587,1.07298252945656,0.520518635038952,2.06137198022943,0.0392675658894941,0.0889473787123584 +"Tfru12724_t",0,NA,NA,NA,NA,NA +"Tfru12725_t",191.297508013241,-0.434476499160474,0.246069426025808,-1.76566632505944,0.0774518455567066,0.155236638326983 +"Tfru12726_t",376.671082131901,-0.498318947091011,0.16341590377589,-3.04939076048809,0.00229306009257687,0.00805757338230025 +"Tfru25197_t",0,NA,NA,NA,NA,NA +"Tfru12301_t",0,NA,NA,NA,NA,NA +"Tfru03915_t",760.335021338824,0.164838452693896,0.12860639126333,1.28172831128103,0.199937969861933,0.326161656499021 +"Tfru23862_t",189.609529840663,0.636501356865918,0.282388417527915,2.2539924350934,0.0241966438879522,0.0596664198688057 +"Tfru25400_t",428.655394240962,-0.0283852886468632,0.160333162962867,-0.177039410452079,0.85947743342712,0.912825975328311 +"Tfru25401_t",588.753938611559,0.488276827374546,0.197497061487576,2.47232451813093,0.0134237599134847,0.0365879608895125 +"Tfru25402_t",0,NA,NA,NA,NA,NA +"Tfru25403_t",83.3796475718717,-0.407411945972891,0.307403966119585,-1.32533080531043,0.185061455961738,0.307656766039497 +"Tfru20138_t",0,NA,NA,NA,NA,NA +"Tfru26380_t",0,NA,NA,NA,NA,NA +"Tfru08094_t",414.57400452456,-0.242302596881207,0.164030666218286,-1.4771786426738,0.139627757185582,0.247416405844285 +"Tfru08095_t",1.46838591207255,-1.08358750574415,1.5650447736049,-0.69236837438729,0.488706021269869,0.627408985933575 +"Tfru08096_t",459.91894860379,-0.17079439783295,0.198617873047066,-0.859914544510691,0.389836150418905,0.536135503372156 +"Tfru18385_t",0,NA,NA,NA,NA,NA +"Tfru06022_t",173.574562981362,-0.0696077917008636,0.198342117857921,-0.350948111538902,0.725627276395009,0.822671346019045 +"Tfru27412_t",256.192707738807,0.159785000636748,0.177973546408413,0.897801970356167,0.369291134039786,0.515804504762555 +"Tfru27413_t",5.13169192464457,0.761967019583947,0.817414939642361,0.932166740085918,0.351250361197949,0.497090115316182 +"Tfru15834_t",0,NA,NA,NA,NA,NA +"Tfru06258_t",1049.40568042361,-0.21597750224398,0.156821995523667,-1.37721434753319,0.168445987253239,0.286177878594662 +"Tfru06259_t",2.31034839766836,1.70427498456707,1.47315658999377,1.15688650897206,0.24731873131681,0.383290733973921 +"Tfru31375_t",5.54963869926765,-0.802670128485311,0.874088336766773,-0.918294061049211,0.358464935689601,0.504592421404069 +"Tfru02638_t",0,NA,NA,NA,NA,NA +"Tfru14767_t",161.498142105396,-0.756285400326096,0.276171885448366,-2.73845905457851,0.00617278464151,0.0190180231658857 +"Tfru14768_t",411.672898115457,-0.495051645387147,0.15005039293894,-3.29923591462103,0.000969483985531694,0.00378921613625556 +"Tfru12438_t",148.12392946087,0.320260447134549,0.274894142543026,1.16503190708919,0.244006077627117,0.379384189057586 +"Tfru05101_t",0,NA,NA,NA,NA,NA +"Tfru00609_t",0,NA,NA,NA,NA,NA +"Tfru27751_t",234.290245585681,-0.00065087081097675,0.179646487633905,-0.0036230644948825,0.997109219101094,0.998302791446242 +"Tfru27752_t",1.10415785557716,-0.470549452645152,1.88130443106569,-0.250118718095296,0.802495540992101,0.874734300456158 +"Tfru00324_t",144.589626302928,0.662581528870028,0.22278748327011,2.97405185939781,0.00293895400225321,0.0100266915953067 +"Tfru00325_t",104.006719302866,0.996694309142157,0.245855594606944,4.05398262640962,5.03529576161145e-05,0.000267672016971174 +"Tfru27929_t",0,NA,NA,NA,NA,NA +"Tfru21981_t",0,NA,NA,NA,NA,NA +"Tfru27247_t",0,NA,NA,NA,NA,NA +"Tfru08059_t",1806.53624456203,0.161341278059533,0.371527647665039,0.43426452667392,0.664096360404396,0.776960455112676 +"Tfru08060_t",13.8255134649238,-0.1271377096869,0.578121075133126,-0.219915369211586,0.825937066411331,0.890174406274288 +"Tfru02745_t",578.308669338918,0.111957236690414,0.158460725663895,0.70652987496651,0.479858680852734,0.619368895408282 +"Tfru02746_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08066_t",0,NA,NA,NA,NA,NA +"Tfru12740_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20497_t",29.1527206019251,0.0683742334529433,0.368288450767705,0.1856540255618,0.852716083705703,0.908362413886127 +"Tfru20498_t",77.4551243611761,-0.0773172139481779,0.233619584113654,-0.330953478243347,0.74067962610908,0.832957545364375 +"Tfru08604_t",0,NA,NA,NA,NA,NA +"Tfru21607_t",211.692910979682,0.961046753479545,0.185686342986408,5.17564586615771,2.27123902277369e-07,1.89171303794846e-06 +"Tfru19821_t",0.493970766337634,2.38669093429237,2.66533987864144,0.895454629789615,0.370544108711532,NA +"Tfru19822_t",51.880744485888,0.80578345483339,0.30542484039679,2.63823811379115,0.00833380421030032,0.0245279508451501 +"Tfru04944_t",0,NA,NA,NA,NA,NA +"Tfru04945_t",0.525437198958242,2.46470302181811,3.2184532812315,0.765803572850068,0.443793187997663,NA +"Tfru11567_t",0,NA,NA,NA,NA,NA +"Tfru20091_t",274.138355909906,-0.400490914423256,0.17120993215068,-2.3391803816077,0.0193260999745083,0.0496405506059331 +"Tfru21922_t",57.619271574616,2.84539892238678,0.501070072626486,5.67864472023225,1.35766138982462e-08,1.38173996836175e-07 +"Tfru07996_t",1385.96771945842,-0.292450975971372,0.241282781982373,-1.21206732435942,0.225486610455289,0.357646374343682 +"Tfru07997_t",0,NA,NA,NA,NA,NA +"Tfru01816_t",6.94421568385466,2.28471369673879,0.888115323876221,2.57254169060731,0.0100954796108065,0.0288479103281219 +"Tfru06433_t",86.4251827124535,-0.296201425673997,0.243555074646945,-1.21615788996952,0.223924781537262,0.355925895653688 +"Tfru06434_t",39.2482312110142,-0.724669405193928,0.322651942329216,-2.24597874713711,0.0247053692415453,0.0606655874068228 +"Tfru07995_t",1020.51208013112,0.579603452665901,0.239720553821503,2.41782960795876,0.0156133861669297,0.0415243710535814 +"Tfru10654_t",127.922819563951,0.00944505310580652,0.221345582666631,0.0426710711459363,0.965963740438504,0.980613775276199 +"Tfru30235_t",0,NA,NA,NA,NA,NA +"Tfru17332_t",0,NA,NA,NA,NA,NA +"Tfru17059_t",1213.10309057501,-0.189106866648833,0.170827317048028,-1.10700601002628,0.268291329893803,0.407768908447917 +"Tfru27894_t",132.750613664011,-0.264849764794005,0.214911651627689,-1.23236577816092,0.217812478465199,0.348437688924314 +"Tfru27895_t",0,NA,NA,NA,NA,NA +"Tfru27896_t",2.99555471045863,-1.3488140794567,1.17785589278995,-1.14514355084798,0.252149697407974,0.388617190826421 +"Tfru27897_t",0.623024146128601,1.36302459213384,2.57743273281015,0.528830325921927,0.596923158524619,NA +"Tfru27898_t",106.45508979725,-0.610642779115274,0.222342472868314,-2.74640634889824,0.00602520852912941,0.0186223127857915 +"Tfru27899_t",1.33291462026379,0.674799959560084,1.54362513682708,0.437152740947931,0.662000580461529,0.775167982462613 +"Tfru11170_t",471.281509578327,0.237215328119927,0.159697300510519,1.48540599848338,0.137436307630256,0.244598374931621 +"Tfru24001_t",259.933492721143,-0.12620637338443,0.207945203579816,-0.606921300476102,0.543903141518654,0.676290477648062 +"Tfru24002_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru24964_t",331.783535204339,0.822382659573162,0.19609269724473,4.19384643654936,2.74263686876002e-05,0.000154066800007152 +"Tfru25001_t",0.579399049477351,-1.10226168612306,3.22877046550942,-0.341387440791382,0.732811928631243,NA +"Tfru04639_t",0,NA,NA,NA,NA,NA +"Tfru26812_t",18.7952829813575,-0.0681131257377115,0.454057178810376,-0.150010018377348,0.880756711179868,0.926768234066684 +"Tfru18462_t",21.8716464697113,0.202865233010252,0.427638303070261,0.474385085605676,0.635225326576256,0.754502855789014 +"Tfru18463_t",376.206366329017,-0.0323775696248324,0.155532116762996,-0.208172886080952,0.835093978589104,0.897062649554773 +"Tfru18464_t",1.12160966944879,1.02928979031137,2.20871464612858,0.466013023509172,0.641206178493111,0.759470456452809 +"Tfru12179_t",5.92448349867587,0.974052462116115,0.81043991419578,1.20188115744853,0.229409575777839,0.362583778665822 +"Tfru12180_t",0,NA,NA,NA,NA,NA +"Tfru12181_t",0,NA,NA,NA,NA,NA +"Tfru30211_t",2.81282266599879,-1.77588760634264,1.14931404940118,-1.5451717546374,0.122304724464619,0.223024503668065 +"Tfru30212_t",480.61501598743,-0.571827320750891,0.230444310398915,-2.48141218917933,0.0130862949003748,0.03581209095994 +"Tfru03799_t",355.023964979764,0.514931740555474,0.148952959598325,3.45700912519005,0.000546206352921981,0.00227516063741234 +"Tfru21583_t",0,NA,NA,NA,NA,NA +"Tfru21584_t",0,NA,NA,NA,NA,NA +"Tfru14671_t",0,NA,NA,NA,NA,NA +"Tfru21892_t",6.36478974271182,0.496033721407464,0.787371741776205,0.629986695088242,0.528703289218622,0.663621963696734 +"Tfru21710_t",227.395030437898,-1.62207754441463,0.254521671052026,-6.3730429621573,1.85313944956366e-10,2.45113834995477e-09 +"Tfru31219_t",0,NA,NA,NA,NA,NA +"Tfru31220_t",0,NA,NA,NA,NA,NA +"Tfru14928_t",0,NA,NA,NA,NA,NA +"Tfru14929_t",0,NA,NA,NA,NA,NA +"Tfru16856_t",7.14859277974696,0.564345548214853,0.696688257565636,0.810040275670479,0.417917028170784,0.563670408633891 +"Tfru00948_t",4.32961803696506,1.692227902641,0.972494671110509,1.74008964050015,0.0818432790177429,0.162035791261243 +"Tfru20867_t",0,NA,NA,NA,NA,NA +"Tfru01639_t",0,NA,NA,NA,NA,NA +"Tfru01640_t",0,NA,NA,NA,NA,NA +"Tfru01641_t",0,NA,NA,NA,NA,NA +"Tfru20631_t",0,NA,NA,NA,NA,NA +"Tfru08686_t",120.818660787438,0.226272054801413,0.230590535396221,0.981272082189375,0.326458586145451,0.471759744168347 +"Tfru08687_t",0,NA,NA,NA,NA,NA +"Tfru17319_t",739.556813075967,-0.498039633530566,0.171226037473444,-2.90866763536362,0.00362972519311607,0.0120025487325558 +"Tfru17320_t",5.46691255685918,-0.552530967577725,0.851349156746098,-0.649006301585506,0.516334303088697,0.652598503593214 +"Tfru04093_t",249.120645578221,-0.343863192453885,0.182486679037989,-1.88431941589721,0.0595217826714573,0.125338936521435 +"Tfru26905_t",207.789454308236,0.258114160956577,0.265046719675254,0.97384401237951,0.330133996248361,0.47581400937617 +"Tfru01235_t",0,NA,NA,NA,NA,NA +"Tfru00105_t",0,NA,NA,NA,NA,NA +"Tfru00841_t",0,NA,NA,NA,NA,NA +"Tfru20152_t",0,NA,NA,NA,NA,NA +"Tfru20153_t",62.157145008606,-0.124412621101982,0.285042210119936,-0.436470868821965,0.662495130579592,0.775451936316489 +"Tfru20154_t",18.150536729763,-0.351270446215692,0.56560516624941,-0.621052400466929,0.53456514635231,0.668691966651652 +"Tfru19258_t",96.7039002696039,-0.550837952374591,0.236515532104739,-2.32897157946759,0.0198605713647086,0.0507628582848537 +"Tfru19259_t",0.540016042354298,-2.5733422930138,3.1860120825779,-0.807700104806769,0.41926324326571,NA +"Tfru08297_t",0,NA,NA,NA,NA,NA +"Tfru04775_t",0,NA,NA,NA,NA,NA +"Tfru02386_t",3.99715432055967,1.92409177347866,1.08551369897919,1.7725172655933,0.0763087318404434,0.153467776652509 +"Tfru02387_t",4.06186828322529,0.749527634730312,0.961342690112656,0.779667482198755,0.435586623874635,0.58041658482887 +"Tfru02388_t",66.0723095546232,0.0401693707245274,0.297110376710763,0.135200160860192,0.892453619913934,0.934065005549915 +"Tfru02389_t",11.8354386266474,-0.389412416182707,0.54337092802014,-0.716660380785542,0.473583677788762,0.614177226232131 +"Tfru02390_t",0,NA,NA,NA,NA,NA +"Tfru00660_t",70.0861190829829,-0.500608337233981,0.247681273754509,-2.02117959765567,0.0432611769154901,0.0966252634100468 +"Tfru30026_t",209.19124473281,-0.371294951854616,0.215502772015373,-1.72292425003299,0.0849022243737025,0.167145652839854 +"Tfru30027_t",0,NA,NA,NA,NA,NA +"Tfru30028_t",55.4750428430098,-0.406518066567102,0.295271091629564,-1.37676216226783,0.168585792771685,0.286328454293869 +"Tfru21878_t",375.920782317042,0.211060381589072,0.200780290168638,1.05120070008764,0.29316642171266,0.435719519054943 +"Tfru08670_t",0,NA,NA,NA,NA,NA +"Tfru30249_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru30250_t",0,NA,NA,NA,NA,NA +"Tfru28127_t",0.515060383262483,-0.899262580644207,2.72757051753078,-0.329693613735895,0.741631479694669,NA +"Tfru23686_t",0,NA,NA,NA,NA,NA +"Tfru07819_t",0,NA,NA,NA,NA,NA +"Tfru07820_t",283.889168639292,-0.305138681807427,0.173610281542429,-1.75760720561273,0.0788143664660895,0.157179248040553 +"Tfru00153_t",645.385505836971,0.467264075464189,0.186117837030933,2.51058191368584,0.0120532354390185,0.0334140231791444 +"Tfru12594_t",366.649434395,0.952000850536647,0.30455851665526,3.12583887323778,0.00177298665645258,0.00644460636209335 +"Tfru04863_t",214.258411469623,-0.708242114392187,0.191006718876188,-3.70794346167096,0.000208949291528323,0.000970384964599267 +"Tfru04864_t",39.557060596608,-0.91214029563253,0.34504142907037,-2.64356746402908,0.00820374152219686,0.0242439898675248 +"Tfru04865_t",0,NA,NA,NA,NA,NA +"Tfru04866_t",237.834314698867,-0.357029956508468,0.174123154425643,-2.05044502947442,0.0403210228438546,0.0909295134265887 +"Tfru18206_t",0,NA,NA,NA,NA,NA +"Tfru05344_t",1461.65071488363,-0.10367511751131,0.160061523374289,-0.647720422283346,0.517165792968897,0.653501803774147 +"Tfru05345_t",0,NA,NA,NA,NA,NA +"Tfru03829_t",0,NA,NA,NA,NA,NA +"Tfru05677_t",0,NA,NA,NA,NA,NA +"Tfru19559_t",0,NA,NA,NA,NA,NA +"Tfru04662_t",0,NA,NA,NA,NA,NA +"Tfru12729_t",436.416078106335,0.50233336459944,0.158889023085123,3.16153598811115,0.00156939424318002,0.00577776660015939 +"Tfru29886_t",0,NA,NA,NA,NA,NA +"Tfru27891_t",132.519244385688,-1.92121164346167,0.370662050799735,-5.18318948302502,2.18123237176312e-07,1.82149180895741e-06 +"Tfru30475_t",0,NA,NA,NA,NA,NA +"Tfru30993_t",0,NA,NA,NA,NA,NA +"Tfru30994_t",2.36189006882205,3.56878705336953,1.60850907271976,2.21869252334101,0.0265076500330752,0.0643149618105186 +"Tfru30477_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru16810_t",4819.72468735534,-5.26391211108487,0.300718154674031,-17.504470645581,1.32452636756446e-68,8.23413891835907e-66 +"Tfru16811_t",2035.16625091326,-5.2514975546251,0.217440240942714,-24.151452058079,7.20889559748105e-129,3.22670166943252e-125 +"Tfru22012_t",0,NA,NA,NA,NA,NA +"Tfru14386_t",170.497762755111,0.433051308327489,0.204349449893427,2.11917041398122,0.03407606766975,0.0791274318368708 +"Tfru17077_t",26.5966984436073,1.33921498366123,0.50716126374992,2.64060976139849,0.00827569809749677,0.0244082924910356 +"Tfru17078_t",122.895734074663,1.13815383414557,0.280047921383773,4.06413955340829,4.82099764714564e-05,0.000257626378565233 +"Tfru17079_t",0.833487520617018,-0.62625261145299,2.11748847657531,-0.295752547596316,0.767419064103571,0.851818856981514 +"Tfru10655_t",12.3002265293239,0.179889056940562,0.688091474545388,0.261431893280486,0.793759464699975,0.869479556555501 +"Tfru10656_t",755.443445030989,-0.208173499029694,0.210212356402265,-0.990300963238002,0.322027035914251,0.467052596578274 +"Tfru11684_t",0,NA,NA,NA,NA,NA +"Tfru11685_t",0,NA,NA,NA,NA,NA +"Tfru22375_t",1.44819848909206,2.81752289777863,1.82839368051597,1.54098262743039,0.123321014175363,0.224566663730237 +"Tfru22376_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru22377_t",67.8941807293183,-1.49991781929886,0.266522586127538,-5.62773249761696,1.82593961246348e-08,1.82512409678128e-07 +"Tfru21100_t",0,NA,NA,NA,NA,NA +"Tfru18310_t",19.865030793278,-0.20108984934875,0.456180158544185,-0.440812353589624,0.659348849381002,0.773589895105994 +"Tfru18311_t",76.400240138108,-0.458554765147329,0.252486287551762,-1.81615710537675,0.0693462759158659,0.142030717946104 +"Tfru18312_t",93.048985904674,-0.224789677137699,0.228466593773316,-0.983906108219633,0.325161680106178,0.470189209845336 +"Tfru18313_t",0,NA,NA,NA,NA,NA +"Tfru13196_t",0,NA,NA,NA,NA,NA +"Tfru13197_t",0,NA,NA,NA,NA,NA +"Tfru13198_t",745.00247363472,0.0327000577538315,0.12693095566633,0.257620826867417,0.796699554618958,0.871292808462289 +"Tfru23447_t",0,NA,NA,NA,NA,NA +"Tfru30253_t",0,NA,NA,NA,NA,NA +"Tfru28015_t",0,NA,NA,NA,NA,NA +"Tfru02881_t",0,NA,NA,NA,NA,NA +"Tfru02882_t",157.541651055379,-0.0820377142346833,0.284216331496714,-0.288645320987235,0.772852809806086,0.855539688552219 +"Tfru21109_t",0,NA,NA,NA,NA,NA +"Tfru21110_t",0,NA,NA,NA,NA,NA +"Tfru21581_t",2.11626702161124,0.532975183111203,1.39990389680278,0.380722694128115,0.703409027395673,0.806759290376424 +"Tfru12103_t",0.599474288010439,2.68841024197286,3.01305150719839,0.892254989850011,0.37225627368432,NA +"Tfru12104_t",45.4928495115725,-0.541811492354979,0.299246344021279,-1.81058683983939,0.0702048308396886,0.143526456032907 +"Tfru12105_t",25.03362428283,0.618936290728548,0.404599177274084,1.52975172836119,0.126078194181702,0.228398088537032 +"Tfru23518_t",0.428790523796186,0.637314986713047,3.47901020122227,0.183188593838886,0.854650043728864,NA +"Tfru05795_t",0,NA,NA,NA,NA,NA +"Tfru08133_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08134_t",49.0974133681207,0.939088471196963,0.405299163962874,2.31702543379287,0.0205023463329351,0.0520607190382823 +"Tfru08135_t",25.3918852148416,-0.770357866557041,0.448241431010495,-1.71862262892651,0.0856831085026871,0.168401507709681 +"Tfru08136_t",0,NA,NA,NA,NA,NA +"Tfru08137_t",121.566953474299,0.0867131657508029,0.226925288594933,0.382122090877178,0.702370806774012,0.806064235454715 +"Tfru06002_t",19.8445961154076,-0.668066416466181,0.456217657744821,-1.46435896358894,0.143095894298938,0.252542079836781 +"Tfru06003_t",0,NA,NA,NA,NA,NA +"Tfru06004_t",0,NA,NA,NA,NA,NA +"Tfru06005_t",0,NA,NA,NA,NA,NA +"Tfru06006_t",3897.419242354,0.995149203418565,0.156673876986702,6.35172386461741,2.12915274197567e-10,2.79638722801735e-09 +"Tfru05168_t",16.0992379267511,1.33450067528254,0.527504064227889,2.52983960841299,0.0114114678781607,0.0319189561700674 +"Tfru05169_t",25.4977878053222,-1.1095457659888,0.40099544126847,-2.76697850349363,0.0056578485746771,0.0176551381903616 +"Tfru05170_t",9.00625007997942,-0.291552916995818,0.673495382557654,-0.432895198016982,0.665090908742637,0.777644645440932 +"Tfru05171_t",0,NA,NA,NA,NA,NA +"Tfru05172_t",0,NA,NA,NA,NA,NA +"Tfru05173_t",101.62202223475,1.91858654375898,0.315900887231192,6.07338130821668,1.252445799547e-09,1.47758234021412e-08 +"Tfru05174_t",0,NA,NA,NA,NA,NA +"Tfru17404_t",127.433626863211,0.159784898164498,0.227007175088958,0.703875981461302,0.481510010357312,0.620787051876692 +"Tfru02166_t",17.2049797375948,0.276543213760012,0.506680300800548,0.545794287488733,0.585207350453712,0.712836254457849 +"Tfru02167_t",1.58747520545001,-0.150056490056633,1.57911196298859,-0.0950258712324867,0.924294277628287,0.95500743455957 +"Tfru02168_t",396.541939358498,6.20676313938828,0.562612015671633,11.0320486703057,2.67696465820623e-28,1.87807113011459e-26 +"Tfru02169_t",2134.29767258545,2.54728027882819,0.57183545098617,4.45456866032917,8.40620249304197e-06,5.23166884856171e-05 +"Tfru02170_t",21.378556851486,4.59779268568457,0.780451659729326,5.89119470548524,3.83413473014646e-09,4.23116051581251e-08 +"Tfru02171_t",3.80943072084557,1.11728593394203,0.980115338620042,1.13995352375071,0.254305664368106,0.391262442111142 +"Tfru02172_t",95.3101630610244,-0.339537087286739,0.294282129747372,-1.15378085505299,0.248590025112496,0.384718856765044 +"Tfru02173_t",0,NA,NA,NA,NA,NA +"Tfru16036_t",0,NA,NA,NA,NA,NA +"Tfru16037_t",97.8490978533022,-0.57718821212366,0.267724852365585,-2.15590075790011,0.0310914152883721,0.0732602520692533 +"Tfru16038_t",3.66139462080511,-0.335865852405128,0.92518689531627,-0.36302487000782,0.716586306252041,0.816238023870385 +"Tfru16039_t",155.39932532532,0.702156296935043,0.201195644630456,3.48991797623015,0.00048316882176259,0.00203986384286866 +"Tfru16040_t",2.34965729840795,4.65168080147958,1.69205109511955,2.7491373132269,0.00597523488620916,0.0184908402590377 +"Tfru16041_t",59.7021540052877,2.22563990729837,0.365256047641339,6.09336908086962,1.10558757956535e-09,1.31137163642219e-08 +"Tfru16042_t",991.09928159398,-0.328462310283387,0.302694150642874,-1.08512936105896,0.277864364850751,0.418507603833354 +"Tfru16043_t",1136.90652143248,-1.04830429050476,0.146118927387468,-7.17432237731214,7.26661976226047e-13,1.30414555155886e-11 +"Tfru05716_t",444.36959512395,-1.8988037913939,0.185287530391874,-10.2478768397313,1.2097153428779e-24,6.52371792135121e-23 +"Tfru05717_t",67.2959043379836,-0.312960949139866,0.27850206895697,-1.12372935077987,0.261127860947437,0.399319544106843 +"Tfru05718_t",543.408863029859,-0.332742082122526,0.144110969119535,-2.30892959887409,0.0209474881991399,0.052942381241869 +"Tfru20141_t",4.19368121619095,2.05325180899777,1.07328309935726,1.91305705850336,0.0557407482725783,0.118761983131421 +"Tfru20142_t",0.609438374423943,-0.0538191054845611,2.62364843097273,-0.0205130782193281,0.983634079361716,NA +"Tfru20143_t",250.881201215903,0.621167325388106,0.337008597003536,1.84317946459268,0.0653028121268231,0.135121758080464 +"Tfru20144_t",34.4257488011697,2.82242273203168,0.490620753001641,5.75275855080316,8.77988408605607e-09,9.20776972099038e-08 +"Tfru20145_t",313.098522485246,-0.0164604010861744,0.154753035112198,-0.106365610692161,0.915292276948694,0.948907243272824 +"Tfru20146_t",0,NA,NA,NA,NA,NA +"Tfru20147_t",8.26366453479587,1.30459174792024,0.738716372888527,1.76602522402344,0.0773916171616046,0.155129815680852 +"Tfru20148_t",355.622690384315,-0.559099583250046,0.189110661965086,-2.95646780271579,0.0031118471926842,0.0105264722146724 +"Tfru05385_t",0,NA,NA,NA,NA,NA +"Tfru09958_t",0,NA,NA,NA,NA,NA +"Tfru09959_t",2.19118499790744,2.53340644281277,1.66129735359532,1.52495664748401,0.127269911142823,0.230091333013684 +"Tfru09960_t",5.5875210601421,-5.95760040933411,1.3955646560176,-4.26895334705221,1.96392335898098e-05,0.000113543282805462 +"Tfru09961_t",232.192745586491,-0.441471160467643,0.197863699341085,-2.23118824694881,0.0256686621682164,0.0625778495996386 +"Tfru29434_t",1.62772034468953,-1.08994388503737,1.79911684980788,-0.605821620287622,0.544633211299869,0.677069869798461 +"Tfru29435_t",0.462504333717027,2.30952543271104,3.31656106278478,0.69636149885081,0.486202468155211,NA +"Tfru29436_t",504.761423651374,0.198478770759888,0.168677929741392,1.17667303045623,0.239326036318088,0.37413500229106 +"Tfru29437_t",901.899070932216,0.0700246260181858,0.134777955113347,0.519555486350093,0.603373430251033,0.728226142965977 +"Tfru29438_t",201.959803208018,2.04783407057516,0.227680071243448,8.99434921726419,2.3763586509195e-19,8.52290169993242e-18 +"Tfru29439_t",7.43176994268648,6.3096146517219,1.39710702743855,4.51619992441805,6.29592275094082e-06,4.01775737570731e-05 +"Tfru08311_t",477.345471230323,0.168587877557116,0.17728093943313,0.950964486628901,0.341622404016268,0.487161297431125 +"Tfru08312_t",2.16556056455422,-0.367947940511527,1.38157533862816,-0.266324919259838,0.789988983116088,0.867103972372393 +"Tfru08313_t",3.73545301655767,-0.310355310808,0.989711072989837,-0.313581730343222,0.75383873720302,0.841903834452996 +"Tfru08314_t",37.6459307388601,-0.69341494767929,0.391409631704879,-1.77158376164366,0.0764636771801441,0.153716873509759 +"Tfru08315_t",149.946499984949,-0.409793713246924,0.201157707721022,-2.03717629261938,0.0416323786922575,0.0935005153168815 +"Tfru08316_t",0,NA,NA,NA,NA,NA +"Tfru22381_t",76.0467367834768,-1.28099828993402,0.320864655907864,-3.99233217603703,6.54266350539391e-05,0.000340048326174444 +"Tfru22382_t",4.1999088038695,5.48012162442772,1.45352062485299,3.77024001636164,0.000163090622306459,0.000777416001537497 +"Tfru22383_t",0,NA,NA,NA,NA,NA +"Tfru22384_t",713.625502371503,1.67784358325699,0.238151196252427,7.04528723625881,1.85079313902234e-12,3.13082013993348e-11 +"Tfru22385_t",9.67429271285006,3.06650846097416,0.867803133886244,3.53364529492023,0.000409870738301895,0.00176503889228332 +"Tfru25358_t",0.525437198958242,2.46470302181811,3.2184532812315,0.765803572850068,0.443793187997663,NA +"Tfru25359_t",0,NA,NA,NA,NA,NA +"Tfru24655_t",0,NA,NA,NA,NA,NA +"Tfru24656_t",0,NA,NA,NA,NA,NA +"Tfru24657_t",0,NA,NA,NA,NA,NA +"Tfru08926_t",0,NA,NA,NA,NA,NA +"Tfru08927_t",0,NA,NA,NA,NA,NA +"Tfru08928_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08929_t",0,NA,NA,NA,NA,NA +"Tfru08930_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru14304_t",0,NA,NA,NA,NA,NA +"Tfru14305_t",9.50517275250839,6.66064157522181,1.38630045241044,4.80461617367329,1.55048654194894e-06,1.10756108550327e-05 +"Tfru14306_t",14.0161302031221,2.71149650879463,0.671180355903503,4.03989253401878,5.34756985540268e-05,0.000282783792700954 +"Tfru04683_t",26.7014376062764,1.24915889180196,0.43701707991406,2.85837544850104,0.00425816237585097,0.0137777378945192 +"Tfru04684_t",0,NA,NA,NA,NA,NA +"Tfru04685_t",0,NA,NA,NA,NA,NA +"Tfru04686_t",0,NA,NA,NA,NA,NA +"Tfru04105_t",0.357000812044223,1.90411505618867,3.64680029528805,0.522133076124002,0.601577678334712,NA +"Tfru04106_t",0,NA,NA,NA,NA,NA +"Tfru13161_t",0,NA,NA,NA,NA,NA +"Tfru13162_t",1.2050143763742,-0.214718303938711,2.23057139487666,-0.0962615697627485,0.923312832187693,0.954357157969729 +"Tfru13163_t",0,NA,NA,NA,NA,NA +"Tfru13164_t",324.098317003431,0.215333781541908,0.184828921587747,1.165043758802,0.244001280465232,0.379384189057586 +"Tfru13165_t",134.695715743589,0.380523172018552,0.207952469198132,1.82985647386566,0.067271403483176,0.138490848123768 +"Tfru13181_t",0,NA,NA,NA,NA,NA +"Tfru13182_t",1.98404276387532,-1.09327689231393,1.40898721585074,-0.775931023372572,0.437789713837955,0.582470352279498 +"Tfru13183_t",0,NA,NA,NA,NA,NA +"Tfru15694_t",378.50623865404,0.179722949845296,0.147887056925852,1.21527166461502,0.224262495313831,0.356209698021542 +"Tfru15695_t",1443.02850311359,-0.84063831295807,0.208452601949781,-4.03275519276363,5.51266991944717e-05,0.000290290712464065 +"Tfru15696_t",149.035859739269,0.276373327740716,0.247992154435586,1.11444383540973,0.265088826616839,0.404161587280119 +"Tfru15697_t",54.9834784570377,-0.201509574288524,0.295918421938831,-0.680963263348901,0.495894736024923,0.633780149176962 +"Tfru15698_t",0.66315586806724,-0.0305394116698421,2.59307621687818,-0.0117772904132408,0.990603299039246,NA +"Tfru15699_t",115.626572959304,-0.484272523525709,0.277560555274963,-1.74474547741832,0.081029183279176,0.160907996609402 +"Tfru15700_t",10.8965801974623,1.66220479554914,0.900446723146303,1.84597794941286,0.0648954072223482,0.134427916848959 +"Tfru15701_t",3.98098320225749,0.126303399674304,0.907780230318929,0.139134336104598,0.889343995807951,0.93189992631248 +"Tfru15702_t",461.988055301476,0.221591514456606,0.161867103309625,1.36897189067959,0.171008061692276,0.28973884629216 +"Tfru15703_t",480.103381524288,-1.18836123521903,0.161990612297783,-7.33598829192954,2.20091262079449e-13,4.22077330363159e-12 +"Tfru24579_t",15.4531013269507,0.278661946920878,0.545724847553891,0.510627192750941,0.609612131037653,0.733150071335945 +"Tfru24580_t",259.724596522278,-0.221185881061267,0.184458863921087,-1.19910681633544,0.2304864139887,0.36402864820516 +"Tfru24581_t",0.853338958064175,0.34856573584815,2.41945735631543,0.144067732765903,0.88544698439157,0.929435938206253 +"Tfru23241_t",0,NA,NA,NA,NA,NA +"Tfru23242_t",0,NA,NA,NA,NA,NA +"Tfru03524_t",17.2967690022016,-1.17353202140466,0.493605048222654,-2.37747167625259,0.0174317816650605,0.045537909847561 +"Tfru03525_t",14.8220887824912,-1.33772484227756,0.529810615676455,-2.52491136020287,0.011572747485698,0.0322980532148548 +"Tfru15296_t",21.2790490376028,0.227252167681289,0.422371613230925,0.538038448992647,0.590550504457469,0.717509244829433 +"Tfru04162_t",0,NA,NA,NA,NA,NA +"Tfru04163_t",113.269840940227,-0.168187527088755,0.231273189854983,-0.727224488036051,0.467088447352841,0.608536468259202 +"Tfru26039_t",5.19655229941476,0.831414113749336,0.827376395973693,1.00488014620104,0.314954565548912,0.459419028000423 +"Tfru26040_t",805.209366545917,-1.46757201598528,0.208831490607647,-7.02754173575555,2.10203944728696e-12,3.53180501728846e-11 +"Tfru19194_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru19195_t",0.385165427144936,-2.07679782548222,4.02498416437306,-0.515976645042454,0.605870721136016,NA +"Tfru19196_t",119.679474446069,0.887368348160223,0.253981662148854,3.49382841521902,0.000476146938229712,0.00201668593444 +"Tfru15631_t",0,NA,NA,NA,NA,NA +"Tfru15632_t",0,NA,NA,NA,NA,NA +"Tfru14963_t",0,NA,NA,NA,NA,NA +"Tfru14964_t",1366.97430616728,0.136766094241979,0.150982767814728,0.905839098206265,0.365021023162127,0.511116217128724 +"Tfru14965_t",7.40214162390689,3.77938505827957,1.08828469331073,3.47279078857766,0.000515076694930138,0.00215990564596899 +"Tfru14966_t",0,NA,NA,NA,NA,NA +"Tfru14967_t",682.212780087733,-0.31716636406246,0.149958617714378,-2.11502592446243,0.0344277378380752,0.0797776737229368 +"Tfru14968_t",23.4480312009843,2.81547961027755,0.70337440664022,4.00281782177168,6.25924997954789e-05,0.000326912519351883 +"Tfru14969_t",96.2767705436645,0.707634474260299,0.277145456998398,2.55329631567582,0.0106708671074913,0.0301532835688959 +"Tfru14970_t",90.0525128645219,0.990886625558869,0.251879630614041,3.93396886895241,8.35546099740298e-05,0.000423641180611415 +"Tfru14971_t",0.630527991348792,-2.82443942424773,3.02603887865233,-0.9333784321719,0.350624612173956,NA +"Tfru14972_t",202.437648314356,0.473561187910015,0.20355463045068,2.32645745695653,0.0199941595055921,0.0510285425630232 +"Tfru14973_t",48.917208290832,1.95232283718355,0.315100029902106,6.1958827417125,5.79592651619515e-10,7.15065244941827e-09 +"Tfru14974_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14975_t",0,NA,NA,NA,NA,NA +"Tfru15846_t",820.354171216809,0.304049377581172,0.220061478611966,1.38165652389032,0.167077189563352,0.284286965207724 +"Tfru15847_t",202.734950736791,-0.547574215863689,0.202900040371426,-2.69873882164492,0.00696027771792618,0.0210302437325757 +"Tfru15848_t",135.674460567224,-0.528961141533114,0.208229868845508,-2.54027505499496,0.0110765320193678,0.0311279165125904 +"Tfru15849_t",565.966902610283,-1.13278691980138,0.260932546898713,-4.34130173972164,1.41641050932803e-05,8.4418820769005e-05 +"Tfru26057_t",23.7606367889636,-0.4205817153526,0.515263606697107,-0.816245723327079,0.414359610545485,0.560121290408791 +"Tfru26058_t",133.549241315696,-1.51289897195726,0.208349566842024,-7.26134925494893,3.83247958020991e-13,7.14757441709148e-12 +"Tfru26059_t",5.64314871269882,-5.96933829863806,1.40119341724547,-4.26018151753299,2.04260949013469e-05,0.000117672784409245 +"Tfru26060_t",0,NA,NA,NA,NA,NA +"Tfru26061_t",321.551655456471,-0.06812554428021,0.192654385009343,-0.35361533181249,0.723627182721796,0.821069577637082 +"Tfru26062_t",1822.24903752677,-1.78668910223787,0.195235783056231,-9.15144280556025,5.61781528569223e-20,2.13096112023376e-18 +"Tfru26063_t",210.091466772416,-0.191223717757929,0.195895484520261,-0.9761517383937,0.328989275364042,0.474650591970555 +"Tfru25937_t",104.306155937788,0.22773439725502,0.244620813515598,0.930969012743061,0.351869593472831,0.497450606745819 +"Tfru25938_t",158.548167751638,-0.23448561696198,0.191107461196083,-1.22698305704239,0.219828959054497,0.350885964170861 +"Tfru25939_t",97.6360144956665,0.323182635319363,0.224759866948805,1.43790188037874,0.150461896112565,0.262278280626749 +"Tfru25940_t",126.510417163756,-0.832693808245213,0.206177755137857,-4.03871798724575,5.37441335917547e-05,0.000284079761403748 +"Tfru25941_t",206.982540148783,-1.00318665726045,0.206481091538932,-4.85849164097091,1.18283401681348e-06,8.63399389963653e-06 +"Tfru16765_t",2.43953148418079,-2.77402274821952,1.53990347551966,-1.80142638309417,0.0716357008457658,0.145817789456325 +"Tfru16766_t",65.8878953658718,0.279035549811989,0.350392427060672,0.796351542619594,0.425827734961181,0.570991877924248 +"Tfru16767_t",256.671319600833,0.491691725360384,0.186256364470388,2.63986536384133,0.00829389691891636,0.0244490796951196 +"Tfru16768_t",57.948869421952,0.338022798709733,0.275440981380513,1.22720590456641,0.219745210743372,0.350827351721834 +"Tfru16769_t",27.8164273542886,0.94715947787681,0.443514004236258,2.13557964084548,0.0327136923441911,0.0764549113239879 +"Tfru16770_t",52.5587246120781,-0.516821986877935,0.310304502691237,-1.6655317031999,0.0958067240362363,0.183944554077121 +"Tfru16771_t",16.7283413421865,-1.37491357041189,0.538281525668466,-2.55426483140852,0.0106412285544522,0.0300809264934495 +"Tfru16772_t",2.19705924106805,0.233009973851663,1.2427851470477,0.187490150172127,0.851276345781087,0.90743341836536 +"Tfru16773_t",2.40076748515186,-0.018674429485967,1.18020166493777,-0.0158230834956089,0.987375532774673,0.993859153705909 +"Tfru20017_t",11.1912791392539,-0.414985690609007,0.59039407165754,-0.702896100301157,0.48212050160982,0.621320789244948 +"Tfru20018_t",502.224488214137,-0.716555691880474,0.1452861468541,-4.93203039240937,8.13792506004521e-07,6.09731378787452e-06 +"Tfru20019_t",0,NA,NA,NA,NA,NA +"Tfru23947_t",445.670560363058,-0.425125130999166,0.167832987952433,-2.53302486111761,0.0113082932201504,0.0316745434626991 +"Tfru23948_t",0,NA,NA,NA,NA,NA +"Tfru23949_t",1766.49693799976,-0.141979726557929,0.120101285920574,-1.18216658106245,0.23713961001236,0.371635746733995 +"Tfru23950_t",112.835876930606,-0.361050175589796,0.23005330430717,-1.56941964679506,0.116550189102305,0.215107474196733 +"Tfru09294_t",0.47567737613943,-2.41802624700338,3.28163764064798,-0.736835236484526,0.46122255215901,NA +"Tfru11337_t",0,NA,NA,NA,NA,NA +"Tfru14162_t",936.453672829325,-0.0438487405197477,0.167238529496806,-0.262192813173386,0.793172793892531,0.86917582288726 +"Tfru14163_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14164_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14165_t",1.85268262201982,1.37601906370767,1.43789533652867,0.956967470963235,0.338583673902011,0.483876284925096 +"Tfru14166_t",0.625271523428835,2.74124551423173,3.04558826885075,0.900070945987107,0.368082496537474,NA +"Tfru14167_t",1.51656638094205,2.91082089390396,2.06680320929467,1.40836867332779,0.159021930365148,0.273888779557643 +"Tfru14168_t",569.619552117504,-0.0681676099114558,0.186414397836763,-0.365677816212179,0.714605501425673,0.814798814036405 +"Tfru14169_t",223.071979387941,0.0596824923433585,0.167844478756472,0.355582100677573,0.722153550270797,0.820095093304182 +"Tfru14170_t",9.03926814642628,-0.387702609880782,0.701701786306279,-0.552517632770507,0.580593757029239,0.708720861913078 +"Tfru14171_t",143.202485798821,-0.258086677200653,0.203573770306124,-1.26777962019643,0.204876662027251,0.332184285747293 +"Tfru14172_t",64.2318860320686,-0.0464933784864853,0.275655497854461,-0.168664796633342,0.866060310224333,0.9168936937739 +"Tfru14173_t",36.7522221288944,-0.062596367556061,0.334813034130108,-0.186959171761922,0.851692644659847,0.907702031783644 +"Tfru14174_t",316.471791481605,0.33892839025201,0.160083279027086,2.11720044911539,0.0342428393073183,0.0794891342908189 +"Tfru14175_t",170.808816605583,-0.10838807052996,0.191043322336267,-0.567348123998699,0.57047768730052,0.699884368039998 +"Tfru14176_t",140.39980348717,0.0593302414405998,0.209250411222769,0.283537036290153,0.77676519510933,0.858092853073158 +"Tfru14177_t",940.804614315821,0.0937498712096657,0.140531527454757,0.66710917405952,0.504702400592156,0.642139836569212 +"Tfru14178_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru14179_t",0,NA,NA,NA,NA,NA +"Tfru14180_t",46.5483900008566,-0.911331062824578,0.647073335540848,-1.40838914659164,0.159015871255283,0.273888779557643 +"Tfru14181_t",28.1084349540896,-0.0546676218440484,0.401230980612317,-0.136249752600411,0.891623844964252,0.933589484902216 +"Tfru14182_t",58.3671063027977,0.282263339248672,0.311873401601522,0.90505742971091,0.365434963186679,0.511535806612326 +"Tfru14183_t",24.4331813407679,0.7786879887303,0.419154453575575,1.85775907207413,0.0632032356091832,0.131739630523751 +"Tfru14184_t",47.4684978468898,0.23003335416583,0.298399107680868,0.770891561820106,0.440771209128241,0.584822176290923 +"Tfru14185_t",2676.08197573925,-1.05035611051424,0.392101766253341,-2.67878444045467,0.00738899446873015,0.0221313833257736 +"Tfru14186_t",52.8061415918272,-0.979724516592772,0.313546959417283,-3.12465003141335,0.00178016714609211,0.00646755531323723 +"Tfru14187_t",2210.04123963732,-1.85986201842044,0.241615059018419,-7.69762458505805,1.3861891476078e-14,3.05343633104946e-13 +"Tfru14188_t",40.3720456558789,-1.07918165209691,0.376755949510017,-2.86440507044526,0.00417793361868203,0.013556931185458 +"Tfru14189_t",94.9912094946403,-0.208253691153379,0.282926845915706,-0.736069037490437,0.461688684543436,0.604068562413452 +"Tfru14190_t",7.50984028263663,-0.965211117861103,0.814538901564889,-1.18497853940032,0.236025932142097,0.370540208102937 +"Tfru14191_t",218.502075196253,-0.275770382628617,0.196139060187994,-1.40599420821277,0.159725844619093,0.274729465497645 +"Tfru14192_t",3.16412203694759,-1.63855780020725,1.15981252679069,-1.41277815367394,0.157720963645114,0.272190448695776 +"Tfru14193_t",0.502283943991191,-2.48369053665678,3.23957080071676,-0.766672713591339,0.443276130926153,NA +"Tfru30713_t",41.3168015081709,0.517837023624097,0.39379440112145,1.31499336239773,0.188512133256198,0.312072012891021 +"Tfru30714_t",0,NA,NA,NA,NA,NA +"Tfru30715_t",382.226632800552,-0.610090951646011,0.221603149951489,-2.75307887897607,0.00590376699014271,0.0182975079960385 +"Tfru30716_t",0,NA,NA,NA,NA,NA +"Tfru21861_t",0,NA,NA,NA,NA,NA +"Tfru05827_t",3248.31874798656,-0.287473035382743,0.438817374938942,-0.655108598247146,0.512397836568242,0.649237461110568 +"Tfru07042_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru07043_t",267.018686153104,0.208060950280899,0.180879466238686,1.15027401731905,0.250031028847594,0.386202941928991 +"Tfru11697_t",0,NA,NA,NA,NA,NA +"Tfru11500_t",295.358353664509,0.592985387982413,0.191808653206371,3.09154659119788,0.0019911673192488,0.00711630862420762 +"Tfru11501_t",10.8312612668089,6.83971098093629,1.36522223273164,5.00996161427204,5.44408930646835e-07,4.24969371045559e-06 +"Tfru11502_t",75.0444459326612,0.104506988169144,0.28300659514281,0.369274038000451,0.711923474849642,0.813180701733128 +"Tfru11503_t",3.41385623411166,0.57079952667708,1.14901286027623,0.496773836404108,0.619348547344448,0.741235836065383 +"Tfru11504_t",268.4119856125,0.0070175695677365,0.172515042393877,0.0406780154956827,0.967552588179071,0.981443140337858 +"Tfru11505_t",0,NA,NA,NA,NA,NA +"Tfru03743_t",26.7390850769754,1.4259202727407,0.427061338240759,3.33891210713348,0.000841071715626915,0.0033368525076636 +"Tfru03744_t",0,NA,NA,NA,NA,NA +"Tfru03745_t",1.8528026244019,-0.378968093962021,1.44243339219922,-0.262728314535359,0.79275999138207,0.868826889798725 +"Tfru27734_t",7.84444807934328,1.22204399920252,0.679272782749971,1.79904749643463,0.0720111678227424,0.146456737174934 +"Tfru27735_t",0.547932616856743,-1.10345148566009,3.28253256400575,-0.336158580042699,0.736751285532147,NA +"Tfru27736_t",36.2980300089953,0.123205485725374,0.353038736176454,0.348985743206926,0.727100012781624,0.823673733855676 +"Tfru14050_t",0.446671184712135,-0.848473925636496,3.44516391107621,-0.246279697435774,0.805465725115252,NA +"Tfru14051_t",0,NA,NA,NA,NA,NA +"Tfru14052_t",0,NA,NA,NA,NA,NA +"Tfru14053_t",0,NA,NA,NA,NA,NA +"Tfru14054_t",0,NA,NA,NA,NA,NA +"Tfru27082_t",0,NA,NA,NA,NA,NA +"Tfru25929_t",0,NA,NA,NA,NA,NA +"Tfru25930_t",46.778417599721,3.67327821018935,0.480047869468742,7.65189982877016,1.98031481162229e-14,4.2986853039871e-13 +"Tfru25931_t",1.27921843332085,0.577074063076957,2.27991443110031,0.253112158599064,0.800181543536348,0.873180698441829 +"Tfru16523_t",191.975587803454,-0.354727220684551,0.186274539442304,-1.9043247764648,0.0568678993438057,0.120658035843375 +"Tfru16524_t",32.9268840616231,-0.369973052475753,0.448118086920107,-0.825615085118655,0.409022475117015,0.555119647854384 +"Tfru16525_t",1.55138743076564,2.9156470264401,2.1148231210946,1.37867181295569,0.167995963955216,0.285624667883713 +"Tfru05096_t",0,NA,NA,NA,NA,NA +"Tfru03161_t",0,NA,NA,NA,NA,NA +"Tfru08328_t",0,NA,NA,NA,NA,NA +"Tfru08329_t",8.58795638263014,1.1890324748772,0.713376043368254,1.66676815955734,0.0955605138086478,0.183606138310228 +"Tfru08330_t",0.980773672988409,-0.0218435410060362,1.80369670432139,-0.0121104290725278,0.990337511806343,0.995597338528484 +"Tfru08331_t",691.208122104336,0.424781434335356,0.162855944435546,2.60832624690266,0.00909861904709523,0.0263936609557993 +"Tfru05347_t",65.5020448919021,0.946496820367533,0.317668200865022,2.97951390095133,0.00288706129985633,0.00987052121765728 +"Tfru05348_t",324.970075005346,-0.454380413649861,0.208174347645541,-2.18269166585085,0.0290585240894238,0.0692576963920452 +"Tfru05349_t",0,NA,NA,NA,NA,NA +"Tfru18056_t",0,NA,NA,NA,NA,NA +"Tfru18057_t",4.30388971899183,-0.462270714648475,0.906622208054663,-0.509882408065393,0.610133847264591,0.733340252512436 +"Tfru24006_t",372.134927075197,0.117567282523589,0.194732552839471,0.603737181119927,0.546018390206175,0.678468245672878 +"Tfru24007_t",77.9439716604798,-0.0969872549994432,0.238640296848132,-0.406416084292607,0.684436903534037,0.791816894821809 +"Tfru24008_t",0.513409474502536,-2.51028518389237,2.63648035081407,-0.952134986751282,0.341028527399003,NA +"Tfru16444_t",2.22612605011312,0.669179152929304,1.3483788943146,0.496284208949634,0.61969390581048,0.741485757700949 +"Tfru27240_t",0,NA,NA,NA,NA,NA +"Tfru27241_t",0,NA,NA,NA,NA,NA +"Tfru27242_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru27243_t",0,NA,NA,NA,NA,NA +"Tfru27244_t",0,NA,NA,NA,NA,NA +"Tfru08654_t",51.66569982787,-0.0442859941032579,0.373451958311846,-0.118585518478598,0.905603738966953,0.942188260800539 +"Tfru08655_t",77.0681746594444,0.285056339080709,0.353138864051039,0.807207498519647,0.419546946309786,0.565051492953783 +"Tfru08656_t",125.941232961254,-0.0472503334209545,0.349351919964547,-0.135251391850801,0.892413115527461,0.934065005549915 +"Tfru08657_t",879.73849561075,0.267654028616879,0.133854433171588,1.9995903181912,0.0455445202573107,0.100829593763836 +"Tfru27649_t",0,NA,NA,NA,NA,NA +"Tfru08301_t",0,NA,NA,NA,NA,NA +"Tfru08302_t",1662.16896971177,-0.353269932208499,0.211613534071164,-1.66941086145132,0.0950359825747074,0.182880936373341 +"Tfru08303_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru08304_t",56.997439185477,-0.691907912767227,0.363307683305232,-1.90446815347398,0.0568492404429386,0.120630131896555 +"Tfru16424_t",80.5498012277092,0.182512395189188,0.238609059318412,0.764901365063571,0.44433028101059,0.588165356894599 +"Tfru24761_t",36.0207492624434,-0.854021314852883,0.332310121149472,-2.56995276550348,0.0101712382215621,0.0290273286659729 +"Tfru24762_t",0,NA,NA,NA,NA,NA +"Tfru24763_t",0,NA,NA,NA,NA,NA +"Tfru25624_t",0,NA,NA,NA,NA,NA +"Tfru25625_t",11.1077525351726,-0.429094205077759,0.569485275202176,-0.753477260540976,0.451163170839481,0.594754677720353 +"Tfru25626_t",0,NA,NA,NA,NA,NA +"Tfru13371_t",17.9527252600748,0.0334295975920682,0.452658599770171,0.0738516789674192,0.941128405391259,0.9646189014269 +"Tfru13372_t",70.8247013633091,-0.50158068772233,0.300770173623356,-1.66765434776935,0.0953843628441232,0.18334639186219 +"Tfru13373_t",0.821872525443567,0.279821311583386,2.42827322874232,0.115234689519809,0.908259103551685,0.943697065272976 +"Tfru13374_t",0.658296003298394,-0.179318062241752,2.26625645106868,-0.0791252296963975,0.936933016027183,NA +"Tfru22929_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru16493_t",0,NA,NA,NA,NA,NA +"Tfru16494_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru20215_t",0,NA,NA,NA,NA,NA +"Tfru20216_t",0,NA,NA,NA,NA,NA +"Tfru20217_t",0,NA,NA,NA,NA,NA +"Tfru14435_t",190.65637610343,-0.479820941430031,0.214653444229541,-2.23532840645656,0.0253957964736528,0.0619929300776575 +"Tfru14436_t",655.292503824239,-0.0293094141321902,0.223107922367551,-0.131368773556618,0.895483589645337,0.936054308092604 +"Tfru14437_t",0.317617804921169,-0.064299183294079,3.80307376634159,-0.0169071617445728,0.986510679338551,NA +"Tfru14438_t",0,NA,NA,NA,NA,NA +"Tfru14439_t",93.8793304110699,-1.05748646987027,0.238685486222885,-4.43045987673833,9.40323425197644e-06,5.79736591072267e-05 +"Tfru30214_t",344.030599847421,6.06981048809425,0.36331778177231,16.7066155102152,1.17307377819817e-62,4.68806841940609e-60 +"Tfru02285_t",0,NA,NA,NA,NA,NA +"Tfru02286_t",5.18688948893441,-4.85207543523566,1.43290890554381,-3.38617159574022,0.00070875050528371,0.00286573375036123 +"Tfru05895_t",218.981377828487,-0.629615298408908,0.187666350090126,-3.35497172565321,0.000793730967112316,0.00317039069141061 +"Tfru05896_t",143.553003141841,-0.216052796236931,0.202707736075557,-1.06583399538536,0.286498690416951,0.428112485246135 +"Tfru05897_t",129.84555305877,-0.310083677121602,0.225239346697044,-1.37668520917297,0.168609593606893,0.286347147133272 +"Tfru05898_t",55.3028659318783,-0.611585858257673,0.322368599242854,-1.89716324634007,0.0578063959822168,0.122301677262433 +"Tfru05899_t",603.051655833952,0.232890246759291,0.159948011569022,1.45603714903822,0.14538235038578,0.255571974828971 +"Tfru05900_t",151.863541807762,-0.148687311332071,0.226690087842079,-0.655905658458488,0.511884827224968,0.648770100424441 +"Tfru24784_t",0,NA,NA,NA,NA,NA +"Tfru24785_t",960.900204871972,2.28986366230533,1.22771824810157,1.8651377592914,0.062162097056959,0.129908276415608 +"Tfru13720_t",0,NA,NA,NA,NA,NA +"Tfru13721_t",960.339186560057,0.254166603060884,0.229021025196467,1.10979593617156,0.267086970879406,0.406488025044618 +"Tfru13722_t",0,NA,NA,NA,NA,NA +"Tfru13723_t",243.060597263255,-0.838495068210965,0.217078315946636,-3.86263853464337,0.000112168917570891,0.0005533040280442 +"Tfru15944_t",31.953714713916,1.54526022945742,0.446025836412716,3.46450833854289,0.000531201671062209,0.00222045076547856 +"Tfru15945_t",0,NA,NA,NA,NA,NA +"Tfru15946_t",238.488118397114,1.98430223474538,0.294785556160583,6.73134145576808,1.68105942129439e-11,2.55758734524599e-10 +"Tfru10295_t",44.8525062142625,-0.507579233330567,0.303704440043304,-1.67129342349487,0.0946637348017268,0.182274316859902 +"Tfru10296_t",37.7157588075373,-0.65092000829052,0.349684132661195,-1.86145137137575,0.0626804617843156,0.130808349005314 +"Tfru23893_t",549.707354905386,-0.221321607003084,0.16748878128159,-1.32141153162364,0.186364183087338,0.309458513387086 +"Tfru23894_t",289.146377975333,-0.50433890093318,0.275450690381349,-1.8309589285652,0.0671066735922744,0.138189855998813 +"Tfru23895_t",55.9403368347169,-0.739636575254838,0.316499918718602,-2.33692500854146,0.019443083728381,0.0498837801033093 +"Tfru23896_t",217.925515731798,-0.491320391506156,0.218661474233946,-2.24694539002555,0.0246435173908346,0.0605735221534189 +"Tfru07693_t",0,NA,NA,NA,NA,NA +"Tfru07694_t",96.1935392363132,0.340296385189718,0.230090050326857,1.47897044964051,0.139148212782892,0.24683763125059 +"Tfru02298_t",37.2997821558439,-0.440067797740269,0.322475508636578,-1.36465494573795,0.172361526493572,0.291590518022991 +"Tfru02299_t",684.293357769701,-0.350306033395067,0.152023865452548,-2.30428316206977,0.0212067535253376,0.053531146390374 +"Tfru02300_t",0.331952291441413,-1.88946190119366,4.04108740625553,-0.46756274023393,0.64009731538694,NA +"Tfru02301_t",0,NA,NA,NA,NA,NA +"Tfru02302_t",0,NA,NA,NA,NA,NA +"Tfru02303_t",98.9519945712048,-0.437767389101974,0.319907951198051,-1.36841671944239,0.171181673741862,0.289989089269766 +"Tfru02304_t",61.0053433849437,-1.64942954554105,0.296364509796781,-5.56554341365664,2.61336706939055e-08,2.53960725197397e-07 +"Tfru02305_t",73.9390040989167,0.18241881076462,0.254843982771982,0.715805838460142,0.474111246825735,0.614715816230807 +"Tfru02306_t",109.270020119181,-0.0469297142537344,0.248257449137622,-0.189036479738091,0.850064225512597,0.906815235748629 +"Tfru02307_t",3.57567731764444,5.23393713144976,1.7675971701306,2.96104634013588,0.00306595804744166,0.0104018206998663 +"Tfru02308_t",1.53350676984969,4.01586035593644,1.97149896810997,2.03695787869793,0.0416542632110551,0.0935215098980149 +"Tfru04703_t",378.426413273671,0.324252782791062,0.216359205804081,1.49867800441402,0.133957185573394,0.239626074105391 +"Tfru04704_t",2444.46696358691,0.781032523778065,0.236993594684161,3.29558494953815,0.000982170038135954,0.00383077125365679 +"Tfru04705_t",70.5946859396486,1.79826469636362,0.378067721892417,4.75646185123239,1.97015448920693e-06,1.37964881890114e-05 +"Tfru04706_t",15.3696480007953,0.918674334237558,0.501741542560186,1.83097123979396,0.0671048359124136,0.138189855998813 +"Tfru07035_t",0,NA,NA,NA,NA,NA +"Tfru07036_t",0,NA,NA,NA,NA,NA +"Tfru07037_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru07038_t",2.16039572529178,-0.315648509888502,1.2532683316538,-0.251860277576772,0.801149063886162,0.873810422036761 +"Tfru07039_t",66.5676734503526,0.0673474811401157,0.260472642344737,0.258558751252583,0.795975712879588,0.870841633469162 +"Tfru07040_t",16.3505404433123,0.238699817695178,0.457693824190127,0.521527285445786,0.601999503015083,0.726881514835584 +"Tfru20425_t",0,NA,NA,NA,NA,NA +"Tfru03811_t",276.364505041087,0.0858049783218624,0.173997444740508,0.493139301268637,0.621914162935586,0.743546074389573 +"Tfru03812_t",10.5160471965187,1.95119685998508,0.670813669973612,2.90870169664526,0.00362932979150434,0.0120025487325558 +"Tfru11506_t",0,NA,NA,NA,NA,NA +"Tfru11507_t",0,NA,NA,NA,NA,NA +"Tfru11508_t",0.355349903284275,-0.064298519385419,3.66846126281734,-0.0175273813130136,0.986015889070386,NA +"Tfru30400_t",982.724215001492,-0.834063715219263,0.428968968612478,-1.94434510709967,0.0518538486102016,0.112146224574441 +"Tfru30401_t",186.315102427297,0.85752606946732,0.191450614686405,4.47909802155476,7.49591082338809e-06,4.70306936437974e-05 +"Tfru30402_t",157.354108694564,0.0248530479167182,0.196139513642854,0.126711071395703,0.899169082768375,0.937804272176169 +"Tfru04022_t",13.8649835077562,1.80985232017784,0.618514370481409,2.92612816541219,0.00343209511507889,0.0114480708392674 +"Tfru04023_t",36.1711859117527,0.0226182282311335,0.367831781515947,0.0614906850569487,0.950968432617251,0.971678469706162 +"Tfru21714_t",231.108080360693,-0.454336369254604,0.183418508161149,-2.47704756629811,0.0132474245644184,0.0361778354791561 +"Tfru21715_t",432.632851494834,2.85707899657767,0.280807764565833,10.1745014102267,2.57716414861383e-24,1.36675198213217e-22 +"Tfru04714_t",36.4822004168749,-0.278352589587133,0.478314273013228,-0.581944979048189,0.560603742301823,0.691294933754741 +"Tfru04715_t",125.772890396631,-0.353980918760094,0.263870326753189,-1.34149573813652,0.17975955251621,0.30096646856533 +"Tfru04716_t",0,NA,NA,NA,NA,NA +"Tfru04717_t",16.890150197938,1.92482197170777,0.679606540848819,2.83225933832788,0.00462203446525409,0.0147963283267611 +"Tfru10390_t",0.65106875884723,2.79241725042642,3.92043320408877,0.712272625258378,0.476295972109653,NA +"Tfru06569_t",0,NA,NA,NA,NA,NA +"Tfru06570_t",0,NA,NA,NA,NA,NA +"Tfru06571_t",165.565008944965,-0.29538509167614,0.196732212926271,-1.50145767834595,0.133237225184833,0.238605193217296 +"Tfru06572_t",11.3031290098151,-0.493488117337068,0.72457192958954,-0.681075400777149,0.495823781431814,0.633725655536494 +"Tfru24766_t",4.13592667897785,0.765314783219618,0.892687120743011,0.857315811370308,0.391270372551122,0.537414443211864 +"Tfru24767_t",139.204910343598,-0.519797477127204,0.251583390033679,-2.06610411385911,0.0388186498889594,0.0880845278806085 +"Tfru24768_t",292.691035996578,-0.228771833872371,0.299898065029592,-0.762831977091273,0.445563607923782,0.58948413013326 +"Tfru24769_t",0.648821381546996,1.42185456682538,2.24077578633066,0.634536741917279,0.525730596402191,NA +"Tfru24770_t",482.764552215787,1.47128233283651,0.233008173515738,6.3142949478428,2.71395901403294e-10,3.50886208746719e-09 +"Tfru00021_t",737.628732617236,-1.77680228802556,0.151320847828116,-11.7419530324322,7.76717848690826e-32,6.73757575724833e-30 +"Tfru22330_t",516.555945642596,0.107642168250587,0.136955554540564,0.785964239359894,0.43188843784827,0.576675809262233 +"Tfru02072_t",539.703486176546,-0.602338106014995,0.151930575339162,-3.96456147599236,7.35309957917755e-05,0.000377609840711321 +"Tfru11955_t",270.016162977918,0.0845694107498589,0.164853957915071,0.512995937855658,0.607954162204209,0.7316634840896 +"Tfru11956_t",19.4188012018345,0.00215096348912787,0.481734172888403,0.00446504236191306,0.996437423473715,0.998132196640486 +"Tfru11957_t",235.284448749213,-0.915486457128294,0.211895650372797,-4.3204589406042,1.55705027336876e-05,9.20168606231657e-05 +"Tfru11958_t",0,NA,NA,NA,NA,NA +"Tfru23852_t",230.383374442883,-0.507716888395359,0.21097051605939,-2.40657745868353,0.0161027888145858,0.0425981576442588 +"Tfru02660_t",115.911006987744,-0.368091107291659,0.237269129422801,-1.55136535539665,0.120814152754131,0.221062933418155 +"Tfru03753_t",13.59485774441,-0.631104053050065,0.621579417935245,-1.01532327943943,0.309951751016524,0.453855024061097 +"Tfru03754_t",3.09248457147092,-2.3648221917263,1.24383954859833,-1.90122769001129,0.0572721956711575,0.121355021692909 +"Tfru03755_t",0,NA,NA,NA,NA,NA +"Tfru06903_t",301.540164861468,0.232231204502823,0.241300874565708,0.962413438910205,0.335841965655656,0.481279579392559 +"Tfru06904_t",0,NA,NA,NA,NA,NA +"Tfru06641_t",0,NA,NA,NA,NA,NA +"Tfru06642_t",0,NA,NA,NA,NA,NA +"Tfru12656_t",0,NA,NA,NA,NA,NA +"Tfru12657_t",0,NA,NA,NA,NA,NA +"Tfru12658_t",191.452557985124,0.0634141807916345,0.224725679940942,0.28218484335346,0.777801779526186,0.858809207449605 +"Tfru16122_t",0,NA,NA,NA,NA,NA +"Tfru16123_t",0,NA,NA,NA,NA,NA +"Tfru16124_t",173.109075237042,1.92558635531452,0.998930247921942,1.92764846126172,0.0538988667192151,0.115713608131649 +"Tfru16125_t",57.1104758682216,1.79156388595708,1.27056410813774,1.41005390793146,0.158523765739018,0.273220013649536 +"Tfru16126_t",0,NA,NA,NA,NA,NA +"Tfru16127_t",0.513409474502536,-2.51028518389237,2.63648035081407,-0.952134986751282,0.341028527399003,NA +"Tfru16128_t",295.011317573084,-1.86097100713233,0.483143016802802,-3.85180152131207,0.000117252041904719,0.000576345420124669 +"Tfru16129_t",62.1073708603184,-0.44011031938037,0.283113965096407,-1.55453412278869,0.120057063805658,0.219983386930622 +"Tfru16130_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru16131_t",233.276313472767,-0.311604261176861,0.18708874588827,-1.66554251939318,0.0958045680546733,0.183944554077121 +"Tfru16132_t",56.451711624497,-0.243809376837532,0.377274444048368,-0.646238781035153,0.51812472768299,0.654417935862369 +"Tfru13334_t",5.40939227603216,2.09689454187047,0.999013397625226,2.09896538610497,0.0358199521306028,0.0824234555503693 +"Tfru24259_t",132.207366848874,-0.504820458079049,0.219197517240627,-2.30303912395538,0.02127664191286,0.0536893951978585 +"Tfru20089_t",155.078142770167,-0.568612183578414,0.273095862488495,-2.08209739392287,0.0373335745465908,0.0852055270602387 +"Tfru20090_t",966.301915419042,-1.03640488790362,0.156153137955327,-6.63710573783105,3.19902174955536e-11,4.66715167894713e-10 +"Tfru20639_t",5.28999585273864,0.0656584018191662,0.855185037943167,0.0767768364810068,0.938801078145837,0.963461434787596 +"Tfru20640_t",13.8144365620115,0.297260936212233,0.57230576366734,0.519409300209355,0.60347534721617,0.728291820401094 +"Tfru17724_t",0,NA,NA,NA,NA,NA +"Tfru04214_t",22.1091585533167,-2.42530033452573,0.579978766310948,-4.18170539234094,2.89330715604345e-05,0.000161557420539552 +"Tfru04215_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru04216_t",0,NA,NA,NA,NA,NA +"Tfru04217_t",17.8479127583781,1.49316578500447,0.951958114835024,1.56852046506609,0.116759717721699,0.215352108341159 +"Tfru09251_t",5.78292074770178,1.48678802603665,0.82734772529392,1.79705337983308,0.0723271458740573,0.146992510412405 +"Tfru09252_t",62.7625700130123,3.21071737499224,0.37323511213184,8.60239905257923,7.80668092574868e-18,2.42657665442021e-16 +"Tfru09253_t",172.040760033553,-0.191453127009871,0.225906852989261,-0.847487026075176,0.396723715538557,0.542507439432537 +"Tfru23617_t",343.097350266365,-0.746168279828224,0.169539501100323,-4.40114707773433,1.07680100819072e-05,6.5718043532338e-05 +"Tfru23618_t",221.669237164706,0.617929516702911,0.194965275729584,3.16943370756943,0.00152736295700901,0.00564065725707287 +"Tfru23619_t",8.32256003786402,0.575640893712132,0.715579111319788,0.804440605666144,0.421142558229057,0.566547904968652 +"Tfru23620_t",2.81002643927215,0.0659707962143201,1.0498916682955,0.0628358126904882,0.949897247800886,0.971047822460642 +"Tfru23621_t",123.953564681701,1.60587730946451,0.283867122953216,5.65714441587224,1.53912252098828e-08,1.55721347286246e-07 +"Tfru00371_t",7.90261195756269,0.279212628226387,0.677530907513187,0.412103160357969,0.680263812360698,0.789000897916199 +"Tfru00372_t",63.0389435365652,0.485527660043466,0.294169575260701,1.65050263819152,0.0988401741769791,0.188644303094047 +"Tfru00373_t",0,NA,NA,NA,NA,NA +"Tfru03076_t",0,NA,NA,NA,NA,NA +"Tfru03077_t",0,NA,NA,NA,NA,NA +"Tfru05192_t",21.8424827572777,-0.776670587532853,0.433721672088677,-1.79071196463998,0.0733395287173873,0.148618132261421 +"Tfru05193_t",25.1371988820928,-0.140919190359525,0.428851510483721,-0.328596698191819,0.742460544068936,0.834024342531888 +"Tfru05194_t",165.679675833877,-0.511753466779197,0.271261274403036,-1.88657031087615,0.0592181431525284,0.124788206697749 +"Tfru05195_t",127.781027233701,-0.246241857147787,0.328186436440967,-0.750310889804491,0.453067485469498,0.596379856770226 +"Tfru05196_t",0,NA,NA,NA,NA,NA +"Tfru05197_t",0,NA,NA,NA,NA,NA +"Tfru05198_t",0,NA,NA,NA,NA,NA +"Tfru05199_t",0,NA,NA,NA,NA,NA +"Tfru20538_t",50.0117644597482,-0.708757685742914,0.340309835980284,-2.08268351604147,0.0372800809555556,0.0851181607616134 +"Tfru20539_t",0,NA,NA,NA,NA,NA +"Tfru20540_t",117.230938684616,-0.847115996814206,0.249171207024891,-3.39973469217726,0.000674512661098938,0.00274615123801969 +"Tfru27414_t",323.184247937732,-0.473042376972769,0.195334177026953,-2.42170819347961,0.0154477494837989,0.0411670199389641 +"Tfru04677_t",444.060462288442,-0.398793684161542,0.161610032170055,-2.46762950793741,0.0136011011333406,0.0369902349452136 +"Tfru04678_t",34.0531672078245,-0.658324282676441,0.45703725440378,-1.44041711333849,0.149749424829121,0.261439435812132 +"Tfru13487_t",0,NA,NA,NA,NA,NA +"Tfru13488_t",0,NA,NA,NA,NA,NA +"Tfru13489_t",0,NA,NA,NA,NA,NA +"Tfru20602_t",0,NA,NA,NA,NA,NA +"Tfru06804_t",0,NA,NA,NA,NA,NA +"Tfru25408_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru31104_t",1.05342551685683,-3.53990792406841,2.13081860617698,-1.66129013225559,0.0966551908876401,0.185264060642804 +"Tfru31105_t",48.5822822650491,-2.23869584120839,0.333294766576188,-6.7168646666903,1.85676264646571e-11,2.79638950389653e-10 +"Tfru02846_t",0,NA,NA,NA,NA,NA +"Tfru02847_t",19.5173297313634,-1.6005216724154,0.477995367275833,-3.34840415198375,0.000812783894505681,0.00323609741310036 +"Tfru02848_t",22.1429047818633,-1.83574837580608,0.454733240088354,-4.0369786370783,5.41439970822005e-05,0.00028599071387766 +"Tfru24280_t",121.589346413759,-1.37335262745443,0.252258014237003,-5.44423784357603,5.20276647990666e-08,4.82744252986364e-07 +"Tfru20020_t",381.779640877687,7.66599558280636,0.692424234104349,11.071241018481,1.72988197181905e-28,1.24484754113538e-26 +"Tfru22957_t",151.867964431182,0.0175795465175778,0.225604035647175,0.077922127887245,0.937889997417235,0.962931376373875 +"Tfru22958_t",200.238208959499,-0.641512998457251,0.277009581471895,-2.31585129672613,0.0205663893048101,0.052179547969805 +"Tfru22959_t",0.291820569502774,-0.0642997256461447,3.90960142620042,-0.0164466191400577,0.986878088073871,NA +"Tfru22960_t",138.731092592089,-0.814488431356997,0.335155320442409,-2.43018201316888,0.0150912420492206,0.04038043962955 +"Tfru22961_t",11.8259053794113,1.74499089533638,0.60497019526662,2.88442456998619,0.00392129686099723,0.0128208361941736 +"Tfru26366_t",0,NA,NA,NA,NA,NA +"Tfru26367_t",600.97651635623,0.895903029917624,0.167071457125867,5.36239430319134,8.21260248472861e-08,7.39629954157852e-07 +"Tfru26368_t",4.14459196829588,0.515154029468914,0.879029491318556,0.58604863040053,0.557842835430965,0.688782119047144 +"Tfru26369_t",56.6146504163798,0.0518636189369559,0.327819563140944,0.158207821522407,0.874293040692554,0.922210737733089 +"Tfru26370_t",0,NA,NA,NA,NA,NA +"Tfru26371_t",119.727170092604,-2.65264082290483,0.280534889778278,-9.45565389389305,3.21009228240872e-21,1.3378373422776e-19 +"Tfru02216_t",563.130310677097,0.550323549399685,0.15350822030646,3.58497771846375,0.000337106984317418,0.00148104717491633 +"Tfru02217_t",0,NA,NA,NA,NA,NA +"Tfru17727_t",42.2980486913991,0.69157476411957,0.354076181920038,1.9531806979204,0.0507981874119476,0.110342951982858 +"Tfru17728_t",0,NA,NA,NA,NA,NA +"Tfru17729_t",354.391408633919,-1.39094134028233,0.280559301436578,-4.9577445237429,7.13162555912734e-07,5.4048689472831e-06 +"Tfru17730_t",1.4440873391388,0.887985145948098,1.46611362957048,0.605672799186954,0.544732049949972,0.677109103712242 +"Tfru17731_t",0,NA,NA,NA,NA,NA +"Tfru17732_t",1.30876829360534,1.56064578780192,1.65480262581472,0.943100864995037,0.345629313352681,0.491278757245665 +"Tfru17733_t",79.0210612862842,-0.424290740168057,0.267436107314549,-1.58651254846834,0.112623087872195,0.209269052037767 +"Tfru17734_t",0,NA,NA,NA,NA,NA +"Tfru17735_t",0.331203576625827,1.80866774407575,3.71959954607213,0.486253351112941,0.626787549194799,NA +"Tfru17736_t",0,NA,NA,NA,NA,NA +"Tfru17737_t",3.86303603004147,5.36131186622235,1.47139239930409,3.64369957922715,0.000268747084192251,0.00121285737935523 +"Tfru17738_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru17739_t",218.22436953086,-0.534168020556471,0.384562517732453,-1.38902778072641,0.164824302541414,0.281327630481761 +"Tfru24299_t",0,NA,NA,NA,NA,NA +"Tfru24300_t",12.4510872297653,-1.21389381776482,0.585063629836286,-2.07480649259379,0.0380044726159693,0.0865161323512759 +"Tfru24301_t",163.791473088423,-0.438589074902361,0.198378659535867,-2.21086822508277,0.0270449636216114,0.0652930189699744 +"Tfru24302_t",28.7031654236284,-0.0808256664871847,0.37532842636383,-0.215346509376391,0.829497170883946,0.892910653225508 +"Tfru24303_t",1944.54031832677,2.55350874231593,0.184579089376074,13.8342254853866,1.58433717618413e-43,2.7066767941222e-41 +"Tfru24304_t",356.608862513978,-1.04878328376583,0.18024156485683,-5.81876485925377,5.92840629494189e-09,6.34821688424878e-08 +"Tfru02157_t",213.091889921503,-0.624635354536098,0.178928805066431,-3.49097147496286,0.000481267633668175,0.00203375559695879 +"Tfru02158_t",33.7365670941443,-0.979041594450013,0.545503922543359,-1.79474712094705,0.0726939992496362,0.147550490042342 +"Tfru02159_t",0,NA,NA,NA,NA,NA +"Tfru02160_t",61.4414469330347,1.43972436780613,0.428521504905142,3.35974823042971,0.000780135319124317,0.00312109911369364 +"Tfru25800_t",2.43488571615849,0.507798097187945,1.34221003777852,0.378329831319393,0.705185587249906,0.808092854206497 +"Tfru25801_t",0,NA,NA,NA,NA,NA +"Tfru22190_t",308.499024632464,-0.496008984412522,0.208560275578237,-2.37825244063055,0.0173949127718665,0.0454628223559934 +"Tfru22191_t",139.280164518302,-0.774783680758563,0.203710283024249,-3.80336068094478,0.000142746287140759,0.000690289953805138 +"Tfru22192_t",159.050616034401,1.07874705888612,0.264393376209912,4.08008352686438,4.5019521004657e-05,0.000242429470665117 +"Tfru22193_t",1.09870152226803,-0.44913035790054,1.93075449018969,-0.232619092786061,0.816057200077543,0.883490238834369 +"Tfru22194_t",906.375443660129,-0.0148768473812832,0.149172375123872,-0.0997292385331373,0.920559287261531,0.952566897027606 +"Tfru22195_t",72.0331686763533,-0.121368765384822,0.357033760841643,-0.339936383323295,0.733904436531817,0.828112397377335 +"Tfru22196_t",0,NA,NA,NA,NA,NA +"Tfru22197_t",0,NA,NA,NA,NA,NA +"Tfru22934_t",78.6094562311013,-0.570360479121017,0.249091746321138,-2.28976065062263,0.0220351953728205,0.0552546411701651 +"Tfru01925_t",0,NA,NA,NA,NA,NA +"Tfru01926_t",72.8399797445899,0.0615182600987928,0.28606175417449,0.215052376632174,0.829726483089979,0.893022102142177 +"Tfru01927_t",0,NA,NA,NA,NA,NA +"Tfru01928_t",647.418448648625,0.766557217868104,0.334969283538134,2.28844033032311,0.0221118912584751,0.0554221976641475 +"Tfru01929_t",601.135822273992,0.624014586558963,0.193009430203106,3.23307822784775,0.00122464022869698,0.00464454301275012 +"Tfru01930_t",2892.89569578472,0.767095446672619,0.154921376246345,4.95151453762479,7.3638117488422e-07,5.56763874794218e-06 +"Tfru16072_t",149.411345889423,6.28710481358716,0.622915146918886,10.09303569625,5.93065075458609e-24,3.01654463380992e-22 +"Tfru17085_t",0.93347409136291,-2.20450967485226,2.29567536274344,-0.960288074973185,0.336910250108131,0.482273431041296 +"Tfru17086_t",352.72622378487,-0.347707204802586,0.171576634768629,-2.02654169824155,0.0427093041773388,0.0955834227488842 +"Tfru17087_t",0,NA,NA,NA,NA,NA +"Tfru17088_t",366.075477186424,-0.161963241449334,0.1903250316419,-0.850982343478971,0.39477916100623,0.540541691169026 +"Tfru11829_t",34.4615059721021,-0.930656019131045,0.455164125439209,-2.04466030408924,0.040888359742804,0.0920512514881756 +"Tfru11830_t",7.92389568325308,-0.677619326793211,0.720737524306338,-0.940174895771349,0.347127856561943,0.492720329159402 +"Tfru11831_t",352.592952804774,-0.328960333868821,0.186985173365402,-1.75928565857986,0.0785290012668217,0.156777792002807 +"Tfru11832_t",1.51962827124487,-2.92737531273316,1.83868734989241,-1.59210064337716,0.111362092571347,0.207448694854725 +"Tfru11833_t",0.793707910342854,3.08262177957958,2.26646805060142,1.36009937522022,0.173798478772404,0.29328984730255 +"Tfru11834_t",65.9238079949648,-0.0563166958700615,0.316308869143647,-0.178043366354315,0.858688918362532,0.912336592905121 +"Tfru11835_t",201.853747236811,-0.333671502454474,0.180123044109924,-1.8524642646548,0.0639591844743998,0.132993268469485 +"Tfru11836_t",33.9610702674254,0.24583767756672,0.397366473014499,0.618667387064007,0.536135498828765,0.669982269461598 +"Tfru11837_t",29.6402640952226,0.245144383484734,0.424755599365502,0.577142205661161,0.563843395094659,0.694180612950735 +"Tfru11838_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru11839_t",4.94691096376168,0.114957417064224,0.89945036012539,0.1278085174686,0.898300509383892,0.937458416319015 +"Tfru11840_t",959.688836078865,1.29313856704093,0.279035250806408,4.63431972592632,3.58113150816481e-06,2.39957254948289e-05 +"Tfru11841_t",44.2815083368438,7.91271866620397,2.30506532054392,3.43275246722155,0.000597487316863073,0.0024651001599732 +"Tfru11842_t",0,NA,NA,NA,NA,NA +"Tfru25814_t",186.249918233511,0.331842293686837,0.217885954358492,1.52300911118323,0.127756425963658,0.230761737663286 +"Tfru25815_t",204.945675482403,0.148591287980853,0.255276939292755,0.582078774496926,0.560513621423091,0.691261137473791 +"Tfru25816_t",46.3389115531296,-0.186828909236049,0.295132428513919,-0.633034160891059,0.526711335221049,0.661826943026617 +"Tfru25817_t",1.02681894900507,-3.51040020097916,2.07547102333045,-1.69137519219426,0.0907651672542099,0.17606215265575 +"Tfru27282_t",176.074187357708,-0.318078554634966,0.242960320223558,-1.30917902290501,0.190473716192784,0.314733386338073 +"Tfru28855_t",10.9488797613523,-0.359012782693304,0.64817265437004,-0.553884494004501,0.5796578976725,0.707848734103266 +"Tfru28856_t",71.1029878671575,7.10975239545361,1.01375277721754,7.01330004241058,2.32761539083706e-12,3.88167156832589e-11 +"Tfru28857_t",0,NA,NA,NA,NA,NA +"Tfru28858_t",6.30969071076396,4.10267770321248,1.28019780982026,3.20472170139745,0.00135193128624973,0.00507229206810881 +"Tfru28859_t",318.438700307699,1.19497500318717,0.171611269996528,6.96326647551381,3.32472075811361e-12,5.45108062758847e-11 +"Tfru28860_t",0,NA,NA,NA,NA,NA +"Tfru28861_t",0,NA,NA,NA,NA,NA +"Tfru21643_t",291.2264070473,-0.527612743913917,0.153881380548481,-3.42869775429191,0.000606484520320528,0.00249689543134169 +"Tfru21644_t",152.15101927305,-0.155349850537932,0.190274685447929,-0.816450439385674,0.414242558286764,0.559996886406389 +"Tfru21645_t",999.759145471658,-0.402930196933335,0.193251407342635,-2.08500523993049,0.0370688248967486,0.0847482175083494 +"Tfru21646_t",7.63646426061551,-1.85268978712014,0.790819053157976,-2.34274804042948,0.019142305311576,0.0492646831587099 +"Tfru21647_t",0,NA,NA,NA,NA,NA +"Tfru21648_t",9.53395829006953,3.7184881135107,1.01771998781979,3.65374381756679,0.000258444138542844,0.00116966224885517 +"Tfru21649_t",1.90614086550963,2.26395364987658,1.73959611642138,1.30142487012094,0.19311306538264,0.317714504393404 +"Tfru21650_t",230.063800575418,0.314521382755506,0.180866284166166,1.73897188304343,0.0820397087564473,0.162367233990917 +"Tfru21651_t",0,NA,NA,NA,NA,NA +"Tfru21652_t",1.52468800140289,0.29802133306172,1.63166492690069,0.182648611334561,0.855073739538504,0.910103916866279 +"Tfru21653_t",193.500578382749,-0.381534849497341,0.209114884780017,-1.82452267756408,0.0680730911282836,0.139832563510875 +"Tfru21654_t",61.9792327785302,0.110842869538091,0.271070117801792,0.408908478872394,0.682606826445934,0.790516987107891 +"Tfru21655_t",69.1037962980639,1.17429444605841,0.275604012798206,4.26080315063562,2.03693584554141e-05,0.000117400525941841 +"Tfru15900_t",98.2607506203883,1.52000426482447,0.263160374319273,5.77596178283422,7.65147408865646e-09,8.10411690033751e-08 +"Tfru15901_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru15902_t",3.44078777275681,5.19155510859837,1.62037770366456,3.20391665280102,0.00135571717567859,0.00508308768498689 +"Tfru15903_t",0,NA,NA,NA,NA,NA +"Tfru15904_t",0.84932066962191,1.83616364515997,2.08829625937497,0.879263963107196,0.379258170429402,0.525137527328468 +"Tfru15905_t",129.32484203887,2.03619127381959,0.269322332045879,7.5604249315379,4.01754695614536e-14,8.42668236912214e-13 +"Tfru23556_t",5.58426959641052,0.0856061047686174,0.82124799775044,0.104239042290647,0.916979651451802,0.950048821790256 +"Tfru23557_t",36.2271966095169,0.843841310400345,0.36298723191624,2.32471347806268,0.0200872861025334,0.0512194899139453 +"Tfru23558_t",290.997509845758,5.90954673320047,0.368173228036134,16.0509952467823,5.62546984272173e-58,1.85144139823695e-55 +"Tfru23559_t",0,NA,NA,NA,NA,NA +"Tfru23560_t",1.28882399464719,-1.66929898137077,1.68587103996596,-0.990170031869383,0.322091017720096,0.467052596578274 +"Tfru23561_t",8.46355633959055,6.48626966312173,1.36616253447088,4.74780232912322,2.05638865680478e-06,1.43773752387663e-05 +"Tfru23562_t",0.966439186468166,1.01431083562144,2.01023188334123,0.504574046420722,0.613858042499664,0.736708654608671 +"Tfru23563_t",290.7202713728,-0.282989851217073,0.2047195825255,-1.38232917303758,0.166870652389447,0.284040553732569 +"Tfru23564_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru23565_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru23566_t",0,NA,NA,NA,NA,NA +"Tfru23567_t",21.292751586703,-1.39352431231982,0.447256780609575,-3.11571422219816,0.00183500010475451,0.00663767057423269 +"Tfru23568_t",0,NA,NA,NA,NA,NA +"Tfru23569_t",0,NA,NA,NA,NA,NA +"Tfru16291_t",0,NA,NA,NA,NA,NA +"Tfru16292_t",0,NA,NA,NA,NA,NA +"Tfru16293_t",0,NA,NA,NA,NA,NA +"Tfru16294_t",27.9462267143442,-0.33590838876392,0.444095750514537,-0.756387306959662,0.449417015972617,0.593214557208326 +"Tfru16295_t",0,NA,NA,NA,NA,NA +"Tfru16296_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru16297_t",1.28602776792054,2.5909914408665,1.85444326307884,1.39718021707756,0.162359384155012,0.278175560045354 +"Tfru16298_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru16299_t",1203.59918253793,-0.257088596898343,0.163921610442671,-1.56836304989974,0.116796429240235,0.215402067276182 +"Tfru16300_t",355.056736502392,0.502405838600082,0.231134273633583,2.17365356812701,0.0297311621733905,0.0705902195459875 +"Tfru16301_t",155.238841909343,0.867452651327433,0.241359591931184,3.59402601067853,0.000325607310351456,0.00143474928247009 +"Tfru16302_t",35.2666273060718,1.04377466383836,0.451939512540427,2.3095450494495,0.0209133548513125,0.0528800001776493 +"Tfru16303_t",123.617674146012,-0.407862920422703,0.210554914580575,-1.93708573003468,0.0527348646694033,0.11377675419852 +"Tfru16304_t",0,NA,NA,NA,NA,NA +"Tfru16305_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru16306_t",8.44060179470629,0.387422239967273,0.660307298034976,0.586730210494738,0.557384914683337,0.688349762201362 +"Tfru16307_t",2.16874237969203,2.49907384547955,1.71045885586702,1.46105463858865,0.144000447452051,0.253798237043384 +"Tfru16308_t",15.1704675836628,0.363932353112278,0.490656206487984,0.741725771120333,0.45825350228531,0.601155532306286 +"Tfru16309_t",35.6208891287571,0.373208213936667,0.368488823948651,1.01280741689109,0.311152157332313,0.455314847724412 +"Tfru16310_t",223.60664493019,-0.00801514563618499,0.235910208417483,-0.0339754082282054,0.972896760767663,0.984928880345981 +"Tfru16311_t",21.5222723093414,1.45962631118646,0.545224975652452,2.67710830641934,0.00742606254908401,0.02223348225398 +"Tfru26340_t",0,NA,NA,NA,NA,NA +"Tfru26341_t",0,NA,NA,NA,NA,NA +"Tfru26342_t",0,NA,NA,NA,NA,NA +"Tfru26343_t",5.43236934065809,0.551724301498039,0.855402231839261,0.64498814822091,0.518934866158183,0.655182348224085 +"Tfru26344_t",54.5292625565818,0.281948433552595,0.280563361762005,1.00493675218992,0.314927306025531,0.459419028000423 +"Tfru26345_t",8.86939231850248,0.411065218627386,0.626514448333477,0.656114507368212,0.511750450786671,0.648673260568968 +"Tfru26346_t",0,NA,NA,NA,NA,NA +"Tfru08590_t",464.027191956087,2.52763121749826,0.231272340696321,10.9292413000535,8.35439904062326e-28,5.58123732922831e-26 +"Tfru08591_t",0.656737956049442,2.79996060668216,2.44164273652627,1.14675278442483,0.251483808144866,NA +"Tfru08592_t",37.9808147371114,-0.0750755367605607,0.320193111207774,-0.234469556441656,0.81462046494695,0.882610670290121 +"Tfru08593_t",1.28726594739823,0.00707474342338987,1.65212039512256,0.00428222025723799,0.996583293013055,0.998144287206631 +"Tfru20374_t",4.45912081959023,0.00927313547798023,0.865569789535842,0.0107133307909844,0.991452162281075,0.995890724644156 +"Tfru20375_t",56.1626864727323,0.000294560636966085,0.307747332013532,0.000957150903758714,0.999236304188141,0.999703771013217 +"Tfru20376_t",0,NA,NA,NA,NA,NA +"Tfru20377_t",29.684224748174,0.260337956260337,0.388600871845148,0.669936624239171,0.502898191465652,0.640463297388112 +"Tfru20378_t",1.42450296977981,2.80975680413654,2.23272523995409,1.25844271111224,0.208231693550081,0.336405493514098 +"Tfru20379_t",38.7481280292453,-0.162860798685359,0.321711111163445,-0.506233055166743,0.612693052537924,0.73562610063298 +"Tfru20380_t",21.9911629449723,-0.270272954472019,0.440626968149749,-0.613382688778518,0.539623329750035,0.67280056377748 +"Tfru20381_t",18.7568345837305,0.0235245685159279,0.460101942139728,0.051129035462284,0.959222699291671,0.976590119650059 +"Tfru20382_t",172.775404304295,0.294988283819791,0.176863098594134,1.66789051059618,0.0953374637797882,0.183287727806173 +"Tfru20383_t",4.37106392285076,-1.10957911884426,1.06676775154757,-1.04013185366223,0.298278646440466,0.441353792220669 +"Tfru11910_t",7.06598958732023,0.172329854096105,0.803341594389615,0.21451628460374,0.830144469250329,0.893226106136875 +"Tfru11911_t",656.623347208147,-0.523644764657137,0.162976448732704,-3.21300880421049,0.00131352263020675,0.00493812136133498 +"Tfru11912_t",0,NA,NA,NA,NA,NA +"Tfru11913_t",2.0476727771025,3.37675132467494,1.63585224150617,2.06421536065255,0.0389973017450159,0.088407578307684 +"Tfru13913_t",6.54695756252459,0.843383024133797,0.746945792561924,1.12910874193575,0.258851964000251,0.396543702808243 +"Tfru13914_t",212.898414912133,4.06203317800321,0.342097594132911,11.8739016224272,1.61744501680651e-32,1.47748650922978e-30 +"Tfru13915_t",0,NA,NA,NA,NA,NA +"Tfru13916_t",0,NA,NA,NA,NA,NA +"Tfru13917_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13918_t",2.69874153594973,3.80159596663193,1.55372820423376,2.44675739056093,0.0144147832063253,0.0388444127823672 +"Tfru13919_t",0.90488062921787,3.28377334187813,2.25266314371103,1.45772942174943,0.14491513889244,0.254988663292146 +"Tfru13920_t",222.599117594664,0.93827330726522,0.220067155926299,4.26357719449716,2.01179954051845e-05,0.000116101273122236 +"Tfru13921_t",2.94669708158418,-1.32410752194597,1.20404309044646,-1.09971771978277,0.271455131707639,0.411178902760367 +"Tfru13922_t",0,NA,NA,NA,NA,NA +"Tfru13923_t",0,NA,NA,NA,NA,NA +"Tfru13924_t",72.7711882129641,-0.836295275674973,0.289710672203418,-2.88665677834531,0.00389358711070728,0.0127414065707894 +"Tfru13925_t",1047.88972874173,0.00499353961755871,0.135793191968772,0.0367731220185698,0.970665905070585,0.983453436347489 +"Tfru13926_t",5.78428723775802,1.03478510149425,0.819854868192409,1.26215643968269,0.206892499667152,0.334604288376273 +"Tfru13927_t",368.098094195652,1.12917748573346,0.26142738493974,4.31927774511356,1.56540670036131e-05,9.24862775979044e-05 +"Tfru13928_t",4.77632589522915,-0.781354160113697,0.849028113831055,-0.920292446604631,0.357419955204598,0.503528805078616 +"Tfru13929_t",0.939701679041467,3.29757954982876,2.79090766349953,1.18154376547661,0.237386778018834,0.371856659344964 +"Tfru13930_t",10.9246084234011,0.566237457092531,0.723008455705398,0.783168512932654,0.433528162443686,0.578451098520818 +"Tfru13931_t",16.1669108145945,0.0594510877914493,0.663460855988818,0.0896075288463609,0.928599101324657,0.957477442416301 +"Tfru13932_t",101.532783178388,-0.709853405400797,0.240771827002386,-2.94824113866844,0.00319587668342101,0.0107684011103526 +"Tfru13933_t",77.3048663745181,1.39868256422319,0.27071355711676,5.16665134587234,2.38325232653231e-07,1.97838230963625e-06 +"Tfru13934_t",28.7561114996129,0.29839495239843,0.39605304652112,0.753421681816346,0.451196557821764,0.594754677720353 +"Tfru13935_t",117.173074674845,-0.760050651709831,0.250722746638325,-3.03143875815235,0.00243391288645818,0.0084964857898821 +"Tfru13936_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13937_t",8.84560855043958,0.989216584052073,0.698449681770194,1.41630329266518,0.156686724219104,0.27095108082395 +"Tfru13938_t",71.7321886624394,0.263943098189887,0.294435787407002,0.896436878527391,0.370019478415953,0.51633844163543 +"Tfru13939_t",870.355234657691,-0.346229606007966,0.154829131969253,-2.23620452820676,0.0253383767425011,0.0619210385998226 +"Tfru13940_t",18.5835356863634,-0.428813476360749,0.495793534329899,-0.864903325010726,0.387091852466049,0.53347593190407 +"Tfru13941_t",1256.7806235202,0.256037066006019,0.144085538913272,1.77697961875363,0.0755715932400326,0.152272643982347 +"Tfru13942_t",276.701501960709,-1.70108914485366,0.226432401679075,-7.51256945666561,5.79779627986789e-14,1.19150303712987e-12 +"Tfru13943_t",0,NA,NA,NA,NA,NA +"Tfru13944_t",769.932317498447,0.185288537805358,0.148503155419988,1.2477077492484,0.212138102394239,0.341606758640313 +"Tfru13945_t",0,NA,NA,NA,NA,NA +"Tfru23507_t",16.0462427465197,0.441695447561916,0.483219005998643,0.914068863349213,0.360680662198396,0.506814417027695 +"Tfru23508_t",11.8264605532702,0.539235540128631,0.596578101504217,0.903880881260975,0.366058567964595,0.512152460055492 +"Tfru23509_t",1635.97850061537,0.230119418773951,0.290187572787442,0.793002321097016,0.4277764704591,0.572757248511795 +"Tfru23510_t",146.150872801242,-0.147283924897261,0.213434821618387,-0.690065115806635,0.490153239326592,0.628758011365395 +"Tfru03794_t",2.81644435128994,-0.621995164830351,1.11442829065187,-0.55812937453923,0.57675604336228,0.705382821490126 +"Tfru03795_t",176.996425315312,-0.788989031589472,0.34050436377715,-2.31711870836945,0.0204972661628755,0.0520572874177432 +"Tfru03796_t",253.189022465966,-0.711097081057136,0.195047048248184,-3.6457720711175,0.000266590192395927,0.00120336597535717 +"Tfru03797_t",98.8579053523636,0.169763266063153,0.217530837174748,0.780410116873578,0.435149514867415,0.580061119943578 +"Tfru03798_t",86.3710809775193,0.548993877793853,0.246382284318827,2.2282197736402,0.0258658631027015,0.0629762854915644 +"Tfru08605_t",159.766492349626,-0.481825537133457,0.258871587132275,-1.86125307327474,0.0627084466558755,0.130854548825967 +"Tfru08606_t",141.277572331814,-0.655982454425249,0.2895682418288,-2.26538121129002,0.0234892963062295,0.058267847623164 +"Tfru08607_t",7.80727756826178,-0.528205718934861,0.723915686642271,-0.729650881561679,0.465603612121191,0.607386936479332 +"Tfru08608_t",0.786540050655994,-0.673172064546771,2.13018352319652,-0.316015994498267,0.75199036792534,0.840510634478805 +"Tfru08609_t",5.15641934462264,-0.307962197523677,0.812842930514382,-0.378870487719925,0.704784040664752,0.807799137039354 +"Tfru08610_t",133.491909903784,0.198361843823114,0.225285476652202,0.880491040837697,0.378593356486303,0.524444127145547 +"Tfru08611_t",0.789000291849307,0.521136719911066,2.13030919626414,0.244629615656248,0.806743230676822,0.877901074712986 +"Tfru08612_t",56.3020851227232,1.94319570605521,0.347657075935453,5.5894035834783,2.27850835639022e-08,2.23751720122919e-07 +"Tfru08613_t",121.652362924764,0.149505634501739,0.239453265747985,0.624362478560171,0.532389560746229,0.666865079168333 +"Tfru06088_t",0.731736623810304,0.392226090363704,2.5145364329339,0.155983458909785,0.876046059499891,NA +"Tfru06089_t",50.989237662067,-0.372664253230546,0.353966436138617,-1.05282370073248,0.292421800396281,0.43495945054292 +"Tfru06090_t",36.6799581592401,-0.192277524724188,0.43829267695106,-0.438696640020883,0.660881362008394,0.774588082006215 +"Tfru06091_t",1.81309974950759,-1.36930607484431,1.59827152700343,-0.856741831227884,0.391587579451668,0.537487846277813 +"Tfru06092_t",1.56794363577411,-0.30420200243414,2.09128644566041,-0.145461662157943,0.884346382924079,0.928781009616371 +"Tfru06093_t",188.448712454514,-0.216738190019555,0.19644944236768,-1.10327719644987,0.269906806299155,0.409595260935206 +"Tfru06094_t",0,NA,NA,NA,NA,NA +"Tfru06095_t",169.51773416424,0.131505482176484,0.219979234813626,0.597808617199258,0.549967640196603,0.681823387303344 +"Tfru06096_t",0,NA,NA,NA,NA,NA +"Tfru23840_t",0,NA,NA,NA,NA,NA +"Tfru00924_t",0,NA,NA,NA,NA,NA +"Tfru11986_t",16.0360612724429,0.397980416429379,0.510852158855171,0.779052039872476,0.435949060293112,0.580746426747609 +"Tfru11987_t",8.8731894348552,-0.103062938735438,0.636900624559957,-0.161819497047354,0.871447998974283,0.920561041114153 +"Tfru11988_t",6.24828069290976,-0.0315092746808807,0.836458734927727,-0.0376698495277274,0.969950915518513,0.983040552907541 +"Tfru09133_t",4.95679922904555,2.01863445973796,1.16914717419283,1.72658712632275,0.0842418396045997,0.16606468513617 +"Tfru09134_t",0,NA,NA,NA,NA,NA +"Tfru16429_t",255.428439496707,-0.180183266470266,0.210618579004365,-0.855495594557837,0.39227684225809,0.538202288483083 +"Tfru16430_t",39.5035030090065,-0.243334695198238,0.386061840659327,-0.630299785087965,0.528498463578419,0.663439287350517 +"Tfru19601_t",1.14279214788463,2.42309320706184,1.87956902442464,1.28917489891257,0.197337289387869,0.322978538576899 +"Tfru04938_t",326.363310013997,0.367204961261572,0.190654413623163,1.92602392089055,0.0541013870536121,0.116009297907429 +"Tfru06422_t",0,NA,NA,NA,NA,NA +"Tfru17844_t",0,NA,NA,NA,NA,NA +"Tfru17845_t",173.090164879062,1.99240794226819,0.21405547281481,9.30790470371163,1.30378898954224e-20,5.18273491757642e-19 +"Tfru17846_t",0,NA,NA,NA,NA,NA +"Tfru17847_t",0,NA,NA,NA,NA,NA +"Tfru12117_t",0,NA,NA,NA,NA,NA +"Tfru01212_t",138.244265218895,-0.0501930672528696,0.252701016887767,-0.198626297080403,0.842555081362331,0.901313642793794 +"Tfru01213_t",148.214059502249,0.153387827113297,0.256175558216507,0.598760585050278,0.549332549603244,0.681257832808213 +"Tfru19141_t",67.0369784887453,-0.316835146389528,0.283330281354771,-1.11825373862105,0.263458638733369,0.4022790704 +"Tfru19142_t",216.459870636631,-0.530061715383655,0.1957901210104,-2.70729550933522,0.00678338464724347,0.0205902818941149 +"Tfru06835_t",0,NA,NA,NA,NA,NA +"Tfru25289_t",0,NA,NA,NA,NA,NA +"Tfru11325_t",0.797665581167339,-0.703483046016241,2.48923950899887,-0.282609625740341,0.777476100749397,0.858534323519589 +"Tfru11683_t",668.316672605634,0.143401734373839,0.137294125178542,1.04448558295816,0.296260785982833,0.439093800681841 +"Tfru07972_t",30.8236647414383,-0.0351400298714078,0.380748496217301,-0.0922919728390805,0.926466065897459,0.956313223259404 +"Tfru07973_t",125.122641666454,-0.209077296686053,0.226556569865147,-0.922848085184649,0.356086378139259,0.502155837602812 +"Tfru07974_t",0,NA,NA,NA,NA,NA +"Tfru23515_t",121.886529461497,-0.401059451333541,0.219957602650349,-1.823348893155,0.0682505655067749,0.140145669881789 +"Tfru23516_t",0,NA,NA,NA,NA,NA +"Tfru23517_t",231.136195524918,0.627130810849936,0.189881985024621,3.30273991378709,0.000957451461499761,0.00374676756572209 +"Tfru24276_t",0,NA,NA,NA,NA,NA +"Tfru05800_t",0,NA,NA,NA,NA,NA +"Tfru08671_t",6.28039639375374,-0.401200842845915,0.71805564866144,-0.558732242541106,0.576344471177509,0.705149205387746 +"Tfru15500_t",1627.56697576209,-0.558886257592744,0.145922137111721,-3.83003064959808,0.000128127299150278,0.000625542965746775 +"Tfru14407_t",103.217745605387,-0.209187337790933,0.222095575297074,-0.941879807876069,0.346254179133994,0.491823338983168 +"Tfru24269_t",0,NA,NA,NA,NA,NA +"Tfru08586_t",0,NA,NA,NA,NA,NA +"Tfru19252_t",492.547465477493,0.400723451898736,0.259641837793877,1.54337011054767,0.122741001475738,0.223637841978915 +"Tfru25333_t",88.4854266970867,0.0354030772363095,0.323126757501647,0.10956405315994,0.91275512039705,0.947074949904306 +"Tfru16764_t",44.1806967450308,0.0237253198533427,0.301564004502111,0.078674243275532,0.937291732850712,0.962582093483799 +"Tfru15894_t",0,NA,NA,NA,NA,NA +"Tfru06862_t",0,NA,NA,NA,NA,NA +"Tfru03904_t",65.3721697108907,1.77252857570257,0.286819842447704,6.17993706633375,6.41271600041415e-10,7.87254986776021e-09 +"Tfru11676_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru04756_t",170.220375574318,-0.139216999853854,0.200725402233091,-0.693569415256119,0.487952279731436,0.626690012167857 +"Tfru01936_t",137.897878974629,-0.0377528843055068,0.248916546519705,-0.151668841759855,0.879448133490846,0.925778420861953 +"Tfru02114_t",0,NA,NA,NA,NA,NA +"Tfru30403_t",157.326703736312,-0.565084775417987,0.184158594509962,-3.06846811533099,0.00215159287412,0.00761667961448995 +"Tfru30404_t",0,NA,NA,NA,NA,NA +"Tfru22374_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru23853_t",4.8416583840459,-0.947828563928142,0.913192957081618,-1.03792802668695,0.299303564265333,0.442548478346865 +"Tfru23854_t",3.55424019037236,-0.769761637833024,0.969147476939292,-0.794266771723993,0.427040143877048,0.57211364381732 +"Tfru23855_t",0,NA,NA,NA,NA,NA +"Tfru01912_t",0,NA,NA,NA,NA,NA +"Tfru27619_t",1067.64062435461,0.538665448994225,0.141387279955923,3.8098579247168,0.000139046673050645,0.000674732121178107 +"Tfru04676_t",4.04928587517245,5.42086280456176,1.60177050348478,3.38429431230519,0.000713614646300826,0.00288227680639099 +"Tfru14387_t",0,NA,NA,NA,NA,NA +"Tfru04560_t",59.4409227288179,0.012394191209112,0.300176663801715,0.0412896560716628,0.967064979298513,0.98119022466917 +"Tfru30204_t",17.8775427061112,0.184759565087407,0.619513172183026,0.298233473287349,0.765524975561408,0.850372211895781 +"Tfru30205_t",36.2935975700709,-0.357285866303705,0.390846850682561,-0.914132647300993,0.360647149642512,0.506799146615561 +"Tfru03756_t",215.377863222117,0.00197617463546819,0.197706133753888,0.0099955150502726,0.992024865664041,0.996253825154195 +"Tfru08140_t",0,NA,NA,NA,NA,NA +"Tfru13021_t",0,NA,NA,NA,NA,NA +"Tfru29477_t",70.7852986407017,0.85354883972998,0.291260320728421,2.9305359466587,0.00338377841841709,0.0113062049871864 +"Tfru29478_t",24.2004634394338,0.851667708103449,0.416389069269172,2.04536519077761,0.0408188680505976,0.0919317970184536 +"Tfru15843_t",0,NA,NA,NA,NA,NA +"Tfru15844_t",9.85878166956201,-4.86646266250219,1.16301984402199,-4.18433330051604,2.86004229578974e-05,0.00015993939675106 +"Tfru23256_t",1.44028191458962,1.8079139111216,2.08485585981023,0.867164942177906,0.385851641930554,0.532323988805683 +"Tfru24467_t",0,NA,NA,NA,NA,NA +"Tfru01683_t",0,NA,NA,NA,NA,NA +"Tfru09952_t",0,NA,NA,NA,NA,NA +"Tfru09953_t",11.1214497404142,-1.37808521334415,0.590514413954676,-2.33370292202541,0.0196112829854751,0.0502692146621157 +"Tfru02872_t",0,NA,NA,NA,NA,NA +"Tfru24765_t",4.67483548142939,0.568279356942653,0.913222981613141,0.62227886111542,0.533758518583015,0.667944287960628 +"Tfru09668_t",7.20469122763089,2.61164427650173,0.886052198649825,2.94750611812869,0.00320348413166913,0.0107907848986687 +"Tfru11107_t",0,NA,NA,NA,NA,NA +"Tfru22355_t",0,NA,NA,NA,NA,NA +"Tfru09647_t",0,NA,NA,NA,NA,NA +"Tfru28166_t",0,NA,NA,NA,NA,NA +"Tfru01377_t",672.414302443792,0.253348917957879,0.166368946030653,1.52281374620959,0.127805309883682,0.230798259920666 +"Tfru26739_t",13.6061560686678,-0.73102856896556,0.573846671635181,-1.2739092254077,0.202695588537983,0.32962703614882 +"Tfru25554_t",0,NA,NA,NA,NA,NA +"Tfru19448_t",0,NA,NA,NA,NA,NA +"Tfru19449_t",0,NA,NA,NA,NA,NA +"Tfru24050_t",25.2408104207277,-0.0943342212523797,0.423730652277809,-0.222627796089983,0.823825201164134,0.888711462549567 +"Tfru16497_t",0,NA,NA,NA,NA,NA +"Tfru08049_t",0,NA,NA,NA,NA,NA +"Tfru26891_t",0,NA,NA,NA,NA,NA +"Tfru09071_t",0,NA,NA,NA,NA,NA +"Tfru09072_t",0,NA,NA,NA,NA,NA +"Tfru01233_t",122.902858895603,0.0418086591582035,0.266788837499905,0.156710676316127,0.875472872565366,0.922591839149262 +"Tfru01234_t",183.962779306804,0.212710462268178,0.198108534012175,1.07370670995479,0.282954153059744,0.424345905345914 +"Tfru00646_t",0,NA,NA,NA,NA,NA +"Tfru00647_t",0,NA,NA,NA,NA,NA +"Tfru23210_t",187.473771329909,-0.767217485897198,0.226703743147681,-3.38422945843206,0.000713783239095299,0.00288243754798859 +"Tfru23211_t",135.594441840228,-0.480359092252292,0.207282527242462,-2.31741236776029,0.0204812792660668,0.0520284937542083 +"Tfru23212_t",129.774884620458,-1.2697391965706,0.280474991056346,-4.5271030824831,5.97977747566002e-06,3.83372404453806e-05 +"Tfru23213_t",140.466063811959,-0.434113425957889,0.240815127613901,-1.80268337068053,0.0714379552690002,0.145488606682364 +"Tfru23214_t",1141.73511020432,-0.169857362238766,0.178201806075369,-0.953174190428383,0.340501821005947,0.486123179565349 +"Tfru23215_t",3.5648569332852,3.22432142541285,1.31424213275152,2.45336939446795,0.0141524922267267,0.0382398355780385 +"Tfru23216_t",63.2772309280047,2.72469775950955,0.634805701304945,4.29217594282549,1.7693066067649e-05,0.000103359649854864 +"Tfru23217_t",93.1070794857735,-0.516765378221577,0.275000747647648,-1.87914172103887,0.0602251447082769,0.126593288116017 +"Tfru24544_t",111.931796322335,-0.689240134893701,0.231863760428371,-2.97260828350373,0.0029528103305555,0.0100676257156965 +"Tfru24545_t",1.03398680869193,-0.104277112972087,1.79909416771955,-0.057960897680116,0.953779775268121,0.973528749908809 +"Tfru24546_t",1086.800028261,-0.376971683165146,0.234309952031063,-1.60885903435791,0.107647168835099,0.202092411587074 +"Tfru24547_t",10.17667487058,1.50369096016482,0.694908193699996,2.16386995260267,0.0304743315721043,0.0720625871623892 +"Tfru24548_t",2.56425312954999,4.75508060291321,1.72329338476121,2.75929835567267,0.00579256230850464,0.0180027141319725 +"Tfru24549_t",177.849368164085,-0.173603972988504,0.196734202501393,-0.882429037661993,0.377544838645386,0.523348001789021 +"Tfru24550_t",12.7810828954118,-0.445137431123365,0.544526585876163,-0.817476029030104,0.413656442616993,0.559407286589419 +"Tfru24551_t",3634.44490431885,1.04612354767308,0.302467390180627,3.45863250596488,0.000542925138495441,0.0022635366243532 +"Tfru24552_t",47.6670242246713,3.6416371254003,0.693716995063435,5.24945640847,1.5254869175236e-07,1.31157884034491e-06 +"Tfru24553_t",12.3098313678708,2.8161881697036,0.662138432020886,4.25317129094656,2.10764231788486e-05,0.000121101502116209 +"Tfru24554_t",624.79242793345,-0.492546745198085,0.394257188024059,-1.24930314566143,0.21155421782983,0.340846202434916 +"Tfru24555_t",0,NA,NA,NA,NA,NA +"Tfru24556_t",1943.2593060753,-0.812816415324279,0.19306834146828,-4.2099932549419,2.55378312443606e-05,0.000144509902212084 +"Tfru24557_t",250.061293791794,0.728262981537981,0.366496445226943,1.98709425704532,0.0469119525489626,0.103401799346869 +"Tfru24558_t",0.784140427080461,0.400416338149856,2.12905713713156,0.188072142906098,0.850820098147917,0.907266075833307 +"Tfru24559_t",32.3640044713502,0.493286354318566,0.381837833727198,1.29187395995702,0.196400796967708,0.321916642459154 +"Tfru24560_t",303.32102168111,-0.51283117753027,0.153359066587603,-3.34398995078211,0.000825827287755212,0.0032827734813431 +"Tfru24561_t",480.318877520368,-0.284383612490228,0.212571699408584,-1.33782442950514,0.180953676319425,0.302558332165015 +"Tfru24562_t",196.984570727117,0.367195753455915,0.262947355882671,1.39646109854689,0.162575687304118,0.278487859308546 +"Tfru24563_t",4.36866167027884,-0.450446074329882,0.99840861424656,-0.451164050372109,0.65187131747079,0.767431882430104 +"Tfru24564_t",6.30838820678928,0.114725366841346,0.741423560925539,0.154736607908887,0.877028968622299,0.923927147324753 +"Tfru24565_t",39.3350760888432,0.537915125121663,0.339299549308644,1.58536940652505,0.112882427933559,0.2096521773571 +"Tfru24566_t",542.766947012168,-0.222893813973951,0.178785754231015,-1.24670902853895,0.21250420713054,0.342076401101816 +"Tfru24567_t",755.656122938613,-0.224154006848832,0.169767321474383,-1.32036015472303,0.186714800239755,0.30983000143588 +"Tfru24568_t",738.15647007566,-0.503075376121119,0.14696309063983,-3.42314096642151,0.000619019664434964,0.00254169090773434 +"Tfru24569_t",269.042522527269,-0.0392296737404225,0.157882406410307,-0.248474004370517,0.803767681022142,0.875812878001633 +"Tfru24570_t",169.231621331836,0.0385808868685371,0.244807541115101,0.157596807242133,0.874774519584718,0.922543702722243 +"Tfru24571_t",0,NA,NA,NA,NA,NA +"Tfru24572_t",0,NA,NA,NA,NA,NA +"Tfru24573_t",0,NA,NA,NA,NA,NA +"Tfru24574_t",0,NA,NA,NA,NA,NA +"Tfru24575_t",2.91773235649677,3.93773484418876,1.70431724060593,2.31044711064989,0.0208634134563681,0.0527895074226703 +"Tfru24576_t",1.83555849385414,4.30080481714395,1.79153598834701,2.40062429396808,0.0163671312476516,0.0431647887488149 +"Tfru24577_t",2.88787413344275,-5.00459255123402,1.55823093582735,-3.21171428198915,0.00131945529164391,0.00495792636450481 +"Tfru24578_t",0,NA,NA,NA,NA,NA +"Tfru30438_t",0,NA,NA,NA,NA,NA +"Tfru30439_t",0,NA,NA,NA,NA,NA +"Tfru30440_t",0,NA,NA,NA,NA,NA +"Tfru30441_t",0,NA,NA,NA,NA,NA +"Tfru30442_t",23.7739476138365,1.17619138855216,0.510571280055159,2.30367714459985,0.0212407737521409,0.0536109751407367 +"Tfru30443_t",1762.22666659925,1.01911049325697,0.275775407901746,3.69543644595048,0.000219509385775946,0.00101165981335784 +"Tfru30444_t",493.078333993628,0.669372793630124,0.152034180121897,4.40277832980347,1.06873348767674e-05,6.52612699978318e-05 +"Tfru30445_t",148.452596073996,0.549971973616524,0.230408758519695,2.3869403973613,0.0169892453890422,0.0445743624626921 +"Tfru30446_t",1087.52480963488,0.471456916017718,0.301312948059928,1.56467526222587,0.117659071737057,0.216561532290451 +"Tfru30447_t",35.230207448863,1.98331541738956,0.618412441138676,3.20710788699157,0.00134076702854527,0.00503378059031087 +"Tfru30448_t",0,NA,NA,NA,NA,NA +"Tfru30449_t",0,NA,NA,NA,NA,NA +"Tfru30450_t",2.48298681228268,-0.430880692029085,1.32389206291674,-0.325465122194166,0.744829075386415,0.835720179842974 +"Tfru30451_t",3.01360637277742,-0.248376962867598,1.08980477941486,-0.227909592212429,0.819716525448631,0.88585908733113 +"Tfru30452_t",34.6930648917975,-0.781980456824036,0.358151219826987,-2.18338068819587,0.0290077869107863,0.0691514988350445 +"Tfru30453_t",92.2760345122937,-0.264447065056565,0.237211942856114,-1.11481345278206,0.264930370374229,0.403975041832476 +"Tfru30454_t",43.8456433016847,-1.93359667375953,0.340295427891912,-5.68211182188935,1.33041624351587e-08,1.35587668738607e-07 +"Tfru30455_t",568.04907241607,-1.14621726792181,0.499439983924774,-2.29500501524614,0.0217328368813755,0.0546346535632209 +"Tfru30456_t",40.2271035433596,0.230420690738288,0.332034971212986,0.693965126313407,0.487704079346773,0.626460270664109 +"Tfru30457_t",51.2732299142373,0.122957602479494,0.282888509946594,0.434650394612023,0.663816209842018,0.77671390057324 +"Tfru30458_t",173.117971521422,0.238287187235014,0.184319166945742,1.29279657229114,0.196081426237711,0.32148734939194 +"Tfru30459_t",78.1485909167784,0.415048322737698,0.252241314314861,1.64544148473479,0.0998788004349163,0.190253430396921 +"Tfru30460_t",7.13701002846673,0.864460326941476,0.710997327610076,1.21584187924763,0.224045161961793,0.355990821775287 +"Tfru30461_t",61.6312335482047,-0.510573252580799,0.49929674908717,-1.02258477251103,0.306504212362408,0.449936175837819 +"Tfru30462_t",0,NA,NA,NA,NA,NA +"Tfru30463_t",0,NA,NA,NA,NA,NA +"Tfru30464_t",0,NA,NA,NA,NA,NA +"Tfru30465_t",0,NA,NA,NA,NA,NA +"Tfru30466_t",0,NA,NA,NA,NA,NA +"Tfru30467_t",0,NA,NA,NA,NA,NA +"Tfru30468_t",0,NA,NA,NA,NA,NA +"Tfru30469_t",0,NA,NA,NA,NA,NA +"Tfru30470_t",0,NA,NA,NA,NA,NA +"Tfru30471_t",0,NA,NA,NA,NA,NA +"Tfru30472_t",0,NA,NA,NA,NA,NA +"Tfru30473_t",0,NA,NA,NA,NA,NA +"Tfru30474_t",133.275204865134,-0.426881488938809,0.222205291390455,-1.92111306741432,0.0547174545406951,0.117016400632657 +"Tfru11551_t",76.3407600346305,-0.161058080262069,0.246138315266586,-0.654339736126133,0.512892950758172,0.649606351894052 +"Tfru11552_t",860.918452704741,-0.258719567123288,0.152349594907071,-1.69819661995885,0.0894706582922628,0.174223730321138 +"Tfru11553_t",100.219747011917,-0.471980977228372,0.371090180797067,-1.2718767611005,0.203416909895057,0.330507783948951 +"Tfru11554_t",0,NA,NA,NA,NA,NA +"Tfru11555_t",0.634149676639945,1.36312208193116,2.56611467516361,0.531200766327501,0.595279661995143,NA +"Tfru11556_t",0,NA,NA,NA,NA,NA +"Tfru11557_t",35.6333776751326,-0.0752273815462018,0.328533846400277,-0.22897909110572,0.818885167299857,0.885430961647058 +"Tfru11558_t",44.2266807630988,-0.704351963596955,0.493971508275333,-1.42589593083243,0.153898384182669,0.267037202512648 +"Tfru11559_t",11.4399208181343,0.487034660609612,0.591179755658169,0.82383514649853,0.410033234312767,0.556019376146372 +"Tfru11560_t",185.80585873272,0.0726785115144858,0.186545475961028,0.389602112514749,0.696830789786331,0.801545604080507 +"Tfru11561_t",303.468706268369,-0.592738254040095,0.195408709097433,-3.03332567303615,0.00241874413707013,0.0084488050238223 +"Tfru11562_t",85.1175685374414,1.74409194312217,0.378742186426866,4.60495821597353,4.12548685962797e-06,2.72999396565565e-05 +"Tfru28027_t",0,NA,NA,NA,NA,NA +"Tfru28028_t",0,NA,NA,NA,NA,NA +"Tfru28029_t",0,NA,NA,NA,NA,NA +"Tfru28030_t",0.666702042462946,0.120116565496175,2.59277697210102,0.0463273805609437,0.963049316201394,NA +"Tfru28031_t",2.45576246919026,-0.256632145888376,1.16245327617346,-0.220767708387517,0.825273308187042,0.889758967011562 +"Tfru28032_t",0.502283943991191,-2.48369053665678,3.23957080071676,-0.766672713591339,0.443276130926153,NA +"Tfru28033_t",33.8843217953831,-1.08344895552975,0.363641374552592,-2.97944357091592,0.00288772412824283,0.00987127936307844 +"Tfru28034_t",183.935432002405,0.187101631112889,0.200208924016572,0.934531924747777,0.350029576033472,0.495895544193777 +"Tfru28035_t",160.17268741553,2.2141926448345,0.230484944753037,9.60666930851812,7.49337146652264e-22,3.26267808211628e-20 +"Tfru28036_t",138.69376941159,3.23206252524119,0.487447431427563,6.6305868425147,3.34354891013809e-11,4.86941378935929e-10 +"Tfru28037_t",356.950021377849,2.06053406837002,0.20886788913631,9.86525059879018,5.88872185820566e-23,2.7980805772111e-21 +"Tfru28038_t",1586.46477146736,-0.355106387138573,0.191457901898738,-1.85474918306787,0.0636320517965977,0.132473052949568 +"Tfru28039_t",110.641963138096,2.5386759832306,0.287149249399292,8.84096332670707,9.48968062242703e-19,3.19366995984838e-17 +"Tfru28040_t",139.821629704656,-0.200642032773178,0.220284879296577,-0.910829801000763,0.362385057816249,0.50860263350857 +"Tfru28041_t",15.0982689353004,3.36232467256814,0.709188521872934,4.74108726927558,2.12574337190183e-06,1.48243468843162e-05 +"Tfru28042_t",7500.83585618922,2.01828684105767,0.183167250180491,11.0188193526346,3.10099630031178e-28,2.15528873294961e-26 +"Tfru28043_t",165.012752566356,0.846264242876614,0.410840540333274,2.05983626199626,0.0394141966728394,0.0891791275436474 +"Tfru28044_t",1.00417128483127,0.930426304534392,1.82459122871502,0.509936850452608,0.610095704054621,0.733333791113508 +"Tfru28045_t",0,NA,NA,NA,NA,NA +"Tfru28046_t",381.450309270891,3.2278297907153,0.378916918300764,8.51856867513427,1.61537240030994e-17,4.86568429595377e-16 +"Tfru28047_t",0,NA,NA,NA,NA,NA +"Tfru28048_t",4.61513486266139,3.6701492471322,1.32459485553007,2.77077117717138,0.0055923711640311,0.0174703052276683 +"Tfru28049_t",0,NA,NA,NA,NA,NA +"Tfru28050_t",457.132813685574,-0.554361110412456,0.236301804612499,-2.34598762934345,0.0189767372988976,0.0489341376597913 +"Tfru28051_t",89.5914396469303,0.722069874639231,0.272618490432696,2.64864600157228,0.00808149333611283,0.0239491288217962 +"Tfru28052_t",121.163932647099,-0.0640655781941791,0.25964357837518,-0.246744320021678,0.805106104371525,0.876716359275727 +"Tfru28053_t",209.853586753324,0.167409477909114,0.175510140058503,0.953845047661127,0.340162083018528,0.48572879588813 +"Tfru28054_t",388.755905091775,0.0260272235613238,0.198027812414202,0.131432162199946,0.895433447577969,0.936045614311502 +"Tfru28055_t",566.487340873632,-0.771252409699557,0.171657463758397,-4.49297334827847,7.02355775265335e-06,4.42905670623787e-05 +"Tfru28056_t",51.0952847272806,-1.42727846830784,0.346652481508558,-4.1173179032114,3.83307174077758e-05,0.000209843800290123 +"Tfru28057_t",598.656781436238,0.189016776375183,0.199840452083672,0.945838414617093,0.344231008917164,0.489882359122863 +"Tfru28058_t",75.7651071636965,4.3338964428317,0.450394699009203,9.62244105529125,6.4287094038573e-22,2.81554826728623e-20 +"Tfru28059_t",28.6717396404568,0.779282426794386,0.402939649795279,1.93399291231408,0.0531139992925095,0.114462330685254 +"Tfru28060_t",257.564054523693,0.413982339473633,0.342110797296046,1.21008264791887,0.226247180788685,0.358573182214487 +"Tfru28061_t",0.979122764228462,-1.1182771943543,1.82830222196956,-0.611647888908443,0.54077074653016,0.673618575438628 +"Tfru28062_t",1339.26362034032,0.995573948350263,0.195653514233722,5.08845421074817,3.60993917750687e-07,2.91136716369743e-06 +"Tfru28063_t",4.54143177537857,-1.05760719059043,0.906676799450526,-1.16646548277332,0.243426296451518,0.37882487411063 +"Tfru28064_t",372.513843595657,-0.367015163610011,0.208337910926412,-1.76163407791704,0.07813114236904,0.156167320239594 +"Tfru28065_t",299.653960295777,-0.441794012171673,0.166990969841336,-2.64561618266806,0.00815422796266106,0.0241199605874114 +"Tfru28066_t",10657.1119084915,-0.859009208152338,0.346784302053189,-2.47707062593792,0.0132465686786333,0.0361778354791561 +"Tfru28067_t",16166.8811169836,-0.43897106586533,0.210935348986647,-2.0810692374426,0.0374275691055035,0.0853801084410413 +"Tfru28068_t",0,NA,NA,NA,NA,NA +"Tfru28069_t",0.136969954293412,0.897472045338672,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28070_t",108.304817092219,-0.492249122599997,0.223075609882561,-2.20664698780447,0.027338731522556,0.0659240180449093 +"Tfru28071_t",247.0437583476,-1.15465520151248,0.340154266068692,-3.39450454306313,0.0006875289931516,0.00279110109546852 +"Tfru28072_t",4.51030132829129,-3.05135774018387,1.11544360336935,-2.73555537094553,0.00622751081653384,0.0191681600982021 +"Tfru28073_t",297.89760836192,-0.124813960604948,0.259869723568681,-0.480294352458342,0.631018104073376,0.751147860068253 +"Tfru28074_t",103.303055052551,-0.053177800367835,0.237456558732588,-0.223947490234293,0.822798162175845,0.888117240739626 +"Tfru28075_t",381.379141583975,1.68407705907004,0.200708472441508,8.39066252950943,4.83410123196549e-17,1.40868731212744e-15 +"Tfru28076_t",21.2020125622702,0.184579744653558,0.463093275872412,0.398580057777413,0.690202658134859,0.796141402384195 +"Tfru28077_t",327.599169256459,0.0240802725486621,0.204240540751984,0.117901531498115,0.906145679753518,0.942489209131558 +"Tfru28078_t",2.78021873334617,2.18955952416556,1.36601125446419,1.60288542060687,0.108959953070061,0.20395815905888 +"Tfru28079_t",243.699406229475,-0.0395043009581654,0.26545908706233,-0.148815026056689,0.881699593589226,0.927276170325511 +"Tfru28080_t",52.8223396331004,0.774969762829778,0.372372809798277,2.08116635382051,0.0374186820743471,0.0853801084410413 +"Tfru28081_t",291.302629485586,0.556689658244383,0.299426124673294,1.85918866916436,0.0630004003292196,0.131353545683616 +"Tfru28082_t",318.86176588097,0.2092038625227,0.199308433009794,1.04964882500692,0.293879600237915,0.436554695797338 +"Tfru28083_t",56.9595197215978,-1.08246982742087,0.294128848394928,-3.6802572523163,0.000232998774381253,0.00106767251651361 +"Tfru28084_t",18.7038922063065,0.519182665243593,0.481080721500544,1.07920072877625,0.2804982548705,0.421651729177981 +"Tfru28085_t",48.6257272914491,0.672919794160688,0.316603942415573,2.12543087438063,0.0335506763450551,0.0780935939522539 +"Tfru28086_t",58.9077885710884,0.567892471793859,0.339093414438174,1.67473754314802,0.0939857378850759,0.181218300496941 +"Tfru28087_t",17.5657572457035,-0.789840635883495,0.501484736686514,-1.57500433832194,0.115255443170999,0.213192562870233 +"Tfru28088_t",154.258090892922,1.37801846422266,0.260157792131951,5.29685639215349,1.17813276033361e-07,1.0311541328223e-06 +"Tfru28089_t",249.796130583042,-1.82521819188869,0.317362670229067,-5.75120631097312,8.8608902866535e-09,9.28402268798246e-08 +"Tfru28090_t",16.0135334835186,3.4442301143327,0.887035814770685,3.88285349585698,0.000103237774503514,0.000513778384120221 +"Tfru28091_t",92.0790674991171,3.32939217674844,0.463010566834673,7.19074771772383,6.44374509280338e-13,1.16487088188158e-11 +"Tfru28092_t",15.5904019061806,-0.342066867591266,0.482792112043453,-0.708517929473709,0.478623681982893,0.618354725566772 +"Tfru28093_t",213.32802137881,-0.502008961016864,0.186368995129468,-2.69362916652593,0.00706787534476744,0.0213007070045644 +"Tfru28094_t",2060.09626042494,-1.69103083896294,0.162671782371498,-10.3953544635116,2.60317230987308e-25,1.46379387675778e-23 +"Tfru28095_t",0.136969954293412,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28096_t",20.5390469244308,-0.805806420773657,0.442729791749834,-1.82008628239995,0.0687458662746394,0.140929970433858 +"Tfru28097_t",27.0458925698961,-0.626805635537363,0.428545085242909,-1.46263638791255,0.143566900849187,0.25321358980257 +"Tfru28098_t",539.27814429886,-0.471757791750508,0.240519642364899,-1.9614106653077,0.0498311368560187,0.108527605579236 +"Tfru28099_t",7.48495337770054,0.102600480024415,0.767548854304823,0.133672898407674,0.893661236734582,0.934760631805942 +"Tfru28100_t",794.53946938182,0.0819345645535933,0.394970798157118,0.207444613464816,0.835662643776897,0.89729321767001 +"Tfru28101_t",280.200111454693,-0.0600264990942313,0.206900987206699,-0.290121859274956,0.771723013353238,0.854796996099844 +"Tfru28102_t",233.138533764833,-0.352973446196261,0.193485561580898,-1.82428829992402,0.0681084983081238,0.139879617521869 +"Tfru28103_t",5.6014738367889,-2.95380936195199,1.05583682808833,-2.79760023838161,0.00514837893940962,0.0162704395311403 +"Tfru28104_t",73.1050438766321,-0.0475477843393256,0.250903817859717,-0.189506021649739,0.84969623601498,0.906526279354305 +"Tfru28105_t",11.9915768411107,-0.99641153193538,0.624807819729612,-1.59474881791105,0.110768416558636,0.206651980875481 +"Tfru28106_t",2057.37310768161,5.95091531585117,0.363356291844782,16.3776311279434,2.7629612879181e-60,9.81509105136619e-58 +"Tfru28107_t",0,NA,NA,NA,NA,NA +"Tfru28108_t",623.551054598224,-0.298370702265574,0.194603266503363,-1.53322556001607,0.125220288575573,0.227147332728185 +"Tfru28109_t",586.586509115294,-0.578856983201739,0.175775061659754,-3.29316899528232,0.000990649108784391,0.00385980624209517 +"Tfru28110_t",198.297339074033,0.177623862999766,0.296676706608602,0.59871186056444,0.54936504660424,0.681257832808213 +"Tfru28111_t",51.9072016660281,-0.232716363222873,0.384612348075272,-0.60506732138857,0.545134266280078,0.677520124359869 +"Tfru28112_t",57.3542711824529,-0.0910687575326388,0.288943428843018,-0.315178503616762,0.752626126050797,0.84106596390668 +"Tfru28113_t",76.8620642206197,0.544195496402066,0.258577725976672,2.10457221072151,0.0353285627256332,0.0814602548732405 +"Tfru28114_t",194.44706315025,-0.420159491983064,0.185777208821214,-2.26163098610989,0.0237202119117045,0.0587102789851744 +"Tfru28115_t",652.097152277035,5.16143337897553,1.33516816702693,3.86575527071523,0.000110745946431424,0.000547128980383063 +"Tfru28116_t",1256.45390577485,-0.213431308902677,0.125453112957374,-1.70128348250072,0.0888897680821088,0.173289586522179 +"Tfru28117_t",0.936347061838478,3.31994800046774,2.66819045695248,1.24426949801015,0.213400393080719,0.343096321634087 +"Tfru28118_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28119_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru28120_t",4.29170219934392,3.55443969640089,1.4152698956987,2.51149247730315,0.012022184821392,0.0333548147495179 +"Tfru28121_t",104.168549205476,1.05852147468099,0.349101533651149,3.03213069163642,0.00242834041128275,0.00847967832805555 +"Tfru26078_t",10.118267452426,4.29889015550483,1.21303234981846,3.54392045368633,0.000394224168472097,0.00170323105992385 +"Tfru26079_t",252.919525276977,0.532487360971908,0.169517528857217,3.1411935070173,0.00168260819296938,0.00614704070497141 +"Tfru26080_t",0,NA,NA,NA,NA,NA +"Tfru26081_t",0,NA,NA,NA,NA,NA +"Tfru26082_t",0,NA,NA,NA,NA,NA +"Tfru26083_t",1372.26496122288,-0.533217372317755,0.406715723666509,-1.31103210741607,0.189846916332949,0.313933352115517 +"Tfru26084_t",6.17718031120907,0.546899635801311,0.732037521146673,0.74709235524518,0.455007814472853,0.597808787595541 +"Tfru26085_t",250.500643156568,0.465601228262176,0.201594287887438,2.30959534191837,0.0209105677370527,0.0528789272265808 +"Tfru26086_t",25.8809584740709,0.973334222295636,0.538645737051863,1.80700255352048,0.0707618810583453,0.14442780648297 +"Tfru26087_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru26088_t",0,NA,NA,NA,NA,NA +"Tfru26089_t",0,NA,NA,NA,NA,NA +"Tfru26090_t",0,NA,NA,NA,NA,NA +"Tfru26091_t",0,NA,NA,NA,NA,NA +"Tfru26092_t",0,NA,NA,NA,NA,NA +"Tfru26093_t",0.273939908586824,1.58964910503524,4.05671590894315,0.391856156732793,0.695164499329025,NA +"Tfru26094_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru26095_t",38.0239019298981,0.509899201651925,0.360726973502593,1.41353222549702,0.157499293045246,0.271915002572907 +"Tfru26096_t",15.7918788990954,0.0436284153501885,0.465924732412988,0.0936383332222788,0.925396457870025,0.955672222192384 +"Tfru26097_t",22.50432297102,0.352729868129237,0.408923307383322,0.862581960383565,0.38836735229953,0.5346411603902 +"Tfru26098_t",18.2603263505579,0.170023305330641,0.479629279594251,0.354489003412124,0.722972443702925,0.820617907900364 +"Tfru26099_t",1.46823366579725,0.167702746496488,1.56485467810505,0.107168255840578,0.914655498531888,0.948519070346307 +"Tfru26100_t",0.194233622332415,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru26101_t",0.358558859293174,-1.98301942380375,3.63188389867095,-0.546002977829059,0.585063890272256,NA +"Tfru26102_t",0.34743332878183,-1.94360805271459,3.66213660969954,-0.530730625276716,0.595605460502085,NA +"Tfru26103_t",0,NA,NA,NA,NA,NA +"Tfru26104_t",0,NA,NA,NA,NA,NA +"Tfru26105_t",0,NA,NA,NA,NA,NA +"Tfru26106_t",0,NA,NA,NA,NA,NA +"Tfru26107_t",0.192582713572468,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru26108_t",0,NA,NA,NA,NA,NA +"Tfru26109_t",0,NA,NA,NA,NA,NA +"Tfru26110_t",200.516873247788,-0.334355222996572,0.197791893955829,-1.69043946296019,0.0909439106214871,0.176264373405117 +"Tfru26111_t",195.701013876577,1.78508975217818,0.204717243615645,8.71978207917687,2.78737738216269e-18,8.96286003057486e-17 +"Tfru26112_t",534.008294715359,-0.61038576590391,0.16267711651442,-3.75213047158851,0.000175338166912849,0.000831018249790252 +"Tfru26113_t",5.51217737587192,4.855173254154,1.46202634877746,3.32085208875604,0.000897430842331651,0.00353911933945063 +"Tfru26114_t",82.7137099394799,0.71595059301207,0.260718849675057,2.7460637921055,0.0060315034469349,0.0186391945791775 +"Tfru26115_t",123.682052362928,1.28061614055126,0.257519751565804,4.9728851195479,6.59637542242845e-07,5.04707288731449e-06 +"Tfru26116_t",1711.34744417977,0.0025552787943858,0.286089864844339,0.00893173477423302,0.992873601475039,0.996585688762742 +"Tfru26117_t",104.963318551069,4.98907011460161,0.418227554475801,11.9290803803083,8.34907141773644e-33,7.81808444890968e-31 +"Tfru26118_t",9214.48876826181,-2.75513549493661,0.359760298981735,-7.65825329458181,1.88478878831249e-14,4.10326586404996e-13 +"Tfru26119_t",6.35643190191311,2.68931417991888,0.945386337771011,2.84467214351715,0.00444571562203868,0.0142993842513978 +"Tfru26120_t",15.1001308100553,0.540744968881218,0.560656246215349,0.96448576562102,0.33480244150875,0.480459980377453 +"Tfru26121_t",517.367672332579,-1.00245456323055,0.200197232020496,-5.00733478237061,5.51888881810376e-07,4.30058258179534e-06 +"Tfru26122_t",17.7415874290006,-2.32744685889057,0.580842115249275,-4.00702152579229,6.14892609601277e-05,0.000321525621562537 +"Tfru26123_t",1.4730935305661,0.235567684147583,1.42274823747553,0.165572290263783,0.868493555428053,0.918654209777854 +"Tfru26124_t",0,NA,NA,NA,NA,NA +"Tfru26125_t",69.1698893105644,-0.191516394758688,0.299803557926979,-0.638806277293527,0.522948964139478,0.658319148241732 +"Tfru26126_t",119.335357216045,-0.656036268441309,0.278639859885571,-2.35442362306212,0.0185514556661411,0.0480034197951482 +"Tfru26127_t",40.5570633274117,-0.70918881027747,0.329459356135298,-2.15258361030193,0.0313514177654338,0.0738184881210319 +"Tfru26128_t",248.349572463558,-0.883851086958472,0.188947667353133,-4.67775601223275,2.90031352224208e-06,1.98316579980989e-05 +"Tfru26129_t",0,NA,NA,NA,NA,NA +"Tfru26130_t",0,NA,NA,NA,NA,NA +"Tfru26131_t",0,NA,NA,NA,NA,NA +"Tfru26132_t",450.398417221503,0.506139144335424,0.415341766590721,1.21860883024118,0.222992695933928,0.354797137423668 +"Tfru26133_t",258.304459366429,0.428970207827745,0.169972748058959,2.52375873618838,0.0116107583340072,0.0323879809940273 +"Tfru26134_t",0,NA,NA,NA,NA,NA +"Tfru26135_t",7.16688757445716,1.88230438496656,0.780500870150611,2.41166212230275,0.0158799900652815,0.0420983389790334 +"Tfru26136_t",0,NA,NA,NA,NA,NA +"Tfru26137_t",0,NA,NA,NA,NA,NA +"Tfru26138_t",0.771119630933357,1.74215383853612,2.45432488015482,0.70983016658586,0.477809459722911,0.617757117770004 +"Tfru26139_t",6.57995868594936,1.8854556443225,1.01362731905675,1.86010736774246,0.0628703370055397,0.131131234127118 +"Tfru26140_t",318.466726038222,0.422808714900846,0.159612989653592,2.64896181581754,0.0080739453422961,0.0239375372580461 +"Tfru26141_t",121.749469524134,0.876106490309653,0.366025621093463,2.39356602330836,0.0166854780146249,0.0439215476320049 +"Tfru26142_t",64.1445722835601,-1.23448959305815,0.326597558699683,-3.77984942071566,0.000156923231684395,0.000751539038111867 +"Tfru26143_t",135.111941920829,-0.656764074596221,0.24874044832195,-2.64035897268367,0.00828182531435952,0.0244231454124873 +"Tfru26144_t",133.649023039229,2.84670774235457,0.258078575379859,11.030391570337,2.72675223326352e-28,1.90702234313867e-26 +"Tfru26145_t",421.679266991194,-0.29256865587811,0.18792422206308,-1.55684377812618,0.119507580443319,0.219227840190285 +"Tfru26146_t",19.5338718304315,4.18672399765236,0.78016442988099,5.36646357780118,8.02954057823826e-08,7.24309222656076e-07 +"Tfru26147_t",4.26907821021817,2.35614662234584,1.14288399933255,2.06157984863017,0.0392477541954615,0.0889123128752331 +"Tfru26148_t",79.4042078063879,1.17070010951986,0.263170806019153,4.44844216282355,8.64953324430791e-06,5.37414086639675e-05 +"Tfru26149_t",3.91154813233265,1.88404689987543,1.11208909166079,1.69415104779223,0.090236584139462,0.17531858260623 +"Tfru26150_t",83.0506236860995,-0.531107514737831,0.400188770579478,-1.32714247321028,0.184461557667612,0.306955882266425 +"Tfru26151_t",0,NA,NA,NA,NA,NA +"Tfru26152_t",1.88427999421536,0.436449504523828,1.63963439067116,0.26618708841864,0.790095126372966,0.867103972372393 +"Tfru26153_t",21.6095052180088,0.659892819997407,0.463332641042267,1.42423123592799,0.154379545601113,0.267685304916163 +"Tfru26154_t",0,NA,NA,NA,NA,NA +"Tfru26155_t",0.709294005594898,0.173336782747439,2.57321512534668,0.0673619477205916,0.946293561671739,NA +"Tfru26156_t",62.1158140816861,2.51265306786197,0.380663370841942,6.60072195101028,4.09160314629943e-11,5.90013391843952e-10 +"Tfru26157_t",0.162767189711808,0.897472045338673,4.0804728567969,0.219943147972113,0.825915431767156,NA +"Tfru26158_t",3.30373935996829,3.18130494098112,1.43093404160225,2.22323660524489,0.0261998497263801,0.0637062838848746 +"Tfru26159_t",3.32632763937779,4.13203768313951,1.56339722708386,2.64298644743462,0.00821783245486791,0.0242760150923896 +"Tfru26160_t",1765.60708540742,-0.486116578123383,0.293070627684682,-1.65870111912546,0.0971760337821655,0.186087074188831 +"Tfru26161_t",9.91268186113084,1.42984700345078,0.744489544003242,1.92057365340855,0.0547854793477417,0.117105924336434 +"Tfru26162_t",2561.77185877646,0.771609020417105,0.315879624758669,2.44273121764853,0.0145765889021286,0.0392190502079393 +"Tfru26163_t",10.2211789482584,-0.625773959470082,0.659138378315944,-0.949381768770457,0.342426479349402,0.487855308133225 +"Tfru26164_t",112.849943368465,-0.543253214892466,0.234272520842231,-2.31889430710619,0.0204007678911718,0.0518651806661848 +"Tfru26165_t",3.72927503175695,4.28090671151541,1.45028977856592,2.95175955507904,0.00315968867224301,0.0106657364230465 +"Tfru26166_t",69.0002068069462,-0.48316654145272,0.295663719135208,-1.63417595796313,0.102221909228361,0.193940855250147 +"Tfru26167_t",1257.78692770038,-0.0240899484550431,0.123165417631752,-0.195590198273583,0.844930932748456,0.903235693877248 +"Tfru26168_t",191.847303923143,0.154483615664118,0.196467287098522,0.7863070638658,0.431687615096755,0.576579662560598 +"Tfru26169_t",0,NA,NA,NA,NA,NA +"Tfru26170_t",35.1304206047683,-0.336421727425335,0.347259912839953,-0.968789413883159,0.33265026948068,0.478329030517709 +"Tfru26171_t",331.841505636615,-0.117979370612864,0.257531710796613,-0.458115896671223,0.646869178695717,0.7637541163682 +"Tfru13379_t",1.42701601065622,1.54652928901459,1.87511905274374,0.824763252632763,0.409506013138676,0.555472730107495 +"Tfru13380_t",0.165976145720706,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13381_t",2.10151462523953,4.48323566603418,1.78837942287488,2.50687052685231,0.0121805319321066,0.0337084585928708 +"Tfru13382_t",156.337979391949,-0.281016958435065,0.199316176806592,-1.40990542231678,0.158567611384232,0.27327453740791 +"Tfru13383_t",342.862221134641,-0.166981699859969,0.269156078867246,-0.620389851727364,0.53500115208962,0.669071371112332 +"Tfru13384_t",51.9148617166321,-0.53508847025771,0.341533954573311,-1.5667211505404,0.117179884783224,0.215966879803059 +"Tfru13385_t",442.630424864157,-0.276333256677423,0.194332379005982,-1.42196199156764,0.15503728516634,0.268659267675004 +"Tfru13386_t",48.872845759875,1.89953361475083,0.419592575475733,4.52709062498817,5.98012986572044e-06,3.83372404453806e-05 +"Tfru13387_t",374.036677884289,-0.0072211557059012,0.15642092040962,-0.0461648971697082,0.963178820630525,0.978792262893845 +"Tfru13388_t",0.940229221767515,-3.39970052444946,2.745201451583,-1.23841568074687,0.215561969284764,0.345993464567237 +"Tfru13389_t",0,NA,NA,NA,NA,NA +"Tfru13390_t",233.375407310914,0.668258003501552,0.196964133089504,3.39279031679278,0.000691845755216451,0.00280549157487664 +"Tfru13391_t",55.3902419126607,0.62582010257407,0.368948951506667,1.6962240982619,0.0898434483834654,0.174782369160462 +"Tfru13392_t",129.72388064044,-0.489233130687245,0.233360143731861,-2.09647252895675,0.0360402943534592,0.0828538045845318 +"Tfru13393_t",0,NA,NA,NA,NA,NA +"Tfru13394_t",0,NA,NA,NA,NA,NA +"Tfru13395_t",17.3198956096836,0.821004137139957,0.505127165582303,1.62534148444286,0.104089816694197,0.196767471713501 +"Tfru13396_t",66.4936563493317,0.517213365239651,0.293888329251201,1.75989759973613,0.0784251703831148,0.156598439790695 +"Tfru13397_t",417.18959172762,-0.0601987847462957,0.156878403474839,-0.383728948108212,0.7011793546688,0.805291670609775 +"Tfru13398_t",32.182266097646,1.74644387619,0.381646769098293,4.57607404961471,4.73782903812932e-06,3.09313342687673e-05 +"Tfru13399_t",22.3229276269368,-1.00832805301359,0.505670099266814,-1.99404325957892,0.0461473271611036,0.102012759963008 +"Tfru13400_t",1.10380574391269,-2.47685470146462,2.31420455707174,-1.0702833912827,0.284491768004074,0.425852837130036 +"Tfru13401_t",1.16528756578313,0.260036730127979,1.93171136888058,0.134614691571997,0.892916525147582,0.934374705793374 +"Tfru13402_t",0,NA,NA,NA,NA,NA +"Tfru13403_t",2.51508854241799,-1.01095636768564,1.27504814858438,-0.792877013160677,0.427849481172395,0.572786468184375 +"Tfru13404_t",82.054714554956,-0.0737002943394347,0.334254519530827,-0.220491541723604,0.825488359027374,0.889862216416966 +"Tfru13405_t",25.3975477494155,-0.0589916399005127,0.439418179112017,-0.134249429597392,0.89320534047755,0.934546954119761 +"Tfru13406_t",119.909305645903,2.81199415849124,0.319549208531104,8.79987833929349,1.36964555993111e-18,4.52772047729074e-17 +"Tfru13407_t",121.119867601266,-0.832976257741879,0.273699518310105,-3.04339687144829,0.00233923604432469,0.00819923299482954 +"Tfru13408_t",187.798683877,0.580024198837319,0.195625507982538,2.96497223096843,0.00302710252563069,0.010280682999775 +"Tfru13409_t",195.326929894717,0.622956940807114,0.242730460567973,2.5664555628883,0.0102743788992861,0.0292806061079871 +"Tfru13410_t",0,NA,NA,NA,NA,NA +"Tfru13411_t",0,NA,NA,NA,NA,NA +"Tfru13412_t",164.544252119733,0.796383033124378,0.261134885508005,3.04969989580333,0.00229070136002467,0.00805054906365455 +"Tfru13413_t",112.628154941955,0.0738827322579854,0.283076426292701,0.26099924047222,0.794093092977541,0.869759869859412 +"Tfru13414_t",333.791110445862,-0.0704329818993654,0.150184784434241,-0.46897548353312,0.639087160150713,0.757642994196334 +"Tfru13415_t",49.8119063732115,1.65214708114702,0.406582296209747,4.06349980446445,4.83423628588018e-05,0.000258253516995276 +"Tfru13416_t",616.184507620372,0.184039456744296,0.299535379718852,0.614416423585882,0.538940185637471,0.672173503932601 +"Tfru13417_t",308.724697685838,-0.692313673041797,0.187843203563431,-3.68559340933522,0.000228170374762273,0.00104673176499429 +"Tfru13418_t",460.639518260342,-0.51365711739008,0.14349406075881,-3.57964026297543,0.00034406753198267,0.0015077797857396 +"Tfru13419_t",156.229572717083,0.343366306190759,0.302712731240463,1.13429753939884,0.256669760970441,0.394040569590075 +"Tfru13420_t",109.454101681071,0.746254026772174,0.219243971433346,3.40376075972993,0.000664649394842677,0.00271049780987921 +"Tfru13421_t",222.065782244771,-1.15644839452197,0.218247082714542,-5.29880344854164,1.1656402870098e-07,1.02141854437272e-06 +"Tfru13422_t",17.0321778704946,-0.485526889376512,0.460653230202228,-1.05399649355191,0.291884522506765,0.434362365429976 +"Tfru13423_t",231.879326473192,-0.75155427751839,0.209582127387582,-3.58596549661191,0.0003358333634364,0.0014766111343235 +"Tfru13424_t",629.382580357033,-0.321709477384809,0.188967870824159,-1.7024559570985,0.0886699280138634,0.17295040865873 +"Tfru13425_t",417.912053954943,0.788051291486755,0.2860294382489,2.75514050690475,0.00586669354609249,0.0181975940019379 +"Tfru13426_t",0,NA,NA,NA,NA,NA +"Tfru13427_t",1365.83182958936,-0.29019366081097,0.188102495861522,-1.54274221339734,0.122893335233778,0.22389717050895 +"Tfru13428_t",0.154850615209362,-1.02608130630382,4.0804728567969,-0.251461372814834,0.801457422905763,NA +"Tfru13429_t",1428.02611342406,-0.649974575572195,0.170416930137854,-3.81402584265787,0.000136721161877531,0.000664167484875005 +"Tfru13430_t",283.420086107929,-0.241666964519964,0.177081819791191,-1.36471922868722,0.17234131366166,0.291578364057147 +"Tfru13431_t",397.721381986098,1.14429713902073,0.216226091914346,5.29213254926711,1.20898212699812e-07,1.0565021476852e-06 +"Tfru13432_t",227.909624857163,0.938546249642533,0.192668145113465,4.87130993600322,1.10860775705794e-06,8.11866544599368e-06 +"Tfru13433_t",602.691989223946,-0.535392434062584,0.242038251728914,-2.21201578774511,0.0269655740884727,0.0651716574622051 +"Tfru13434_t",469.103468028462,-1.10615172061971,0.188891348014215,-5.85602110551123,4.74087997058058e-09,5.14802977882549e-08 +"Tfru13435_t",4804.66917094587,-1.25771662249187,0.349960276873862,-3.59388395084965,0.000325784985350529,0.00143524960081591 +"Tfru13436_t",55.682303438977,-0.576913225369268,0.27983674691329,-2.06160638919959,0.0392452252559808,0.0889123128752331 +"Tfru13437_t",956.485510162074,0.230511487004926,0.154978380899151,1.48737834056304,0.136914914153151,0.243942025216744 +"Tfru13438_t",254.348188196514,0.737799206154081,0.326231135341001,2.26158427638392,0.0237231003804525,0.0587109351448112 +"Tfru13439_t",1.74587199505508,-0.341415237680531,1.38557546067034,-0.246406816064247,0.805367330421277,0.876835436803416 +"Tfru13440_t",7.76170826814155,0.318306880535494,0.772696077003045,0.411943181813565,0.680381069208433,0.789000897916199 +"Tfru13441_t",1426.13186751497,-0.576864901249131,0.1212352497379,-4.7582275163062,1.95300299617628e-06,1.36973384689518e-05 +"Tfru13442_t",1178.32717686482,0.0612631924716549,0.138664812019259,0.441807777903642,0.658628309749451,0.77311608060052 +"Tfru13443_t",575.362263518211,-0.181016594251165,0.166507515441663,-1.08713768126932,0.276975967064601,0.417450477668919 +"Tfru13444_t",1.57400285104623,-1.11633042842718,1.63139592500459,-0.68427927967519,0.493798828463165,0.63189535027764 +"Tfru13445_t",2723.86533024974,-1.53318539311182,0.250810459005367,-6.11292447369196,9.78216745105719e-10,1.17072143077358e-08 +"Tfru13446_t",18.8489735833353,-0.63455259208284,0.456470069088238,-1.3901296822162,0.164489501395101,0.28097046567107 +"Tfru13447_t",67.6344382545272,-0.296087930773709,0.300456535961207,-0.985460109318234,0.32439811646949,0.469462556651907 +"Tfru13448_t",133.565367290892,0.602059499053706,0.244396471496541,2.46345413813484,0.0137605498436321,0.0373557866934117 +"Tfru13449_t",4.79391894063613,2.59081495836061,1.01331392143943,2.55677426663625,0.0105647750314504,0.0299404413326401 +"Tfru13450_t",25.9947404637239,1.87914242729844,0.420586001927309,4.4679148109718,7.89857465378692e-06,4.9404723519215e-05 +"Tfru13451_t",5.87729873886324,1.53114954844043,0.864389032598421,1.77136623753505,0.0764998192119152,0.153755361828708 +"Tfru13452_t",182.082770458831,0.916627970751909,0.230794324780815,3.97162266282947,7.13847281144965e-05,0.00036734656592376 +"Tfru13453_t",300.881933102913,-0.210849920841394,0.260924519001531,-0.808087801208734,0.419040039547347,0.564504670142035 +"Tfru13454_t",46.8958233212464,-0.0462808517447644,0.307382836040794,-0.150564203066375,0.88031950122226,0.926434234804579 +"Tfru13455_t",1.97287915530003,1.47343787547267,1.5855575162628,0.929286929272428,0.35274040718455,0.498365404780045 +"Tfru13456_t",14.8534396622007,0.547196854988225,0.526202755287581,1.03989735798546,0.298387590072278,0.441369085645578 +"Tfru13457_t",10.221601969501,1.10510189757988,0.600428207684736,1.8405229525128,0.0656914976942406,0.135737763678063 +"Tfru13458_t",0,NA,NA,NA,NA,NA +"Tfru13459_t",27.5096304521696,5